diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..d99f2f3 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "[python]": { + "editor.defaultFormatter": "ms-python.black-formatter" + }, + "python.formatting.provider": "none" +} \ No newline at end of file diff --git a/Dataset making/Labelling.ipynb b/Dataset making/Labelling.ipynb new file mode 100644 index 0000000..2a6f2d1 --- /dev/null +++ b/Dataset making/Labelling.ipynb @@ -0,0 +1,3273 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "xVDgAdcpFIrh", + "outputId": "5d6a39f7-cd33-4611-fa63-64c71435f90b" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "%pip install -q torch " + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "id": "ZyXZ8C-to6_W" + }, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data=pd.read_csv(\"data.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "id": "2GYxdjMIqhmt" + }, + "outputs": [], + "source": [ + "df=pd.DataFrame(data)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 310 + }, + "id": "KOLhsBTuvqBa", + "outputId": "a247e5b8-c9b2-4889-d17f-f50d9df99eae" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
EnglishHindiHinglishAverage ratingDisagreementtwitter_robertabeto_sentimentvader_sentiment
0Program module is a file that contains instruc...माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत...module , ek program hoti hai , jismen ya to so...76neutralneutralneutral
1And to Thamud We sent their brother Sali 'h. H...और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ...aur hamne aume samood ke pas unke bhaee saleh ...64positiveneutralpositive
2and, when reminded, do not remember\\nऔर जब उन्हें याद दिलाया जाता है, तो वे याद नही...aur jab unhen yad dilaya jata hai , to ve yad ...100neutralneutralneutral
3you won the TED Prize 2011.\\nतुम्हें २०११ का टेड प्राइज़ मिल गया है.\\ntumhen २०११ ka ted prize mil gaya hai\\n91positivepositivepositive
4He gone to Kerodemal College of Delhi Universi...उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्...unhonne bad science karne ke lie ye delhi univ...70neutralneutralneutral
\n", + "
" + ], + "text/plain": [ + " English \\\n", + "0 Program module is a file that contains instruc... \n", + "1 And to Thamud We sent their brother Sali 'h. H... \n", + "2 and, when reminded, do not remember\\n \n", + "3 you won the TED Prize 2011.\\n \n", + "4 He gone to Kerodemal College of Delhi Universi... \n", + "\n", + " Hindi \\\n", + "0 माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत... \n", + "1 और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ... \n", + "2 और जब उन्हें याद दिलाया जाता है, तो वे याद नही... \n", + "3 तुम्हें २०११ का टेड प्राइज़ मिल गया है.\\n \n", + "4 उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्... \n", + "\n", + " Hinglish Average rating \\\n", + "0 module , ek program hoti hai , jismen ya to so... 7 \n", + "1 aur hamne aume samood ke pas unke bhaee saleh ... 6 \n", + "2 aur jab unhen yad dilaya jata hai , to ve yad ... 10 \n", + "3 tumhen २०११ ka ted prize mil gaya hai\\n 9 \n", + "4 unhonne bad science karne ke lie ye delhi univ... 7 \n", + "\n", + " Disagreement twitter_roberta beto_sentiment vader_sentiment \n", + "0 6 neutral neutral neutral \n", + "1 4 positive neutral positive \n", + "2 0 neutral neutral neutral \n", + "3 1 positive positive positive \n", + "4 0 neutral neutral neutral " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "bm6sSCJAvo7N" + }, + "source": [ + "## 1st model: Twitter RoBERTa" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 249, + "referenced_widgets": [ + "d34a1a6e2e894cd899571dbdc6e0074b", + "d90bbc9155d84b75bb3edd5b7f6c07db", + "6028b3cde1784ff1aeaa8631a06e9565", + "28fe850e47c44804aa97f4ae1c381968", + "3cbf2e8496c345989b6357faffb255e4", + "190fc984eae844ce9b376b1d6b79bf6d", + "bfceed8038364f5a93794251a12fd216", + "3e5b8a74f164476bbc892f460fe8bfb2", + "a44eb21791b042859e07a6bd7626fd87", + "e9b066e185f74f7e9cb1f31524e0db63", + "533702f082994139889335870f86bd73", + "bc93d3a094ea478f94eeca889739b0bd", + "e59850f87389439caa8fa8b4ef65d94b", + "efc0aff281f241d5b488c785a0f74201", + "11302743f1b341b0be949fe160f03b49", + "1f6ecda8d40d4deb9f6a44b67b6eef91", + "def07a9437104045bcf7c73898bb2a6b", + "ce0aecc708314b24932a7feca59eabaa", + "d42b699aa4114e15be2ae6cea3cd17db", + "043722b3a5604963a63ca84d793a2d41", + "976fbdeca2e741e88f637e6a546d69cc", + "8544200aef2149e78851af8ed77fe51b", + "a25bb39075ba4810889e637e5ebe535b", + "9b0c65a2378740bc8ce6ee372872d508", + "8b30ba8eb38a444dabee50df991bd076", + "45d6d71d710343e19066eb68a3bce960", + "553647bc6e6d4b8ca1ded5ab63954f8b", + "1b87675e894a4f8d8aae85e7d2f1cd4d", + "2e869623febd44f380455437a55773a6", + "4164c91142494c13b6dacd91968fe74f", + "d7c1e85b679549ffb502b677a1095d52", + "6c3563e58a0e4c94a711418ce91abcc9", + "db461dc831624e09b360afd6ac60adce", + "aa743dff89644ee587c1edae2b84a63a", + "b429a31c788846499716f4862332a937", + "c91bec5626b74942ae1369394998b4d2", + "22f800e5eaba43628a2174e05636c075", + "5b16069d74b64bd29d187a22c1b4e4b5", + "829e910128aa4524a4b16c47f4c9eb18", + "42c65f89a0c244fb98c07b28560c7eed", + "6f8eb09714604d898b6059f1bdbc6d75", + "699431d1f42d42e592b2d161c9c89134", + "4dc1b19a63df465e8b96e3c7a4d28374", + "30bf95e207ea4291abf6896cc790143e", + "6b5b0a788e7e4fc2b8a2c0d882194002", + "bfdc0365cb5b42cb8eef931a5e2bd9a6", + "211907a1358647349d3bcb7ce448b61c", + "4587536d700047c6b947a0bb79823772", + "a0a2d715c4ba4f26964b2b1eea64ede7", + "a16732f723c445f9ba5f194eb077f32c", + "dc018fe8075d41c99b35730c03318998", + "ea419d0a23de426daebebb0c938d61fc", + "585bbea5b2f74365b2773a14779e2ed8", + "27eb8fd2b6e94afe8e63f6e08ad4f9f8", + "266c6d2298d345bb9b05049ff5fc9a62" + ] + }, + "id": "lmVyuY9UvrMS", + "outputId": "72fd9472-c1b5-473b-e6ab-f131ab862913" + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/user/Desktop/Hinglish Sentimental Analysis/venv/lib/python3.11/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n", + " from .autonotebook import tqdm as notebook_tqdm\n", + "Downloading pytorch_model.bin: 100%|██████████| 501M/501M [02:13<00:00, 3.77MB/s] \n", + "Some weights of the model checkpoint at cardiffnlp/twitter-roberta-base-sentiment-latest were not used when initializing RobertaForSequenceClassification: ['roberta.pooler.dense.bias', 'roberta.pooler.dense.weight']\n", + "- This IS expected if you are initializing RobertaForSequenceClassification from the checkpoint of a model trained on another task or with another architecture (e.g. initializing a BertForSequenceClassification model from a BertForPreTraining model).\n", + "- This IS NOT expected if you are initializing RobertaForSequenceClassification from the checkpoint of a model that you expect to be exactly identical (initializing a BertForSequenceClassification model from a BertForSequenceClassification model).\n", + "Downloading (…)olve/main/vocab.json: 100%|██████████| 899k/899k [00:00<00:00, 1.33MB/s]\n", + "Downloading (…)olve/main/merges.txt: 100%|██████████| 456k/456k [00:00<00:00, 1.18MB/s]\n", + "Downloading (…)cial_tokens_map.json: 100%|██████████| 239/239 [00:00<00:00, 627kB/s]\n" + ] + } + ], + "source": [ + "from transformers import pipeline\n", + "\n", + "sentiment_analysis = pipeline('sentiment-analysis', model='cardiffnlp/twitter-roberta-base-sentiment-latest')\n", + "\n", + "sentiments = []\n", + "for text in data['English']:\n", + " result = sentiment_analysis(text)\n", + " sentiments.append(result[0]['label'])\n", + "\n", + "data['sentiment'] = sentiments\n" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "id": "jy0m4XOhJ6VA" + }, + "outputs": [], + "source": [ + "data.rename(columns={'sentiment': 'twitter_roberta'}, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "id": "DB3kxV4Xv-uK" + }, + "outputs": [], + "source": [ + "data.to_csv('data.csv', index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 379 + }, + "id": "LMxOwZduJ_ee", + "outputId": "173dbd1d-4a36-4181-cf73-34b6192e31cd" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
EnglishHindiHinglishAverage ratingDisagreementtwitter_robertabeto_sentimentvader_sentimenttwitter_roberta
0Program module is a file that contains instruc...माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत...module , ek program hoti hai , jismen ya to so...76neutralneutralneutralneutral
1And to Thamud We sent their brother Sali 'h. H...और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ...aur hamne aume samood ke pas unke bhaee saleh ...64positiveneutralpositivepositive
2and, when reminded, do not remember\\nऔर जब उन्हें याद दिलाया जाता है, तो वे याद नही...aur jab unhen yad dilaya jata hai , to ve yad ...100neutralneutralneutralneutral
3you won the TED Prize 2011.\\nतुम्हें २०११ का टेड प्राइज़ मिल गया है.\\ntumhen २०११ ka ted prize mil gaya hai\\n91positivepositivepositivepositive
4He gone to Kerodemal College of Delhi Universi...उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्...unhonne bad science karne ke lie ye delhi univ...70neutralneutralneutralneutral
\n", + "
" + ], + "text/plain": [ + " English \\\n", + "0 Program module is a file that contains instruc... \n", + "1 And to Thamud We sent their brother Sali 'h. H... \n", + "2 and, when reminded, do not remember\\n \n", + "3 you won the TED Prize 2011.\\n \n", + "4 He gone to Kerodemal College of Delhi Universi... \n", + "\n", + " Hindi \\\n", + "0 माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत... \n", + "1 और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ... \n", + "2 और जब उन्हें याद दिलाया जाता है, तो वे याद नही... \n", + "3 तुम्हें २०११ का टेड प्राइज़ मिल गया है.\\n \n", + "4 उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्... \n", + "\n", + " Hinglish Average rating \\\n", + "0 module , ek program hoti hai , jismen ya to so... 7 \n", + "1 aur hamne aume samood ke pas unke bhaee saleh ... 6 \n", + "2 aur jab unhen yad dilaya jata hai , to ve yad ... 10 \n", + "3 tumhen २०११ ka ted prize mil gaya hai\\n 9 \n", + "4 unhonne bad science karne ke lie ye delhi univ... 7 \n", + "\n", + " Disagreement twitter_roberta beto_sentiment vader_sentiment twitter_roberta \n", + "0 6 neutral neutral neutral neutral \n", + "1 4 positive neutral positive positive \n", + "2 0 neutral neutral neutral neutral \n", + "3 1 positive positive positive positive \n", + "4 0 neutral neutral neutral neutral " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAZkAAAGbCAYAAAAWbe3FAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAABMIUlEQVR4nO3dd3hT9eIG8DerSdt075bSlg6g7LJkIwJVEAEBF8hQRJAhKlfld6+CKHpdOPC6UQFRcaEiICACMmRD2VCgC+jeO2lyfn9UiqEttCXpN+P9PE8fzcnpOW/S0jfne5ZMkiQJREREFiAXHYCIiOwXS4aIiCyGJUNERBbDkiEiIothyRARkcWwZIiIyGJYMkREZDEsGSIishiWDBERWQxLhhpl8uTJCA8PFx1DuC+++AIymQzJyckWX9e173lycjJkMhneeOMNi68bABYuXAiZTNYs6yL7w5KxYseOHcPYsWMRFhYGjUaDkJAQDBkyBEuXLrXoei9fvoyFCxfiyJEjFl2PpZSVlWHhwoXYtm1bg+bftm0bZDJZzZdarUZAQAAGDhyIl19+GdnZ2UJyNSdrzkY2TiKrtGvXLsnJyUmKioqSXnzxRemTTz6Rnn/+eWno0KFSZGSkRde9f/9+CYD0+eef13pOp9NJFRUVFl3/zcrOzpYASAsWLGjQ/Fu3bpUASHPmzJFWrlwpffHFF9Lrr78ujR49WlIqlZKPj4+0ZcsWk++pqqqSysvLJaPRaLFcV1z7niclJUkApNdff71Ry2lqNr1eL5WXl5ttXeRYlCILjuq3ePFieHh4YP/+/fD09DR5LisrS0woACqVSti6La1fv34YO3asybSEhAQMHToUY8aMwcmTJxEUFAQAUCgUUCgUFs1TWloKV1dX4e+5UqmEUsk/FdREoluO6ta6dWtp4MCBDZ5/5cqVUlxcnKTRaCQvLy/p3nvvlVJTU03mGTBggNSuXTvpxIkT0sCBAyVnZ2cpODhYevXVV2vmufKp/tqvK1s1kyZNksLCwmrm/+en6vfee0+KiIiQnJ2dpSFDhkipqamS0WiUFi1aJIWEhEgajUa66667pNzc3Fr5169fL/Xt21dycXGRtFqtNGzYMOn48eMm80yaNElydXWVLl68KI0cOVJydXWVfH19paeeekqqqqoyyXPt1/W2Hq685u+++67O57/66isJgPR///d/NdM+//xzCYCUlJRUM23//v3S0KFDJR8fH0mj0Ujh4eHSlClTGpTryms7d+6cdMcdd0harVYaOXLkDd/zJUuWSC1btpQ0Go3Uv39/6dixYybZBwwYIA0YMKDWa/rnMm+UbcGCBdK1fyr0er20aNEiqVWrVpKTk5MUFhYmzZ8/v9ZWblhYmDR8+HBpx44dUvfu3SW1Wi1FRERIy5cvr/O9JvvDfTJWKiwsDAcPHsTx48dvOO/ixYsxceJEREdHY8mSJZg7dy62bNmC/v37o6CgwGTe/Px83H777ejUqRPefPNNtGnTBs888ww2bNgAAGjbti0WLVoEAJg2bRpWrlyJlStXon///tfNsGrVKrz//vuYPXs2nnrqKWzfvh333HMP/vOf/+C3337DM888g2nTpmHt2rWYN2+eyfeuXLkSw4cPh1arxauvvornnnsOJ0+eRN++fWvtWDcYDIiPj4ePjw/eeOMNDBgwAG+++SY+/vhjAICfnx8++OADAMDo0aNr8t999903fB/rM3bsWDg7O2PTpk31zpOVlYWhQ4ciOTkZzz77LJYuXYrx48djz549Dc5VVVWF+Ph4+Pv744033sCYMWOum2vFihV49913MXPmTMyfPx/Hjx/HoEGDkJmZ2ajX15T3bOrUqXj++ecRFxeHt956CwMGDMArr7yC++67r9a8586dw9ixYzFkyBC8+eab8PLywuTJk3HixIlG5SQbJbrlqG6bNm2SFAqFpFAopF69eklPP/20tHHjRkmn05nMl5ycLCkUCmnx4sUm048dOyYplUqT6QMGDJAASCtWrKiZVllZKQUGBkpjxoypmXa9fTL1far28/OTCgoKaqbPnz9fAiB16tRJ0uv1NdPvv/9+ycnJqeYTb3FxseTp6Sk98sgjJuvJyMiQPDw8TKZPmjRJAiAtWrTIZN4uXbpIXbt2rXnc1H0y9W3JSJIkderUSfLy8qp5fO2WzJo1ayQA0v79++tdxvVyXXltzz77bJ3P1fWeOzs7SxcvXqyZvnfvXgmA9MQTT9RMa8iWzI2yXbslc+TIEQmANHXqVJP55s2bJwGQ/vjjj5ppYWFhEgDpzz//rJmWlZUlqdVq6amnnqq1LrI/3JKxUkOGDMFff/2Fu+66CwkJCXjttdcQHx+PkJAQ/PLLLzXz/fjjjzAajbjnnnuQk5NT8xUYGIjo6Ghs3brVZLlarRYTJkyoeezk5IQePXrgwoULN5V33Lhx8PDwqHncs2dPAMCECRNMxvN79uwJnU6HS5cuAQA2b96MgoIC3H///Sb5FQoFevbsWSs/AEyfPt3kcb9+/W46/41otVoUFxfX+/yV/Wa//vor9Hp9k9czY8aMBs87atQohISE1Dzu0aMHevbsifXr1zd5/Q1xZflPPvmkyfSnnnoKALBu3TqT6bGxsejXr1/NYz8/P7Ru3driPzOyDiwZK9a9e3f8+OOPyM/Px759+zB//nwUFxdj7NixOHnyJAAgMTERkiQhOjoafn5+Jl+nTp2qdZBAixYtap3z4OXlhfz8/JvK2rJlS5PHVwonNDS0zulX1peYmAgAGDRoUK38mzZtqpVfo9HAz8/P7PlvpKSkBG5ubvU+P2DAAIwZMwYvvPACfH19MXLkSHz++eeorKxs8DqUSiVatGjR4Pmjo6NrTYuJibH4uTspKSmQy+WIiooymR4YGAhPT0+kpKSYTL/2dwNonp8ZWQceMmIDnJyc0L17d3Tv3h0xMTGYMmUKvvvuOyxYsABGoxEymQwbNmyo82gnrVZr8ri+I6Kkm7wLd33LvdH6jEYjgOr9MoGBgbXmu/aoJksf0VUXvV6Ps2fPon379vXOI5PJ8P3332PPnj1Yu3YtNm7ciIceeghvvvkm9uzZU+vnUBe1Wg253Lyf+2QyWZ0/W4PBYJZlN4SlfufINrBkbEy3bt0AAOnp6QCAyMhISJKEiIgIxMTEmGUdzXl2d2RkJADA398fgwcPNssyzZ3/+++/R3l5OeLj42847y233IJbbrkFixcvxldffYXx48fjm2++wdSpU82e68pW4D+dPXvW5OoAXl5edQ5LXbu10ZhsYWFhMBqNSExMRNu2bWumZ2ZmoqCgAGFhYQ1eFtk/DpdZqa1bt9b5Se/KeHjr1q0BAHfffTcUCgVeeOGFWvNLkoTc3NxGr9vV1RUAah2ZZgnx8fFwd3fHyy+/XOe+jKacbe/i4gLAPPkTEhIwd+5ceHl5YebMmfXOl5+fX+v979y5MwDUDJmZMxcA/PTTTzX7tgBg37592Lt3L+64446aaZGRkTh9+rTJ+5iQkIBdu3aZLKsx2YYNGwYAePvtt02mL1myBAAwfPjwRr0Osm/ckrFSs2fPRllZGUaPHo02bdpAp9Nh9+7dWL16NcLDwzFlyhQA1X9EXnrpJcyfPx/JyckYNWoU3NzckJSUhDVr1mDatGm1Dhm+kcjISHh6euLDDz+Em5sbXF1d0bNnT0RERJj9dbq7u+ODDz7Agw8+iLi4ONx3333w8/NDamoq1q1bhz59+uC9995r1DKdnZ0RGxuL1atXIyYmBt7e3mjfvv11h7sAYMeOHaioqIDBYEBubi527dqFX375BR4eHlizZk2dw3lXLF++HO+//z5Gjx6NyMhIFBcX45NPPoG7u3vNH+Wm5qpPVFQU+vbtixkzZqCyshJvv/02fHx88PTTT9fM89BDD2HJkiWIj4/Hww8/jKysLHz44Ydo164dioqKmvSederUCZMmTcLHH3+MgoICDBgwAPv27cPy5csxatQo3HrrrU16PWSnRB3WRte3YcMG6aGHHpLatGkjabXamkvMzJ49W8rMzKw1/w8//CD17dtXcnV1lVxdXaU2bdpIM2fOlM6cOVMzz5WTMa917eGskiRJP//8sxQbGysplcoGn4z5T/UdFnzl0N9rD/XdunWrFB8fL3l4eEgajUaKjIyUJk+eLB04cMAkp6ura638dZ0suHv3bqlr166Sk5NTg0/GvPKlUqkkPz8/qX///tLixYulrKysWt9z7SHMhw4dku6//36pZcuWklqtlvz9/aU777zTJP/1ctX32q48V997/uabb0qhoaGSWq2W+vXrJyUkJNT6/i+//LLmpMnOnTtLGzdurPNnXl+2+k7GfOGFF6SIiAhJpVJJoaGh1z0Z81r1HVpN9kcmSdz7RkRElsF9MkREZDEsGSIishiWDBERWQxLhoiILIYlQ0REFsOSISIii2HJEBGRxbBkiIjIYlgyRERkMSwZIiKyGJYMERFZDEuGiIgshiVDREQWw5IhIiKLYckQEZHFsGSIiMhiWDJERGQxLBkiIrIYlgwREVkMS4aIiCyGJUNERBbDkiEiIothyRARkcWwZIiIyGJYMkREZDEsGSIishiWDBERWQxLhoiILIYlQ0REFsOSISIii2HJEBGRxbBkiIjIYlgyRERkMSwZIiKyGJYMERFZDEuGiIgshiVDREQWw5IhIiKLYckQEZHFsGSIiMhiWDJERGQxLBkiIrIYlgwREVmMUnQAInOr0BuQU1KJvFIdCsr0KCy/+lVaWQWDUYJRkmAwAkZJ+scXYPz7OQBwVSvhplHBXaOEu0YFN0314+r/KuHurIK7RgUnJT+rEdWHJUM2p0xXhQvZpUjKufp1Mb8MOSU65BRXoriyqlnz+Gqd0MLLBaHeLgj1cv77vy4I9XZGsKczVAqWEDkumST9/bGNyMpkFFbgxOVCXMguxYWcUiTllCAppxSZRZWiozWYQi5DoLsGod7OaBPojg4hHujQwgORfloo5DLR8YgsjiVDVqFCb8DxS4U4nFqAQ6n5OJxagIyiCtGxLMZZpUBscHXptA/xQEcWD9kplgwJkZZXhkOp+TiUko/DaQU4lV4EvcGxfxWdVQq0C3ZH70gf9I32Q5eWnhxqI5vHkqFmUVllwF/nc7H1dBa2nslGal6Z6EhWT6tW4pZW3ugb5Yt+MX6I9NOKjkTUaCwZspj0wnL8cToLW09nYde5XJTrDaIj2bQQT2f0jfJF32hf9Iv2haeLk+hIRDfEkiGzkSQJh1ILsOVUJv44nYXTGcWiI9ktpVyGPlG+uKtTMOLbB0Kr5oGiZJ1YMnTTUnPL8MOhi1hz+BKHwQRQK+W4tbU/7uocjEFt/KFRKURHIqrBkqEmKarQY93RdPx46CL2J+eLjkN/06qVGBobgBGdgtEv2hdKHjhAgrFkqMEMRgl/ns3GD4cuYvPJTFRWGUVHouvwclHh7rgWmNgrDGE+rqLjkINiyQgWHh6OuXPnYu7cuaKj1CuruAIrdqdg9YE0ZBfbzomQVE0uAwa29sek3uHoH+0LmYzn4lDz4d7CRho4cCA6d+6Mt99+W3QUizuTUYxPd1zAzwmXoeNWi80ySsAfp7Pwx+kstPJzxcRbwjC2WygPFqBmwd8yC5AkCQaDAUqlbb69f57Nxic7LmBHYo7oKGRmF7JLsXDtSbyx6SzGxIVgYu9wnn9DFmVXewUHDhyIOXPm4Omnn4a3tzcCAwOxcOHCmucLCgowdepU+Pn5wd3dHYMGDUJCQkLN85MnT8aoUaNMljl37lwMHDiw5vnt27fjnXfegUwmg0wmQ3JyMrZt2waZTIYNGzaga9euUKvV2LlzJ86fP4+RI0ciICAAWq0W3bt3x++//94M70Tj6aqM+O5AGm5/+09M/GwfC8bOlVRWYflfKRi8ZDumfL4Ph1J58AZZhl2VDAAsX74crq6u2Lt3L1577TUsWrQImzdvBgCMGzcOWVlZ2LBhAw4ePIi4uDjcdtttyMvLa9Cy33nnHfTq1QuPPPII0tPTkZ6ejtDQ0Jrnn332Wfz3v//FqVOn0LFjR5SUlGDYsGHYsmULDh8+jNtvvx0jRoxAamqqRV57U1ToDfho+3n0ffUP/Ov7ozy3xcFIErD1TDbufn83Hly2FwdTGvZvgaihbHM85zo6duyIBQsWAACio6Px3nvvYcuWLXB2dsa+ffuQlZUFtVoNAHjjjTfw008/4fvvv8e0adNuuGwPDw84OTnBxcUFgYGBtZ5ftGgRhgwZUvPY29sbnTp1qnn84osvYs2aNfjll18wa9asm32pN8VglPDtgTS883uiXV+IkhpuR2IOdiTmoG+UL54cGoO4ll6iI5EdsMuS+aegoCBkZWUhISEBJSUl8PHxMXm+vLwc58+fN8u6u3XrZvK4pKQECxcuxLp165Ceno6qqiqUl5cL35JZfywdb2w6gwvZpUJzkHXaeS4HO8/lYHBbf8yLb402ge6iI5ENs7uSUalUJo9lMhmMRiNKSkoQFBSEbdu21foeT09PAIBcLse1R3Tr9foGr9vV1fRchHnz5mHz5s144403EBUVBWdnZ4wdOxY6na7ByzSn3edy8Opvp5FwsVDI+sm2/H4qC1tOZ2FEx2A8NTSG59pQk9hdydQnLi4OGRkZUCqVCA8Pr3MePz8/HD9+3GTakSNHTIrLyckJBkPDLvS4a9cuTJ48GaNHjwZQvWWTnJzcpPw34/ilQrz622nuzKdGkyTgl4TL+O14Bh7pH4FZt0bD2YmXraGGs7sd//UZPHgwevXqhVGjRmHTpk1ITk7G7t278e9//xsHDhwAAAwaNAgHDhzAihUrkJiYiAULFtQqnfDwcOzduxfJycnIycmB0Vj/+SPR0dH48ccfceTIESQkJOCBBx647vzmlltSiSdXH8GI93ayYOim6AxG/G/reQxesh2/HU8XHYdsiMOUjEwmw/r169G/f39MmTIFMTExuO+++5CSkoKAgAAAQHx8PJ577jk8/fTT6N69O4qLizFx4kST5cybNw8KhQKxsbHw8/O77v6VJUuWwMvLC71798aIESMQHx+PuLg4i75OoPo8ndX7U3Hbku348fAl8JoOZC6XCsox/ctDmPjZPiTlcJ8e3RgvK2NnzmUV4//WHMe+JB6KSpblpJBzCI1uiCVjJyr0Bvxv6zl8tP0CdAZeAoaaT4inM567sy1ubx8kOgpZIZaMHdh1Lgf/+ek4hy9IqCGxAfjv3R3go1WLjkJWhCVjwwrL9Hhh7Qn8ePiS6ChEAABfrRqvjumA29oGiI5CVoIlY6N2n8/BU98mIL2QZ+uT9bm/R0s8d2dbuDg5zFkSVA+WjI3RVRnxxqYz+GTHBR41RlYtwtcVS+7phC68PI1DY8nYkPPZJZjz9WGcuFwkOgpRgyjkMsy8NQpzBkXxVtAOiiVjI348dBH/+ek4ynQNu9oAkTXpFOqJt+7phFa8d43DYclYuXKdAc//fBzfHbwoOgrRTdGqlVhyTycMbVf7CuZkv1gyVuxcVglmfHkQiVkloqMQmYVMBswZFI25g6Mhk8lEx6FmwJKxUtvPZmPWV4dQXFElOgqR2Q2JDcBb93aGVs2jz+wdS8YKfbErCS+uOwWDkT8asl9R/lp8MrEbInx5CwF7xpKxIlUGIxauPYEv91jP7ZmJLMlNo8S793XBrW38RUchC2HJWInCMj0e++ogdp3LFR2FqFnJZcCTQ2Iwa1C06ChkASwZK3AhuwRTlx/ABV57jBzYXZ2C8eY9naDi+TR2hSUj2O5zOZix6hAKyxt+m2ciezUgxg8fTujKWwfYEZaMQD8fuYSnvk1AFXfwE9XoGuaFzyZ1h4eL6sYzk9VjyQjy7YE0PPvDUbBfiGprE+iGFQ/3gL+bRnQUukksGQFW/JWMBb+c4AUuia6jpbcLvny4J1r6uIiOQjeBJdPMPv7zPF5ef1p0DCKb4O+mxoqHe6BNoLvoKNRELJlm9M7viXjr97OiYxDZFHeNEp9P6Y6uYd6io1ATsGSayau/ncYH286LjkFkk5xVCqx4uAe6h7NobA1LxsIkScILa0/ii93JoqMQ2TQ3jRJfP3IL2od4iI5CjcCzniyMBUNkHsUVVZj02T6c41XJbQpLxoL+t/UcC4bIjHJLdZjw6V6k5ZWJjkINxJKxkNX7U/H6xjOiYxDZnYyiCkxYthdZRRWio1ADsGQs4PeTmfi/NcdFxyCyWym5ZZiwbC/yS3Wio9ANsGTM7EByHmZ9fYj3giGysLOZJZj0+T4UV/C6f9aMJWNGZzOL8fDyA6jQG0VHIXIIRy8WYuryA9BV8d+ctWLJmMmlgnJMXLaPV1MmamZ7k/Lwn5+OiY5B9WDJmEFhmR4Tl+1FBndEEgnx7YGL+GxnkugYVAeWzE0yGiXM+eYwzmfzhmNEIi1efwo7ErNFx6BrsGRu0pLNZ7H9LH+xiUQzGCXM+uowkniHWavCkrkJm05k4H/bzomOQUR/KyzXY+ry/TzizIqwZJroQnYJnvo2gfeEIbIy57NLMefrwzDyNAKrwJJpgtLKKjy68iCKK6tERyGiOmw9k41Xf+N9m6wBS6YJnv7+KBJ5kT4iq/bRnxewNuGy6BgOjyXTSB9tP491x9JFxyCiBvj3mmO4VFAuOoZDY8k0wl/nc/EaL3pJZDOKKqrwxDdHuH9GIJZMAxVV6PHkt0d4TTIiG7MvOQ/v8yhQYVgyDbTwlxNIL+QZ/US26O3fE5GQViA6hkNiyTTAxhMZ+PHQJdExiKiJqowSHv/mMMp0PCK0ubFkbiC3pBL/XsOL7xHZuuTcMiz85YToGA6HJXMD/15zHDklvDESkT349sBFrOfRoc2KJXMdaw5fxG8nMkTHICIzmv/jMWTyiunNhiVTj/TCciz4mZvWRPamsFzPf9vNiCVTj6e/P4qiCu4kJLJHv53IwOaTmaJjOASWTB1+PHQROxJzRMcgIgta8PNxlPL6gxbHkrlGSWUV/ruBF9YjsneXCyvwxiZewcPSlKIDWJulWxKRVVwpOobZXfzgIRiKsmpN13YZDp+hMyBV6ZD3xzKUnfoTkkEP54g4eA+dAYWrV73LlCQJhTtXoSRhI4yVpVCHtIX30Meg8g6pfr5Kj9zf3kVZ4h4oXL3gPfQxOId3rvn+wr0/wFCUDe8h083+eokaYsVfKRjbtQXaBXuIjmK3ZJLEO6JccSG7BLe/vQM6g1F0FLMzlBUCxquvS5eTgqzV/0HA/S9D07Ijcjf+D+XnD8Bn+FzI1a7I2/wBZDI5Aie8Xu8yC/d8j8I938F3+BNQegSgYMeX0GcnI3jqB5ApnVB0cC1KDq+H78hnUX7hIIr2/YAWs76ETCaDviADWd8+j6BJb0OudmmOt4CoTl3DvPD99F6QyWSio9glDpf9wwtrT9plwQCAwsUDCq1XzVf5uX1QegZBHdoBxspSlBzdDK9BD8M5rBPUgVHwHTYXlZdOofJS3UOHkiSh+MDP8Oh1L1yib4GTfwR873wSVSV5KDv7FwBAn5sG56iecPILg1vccBjLCmEsLwIA5G16H14DJ7NgSLiDKfn4gVf0sBiWzN9+P5mJ7WezRcdoFpJBj9KT26DtOAQymQyVGecAY5XJUJbKJxQKdz9UXq67ZKoKM2EozTf5HrnaFerg1jXf4+QfgcqLJ2HUV6Ii6RAUWm/Ind1RcmIrZEonuMT0tuTLJGqw/244jSLestkiWDIAKqsMeHHdSdExmk3Z2T0wVpTAtf1tAABjaT6gUEKu0ZrMp3D1hKE0v85lGEqqp8tdPU2/x8UThtICAIC2wxCo/CNwedljKPzrW/iOfAbGihIU7lwF78GPIv/Plbj00SPIXP0cqop5NB+Jk1NSiaVbEkXHsEvc8Q/g0x1JSMktEx2j2ZQc3QTnVl2hdPOx6HpkCiV8hs4wmZaz7m24dR0BXeYFlCf+haApS1G09wfk//4x/Eb/n0XzEF3Pir9S8HDfVgj00IiOYlccfksmo7AC/9vqOPeaqCrMQkVKArSd4mumyV29AEMVjBWmt5Q2lBbUe3SZQls93fj3VkvN95QVQHHN1s0VFSlHoc9NgVvcnahIPQrnVt0gd9LApU1fVKTyIqQkVmWVEe9wa8bsHL5k/rf1HMp0BtExmk3Jsc1QuHjAObJ7zTR1YBQgV6I8JaFmmj73IgxF2VAHt6lzOUqPAChcvVCRcqRmmrGyDJWXz9T5PVKVDnmbP4BP/CzI5ApAMkIy/v2+Gw2QJPs84IJsy3cH0pCSWyo6hl1x6JJJLyzH6gNpomM0G0kyouTY73Btf1v1H/q/ydWu0HYcgvw/PkVFylFUZpxD7vq3oQ5uA3XI1cK49Ml0lJ3dDQCQyWRw6zYShbtXoyxxL3TZychZtwRKrTdcYnrVWnfB7m/g3KobnAIiAQDqkFiUnd0NXVYSig/9Ck1IWwu/eqIbqzJKeGvzWdEx7IpD75P5YNt56Koc5xN0RfIRGIqyoe04pNZz3rc9gjyZHNk/vQzJoIcmIg4+Qx4zmacq7yKMlVf3Xbn3HANJX4HcjUthrCiFpkUs/O9ZBJnSyeT7dNnJKDu9A0GTl9ZMc2nTBxVpx5Cx6hmofELgO+JfZn61RE3zS8JlPHZrFGIC3ERHsQsOezJmRmEF+r++1aFKhogaJr5dAD56sJvoGHbBYYfLPth2jgVDRHXaeCITRy8WiI5hFxyyZDKLKvD1fsfZF0NEjff6Rl480xwcsmQcbV8METXejsQcHEjOEx3D5jlcyWQWVeDrfamiYxCRDVi2M0l0BJvncCXzwbbzqORWDBE1wKaTmbiY7zhXA7EEhyqZwnI9VnNfDBE1kMEoYfnuZNExbJpDlczq/ako1zvO2f1EdPNW70/jbZpvgsOUjNEoYeWeFNExiMjGFFVU4fuDF0XHsFkOUzK/n8pEWl656BhEZIO+2J0MBz1v/aY5TMms+ItbMUTUNEk5pfjjdJboGDbJIUomKacUu87zplhE1HSf7eLhzE3hECXzzb5UcEuXiG7GrnO5OJtZLDqGzbH7ktFVGbnTjojMgn9LGs/uS2bjiQzklupExyAiO/DLkcswGjks0hh2XzLfOtBNyYjIsjKKKrDnQq7oGDbFrksmr1SH3ef5C0FE5vPTkUuiI9gUuy6ZDcfTYeCmLRGZ0YbjGajglUMazK5LZt3RdNERiMjOFFdU8ZyZRrDbkskpqcTeJN4LgojMb81hDpk1lN2WzIbjGRwqIyKL2H4mG4VletExbILdlsy6o5dFRyAiO6UzGLHuGIfjG8IuSya7uBL7OFRGRBa07hg/yDaEXZbMhuPp4EgZEVnS/qR8lOl4n5kbscuS4VFlRGRpOoMRu8/xPLwbsbuSKarQ40BKvugYROQAtp/NFh3B6tldyew5n8ujyoioWWw7y/NlbsTuSoaXkSGi5pKWV44L2SWiY1g1uyuZXed4czIiaj4cMrs+uyqZrKIKJGbxUwURNR+WzPXZVclwqIyImtueC7m8YOZ12FXJcKiMiJpbhd7I6yReh12VDLdkiEiEfUn821MfuymZlNxSXCooFx2DiBzQ0YuFoiNYLbspGW7FEJEoRy8WQpJ4fl5d7KZkjqQWiI5ARA6qsFyPpJxS0TGskt2UzMn0ItERiMiBccisbnZRMlUGI85kFouOQUQO7EhagegIVskuSuZcdgl0VUbRMYjIgR29WCA6glWyi5I5eZlDZUQk1onLRagy8MPuteyiZE6wZIhIsMoqI05ncNj+WnZRMtySISJrkMAhs1rso2R4ZBkRWYHETF6g91o2XzIX88tQWK4XHYOICCm5PFfmWjZfMqfSOQZKRNYhJa9MdASrY/Mlw08ORGQtLuaVw8jbv5uw+ZLhRTGJyFroDEZcLuTfpH+y+ZK5zJIhIiuSksshs3+y+ZLhlgwRWROWjCmbL5nLBRWiIxAR1eB+YlM2XTLlOgPySnWiYxAR1eCWjCmbLhkOlRGRtUnmlowJmy4Z7vQnImuTXVwpOoJVsemS4ZYMEVkbXoHElE2XTDpLhoisTJVRQnEFi+YKmy6Z/DL+IInI+hTwb1MNmy6Z0soq0RGIiGrhkNlVNl0yJSwZIrJCLJmrbLpkynQG0RGIiGrhcNlVNl0y3JIhImvELZmrbLpkuE+GiKxRQTmvRHIFS4aIyMwKOVxWw7ZLhvtkiMgKcX/xVbZdMtySISIrZJB4d8wrbLZkKqsMqOJtTonICvEWzFfZbMkYjaITEBHVzcCSqWGzJaNUyERHICKqE4fLrlKKDtBUSjlLhsxnSmgaclseRpI+R3QUsgN+Qf0AdBYdwyrYbMnIZDIo5DJulpJZTFLvhvvpXXi4VWucK0kTHYdsXOeAWNERrIbNDpcB3Joh83BWGNAyZzu8S3PwadJZtNK2EB2JbJxCphAdwWrYdMmoFDYdn6zE5OA0yCsKAAA+JdlYlnwe4a4hYkORTVPKbXaQyOxs+q80d/6TOYzRHDR57FuciWVpyQhzDRaUiGwdS+Yq2y4ZuU3HJyugkktolbO91nT/wnQsS0tFS5cgAanI1nG47Cqb/ivNfTJ0sx4Mugh5ed1HlAUUXsaySxfRwiWwmVORrVPIWTJX2HbJcLiMbtI9Loeu+3xgwSV8djkdIS4BzZSI7IGT3El0BKth0yWjVXPck5pOJpMQnVd7qOxaQflpWJaeiWBn/2ZIRfbAW+MtOoLVsOmS8dHy0wI13f2BGVCUZjRo3pC8VCzLyEKgs5+FU5E98HfhB5IrbLpkfLVq0RHIht2vvf5Q2bVa5KXis8xc+Gt8LZSI7IWvM39HrrDpkvFxZclQ07UtuPFQ2bVCc5PxWXYB/DU+FkhE9oJbMlfZdMn4unG4jJrm7oBMKIsvNul7w3Iu4NOcIviqOe5OdfPjsGoN2y4ZbslQE01wT7ip74/IPo9leSXwUXuZKRHZC0+1J1QKlegYVsOmS4Y7/qmpOhQ1fqjsWq2yzmFZXjm8WTT0D9wfY8qmS4Y7/qkp7vDLgaowySzLisw6i0/zK+Dl5GGW5ZHt4/4YUzZdMtySoaaY7HnUrMuLzjyDTwqr4MmiIXBL5lo2XTLckqGm6Fzyp9mX2TrjFD4pMsDDyd3syybbwi0ZUzZdMhqVAl4u3MFGDTfIJx/q/LMWWXab9JP4uFiCu5ObRZZPtoFbMqZsumQAIMzHVXQEsiEPeZt3qOxasZdP4OMSOdxUWouuh6wXt2RM2XzJtPJlyVDDdS3bafF1tLt0DB+VKaFV8XfTEfEcGVM2XzLhLBlqoF5ehXDOPdEs6+pw8Sg+KFfDVenSLOsj6+HnwpL5J5YMOYxHfI836/o6px3BBxXOcGHROAy1Qo0A3hbChM2XTKQfS4YapmfFrmZfZ5e0w3i/0hXOSudmXzc1vxivGN56+Rp2UDJa8AaZdCNxHiVwzT4iZN1dUw/ifzo3OCs0QtZPzSfWJ1Z0BKtj8yWjUSl4hBnd0KN+zbMvpj7dUw5gqcEDGgXP7bJn7XzaiY5gdWy+ZAAgJoCHi9L19dY1/1DZtXom7ce7Bi+oWTR2i1sytdlJyfDkN6pfW20ZtFkHRccAAPRK2od3jT68B7wdUivUiPSMFB3D6thFycQG8VIeVL/HAk9BBkl0jBq9L+zB2/Bj0diZ1l6tudO/DnbxjnQN46XWqX799eKHyq7V7/xfeCuyN+bKM6E36oXlKD1Tipz1OShPKUdVQRVazm4J967VH9qkKgmZP2ai+GgxdFk6KFwU0MZqETAuACqv61/OSZ+vR8a3GSg5WgKjzginACe0eLgFnCOqj7LL2ZCD7PXZAAC/YX7wvePqpVjKzpfh8orLiHw+EjKF7RzV09anregIVskutmT83TUI9eYholRbK5cKuGftFx2jTv3P78ab8iChn36NlUZoWmoQ/GBw7ed0RpSnlMP/Ln9EvRCFlrNaojKjEinvpFx3mYZSAy68dAEyhQxhT4Uh+uVoBN4XCLlr9Z+birQKZK7JROiMUITOCEXmj5moSKsAAEgGCZeXX0bwpGCbKhiAO/3rYxdbMgDQtaUX0vLKRccgKzMz6DRklwyiY9Tr1sSdeCO6H+ZJl1AlVTX7+t06usGtY937NBUuCkT8K8JkWtCEIFxYdAG6XB2cfOoe7stelw2Vjwotpraomebkd3XeyvRKaFpooI2tPmBHE6qpnhaqQc6GHLi2doVLK9s7gZU7/etmF1syANA1nPdbp9puNfwlOsIN3Za4A68pW0Aps/7PfMZyIyCrLqD6FB8phnO4M1LfS8Wp2adw7vlzyNuWV/O8uoUaukwddLk66HJ0qMyohLqFGpVZlcjfkQ//u23vApMahYY7/eth/b/VDdSN+2XoGiGaSnhl7REdo0GGnP0Tr7QegGf1qTBI1rnlZdQZkfFtBjx6ekDhXH/J6LJ0yPsjDz63+8BvhB/Kk8qRviodMqUMXn29oAnWIGBMAJJfTwYABI4NhCZYg6TXkhB4TyBKjpcg66csyBQyBI0Pgmtr6z8PLsabZ/rXx27eldYBbnDTKFFc0fxDDmSdZgafheyyuJ3qjXX7me2Q2gzEfF2K1RWNVCUh7f00AEDwpNr7b0xnBjQRGgSODQQAOIc5o+JiBfK25sGrb/WHQe9B3vAedHX0IX9nPuQaOVyiXHD22bOIXBAJfb4eaR+kIeb1GMhV1j3oEuvNobL6WPdPrhHkchk6h3qKjkFWZAj2io7QaHec3oaXnCIgl1nPP02pSkLq+6nQ5+oR/q/w627FAIDSUwlNsOkldNTBauhz6y78quIqZP2cheAJwSi7UAZ1oBrqQDW0bbWQDBJ0GTqzvRZL4f6Y+lnPb7IZdAvjfhmq5q/WwzfT+g5dbog7T/+BF9WRVlE0VwpGl6lD+L/CodTeePDDJdoFlRmVJtN0GTqofOs+7Dn9q3T4DvWFylsFGKuPMKtZv0GCZLSec5zq08mvk+gIVkv8b7EZdQvnfhmq9ljwOcgMlTee0UrddWoLFmqiIINlD+M1VBhQnlKO8pTqIzN1OTqUp5RDl6urLpj/paI8uRwtHm0ByShBX6CHvkAPY5WxZhlJryYh9/fcmsc+Q31Qdr4MWWuzUJlZiYK/CpC3LQ8+g3xqrb/keAl0mTp431b9AdE5whmV6ZUoPlqMvG15kMllUAdZ92V4Qt1C0cqzlegYVstu9skAQFxLL6iVclT+4x8AOabb5bY3VHat0Sd/hxQ7GAvLEyFZ6IoF5UnlSH41ueZxxtcZAADPPp7wH+WP4sPFAIDzz583+b7wZ8KhbVt9CLIuS4eq4qv7Ql1auaDl7JbI/D4T2T9nw8nPCUEPBMGzt6fJMow6Iy5/eRmhM0Ih+/tS6ipvFYImBOHSp5cgU8nQYmoLyJ2s+7PwgBYDREewajJJkqx/W7QRJn++D9vOZIuOQQJ5qapwSDMdMn2Z6Chm8V27IXix7KzFioZuzmfxn6F7YHfRMayWdX9EaILBbXlXOkc3PfiC3RQMAIw7sRn/59padAyqg4faA138u4iOYdVYMmR3hqus8zIyN+O+45swX8trY1mbviF9eX7MDdhdyQR6aNA+hFdldlSuSgNCsraLjmERDxzbiGe0PFTWmgwMHSg6gtWzu5IBuDXjyB4NToZMVyI6hsVMOPYb5rnxQozWQCVXoV9IP9ExrB5LhuzKXU4HREewuElHN+BJFo1w3QO7w1Vl/Ze8Ec0uS6Z9iAeCPDQ3npHsirPCgJY59jlUdq0pRzfgcff2omM4NA6VNYxdlgwA3NbW9q7kSjdnSlAa5BUFomM0m6kJ6zGLRSPMraG3io5gE+y2ZDhk5njudj4oOkKzezRhPR7z6CA6hsNp690Wga6BomPYBLstmT5RvvBx5T3UHYVKLqGVgwyVXWvGkXV4lEXTrDhU1nB2WzIqhRyjuoSIjkHN5MGgi5CX54iOIcysI+sw1ZNF01xYMg1ntyUDAOO6tbjxTGQX7nE5JDqCcI8fXocpLBqLC9GG8NL+jWDXJdMm0B0dQjxExyALk8kkROdtEx3DKjx5eB0meXYUHcOu3R19t+gINsWuSwbg1owjeCAwHYrSTNExrMa8w79iAovGIpQyJUZHjRYdw6bYfcmM7BQCJ6Xdv0yHdp/2sOgIVueZw7/iAS8Wjbn1b9Effi5+omPYFLv/6+vhosLQWB7ObM/aFmwTHcEqzT/0K+714j4acxobM1Z0BJtj9yUDAOO6hYqOQBYyJiATyuJLomNYrX8fWo9xLBqzCHYNRp+QPqJj2ByHKJl+Ub68zIydGu+eIDqCVZNBwnOH1mMMi+amjY4eDbnMIf5kmpVDvGNyuYxbM3aqQ5FjnoDZGDJIWHBoPUaxaJpMKVdiTPQY0THqtG3bNshkMhQUFFx3vvDwcLz99tvNkumfHKJkAGBSrzCoeQCAXRnmlwNVYZLoGDZBBgkvHN6Au1g0TRIfHm+1O/x79+6N9PR0eHhUn67xxRdfwNPTs9Z8+/fvx7Rp05o5nQOVjI9WjbFdeTizPZnkeVR0BJsil4x48fAG3OnFi2o21oOxD4qOUC8nJycEBgZCJpNddz4/Pz+4uLg0U6qrHKZkAOCRfq0gv/7PgWxI5xIOlTWWXDLipcMbcQeLpsG6+HdBO5+bu3/PwIEDMWvWLMyaNQseHh7w9fXFc889B0mSAAD5+fmYOHEivLy84OLigjvuuAOJiYk135+SkoIRI0bAy8sLrq6uaNeuHdavXw/AdLhs27ZtmDJlCgoLCyGTySCTybBw4UIApsNlDzzwAO69916TjHq9Hr6+vlixYgUAwGg04pVXXkFERAScnZ3RqVMnfP/9941+7Q5VMuG+rohvxyun2oNBPvlQ5yfeeEaqRSEZ8MrhjYj34o3PGmJC2wlmWc7y5cuhVCqxb98+vPPOO1iyZAk+/fRTAMDkyZNx4MAB/PLLL/jrr78gSRKGDRsGvV4PAJg5cyYqKyvx559/4tixY3j11Veh1WprraN37954++234e7ujvT0dKSnp2PevHm15hs/fjzWrl2LkpKrd5HduHEjysrKMHp09cmmr7zyClasWIEPP/wQJ06cwBNPPIEJEyZg+/bGfbhTNmpuO/DogEhsOJ4hOgbdpIe8jwKlolPYLoVkwH+PbIax8xBszj8hOo7VCnYNxm0tbzPLskJDQ/HWW29BJpOhdevWOHbsGN566y0MHDgQv/zyC3bt2oXevXsDAFatWoXQ0FD89NNPGDduHFJTUzFmzBh06FC9T61Vq1Z1rsPJyQkeHh6QyWQIDKz/A3V8fDxcXV2xZs0aPPhg9VDgV199hbvuugtubm6orKzEyy+/jN9//x29evWqWefOnTvx0UcfYcCAAQ1+3Q61JQMAnUM90TPCW3QMukldy3aIjmDzlMYqvHZkM27z4sUe6/NA2wegkCvMsqxbbrnFZL9Jr169kJiYiJMnT0KpVKJnz541z/n4+KB169Y4deoUAGDOnDl46aWX0KdPHyxYsABHj97c/kilUol77rkHq1atAgCUlpbi559/xvjx4wEA586dQ1lZGYYMGQKtVlvztWLFCpw/f75R63K4kgGA6QMiRUegm9DLqxDOuSdFx7ALSmMVXj+yBQM9WTTX8tH4YFzMONExAABTp07FhQsX8OCDD+LYsWPo1q0bli5delPLHD9+PLZs2YKsrCz89NNPcHZ2xu233w4ANcNo69atw5EjR2q+Tp482ej9Mg5ZMre28UebQDfRMaiJpvkeEx3BrqiMeiw5+gcGeLYVHcWqPNrpUbiozHc01t69e00e79mzB9HR0YiNjUVVVZXJ87m5uThz5gxiY6+Wf2hoKKZPn44ff/wRTz31FD755JM61+Pk5ASDwXDDPL1790ZoaChWr16NVatWYdy4cVCpVACA2NhYqNVqpKamIioqyuQrNLRx5xw6ZMkAwKMD6h7TJOvXs3yX6Ah2R2XQYcnRbejr2UZ0FKvQ0q2l2a9TlpqaiieffBJnzpzB119/jaVLl+Lxxx9HdHQ0Ro4ciUceeQQ7d+5EQkICJkyYgJCQEIwcORIAMHfuXGzcuBFJSUk4dOgQtm7dirZt6/5QEB4ejpKSEmzZsgU5OTkoKyurN9MDDzyADz/8EJs3b64ZKgMANzc3zJs3D0888QSWL1+O8+fP49ChQ1i6dCmWL1/eqNftsCUzslMIt2ZsUJxHCVxyeCkZS3AyVOKdo9vRh0WD2XGzoZKrzLrMiRMnory8HD169MDMmTPx+OOP15wc+fnnn6Nr166488470atXL0iShPXr19dsWRgMBsycORNt27bF7bffjpiYGLz//vt1rqd3796YPn067r33Xvj5+eG1116rN9P48eNx8uRJhISEoE8f0+uyvfjii3juuefwyiuv1Kx33bp1iIiIaNTrlklXDtR2QFvPZGHK5/tFx6BG+ChqD+Ivvis6hl2rVGowq0M/7Ck4IzqKEO192uOr4V/d8OTGxhg4cCA6d+4s5LIuojnslgwA3NraH32ifETHoEbordstOoLdU1dVYOnxnejpESM6ihBPdH3CrAXj6By6ZABg/h1twd8n29BWWwZt1kHRMRyCRl+OpSd3o7tHtOgozapPcB/0COohOoZdcejhsivmfH0YvyRcFh2DbmBp5AGMuLREdAyHUubkisdib8HBQvu/uoIMMnw34ju09m4tOopdcfgtGQD4V3xrOCn4Vli7/lUcKmtuLrpSvH9qL+I8okRHsbhhrYaxYCyAf1kBhHq74MFeYaJj0HW0cqmAexYP0hDBpbIE75/aj07u9nsSs5PcCbO7zBYdwy6xZP42e1AU3DUOdyk3mzEz6BRk0o1PMCPLcK0sxodnDqKju32eX3ZP63sQog0RHcMusWT+5unihDm3OdZOTltyq3GP6AgOT1tRhA/PHEZ798adJ2HttCotHu34qOgYdosl8w9T+kSgXbC76Bh0jRBNJbwyWTLWwK2iEB+dPYJYt3DRUczmofYPwVPjKTqG3WLJ/INCLsOrYzpCwTubWZWZwWchM+pFx6C/uZcX4uPEo2jrZvv7MWO8YjC53WTRMewaS+Ya7UM88HBf+xoOsHVDsPfGM1Gz8igvwMfnTiBG21J0lCZTypVY3HcxVArzXj6GTLFk6vDE4Bi09G7+e2FTbf5qPXwzeUFMa+RZlodPL5xCtI0WzbSO09DGm9dpszSWTB2cnRR4eXQH0TEIwGPB5yAzVIqOQfXwKs3FpxdOI0rbuMu/ixbrE4tHOjwiOoZDYMnUo2+0L+6O4yGNot0ub76hsj9TqjDi6zIEv1kM2QtF+Om06X4g2QtFdX69vqthJfjfnZWQvVCEub9VmEx/cmMFvF8tQuhbxVh11HSd353QY8TX9V+q3Rp4l+bg06SzaKVtITpKg6jkKizusxhKOU9ZaA4smet4bngsfFydRMdwWF6qKgRk7Wy29ZXqJHQKkON/wzR1Pp/+lNbk67O7NJABGBN74zH9/ZcM+OigDh0DTP/JrT2jx1fH9Nj0oCteG6zB1LXlyCkzAgAKKyT8+4/KevNYE5+SbCxLPo9wV+v/YPZY58cQ5WX/VzCwFiyZ6/BydcLzI3hbWlFmhFyATN98n+LviFbhpUEajG5bd2kEauUmXz+fqcKtEQq08rr+P6MSnYTxP5bjkxHO8NKYHrl4KseIgeEKdAtW4P4OKrirZUjKr76c4NObKzCjmwotPWzjn6lvcSaWpSUjzDVYdJR6dfTtiCntpoiO4VBs47dXoJGdQzC8Q5DoGA5pmNJ6LyOTWWLEusQqPNzlxlu6M9dXYHi0EoNb1R6e6RSgwIHLBuSXSzh42YByvYQobzl2plbhUIYBc3ra1pa0f2E6lqWloqWL9f2b0Sg0eKnvS1DIFaKjOBSWTAO8MqYDjzZrZq5KA0KytouOUa/lCXq4OQF3t73+uP43x/U4lG7AK4PVdT4fH6XEhI4qdP+kBJN/LsfyUc5wdQJmrKvAh8Od8cEBPVq/V4I+n5XiRJZtXFYnoPAyll26iBYugaKjmJjdZTYiPHh6QnNjyTSAu0aFpfd3gUrBkzSby/SQZMh0JaJj1Ouzw3qM76CCRln/70RaoRGP/1aBVXc7X3e+hQM1ODfHDcdmaDG6rQqv7NBhcIQSKgXw0p+V2DnFBVO7qDDxp3JLvBSLCCy4hM8upyPEJUB0FABAnH8cJsROEB3DIbFkGqhTqCeeuZ3H1DeXEaoDoiPUa0dKFc7kGjE17vpDWQfTDcgqlRD3USmUi4qgXFSE7SkGvLtXB+WiIhiMtW/ldDrHgC+P6fHiIDW2JVehf5gCfq5y3NNOhUPpRhRX2s7tn4Ly07AsPRPBzv5CczgrnfFS35cgl/HPnQg8hq8RpvZrhT0XcvH7qSzRUeyas8KAljnWO1S27LAeXYPk6BR4/bH92yKUODbD1WTalJ/L0cZXgWf6ONW6fJEkSXj01wosGaqG1kkGgxHQVx9oVvNfg+10DAAgJC8VywBMCfRDRnm2kAxPdn0SoW62dR6PPWG1N9LrYzshyMP6Dym1ZQ8Fp0FeUdDs6y3RSTiSYcCRjOp9H0n5RhzJMCC10FgzT1GlhO9O6uvdirltRSne26cDALipZWjvrzD5clXJ4ONcPf1anx7Sw89FhhGtq49u69NSiT+SqrDnYhXe+qsSsX5yeGpsb8i2RV4qPsvMhb/Gt9nXPSxiGO5rc1+zr5euYsk0kperE969vwsvomlBozUHhaz3wGUDunxUii4flQIAntxUiS4fleL5rVdPtvzmuB6SBNzfvu7DnM/nGWvOc2mMzBIjFu+oxLt3XP0A0yNEgad6qTH8q3J8e7IKn490bvRyrUVobjI+yy6Av8an2dbZwbcDFvVZ1Gzro7rJJEmysQ1w6/DeH4l4Y9NZ0THsjkou4YzH45CX54iOQhaQ5BeJh3zckFOZZ9H1BLgE4OvhX8PPxc+i66Eb45ZMEz02MAqD2ojdoWmPJgZdZMHYsYjs81iWVwIftZfF1uGsdMa7g95lwVgJlkwTyeUyvHt/F8QEaEVHsSvjXA6JjkAW1irrHJbllcNb7Wn2Zcsgw4t9XkSsD6/UYS1YMjdBq1Zi2aTu8Ob1zcxCJpMQnbdNdAxqBpFZZ/FpfiW8nDzMutzpnaYjPjzerMukm8OSuUmh3i74cEJXOCn4Vt6sBwLToSjNFB2Dmkl05hl8UlgFTzMVzdCwoZjRaYZZlkXmw7+MZtAjwhuv3M37z9ys+7SHRUegZtY64xQ+KTLAw8n9ppbT1rstXur7EmQyHvVpbVgyZjKmawvMHRwtOoZNa1uwTXQEEqBN+kl8XCzBTdW0/Zu+zr54d9C7cFba7iHe9owlY0ZzB8dgbFfbuHGTtRkTkAll8SXRMUiQ2Msn8EmpotFFo1ao8e6t7yLQ1bouxklXsWTM7JW7O6BfdPOf2WzrJrgfER2BBGt36Rg+KlNCq3K98cx/e6H3C+jgx6Fqa8aSMTOVQo4PJ3RF1zDLnQdgj9oXWe+1yqj5dLh4FB+Uq+GqvPGtNR6PexzDWw1vhlR0M1gyFuCqVuKLKd3RKdRTdBSbMMwvB6rCZNExyEp0TjuCDyqc4XKdonms82OY2mFqM6aipmLJWIibRoUVD/VAhxDzngdgjyZ7JoiOQFamS9phvF/pWufO/Gkdp/FQZRvCkrEgD2cVVj7cA7FBN3d4pr3rXPKn6AhkhbqmHsT/dG5wVly9aOhD7R/C7C6zBaaixmLJWJinixO+nNoTrQPcREexSoN88uGUnyg6Blmp7ikHsNTgAY1CjYmxE/FE1ydER6JGYsk0A29XJ6x6pCei/Hmds2s97H1UdASycj2T9mN1xH34V/d/iY5CTcCSaSa+WjW+eqQnWvk1/PBMR9C1bIfoCGTt+j6BVn3miU5BTcSSaUb+bhp8/cgtaBPIoTMA6ONVCE3uSdExyJoN/D9g8ELRKegmsGSaWYC7Bt9O74VerZrvDoHWaqrvcdERyJoNfgEY+IzoFHSTWDICuGtUWP5QD4zoFCw6ilA9y3eKjkDWSK4CRn0A9J0rOgmZAUtGECelHO/e1xmP9IsQHUWIOI8SuOTw/Bi6hsYTePBHoPMDopOQmbBkBJLJZPj38Fg8f2cs5A52hfLpfhwqo2t4hQMPbwYi+otOQmbEkrECD/WNwNL74+CkdJwfRy/dbtERyJq06AFM3QL4xYhOQmbmOH/VrNzwjkFY+VAPuGuUoqNYXDu3UmizDoqOQdai3Whg0lrAlVcvt0csGSvSs5UPfp7V1+4PcZ4RcAoySKJjkDXo+wQw9nNApbnxvGSTWDJWJsLXFWse64PRXUJER7GYfnoOlTk8pQa4a2n1OTC8ZbJdk0mSxI+UVmrlnhS8uPYkdAaj6ChmE+lSjt+laZBJBtFRSBTvSGDcF0BQR9FJqBlwS8aKPXhLGL6b3gshnvZz7/KZQadZMI6s/Rjg0e0sGAfCkrFynUI98evsvugf4yc6ilkMNPwlOgKJoNQAd74NjP0MUNv3PkcyxeEyG2E0Snh7SyKW/pEIW/2JtdBUYod8GmRGvego1Jx8oquHxwLbi05CAnBLxkbI5TI8OSQGKx/qabPDZzODz7JgHE2HccC0bSwYB8aSsTF9o33x29x+uK97qOgojTZY2iM6AjUXJzdgxLvAmE8BNe+j5Mg4XGbDtp/NxvwfjuJyYYXoKDfkr9Zjr3IaZIZK0VHI0qKHAne+BXi0EJ2ErAC3ZGzYgBg/bHyiP+7pZv3/mB8LPseCsXcuPsDdnwDjv2PBUA1uydiJrWeyMP+HY8goss6tmj2tPkfg5c2iY5CldBgH3P5fXhqGamHJ2JGiCj1eXHsS3x28KDqKCS9VFQ5ppkOmLxMdhczNPaR6aCwmXnQSslIcLrMj7hoVXh/XCd9P74WOLTxEx6kxI+QCC8buyIBuDwMz97Jg6Lq4JWOnJEnCD4cu4bXfTiOrWOy+kJ2RX6LFpfVCM5AZtewNDH0JaNFVdBKyASwZO1daWYX3t53DpzuSUFnV/NdAc1UacNxlBmS6kmZfN5mZTxQw+AWg7Z2ik5ANYck4iLS8Mryy4RTWH8to1vU+FXYeszOfa9Z1kpm5+AADngW6PQQo7P9+R2ReLBkHs/dCLhb9ehInLhc1y/q2RX2D8Iu/NMu6yMyUGuCWGUDfJwGNu+g0ZKNYMg5IkiRsOpmJ9/44h2OXCi22HmeFASe1syCrtNw6yBJkQMd7gNue5/kudNNYMg5u65ksLN2SiEOpBWZf9szQZPwr+//MvlyyEIUT0OEeoM/jgF+M6DRkJ1gyBADYfS4H7/6RiD0X8sy2zC3RPyAy7QezLY8sxEkLdJ0M9JoJuAeLTkN2hiVDJg4k5+HdP87hz7PZN7UclVzCGY85kJfnmikZmZ2LL9BzOtBjKuDsJToN2SmWDNXp6MUCfLE7GeuOpjfp0OepIWn4T+4zFkhGN82zJdBrNhD3IKCyzdtGkO1gydB1FZbp8cOhi/hqXyrOZTX8XJeN0T+jddpqCyajRpHJgchBQJcHgTZ38lBkajYsGWqwvRdysWpvKn47ngGdof6tG5lMwjnvJ6EozWzGdFQnz5bVxdL5AR4pRkLw4ww1WM9WPujZygd5pTp8fzANX+9LQ1JOaa35xgdehiKfBSOMQg20HVE9HBYxAJDJRCciB8YtGWoySZKwPzkfvx69jPXHMpBTUn2NtF+j16F92irB6RxQYMfqrZaO47gjn6wGS4bMwmiUsCcpF78eTcfCjJlwykwQHcn+yRRAWG+g9TCgzTDAK1x0IqJaWDJkfkYjkLYXOP0rcHodkJ8kOpH9ULkCkbdW77yPiQdcvEUnIroulgxZXuZJ4PwWIHknkPIXwMvMNI42AIgeCrQZDrS6FVBpRCciajCWDDUvowFIT6gunOSdQOpfQGXzXKzTZmgDgfA+QHhfILwf4BstOhFRk7FkSCyjAUg/crV00hOAEgc6Mk2mAPxjgdDuQGhPoEV3wCdSdCois2HJkPUpzQEyjwOZJ/7+Og5knwGqKkQnuznaAMCvNeDX5upXUEdA7SY6GZHFsGTINhgNQO65v8vnJFCQChRdBoouAcXp1lNASmdA6w94t/q7SFpf/S930pMDYsmQfSjNrS6cmq/LQFF69f4efRmgLwd0pdX/1ZdVf+nKAEOl6XJkCkCprr7svcLp6v9f+a+Ld/UWida/et+J1h9wC7w6TeMh5vUTWSmWDDk2o6G6eGTy6iKRK0QnIrIrLBkiIrIYuegARERkv1gyRERkMSwZImqyhQsXonPnzqJjkBXjPhkiahCZTIY1a9Zg1KhRNdNKSkpQWVkJHx8fccHIqvF+MkTUZFqtFlqtVnQMsmIcLiOycgMHDsScOXPw9NNPw9vbG4GBgVi4cGHN8wUFBZg6dSr8/Pzg7u6OQYMGISHB9FYLL730Evz9/eHm5oapU6fi2WefNRnm2r9/P4YMGQJfX194eHhgwIABOHToUM3z4eHhAIDRo0dDJpPVPP7ncNmmTZug0WhQUFBgsu7HH38cgwYNqnm8c+dO9OvXD87OzggNDcWcOXNQWlr75ndkH1gyRDZg+fLlcHV1xd69e/Haa69h0aJF2Lx5MwBg3LhxyMrKwoYNG3Dw4EHExcXhtttuQ15eHgBg1apVWLx4MV599VUcPHgQLVu2xAcffGCy/OLiYkyaNAk7d+7Enj17EB0djWHDhqG4uBhAdQkBwOeff4709PSax/902223wdPTEz/88EPNNIPBgNWrV2P8+PEAgPPnz+P222/HmDFjcPToUaxevRo7d+7ErFmzzP+mkXWQiMiqDRgwQOrbt6/JtO7du0vPPPOMtGPHDsnd3V2qqKgweT4yMlL66KOPJEmSpJ49e0ozZ840eb5Pnz5Sp06d6l2nwWCQ3NzcpLVr19ZMAyCtWbPGZL4FCxaYLOfxxx+XBg0aVPN448aNklqtlvLz8yVJkqSHH35YmjZtmskyduzYIcnlcqm8vLzePGS7uCVDZAM6duxo8jgoKAhZWVlISEhASUkJfHx8avaPaLVaJCUl4fz58wCAM2fOoEePHibff+3jzMxMPPLII4iOjoaHhwfc3d1RUlKC1NTURuUcP348tm3bhsuXLwOo3ooaPnw4PD09AQAJCQn44osvTLLGx8fDaDQiKYk3t7NH3PFPZANUKpXJY5lMBqPRiJKSEgQFBWHbtm21vufKH/aGmDRpEnJzc/HOO+8gLCwMarUavXr1gk6na1TO7t27IzIyEt988w1mzJiBNWvW4Isvvqh5vqSkBI8++ijmzJlT63tbtmzZqHWRbWDJENmwuLg4ZGRkQKlU1uyMv1br1q2xf/9+TJw4sWbatftUdu3ahffffx/Dhg0DAKSlpSEnJ8dkHpVKBYPBcMNM48ePx6pVq9CiRQvI5XIMHz7cJO/JkycRFRXV0JdINo7DZUQ2bPDgwejVqxdGjRqFTZs2ITk5Gbt378a///1vHDhwAAAwe/ZsLFu2DMuXL0diYiJeeuklHD16FDKZrGY50dHRWLlyJU6dOoW9e/di/PjxcHZ2NllXeHg4tmzZgoyMDOTn59ebafz48Th06BAWL16MsWPHQq1W1zz3zDPPYPfu3Zg1axaOHDmCxMRE/Pzzz9zxb8dYMkQ2TCaTYf369ejfvz+mTJmCmJgY3HfffUhJSUFAQACA6j/68+fPx7x58xAXF4ekpCRMnjwZGo2mZjnLli1Dfn4+4uLi8OCDD2LOnDnw9/c3Wdebb76JzZs3IzQ0FF26dKk3U1RUFHr06IGjR4/WHFV2RceOHbF9+3acPXsW/fr1Q5cuXfD8888jODjYjO8KWROe8U/kgIYMGYLAwECsXLlSdBSyc9wnQ2TnysrK8OGHHyI+Ph4KhQJff/01fv/995rzbIgsiVsyRHauvLwcI0aMwOHDh1FRUYHWrVvjP//5D+6++27R0cgBsGSIiMhiuOOfiIgshiVDREQWw5IhIiKLYckQEZHFsGSIiMhiWDJERGQxLBkiIrIYlgwREVkMS4aIiCyGJUNERBbDkiEiIothyRARkcWwZIiIyGJYMkREZDEsGSIishiWDBERWQxLhoiILIYlQ0REFsOSISIii2HJEBGRxbBkiIjIYlgyRERkMSwZIiKyGJYMERFZDEuGiIgshiVDREQWw5IhIiKLYckQEZHF/D+iODi0h22t7wAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "\n", + "# count the number of rows for each sentiment\n", + "counts = data['twitter_roberta'].value_counts()\n", + "\n", + "# create a pie chart\n", + "plt.pie(counts, labels=counts.index, autopct='%1.1f%%')\n", + "plt.title('Sentiment Distribution')\n", + "plt.show()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAkQAAAGzCAYAAADOnwhmAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA6W0lEQVR4nO3deVxVdf7H8fdlRwTcWFMRTcWtprSQtJqSEZMslxo1NFBHmwZyy0adxszJRG2yslSyDM0ll8nKbNRwSVvINc20XMpdQUsBxZHtnt8f/ryPrmDp9cJFzuv5eJzHo/s933vO53sh7ttzvucci2EYhgAAAEzMzdUFAAAAuBqBCAAAmB6BCAAAmB6BCAAAmB6BCAAAmB6BCAAAmB6BCAAAmB6BCAAAmB6BCAAAmB6BCECVZLFY9Pzzz7u6jKvy2WefyWKx6LPPPiv3fT3//POyWCx2bRaLRSkpKeW+b0maPXu2LBaLDh48WCH7A64WgQhwounTp8tisSg6OtrVpVQ6DRo0kMVisS1+fn6688479e677zq8zf/+97+VLvQcPHjQbpyenp6qU6eO7rrrLv3jH//Q4cOHnbavCRMm6MMPP3Ta9pypMtcGlMXCs8wA52nXrp2OHz+ugwcPat++fbr55ptdXVKl0aBBA9WsWVNPP/20JOnEiRN6++23tXfvXs2cOVMDBw685m2mpKRo2rRpKuvP2IULF+Th4SEPD4/rrv1aHDx4UJGRkerdu7c6d+4sq9WqM2fOaPPmzVq6dKksFotmzZqlXr162d5jtVpVWFgoLy8vubld/b9Tq1evrkceeUSzZ8++6vcUFxeruLhYPj4+tjaLxaLk5GS98cYbV70dR2srKSlRUVGRvL29Sx2pAlypYv9SAFXYgQMH9NVXX2np0qV64oknNH/+fI0dO7ZCa7j0xfrrL7vK5KabblKfPn1sr5OSktSwYUO98sorDgWi3+Lqz+D222+3G6skHTp0SB07dlRiYqKaNWumW2+9VZLk5uZW7vXm5+fLz8/PJSHx19zd3eXu7u6y/QNXwikzwEnmz5+vmjVrKj4+Xo888ojmz59vW1dUVKRatWqpX79+pd6Xl5cnHx8fjRgxwtZWUFCgsWPH6uabb5a3t7fq1aunv//97yooKLB776W5H/Pnz1eLFi3k7e2tlStXSpL+/e9/66677lLt2rXl6+ur1q1b6z//+U+p/f/vf//T4MGDVadOHfn7++uhhx7SsWPHypyDc+zYMfXv318hISHy9vZWixYt9M477zj8mQUFBSkqKko//vijXfvnn3+uRx99VPXr17eNf9iwYfrf//5n65OUlKRp06bZPodLy68/m1/Xf2nuzP79+5WUlKQaNWooMDBQ/fr10/nz5x3+TK5FRESEZs+ercLCQk2ePNnWXtYcon379qlHjx4KDQ2Vj4+P6tatq169eik3N9c2vvz8fM2ZM8c29qSkJLux7t69W4899phq1qyp9u3b260ry/z589W0aVP5+PiodevW2rBhg936pKQkNWjQoNT7Lt/mb9V2pTlE06dPt/0Oh4eHKzk5WTk5OXZ9/vjHP6ply5bavXu37rvvPlWrVk033XST3WcJOIojRICTzJ8/X927d5eXl5d69+6tGTNmaPPmzbrjjjvk6empbt26aenSpXrzzTfl5eVle9+HH36ogoIC2ykUq9Wqhx56SF988YUGDRqkZs2aaefOnXrllVe0d+/eUvMy1q5dq8WLFyslJUV16tSxfWG99tpreuihh5SQkKDCwkItXLhQjz76qJYvX674+Hjb+5OSkrR48WL17dtXbdu21fr16+3WX5Kdna22bdvaQlhQUJBWrFihAQMGKC8vT0OHDr3mz6y4uFhHjx5VzZo17dqXLFmi8+fP68knn1Tt2rW1adMmvf766zp69KiWLFkiSXriiSd0/PhxZWRkaO7cuVe9zz//+c+KjIxUamqqtm3bprffflvBwcGaNGnSNX8mjoiJiVGjRo2UkZFxxT6FhYWKi4tTQUGBnnrqKYWGhurYsWNavny5cnJyFBgYqLlz5+ovf/mL7rzzTg0aNEiS1KhRI7vtPProo2rcuLEmTJhQ5mnFX1u/fr0WLVqkwYMHy9vbW9OnT1enTp20adMmtWzZ8prGeDW1/drzzz+vcePGKTY2Vk8++aT27Nlj+//nyy+/lKenp63vmTNn1KlTJ3Xv3l1//vOf9Z///EcjR45Uq1at9MADD1xTnYAdA8B127JliyHJyMjIMAzDMKxWq1G3bl1jyJAhtj6rVq0yJBkff/yx3Xs7d+5sNGzY0PZ67ty5hpubm/H555/b9UtLSzMkGV9++aWtTZLh5uZm7Nq1q1RN58+ft3tdWFhotGzZ0rj//vttbVu3bjUkGUOHDrXrm5SUZEgyxo4da2sbMGCAERYWZvz88892fXv16mUEBgaW2t/lIiIijI4dOxqnTp0yTp06ZezcudPo27evIclITk7+zdoNwzBSU1MNi8ViHDp0yNaWnJxsXOnP2OX1jx071pBk9O/f365ft27djNq1a9teX8tnUpYDBw4YkoyXXnrpin0efvhhQ5KRm5trGIZhrFu3zpBkrFu3zjAMw/jmm28MScaSJUt+c19+fn5GYmJiqfZLY+3du/cV1/2aJEOSsWXLFlvboUOHDB8fH6Nbt262tsTERCMiIuKqtnml2tLT0w1JxoEDBwzDMIyTJ08aXl5eRseOHY2SkhJbvzfeeMOQZLzzzju2tnvvvdeQZLz77ru2toKCAiM0NNTo0aNHqX0B14JTZoATzJ8/XyEhIbrvvvskXTxl0LNnTy1cuFAlJSWSpPvvv1916tTRokWLbO87c+aMMjIy1LNnT1vbkiVL1KxZM0VFRennn3+2Lffff78kad26dXb7vvfee9W8efNSNfn6+trtJzc3V3fffbe2bdtma790eu1vf/ub3Xufeuopu9eGYej9999Xly5dZBiGXV1xcXHKzc212+6VfPrppwoKClJQUJBatWqluXPnql+/fnrppZeuWHt+fr5+/vln3XXXXTIMQ998883v7ue3/PWvf7V7fffdd+uXX35RXl6epKv/TK5H9erVJUlnz54tc31gYKAkadWqVaVO512Ly8f6W2JiYtS6dWvb6/r16+vhhx/WqlWrbL/D5WH16tUqLCzU0KFD7SaUDxw4UAEBAfrkk0/s+levXt1ubpaXl5fuvPNO/fTTT+VWI8yBQARcp5KSEi1cuFD33XefDhw4oP3792v//v2Kjo5Wdna21qxZI0ny8PBQjx499NFHH9nmAi1dulRFRUV2gWjfvn3atWuXLThcWpo0aSJJOnnypN3+IyMjy6xr+fLlatu2rXx8fFSrVi0FBQVpxowZtjko0sVJvm5ubqW2cfnVcadOnVJOTo5mzpxZqq5L86Iur6ss0dHRysjI0MqVK/Xvf/9bNWrU0JkzZ+xOIUrS4cOHlZSUpFq1aql69eoKCgrSvffeK0l29Tuifv36dq8vna47c+aMpKv/TK7HuXPnJEn+/v5lro+MjNTw4cP19ttvq06dOoqLi9O0adOueexX+t0oS+PGjUu1NWnSROfPn9epU6euab/X4tChQ5Kkpk2b2rV7eXmpYcOGtvWX1K1bt9QcqJo1a9p+foCjmEMEXKe1a9fqxIkTWrhwoRYuXFhq/fz589WxY0dJUq9evfTmm29qxYoV6tq1qxYvXqyoqCjb1UbSxTlErVq10pQpU8rcX7169exe//poyiWff/65HnroId1zzz2aPn26wsLC5OnpqfT0dC1YsOCax2i1WiVJffr0UWJiYpl9brnllt/dTp06dRQbGytJiouLU1RUlB588EG99tprGj58uKSLAfNPf/qTTp8+rZEjRyoqKkp+fn46duyYkpKSbLU46kpXOBkVeAeS7777TsHBwQoICLhin5dffllJSUn66KOP9Omnn2rw4MFKTU3V119/rbp1617Vfsr63bgeV5qMXZ5HkC5XGX5+qJoIRMB1mj9/voKDg21XPP3a0qVL9cEHHygtLU2+vr665557FBYWpkWLFql9+/Zau3atnn32Wbv3NGrUSDt27FCHDh0cvk/L+++/Lx8fH61atUre3t629vT0dLt+ERERslqtOnDggN0Rgv3799v1CwoKkr+/v0pKSmyBxhni4+N17733asKECXriiSfk5+ennTt3au/evZozZ44ef/xxW9+yJiGXx31srvYzcVRmZqZ+/PHHUpfkl6VVq1Zq1aqV/vnPf+qrr75Su3btlJaWpvHjx0ty7vj37dtXqm3v3r2qVq2agoKCJF08EnP5lV+SSh3FuZbaIiIiJEl79uxRw4YNbe2FhYU6cOCAU3/fgN/CKTPgOvzvf//T0qVL9eCDD+qRRx4ptaSkpOjs2bNatmyZpIv3m3nkkUf08ccfa+7cuSouLrY7XSZdvArq2LFjeuutt8rcX35+/u/W5e7uLovFYvcv94MHD5a6Qi0uLk7SxUuef+31118vtb0ePXro/fff13fffVdqf9dzSmXkyJH65ZdfbOO9dATg1//iNwxDr732Wqn3+vn5SVKZX9KOutrPxBGHDh1SUlKSvLy89Mwzz1yxX15enoqLi+3aWrVqJTc3N7tbL/j5+Tlt7JmZmXbzwI4cOaKPPvpIHTt2tP1MGjVqpNzcXH377be2fidOnNAHH3xQantXW1tsbKy8vLw0depUu5/5rFmzlJub67Sr+4DfwxEi4DosW7ZMZ8+e1UMPPVTm+rZt2yooKEjz58+3BZ+ePXvq9ddf19ixY9WqVSs1a9bM7j19+/bV4sWL9de//lXr1q1Tu3btVFJSoh9++EGLFy/WqlWr1KZNm9+sKz4+XlOmTFGnTp302GOP6eTJk5o2bZpuvvlmuy+z1q1bq0ePHnr11Vf1yy+/2C4x37t3ryT7f+VPnDhR69atU3R0tAYOHKjmzZvr9OnT2rZtm1avXq3Tp0879Bk+8MADatmypaZMmaLk5GRFRUWpUaNGGjFihI4dO6aAgAC9//77Zc4RuTQJePDgwYqLi5O7u7vdHaAdcS2fyW/Ztm2b5s2bJ6vVqpycHG3evFnvv/++LBaL5s6d+5unGNeuXauUlBQ9+uijatKkiYqLizV37lxbMP11ratXr9aUKVMUHh6uyMhIhx8b07JlS8XFxdlddi9J48aNs/Xp1auXRo4cqW7dumnw4ME6f/68ZsyYoSZNmpSaVH+1tQUFBWn06NEaN26cOnXqpIceekh79uzR9OnTdccdd1zVkTTAKVx3gRtw4+vSpYvh4+Nj5OfnX7FPUlKS4enpabtc3Wq1GvXq1TMkGePHjy/zPYWFhcakSZOMFi1aGN7e3kbNmjWN1q1bG+PGjbNdqm0YRpmXrF8ya9Yso3Hjxoa3t7cRFRVlpKenl3l5dH5+vpGcnGzUqlXLqF69utG1a1djz549hiRj4sSJdn2zs7ON5ORko169eoanp6cRGhpqdOjQwZg5c+bvflYRERFGfHx8metmz55tSDLS09MNwzCM3bt3G7GxsUb16tWNOnXqGAMHDjR27Nhh18cwDKO4uNh46qmnjKCgIMNisdiNTVe47P7UqVN2+778MvBr/Uwud+my+0uLh4eHUatWLSM6OtoYPXq03W0DLrn8svuffvrJ6N+/v9GoUSPDx8fHqFWrlnHfffcZq1evtnvfDz/8YNxzzz2Gr6+vIcl2mfuVxvrrdb926fdo3rx5tt+Z2267zVbPr3366adGy5YtDS8vL6Np06bGvHnzytzmlWor6/M2jIuX2UdFRRmenp5GSEiI8eSTTxpnzpyx63PvvfcaLVq0KFXTlW4HAFwLnmUGoJTt27frtttu07x585SQkODqcioFPhOgamMOEWByv34cxiWvvvqq3NzcdM8997igItfjMwHMhzlEgMlNnjxZW7du1X333ScPDw+tWLFCK1as0KBBg0pd4m8WfCaA+XDKDDC5jIwMjRs3Trt379a5c+dUv3599e3bV88++6xLn4ruSnwmgPkQiAAAgOkxhwgAAJieSwPRhg0b1KVLF4WHh8tisZS6aZxhGHruuecUFhYmX19fxcbGlrqb6unTp5WQkKCAgADVqFFDAwYMsD0n6JJvv/1Wd999t3x8fFSvXj1Nnjy5vIcGAABuIC49GZ6fn69bb71V/fv3V/fu3Uutnzx5sqZOnao5c+YoMjJSY8aMUVxcnHbv3i0fHx9JUkJCgk6cOKGMjAwVFRWpX79+GjRokO15TXl5eerYsaNiY2OVlpamnTt3qn///qpRo4YGDRp0VXVarVYdP35c/v7+5fKoAAAA4HyGYejs2bMKDw+Xm9vvHANy3S2Q7EkyPvjgA9trq9VqhIaGGi+99JKtLScnx/D29jbee+89wzAu3rxNkrF582ZbnxUrVhgWi8U4duyYYRiGMX36dKNmzZpGQUGBrc/IkSONpk2bXnVtR44csbvRGgsLCwsLC8uNsxw5cuR3v+sr7eUSBw4cUFZWlt2D/QIDAxUdHa3MzEz16tVLmZmZqlGjht1jDGJjY+Xm5qaNGzeqW7duyszM1D333CMvLy9bn7i4OE2aNElnzpxRzZo1S+27oKDA7nlBxv/POz9y5MhvPp0aAABUHnl5eapXr578/f1/t2+lDURZWVmSpJCQELv2kJAQ27qsrCwFBwfbrffw8FCtWrXs+kRGRpbaxqV1ZQWi1NRUu+f3XBIQEEAgAgDgBnM10124yqwMo0ePVm5urm05cuSIq0sCAADlqNIGotDQUElSdna2XXt2drZtXWhoqE6ePGm3vri4WKdPn7brU9Y2fr2Py3l7e9uOBnFUCACAqq/SBqLIyEiFhoZqzZo1tra8vDxt3LhRMTExkqSYmBjl5ORo69attj5r166V1WpVdHS0rc+GDRtUVFRk65ORkaGmTZuWeboMAACYj0sD0blz57R9+3Zt375d0sWJ1Nu3b9fhw4dlsVg0dOhQjR8/XsuWLdPOnTv1+OOPKzw8XF27dpUkNWvWTJ06ddLAgQO1adMmffnll0pJSVGvXr0UHh4uSXrsscfk5eWlAQMGaNeuXVq0aJFee+01DR8+3EWjBgAAlc5VX3teDtatW1fm5XGJiYmGYVy89H7MmDFGSEiI4e3tbXTo0MHYs2eP3TZ++eUXo3fv3kb16tWNgIAAo1+/fsbZs2ft+uzYscNo37694e3tbdx0003GxIkTr6nO3NxcQ5KRm5t7XeMFAAAV51q+v3mW2VXIy8tTYGCgcnNzmU8EAMAN4lq+vyvtHCIAAICKQiACAACmRyACAACmRyACAACmRyACAACmRyACAACmRyACAACmRyACAACm5+HqAgAA5tFg1CeuLuGaHZwY7+oSUAE4QgQAAEyPQAQAAEyPQAQAAEyPQAQAAEyPQAQAAEyPQAQAAEyPQAQAAEyPQAQAAEyPQAQAAEyPO1UDwA3oRrzjM1CZcYQIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYXqUORCUlJRozZowiIyPl6+urRo0a6YUXXpBhGLY+hmHoueeeU1hYmHx9fRUbG6t9+/bZbef06dNKSEhQQECAatSooQEDBujcuXMVPRwAAFBJVepANGnSJM2YMUNvvPGGvv/+e02aNEmTJ0/W66+/buszefJkTZ06VWlpadq4caP8/PwUFxenCxcu2PokJCRo165dysjI0PLly7VhwwYNGjTIFUMCAACVkMX49eGWSubBBx9USEiIZs2aZWvr0aOHfH19NW/ePBmGofDwcD399NMaMWKEJCk3N1chISGaPXu2evXqpe+//17NmzfX5s2b1aZNG0nSypUr1blzZx09elTh4eG/W0deXp4CAwOVm5urgICA8hksAFyDBqM+cXUJpnFwYryrS4CDruX7u1IfIbrrrru0Zs0a7d27V5K0Y8cOffHFF3rggQckSQcOHFBWVpZiY2Nt7wkMDFR0dLQyMzMlSZmZmapRo4YtDElSbGys3NzctHHjxjL3W1BQoLy8PLsFAABUXR6uLuC3jBo1Snl5eYqKipK7u7tKSkr04osvKiEhQZKUlZUlSQoJCbF7X0hIiG1dVlaWgoOD7dZ7eHioVq1atj6XS01N1bhx45w9HAAAUElV6iNEixcv1vz587VgwQJt27ZNc+bM0b///W/NmTOnXPc7evRo5ebm2pYjR46U6/4AAIBrVeojRM8884xGjRqlXr16SZJatWqlQ4cOKTU1VYmJiQoNDZUkZWdnKywszPa+7Oxs/eEPf5AkhYaG6uTJk3bbLS4u1unTp23vv5y3t7e8vb3LYUQAAKAyqtRHiM6fPy83N/sS3d3dZbVaJUmRkZEKDQ3VmjVrbOvz8vK0ceNGxcTESJJiYmKUk5OjrVu32vqsXbtWVqtV0dHRFTAKAABQ2VXqI0RdunTRiy++qPr166tFixb65ptvNGXKFPXv31+SZLFYNHToUI0fP16NGzdWZGSkxowZo/DwcHXt2lWS1KxZM3Xq1EkDBw5UWlqaioqKlJKSol69el3VFWYAAKDqq9SB6PXXX9eYMWP0t7/9TSdPnlR4eLieeOIJPffcc7Y+f//735Wfn69BgwYpJydH7du318qVK+Xj42PrM3/+fKWkpKhDhw5yc3NTjx49NHXqVFcMCQAAVEKV+j5ElQX3IQJQ2XAfoorDfYhuXFXmPkQAAAAVgUAEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMj0AEAABMz8PVBQCAqzUY9YmrSwDgYhwhAgAApkcgAgAApkcgAgAApkcgAgAApkcgAgAApkcgAgAApkcgAgAAplfpA9GxY8fUp08f1a5dW76+vmrVqpW2bNliW28Yhp577jmFhYXJ19dXsbGx2rdvn902Tp8+rYSEBAUEBKhGjRoaMGCAzp07V9FDAQAAlVSlDkRnzpxRu3bt5OnpqRUrVmj37t16+eWXVbNmTVufyZMna+rUqUpLS9PGjRvl5+enuLg4XbhwwdYnISFBu3btUkZGhpYvX64NGzZo0KBBrhgSAACohCyGYRiuLuJKRo0apS+//FKff/55mesNw1B4eLiefvppjRgxQpKUm5urkJAQzZ49W7169dL333+v5s2ba/PmzWrTpo0kaeXKlercubOOHj2q8PDw360jLy9PgYGBys3NVUBAgPMGCKBS4E7V+C0HJ8a7ugQ46Fq+vyv1EaJly5apTZs2evTRRxUcHKzbbrtNb731lm39gQMHlJWVpdjYWFtbYGCgoqOjlZmZKUnKzMxUjRo1bGFIkmJjY+Xm5qaNGzeWud+CggLl5eXZLQAAoOqq1IHop59+0owZM9S4cWOtWrVKTz75pAYPHqw5c+ZIkrKysiRJISEhdu8LCQmxrcvKylJwcLDdeg8PD9WqVcvW53KpqakKDAy0LfXq1XP20AAAQCVSqQOR1WrV7bffrgkTJui2227ToEGDNHDgQKWlpZXrfkePHq3c3FzbcuTIkXLdHwAAcK1KHYjCwsLUvHlzu7ZmzZrp8OHDkqTQ0FBJUnZ2tl2f7Oxs27rQ0FCdPHnSbn1xcbFOnz5t63M5b29vBQQE2C0AAKDqcigQ/fTTT86uo0zt2rXTnj177Nr27t2riIgISVJkZKRCQ0O1Zs0a2/q8vDxt3LhRMTExkqSYmBjl5ORo69attj5r166V1WpVdHR0BYwCAABUdg4Foptvvln33Xef5s2bZ3d5u7MNGzZMX3/9tSZMmKD9+/drwYIFmjlzppKTkyVJFotFQ4cO1fjx47Vs2TLt3LlTjz/+uMLDw9W1a1dJF48oderUSQMHDtSmTZv05ZdfKiUlRb169bqqK8wAAEDV59Bl99u3b1d6erree+89FRYWqmfPnhowYIDuvPNOpxe4fPlyjR49Wvv27VNkZKSGDx+ugQMH2tYbhqGxY8dq5syZysnJUfv27TV9+nQ1adLE1uf06dNKSUnRxx9/LDc3N/Xo0UNTp05V9erVr6oGLrsHqjYuu0dVw60CLrqW7+/rug9RcXGxli1bptmzZ2vlypVq0qSJ+vfvr759+yooKMjRzVY6BCKgaiMQoaohEF1UYfch8vDwUPfu3bVkyRJNmjRJ+/fv14gRI1SvXj09/vjjOnHixPVsHgAAoEJcVyDasmWL/va3vyksLExTpkzRiBEj9OOPPyojI0PHjx/Xww8/7Kw6AQAAyo2HI2+aMmWK0tPTtWfPHnXu3FnvvvuuOnfuLDe3i/kqMjJSs2fPVoMGDZxZKwAAQLlwKBDNmDFD/fv3V1JSksLCwsrsExwcrFmzZl1XcQAAABXBoUC0b9++3+3j5eWlxMRERzYPAABQoRyaQ5Senq4lS5aUal+yZIntOWMAAAA3CocCUWpqqurUqVOqPTg4WBMmTLjuogAAACqSQ4Ho8OHDioyMLNUeERFhe84YAADAjcKhQBQcHKxvv/22VPuOHTtUu3bt6y4KAACgIjkUiHr37q3Bgwdr3bp1KikpUUlJidauXashQ4aoV69ezq4RAACgXDl0ldkLL7yggwcPqkOHDvLwuLgJq9Wqxx9/nDlEAADghuNQIPLy8tKiRYv0wgsvaMeOHfL19VWrVq0UERHh7PoAAADKnUOB6JImTZrYPVUeAADgRuRQICopKdHs2bO1Zs0anTx5Ular1W792rVrnVIcAABARXAoEA0ZMkSzZ89WfHy8WrZsKYvF4uy6AAAAKoxDgWjhwoVavHixOnfu7Ox6AAAAKpxDl917eXnp5ptvdnYtAAAALuFQIHr66af12muvyTAMZ9cDAABQ4Rw6ZfbFF19o3bp1WrFihVq0aCFPT0+79UuXLnVKcQAAABXBoUBUo0YNdevWzdm1AAAAuIRDgSg9Pd3ZdQAAALiMQ3OIJKm4uFirV6/Wm2++qbNnz0qSjh8/rnPnzjmtOAAAgIrg0BGiQ4cOqVOnTjp8+LAKCgr0pz/9Sf7+/po0aZIKCgqUlpbm7DoBAADKjUNHiIYMGaI2bdrozJkz8vX1tbV369ZNa9ascVpxAAAAFcGhI0Sff/65vvrqK3l5edm1N2jQQMeOHXNKYQAAABXFoSNEVqtVJSUlpdqPHj0qf3//6y4KAACgIjkUiDp27KhXX33V9tpisejcuXMaO3Ysj/MAAAA3HIdOmb388suKi4tT8+bNdeHCBT322GPat2+f6tSpo/fee8/ZNQIAAJQrhwJR3bp1tWPHDi1cuFDffvutzp07pwEDBighIcFukjUAAMCNwKFAJEkeHh7q06ePM2sBAABwCYcC0bvvvvub6x9//HGHigEAAHAFhwLRkCFD7F4XFRXp/Pnz8vLyUrVq1QhEAADghuLQVWZnzpyxW86dO6c9e/aoffv2TKoGAAA3HIefZXa5xo0ba+LEiaWOHgEAAFR2TgtE0sWJ1sePH3fmJgEAAMqdQ3OIli1bZvfaMAydOHFCb7zxhtq1a+eUwgAAACqKQ4Goa9eudq8tFouCgoJ0//336+WXX3ZGXQAAABXGoUBktVqdXQcAAIDLOHUOEQAAwI3IoSNEw4cPv+q+U6ZMcWQXAAAAFcahQPTNN9/om2++UVFRkZo2bSpJ2rt3r9zd3XX77bfb+lksFudUCQAAUI4cCkRdunSRv7+/5syZo5o1a0q6eLPGfv366e6779bTTz/t1CIBAADKk0NziF5++WWlpqbawpAk1axZU+PHj+cqMwAAcMNxKBDl5eXp1KlTpdpPnTqls2fPXndRAAAAFcmhQNStWzf169dPS5cu1dGjR3X06FG9//77GjBggLp37+7sGgEAAMqVQ3OI0tLSNGLECD322GMqKiq6uCEPDw0YMEAvvfSSUwsEAAAobw4FomrVqmn69Ol66aWX9OOPP0qSGjVqJD8/P6cWBwAAUBGu68aMJ06c0IkTJ9S4cWP5+fnJMAxn1QUAAFBhHApEv/zyizp06KAmTZqoc+fOOnHihCRpwIABXHIPAABuOA4FomHDhsnT01OHDx9WtWrVbO09e/bUypUrnVYcAABARXBoDtGnn36qVatWqW7dunbtjRs31qFDh5xSGAAAQEVx6AhRfn6+3ZGhS06fPi1vb+/rLgoAAKAiORSI7r77br377ru21xaLRVarVZMnT9Z9993ntOIAAAAqgkOnzCZPnqwOHTpoy5YtKiws1N///nft2rVLp0+f1pdffunsGgEAAMqVQ0eIWrZsqb1796p9+/Z6+OGHlZ+fr+7du+ubb75Ro0aNnF0jAABAubrmI0RFRUXq1KmT0tLS9Oyzz5ZHTQAAABXqmo8QeXp66ttvvy2PWgAAAFzCoVNmffr00axZs5xdCwAAgEs4NKm6uLhY77zzjlavXq3WrVuXeobZlClTnFIcAABARbimQPTTTz+pQYMG+u6773T77bdLkvbu3WvXx2KxOK86AACACnBNgahx48Y6ceKE1q1bJ+niozqmTp2qkJCQcikOAACgIlzTHKLLn2a/YsUK5efnO7UgAACAiubQpOpLLg9IAAAAN6JrCkQWi6XUHKGKnDM0ceJEWSwWDR061NZ24cIFJScnq3bt2qpevbp69Oih7Oxsu/cdPnxY8fHxqlatmoKDg/XMM8+ouLi4wuoGAACV2zXNITIMQ0lJSbYHuF64cEF//etfS11ltnTpUudV+P82b96sN998U7fccotd+7Bhw/TJJ59oyZIlCgwMVEpKirp37257hEhJSYni4+MVGhqqr776SidOnNDjjz8uT09PTZgwwel1AgCAG881BaLExES713369HFqMVdy7tw5JSQk6K233tL48eNt7bm5uZo1a5YWLFig+++/X5KUnp6uZs2a6euvv1bbtm316aefavfu3Vq9erVCQkL0hz/8QS+88IJGjhyp559/Xl5eXqX2V1BQoIKCAtvrvLy88h8kAABwmWsKROnp6eVVx29KTk5WfHy8YmNj7QLR1q1bVVRUpNjYWFtbVFSU6tevr8zMTLVt21aZmZlq1aqV3ZVwcXFxevLJJ7Vr1y7ddtttpfaXmpqqcePGle+gAABApXFdk6orwsKFC7Vt2zalpqaWWpeVlSUvLy/VqFHDrj0kJERZWVm2PpffFuDS60t9Ljd69Gjl5ubaliNHjjhhJAAAoLJy6E7VFeXIkSMaMmSIMjIy5OPjU2H79fb2ts2TAgAAVV+lDkRbt27VyZMnbXfFli5Okt6wYYPeeOMNrVq1SoWFhcrJybE7SpSdna3Q0FBJUmhoqDZt2mS33UtXoV3qA1RWDUZ94uoSrtnBifGuLgEArlmlPmXWoUMH7dy5U9u3b7ctbdq0UUJCgu2/PT09tWbNGtt79uzZo8OHDysmJkaSFBMTo507d+rkyZO2PhkZGQoICFDz5s0rfEwAAKDyqdRHiPz9/dWyZUu7Nj8/P9WuXdvWPmDAAA0fPly1atVSQECAnnrqKcXExKht27aSpI4dO6p58+bq27evJk+erKysLP3zn/9UcnIyp8UAAICkSh6IrsYrr7wiNzc39ejRQwUFBYqLi9P06dNt693d3bV8+XI9+eSTiomJkZ+fnxITE/Wvf/3LhVUDAIDK5IYLRJ999pndax8fH02bNk3Tpk274nsiIiL03//+t5wrAwAAN6pKPYcIAACgIhCIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6Xm4ugCgojQY9YmrSwAAVFIcIQIAAKZHIAIAAKZHIAIAAKZHIAIAAKZHIAIAAKZHIAIAAKZHIAIAAKZHIAIAAKZHIAIAAKZHIAIAAKZHIAIAAKZHIAIAAKZHIAIAAKZXqQNRamqq7rjjDvn7+ys4OFhdu3bVnj177PpcuHBBycnJql27tqpXr64ePXooOzvbrs/hw4cVHx+vatWqKTg4WM8884yKi4srcigAAKASq9SBaP369UpOTtbXX3+tjIwMFRUVqWPHjsrPz7f1GTZsmD7++GMtWbJE69ev1/Hjx9W9e3fb+pKSEsXHx6uwsFBfffWV5syZo9mzZ+u5555zxZAAAEAlZDEMw3B1EVfr1KlTCg4O1vr163XPPfcoNzdXQUFBWrBggR555BFJ0g8//KBmzZopMzNTbdu21YoVK/Tggw/q+PHjCgkJkSSlpaVp5MiROnXqlLy8vH53v3l5eQoMDFRubq4CAgLKdYwoPw1GfeLqEkzh4MR4V5dwzfjdQFVzI/5/WB6u5fu7Uh8hulxubq4kqVatWpKkrVu3qqioSLGxsbY+UVFRql+/vjIzMyVJmZmZatWqlS0MSVJcXJzy8vK0a9euMvdTUFCgvLw8uwUAAFRdN0wgslqtGjp0qNq1a6eWLVtKkrKysuTl5aUaNWrY9Q0JCVFWVpatz6/D0KX1l9aVJTU1VYGBgbalXr16Th4NAACoTG6YQJScnKzvvvtOCxcuLPd9jR49Wrm5ubblyJEj5b5PAADgOh6uLuBqpKSkaPny5dqwYYPq1q1raw8NDVVhYaFycnLsjhJlZ2crNDTU1mfTpk1227t0FdqlPpfz9vaWt7e3k0cBAAAqq0p9hMgwDKWkpOiDDz7Q2rVrFRkZabe+devW8vT01Jo1a2xte/bs0eHDhxUTEyNJiomJ0c6dO3Xy5Elbn4yMDAUEBKh58+YVMxAAAFCpVeojRMnJyVqwYIE++ugj+fv72+b8BAYGytfXV4GBgRowYICGDx+uWrVqKSAgQE899ZRiYmLUtm1bSVLHjh3VvHlz9e3bV5MnT1ZWVpb++c9/Kjk5maNAAABAUiUPRDNmzJAk/fGPf7RrT09PV1JSkiTplVdekZubm3r06KGCggLFxcVp+vTptr7u7u5avny5nnzyScXExMjPz0+JiYn617/+VVHDAAAAlVylDkRXc4skHx8fTZs2TdOmTbtin4iICP33v/91ZmkAAKAKqdRziAAAACoCgQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJgegQgAAJieh6sLAAAAztVg1CeuLuGaHZwY79L9c4QIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYHoEIAACYnoerC8CNqcGoT1xdAgAATsMRIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHoEIgAAYHqmCkTTpk1TgwYN5OPjo+joaG3atMnVJQEAgErAw9UFVJRFixZp+PDhSktLU3R0tF599VXFxcVpz549Cg4OdmltDUZ94tL9AwBgdqY5QjRlyhQNHDhQ/fr1U/PmzZWWlqZq1arpnXfecXVpAADAxUxxhKiwsFBbt27V6NGjbW1ubm6KjY1VZmZmqf4FBQUqKCiwvc7NzZUk5eXllUt91oLz5bJdwBXK6/+T8sT/g4DrlcffjkvbNAzjd/uaIhD9/PPPKikpUUhIiF17SEiIfvjhh1L9U1NTNW7cuFLt9erVK7cagaoi8FVXVwDgRlSefzvOnj2rwMDA3+xjikB0rUaPHq3hw4fbXlutVp0+fVq1a9eWxWJx6r7y8vJUr149HTlyRAEBAU7ddmVQ1ccnVf0xMr4bX1UfI+O78ZXXGA3D0NmzZxUeHv67fU0RiOrUqSN3d3dlZ2fbtWdnZys0NLRUf29vb3l7e9u11ahRozxLVEBAQJX9RZeq/vikqj9Gxnfjq+pjZHw3vvIY4+8dGbrEFJOqvby81Lp1a61Zs8bWZrVatWbNGsXExLiwMgAAUBmY4giRJA0fPlyJiYlq06aN7rzzTr366qvKz89Xv379XF0aAABwMdMEop49e+rUqVN67rnnlJWVpT/84Q9auXJlqYnWFc3b21tjx44tdYquqqjq45Oq/hgZ342vqo+R8d34KsMYLcbVXIsGAABQhZliDhEAAMBvIRABAADTIxABAADTIxABAADTIxABAADTIxC5SGpqqu644w75+/srODhYXbt21Z49e1xdltPMmDFDt9xyi+2uozExMVqxYoWryyo3EydOlMVi0dChQ11ditM8//zzslgsdktUVJSry3KqY8eOqU+fPqpdu7Z8fX3VqlUrbdmyxdVlOU2DBg1K/QwtFouSk5NdXZpTlJSUaMyYMYqMjJSvr68aNWqkF1544aoe5HmjOHv2rIYOHaqIiAj5+vrqrrvu0ubNm11dlsM2bNigLl26KDw8XBaLRR9++KHdesMw9NxzzyksLEy+vr6KjY3Vvn37KqQ2ApGLrF+/XsnJyfr666+VkZGhoqIidezYUfn5+a4uzSnq1q2riRMnauvWrdqyZYvuv/9+Pfzww9q1a5erS3O6zZs3680339Qtt9zi6lKcrkWLFjpx4oRt+eKLL1xdktOcOXNG7dq1k6enp1asWKHdu3fr5ZdfVs2aNV1dmtNs3rzZ7ueXkZEhSXr00UddXJlzTJo0STNmzNAbb7yh77//XpMmTdLkyZP1+uuvu7o0p/nLX/6ijIwMzZ07Vzt37lTHjh0VGxurY8eOubo0h+Tn5+vWW2/VtGnTylw/efJkTZ06VWlpadq4caP8/PwUFxenCxculH9xBiqFkydPGpKM9evXu7qUclOzZk3j7bffdnUZTnX27FmjcePGRkZGhnHvvfcaQ4YMcXVJTjN27Fjj1ltvdXUZ5WbkyJFG+/btXV1GhRoyZIjRqFEjw2q1uroUp4iPjzf69+9v19a9e3cjISHBRRU51/nz5w13d3dj+fLldu2333678eyzz7qoKueRZHzwwQe211ar1QgNDTVeeuklW1tOTo7h7e1tvPfee+VeD0eIKonc3FxJUq1atVxcifOVlJRo4cKFys/Pr3LPjktOTlZ8fLxiY2NdXUq52Ldvn8LDw9WwYUMlJCTo8OHDri7JaZYtW6Y2bdro0UcfVXBwsG677Ta99dZbri6r3BQWFmrevHnq37+/LBaLq8txirvuuktr1qzR3r17JUk7duzQF198oQceeMDFlTlHcXGxSkpK5OPjY9fu6+tbpY7WXnLgwAFlZWXZ/T0NDAxUdHS0MjMzy33/pnl0R2VmtVo1dOhQtWvXTi1btnR1OU6zc+dOxcTE6MKFC6pevbo++OADNW/e3NVlOc3ChQu1bdu2G/p8/m+Jjo7W7Nmz1bRpU504cULjxo3T3Xffre+++07+/v6uLu+6/fTTT5oxY4aGDx+uf/zjH9q8ebMGDx4sLy8vJSYmuro8p/vwww+Vk5OjpKQkV5fiNKNGjVJeXp6ioqLk7u6ukpISvfjii0pISHB1aU7h7++vmJgYvfDCC2rWrJlCQkL03nvvKTMzUzfffLOry3O6rKwsSSr1SK2QkBDbuvJEIKoEkpOT9d1331W5xN+0aVNt375dubm5+s9//qPExEStX7++SoSiI0eOaMiQIcrIyCj1r7eq4tf/yr7lllsUHR2tiIgILV68WAMGDHBhZc5htVrVpk0bTZgwQZJ022236bvvvlNaWlqVDESzZs3SAw88oPDwcFeX4jSLFy/W/PnztWDBArVo0ULbt2/X0KFDFR4eXmV+hnPnzlX//v110003yd3dXbfffrt69+6trVu3urq0KodTZi6WkpKi5cuXa926dapbt66ry3EqLy8v3XzzzWrdurVSU1N166236rXXXnN1WU6xdetWnTx5Urfffrs8PDzk4eGh9evXa+rUqfLw8FBJSYmrS3S6GjVqqEmTJtq/f7+rS3GKsLCwUuG8WbNmVeq04CWHDh3S6tWr9Ze//MXVpTjVM888o1GjRqlXr15q1aqV+vbtq2HDhik1NdXVpTlNo0aNtH79ep07d05HjhzRpk2bVFRUpIYNG7q6NKcLDQ2VJGVnZ9u1Z2dn29aVJwKRixiGoZSUFH3wwQdau3atIiMjXV1SubNarSooKHB1GU7RoUMH7dy5U9u3b7ctbdq0UUJCgrZv3y53d3dXl+h0586d048//qiwsDBXl+IU7dq1K3Wri7179yoiIsJFFZWf9PR0BQcHKz4+3tWlONX58+fl5mb/Nebu7i6r1eqiisqPn5+fwsLCdObMGa1atUoPP/ywq0tyusjISIWGhmrNmjW2try8PG3cuLFC5p9yysxFkpOTtWDBAn300Ufy9/e3nR8NDAyUr6+vi6u7fqNHj9YDDzyg+vXr6+zZs1qwYIE+++wzrVq1ytWlOYW/v3+p+V5+fn6qXbt2lZkHNmLECHXp0kURERE6fvy4xo4dK3d3d/Xu3dvVpTnFsGHDdNddd2nChAn685//rE2bNmnmzJmaOXOmq0tzKqvVqvT0dCUmJsrDo2r9ye/SpYtefPFF1a9fXy1atNA333yjKVOmqH///q4uzWlWrVolwzDUtGlT7d+/X88884yioqLUr18/V5fmkHPnztkdZT5w4IC2b9+uWrVqqX79+ho6dKjGjx+vxo0bKzIyUmPGjFF4eLi6du1a/sWV+3VsKJOkMpf09HRXl+YU/fv3NyIiIgwvLy8jKCjI6NChg/Hpp5+6uqxyVdUuu+/Zs6cRFhZmeHl5GTfddJPRs2dPY//+/a4uy6k+/vhjo2XLloa3t7cRFRVlzJw509UlOd2qVasMScaePXtcXYrT5eXlGUOGDDHq169v+Pj4GA0bNjSeffZZo6CgwNWlOc2iRYuMhg0bGl5eXkZoaKiRnJxs5OTkuLosh61bt67M777ExETDMC5eej9mzBgjJCTE8Pb2Njp06FBhv7sWw6hCt/QEAABwAHOIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6RGIAACA6f0f4Ge9PxyvdAUAAAAASUVORK5CYII=", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import pandas as pd\n", + "import matplotlib.pyplot as plt\n", + "\n", + "# read the data.csv file\n", + "data_df = pd.read_csv('data.csv')\n", + "\n", + "# plot the average rating column\n", + "data_df['Average rating'].plot(kind='hist')\n", + "plt.title('Average Rating Distribution')\n", + "plt.show()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "id": "R2l7X8FIvapE" + }, + "source": [ + "## 2nd Model : beto Sentiment\n" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "-YDa3BL9wXyg", + "outputId": "a5842e18-93c8-4625-a928-2fb5eef41401" + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Downloading (…)lve/main/config.json: 100%|██████████| 841/841 [00:00<00:00, 2.58MB/s]\n", + "Downloading pytorch_model.bin: 100%|██████████| 440M/440M [01:19<00:00, 5.53MB/s] \n", + "Downloading (…)okenizer_config.json: 100%|██████████| 528/528 [00:00<00:00, 1.53MB/s]\n", + "Downloading (…)solve/main/vocab.txt: 100%|██████████| 242k/242k [00:00<00:00, 520kB/s]\n", + "Downloading (…)/main/tokenizer.json: 100%|██████████| 481k/481k [00:00<00:00, 2.04MB/s]\n", + "Downloading (…)in/added_tokens.json: 100%|██████████| 67.0/67.0 [00:00<00:00, 156kB/s]\n", + "Downloading (…)cial_tokens_map.json: 100%|██████████| 112/112 [00:00<00:00, 267kB/s]\n", + "Special tokens have been added in the vocabulary, make sure the associated word embeddings are fine-tuned or trained.\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "from transformers import pipeline\n", + "# read the data.csv file\n", + "data_df = pd.read_csv('data.csv')\n", + "\n", + "# create a sentiment analysis pipeline using the beto model\n", + "sentiment_analysis = pipeline('sentiment-analysis', model='finiteautomata/beto-sentiment-analysis')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "id": "nlEcGJwX2C7V" + }, + "outputs": [], + "source": [ + "\n", + "# predict the sentiment for each text in the english column\n", + "sentiments = []\n", + "for text in data_df['English']:\n", + " result = sentiment_analysis(text)\n", + " sentiments.append(result[0]['label'])\n", + "\n", + "# add the predicted sentiments to the dataframe\n", + "data_df['beto_sentiment'] = sentiments\n" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 466 + }, + "id": "fgiqE0q8yCYG", + "outputId": "496d24e1-d44b-40a2-d686-46d9561fb4d4" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
EnglishHindiHinglishAverage ratingDisagreementtwitter_robertabeto_sentimentvader_sentimenttwitter_roberta.1
0Program module is a file that contains instruc...माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत...module , ek program hoti hai , jismen ya to so...76neutralNEUneutralneutral
1And to Thamud We sent their brother Sali 'h. H...और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ...aur hamne aume samood ke pas unke bhaee saleh ...64positiveNEUpositivepositive
2and, when reminded, do not remember\\nऔर जब उन्हें याद दिलाया जाता है, तो वे याद नही...aur jab unhen yad dilaya jata hai , to ve yad ...100neutralNEUneutralneutral
3you won the TED Prize 2011.\\nतुम्हें २०११ का टेड प्राइज़ मिल गया है.\\ntumhen २०११ ka ted prize mil gaya hai\\n91positivePOSpositivepositive
4He gone to Kerodemal College of Delhi Universi...उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्...unhonne bad science karne ke lie ye delhi univ...70neutralNEUneutralneutral
\n", + "
" + ], + "text/plain": [ + " English \\\n", + "0 Program module is a file that contains instruc... \n", + "1 And to Thamud We sent their brother Sali 'h. H... \n", + "2 and, when reminded, do not remember\\n \n", + "3 you won the TED Prize 2011.\\n \n", + "4 He gone to Kerodemal College of Delhi Universi... \n", + "\n", + " Hindi \\\n", + "0 माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत... \n", + "1 और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ... \n", + "2 और जब उन्हें याद दिलाया जाता है, तो वे याद नही... \n", + "3 तुम्हें २०११ का टेड प्राइज़ मिल गया है.\\n \n", + "4 उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्... \n", + "\n", + " Hinglish Average rating \\\n", + "0 module , ek program hoti hai , jismen ya to so... 7 \n", + "1 aur hamne aume samood ke pas unke bhaee saleh ... 6 \n", + "2 aur jab unhen yad dilaya jata hai , to ve yad ... 10 \n", + "3 tumhen २०११ ka ted prize mil gaya hai\\n 9 \n", + "4 unhonne bad science karne ke lie ye delhi univ... 7 \n", + "\n", + " Disagreement twitter_roberta beto_sentiment vader_sentiment \\\n", + "0 6 neutral NEU neutral \n", + "1 4 positive NEU positive \n", + "2 0 neutral NEU neutral \n", + "3 1 positive POS positive \n", + "4 0 neutral NEU neutral \n", + "\n", + " twitter_roberta.1 \n", + "0 neutral \n", + "1 positive \n", + "2 neutral \n", + "3 positive \n", + "4 neutral " + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "id": "8L8E03R4yFMi" + }, + "outputs": [], + "source": [ + "data_df['beto_sentiment'] = data_df['beto_sentiment'].replace({'POS': 'positive', 'NEG': 'negative', 'NEU': 'neutral'})\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "id": "28LdsCBb2gge" + }, + "outputs": [], + "source": [ + "data_df.to_csv('data.csv', index=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 466 + }, + "id": "i5REdSQRy5zH", + "outputId": "d1ed4fc8-7fa6-4e48-aae0-69385dd4e7f8" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
EnglishHindiHinglishAverage ratingDisagreementtwitter_robertabeto_sentimentvader_sentimenttwitter_roberta.1
0Program module is a file that contains instruc...माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत...module , ek program hoti hai , jismen ya to so...76neutralneutralneutralneutral
1And to Thamud We sent their brother Sali 'h. H...और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ...aur hamne aume samood ke pas unke bhaee saleh ...64positiveneutralpositivepositive
2and, when reminded, do not remember\\nऔर जब उन्हें याद दिलाया जाता है, तो वे याद नही...aur jab unhen yad dilaya jata hai , to ve yad ...100neutralneutralneutralneutral
3you won the TED Prize 2011.\\nतुम्हें २०११ का टेड प्राइज़ मिल गया है.\\ntumhen २०११ ka ted prize mil gaya hai\\n91positivepositivepositivepositive
4He gone to Kerodemal College of Delhi Universi...उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्...unhonne bad science karne ke lie ye delhi univ...70neutralneutralneutralneutral
\n", + "
" + ], + "text/plain": [ + " English \\\n", + "0 Program module is a file that contains instruc... \n", + "1 And to Thamud We sent their brother Sali 'h. H... \n", + "2 and, when reminded, do not remember\\n \n", + "3 you won the TED Prize 2011.\\n \n", + "4 He gone to Kerodemal College of Delhi Universi... \n", + "\n", + " Hindi \\\n", + "0 माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत... \n", + "1 और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ... \n", + "2 और जब उन्हें याद दिलाया जाता है, तो वे याद नही... \n", + "3 तुम्हें २०११ का टेड प्राइज़ मिल गया है.\\n \n", + "4 उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्... \n", + "\n", + " Hinglish Average rating \\\n", + "0 module , ek program hoti hai , jismen ya to so... 7 \n", + "1 aur hamne aume samood ke pas unke bhaee saleh ... 6 \n", + "2 aur jab unhen yad dilaya jata hai , to ve yad ... 10 \n", + "3 tumhen २०११ ka ted prize mil gaya hai\\n 9 \n", + "4 unhonne bad science karne ke lie ye delhi univ... 7 \n", + "\n", + " Disagreement twitter_roberta beto_sentiment vader_sentiment \\\n", + "0 6 neutral neutral neutral \n", + "1 4 positive neutral positive \n", + "2 0 neutral neutral neutral \n", + "3 1 positive positive positive \n", + "4 0 neutral neutral neutral \n", + "\n", + " twitter_roberta.1 \n", + "0 neutral \n", + "1 positive \n", + "2 neutral \n", + "3 positive \n", + "4 neutral " + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#read data.csv and print the first 5 rows\n", + "data_df = pd.read_csv('data.csv')\n", + "data_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "GUJdiTCyy9Yc", + "outputId": "9473373a-f6c8-4341-a721-4670aa777735" + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "huggingface/tokenizers: The current process just got forked, after parallelism has already been used. Disabling parallelism to avoid deadlocks...\n", + "To disable this warning, you can either:\n", + "\t- Avoid using `tokenizers` before the fork if possible\n", + "\t- Explicitly set the environment variable TOKENIZERS_PARALLELISM=(true | false)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting vaderSentiment\n", + " Downloading vaderSentiment-3.3.2-py2.py3-none-any.whl (125 kB)\n", + "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m126.0/126.0 kB\u001b[0m \u001b[31m723.9 kB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0ma \u001b[36m0:00:01\u001b[0m\n", + "\u001b[?25hRequirement already satisfied: requests in ./venv/lib/python3.11/site-packages (from vaderSentiment) (2.31.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in ./venv/lib/python3.11/site-packages (from requests->vaderSentiment) (3.3.0)\n", + "Requirement already satisfied: idna<4,>=2.5 in ./venv/lib/python3.11/site-packages (from requests->vaderSentiment) (3.4)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in ./venv/lib/python3.11/site-packages (from requests->vaderSentiment) (2.0.7)\n", + "Requirement already satisfied: certifi>=2017.4.17 in ./venv/lib/python3.11/site-packages (from requests->vaderSentiment) (2023.7.22)\n", + "Installing collected packages: vaderSentiment\n", + "Successfully installed vaderSentiment-3.3.2\n" + ] + } + ], + "source": [ + "!pip install vaderSentiment\n" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "id": "2G0XVsERzZa3" + }, + "outputs": [], + "source": [ + "# import the required libraries\n", + "from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer\n", + "\n", + "# create an instance of the SentimentIntensityAnalyzer class\n", + "analyzer = SentimentIntensityAnalyzer()\n", + "\n", + "# predict the sentiment for each text in the english column\n", + "sentiments = []\n", + "for text in data_df['English']:\n", + " result = analyzer.polarity_scores(text)\n", + " compound_score = result['compound']\n", + " if compound_score > 0.05:\n", + " sentiments.append('positive')\n", + " elif compound_score < -0.05:\n", + " sentiments.append('negative')\n", + " else:\n", + " sentiments.append('neutral')\n", + "\n", + "# add the predicted sentiments to the dataframe\n", + "data_df['vader_sentiment'] = sentiments\n" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 761 + }, + "id": "aFXE6u-4zkV0", + "outputId": "ace978cb-7a7f-443f-f83c-b5ea0ab61e00" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
EnglishHindiHinglishAverage ratingDisagreementtwitter_robertabeto_sentimentvader_sentimenttwitter_roberta.1
0Program module is a file that contains instruc...माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत...module , ek program hoti hai , jismen ya to so...76neutralneutralneutralneutral
1And to Thamud We sent their brother Sali 'h. H...और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ...aur hamne aume samood ke pas unke bhaee saleh ...64positiveneutralpositivepositive
2and, when reminded, do not remember\\nऔर जब उन्हें याद दिलाया जाता है, तो वे याद नही...aur jab unhen yad dilaya jata hai , to ve yad ...100neutralneutralneutralneutral
3you won the TED Prize 2011.\\nतुम्हें २०११ का टेड प्राइज़ मिल गया है.\\ntumhen २०११ ka ted prize mil gaya hai\\n91positivepositivepositivepositive
4He gone to Kerodemal College of Delhi Universi...उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्...unhonne bad science karne ke lie ye delhi univ...70neutralneutralneutralneutral
\n", + "
" + ], + "text/plain": [ + " English \\\n", + "0 Program module is a file that contains instruc... \n", + "1 And to Thamud We sent their brother Sali 'h. H... \n", + "2 and, when reminded, do not remember\\n \n", + "3 you won the TED Prize 2011.\\n \n", + "4 He gone to Kerodemal College of Delhi Universi... \n", + "\n", + " Hindi \\\n", + "0 माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत... \n", + "1 और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ... \n", + "2 और जब उन्हें याद दिलाया जाता है, तो वे याद नही... \n", + "3 तुम्हें २०११ का टेड प्राइज़ मिल गया है.\\n \n", + "4 उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्... \n", + "\n", + " Hinglish Average rating \\\n", + "0 module , ek program hoti hai , jismen ya to so... 7 \n", + "1 aur hamne aume samood ke pas unke bhaee saleh ... 6 \n", + "2 aur jab unhen yad dilaya jata hai , to ve yad ... 10 \n", + "3 tumhen २०११ ka ted prize mil gaya hai\\n 9 \n", + "4 unhonne bad science karne ke lie ye delhi univ... 7 \n", + "\n", + " Disagreement twitter_roberta beto_sentiment vader_sentiment \\\n", + "0 6 neutral neutral neutral \n", + "1 4 positive neutral positive \n", + "2 0 neutral neutral neutral \n", + "3 1 positive positive positive \n", + "4 0 neutral neutral neutral \n", + "\n", + " twitter_roberta.1 \n", + "0 neutral \n", + "1 positive \n", + "2 neutral \n", + "3 positive \n", + "4 neutral " + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "id": "MVSS3rsAzxY1" + }, + "outputs": [], + "source": [ + "data_df.to_csv('data.csv', index=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 761 + }, + "id": "NIC86D761s-N", + "outputId": "927f99c8-f305-411a-f1ab-da492375f758" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
EnglishHindiHinglishAverage ratingDisagreementtwitter_robertabeto_sentimentvader_sentimenttwitter_roberta.1
0Program module is a file that contains instruc...माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत...module , ek program hoti hai , jismen ya to so...76neutralneutralneutralneutral
1And to Thamud We sent their brother Sali 'h. H...और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ...aur hamne aume samood ke pas unke bhaee saleh ...64positiveneutralpositivepositive
2and, when reminded, do not remember\\nऔर जब उन्हें याद दिलाया जाता है, तो वे याद नही...aur jab unhen yad dilaya jata hai , to ve yad ...100neutralneutralneutralneutral
3you won the TED Prize 2011.\\nतुम्हें २०११ का टेड प्राइज़ मिल गया है.\\ntumhen २०११ ka ted prize mil gaya hai\\n91positivepositivepositivepositive
4He gone to Kerodemal College of Delhi Universi...उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्...unhonne bad science karne ke lie ye delhi univ...70neutralneutralneutralneutral
\n", + "
" + ], + "text/plain": [ + " English \\\n", + "0 Program module is a file that contains instruc... \n", + "1 And to Thamud We sent their brother Sali 'h. H... \n", + "2 and, when reminded, do not remember\\n \n", + "3 you won the TED Prize 2011.\\n \n", + "4 He gone to Kerodemal College of Delhi Universi... \n", + "\n", + " Hindi \\\n", + "0 माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत... \n", + "1 और (हमने) क़ौमे समूद के पास उनके भाई सालेह को ... \n", + "2 और जब उन्हें याद दिलाया जाता है, तो वे याद नही... \n", + "3 तुम्हें २०११ का टेड प्राइज़ मिल गया है.\\n \n", + "4 उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्... \n", + "\n", + " Hinglish Average rating \\\n", + "0 module , ek program hoti hai , jismen ya to so... 7 \n", + "1 aur hamne aume samood ke pas unke bhaee saleh ... 6 \n", + "2 aur jab unhen yad dilaya jata hai , to ve yad ... 10 \n", + "3 tumhen २०११ ka ted prize mil gaya hai\\n 9 \n", + "4 unhonne bad science karne ke lie ye delhi univ... 7 \n", + "\n", + " Disagreement twitter_roberta beto_sentiment vader_sentiment \\\n", + "0 6 neutral neutral neutral \n", + "1 4 positive neutral positive \n", + "2 0 neutral neutral neutral \n", + "3 1 positive positive positive \n", + "4 0 neutral neutral neutral \n", + "\n", + " twitter_roberta.1 \n", + "0 neutral \n", + "1 positive \n", + "2 neutral \n", + "3 positive \n", + "4 neutral " + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "id": "WS4HW0Vo5Zdp" + }, + "outputs": [], + "source": [ + "\n", + "import pandas as pd\n", + "\n", + " # read the data.csv file\n", + "data_df = pd.read_csv('data.csv')\n", + "\n", + "# create a new dataframe with only the required columns\n", + "new_df = data_df[['English', 'twitter_roberta', 'beto_sentiment', 'vader_sentiment']]\n", + "\n", + "new_df = new_df[new_df['twitter_roberta'] == new_df['beto_sentiment']]\n", + "new_df = new_df[new_df['twitter_roberta'] == new_df['vader_sentiment']]\n", + "\n", + " # write the updated dataframe to a new csv file\n", + "new_df.to_csv('same_sentiment_rows.csv', index=False)\n", + "#add the hindi and hinglish columns to the new dataframe\n", + "new_df['Hindi'] = data_df['Hindi']\n", + "new_df['Hinglish'] = data_df['Hinglish']\n", + "#save the new dataframe to a new csv file\n", + "new_df.to_csv('same_sentiment_rows.csv', index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "id": "14kTYmCk5s1u" + }, + "outputs": [], + "source": [ + "# read the same_sentiment_rows.csv file\n", + "df = pd.read_csv('same_sentiment_rows.csv')\n", + "\n", + "# reposition the Hindi and Hinglish columns to the 2nd and 3rd columns respectively\n", + "df = df.reindex(columns=['English', 'Hindi', 'Hinglish', 'twitter_roberta', 'beto_sentiment', 'vader_sentiment'])\n", + "\n", + "# write the updated dataframe to the same csv file\n", + "df.to_csv('same_sentiment_rows.csv', index=False)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## custom model\n" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# Load the CSV data\n", + "data = pd.read_csv('same_sentiment_rows.csv')\n", + "\n", + "# Concatenate English and Hinglish columns\n", + "data['combined_text'] = data['English'] + \" \" + data['Hinglish']\n", + "\n", + "# Select the features and labels\n", + "X = data['combined_text']\n", + "y = data['vader_sentiment']\n" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Downloading (…)lve/main/config.json: 100%|██████████| 507/507 [00:00<00:00, 2.18MB/s]\n", + "Downloading (…)ve/main/spiece.model: 100%|██████████| 5.65M/5.65M [00:01<00:00, 3.40MB/s]\n" + ] + }, + { + "ename": "ValueError", + "evalue": "Couldn't instantiate the backend tokenizer from one of: \n(1) a `tokenizers` library serialization file, \n(2) a slow tokenizer instance to convert or \n(3) an equivalent slow tokenizer class to instantiate and convert. \nYou need to have sentencepiece installed to convert a slow tokenizer to a fast one.", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m/Users/user/Desktop/Hinglish Sentimental Analysis/Untitled3.ipynb Cell 26\u001b[0m line \u001b[0;36m2\n\u001b[1;32m 18\u001b[0m \u001b[39m# Load a pre-trained Hinglish sentiment analysis model and tokenizer\u001b[39;00m\n\u001b[1;32m 19\u001b[0m model_name \u001b[39m=\u001b[39m \u001b[39m\"\u001b[39m\u001b[39mai4bharat/indic-bert\u001b[39m\u001b[39m\"\u001b[39m\n\u001b[0;32m---> 20\u001b[0m tokenizer \u001b[39m=\u001b[39m AutoTokenizer\u001b[39m.\u001b[39;49mfrom_pretrained(model_name)\n\u001b[1;32m 21\u001b[0m model \u001b[39m=\u001b[39m AutoModelForSequenceClassification\u001b[39m.\u001b[39mfrom_pretrained(model_name, num_labels\u001b[39m=\u001b[39m\u001b[39m2\u001b[39m)\n\u001b[1;32m 23\u001b[0m \u001b[39m# Tokenize the data\u001b[39;00m\n", + "File \u001b[0;32m~/Desktop/Hinglish Sentimental Analysis/venv/lib/python3.11/site-packages/transformers/models/auto/tokenization_auto.py:769\u001b[0m, in \u001b[0;36mAutoTokenizer.from_pretrained\u001b[0;34m(cls, pretrained_model_name_or_path, *inputs, **kwargs)\u001b[0m\n\u001b[1;32m 767\u001b[0m tokenizer_class_py, tokenizer_class_fast \u001b[39m=\u001b[39m TOKENIZER_MAPPING[\u001b[39mtype\u001b[39m(config)]\n\u001b[1;32m 768\u001b[0m \u001b[39mif\u001b[39;00m tokenizer_class_fast \u001b[39mand\u001b[39;00m (use_fast \u001b[39mor\u001b[39;00m tokenizer_class_py \u001b[39mis\u001b[39;00m \u001b[39mNone\u001b[39;00m):\n\u001b[0;32m--> 769\u001b[0m \u001b[39mreturn\u001b[39;00m tokenizer_class_fast\u001b[39m.\u001b[39;49mfrom_pretrained(pretrained_model_name_or_path, \u001b[39m*\u001b[39;49minputs, \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49mkwargs)\n\u001b[1;32m 770\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[1;32m 771\u001b[0m \u001b[39mif\u001b[39;00m tokenizer_class_py \u001b[39mis\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mNone\u001b[39;00m:\n", + "File \u001b[0;32m~/Desktop/Hinglish Sentimental Analysis/venv/lib/python3.11/site-packages/transformers/tokenization_utils_base.py:2017\u001b[0m, in \u001b[0;36mPreTrainedTokenizerBase.from_pretrained\u001b[0;34m(cls, pretrained_model_name_or_path, cache_dir, force_download, local_files_only, token, revision, *init_inputs, **kwargs)\u001b[0m\n\u001b[1;32m 2014\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[1;32m 2015\u001b[0m logger\u001b[39m.\u001b[39minfo(\u001b[39mf\u001b[39m\u001b[39m\"\u001b[39m\u001b[39mloading file \u001b[39m\u001b[39m{\u001b[39;00mfile_path\u001b[39m}\u001b[39;00m\u001b[39m from cache at \u001b[39m\u001b[39m{\u001b[39;00mresolved_vocab_files[file_id]\u001b[39m}\u001b[39;00m\u001b[39m\"\u001b[39m)\n\u001b[0;32m-> 2017\u001b[0m \u001b[39mreturn\u001b[39;00m \u001b[39mcls\u001b[39;49m\u001b[39m.\u001b[39;49m_from_pretrained(\n\u001b[1;32m 2018\u001b[0m resolved_vocab_files,\n\u001b[1;32m 2019\u001b[0m pretrained_model_name_or_path,\n\u001b[1;32m 2020\u001b[0m init_configuration,\n\u001b[1;32m 2021\u001b[0m \u001b[39m*\u001b[39;49minit_inputs,\n\u001b[1;32m 2022\u001b[0m token\u001b[39m=\u001b[39;49mtoken,\n\u001b[1;32m 2023\u001b[0m cache_dir\u001b[39m=\u001b[39;49mcache_dir,\n\u001b[1;32m 2024\u001b[0m local_files_only\u001b[39m=\u001b[39;49mlocal_files_only,\n\u001b[1;32m 2025\u001b[0m _commit_hash\u001b[39m=\u001b[39;49mcommit_hash,\n\u001b[1;32m 2026\u001b[0m _is_local\u001b[39m=\u001b[39;49mis_local,\n\u001b[1;32m 2027\u001b[0m \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49mkwargs,\n\u001b[1;32m 2028\u001b[0m )\n", + "File \u001b[0;32m~/Desktop/Hinglish Sentimental Analysis/venv/lib/python3.11/site-packages/transformers/tokenization_utils_base.py:2249\u001b[0m, in \u001b[0;36mPreTrainedTokenizerBase._from_pretrained\u001b[0;34m(cls, resolved_vocab_files, pretrained_model_name_or_path, init_configuration, token, cache_dir, local_files_only, _commit_hash, _is_local, *init_inputs, **kwargs)\u001b[0m\n\u001b[1;32m 2247\u001b[0m \u001b[39m# Instantiate the tokenizer.\u001b[39;00m\n\u001b[1;32m 2248\u001b[0m \u001b[39mtry\u001b[39;00m:\n\u001b[0;32m-> 2249\u001b[0m tokenizer \u001b[39m=\u001b[39m \u001b[39mcls\u001b[39;49m(\u001b[39m*\u001b[39;49minit_inputs, \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49minit_kwargs)\n\u001b[1;32m 2250\u001b[0m \u001b[39mexcept\u001b[39;00m \u001b[39mOSError\u001b[39;00m:\n\u001b[1;32m 2251\u001b[0m \u001b[39mraise\u001b[39;00m \u001b[39mOSError\u001b[39;00m(\n\u001b[1;32m 2252\u001b[0m \u001b[39m\"\u001b[39m\u001b[39mUnable to load vocabulary from file. \u001b[39m\u001b[39m\"\u001b[39m\n\u001b[1;32m 2253\u001b[0m \u001b[39m\"\u001b[39m\u001b[39mPlease check that the provided vocabulary is accessible and not corrupted.\u001b[39m\u001b[39m\"\u001b[39m\n\u001b[1;32m 2254\u001b[0m )\n", + "File \u001b[0;32m~/Desktop/Hinglish Sentimental Analysis/venv/lib/python3.11/site-packages/transformers/models/albert/tokenization_albert_fast.py:148\u001b[0m, in \u001b[0;36mAlbertTokenizerFast.__init__\u001b[0;34m(self, vocab_file, tokenizer_file, do_lower_case, remove_space, keep_accents, bos_token, eos_token, unk_token, sep_token, pad_token, cls_token, mask_token, **kwargs)\u001b[0m\n\u001b[1;32m 124\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39m__init__\u001b[39m(\n\u001b[1;32m 125\u001b[0m \u001b[39mself\u001b[39m,\n\u001b[1;32m 126\u001b[0m vocab_file\u001b[39m=\u001b[39m\u001b[39mNone\u001b[39;00m,\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 140\u001b[0m \u001b[39m# Mask token behave like a normal word, i.e. include the space before it and\u001b[39;00m\n\u001b[1;32m 141\u001b[0m \u001b[39m# is included in the raw text, there should be a match in a non-normalized sentence.\u001b[39;00m\n\u001b[1;32m 142\u001b[0m mask_token \u001b[39m=\u001b[39m (\n\u001b[1;32m 143\u001b[0m AddedToken(mask_token, lstrip\u001b[39m=\u001b[39m\u001b[39mTrue\u001b[39;00m, rstrip\u001b[39m=\u001b[39m\u001b[39mFalse\u001b[39;00m, normalized\u001b[39m=\u001b[39m\u001b[39mFalse\u001b[39;00m)\n\u001b[1;32m 144\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39misinstance\u001b[39m(mask_token, \u001b[39mstr\u001b[39m)\n\u001b[1;32m 145\u001b[0m \u001b[39melse\u001b[39;00m mask_token\n\u001b[1;32m 146\u001b[0m )\n\u001b[0;32m--> 148\u001b[0m \u001b[39msuper\u001b[39;49m()\u001b[39m.\u001b[39;49m\u001b[39m__init__\u001b[39;49m(\n\u001b[1;32m 149\u001b[0m vocab_file,\n\u001b[1;32m 150\u001b[0m tokenizer_file\u001b[39m=\u001b[39;49mtokenizer_file,\n\u001b[1;32m 151\u001b[0m do_lower_case\u001b[39m=\u001b[39;49mdo_lower_case,\n\u001b[1;32m 152\u001b[0m remove_space\u001b[39m=\u001b[39;49mremove_space,\n\u001b[1;32m 153\u001b[0m keep_accents\u001b[39m=\u001b[39;49mkeep_accents,\n\u001b[1;32m 154\u001b[0m bos_token\u001b[39m=\u001b[39;49mbos_token,\n\u001b[1;32m 155\u001b[0m eos_token\u001b[39m=\u001b[39;49meos_token,\n\u001b[1;32m 156\u001b[0m unk_token\u001b[39m=\u001b[39;49munk_token,\n\u001b[1;32m 157\u001b[0m sep_token\u001b[39m=\u001b[39;49msep_token,\n\u001b[1;32m 158\u001b[0m pad_token\u001b[39m=\u001b[39;49mpad_token,\n\u001b[1;32m 159\u001b[0m cls_token\u001b[39m=\u001b[39;49mcls_token,\n\u001b[1;32m 160\u001b[0m mask_token\u001b[39m=\u001b[39;49mmask_token,\n\u001b[1;32m 161\u001b[0m \u001b[39m*\u001b[39;49m\u001b[39m*\u001b[39;49mkwargs,\n\u001b[1;32m 162\u001b[0m )\n\u001b[1;32m 164\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mdo_lower_case \u001b[39m=\u001b[39m do_lower_case\n\u001b[1;32m 165\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mremove_space \u001b[39m=\u001b[39m remove_space\n", + "File \u001b[0;32m~/Desktop/Hinglish Sentimental Analysis/venv/lib/python3.11/site-packages/transformers/tokenization_utils_fast.py:120\u001b[0m, in \u001b[0;36mPreTrainedTokenizerFast.__init__\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 118\u001b[0m fast_tokenizer \u001b[39m=\u001b[39m convert_slow_tokenizer(slow_tokenizer)\n\u001b[1;32m 119\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[0;32m--> 120\u001b[0m \u001b[39mraise\u001b[39;00m \u001b[39mValueError\u001b[39;00m(\n\u001b[1;32m 121\u001b[0m \u001b[39m\"\u001b[39m\u001b[39mCouldn\u001b[39m\u001b[39m'\u001b[39m\u001b[39mt instantiate the backend tokenizer from one of: \u001b[39m\u001b[39m\\n\u001b[39;00m\u001b[39m\"\u001b[39m\n\u001b[1;32m 122\u001b[0m \u001b[39m\"\u001b[39m\u001b[39m(1) a `tokenizers` library serialization file, \u001b[39m\u001b[39m\\n\u001b[39;00m\u001b[39m\"\u001b[39m\n\u001b[1;32m 123\u001b[0m \u001b[39m\"\u001b[39m\u001b[39m(2) a slow tokenizer instance to convert or \u001b[39m\u001b[39m\\n\u001b[39;00m\u001b[39m\"\u001b[39m\n\u001b[1;32m 124\u001b[0m \u001b[39m\"\u001b[39m\u001b[39m(3) an equivalent slow tokenizer class to instantiate and convert. \u001b[39m\u001b[39m\\n\u001b[39;00m\u001b[39m\"\u001b[39m\n\u001b[1;32m 125\u001b[0m \u001b[39m\"\u001b[39m\u001b[39mYou need to have sentencepiece installed to convert a slow tokenizer to a fast one.\u001b[39m\u001b[39m\"\u001b[39m\n\u001b[1;32m 126\u001b[0m )\n\u001b[1;32m 128\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_tokenizer \u001b[39m=\u001b[39m fast_tokenizer\n\u001b[1;32m 130\u001b[0m \u001b[39mif\u001b[39;00m slow_tokenizer \u001b[39mis\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mNone\u001b[39;00m:\n", + "\u001b[0;31mValueError\u001b[0m: Couldn't instantiate the backend tokenizer from one of: \n(1) a `tokenizers` library serialization file, \n(2) a slow tokenizer instance to convert or \n(3) an equivalent slow tokenizer class to instantiate and convert. \nYou need to have sentencepiece installed to convert a slow tokenizer to a fast one." + ] + } + ], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from sklearn.model_selection import train_test_split\n", + "from transformers import AutoTokenizer, AutoModelForSequenceClassification\n", + "import torch\n", + "from torch.utils.data import DataLoader, TensorDataset\n", + "\n", + "# Load your dataset (CSV file)\n", + "df = pd.read_csv('same_sentiment_rows.csv')\n", + "\n", + "# Assuming your CSV has columns 'Hinglish' and 'Vader_sentiment'\n", + "X = df['Hinglish'].values\n", + "y = df['vader_sentiment'].values\n", + "\n", + "# Split the data into training and testing sets\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)\n", + "\n", + "# Load a pre-trained Hinglish sentiment analysis model and tokenizer\n", + "model_name = \"ai4bharat/indic-bert\"\n", + "tokenizer = AutoTokenizer.from_pretrained(model_name)\n", + "model = AutoModelForSequenceClassification.from_pretrained(model_name, num_labels=2)\n", + "\n", + "# Tokenize the data\n", + "train_encodings = tokenizer(X_train.tolist(), truncation=True, padding=True, return_tensors='pt', max_length=128)\n", + "test_encodings = tokenizer(X_test.tolist(), truncation=True, padding=True, return_tensors='pt', max_length=128)\n", + "\n", + "# Create DataLoader for training and testing data\n", + "train_dataset = TensorDataset(train_encodings['input_ids'], train_encodings['attention_mask'], torch.tensor(y_train, dtype=torch.long))\n", + "test_dataset = TensorDataset(test_encodings['input_ids'], test_encodings['attention_mask'], torch.tensor(y_test, dtype=torch.long))\n", + "\n", + "batch_size = 32\n", + "train_loader = DataLoader(train_dataset, batch_size=batch_size, shuffle=True)\n", + "test_loader = DataLoader(test_dataset, batch_size=batch_size)\n", + "\n", + "# Set up optimizer and training parameters\n", + "optimizer = torch.optim.AdamW(model.parameters(), lr=1e-5)\n", + "device = torch.device(\"cuda\" if torch.cuda.is_available() else \"cpu\")\n", + "model.to(device)\n", + "\n", + "# Training loop\n", + "num_epochs = 3\n", + "for epoch in range(num_epochs):\n", + " model.train()\n", + " total_loss = 0\n", + " for batch in train_loader:\n", + " input_ids, attention_mask, labels = batch\n", + " input_ids, attention_mask, labels = input_ids.to(device), attention_mask.to(device), labels.to(device)\n", + " optimizer.zero_grad()\n", + " outputs = model(input_ids, attention_mask=attention_mask, labels=labels)\n", + " loss = outputs.loss\n", + " total_loss += loss.item()\n", + " loss.backward()\n", + " optimizer.step()\n", + "\n", + " print(f\"Epoch {epoch + 1}/{num_epochs}, Loss: {total_loss / len(train_loader)}\")\n", + "\n", + "# Evaluation\n", + "model.eval()\n", + "predictions = []\n", + "true_labels = []\n", + "with torch.no_grad():\n", + " for batch in test_loader:\n", + " input_ids, attention_mask, labels = batch\n", + " input_ids, attention_mask, labels = input_ids.to(device), attention_mask.to(device), labels.to(device)\n", + " outputs = model(input_ids, attention_mask=attention_mask)\n", + " logits = outputs.logits\n", + " predicted_labels = logits.argmax(dim=1)\n", + " predictions.extend(predicted_labels.cpu().numpy())\n", + " true_labels.extend(labels.cpu().numpy())\n", + "\n", + "# Calculate accuracy\n", + "accuracy = np.mean(predictions == true_labels)\n", + "print(f\"Accuracy: {accuracy * 100:.2f}%\")\n", + "\n", + "# Function to predict sentiment\n", + "def predict_sentiment(model, tokenizer, text):\n", + " encoded_text = tokenizer(text, padding=True, truncation=True, return_tensors=\"pt\", max_length=128)\n", + " with torch.no_grad():\n", + " model.eval()\n", + " input_ids = encoded_text['input_ids'].to(device)\n", + " attention_mask = encoded_text['attention_mask'].to(device)\n", + " outputs = model(input_ids, attention_mask=attention_mask)\n", + " logits = outputs.logits\n", + " sentiment = \"Positive\" if logits[0][1] > logits[0][0] else \"Negative\"\n", + " return sentiment\n", + "\n", + "# Example usage\n", + "user_input = \"Your Hinglish sentence here.\"\n", + "predicted_sentiment = predict_sentiment(model, tokenizer, user_input)\n", + "print(f\"Predicted Sentiment: {predicted_sentiment}\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Function to predict sentiment\n", + "def predict_sentiment(model, text):\n", + " encoded_text = tokenizer(text, padding=True, truncation=True, return_tensors=\"pt\")\n", + " with torch.no_grad():\n", + " model.eval()\n", + " inputs = {\"input_ids\": encoded_text.input_ids, \"attention_mask\": encoded_text.attention_mask}\n", + " outputs = model(**inputs)\n", + " logits = outputs.logits\n", + " sentiment = \"Positive\" if logits[0][1] > logits[0][0] else \"Negative\"\n", + " return sentiment\n", + "\n", + "# Example usage\n", + "user_input = input()\n", + "predicted_sentiment = predict_sentiment(model, user_input)\n", + "print(f\"Predicted Sentiment: {predicted_sentiment}\")\n" + ] + } + ], + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "display_name": "Python 3", + "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.11.1" + }, + "widgets": { + "application/vnd.jupyter.widget-state+json": { + "043722b3a5604963a63ca84d793a2d41": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "11302743f1b341b0be949fe160f03b49": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HTMLView", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_976fbdeca2e741e88f637e6a546d69cc", + "placeholder": "​", + "style": "IPY_MODEL_8544200aef2149e78851af8ed77fe51b", + "value": " 501M/501M [00:06<00:00, 73.8MB/s]" + } + }, + "190fc984eae844ce9b376b1d6b79bf6d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1b87675e894a4f8d8aae85e7d2f1cd4d": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "1f6ecda8d40d4deb9f6a44b67b6eef91": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "211907a1358647349d3bcb7ce448b61c": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_ea419d0a23de426daebebb0c938d61fc", + "max": 239, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_585bbea5b2f74365b2773a14779e2ed8", + "value": 239 + } + }, + "22f800e5eaba43628a2174e05636c075": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HTMLView", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_4dc1b19a63df465e8b96e3c7a4d28374", + "placeholder": "​", + "style": "IPY_MODEL_30bf95e207ea4291abf6896cc790143e", + "value": " 456k/456k [00:00<00:00, 825kB/s]" + } + }, + "266c6d2298d345bb9b05049ff5fc9a62": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "27eb8fd2b6e94afe8e63f6e08ad4f9f8": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "28fe850e47c44804aa97f4ae1c381968": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HTMLView", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_e9b066e185f74f7e9cb1f31524e0db63", + "placeholder": "​", + "style": "IPY_MODEL_533702f082994139889335870f86bd73", + "value": " 929/929 [00:00<00:00, 10.2kB/s]" + } + }, + "2e869623febd44f380455437a55773a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "30bf95e207ea4291abf6896cc790143e": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "3cbf2e8496c345989b6357faffb255e4": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "3e5b8a74f164476bbc892f460fe8bfb2": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "4164c91142494c13b6dacd91968fe74f": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "42c65f89a0c244fb98c07b28560c7eed": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "4587536d700047c6b947a0bb79823772": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HTMLView", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_27eb8fd2b6e94afe8e63f6e08ad4f9f8", + "placeholder": "​", + "style": "IPY_MODEL_266c6d2298d345bb9b05049ff5fc9a62", + "value": " 239/239 [00:00<00:00, 2.61kB/s]" + } + }, + "45d6d71d710343e19066eb68a3bce960": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HTMLView", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_6c3563e58a0e4c94a711418ce91abcc9", + "placeholder": "​", + "style": "IPY_MODEL_db461dc831624e09b360afd6ac60adce", + "value": " 899k/899k [00:00<00:00, 1.24MB/s]" + } + }, + "4dc1b19a63df465e8b96e3c7a4d28374": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "533702f082994139889335870f86bd73": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "553647bc6e6d4b8ca1ded5ab63954f8b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "585bbea5b2f74365b2773a14779e2ed8": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "5b16069d74b64bd29d187a22c1b4e4b5": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6028b3cde1784ff1aeaa8631a06e9565": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_3e5b8a74f164476bbc892f460fe8bfb2", + "max": 929, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_a44eb21791b042859e07a6bd7626fd87", + "value": 929 + } + }, + "699431d1f42d42e592b2d161c9c89134": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "6b5b0a788e7e4fc2b8a2c0d882194002": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_bfdc0365cb5b42cb8eef931a5e2bd9a6", + "IPY_MODEL_211907a1358647349d3bcb7ce448b61c", + "IPY_MODEL_4587536d700047c6b947a0bb79823772" + ], + "layout": "IPY_MODEL_a0a2d715c4ba4f26964b2b1eea64ede7" + } + }, + "6c3563e58a0e4c94a711418ce91abcc9": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "6f8eb09714604d898b6059f1bdbc6d75": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "829e910128aa4524a4b16c47f4c9eb18": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "8544200aef2149e78851af8ed77fe51b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "8b30ba8eb38a444dabee50df991bd076": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_4164c91142494c13b6dacd91968fe74f", + "max": 898822, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_d7c1e85b679549ffb502b677a1095d52", + "value": 898822 + } + }, + "976fbdeca2e741e88f637e6a546d69cc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "9b0c65a2378740bc8ce6ee372872d508": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HTMLView", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_1b87675e894a4f8d8aae85e7d2f1cd4d", + "placeholder": "​", + "style": "IPY_MODEL_2e869623febd44f380455437a55773a6", + "value": "Downloading (…)olve/main/vocab.json: 100%" + } + }, + "a0a2d715c4ba4f26964b2b1eea64ede7": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a16732f723c445f9ba5f194eb077f32c": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "a25bb39075ba4810889e637e5ebe535b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_9b0c65a2378740bc8ce6ee372872d508", + "IPY_MODEL_8b30ba8eb38a444dabee50df991bd076", + "IPY_MODEL_45d6d71d710343e19066eb68a3bce960" + ], + "layout": "IPY_MODEL_553647bc6e6d4b8ca1ded5ab63954f8b" + } + }, + "a44eb21791b042859e07a6bd7626fd87": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "aa743dff89644ee587c1edae2b84a63a": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_b429a31c788846499716f4862332a937", + "IPY_MODEL_c91bec5626b74942ae1369394998b4d2", + "IPY_MODEL_22f800e5eaba43628a2174e05636c075" + ], + "layout": "IPY_MODEL_5b16069d74b64bd29d187a22c1b4e4b5" + } + }, + "b429a31c788846499716f4862332a937": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HTMLView", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_829e910128aa4524a4b16c47f4c9eb18", + "placeholder": "​", + "style": "IPY_MODEL_42c65f89a0c244fb98c07b28560c7eed", + "value": "Downloading (…)olve/main/merges.txt: 100%" + } + }, + "bc93d3a094ea478f94eeca889739b0bd": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_e59850f87389439caa8fa8b4ef65d94b", + "IPY_MODEL_efc0aff281f241d5b488c785a0f74201", + "IPY_MODEL_11302743f1b341b0be949fe160f03b49" + ], + "layout": "IPY_MODEL_1f6ecda8d40d4deb9f6a44b67b6eef91" + } + }, + "bfceed8038364f5a93794251a12fd216": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "bfdc0365cb5b42cb8eef931a5e2bd9a6": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HTMLView", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_a16732f723c445f9ba5f194eb077f32c", + "placeholder": "​", + "style": "IPY_MODEL_dc018fe8075d41c99b35730c03318998", + "value": "Downloading (…)cial_tokens_map.json: 100%" + } + }, + "c91bec5626b74942ae1369394998b4d2": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_6f8eb09714604d898b6059f1bdbc6d75", + "max": 456318, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_699431d1f42d42e592b2d161c9c89134", + "value": 456318 + } + }, + "ce0aecc708314b24932a7feca59eabaa": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "d34a1a6e2e894cd899571dbdc6e0074b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HBoxModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HBoxModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HBoxView", + "box_style": "", + "children": [ + "IPY_MODEL_d90bbc9155d84b75bb3edd5b7f6c07db", + "IPY_MODEL_6028b3cde1784ff1aeaa8631a06e9565", + "IPY_MODEL_28fe850e47c44804aa97f4ae1c381968" + ], + "layout": "IPY_MODEL_3cbf2e8496c345989b6357faffb255e4" + } + }, + "d42b699aa4114e15be2ae6cea3cd17db": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "d7c1e85b679549ffb502b677a1095d52": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "ProgressStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "ProgressStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "bar_color": null, + "description_width": "" + } + }, + "d90bbc9155d84b75bb3edd5b7f6c07db": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HTMLView", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_190fc984eae844ce9b376b1d6b79bf6d", + "placeholder": "​", + "style": "IPY_MODEL_bfceed8038364f5a93794251a12fd216", + "value": "Downloading (…)lve/main/config.json: 100%" + } + }, + "db461dc831624e09b360afd6ac60adce": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "dc018fe8075d41c99b35730c03318998": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "DescriptionStyleModel", + "state": { + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "DescriptionStyleModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "StyleView", + "description_width": "" + } + }, + "def07a9437104045bcf7c73898bb2a6b": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "e59850f87389439caa8fa8b4ef65d94b": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "HTMLModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "HTMLModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "HTMLView", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_def07a9437104045bcf7c73898bb2a6b", + "placeholder": "​", + "style": "IPY_MODEL_ce0aecc708314b24932a7feca59eabaa", + "value": "Downloading pytorch_model.bin: 100%" + } + }, + "e9b066e185f74f7e9cb1f31524e0db63": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "ea419d0a23de426daebebb0c938d61fc": { + "model_module": "@jupyter-widgets/base", + "model_module_version": "1.2.0", + "model_name": "LayoutModel", + "state": { + "_model_module": "@jupyter-widgets/base", + "_model_module_version": "1.2.0", + "_model_name": "LayoutModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/base", + "_view_module_version": "1.2.0", + "_view_name": "LayoutView", + "align_content": null, + "align_items": null, + "align_self": null, + "border": null, + "bottom": null, + "display": null, + "flex": null, + "flex_flow": null, + "grid_area": null, + "grid_auto_columns": null, + "grid_auto_flow": null, + "grid_auto_rows": null, + "grid_column": null, + "grid_gap": null, + "grid_row": null, + "grid_template_areas": null, + "grid_template_columns": null, + "grid_template_rows": null, + "height": null, + "justify_content": null, + "justify_items": null, + "left": null, + "margin": null, + "max_height": null, + "max_width": null, + "min_height": null, + "min_width": null, + "object_fit": null, + "object_position": null, + "order": null, + "overflow": null, + "overflow_x": null, + "overflow_y": null, + "padding": null, + "right": null, + "top": null, + "visibility": null, + "width": null + } + }, + "efc0aff281f241d5b488c785a0f74201": { + "model_module": "@jupyter-widgets/controls", + "model_module_version": "1.5.0", + "model_name": "FloatProgressModel", + "state": { + "_dom_classes": [], + "_model_module": "@jupyter-widgets/controls", + "_model_module_version": "1.5.0", + "_model_name": "FloatProgressModel", + "_view_count": null, + "_view_module": "@jupyter-widgets/controls", + "_view_module_version": "1.5.0", + "_view_name": "ProgressView", + "bar_style": "success", + "description": "", + "description_tooltip": null, + "layout": "IPY_MODEL_d42b699aa4114e15be2ae6cea3cd17db", + "max": 501045531, + "min": 0, + "orientation": "horizontal", + "style": "IPY_MODEL_043722b3a5604963a63ca84d793a2d41", + "value": 501045531 + } + } + } + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/Dataset making/data.csv b/Dataset making/data.csv new file mode 100644 index 0000000..c8c29c9 --- /dev/null +++ b/Dataset making/data.csv @@ -0,0 +1,15809 @@ +English,Hindi,Hinglish,Average rating,Disagreement,twitter_roberta,beto_sentiment,vader_sentiment +"Program module is a file that contains instructions which are either in the form of source code or machine language. +","माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत कोड या मशीन भाषा के रूप में अनुदेश निहित होते हैं। +","module , ek program hoti hai , jismen ya to source code ya machine language ke form men instructions nihit hote hain. +",7,6,neutral,neutral,neutral +"And to Thamud We sent their brother Sali 'h. He said:' My people! Serve Allah; you have no god other than Him. He brought you into being out of the earth, and has made you dwell in it. So ask Him to forgive you, and do turn towards Him in repentance. Indeed My Lord is near, responsive to prayers. +","और (हमने) क़ौमे समूद के पास उनके भाई सालेह को (पैग़म्बर बनाकर भेजा) तो उन्होंने (अपनी क़ौम से) कहा ऐ मेरी क़ौम ख़ुदा ही की परसतिश करो उसके सिवा कोई तुम्हारा माबूद नहीं उसी ने तुमको ज़मीन (की मिट्टी) से पैदा किया और तुमको उसमें बसाया तो उससे मग़फिरत की दुआ मॉगों फिर उसकी बारगाह में तौबा करो (बेशक मेरा परवरदिगार (हर शख़्श के) क़रीब और सबकी सुनता और दुआ क़ुबूल करता है +","aur hamne aume samood ke pas unke bhaee saleh ko paimbar banakar bheja to unhonne apni aum se kaha ae meri aum uda hi ki parastish karo uske siva koee tumhara mabood nahin usi ne tumko zamin ki mitti se paida kiya aur tumko usmen basaya to usse maphirat ki duaa mgon phir uski bargah men tauba karo beshak mera paravardigar har shash ke rib aur sabki sunta aur duaa ubool karta hai +",6,4,positive,neutral,positive +"and, when reminded, do not remember +","और जब उन्हें याद दिलाया जाता है, तो वे याद नहीं करते, +","aur jab unhen yad dilaya jata hai , to ve yad nahin karte , +",10,0,neutral,neutral,neutral +"you won the TED Prize 2011. +","तुम्हें २०११ का टेड प्राइज़ मिल गया है. +","tumhen २०११ ka ted prize mil gaya hai +",9,1,positive,positive,positive +"He gone to Kerodemal College of Delhi University, where he taken Science Graduate Degree. +","उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्वविद्यालय के किरोड़ीमल कॉलेज चले गए जहां इन्होंने विज्ञान स्नातक की उपाधि प्राप्त की। +","unhonne bad science karne ke lie ye delhi university ke kirorimal college chale ge jahan inhonne vijnjan graduate ki degree prapt ki. +",7,0,neutral,neutral,neutral +"Then We awakened them to know which of the two groups could better calculate the length of their stay. +","फिर हमने उन्हें भेजा, ताकि मालूम करें कि दोनों गिरोहों में से किसने याद रखा है कि कितनी अवधि तक वे रहे +","phir hamne unhen bheja, taki maloom karen ki calculate the length se kisne yad rakha hai ki kitni avdhi tak ve rahe +",3,5,neutral,neutral,positive +"Really move all photos and videos to the trash? +","क्या आप वाकई रद्दी में सारे फोटो और वीडियो खिसकाना चाहते हैं? +","kya aap vakee raddi men sare photos and videos khiskana chahte hain +",8,1,negative,neutral,neutral +"Excavations made in Malabar have proved the existence of chambers in which massive earthenware urns had been kept. +","मालाबार में खुदाई के कमरों में रखे हुए बड़े-बड़े बर्तन मिले हैं जिनमे शव रखे जाते थे। +","malabar men khudaee ke kamron men rakhe hue bare-bare bartan mile hain jinme shav rakhe jate the. +",9,0,neutral,neutral,neutral +"And leave them desolate waste. +","और धरती को एक समतल चटियल मैदान बनाकर छोड़ेगा +","aur dharti ko ek samatal desolate maidan banakar chhorega +",9,0,negative,negative,negative +"Please let me see when you 're online. Thanks! +","मुझे देखने के लिए जब आप ऑनलाइन हो. धन्यवाद! +","mujhe dekhne ke lie jab aap ऑnlain ho dhanyvad! +",4,7,positive,neutral,positive +"A guidance and a mercy for the well - doers: +","जो (अज़सरतापा) उन लोगों के लिए हिदायत व रहमत है +","jo azasartapa un logon ke lie guidance v mercy hai +",8,3,neutral,neutral,positive +"In France, the news of one deed spreads like a flash and brings some pride to a disillusioned people. +","फ्रांस में इस एक कारनामे की खबर बिजली की तरह फैल जाती है और लोग भ्रम से मुक़्त होकर गर्व महसूस करते हैं. +","france men is ek deed ki news bijli ki tarah phail jati hai aur people bhram se mut hokar pride mahsoos karte hain +",7,2,neutral,positive,positive +"refuse him / her the permission to see your presence +","आपकी उपस्थिति को देखने के लिए उन्हें अनुमति मत दें +","aapki refuse ko dekhne ke lie unhen permission mat den +",8,1,neutral,neutral,negative +"Disable the new tab page menu for accessing tabs on other devices. +","अन्य उपकरणों पर टैब पर पहुंचने के लिए नया टैब पृष्ठ अक्षम करें. +","any upakarnon par tab page menu ke lie tab page prishth aksham karen +",6,3,neutral,negative,neutral +"Far from securing the ends of justice their pendency or disposal on merits will indubitably defeat the ends of justice. +","न्याय के उद्देश्यों की प्राप्ति से कोसों दूर, उनका अनिर्णय या योग्यता के आधार पर निपटान सुनिश्चित रूप से न्याय के उद्देश्यों को विफल कर देगा. +","ends ke uddeshyon ki disposal se koson pendency , unka anirnay ya merits ke aadhar par niptan sunishchit roop se ends ke uddeshyon ko viphal kar dega +",6,2,negative,negative,positive +"It is He who prevails over His creatures, and He is all - wise and aware. +","उसे अपने बन्दों पर पूर्ण अधिकार प्राप्त है। और वह तत्वदर्शी, ख़बर रखनेवाला है +","use apne creatures par poorn adhikar prapt hai. aur vah wise, aware rakhnevala hai +",8,1,positive,neutral,positive +"It belongs to the seventh century if not earlier , and was perhaps intended originally for the Buddhist creed , but was adopted later for a Vishnu temple , the principal deity being a recumbent Vishnu , or Anantasayin . +","यदि यह और पहले का नहीं , तो भी सातवीं शताब्दी का बना है और शायद मूल रूप से बौद्ध मत के लिए था , किंतु बाद में विष्णु मंदिर में रूपांतरित कर दिया गया जिसमें प्रमुख देवता लेटे हुए विष्णु या अनंतशायी हैं . +","yadi yah aur pahle ka nahin , to bhi seventh century ka bana hai aur earlier mool roop se buddhist creed ke lie tha , kintu bad men vishnu temple men roopantrit kar diya gaya jismen principal deity recumbent hue vishnu ya anantasayin hain +",8,2,neutral,neutral,neutral +"We created you, then why do you believe not? +","हमने तुम्हें पैदा किया; फिर तुम सच क्यों नहीं मानते? +","hamne tumhen paida kiya phir tum sach kyon nahin mante +",9,2,neutral,neutral,positive +"You be there at 10 A. M. sharp. +","आप प्रात 10 बजे वहाँ हो तेज. +","aap prat 10 baje vahan ho tej +",8,0,neutral,neutral,neutral +"Some months ago there were normal democratic elections there and as a result a popular radical party a joint popular front came into power . +","कुछ महीने हुए वहां सामान्य लोकतांत्रिक चुनाव हुए और फलस्वरूप वहां एक लोकप्रिय रेडिकल पार्टी-संयुक़्त लोकप्रिय मोर्चा-सत्ता में आयी . +","kuchh mahine hue vahan normal democratic elections hue aur phalasvroop vahan ek popular radical party lokapriy morcha-satta men aayi +",7,1,neutral,neutral,positive +"Continue applying patches with resolved conflicts +","जारी रखें लागू कर रहा है के साथ परस्पर विरोध +","continue rakhen lagoo kar raha hai ke sath resolved conflicts +",5,2,neutral,neutral,negative +"An organism or individual having a diploid set of chromosomes derived from each parent. +","कोई अवयव या जीव जिस में माता और पिता इन दोनों से ही प्राप्त गुणसुत्र का एक दोहरा गुट है। +","koee organism or individual jis men mata aur pita in donon se hi prapt gunsutr ka ek dohra gut individual +",6,3,neutral,neutral,neutral +"And We sent down out of heaven water in measure and lodged it in the earth; and We are able to take it away. +","और हमने आसमान से एक अन्दाजे क़े साथ पानी बरसाया फिर उसको ज़मीन में (हसब मसलेहत) ठहराए रखा और हम तो यक़ीनन उसके ग़ाएब कर देने पर भी क़ाबू रखते है +","aur hamne heaven se ek measure e sath water barsaya phir usko zamin men hasab maslehat thahrae rakha aur able to yainan uske aeb kar dene par bhi aboo rakhte hai +",7,5,neutral,neutral,positive +"The whole realm of satire, humour, or fantasy is open to the puppet producer. +","पुतली निर्देशकों के समक्ष व्यग्य, परिहास एवं कल्पना शक्ति का संसार खुला पड़ा है। +","puppet nirdeshkon ke samaksh satire , humour evn whole shakti ka snsar open para hai. +",8,1,neutral,neutral,positive +"But the physical love is only a bridge to cross over to the other bank葉he Annihilation of self. +","पर शारीरिक प्रेम दूसरे तट-आत्म-हनन-पर पहुँचने का सेतु मात्र है। +","par sharirik prem doosre tat-aatm-hanan-par bridge to cross physical love +",4,4,neutral,neutral,positive +"His mother was darning a torn sock over a wooden mushroom. +","उसकी माँ लकड़ी के बने कुकुरमुत्ते पर कोई फटा मोज़ा सी रही थी। +","uski man lakari ke bane kukurmutte par koee phata darning a torn thi. +",4,4,negative,neutral,negative +"Every soul shall have a taste of death: And only on the Day of Judgment shall you be paid your full recompense. Only he who is saved far from the Fire and admitted to the Garden will have attained the object (of Life): For the life of this world is but goods and chattels of deception. +","प्रत्येक जीव मृत्यु का मज़ा चखनेवाला है, और तुम्हें तो क़ियामत के दिन पूरा-पूरा बदला दे दिया जाएगा। अतः जिसे आग (जहन्नम) से हटाकर जन्नत में दाख़िल कर दिया गया, वह सफल रहा। रहा सांसारिक जीवन, तो वह माया-सामग्री के सिवा कुछ भी नहीं +","pratyek jiv taste of death chakhnevala hai, aur tumhen to iyamat ke din poora-poora badla de diya jaega. ata jise aag jahannam se hatakar jannat men dail kar diya gaya, vah saphal raha. raha sansarik jivan, to vah maya-samagri ke siva kuchh bhi nahin +",5,7,negative,negative,negative +"Fluctuations in the production of raw jute, low yield, cost inflation, labour unrest, uncertain demand and obsolete machinery are some of its major problems. +","कच्चे जूट के उत्पादन में उतार-चढ़ाव, कम पैदावार, लागत स्फीती, श्रम असंतोष, अनिश्चित मांग, पुरानी मशीनें, कुछ इसकी प्रमुख समस्याऍं हैं. +","fluctuations jute ke production men utar-chaav , low yield , cost sphiti , labour unrest , uncertain demand , obsolete machinery , kuchh iski major problems hain +",6,1,negative,negative,negative +"a lot of young people with a demographic dividend +","एक जनसांख्यिकीय लाभांश के साथ कई युवा लोग +","ek demographic dividend ke sath kee young lot +",6,4,neutral,neutral,neutral +"If you believe you can, you probably can. +","यदि आप यह मानते हैं कि आप कर सकते हैं, तो संभवतः आप कर सकते हैं। +","yadi aap yah mante hain ki aap kar sakte hain, to snbhavta aap kar sakte hain. +",8,4,positive,neutral,neutral +"into a school. Everybody is wearing jeans, everybody is the same. +","एक स्कूल में, हर कोई जींस पहन रहा है, हर कोई एक सामान है +","ek school men, har koee wearing jeans raha hai, har koee ek saman hai +",8,2,neutral,neutral,neutral +"Later a public meeting was called which was addressed by Hakim Ajmal Khan and Pandit Malaviya. +","पीछे एक बड़ी सभी हुई जिसमें हकीम साहब और पंडित मालवीयजी के भाषण हुए। +","pichhe ek bari sabhi huee jismen hakim sahab aur pndit meeting was called hue. +",4,1,neutral,neutral,neutral +"The highest amount of money that is required to be paid. +","अधिक से अधिक राशि जो मूल्य रुप मे दी जानी हो। +","highest se highest amount jo mooly rup me di jani amount +",7,1,neutral,neutral,neutral +"These were the ushnisa or turban, a pair of flywhisks, umbrella, sword, sandals, and the royal standard. +","ये थे; पगड़ी, चंवरों की जोड़ी, छतरी, खड़ग, चप्पल तथा राजसी ठाट-बाट से रहना। +","ye the turban , chnvron ki pair , umbrella , sword , sandals tatha royal that-bat se rahna. +",7,1,neutral,neutral,neutral +"And remember Our servants Ibrahim and Ishaq and Yaqoub, men of power and insight. +","और (ऐ रसूल) हमारे बन्दों में इबराहीम और इसहाक़ और याकूब को याद करो जो कुवत और बसीरत वाले थे +","aur ae rasool hamare bandon men ibrahim aur isha aur yakoob ko yad karo jo kuvat aur basirat vale the +",8,1,positive,neutral,neutral +"Place the ten of spades next to the nine of spades. +","हुकुम की दहला के बगल में हुकुम के नहला को रखें. +","spades ki place the ten place spades ke nahla ko rakhen +",2,3,neutral,neutral,neutral +"(Charles Tilly),Terror, Terrorism, Terrorist Sociological Theory (2004)22,5-13 (online) +","चार्ल्स तिल्ली (Charles Tilly) आतंक आतंकवाद आतंकवादी समाजशास्त्रीय सिद्धांत (2004) 22 5-13 में ऑनलाइन +","charls tilli Charles Tilly aatnk aatnkvad terrorist sociological theory 2004 22 5-13 men ऑnlain +",7,0,neutral,neutral,negative +"Backup Evolution data and settings to an archive file +","एवोल्यूशन डाटा व सेटिंग का बैकअप लें व फिर भंडारित करें +","evolution data v settings ka backup len v phir bhndarit karen +",9,2,neutral,neutral,neutral +"They distribute agricultural machinery; undertake wholesale, retail and foreign trade. +","यह कृषि यंत्रों, थोक तथा खुदरा बाजार एवं विदेशी व्यापार को भी वितरित एवं नियंत्रित करता है। +","yah agricultural machinery , wholesale tatha retail bajar evn foreign trade ko bhi vitrit evn niyntrit karta hai. +",7,1,neutral,neutral,neutral +"literature fo various dialects of hindi are still popular today, and even today, many poets and writers use regional languages for their work +","हिंदी की विभिन्न बोलियों का साहित्य आज भी लोकप्रिय है और आज भी अनेक कवि और लेखक अपना लेखन अपनी-अपनी क्षेत्रीय भाषाओं में करते हैं। +","hindi ki various dialects ka literature today bhi popular hai aur today bhi many poets aur writers apna work apni-apni regional bhashaon men karte hain. +",6,4,neutral,neutral,positive +"Rotate the image 90 degrees to the right +","छवि को 90 डिग्री पर दाहिने घुमाएँ +","image ko 90 degrees par right ghumaen +",9,2,neutral,neutral,neutral +"Moreover , even if we resolved the dispute by circumscribing its scope to some particular field of human endeavour and did agree on what is ' excellence ' , there is no knowing that it would be passed on to children . +","और किसी विशिष्ट क्षेत्र के संदर्भ में उत्कृष्टता का अर्थ क़्या होगा , इस बात का निर्णय हम लोगों ने कर भी लिया तब भी आनेवाली पीढ़ी की संतानों में यह गुण दिखाई देगा , इस बात की कोई गारंटी नहीं दी जा सकती . +","aur kisi particular scope ke sndarbh men human ka arth ya children , is moreover ka nirnay ham logon ne kar bhi liya tab bhi aanevali pii ki sntanon men yah gun dikhaee dega , is moreover ki koee garnti nahin di ja dispute +",6,3,neutral,negative,positive +"” Tonight, it will be a year … ” +","आज रात एक साल पूरा हो जाएगा। +","aaj tonight ek year poora ho jaega. +",8,0,neutral,positive,neutral +"such as projections and judgements of others... yes. +","हाँ, जैसे कि दूसरो के बारे में मानसिक कल्पनाएँ और राय। +","han, jaise ki doosro ke bare men mansik kalpnaen aur ray. +",7,5,neutral,neutral,positive +"American Lung Association of New England on quality of air +","वायु की गुणवत्ता पर न्यू इंगलैंड का अमेरिकन लंग एसोसिएशन +","air ki quality par new england ka american lung association +",9,2,neutral,neutral,neutral +"He cannot bring down its greater spiritual nature into this lower triplicity; for here the mental being is the highest expression of the Self. +","वह उसकी महत्तर आध्यात्मिक प्रकृति को नीचे उतारकर इस निम्नतर त्रिविध सत्ता में नहीं ला सकता; क्योंकि यहां तो मनोमय पुरुष ही आत्मा की सर्वोच्च अभिव्यक्ति है। +","vah uski greater spiritual nature ko niche utarakar is lower trividh satta men nahin triplicity sakta kyonki yahan to manomay purush hi aatma ki sarvochch expression hai. +",6,3,neutral,neutral,neutral +"by 5, so 1 times 5 is 5. +","तो 1 गुना 5 बराबर है 5के. +","to 1 times 5 barabar hai 5ke +",8,4,neutral,neutral,neutral +"Candytuft is mostly cultivated for ornamental purposes. +","चांदी टफ या कैंडीटफ्ट मुख्यत सजावटी उद्देश्यों के लिए उगाए जाते हैं +","chandi taph ya kainditapht mukhyat ornamental purposes ke lie ugae jate hain +",8,1,neutral,neutral,neutral +"On the other hand, art flourished under Buddhist patronage. +","दूसरी ओर बोद्धों के संरक्षण में कला समृद्धशाली बनी। +","other or buddhist ke patronage men art samriddhshali bani. +",6,3,neutral,neutral,positive +"Standard Chartered has brought in 140 million. +","स्टैंडर्ड चार्टर्ड 140 मिलियन लाया है। +","standard chartard 140 miliyan laya hai. +",9,0,neutral,positive,neutral +"During the war years, the railways were under great strain, not only because of the growing needs of transportation of troops and war materials internally, but also because of the responsibility thrown on them to meet the demands of staff and material for the railways in the African theatre of war. +","युद्ध के वर्षों के दौरान, रेलवे पर अत्यधिक दबाव था. यह न केवल सेना और युद्ध सामग्री को देश में ही लाने ले जाने के कारण था वरन् अफ्रीकी युद्ध में रेलवे के लिए स्टाफ और सामग्री की बढ़ती हुई मांग को पूरा करने के उन पर सौंपे गये दायित्व के कारण था. +","war ke varshon ke dauran , railways par atydhik strain tha yah n keval troops aur war materials ko desh men hi lane responsibility jane ke great tha varan african war men railways ke lie staff aur materials ki bati huee needs ko poora karne ke un par saunpe gaye dayitv ke great tha +",7,3,negative,neutral,negative +"They said, ‘O Moses! Will you throw first, or shall we? ’ +","वे बोले, ""ऐ मूसा! या तो तुम फेंको या फिर हम पहले फेंकते हैं।"" +","ve bole, ae moses! ya to tum phenko ya phir ham pahle phenkte hain. +",8,3,neutral,neutral,neutral +"No maintenance charges required to be paid. +","कोई अनुरक्षण शुल्क देने की जरुरत नहीं है। +","koee maintenance charges dene ki jarurat nahin paid +",6,5,neutral,neutral,negative +"Cannot attach CMS Enveloped data +","CMS लिफाफाकृत आंकड़ा संलग्न नहीं कर सकता है +","CMS attach data snlagn nahin kar sakta hai +",6,7,negative,neutral,neutral +"A culture of prevention rather than a culture of reaction is required in the mining industry as a value-driven commitment towards zero tolerance to such incidents. +","ऐसी दुर्घटनाओं को बिलकुल सहन न करने की मूल्य प्रेरित प्रतिबद्धता के रूप में,खनन उद्योग में प्रतिक्रिया की संस्कृति के बजाय बचाव की संस्कृति की आवश्यकता है। +","aesi incidents ko bilkul tolerance n karne ki mooly prerit commitment ke roop men , mining industry men reaction ki culture ke bajay prevention ki culture ki aavashyakta hai. +",5,2,neutral,neutral,positive +"It tells you what vitamin K deficiency bleeding is, discusses the benefits of vitamin K supplements and possible disadvantages of its use, and gives the best current advice. +","यह पत्रक बताता है कि विटामिन के (ख्) डिफ़िशेसी ब्लीडिंग (विटामिन के (ख्) की कभी कमी की वजह से खून बहने लगना) क्या है। भाष्; यह विटामिन के (ख्) सप्लिमेंट्स के लाभ और संभावित प्रतिकूल परिस्थितियों के बारे में भी जानकारी देता है। भाष्; +","yah patrak batata hai ki vitamin ke k benefits bliding vitamin ke k ki kabhi deficiency ki vajah se khoon bahne lagna kya possible bhash yah vitamin ke k sapliments ke labh aur snbhavit prtikool paristhitiyon ke bare men bhi jankari deta possible bhash +",7,1,neutral,neutral,positive +"In truth, when its desires are fulfilled, it returns to its own place and enjoys the happiness that is the Self. +","वस्तुतः जब उसकी इच्छाएँ पूरी हो जाती है तो वह अपने स्थान पर वापस आ जाता है, और आनंद का, आत्मा का उपयोग करता है। +","vastuta jab uski ichchhaen poori ho jati hai to vah apne sthan par vapas aa jata hai, aur aannd ka, aatma ka upyog karta hai. +",7,3,positive,neutral,positive +"Corporal punishment should be banished from schools and students should be encouraged to take positive initiatives. +","स्कूलों में बच्चों को शारीरिक दण्ड देने पर रोक होनी चाहिए और विद्यार्थियों को रचनात्मक पहल करने के लिए प्रोत्साहित किया जाना चाहिए। +","skoolon men bachchon ko corporal punishment dene par rok honi chahie aur vidyarthiyon ko rachnatmak pahal karne ke lie protsahit kiya jana chahie. +",8,1,neutral,neutral,positive +"Move% s onto% s. +","% s खिसकाएँ% s पर. +","move khiskaen move par +",6,2,neutral,neutral,neutral +"Let's see, let's do minus 5 / 7 divided by 10 / 3. +","देखे, करे नकारात्मक 5/7 विभाजित है 10/3 से +","dekhe, kare minus 57 divided hai 103 se +",7,3,neutral,neutral,neutral +"Is it possible for everyone to know one 's true nature? +","क्या हर कोई अपने सच्चे स्वरुप का जान सकता है? +","kya har koee apne true nature ka jan sakta hai +",8,1,neutral,neutral,positive +"Don 't get pulled into that rush... into that storm. +","उस भीड़ में खींचे नहीं चले जाना है.... उस तूफ़ान मे। +","us rush men khinche nahin don get hai us storm me. +",4,5,neutral,negative,neutral +"Import HandyShopper store names only as item tags. +","आइटम टैग के रूप में ही HandyShopper के स्टोर नाम आयात करें +","item tags ke roop men hi HandyShopper ke stor nam aayat karen +",9,0,neutral,neutral,neutral +"In tha Law there are a number of bylaws under one law. +","विधि में एक नियम के अंतर्गत कई उप नियम होते हैं। +","vidhi men ek niyam ke antargat kee up niyam hote number +",8,0,neutral,neutral,positive +"In the Gardens of delight (Paradise). +","नेमत भरी जन्नतों में होंगे; +","delight bhari gardens men honge +",7,3,positive,neutral,positive +"Among the principal 'infant' industries of this period mention must be made of sugar, paper, and matches. +","छोटे छोटे शिशु उद्योग इस समय के मुखऋ-ऊण्श्छ्ष्-य शिशु उद्योगों में चीनी, कागज और दियासलाऋ की चर्चा की जा सकती है. +","chhote chhote shishu udyog is samay ke mukhri-oonshchhsh-y shishu udyogon men chini, kagaj aur diyaslari ki charcha ki ja sakti hai +",9,0,neutral,neutral,neutral +"Last week , transporters in Delhi were up in arms against him , and , on April 10 , the first fir alleging a case of cheating and detailing his role in the CNG kit scam , was lodged at a Delhi police station . +","दिल्ली के ट्रांसपोर्टरों ने एकजुट हो 10 अप्रैल को उनके खिलफ धोखाधड़ी के आरोप के साथ सीएनजी किट घोटाले में उनकी भूमिका बताते हे प्राथमिकी दर्ज करवाई . +","delhi ke last ne ekjut ho 10 april ko unke khilaph cheating ke aarop ke sath cng kit scam men unki role batate he fir darj karvaee +",6,2,negative,neutral,negative +"So, a smaller group, whether it is called a steering committee or something else, is needed which can be more active and can meet more frequently and with less expenses. +","इसीलिये एक ज्यादा छोटे समूह की जरूरत है, चाहे उसे आप कार्य संचालन समिति कहें या कुछ और, जो साल में कई बार मिल सके, अधिक सक्रिय हो सके और कम खर्च से काम चला सके। +","isiliye ek jyada smaller group ki jaroorat hai , something use aap kary steering committee kahen ya kuchh aur , jo sal men kee bar mil sake , adhik active ho sake aur less kharch se kam chala sake. +",8,3,neutral,neutral,positive +"They felt there wasn 't enough progress +","उन्होंने महसूस किया कि वहाँ पर्याप्त प्रगति नहीं थी +","unhonne wasn kiya ki vahan paryapt progress nahin thi +",7,2,negative,negative,positive +"he method of recording of votes by Members on `Ayes' and `Noes' slips is generally resorted to in the eventuality of : +","'हां' या 'नहीं' पर्चियों पर सदस्यों के मतों का अभिलेखन का तरीका सामान्यतया निम्नलिखित परिस्थतियों में अपनाया जाता हैः- +","han ya nhin parchiyon par votes by members ka abhilekhan ka tarika samanyatya nimnlikhit paristhtiyon men apnaya jata haia- +",6,4,neutral,negative,neutral +"This is an account of (the fate of) the towns which We relate to you; of them are some that stand and (others) mown down. +","(ऐ रसूल) ये चन्द बस्तियों के हालात हैं जो हम तुम से बयान करते हैं उनमें से बाज़ तो (उस वक्त तक) क़ायम हैं और बाज़ का तहस नहस हो गया +","fate account ye chand towns ke halat hain jo ham tum se bayan karte hain unmen se others to us vakt tak ayam hain aur others ka tahas nahas ho gaya +",6,4,neutral,neutral,neutral +"Purchase of machinery and implements / equipment +","मशीनों एवं उपकरणों/औजारों की खरीद। आवधिक ऋण: +","machinery and implements ki purchase aavdhik rin: +",7,2,neutral,neutral,neutral +"Then it goes back to potential energy again. +","तो यह वापस संभावित ऊर्जा को फिर से चला जाता है। +","to yah vapas potential energy ko phir se chala jata hai. +",9,0,neutral,neutral,positive +"OPV can be given to children till 5 years of age. +","बच्चों को ओपीवी 5 वर्ष की आयु तक दिया जा सकता है +","children ko opivi 5 years of age tak diya ja sakta hai +",9,2,neutral,neutral,neutral +"Usman Riaz: Yes, that was the first one. And then I - +","उस्मान रियाजः हाँ, यह पहला था. और फिर मैं... +","usman riyaja one , yah first tha aur phir main +",7,1,neutral,neutral,positive +"Info to be shown for this item +","इस मद के लिए दिखाए जाने के लिए जानकारी +","is item ke lie dikhae jane ke lie info +",8,1,neutral,neutral,neutral +"But during his father 's gall - bladder operation he admitted him to a paying bed at the Bangur Hospital. +","बाप के गाँल ब्लाडर का ऑपरेशन कराया बाँगुर हास्पीटल के पेइंग बेड भर्ती करा कर। +","bap ke ganl bladar ka ऑpreshan karaya bangur haspital ke peing bed bharti kara kar. +",6,1,neutral,neutral,positive +"Wind speed = %d kilometers/hour +","हवा की गती = %d किलोमीटर/प्रतिघंटा +","wind ki speed d kilomitarprtighnta +",8,2,neutral,neutral,neutral +"If selected, you will be notified when entering an SSL enabled site +","यदि चुना गया है, जब आप एसएसएल सक्षम साइट पर प्रवेश करते हैं तो आपको सूचित किया जाएगा +","yadi selected gaya hai, jab aap esesel enabled site par prvesh karte hain to aapko soochit kiya jaega +",5,5,neutral,neutral,neutral +"Each vertex has a label, and these labels must have the following property. +","प्रत्येक वर्टेक्स एक लेबल है, और इन लेबल निम्न गुण होना आवश्यक है। +","pratyek varteks ek label hai, aur in label nimn gun hona aavashyak hai. +",5,6,neutral,neutral,neutral +"(ii) the Minister for Tuensang affairs shall deal with, and have direct access to the Governor on, all matters relating to the Tuensang district but he shall keep the Chief Minister informed about the same; +","(ii) त्युएनसांग कार्य मंत्री त्युएनसांग जिले से संबंधित सभी विषयों की बाबत कार्य करेगा और उनके संबंध में राज्यपाल के पास उसकी सीधी पहुँच होगी किंतु वह उनके संबंध में मुख्यमंत्री को जानकारी देता रहेगा; +","ii tuensang affairs minister tuensang district se snbndhit sabhi matters ki babat affairs karega aur unke snbndh men governor ke pas uski direct access hogi kintu vah unke snbndh men mukhymntri ko jankari deta rahega +",8,2,neutral,neutral,neutral +"He said, “O my son, do not relate your vision to your brothers, lest they plot and scheme against you. Satan is man 's sworn enemy. +","याक़ूब ने कहा ऐ बेटा (देखो ख़बरदार) कहीं अपना ख्वाब अपने भाईयों से न दोहराना (वरना) वह लोग तुम्हारे लिए मक्कारी की तदबीर करने लगेगें इसमें तो शक़ ही नहीं कि शैतान आदमी का खुला हुआ दुश्मन है +","yaoob ne kaha ae son dekho bardar lest apna vision apne brothers se n dohrana varna vah log tumhare lie scheme ki tadbir karne lagegen ismen to sha hi nahin ki shaitan man ka sworn huaa enemy hai +",5,1,negative,negative,negative +"The day the sky will tremble, +","जिस दिन आसमान चक्कर खाने लगेगा +","jis day sky chakkar khane lagega +",8,2,neutral,neutral,negative +"Joint Forest Management Committees have played a key role in curbing the exploitation of forest resources that had often led to the marginalization and deprivation of tribal people. +","संयुक्त वन प्रबंधन समितियों ने अक्सर जनजातीय लोगों को पिछड़ा और अभावग्रस्त बनाने वाले वन संसाधनों के दोहन को समाप्त करने में प्रमुख भूमिका निभाई है। +","joint forest management samitiyon ne tribal people logon ko pichhara aur abhavagrast banane vale van snsadhnon ke dohan ko samapt karne men prmukh played a key +",6,2,neutral,negative,negative +"A skilled or artistic worker or craftsman. +","कोई कुशल या कलात्मक मज़दूर या कारीगर। +","koee skilled or artistic worker ya karigar. +",9,1,neutral,neutral,neutral +"I know that the Bodhisattva lovingly regards all living creatures to deliver them from misery! +","मै जानता हूं कि बोधिसत्व सभी प्राणियों पर अपनी कृपा भाव बिखेरे हुए हैं! +","mai janta hoon ki bodhisatv sabhi living par apni kripa bhav bikhere hue hain! +",9,0,positive,negative,positive +"&Always Open Files of This Type +","इस प्रकार की फ़ाइलें &हमेशा खोलें +","is type ki open files open +",6,0,neutral,neutral,neutral +"Greek 'ouranos' for 'heaven'. Named after the planet Uranus. +","'स्वर्ग' के लिए यूनानी में 'क्वारानोस'. यूरेनस ग्रह के ऊपर नाम रखा गया +","svarg ke lie greek men kvaranos planet uranus ke oopar nam rakha gaya +",8,3,neutral,neutral,positive +"All right, this is another one that should be cut and pasted. +","सब ठीक है, यह एक और एक कि काटा और चिपकाया जाना चाहिए है। +","sab right hai , yah ek aur ek ki kata aur one jana chahie hai. +",7,4,neutral,neutral,negative +"""(xviib) any compensation or other payment referred to in clause (xi) of sub-section (2) of section 56;""; +","''(xviiख) धारा 56 की उपधारा (2) के खंड (xi) में निर्दिष्ट कोर्इ प्रतिकर या अन्य संदाय;''; +","xviikh clause 56 ki upclause 2 ke khnd xi men nirdisht kori prtikar ya any snday +",6,0,neutral,neutral,neutral +"The Agreement on South Asian Free Trade Area (SAFTA) was signed by all the member States of the South Asian Association for Regional Cooperation (SAARC) during the twelfth 'SAARC Summit' held in Islamabad on 4 - 6th January, 2004. +","दक्षिणी एशिया मुक्त कारोबार क्षेत्र (साफ्टा) पर करारनामे पर इस्लामाबाद में 4-6 जनवरी को आयोजित बारहवेंदक्षिण एशियाई क्षेत्रीय सहयोग संघ (सार्क) सम्मेलन के दौरान सार्क के सभी सदस्य देशों ने हस्ताक्षर किए। +","south asian free trade area saphta par kararname par islamabad men 4-6 janavri ko aayojit barahvendakshin eshiyaee kshetriy sahyog sngh sark sammelan ke dauran sark ke sabhi sadasy deshon ne hastakshar kie. +",7,4,neutral,neutral,positive +"The three saw a shepherd maid churning curd in front of her house and telling the children playing around her, 'Go away, you kids, lest the curd thumi droplet should spill upon you. +","उन तीनों ने एक ग्वालिन को देखा जो अपने घर के सामने दही मथ रही थी और अपने चारों तरफ खेलते हुए बच्चों से कह रही थी, भाग जाओ, बच्चो, नहीं तो दही की बूँदें थुमि तुम्हारे ऊपर उछलकर गिरेंगी। +","un tinon ne ek gvalin ko dekha jo apne ghar ke samne dahi math rahi thi aur apne charon taraph khelte hue bachchon se kah rahi thi, bhag jao, bachcho, nahin to dahi ki boonden thumi tumhare oopar uchhalakar girengi. +",8,4,neutral,neutral,positive +"Failed to unlock lock file '% s' '% s' +","लॉक फ़ाइल को अन-लॉक करने में असफ़ल +","lock file ko an-lk karne men asafal +",8,2,negative,neutral,negative +"We have tried to correct them. +","हमने उन्हें सुधारने की कोशिश की है। +","hamne unhen sudharne ki koshish ki hai. +",9,2,neutral,neutral,neutral +"Having nothing worthwhile to do, he organized a society of like - minded persons to divert his mind. +","कुछ खास काम न हाने के कारण उन्होंने अपना ध्यान दूसरी ओर लगााने की दृष्टि से अपने जैसे विचार वाले लोगों की एक सोसायटी बना ली। +","kuchh nothing kam n hane ke karan unhonne apna mind society or lagaane ki drishti se apne jaise vichar vale persons ki ek sosayti bana li. +",4,1,negative,neutral,positive +"Through ‘e - FILING’ only Advocate - on Record’ and petitioners - in - person can file cases in the Supreme Court of India +","2. ई-फाइलिंग के माध्यम से सर्वोच्च न्यायालय में केवल पीड़ित व्यक्ति अर्थात् मुकदमा दायर करने के इच्छुक व्यक्ति स्वयं या निबंधित वकील ही मुकदमा दायर कर सकता है। +","petitioners ee-phailing ke madhyam se supreme record men keval pirit person arthat cases filing karne ke ichchhuk person svyn ya nibndhit advocate hi cases filing kar sakta +",6,1,neutral,neutral,positive +"We think doodling is something you do when you lose focus, +","ऐसा माना जाता है कि डूडल करने वाले का ध्यान भंग हो चुका है, +","aesa mana jata hai ki doodling karne vale ka focus bhng ho chuka hai, +",7,3,neutral,neutral,negative +"It assists the government in formulating and implementing policies for national development. +","यह राष्ट्रीय विकास के लिए नीतियों के निर्माण और कार्यान्वयन में सरकार की मदद करती है। +","yah formulating development ke lie policies ke nirman aur karyanvayan men government ki madad karti hai. +",7,2,neutral,neutral,neutral +"Anaerobic is a technical word which literally means without oxygen. +","अनॉक्सीय एक तांत्रिक शब्द है जिसका शाब्दिक अर्थ है बीना प्राणवायु के। +","anksiy ek tantrik word hai jiska shabdik arth hai technical oxygen ke. +",6,1,negative,neutral,neutral +"“ Well . . . so I can do things , ” he had responded . “ And so I can change those things that I don ' t want to happen . ” +","“ इसलिए कि मैं कुछ कर सकूं , ” ऊंट चालक ने कहा , “ और उन चीजों को बदल सकूं जिन्हें मैं घटित होते हुए नहीं देखना चाहता ! ” +","islie ki main kuchh kar sakoon , oont chalak ne kaha , aur un change those things sakoon jinhen main ghatit hote hue nahin dekhna chahta ! +",7,1,neutral,neutral,positive +"In his will Vitthal bhai patel named all his billions of property to Subash babu. +","विठ्ठल भाई पटेल ने अपनी वसीयत में अपनी करोडों की संपत्ती सुभाषबाबू के नाम कर दी। +","bhai bhaee patel ne apni property men apni billions ki babu subhashbaboo ke nam kar di. +",5,2,neutral,neutral,neutral +"He was born in the city of Surat in Gujarat on 24th August, 1833. +","24 अगस्त, 1833 को उसका जन्म गुजरात के सूरत नगर में हुआ। +","24 august, 1833 ko uska janm gujrat ke soorat nagar men huaa. +",9,2,neutral,neutral,neutral +"A structure above the surface. +","पृष्ठ या सतह से ऊपर संरचना. +","prishth ya satah se oopar structure +",7,1,neutral,neutral,neutral +"and when the Koran is recited to them they do not bow? +","और जब उन्हें कुरआन पढ़कर सुनाया जाता है तो सजदे में नहीं गिर पड़ते? +","aur jab unhen koran pakar sunaya jata hai to sajde men nahin gir parte +",4,6,neutral,neutral,neutral +"We 're going to win because we have dreams. +","हम जीतने वाले हैं क्योंकि हमारे पास एक सपना है। +","ham dreams vale hain kyonki hamare pas ek sapna hai. +",7,2,positive,neutral,positive +"Leave Me alone with he whom I created +","(ऐ रसूल) मुझे और उस शख़्श को छोड़ दो जिसे मैने अकेला पैदा किया +","ae leave mujhe aur us shash ko chhor do jise maine akela paida kiya +",7,3,neutral,neutral,negative +"Mankind were one community, and Allah sent (unto them) prophets as bearers of good tidings and as warners, and revealed therewith the Scripture with the truth that it might judge between mankind concerning that wherein they differed. And only those unto whom (the Scripture) was given differed concerning it, after clear proofs had come unto them, through hatred one of another. And Allah by His Will guided those who believe unto the truth of that concerning which they differed. Allah guideth whom He will unto a straight path. +","(पहले) सब लोग एक ही दीन रखते थे (फिर आपस में झगड़ने लगे तब) ख़ुदा ने नजात से ख़ुश ख़बरी देने वाले और अज़ाब से डराने वाले पैग़म्बरों को भेजा और इन पैग़म्बरों के साथ बरहक़ किताब भी नाज़िल की ताकि जिन बातों में लोग झगड़ते थे किताबे ख़ुदा (उसका) फ़ैसला कर दे और फिर अफ़सोस तो ये है कि इस हुक्म से इख्तेलाफ किया भी तो उन्हीं लोगों ने जिन को किताब दी गयी थी और वह भी जब उन के पास ख़ुदा के साफ एहकाम आ चुके उसके बाद और वह भी आपस की शरारत से तब ख़ुदा ने अपनी मेहरबानी से (ख़ालिस) ईमानदारों को वह राहे हक़ दिखा दी जिस में उन लोगों ने इख्तेलाफ डाल रखा था और ख़ुदा जिस को चाहे राहे रास्त की हिदायत करता है +","pahle sab mankind ek hi din rakhte the phir good men jhagarne lage tab allah ne najat se tidings bearers dene vale aur azab se darane vale sent ko bheja aur in sent ke sath baraha community bhi nazil ki taki jin baton men mankind jhagarte the kitabe allah uska faisla kar de aur phir afsos to ye hai ki is hukm se proofs kiya bhi to unhin logon ne jin ko community di gayi thi aur vah bhi jab un ke pas allah ke clear ehkam aa chuke uske bad aur vah bhi good ki shararat se tab allah ne apni meharbani se alis eemandaron ko vah straight ha dikha di jis men un logon ne proofs dal rakha tha aur allah jis ko chahe straight guideth ki hidayat karta hai +",6,4,neutral,neutral,positive +"“ But , above all , I learned that these things are all so simple that they could be written on the surface of an emerald . ” +","“ मगर इस सबसे ज्यादा मैंने यह सीखा कि ये सब चीजें इतनी सरल हैं कि इन्हें नगीने की सतह पर भी लिखा जा सकता है । +","magar is sabse jyada mainne yah learned ki ye sab simple itni saral hain ki inhen nagine ki satah par bhi likha ja sakta hai . +",8,1,positive,neutral,neutral +"A complaint was also made about the delay in the Industrial Relations Bill. +","औद्योगिक सम्बंध विधेयक में देरी की भी एक शिकायत मिली है। +","industrial relations bill men delay ki bhi ek complaint mili hai. +",8,1,neutral,neutral,negative +"He is the Lord of the heavens and the earth and all that is between them. He is the Beneficent God and no one will be able to address Him. +","वह आकाशों और धरती का और जो कुछ उनके बीच है सबका रब है, अत्यन्त कृपाशील है, उसके सामने बात करना उनके बस में नहीं होगा +","vah lord aur earth ka aur jo kuchh unke bich hai beneficent god hai , atyant kripashil hai , uske samne bat karna unke bas men nahin hoga +",6,2,positive,neutral,positive +"The region was endemic for malaria, Kala - a - zar and leprosy. +","यह क्षेत्र मलेरिया, कालाजार और कुष्ठ रोग से प्रभावित था। +","yah region malaria, kala aur leprosy rog se prbhavit tha. +",9,1,negative,negative,neutral +"And We sent down out of heaven water in measure and lodged it in the earth; and We are able to take it away. +","और हमने आसमान से एक अन्दाजे क़े साथ पानी बरसाया फिर उसको ज़मीन में (हसब मसलेहत) ठहराए रखा और हम तो यक़ीनन उसके ग़ाएब कर देने पर भी क़ाबू रखते है +","aur hamne aasman se ek andaje e sath pani barsaya phir usko zamin men hasab maslehat thahrae rakha aur ham to yainan uske aeb kar dene par bhi aboo rakhte hai +",7,5,neutral,neutral,positive +"The whole of Rashtrapati Bhavan would be with them in their efforts to bring up their children. +","उनके बच्चों की परवरिश में पूरा राष्ट्रपति भवन उनके साथ है। +","unke children ki paravrish men poora rashtrapati bhavan unke sath whole +",6,5,positive,neutral,neutral +"""'And in the End He will return you into the (earth), and raise you forth (again at the Resurrection)? +","फिर तुमको उसी में दोबारा ले जाएगा और (क़यामत में उसी से) निकाल कर खड़ा करेगा +","phir tumko usi men resurrection le end aur earth men usi se nikal kar khara karega +",5,3,neutral,neutral,neutral +"In 1882 , Lord Ripon established local self-government in India with the setting up of district local boards . +","1882 में लार्ड रिपन ने जिला स्थानीय बोर्डों के गठन के साथ भारत में स्थानीय स्वशासन की स्थापना की . +","1882 men lord ripon ne district local boards ke gathan ke sath india men local self-government ki sthapna ki +",9,0,neutral,neutral,neutral +"Open the selected bookmark in a new tab +","चयनित पसंद को नए टैब में खोलें +","chaynit bookmark ko new tab men kholen +",10,0,neutral,neutral,neutral +"India participated, actively and constructively in the negotiations and sought to place the Treaty in a disarmament framework by proposing its linkage with a time - bound programme for the universal elimination of all nuclear weapons. +","भारत ने इन चर्चाओं में सक्रिय और रचनात्मक ढंग से हिसा लिया और दुनिया से समस्त परमाणु हथियारों की समाप्ति के लिए एक समयबद्ध कार्यक्रम का प्रस्ताव करके इस संधि को निरस्त्रीकरण के ढांचे में ढालने की मांग जाहिर की। +","bharat ne in charchaon men actively and constructively dhng se hisa liya aur duniya se samast parmanu hathiyaron ki samapti ke lie ek samayabaddh karyakram ka prastav karke is sndhi ko nirastrikaran ke dhanche men dhalne ki mang jahir ki. +",6,1,neutral,neutral,negative +"India participated, actively and constructively in the negotiations and sought to place the Treaty in a disarmament framework by proposing its linkage with a time - bound programme for the universal elimination of all nuclear weapons. +","भारत ने इन चर्चाओं में सक्रिय और रचनात्मक ढंग से हिसा लिया और दुनिया से समस्त परमाणु हथियारों की समाप्ति के लिए एक समयबद्ध कार्यक्रम का प्रस्ताव करके इस संधि को निरस्त्रीकरण के ढांचे में ढालने की मांग जाहिर की। +","india ne in negotiations men sakriy aur framework elimination se hisa liya aur duniya se samast nuclear weapons ki samapti ke lie ek samayabaddh programme ka prastav karke is treaty ko disarmament ke dhanche men dhalne ki mang jahir ki. +",6,1,neutral,neutral,negative +"A former Mujahideen commander , Haq 's ties with the CIA went back to the Soviet-Afghan war of the 1980s . +","क 80 के दशक के सोवियत-अफगान युद्ध के समय से ही सीआइए से जुड़ै थे . +","haq mujahideen ke dashak ke soviyat-aphgan war ke samay se hi cia se jurai the +",6,3,neutral,neutral,negative +"In your provisions Allah has preferred some of you above others. But, those who have been preferred do not give their provisions to those whom their right hand possess so that they might be equal therein. What, do they vainly disbelieve the favor of Allah? +","और ख़ुदा ही ने तुममें से बाज़ को बाज़ पर रिज़क (दौलत में) तरजीह दी है फिर जिन लोगों को रोज़ी ज्यादा दी गई है वह लोग अपनी रोज़ी में से उन लोगों को जिन पर उनका दस्तरस (इख्तेयार) है (लौन्डी ग़ुलाम वग़ैरह) देने वाला नहीं (हालॉकि इस माल में तो सब के सब मालिक गुलाम वग़ैरह) बराबर हैं तो क्या ये लोग ख़ुदा की नेअमत के मुन्किर हैं +","aur uda hi ne tummen se baz ko baz par rizak daulat men tarjih di hai phir jin logon ko rozi jyada di gee hai vah log apni rozi men se un logon ko jin par unka dastaras ikhteyar hai laundi ulam vaairah dene vala nahin halki is mal men to sab ke sab malik gulam vaairah barabar hain to kya ye log uda ki neamat ke munkir hain +",3,5,neutral,negative,positive +"“It 's nice for swimming there. ” +","पानी में तैरने का वहाँ बहुत बढ़िया इन्तज़ाम है। +","pani men nice ka vahan bahut baiya intazam hai. +",3,3,positive,neutral,positive +"In tapeworm infestation human are the primary host. +","फीताकृमि ग्रसन में मनुष्य प्राथमिक पोषी या आश्रयी है +","phitakrimi infestation men human primary poshi ya host hai +",8,2,neutral,negative,neutral +"The Juvenile Justice Board apparently has given benefit to the appellant by treating his age to be 20 years as on 13. 08. 2003 which was on the lower side within the range of one year fixed by the Medical Board. +","किशोर न्याय बोर्ड ने प्रकट रूप से अपीलार्थी को, १३. ०८. २००३ पर उसकी आयु २० वर्ष मानकर, जो मेडिकल बोर्ड द्वारा तय एक वर्ष की सीमा के भीतर कमी की तरफ थी, लाभ दिया है. +","juvenile justice board ne prakat lower se appellant ko , १३ ०८ २००३ par uski age २० years manakar , jo medical board dvara tay ek years ki range ke bhitar kami ki side thi , benefit diya hai +",5,2,neutral,positive,positive +"He said that their job is multifarious. He advised them to always remember that their conduct and behaviour is a reflection not only of the police force but is actually a projection of the entire administration before the common people. +","उन्होंने कहा कि उनका कार्य बहुआयामी है। उन्होंने सलाह दी कि उन्हें यह सदैव याद रखना चाहिए कि उनके व्यवहार और आचरण से न केवल पुलिस सेवा के बारे में नजरिया बनाता है वरन् वह वास्तव में आम जनता के सामने पूरे प्रशासन का प्रतिबिंब होता है। +","unhonne kaha ki unka job multifarious force unhonne salah projection ki unhen yah sadaiv yad people chahie ki unke behaviour aur conduct se n keval police seva ke bare men najriya banata hai varan vah vastav men common janta ke samne entire administration ka reflection hota force +",8,2,neutral,neutral,neutral +"Rural electrification (Ekal Electric House) +","ग्रामीण विद्युतीकरण (एकल बिजली घर) +","rural electrification ekal electric ghar +",8,1,neutral,neutral,neutral +"The Indian National Congress reacted sharply to the appointment of the Simon Commission . +","इंडियन नेशनल कांग्रेस ने साइमन कमीशन के गठन पर तीखी प्रतिक्रिया व्यक्त की . +","indian national congress ne simon commission ke gathan par appointment prtikriya vyakt ki +",6,3,neutral,neutral,neutral +"Snow leopard hunts blue sheep in the Himalayas. +","हिम तेंदुआ हिमालय में नीली भेड़ का शिकार करता है। +","snow leopard himalay men blue sheep ka shikar karta hai. +",8,1,neutral,neutral,neutral +"Water resources development and management will have to be planned for a hydrological unit. +","एक हाइड्रोलॉजिकल इकाई के लिए जल संसाधन विकास और प्रबंधन की योजना बनानी होगी। +","ek hydrological unit ke lie jal snsadhan development and management ki yojna banani hogi. +",9,2,neutral,neutral,neutral +"The Madras High Court was a pioneer in the enrolment of women. +","मद्रास उच्च न्यायालय महिलाओं के प्रवेश में भी अग्रणी रहा। +","madras high court women ke enrolment men bhi pioneer raha. +",9,1,positive,neutral,neutral +"Malik Bhago, the chief of the place invites the Guru to partake food from the rich feast arranged by him. +","स्थान मुखिया, मलिक भागो गुरूजी को अपने द्वारा सुशेभित की हुई शानदार द़ावत में भोजन ग्रहण करने के लिए कहता है। +","place chief , malik bhago guru ko apne dvara sushebhit ki huee rich feast men food grahan karne ke lie kahta hai. +",7,2,neutral,neutral,positive +"We have not heard of any such thing in the old religion. This is nothing but a fabrication. +","हम लोगों ने तो ये बात पिछले दीन में कभी सुनी भी नहीं हो न हो ये उसकी मन गढ़ंत है +","ham logon ne to ye bat pichhle din men kabhi suni bhi nahin ho n ho ye uski man gant hai +",4,6,negative,neutral,neutral +"There is a lesson for you concerning cattle. We provide you with drink from their bellies and many other benefits. You can consume them as meat. +","और निश्चय ही तुम्हारे लिए चौपायों में भी एक शिक्षा है। उनके पेटों में जो कुछ है उसमें से हम तुम्हें पिलाते है। औऱ तुम्हारे लिए उनमें बहुत-से फ़ायदे है और उन्हें तुम खाते भी हो +","aur nishchay hi lesson lie cattle men bhi ek shiksha hai. unke bellies men jo kuchh hai drink se ham tumhen pilate hai. au lesson lie unmen bahut-se benefits hai aur unhen tum khate bhi ho +",8,0,positive,neutral,positive +"Ganesh Chaturthi and Janmashtmi are the other two festivals which are celebrated with lots of fun and frolic. +","इनके अलावा गणेश चतुर्थी और जन्माष्टमी कुछ अधिक धूम-धाम के संग मनाये जाते हैं। +","other alava ganesh chaturthi aur janmashtmi kuchh adhik dhoom-dham ke sng janmashtmi jate hain. +",7,2,positive,neutral,positive +"Bharavi was almost a contemporary of Kalidasa. +","भारवि करीब करीब कालिदास के समकालीन थे. +","bharavi karib karib kalidas ke contemporary the +",9,0,neutral,neutral,neutral +"Recognizing this mantra of statecraft, Karnataka pursues the deepening of bond between the government and the governed. +","शासनकला के इस मंत्र को पहचानते हुए, कर्नाटक द्वारा शासन और शासित के बीच संबंधों को घनिष्ठ बनाने का प्रयास किया जा रहा है। +","statecraft ke is mantra ko pahchante hue , karnataka dvara government aur shasit ke bich snbndhon ko ghanishth banane ka pryas kiya ja raha hai. +",8,2,neutral,neutral,neutral +"The birth of Urdu itself is due to this fact. +","उर्दू भी हिन्दी की इस शक्ति से ही पैदा हुई हैं। +","urdu bhi hindi ki is shakti se hi birth huee fact +",8,2,neutral,neutral,neutral +"Disability and Housing Policy housingpolicy_disability@detr.gov.uk +","अपंग और रिहाइश के बारे में नीति housingpolicy_disability@detr.gov.uk +","disability aur housing ke bare men policy housingpolicy_disability detrgovuk +",7,6,neutral,neutral,neutral +"Observe the fly land on the ceiling of your zoom after its flight. +","घरेलू मक्खी को उड़ान के बाद अपने कमने की छत पर बैठते हुए देखिए। +","ghareloo observe the fly ke bad apne kamne ki chhat par baithte hue dekhie. +",5,3,neutral,neutral,neutral +"Today, the Allahabad High Court has jurisdiction over the largest state in India, covering nearly one-sixth of our total population. +","आज, इलाहाबाद उच्च न्यायालय का भारत के सबसे बड़े राज्य पर न्यायाधिकार है जिसमें हमारी जनसंख्या का लगभग छठा हिस्सा शामिल था। +","aaj, ilahabad uchch state in india ke sabse largest state par nyayadhikar hai jismen hamari jansnkhya ka lagabhag chhatha hissa shamil tha. +",3,5,neutral,negative,neutral +"Electricity from these grids can be distributed to residential houses, community buildings and business centers through these equipments. +","इन संयंत्रों से ग्रिड स्तर की बिजली व्यक्तिगत आवासों सामुदायिक भवनों व व्यापारिक केन्द्रों को प्रदान की जा सकती है। +","in equipments se grids star ki electricity business residential community buildings v vyaparik centers ko prdan ki ja sakti hai. +",6,1,neutral,neutral,neutral +"and We shall make him the lowest of low +","फिर हमने उसे (बूढ़ा करके रफ्ता रफ्ता) पस्त से पस्त हालत की तरफ फेर दिया +","phir hamne use booa lowest of low past se past halat ki taraph pher diya +",5,4,negative,neutral,negative +"And what if there 's no GPS? +","और अगर GPS नहीं है? +","aur agar GPS nahin hai +",9,0,neutral,neutral,negative +"The proofs can be submitted after logging in online under the section “My Applications” or directly contacting a DI office. +","साक्ष्यों के अनुभाग के तहत ऑनलाइन ""मेरे अनुप्रयोग"" में प्रवेश करने या सीधे एक डि कार्यालय से संपर्क करने के बाद प्रस्तुत किया जा सकता है। +","proofs ke section ke tahat online mere anupryog men prvesh karne ya sidhe ek di office se snpark karne ke bad prastut kiya ja sakta hai. +",7,6,neutral,neutral,neutral +"The certificate has already been imported. +","प्रमाणपत्र पहले ही आयातित किया जा चुका है. +","certificate pahle hi aayatit kiya ja chuka hai +",8,1,neutral,neutral,neutral +"[it will be] lowering and exalting. +","कि किसी को पस्त करेगी किसी को बुलन्द +","ki kisi ko exalting karegi kisi ko buland +",6,2,neutral,neutral,negative +"but it does tend to leave you waking up crying at three o'clock in the morning. +","मगर हो सकता है कि आप सुबह के तीन बजे जागे हुए पाये जायें। +","magar ho sakta hai ki aap morning ke waking up crying hue paye jayen. +",6,4,negative,neutral,negative +"A guidance and a mercy for the well - doers: +","जो (अज़सरतापा) उन लोगों के लिए हिदायत व रहमत है +","jo guidance un logon ke lie hidayat v mercy hai +",8,1,neutral,neutral,positive +"Those are the verses of the clear Book. +","ये वाज़ेए व रौशन किताब की आयतें है +","ye vazee v clear book ki aayten hai +",7,3,neutral,neutral,positive +"The company has subsequently moved the Supreme Court . +","उसके बाद कंपनी ने सुप्रीम कोर्ट का दरवाजा खटखटाया . +","uske bad company ne supreme court ka darvaja khatakhtaya +",10,0,neutral,neutral,positive +"O dear Prophet (Mohammed – peace and blessings be upon him), wage holy war against the disbelievers and the hypocrites, and be strict with them; and their destination is hell; and what a wretched outcome! +","ऐ नबी! इनकार करनेवालों और कपटाचारियों से जिहाद करो और उनके साथ सख़्ती से पेश आओ। उनका ठिकाना जहन्नम है और वह अन्ततः पहुँचने की बहुत बुरी जगह है +","ae prophet! inkar karnevalon aur kaptachariyon se jihad karo aur unke sath sati se pesh aao. unka thikana jahannam hai aur vah antta pahunchne ki bahut buri jagah hai +",4,6,negative,negative,positive +"that you will be granted whatever you choose? +","कि जो चीज़ पसन्द करोगे तुम को वहाँ ज़रूर मिलेगी +","ki jo chiz pasand karoge tum ko vahan zaroor milegi +",8,2,neutral,neutral,positive +"Thereafter, We utterly destroyed the rest, +","(और हलाक हो गयी) फिर हमने उन लोगों को हलाक कर डाला +","aur destroyed the rest phir hamne un logon ko utterly kar dala +",4,1,negative,negative,negative +"But nay! I swear by the sunset redness, +","तो मुझे शाम की मुर्ख़ी की क़सम +","to nay sunset ki muri ki redness +",2,2,neutral,neutral,negative +"PARTLY flattered by Mussolini 's courtship and partly curious to see for himself this colourful personality and its impact on an ancient and lively culture, Tagore accepted an invitation from Italy and sailed for Naples on 15 May 1926. +","कुछ तो मुसोलिनी के सम्मान निवेदन से प्रसन्न होकर और कुछ उसके रंगारंग व्यक्तित्व और प्राचीन तथा जीवंत संस्कृति पर उसके प्रभाव को देखने की चाह से रवीन्द्रनाथ ने इटली का आमंत्रण स्वीकार किया. वे 15 मई 1926 को नेपल्स के लिए रवाना हुए. +","kuchh to musolini ke samman nivedan se prasann hokar aur kuchh uske colourful personality aur ancient and lively snskriti par uske prbhav ko dekhne ki chah se ravindrnath ne itli ka aamntran svikar kiya ve 15 mee 1926 ko nepals ke lie ravana hue +",8,1,positive,neutral,positive +"Sardar Bhagat Singh was the leader of the youth movement in Punjab carried on under the banner of Nawjawan Bharat Sabha with which Subhas Chandra associated himself closely at a later stage . +","सरदार भत सिंह पंजाब की ? नौजवान भारत सभा ? नाम से विख़्यात युवा आंदोलन के नेता थे , जिससे बाद में सुभाष चन्द्र का भी अंतरंग साहचर्य स्थापित हुआ . +","sardar bhat sinh pnjab ki naujvan bharat sabha nam se viyat yuva aandolan ke neta the , jisse bad men subhash chandr ka bhi antrng sahachary sthapit huaa +",4,7,neutral,neutral,neutral +"No such items having value of Rs. 10 lakh or more has been procured by PMO during the financial year 2015-16. +","प्रधान मंत्री कार्यालाय में वित्त वर्ष 2015-16 के दौरान ऐसा कोई भी सामान नही खरीदा गया जिसका मूल्य 10 लाख रुपए या उससे अधिक हो। +","pmo mntri karyalay men financial year 2015-16 ke rs such koee bhi items nahi kharida gaya jiska value 10 lakh rupe ya usse more ho. +",7,3,neutral,neutral,positive +"Likewise, the two lateral walls of the mandapa are relieved five times, corresponding to the hara elements, the central one on each side being a devakoshtha which is again found on either wing of the front eastern wall on either side of the shrine entrance. +","इसी प्रकार मंडप की दो पाश्चवर्ती दीवारों में पाँच उभार हार तत्वों के अनुरूप हैं जिसमें से हर दिशा में मध्यवर्ती एक देवकोष्ठ है जो पुनः मंदिर प्रवेश के दोनों और सामने की पूर्वी दीवार के दोनों खंडों पर प्राप्य है। +","isi prkar mandapa ki do lateral walls men panch ubhar hara elements ke anuroop hain jismen se har disha men central ek devakoshtha hai jo puna shrine entrance ke side aur front ki eastern wall ke side khndon par prapy hai. +",8,0,neutral,neutral,positive +"India is grateful for Tanzania’s support to India’s claim for permanent membership of the UN Security Council. +","भारत, संयुक्त राष्ट्र सुरक्षा परिषद की स्थायी सदस्यता की हमारी दावेदारी के प्रति तंजानिया के समर्थन के॒ लिए आभारी है। +","india , un rashtr security council ki permanent membership ki claim ke prti tanzania ke support ke lie grateful hai. +",7,3,positive,positive,positive +"Its programmes earned more than Rs 637 crore during the financial year 2000 - 2001 through commercial advertisements. +","दूरदर्शन ने वित्त वर्ष 2000-2001 के दौरान व्यापरिक विज्ञापनों से लगभग छह अरब 37 करोड़ रुपये अर्जित किए। +","dooradarshan ne financial year 2000-2001 ke dauran vyaprik vijnjapnon se lagabhag chhah arab 37 karor rupye programmes earned +",6,1,positive,neutral,neutral +"that astonished the media business. +","जिन्होनें इन मीडिया कंपनियों की हवा निकाल दी। +","business in media knpniyon ki hava nikal di. +",7,2,positive,neutral,positive +"At the back of Pratibimbal Lake there is a walking path +","प्रतिबिम्बित झील के पीछे पैदल पथ +","prtibimbit lake ke back walking path +",7,1,neutral,neutral,neutral +"Almost all Political Parties with their representatives contest the election for Counselor. +","पार्षदों के चुनाव हेतु लगभग सभी राजनीतिक पार्टियां अपने प्रत्याशि खड़े करतीं हैं। +","contest the election hetu lagabhag sabhi political parties apne pratyashi khare kartin hain. +",6,4,neutral,neutral,positive +"she 's standing, those Rockports slightly apart, but grounded. +","वो खड़ी हैं, उनके रौकपोर्ट जूते एक-दूसरे से थोड़े दूर, पर ज़मीन पर अच्छी तरह जमे हुए. +","vo standing hain, unke slightly joote ek-doosre se thore door, par zamin par achchhi tarah jame hue +",5,4,neutral,neutral,neutral +"you can have a pack. +","आप एक बस्ता ले सकते हैं. +","aap ek pack le sakte hain +",9,0,neutral,neutral,neutral +"Section - 231, Income-tax Act, 1961-2018 +","धारा - 231, आय-कर अधिनियम, 1961-2018 +","section - 231 , aay-kar act , 1961-2018 +",10,0,neutral,neutral,neutral +"The body of humans are prone to destruction but destruction never occurs to the soul. +","मनुष्य का शरीर विनाशशील है किंतु आत्मा का कभी नाश नहीं होता। +","body of humans humans are prone aatma ka kabhi nash nahin hota. +",6,2,negative,negative,negative +"Parallel transfers require multiple bit paths. +","समांतर अंतरण को बहुविध पथ की आवश्यकता होती है। +","parallel transfers ko bahuvidh path ki aavashyakta hoti hai. +",9,1,neutral,neutral,neutral +"that's been viewed four million times. +","और उसको भी चालीस लाख बार देखा गया है। +","aur usko bhi chalis million times viewed four million +",5,2,neutral,neutral,neutral +"Retrieving quota information for folder '% s' +","% s फ़ोल्डर के लिए के लिए कोटा प्राप्त कर रहा है +","s folder ke lie ke lie quota prapt kar raha hai +",9,2,neutral,neutral,neutral +"He never lost a chance to refer to them in an appreciative voice when delivering important speeches. +","महत्वपूर्ण भाषणों में वे इन दोनों को उद्घृत करना नहीं भूलते थे। +","important speeches men ve in donon ko udghrit karna nahin chance the. +",8,4,positive,neutral,positive +"Push it so as to cover the full length of the nozzle of the stove and the regulator. +","ट्यूब को अच्छी तरह लगाएं जिससे कि स्टोव और रेग्यू लेटर के नॉजल को पूरी तरह ढंका जा सके। +","tyoob ko achchhi tarah lagaen jisse ki stove aur regulator push ke nozzle ko full tarah dhnka ja sake. +",6,4,neutral,neutral,neutral +"Enable audible notifications when new messages arrive. +","नए संदेश आने पर श्रव्य सूचनाएं सक्षम करें. +","ne messages arrive par enable audible notifications karen +",6,1,neutral,neutral,neutral +"Later a public meeting was called which was addressed by Hakim Ajmal Khan and Pandit Malaviya. +","पीछे एक बड़ी सभी हुई जिसमें हकीम साहब और पंडित मालवीयजी के भाषण हुए। +","pichhe ek bari sabhi huee jismen hakim sahab aur pandit hakim ke public hue. +",5,6,neutral,neutral,neutral +"Paraumbilical is also known as paraomphalic. +","परानाभिक को नाभि के पास स्थित जाना जाता है +","paranabhik ko nabhi ke pas sthit jana jata hai +",5,8,neutral,neutral,neutral +"And when the Garden is brought near; - +","और जब जन्नत निकट कर दी जाएगी, +","aur jab garden nikat kar di jaegi , +",9,0,neutral,neutral,neutral +"Sallow refers to sickly yellowish complexion. +","पाण्डुवर्ण या पीतवर्ण पीलेपन को निर्दिष्ट करता है. +","panduvarn ya pitavarn complexion ko refers karta hai +",6,2,negative,neutral,neutral +"All these forms have their own specialised areas of operating and organising business activities. +","इन सभी रूपों का परिचालन एवं व्यापार कार्यकलाप आयोजित करने के विशिष्टा क्षेत्र हैं। +","in sabhi forms ka areas evn business activities aayojit karne ke vishishta kshetr own +",7,0,neutral,neutral,neutral +"A group of people who work together for a particular job / purpose. +","व्यक्तियों का ऐसा समूह जो सामूहिक रुप से किसी कार्य/प्रयोजन हेतु कार्यरत हो। +","group of people samooh jo samoohik rup se kisi karypryojan people who work +",6,0,neutral,neutral,neutral +"Aryans did not make any statues or temples for deities. +","आर्य देवताओं की कोई मूर्ति या मन्दिर नहीं बनाते थे। +","aryans deities ki koee statues ya temples nahin banate the. +",9,1,neutral,negative,neutral +"” I hold the power of life and death for every person I take with me . +","“ जो भी मेरे साथ चलता है उसकी जिंदगी और मौत मेरे हाथों में होती है । +","jo bhi mere sath chalta hai uski life and death mere hathon men hoti hai . +",9,0,neutral,negative,negative +"Crowding also brings about other factors of destruction such as disease and malnutrition. +","भीड़-भाड़ भी विनाश के अन्य कारणों को जन्म देती है, जैसे बीमारी और अपर्याप्त पोषण। +","crowding bhi destruction ke any karnon ko janm deti hai, jaise bimari aur aparyapt poshan. +",7,1,negative,negative,negative +"We 're going to win because we have dreams. +","हम जीतने वाले हैं क्योंकि हमारे पास एक सपना है। +","ham win vale hain kyonki hamare pas ek sapna hai. +",7,4,positive,neutral,positive +"SECTION 4 OF INDIAN PARTNERSHIP ACT, 1932 +","भारतीय भागीदारी अधिनियम, 1932 की धारा 4 +","indian partnership act , 1932 ki section 4 +",9,1,neutral,neutral,neutral +"Inspired Teachers’ by their own example can instill good moral values in their students. +","प्रेरित शिक्षक’ अपने उदाहरण से अपने विद्यार्थियों में अच्छे नैतिक मूल्यों का समावेश कर सकते हैं। +","inspired shikshak apne udaharan se apne vidyarthiyon instill good moral moolyon ka samavesh kar sakte hain. +",6,5,positive,neutral,positive +"Please accept, Excellency, my good wishes for your personal health and well-being, as well as for the progress and prosperity of the friendly people of the Republic of Equatorial Guinea. +","कृपया अपने व्यक्तिगत स्वास्थ्य तथा कुशलता और भूमध्यवर्ती गिनी गणराज्य की मैत्रीपूर्ण जनता की प्रगति और समृद्धि के लिए मेरी शुभकामनाएं स्वीकार करें। +","kripya apne vyaktigat health and well-being aur republic of equatorial ki maitripoorn janta ki pragti aur samriddhi ke lie meri shubhkamnaen svikar karen. +",7,4,positive,positive,positive +"Open the selected bookmark in a new tab +","चयनित पसंद को नए टैब में खोलें +","selected bookmark ko ne tab men open +",9,0,neutral,neutral,neutral +"It tells you what vitamin K deficiency bleeding is, discusses the benefits of vitamin K supplements and possible disadvantages of its use, and gives the best current advice. +","यह पत्रक बताता है कि विटामिन के (ख्) डिफ़िशेसी ब्लीडिंग (विटामिन के (ख्) की कभी कमी की वजह से खून बहने लगना) क्या है। भाष्; यह विटामिन के (ख्) सप्लिमेंट्स के लाभ और संभावित प्रतिकूल परिस्थितियों के बारे में भी जानकारी देता है। भाष्; +","yah patrak batata hai ki vitamin ke kh deficiency bleeding vitamin ke kh ki kabhi kami ki vajah se khoon bahne lagna kya current advice yah vitamin ke kh sapliments ke labh aur snbhavit prtikool paristhitiyon ke bare men bhi jankari deta current advice +",7,1,neutral,neutral,positive +"The square aditala outer wall carries on top over its prastara four karnakutas at the corners and four salas in between over the central bays of the wall The adhishthana below is extended forward and widened to form the base of the wider square mandapa in front . +","वर्गाकार आदितल की बाहरी दीवार पर उसके प्रस्तर के ऊपर कोनों पर चार कर्णकूट और दीवार के मध्यम खंडों के ऊपर बीच में चार शाला हैं.नीचे अधिष्ठान को आगे बढ़ाकर चौड़ा कर दिया गया है , ताकि सामने एक अधिक बड़े वर्गाकार मंडकप का आधार बन सके . +","square aditala ki outer wall par uske prastara ke oopar corners par char karnakutas aur wall ke central khndon ke oopar bich men char shala hainniche adhishthan ko front baakar wider kar diya gaya hai , taki samne ek adhik bare square mandapa ka base ban sake +",7,1,neutral,neutral,positive +"They were the products of the revolution. +","वे क्रान्ति की सन्तानें थीं. +","ve revolution ki products thin +",8,1,neutral,neutral,neutral +"Smoking, drinking, stress, chemicals of the environment, high fructose corn syrup, Twinkies..... +","धूम्रपान, मदिरा सेवन, चिंता, प्रदुषण, अधिक मीठा +","smoking , madira drinking , chinta , prdushan , high environment +",7,5,negative,neutral,negative +"The Budget is presented with a Budget Speech which is , in fact , one of the most important speeches in Parliament . +","बजट पेश करते हुए बजट भाषण दिया जाता है जो वास्तव में संसद में सबसे महत्वपूर्ण भाषणों में से एक होता है . +","bajat pesh karte hue budget speech diya jata hai jo vastav men snsad men sabse important speeches men se ek hota hai +",9,0,positive,neutral,positive +"Whoever brings virtue shall receive [a reward] better than it, but whoever brings vice—those who commit misdeeds shall not be requited except for what they used to do. +","जो कोई अच्छा आचारण लेकर आया उसे उससे उत्तम प्राप्त होगा, और जो बुरा आचरण लेकर आया तो बुराइयाँ करनेवालों को तो वस वही मिलेगा जो वे करते थे +","jo koee virtue shall receive aaya use usse uttam prapt hoga, aur jo bura aacharan lekar aaya to buraiyan karnevalon ko to vas vahi milega jo ve karte the +",3,5,neutral,negative,positive +"SECTION 4 OF INDIAN PARTNERSHIP ACT, 1932 +","भारतीय भागीदारी अधिनियम, 1932 की धारा 4 +","indian partnership act, 1932 ki section 4 +",10,0,neutral,neutral,neutral +"♫ from the edge of the observable universe ♫ +","♫ देखे जाने वाले ब्रह्मांड के किनारे से ♫ +","observable jane vale universe ke edge se +",6,2,neutral,neutral,neutral +"By no means! Surely it is a flaming fire +","(मगर) ये हरगिज़ न होगा +","magar ye surely n hoga +",9,1,negative,neutral,negative +"Parliamentary Forum on Water Conservation and Management; +","जल संरक्षण और प्रबंधन संबंधी संसदीय मंच; +","jal conservation and management snbndhi parliamentary forum +",8,2,neutral,neutral,neutral +"The fact, however, is that our region remains amongst the least integrated and developed, underlining the need for greater co-operation and intensification of our trade effort. +","तथापि वास्तविकता यह है कि हमारा क्षेत्र कम एकीकृत और विकसित बना हुआ है, जो हमारे व्यापार प्रयास के अधिकाधिक सहयोग और तेजी की आवश्यकता दर्शाता है। +","tathapi fact yah hai ki hamara region least integrated aur viksit greater huaa hai , jo hamare trade effort ke intensification sahyog aur teji ki need darshata hai. +",7,2,neutral,neutral,positive +"Specify the size and location of the main window +","आकार और स्थान का मुख्य विंडो +","size aur location ka main window +",8,3,neutral,neutral,neutral +"The game has no solution. Undo or start again. +","खेल के पास कोई हल नहीं है. वापस ले या फिर शुरू करें. +","game ke pas koee solution nahin hai vapas le ya phir shuroo karen +",8,2,negative,neutral,negative +"I 'll try my best and see if I can be of any help. +","तुम्हे दुख में देखकर मुझे भी दुख हो रहा है, इसलिए तुम लोगों को बचाने की मैं जी-जान से कोशिश करूंगा। +","tumhe dukh men help i bhi dukh ho raha hai , islie tum best ko bachane ki main ji-jan se koshish karoonga. +",7,2,positive,neutral,positive +"Save this, then create another: +","इस सहेजें, तो एक और बनाने के लिए: +","is sahejen , to ek aur banane ke lie : +",7,3,neutral,neutral,positive +"And Thamood—those who carved the rocks in the valley. +","और समूद के साथ (क्या किया) जो वादी (क़रा) में पत्थर तराश कर घर बनाते थे +","aur samood ke sath kya kiya jo valley ra carved the rocks kar ghar banate the +",8,0,neutral,neutral,neutral +"A meeting was convened to finalize the date of launch of the new channel. +","नए चैनल के विमोचन की तारीख तय करने के लिए सभा बुलाई गई। +","new channel ke vimochan ki date tay karne ke lie meeting bulaee gee. +",9,1,neutral,neutral,neutral +"There were the usual speeches, garlanding and so on. +","उसमें, सामान्यतः जैसा होता है, मालाएं पहनाई गई और भाषण आदि हुए। +","usmen , usual jaisa hota hai , malaen pahnaee gee aur speeches aadi hue. +",8,1,neutral,neutral,neutral +"in 1998 while in school haris sheild match his co-partner vinod kamble and sachin made 664 runs together +","1988 मे स्कूल के एक हॅरिस शील्ड मॅच के दौरान साथी बल्लेबाज विनोद कांबली के साथ सचिन ने ऐतिहासिक 664 रनो की अविजित साझेदारी की। +","1988 me skool ke ek haris sheild match ke dauran sathi ballebaj vinod kanbli ke sath sachin ne aetihasik 664 rano ki avijit sajhedari ki. +",7,2,neutral,negative,neutral +"It was a frightening bet . +","बड़ी भयावह बाजी थी यह । +","bari bhayavah bet thi yah . +",8,1,negative,neutral,negative +"Process ID assigned a unique number to every process running in the system. +","प्रोसेस आईडी, प्रणाली में चालू प्रत्येक प्रक्रिया के लिए एक विशिष्ट संख्या आवंटित करता है। +","id aaeedi , system men chaloo pratyek process ke lie ek unique number aavntit karta hai. +",6,1,neutral,neutral,positive +"In Terms of its geographic size India is the seventh largest country in The World. +","भारत भौगोलिक क्षेत्रफल के आधार पर विश्व का सातवाँ सबसे बड़ा राष्ट्र है। +","geographic size india ke aadhar par vishv ka satvan sabse seventh largest country +",7,1,neutral,positive,neutral +"Allows you to drag a Bugzilla URL from your browser directly into a Gnote note. The bug number is inserted as a link with a little bug icon next to it. +","आपको बगजिला URL खींचना चाहिए सीधे जीनोट में. बग संख्या को बतौर कड़ी जोड़ा जाता है इसे निकट कोई छोटा बग चिह्न के साथ. +","allows bugzilla URL khinchna note sidhe gnote men bug number ko bataur url jora jata hai ise nikat koee little bug chihn ke sath +",7,2,neutral,neutral,negative +"A similar provision exists for the Deputy Chairman Rajya Sabha in article 90. +","अनुच्छेद 90 में राज्य सभा के उपसभापति के लिए ऐसा ही प्रावधान हे. +","article 90 men rajya sabha ke exists ke lie similar hi provision he +",6,4,neutral,neutral,neutral +"Don 't ever see the face of that big whore! +","अब उस रांड का मुंह मत देखना। +","ab us rand ka face don dekhna. +",7,0,negative,neutral,negative +"Then which of the favours of your Lord will ye deny? - +","अतः तुम दोनों अपने रब की अनुकम्पाओं में से किस-किस को झुठलाओगे? +","ata tum donon apne rab ki anukampaon men se kis-kis ko deny +",3,5,neutral,neutral,positive +"Leaflets with more detailed informaiton on these sevices are available. +","इन सेवाओं के बारें में विस्तृत जानकारी के लिए पत्रिका उपलब्ध है। +","in sevices ke leaflets men detailed informaiton ke lie patrika available hai. +",9,1,neutral,neutral,neutral +"and we had thought that men and jinn would never speak against God a lie. +","और ये कि हमारा तो ख्याल था कि आदमी और जिन ख़ुदा की निस्बत झूठी बात नहीं बोल सकते +","aur ye ki hamara to men tha ki aadmi aur jin uda ki jinn jhoothi bat nahin bol sakte +",6,5,neutral,negative,negative +"And he said: You have only taken for yourselves idols besides Allah by way of friendship between you in this world 's life, then on the resurrection day some of you shall deny others, and some of you shall curse others, and your abode is the fire, and you shall not have any helpers. +","और इबराहीम ने (अपनी क़ौम से) कहा कि तुम लोगों ने ख़ुदा को छोड़कर बुतो को सिर्फ दुनिया की ज़िन्दगी में बाहम मोहब्त करने की वजह से (ख़ुदा) बना रखा है फिर क़यामत के दिन तुम में से एक का एक इनकार करेगा और एक दूसरे पर लानत करेगा और (आख़िर) तुम लोगों का ठिकाना जहन्नुम है और (उस वक्त तुम्हारा कोई भी मददगार न होगा) +","aur ibrahim ne apni aum se kaha ki tum logon ne uda ko chhorakar buto ko sirph duniya ki zindgi men baham mohabt karne ki vajah se uda bana rakha hai phir yamat ke din tum men se ek ka ek inkar karega aur ek doosre par lanat karega aur aair tum logon ka thikana jahannum hai aur us vakt tumhara koee bhi madadgar n hoga +",7,3,negative,neutral,negative +"No indeed! When it reaches up to the collar bones +","कुछ नहीं, जब प्राण कंठ को आ लगेंगे, +","kuchh nahin , jab pran knth ko aa collar , +",6,3,neutral,neutral,negative +"The Ministry has taken several steps to ensure the Scheme is implemented effectively +","मंत्रालय ने इस योजना को प्रभावी ढंग से लागू करने के लिए विभिन्न कदम उठाए हैं। +","ministry ne is scheme ko prbhavi dhng se lagoo karne ke lie several steps uthae hain. +",8,1,neutral,neutral,positive +"It has been called Chhath because of fast of Suryashashthi. +","मूलतः सूर्य षष्ठी व्रत होनेके कारण इसे छठ कहा गया है। +","moolta soory shashthi fast suryashashthi karan ise chhath kaha gaya hai. +",7,1,neutral,neutral,neutral +"Swelling of the rectum and the colon. +","मलाशय और बृहदान्त्र का सूजन. +","rectum aur brihdantr ka swelling +",9,0,neutral,neutral,neutral +"Change sound volume and sound events +","ध्वनि आवाज और ध्वनि घटना बदलें +","sound aavaj aur sound events change +",7,1,neutral,neutral,neutral +"On GRETIL thousands of Sanskrit text in various encoding. GRETIL +","पर सहस्रों संस्कृत ग्रन्थ अनेक स्रोतों से अनेक इनकोडिंग में +","par sahasron sanskrit text anek sroton se anek inkoding men +",5,7,neutral,neutral,neutral +"And [Yusuf (Joseph)] told his servants to put their money (with which they had bought the corn) into their bags, so that they might know it when they go back to their people, in order that they might come back. +","और हम ज़रुर इस काम को पूरा करेंगें और यूसुफ ने अपने मुलाज़िमों (नौकरों) को हुक्म दिया कि उनकी (जमा) पूंजी उनके बोरो में (चूपके से) रख दो ताकि जब ये लोग अपने एहलो (अयाल) के पास लौट कर जाएं तो अपनी पूंजी को पहचान ले. +","aur ham zarur is kam ko poora karengen aur yoosuph ne apne mulazimon naukron ko hukm diya ki unki jma poonji unke boro men choopke se rakh do taki jab ye log apne ehlo ayal ke pas laut kar jaen to apni put their money le +",3,5,neutral,neutral,neutral +"For instance, for a Muslim child the first and most important part of his education was to learn to read Arabic, in order that he might be able to read the Quran. +","उदाहरण के तौर पर, एक मुसलमान बच्चे की शिक्षा का प्रथम और सवांधिक महत्वपूर्ण अंग था अरबी पढने का ज्ञान ताकि वह कुरान पढ सकें. +","udaharan ke taur par, ek muslim child ki shiksha ka learn to read mahatvpoorn ang tha arbi padhne ka jnjan taki vah kuran padh saken +",7,3,positive,neutral,positive +"He congratulated NIFM for choosing this motto. +","उन्होंने एनआईएफएम को इस सिद्धांत को चुनने के लिए बधाई दी थी। +","unhonne enaaeeephem ko is siddhant ko choosing ke lie congratulated di thi. +",6,3,positive,positive,neutral +"In two phases banyan and in the other two phases hare (rabbit)is seen. +","इसके दो अंशो मे पिप्पल और दो अंशो मे महान शश(खरगोश) दिखायी देता है। +","iske do ansho me pippal aur do ansho me mahan shashkhargosh dikhayi deta hai. +",9,2,neutral,neutral,neutral +"Shape actor with alpha channel when picking +","चुनने के दौरान अल्फा चैनल के साथ कर्ता को आकार दें +","chunne ke dauran alpha channel ke sath actor ko shape den +",10,0,neutral,neutral,neutral +"This Weather Underground, by some unlawful intent, sent a terror group to the USA to with an aim to attract attention of the world towards their needs.Some excerpts of the relations of these terror groups were mentioned in some media. +","इस मौसम अंडरग्राउंड (Weather Underground) जो है जबकि कोई हताहत कारण विभिन्न दुनिया राजनीतिक मुद्दों के लिए मीडिया का ध्यान लाने के लिए आतंकवादी वारदातों का प्रदर्शन एक उग्रवादी संगठन अमेरिका गया था.इस मुद्दे से कई संक्षिप्त दिए गए समाचार सेवाओं द्वारा आतंकवादी वारदातों के संबंध में ही उल्लेख है. +","is weather underground Weather Underground jo hai jabki koee hatahat karan vibhinn duniya rajnitik muddon ke lie midiya ka dhyan lane ke lie terror group ka pradarshan ek ugrvadi sngathan amerika gaya thais mudde se kee snkshipt die ge samachar sevaon dvara terror group ke snbndh men hi ullekh hai +",6,2,negative,negative,negative +"% s is calling you. Do you want to answer? +","% s आपको बुला कर रहा है. क्या आप जवाब देना चाहते हैं? +","s aapko bula kar raha hai kya aap javab dena chahte hain +",8,0,negative,neutral,positive +"Exactly how LSD acts on the mind is not really known at present. +","एल. एस. डी. मस्तिष्क पर किस प्रकार असर डालती है, यह वर्तमान में ठीक-ठीक पता नहीं है। +","lsd es di mind par kis prkar asar dalti hai , yah present men thik-thik pata nahin hai. +",8,2,neutral,negative,neutral +"What they will gain will be the condemnation of God, the angels, and all people, +","उन लोगों का बदला यही है कि उनपर अल्लाह और फ़रिश्तों और सारे मनुष्यों की लानत है +","un people ka badla yahi hai ki unapar allah aur farishton aur sare condemnation of god hai +",6,6,negative,negative,positive +"Whether the image gallery pane should be resizable. +","क्या छवि गैलरी फलक बदलने योग्य होना चाहिए. +","kya image gallery pane badalne yogy hona chahie +",8,3,neutral,neutral,neutral +"and who will be told, ""This is what you had called a lie"". +","फिर कहा जाएगा, ""यह वही है जिस तुम झुठलाते थे"" +","phir kaha jaega, yah vahi hai jis tum lie the +",9,2,negative,negative,neutral +"So be patient with gracious patience. +","अतः धैर्य से काम लो, उत्तम धैर्य +","ata patient se kam lo , uttam patient +",7,6,positive,neutral,positive +"Failed to store mail in temp file% s:% s +","% s अस्थायी फ़ाइल में डाक संग्रहन में असफलः% s +","s failed to store store mail men asaphla s +",5,1,negative,neutral,negative +"Total Disbursements went upto `2, 629 Mn +","कुल संवितरण बढ़कर 2,629 मिलियन रुपए होना +","kul disbursements bakar 2,629 total mn hona +",5,5,neutral,neutral,neutral +"Siyaramsharan Gupta Brotherhood of communities and inter - religious interaction is the very basis of our Indian society. +","जातीय भाईचारा और साम्प्रदायिक मेल मिलाप भारतीय समाज के आधार है। +","religious brotherhood aur samprdayik gupta milap indian communities ke basis hai. +",7,1,neutral,positive,neutral +"In their case, it is included in the capitation fee upto a distance of 5 km. between the Clinic of IMP and IP 's residence. +","उनके मामले में, इसे बीमा चिकित्सा व्यवसायी के क्लीनिक और बीमाकृत व्यक्ति के आवास के बीच 5 कि. मी. की दूरी तक प्रति व्यक्ति शुल्क में शामिल किया जाता है। +","unke mamle men , ise bima chikitsa vyavsayi ke clinic aur ip case ke residence ke bich 5 ki km ki distance tak prti case fee men shamil kiya jata hai. +",7,1,neutral,neutral,neutral +"This treatment is only possible in proved cases of allergic asthma. +","यह उपचार केवल एलर्जी जनित दमा के निश्चित मामलों में ही कारगर है। +","yah treatment keval allergic janit asthma ke nishchit cases men hi karagar possible +",7,2,neutral,neutral,negative +"“Call Washington! Call Washington! ” “वॉशिंगटन +","से संपर्क करें! वॉशिंगटन से संपर्क करें! ” +","se call karen! vshingatan se call karen! +",7,0,neutral,neutral,neutral +"Your discipline, commitment and determination will help you navigate through the rough terrain. +","आपका अनुशासन, समर्पण और संकल्प मुश्किल हालात से गुजरने में आपकी मदद करेगा। +","aapka discipline , samarpan aur commitment mushkil halat se gujarne men aapki rough karega. +",7,3,positive,neutral,positive +"is another human being saying, “Do you understand this?” +","कोई दूसरा मनुष्य ये कहे, “क्या आपको समझ आया?” +","koee doosra manushy ye kahe, kya aapko samajh understand +",7,1,neutral,neutral,neutral +"Items of export which are other than the crude oil. +","कच्चे तेल के अलावा निर्यात किया जाने वाला अन्य माल/सामान। +","crude oil ke alava niryat kiya jane vala any malsaman. +",8,1,neutral,neutral,negative +"Then God sent a raven, which scratched the earth, so that He might show him how to hide the corpse of his brother. ""Alas!"" he cried, ""Am I not able even to be like this raven, so that I may hide the corpse of my brother?"" And he repented. +","(तब उसे फ़िक्र हुई कि लाश को क्या करे) तो ख़ुदा ने एक कौवे को भेजा कि वह ज़मीन को कुरेदने लगा ताकि उसे (क़ाबील) को दिखा दे कि उसे अपने भाई की लाश क्योंकर छुपानी चाहिए (ये देखकर) वह कहने लगा हाए अफ़सोस क्या मैं उस से भी आजिज़ हूं कि उस कौवे की बराबरी कर सकॅू कि (बला से यह भी होता) तो अपने भाई की लाश छुपा देता अलगरज़ वह (अपनी हरकत से) बहुत पछताया +","tab use fikr huee ki lash ko kya kare to uda ne ek kauve ko bheja ki vah zamin ko kuredne laga taki use abil ko dikha de ki use apne hide the corpse kyonkar chhupani chahie ye dekhakar vah kahne laga hae afsos kya main us se bhi aajiz hoon ki us kauve ki barabri kar sakoo ki bla se yah bhi hota to apne hide the corpse chhupa deta alagaraz vah apni harakat se bahut pachhtaya +",6,1,neutral,neutral,negative +"So today We will save you in body that you may be to those who succeed you a sign. And indeed, many among the people, of Our signs, are heedless +","तो हम आज तेरी रुह को तो नहीं (मगर) तेरे बदन को (तह नशीन होने से) ब +","to people today sign ruh ko to nahin magar tere body ko many signs hone se b +",6,2,neutral,negative,positive +"When the eye is bewildered, +","तो जब निगाह चौंधिया जाएगी, +","to jab eye chaundhiya jaegi, +",9,1,neutral,neutral,neutral +"The greatest crime in the world is not developing your potential. When you do your best, you are helping others. +","अपनी सामर्थ्य का पूर्ण विकास न करना दुनिया में सबसे बड़ा अपराध है. जब आप अपनी पूर्ण क्षमता के साथ कार्य निष्पादन करते हैं, तब आप दूसरों की सहायता करते हैं. +","apni potential ka poorn vikas n karna world men sabse greatest crime hai jab aap apni poorn kshamta ke sath kary best karte hain , tab aap doosron ki sahayta karte hain +",6,1,neutral,negative,positive +"""% s"" expects the second argument to be a time _ t +","""% s"" दूसरे तर्क की एक time _ t की आशा करता है +","s doosre argument ki ek time _ second ki aasha karta hai +",7,2,neutral,neutral,negative +"Uncus is any hook - shaped process or part +","अंकुश एक हुक आकारीय प्रक्रिया अथवा भाग है। +","ankush ek huk aakariy process or part hai. +",6,1,neutral,neutral,neutral +"Standard Chartered has brought in 140 million. +","स्टैंडर्ड चार्टर्ड 140 मिलियन लाया है। +","standard chartered 140 million brought hai. +",7,1,neutral,positive,neutral +"Goods sent on consignment basis remain in possession and custody of the consignee. +","परेषण-आधार पर भेजा गया माल परेषिती के सुरक्षा व धारिता में रहता है। +","pareshan-aadhar par bheja gaya goods consignee ke suraksha v dharita men remain basis +",5,4,neutral,neutral,neutral +"Nikzad Nojoumi 's illustrations have been used for a variety of children' s books. +","निकज़द नौजूमी के चित्र अनेकों बाल पुस्तकों में लिये गये है। +","nikazad naujoomi ke chitr anekon bal pustkon men liye gaye hai. +",9,1,neutral,neutral,neutral +"They get upset at the slightest inconvenience and the government officials have a difficult task to bring them round. +","थोड़ी भी असुविधा से वे विचलित हो उठते हैं और सरकारी कर्मचारियों के लिए उन्हें रास्ते पर लाना एक विकट समस्या बन जाती है. +","thori bhi asuvidha se ve upset ho uthte hain aur government officials ke lie unhen raste par task to bring samasya ban jati hai +",7,1,negative,negative,negative +"Therefore listen not to the Unbelievers, but strive against them with the utmost strenuousness, with the (Qur 'an). +","अतः इनकार करनेवालों की बात न मानता और इस (क़ुरआन) के द्वारा उनसे जिहाद करो, बड़ा जिहाद! (जी तोड़ कोशिश) +","ata inkar karnevalon ki bat n manta aur is qur ke dvara unse unbelievers karo , bara unbelievers ! ji tor koshish +",6,2,neutral,neutral,neutral +"Checking for installed package '% s' +","संस्थापित संकुल '% s' के लिए जाँच रहा है +","installed package s ke lie janch raha hai +",8,0,neutral,neutral,neutral +"""As to these folk, - the cult they are in is (but) a fragment of a ruin, and vain is the (worship) which they practise."" +","“निश्चय ही वह लोग लगे हुए है, बरबाद होकर रहेगा। और जो कुछ ये कर रहे है सर्वथा व्यर्थ है। "" +","worship hi vah folk fragment hue hai , ruin hokar rahega. aur jo kuchh ye kar rahe hai sarvtha vain hai. +",6,1,negative,negative,negative +"The person who completes the action of ""behold"" meaning to see someone or something in an impressive manner. +","किसी को प्रभावशाली तरीके से देखने की क्रिया +","kisi ko impressive manner se dekhne ki action +",8,0,positive,neutral,positive +"Allah destroys interest and gives increase for charities. And Allah does not like every sinning disbeliever. +","खुदा सूद को मिटाता है और ख़ैरात को बढ़ाता है और जितने नाशुक्रे गुनाहगार हैं खुदा उन्हें दोस्त नहीं रखता +","khuda sood ko mitata hai aur increase for charities hai aur jitne nashukre gunahgar hain khuda unhen dost nahin rakhta +",8,2,neutral,negative,positive +"This is surely in the earlier Books, +","निस्संदेह यही बात पहले की किताबों में भी है; +","nissndeh yahi bat pahle ki earlier men bhi hai +",5,4,neutral,neutral,positive +"The naqara, twenty pairs, more or less. 3. +","2 नक्कारा जिसकी कोई बीस जोड़ियां हैं। +","2 naqara jiski koee twenty pairs hain. +",8,3,neutral,neutral,neutral +"but to worship Me? Surely, that is a straight path. +","और यह कि मेरी बन्दगी करो? यही सीधा मार्ग है +","aur yah ki meri bandgi karo yahi straight path hai +",7,0,positive,neutral,positive +"Whether the label widget should fill all available horizontal space +","क्या लेबल विजेट सभी उपलब्ध क्षैतिज स्थान को भरना चहिए +","kya label widget sabhi upalabdh horizontal space ko bharna chahie +",9,1,neutral,neutral,neutral +"One article from devoting air dispersion modeling and transformation for technical quality and air dispersion modeling of air pollution. +","वायु प्रकीर्णन मॉडलिंग और रुपान्तरण फ़ार्मुले छह से एक लेख समर्पित करने के लिए तकनीकी गुणवत्ता और वायु प्रदूषण के वायु प्रकीर्णन मॉडलिंग +","air dispersion modeling aur rupantaran farmule chhah se ek lekh samarpit karne ke lie technical quality aur vayu prdooshan ke air dispersion modeling +",8,2,neutral,neutral,positive +"Together, we shall take India into the 21st century as a strong, self - confident, and prosperous nation. +","हम सब मिलकर सशक्त, आत्मविश्वास और समृद्ध राष्ट्र के रुप में भारत का 21वीं शताब्दि में पदार्पण कराएंगे। +","ham sab milakar sashakt, aatmvishvas aur prosperous nation ke rup men bharat ka 21vin shatabdi men padarpan karaenge. +",7,1,positive,negative,positive +"Before the boy could reply, a butterfly appeared and fluttered between him and the old man. +","इससे पहले कि लड़का कुछ जवाब देता एक तितली उन दोनों के बीच आकर अपने पर फड़फड़ाने लगी। +","isse pahle ki boy kuchh javab deta ek titli un donon ke bich aakar apne par pharapharane lagi. +",9,1,neutral,neutral,neutral +"“Taste your ordeal. This is what you used to challenge. ” +","(और उनसे कहा जाएगा) अपने अज़ाब का मज़ा चखो ये वही है जिसकी तुम जल्दी मचाया करते थे +","aur unse kaha jaega apne azab ka maza chakho ye vahi hai jiski tum jaldi machaya karte the +",8,0,neutral,neutral,positive +"And their eyes spoke of death. +","उनकी आंखें मौत का संदेश दे रही थीं। +","unki eyes spoke of death de rahi thin. +",6,1,negative,negative,negative +"Overcrowding and outstanding registrations kept increasing . +","भीड़ भाड़ तथा शेष पंजीकरण की संख़्या में वृद्धि होती गयी . +","overcrowding and outstanding shesh pnjikaran ki snya men vriddhi hoti gayi +",7,1,negative,neutral,positive +"At this stage, learned counsel for the parties have pointed out that the decreetal amount has since been deposited with the Registrar General of this court which is lying in an FDR. +","इस स्तर पर, पक्षकारों के विद्वत वकील ने ध्यान दिलाया कि डिक्रीत राशि तब से इस अदालत के महा-रजिस्ट्रार के पास जमा कर दी गई थी जो कि एक सावधि जमा रसीद में पड़ी हुई है. +","is star par, pakshkaron ke learned counsel ne dhyan dilaya ki decreetal amount tab se is adalat ke maha-rjistrar ke pas jama kar di gee thi jo ki ek savdhi jama rasid men pari huee hai +",7,3,neutral,neutral,negative +"Ganesh Chaturthi and Janmashtmi are the other two festivals which are celebrated with lots of fun and frolic. +","इनके अलावा गणेश चतुर्थी और जन्माष्टमी कुछ अधिक धूम-धाम के संग मनाये जाते हैं। +","inke alava ganesh chaturthi aur janmashtmi kuchh adhik dhoom-dham ke sng manaye jate hain. +",8,2,positive,neutral,positive +"O which of your Lord 's bounties will you and you deny? +","तो तुम दोनों अपने रब की अनुकम्पाओं में से किस-किस को झुठलाओगे? +","to o donon apne rab ki bounties men se kis-kis ko jhuthlaoge +",7,4,neutral,neutral,negative +"A measurement of change in prices. +","कीमतों में परिवर्तन को आंकने का एक पैमाना। +","prices men change ko measurement ka ek paimana. +",7,1,neutral,neutral,neutral +"Under the Act, the Controller - General of Patents, Designs and Trade Marks under Department of Industrial Policy and promotion, Ministry of Commerce and Industry is the Controller of Designs. +","अधिनियम के तहत, महानियंत्रक, पेटेंट, डिज़ाइन और ट्रेड मार्क वाणिज्यय एवं उद्योग मंत्रालय, औद्योगिक नीति एवं प्रवर्तन विभाग के अंतर्गत डिज़ाइनों का नियंत्रक है। +","act ke tahat , general , patents , dizain aur tred mark commerce evn trade ministry , industrial policy evn pravartan department ke antargat dizainon ka controller hai. +",7,0,neutral,neutral,neutral +"Process of exercising control over trading in contraband goods. +","विनिषिद्ध/वर्जित वस्तुओं के व्यापार पर नियन्त्रण के लिए स्थापित प्रक्रिया। +","vinishiddhvarjit goods ke trading par control ke lie process prakriya. +",7,2,neutral,neutral,neutral +"Every time you take a full and deep breath, or when you cachinnate well, you get extra energy instantly. +","हर बार जब भी आप पूरी और गहरी सांस लेते हैं, अथवा जोर से अट्टहास लगाते हैं, तो आपको तुरंत अतिरिक्त उर्जा प्राप्त होती है. +","har bar jab bhi aap full and deep sans lete hain, athva jor se atthas lagate hain, to aapko extra energy instantly prapt hoti hai +",7,1,positive,positive,positive +"You have to be in this range. +","आपको इसी रेंग मे रहना है +","aapko isi reng me range hai +",7,0,neutral,neutral,neutral +"And this is what we 're designing for. +","और यह है जिसके लिए हम डिजाइन कर रहे हैं. +","aur yah hai jiske lie ham designing kar rahe hain +",8,1,neutral,neutral,neutral +"Radhakrishnan returned to the Madras Presidency College in 1911. +","मद्रास प्रेसीडेंसी कॉलेज में राधाकृष्णन 1911 में लौटे। +","madras presidency college men radhakrishnan 1911 men laute. +",10,0,neutral,neutral,neutral +"The IT sector has positioned India globally as a major services hub, becoming a major exporter of IT, BPO and software services. +","सूचना और प्रौद्योगिकी क्षेत्र ने भारत को सूचना प्रौद्योगिकी,बीपीओ तथा सॉफ्टवेयर सेवाओं का प्रमुख निर्यातक बनाते हुए एक प्रमुख सेवा केंद्र के रूप में विश्व में स्थापित कर दिया है। +","soochna aur praudyogiki kshetr ne bharat ko soochna praudyogiki,bipio tatha sphtveyar sevaon ka prmukh niryatak banate hue ek major services hub ke roop men vishv men sthapit kar diya hai. +",6,5,positive,positive,neutral +"Total Disbursements went upto `2, 629 Mn +","कुल संवितरण बढ़कर 2,629 मिलियन रुपए होना +","kul disbursements bakar 2,629 total rupe hona +",5,7,neutral,neutral,neutral +"It tells us how the data within the file is organized. A programme using the data must be able to recognize and access the data within the file. +","यह बताता है कि फाइल के अन्दर आकडा कैसे संगठित है। आकडा इस्तेमाल करने वाले किसी प्रग्राम को फाइल के अन्दर आकडा पहचानने तथा ऐक्सेस करने में सक्षम होना चाहिए। +","yah batata hai ki file ke andar data kaise sngthit hai. data istemal karne vale kisi pragram ko file ke andar data pahchanne tatha access karne men able hona programme +",6,3,neutral,neutral,neutral +"Priyobroto had felt a wave of deep contentment. +","इससे पता नहीं कितना गहरा सुख उसे मिला था। +","isse pata nahin kitna deep sukh use mila tha. +",8,1,positive,negative,positive +"Unfortunately, some people who have been the victim of crime are more vulnerable, in the short term, to further crime. +","दुर्भाग्यवश , अपराध के शिकार हुए कुछ लोगों में फिर से उसके शिकार बनने की अधिक प्रवृत्ति होती है | +","vulnerable , victim of crime hue kuchh logon men phir se uske victim banne ki adhik prvritti hoti hai +",7,2,negative,negative,negative +"The birth of Urdu itself is due to this fact. +","उर्दू भी हिन्दी की इस शक्ति से ही पैदा हुई हैं। +","urdu bhi hindi ki is shakti se hi paida huee hain. +",10,0,neutral,neutral,neutral +"Therefore that process is not sufficient for our Yoga; something else is needed more embracingly positive. +","इसलिये वह विधि हमारे योग के लिये पर्याप्त नहीं; किसी और साधन की भी आवश्यकता है जो अधिक सर्वग्राही रूप में भावात्मक हो। +","isliye vah vidhi hamare yog ke liye paryapt nahin kisi aur sadhan ki bhi aavashyakta hai jo adhik sarvagrahi roop men bhavatmak ho. +",9,2,neutral,neutral,positive +"How to claim see page 15. +","यह कैसे अर्जी भर के मिल सकता है इस के लिए पान क्रमांक 15 देखें । +","yah kaise arji bhar ke mil sakta hai is ke lie pan krmank 15 dekhen . +",8,1,neutral,neutral,neutral +"Writing folder permissions, please wait... +","फ़ोल्डर अनुमतियाँ लिख रहा है, कृपया प्रतीक्षा करें... User +","folder anumtiyan likh raha hai , kripya wait karen User +",6,3,neutral,neutral,positive +"It was only later that I came to know about it. +","यह मुझे बाद में पता चला। +","yah mujhe bad men pata chala. +",10,0,neutral,negative,neutral +"Leaflets with more detailed informaiton on these sevices are available. +","इन सेवाओं के बारें में विस्तृत जानकारी के लिए पत्रिका उपलब्ध है। +","in sevaon ke baren men detailed informaiton ke lie patrika upalabdh hai. +",8,1,neutral,neutral,neutral +"you can have a pack. +","आप एक बस्ता ले सकते हैं. +","aap ek basta le sakte hain +",5,9,neutral,neutral,neutral +"Toggle display of the status bar. +","स्थिति पट्टी का प्रदर्शन टॉगल करें. +","status bar ka toggle display karen +",7,1,neutral,neutral,neutral +"Their needs come low on the political agenda in countries that lack money and resources. +","धन और साधनों की कमी से जूझते देशों की राजनीतिक प्राथमिकताओं में इन लोगों की जरूरतों का स्थान बहुत नीचे होता है। +","money aur sadhnon ki low se joojhte countries ki political prathmiktaon men in logon ki needs ka sthan bahut niche hota hai. +",7,0,negative,neutral,negative +"To account for some of the baffling features of the continents and oceans the great British geologist Arthur Holmes 1928, visualised some kind of convection currents in the mantle which caused movement of the crust. +","महाद्वीपीय तथा महासागरों की कुछ चौंका देने वाली विशिष्टताओं की व्याख्या करने के लिए विख्यात ब्रिटिश भूवैज्ञानिक आर्थर 141/भूमंडलीय विवर्तनिकी होम्स 1928 ने यह कल्पना की कि पृथ्वी के प्रावार में कुछ ऐसी संवहन धाराएं उत्पन्न हुईं जो भूपृष्ठ के संचलन का कारण बनीं। +","mahadvipiy tatha mahasagron ki kuchh chaunka dene vali vishishttaon ki vyakhya karne ke lie great british geologist aarthar 141bhoomndliy vivartniki homs 1928 ne yah kalpna ki ki prithvi ke pravar men kuchh aesi snvahan dharaen utpann hueen jo bhooprishth ke snchalan ka karan banin. +",8,1,neutral,neutral,positive +"Daar ji let our friendship grow but asked him to get permission of his parents for this match so that there was no problem later on. +","दार जी ने हमारी मित्रता को पल्लवित-पुष्पित होने दिया, परन्तु इनको कहा कि तुम भी अपने घरवालों से इस संबंध में सहमति ले लो, ताकि बाद में कोई कठिनाई न हो। +","dar ji ne hamari mitrta ko pallvit-pushpit hone diya, parantu inko kaha ki tum bhi apne gharvalon se is snbndh men sahamti le lo, taki bad men koee kathinaee n ho. +",8,4,neutral,neutral,positive +"Sector that includes entire wants and needs satisfying population of the country. +","वह क्षेत्र जिसमें देश की वह समस्त आबादी जो अपनी इच्छाओं और आवश्यकताओं की पूर्ति में संलग्न हो शामिल होती हो। +","vah sector jismen desh ki vah entire population jo apni ichchhaon aur aavashyaktaon ki poorti men snlagn ho shamil hoti ho. +",8,0,neutral,neutral,positive +"Sayings on Hindi by various great personalities +","हिन्दी के बारे में विभिन्न महापुरुषों के वचन +","hindi ke bare men great personalities ke vachan +",8,3,neutral,neutral,positive +"The so-called philosopher king who could rise above the stereotypes of his own party . +","एक तथाकथित दार्शनिक शासक , जो अपनी पार्टी के मानदंड़ों से ऊपर है . +","ek so-called philosopher king , jo apni party ke rise se oopar hai +",7,2,positive,neutral,positive +"Amount outstanding under priority sector lending by public sector banks during the period June 1969 to September 2000 increased from Rs 441 crore to Rs 1, 34, 107 crore and accounted for 43. 41 per cent of their net bank credit as on September 2000. +","इस बीच प्राथमिकता प्राप्त क्षेत्र को दी गई बकाया ऋण राशि जून 1969 से सितंबर 2000 के बीच 441 करोड से बढ कर 1,34,107 करोड़ रुपये हो गई, जो सरकारी क्षेत्र के बैंकों के शुद्घ बैंक ऋण का 43.41 प्रतिशत थी। +","is bich priority prapt sector ko di period outstanding lending amount june 1969 se september 2000 ke bich 441 karod se badh kar 1,34,107 crore net ho period , jo public sector ke banks ke shudgh bank lending ka 4341 prtishat thi. +",7,2,neutral,neutral,positive +"They accept that they do know each other directly at see. +","वे स्वीकार करते हैं कि वे एक दूसरे पर सीधे देख पता है। +","ve svikar karte hain ki ve ek doosre par sidhe see other hai. +",5,3,neutral,neutral,positive +"21.Lovhaghat also called Iron Fort,it is one of the greatest attractions of Bharathpur. +","21. लौहागढ़ आयरन फोर्ट के रूप में भी जाना जाता है लौहागढ़ भरतपुर के प्रमुख ऐतिहासिक आकर्षणों में से एक है। +","21 fort iron phort ke roop men bhi jana jata hai fort bharatpur ke prmukh aetihasik attractions men se ek hai. +",6,2,positive,neutral,positive +"In our own area, we are striving ceaselessly to clear old suspicions, to remove barriers to understanding and to create conditions for an enduring friendship between Bangladesh, Pakistan and ourselves. +","स्वयं अपने क्षेत्र में हम लगातार कोशिश कर रहे है कि पुराने संदेह दूर हो, आपसी समझ की राह खुले और बंगलादेश, पाकिस्तान तथा भारत के बीच स्थायी मित्रता के लिए परिस्थितियां अनुकूल बने। +","svyn apne kshetr men ham lagatar koshish kar rahe hai ki clear old suspicions ho, aapsi samajh ki rah khule aur bngladesh, pakistan tatha bharat ke bich sthayi mitrta ke lie paristhitiyan anukool bane. +",6,2,positive,neutral,positive +"It is indeed a matter of introspection as to how, despite availability of agricultural labour and sizeable arable land, notwithstanding some decline in Asia, many Asian and African countries have witnessed spiralling food prices. +","इस बात पर वास्तव में आत्ममंथन की जरूरत है कि कृषि श्रमिकों तथा विशाल आकार में खेती योग्य भूमि, एशिया में कुछ कमी आने के बावजूद, के बाद भी बहुत से एशियाई और अफ्रीकी देशों में खाद्यान्न की कीमतों में अत्यधिक वृद्धि कैसे हुई है। +","is matter par vastav men introspection ki jaroorat hai ki agricultural shrmikon tatha sizeable aakar men kheti yogy land , asia men kuchh decline aane ke bavjood , ke bad bhi bahut se asian aur african countries men khadyann ki prices men atydhik vriddhi kaise huee hai. +",8,1,neutral,negative,neutral +"These are the ones who found their fathers steeped in error, +","उन लोगों ने अपन बाप दादा को गुमराह पाया था +","un logon ne found their fathers ko gumrah paya tha +",6,0,negative,neutral,negative +"When he came to his Lord with a pure heart [attached to Allah Alone and none else, worshipping none but Allah Alone true Islamic Monotheism, pure from the filth of polytheism]. +","जब वह अपने परवरदिगार (कि इबादत) की तरफ (पहलू में) ऐसा दिल लिए हुए बढ़े जो (हर ऐब से पाक था +","jab vah apne lord ki ibadat ki pure heart men aesa dil lie hue bae jo har aeb se pak tha +",4,3,neutral,negative,positive +"The rate of interest charged on cash credit and overdraft is relatively much higher than the rate of interest on bank deposits +","नकदी ऋण और ओवरड्राफ्ट पर प्रभावित ब्याज दर बैंक जमा की दर से अपेक्षाकृत बहुत अधिक होती है। +","nakdi rin aur ovaradrapht par prbhavit byaj dar bank deposits ki dar se apekshakrit bahut adhik hoti interest +",6,1,neutral,negative,positive +"Loan amount up to Rs. 7. 50 lacs: 10 years. +","रु. 7.50 तक की ऋण के लिए: 10 वर्ष +","ru 750 tak ki rin ke lie: 10 years +",7,4,neutral,neutral,neutral +"Ans : Twenty-eight (28),11.71% +","उत्तरः अट्ठाईस (28), 11.71% +","uttra twenty-eight 28, 1171 +",7,0,neutral,neutral,neutral +"Sucharita said, Does respectful regard always show us the truth? +",">> सुचरिता ने कहा, श्रद्धा के द्वारा हमे क्या सत्य ही मिलता है? +","sucharita ne kaha , shraddha ke dvara respectful kya truth hi milta hai +",7,3,neutral,neutral,positive +"International usages are adopted in international communication by most of the countries of the world. +","विश्व के अधिकांश देशों द्वारा अन्तर्राष्ट्रीय प्रथा/प्रचलन को आपसी पत्राचार में अपना लिया गया है। +","most ke adhikansh countries dvara international prthaprachalan ko usages communication men apna liya gaya hai. +",7,0,neutral,neutral,neutral +"No such items having value of Rs. 10 lakh or more has been procured by PMO during the financial year 2015-16. +","प्रधान मंत्री कार्यालाय में वित्त वर्ष 2015-16 के दौरान ऐसा कोई भी सामान नही खरीदा गया जिसका मूल्य 10 लाख रुपए या उससे अधिक हो। +","prdhan mntri karyalay men financial year 2015-16 ke dauran aesa koee bhi saman nahi kharida gaya jiska mooly 10 lakh rupe ya usse adhik ho. +",9,1,neutral,neutral,positive +"It administers the Urban Land (Ceiling & Regulation) Act, 1976 as well as the Urban Land (Ceiling & Regulation) Repeal Act, 1999. +","यह शहरी भूमि (उच्चितम सीमा और विनियमन), अधिनियम, 1976 तथा शहरी भूमि (उच्च तम सीमा और विनियमन) निरसन अधिनियम, 1999. का प्रशासन करता है। +","yah urban land uchchitam ceiling aur regulation , act , 1976 tatha urban land uchch tam ceiling aur regulation repeal act , 1999 ka prshasan karta hai. +",8,2,neutral,neutral,positive +"No maintenance charges required to be paid. +","कोई अनुरक्षण शुल्क देने की जरुरत नहीं है। +","koee maintenance charges dene ki jarurat nahin hai. +",10,0,neutral,neutral,negative +"Failed to get next auto increment value +","अगली स्वतः वृद्धि मूल्य प्राप्ति विफल हुई +","next auto increment value prapti viphal huee +",9,2,negative,neutral,negative +"Query free / busy information for the attendees +","उपस्थित व्यक्ति के लिए रिक्त/व्यस्त सूचना प्रश्नगत करें +","upasthit vyakti ke lie busy information prashnagat karen +",8,1,neutral,neutral,positive +"Yes, if either of the parties want an adjournment of hearing, they should make an application in writing to the Exchange giving reasons for seeking adjournment to the Exchange in advance to enable the Exchange to forward such request to the arbitrator. +","हां, यदि दोनों में से कोई भी एक पक्ष सुनवाई का स्थगन चाहता है तो उन्हें स्थगन मांगने के कारणों को बताते हुए एक्सचेंज के पास अग्रिम रूप से एक आवेदन करना चाहिए जिससे कि एक्सचेंज ऐसे अनुरोध को आर्बिट्रेटर को भेज सके। +","han, yadi donon men se koee bhi ek paksh sunvaee ka sthagan chahta hai to unhen sthagan reasons for seeking ko batate hue ekschenj ke pas agrim roop se ek make an application jisse ki ekschenj aese anurodh ko aarbitretar ko bhej sake. +",6,1,neutral,neutral,positive +"Video output for Windows 7/Windows Vista with Platform update +","प्लेटफार्म अद्यतन के साथ Windows 7/Windows Vista के लिए वीडियो आउटपुट +","platform update ke sath Windows 7Windows Vista ke lie video output +",9,2,neutral,neutral,neutral +"Publication of Rashtriya Bank Srijana: +","राष्ट्रीय बैंक सृजना का प्रकाशन: +","rashtriya bank srijana ka publication : +",9,0,neutral,neutral,neutral +"but no information, no follow - up, +","मगर जानकारी गायब है, न कोई आगे की बात, +","magar information gayab hai , n koee follow ki bat , +",8,3,negative,neutral,negative +"In 2011 - 12 the share of construction sector in GDP was about 7. 8%. +","2011-12 में निर्माण सेक्टर का सकल घरेलू उत्पाद में लगभग 7.8 प्रतिशत हिस्सा था। +","2011-12 men construction sector ka gdp ghareloo utpad men lagabhag 78 prtishat share tha. +",7,2,neutral,neutral,positive +"You have to put your tremendous expertise and experience to good use. +","आपको अपने वृहद् कौशल तथा अनुभव का उपयुक्त उपयोग करना होगा। +","aapko apne vrihad expertise and experience ka upyukt upyog karna hoga. +",9,1,positive,positive,positive +"A muscle that retracts an organ. +","एक पेशी जो किसी अंग का आकुंचन करती है. +","ek muscle jo kisi organ ka aakunchan karti hai +",9,0,neutral,neutral,neutral +"Whether to use the ""- - driver generic - mmc - raw"" flag with cdrdao +","क्या ""-- driver generic-mmc-raw"" का प्रयोग cdrdao के साथ करना है +","kya -- driver generic-mmc-raw ka pryog cdrdao ke sath karna hai +",7,5,neutral,neutral,neutral +"Use as desktop background '% s' +","डेस्कटॉप पृष्ठ भूमि '% s' के रूप में उपयोग करें +","desktop background bhoomi s ke roop men use karen +",8,1,neutral,neutral,neutral +"A bone which forms the front part of the skull housing the brain. +","एक अस्थि जो कपाल का अग्र भाग निर्मित करती है जिसमें मस्तिष्क होता है +","ek bone jo skull ka front part nirmit karti hai housing brain hota hai +",8,1,neutral,neutral,neutral +"% s,% d%% done,% s remaining +","% s,% d%% संपन्न,% s शेषशेष +","s , d snpann , s sheshshesh +",4,7,neutral,neutral,neutral +"“I am a fox, ” the fox said.“ +","मैं लोमड़ी हूँ! ” लोमड़ी ने कहा। +","i fox hoon ! s fox ne kaha. +",5,5,neutral,neutral,neutral +"The government official who supervises the matters related to the duty imposed on immovable property. +","वह सरकारी अधिकारी जो अचल संपत्ति पर लगे शुल्क से जुड़े मामलों की देखरेख करता है। +","vah government official jo immovable property par lage shulk se matters related ki dekhrekh karta hai. +",7,1,neutral,neutral,negative +"The construction of this temple was taken place in 4 century. +","मूल रूप से इस मंदिर का निर्माण चौथी शताब्दी के आस-पास हुआ था। +","mool roop se is mndir ka nirman chauthi shatabdi ke aas-pas huaa century +",9,0,neutral,neutral,neutral +"Say: 'Obey Allah and obey the Messenger. If you turn away, upon him only rests what is laid upon him, and upon you rests what is laid on you. If you obey him, you shall be guided. It is only for the Messenger to deliver a clear message' +","(ऐ रसूल) तुम कह दो कि ख़ुदा की इताअत करो और रसूल की इताअत करो इस पर भी अगर तुम सरताबी करोगे तो बस रसूल पर इतना ही (तबलीग़) वाजिब है जिसके वह ज़िम्मेदार किए गए हैं और जिसके ज़िम्मेदार तुम बनाए गए हो तुम पर वाजिब है और अगर तुम उसकी इताअत करोगे तो हिदायत पाओगे और रसूल पर तो सिर्फ साफ तौर पर (एहकाम का) पहुँचाना फर्ज है +","ae messenger say kah do ki uda ki itaat karo aur messenger ki itaat karo is par bhi agar say sartabi karoge to bas messenger par itna hi tabli vajib hai jiske vah zimmedar kie ge hain aur jiske zimmedar say banae ge ho say par vajib hai aur agar say uski itaat karoge to hidayat paoge aur messenger par to sirph clear taur par ehkam ka pahunchana pharj hai +",7,0,neutral,neutral,positive +"Don't understand type ‘%s' +","प्रकार समझ नही पाया '%s' +","understand type nahi paya s +",5,0,negative,neutral,neutral +"Madhya Pradesh occupies perhaps the oldest part of the subcontinent – called the Gondwana - the home of the Gonds. +","मध्य प्रदेश संभवतया उप महाद्वीप का संभतया सबसे पुराना स्थान है जिसे गोंडवाना कहते हैं अर्थात गोंड समुदाय का घर। +","madhya pradesh snbhavatya subcontinent mahadvip ka snbhatya sabse oldest sthan hai jise gondwana kahte hain gonds samuday ka ghar. +",8,1,neutral,neutral,neutral +"The free reeds are very much more scarce in India and can be seen in the harmonium and the rare instrument , khung or rusem , of the tribal areas of eastern India . +","स्वतंत्र पत्तियों का चलन भारत में बहुत कम है और हारमोनियम तथा पूर्वी भारत के आदिवासी क्षेत्र के दुर्लभ वाद्य खुंग अथवा रूसेम में देखने को मिलती हैं . +","free reeds ka chalan india men bahut kam hai aur harmonium areas eastern india ke tribal kshetr ke scarce instrument khung athva roosem men dekhne ko milti hain +",5,1,neutral,positive,positive +"and seek forgiveness from Allah. Surely Allah is All - Forgiving, All - Compassionate. +","अल्लाह से क्षमा की प्रार्थना करो। निस्संदेह अल्लाह बहुत क्षमाशील, दयावान है +","forgiveness from allah ki prarthna karo. surely allah bahut forgiving, compassionate hai +",7,2,positive,neutral,positive +"The muscle present below the perineum in both females and males. +","पुरूषों तथा स्त्रियों दोनों में मूलाधार से नीचे विद्यमान पेशियां +","males present females donon men perineum se niche vidyman muscle +",7,3,neutral,neutral,neutral +"Said he, 'My Lord, respite me till the day they shall be raised.' +","उसने कहा, ""ऐ मेरे रब! फिर तू मुझे उस दिन तक के लिए मुहल्लत दे, जबकि लोग (जीवित करके) उठाए जाएँगे।"" +","lord kaha , ae mere rab ! phir too mujhe us day tak ke lie muhallat de , jabki log jivit karke uthae jaenge. +",7,0,positive,neutral,neutral +"Apply the given geometry to the main window +","मुख्य विंडो के लिए दिए गए ज्यामिति को लागू करें +","main window ke lie die ge geometry ko apply karen +",8,4,neutral,neutral,neutral +"The Central Government too, has made assessment of the extent of damage caused to environment by plastic waste in the country by constituting Committees and a Task Force which studied the issue and made recommendations. +","केंद्रीय सरकार ने भी देश भर में प्लास्टिक से पर्यावरण को हो रहे नुकसान को रोकने के लिए एक समिति और टास्क फोर्स बनाई, जिसने अध्येयन किया और सिफारशें तैयार कीं। +","central government ne bhi desh bhar men environment by plastic ko ho rahe caused to environment ke lie ek samiti aur task phors banaee, jisne adhyeyan kiya aur sipharshen taiyar kin. +",5,2,neutral,neutral,negative +"That they said (in boast), ""We killed Christ Jesus the son of Mary, the Messenger of Allah""; - but they killed him not, nor crucified him, but so it was made to appear to them, and those who differ therein are full of doubts, with no (certain) knowledge, but only conjecture to follow, for of a surety they killed him not: - +","और उनके इस कथन के कारण कि हमने मरयम के बेटे ईसा मसीह, अल्लाह के रसूल, को क़त्ल कर डाला-हालाँकि न तो इन्होंने उसे क़त्ल किया और न उसे सूली पर चढाया, बल्कि मामला उनके लिए संदिग्ध हो गया। और जो लोग इसमें विभेद कर रहे है, निश्चय ही वे इस मामले में सन्देह में थे। अटकल पर चलने के अतिरिक्त उनके पास कोई ज्ञान न था। निश्चय ही उन्होंने उसे (ईसा को) क़त्ल नहीं किया, +","aur unke is kathan ke karan ki hamne marayam ke bete christ jesus, messenger of allah, ko tl kar dala-halanki n to inhonne use tl kiya aur n use sooli par chadhaya, balki mamla unke lie sndigdh ho gaya. aur jo log ismen vibhed kar rahe hai, nishchay hi ve is full of doubts conjecture to follow par chalne ke atirikt unke pas koee jnjan n tha. nishchay hi unhonne use eesa ko tl nahin kiya, +",7,0,negative,negative,negative +"Two rooms inside the fort had been converted into chapels, one for Anglican worship, the other for Roman Catholic. +","किले के अंदर दो कमरों को गिरजाघरों में तब्दील कर दिया गया था, एक एंगलीकन धर्मोपासना के लिए और दूसरा रोमन कैथोलिक उपासना के लिए। +","kile ke andar do kamron ko anglican worship tabdil kar diya gaya tha, ek englikan dharmopasna ke lie aur doosra roman catholic upasna ke lie. +",4,2,neutral,neutral,positive +"Now, I don't know if she's toying with me, +","अब मुझे नहीं पता कि वो मेरे साथ खिलवाड़ कर रही हैं या नहीं, +","ab mujhe nahin pata ki vo mere sath toying kar rahi hain ya nahin, +",10,0,negative,neutral,neutral +"Go to hell, Dileep snapped and stomped off, banging the door behind him. +","भाड़ में जाओं, उल्लास चीखा और उठकर धड़ाम से दरवाजा बंद करके चला गया। +","snapped men jaon , ullas chikha aur uthakar dharam se door bnd karke chala gaya. +",7,1,negative,neutral,negative +"all powered on that coal. +","साब कोयले की ताकत पे खड़े हुए +","sab coal ki takat pe khare hue +",9,1,neutral,neutral,neutral +"It was only later that I came to know about it. +","यह मुझे बाद में पता चला। +","yah i bad men pata chala. +",8,2,neutral,negative,neutral +"After discussion with the relevant doctor or nurse in the ward you can complaint against them formally if you are unhappy or unsatisfied with the services or facilities. +","सम्बन्धित डाक्टर या वार्ढ में नर्सों से बातचीत करने के बाद, हस्पताल में आप या आप के सम्बन्धी को प्राप्त होने वाली सेवाओं के बारे में यदि आप प्रसन्न नहीं हैं, तो आप औचारिक शिकायत कर सकते हैं। +","relevant doctor ya doctor or nurse se batchit karne ke bad, hasptal men aap ya aap ke sambandhi ko prapt hone vali services or facilities men yadi aap prasann nahin hain, to aap aucharik shikayat kar sakte hain. +",7,3,negative,neutral,negative +"The Non - aligned have always been allies of peace. +","गुटनिरपेक्ष देश हमेशा से शांति के मित्र रहे है। +","non desh hamesha se peace ke allies rahe hai. +",6,4,neutral,neutral,positive +"'How well what he described as' my greatest fast 'helped to restore his normal cheer of spirits and good humour can be seen from the letter he dictated for Mira Behn three days later: I am dictating this immediately after the 3. 30 a. m. prayer while I am taking my meal such as a fasting man with prescribed food can take. +","जिसे उन्होंने मेरा सबसे बड़ा व्रत कहा था उसने उनके उल्लासपूर्ण और मनोविनोदी स्वभाव को किस सीमा तक वापस लौटाया, यह उस पत्र से स्पष्ट है जिसे उन्होंने तीन दिन बाद मीरा बहन के लिए लिखवाया थाः मै यह पत्र साढे. तीन बजे की प्रार्थना के फौरन बाद लिखवा रहा हूं जबकि मैं अपना वह भोजन कर रहा हूं जो एक व्रत रखनेवाले व्यक्ति के लिए निर्धारित है। +","jise greatest mera sabse good vrat kaha tha usne unke ullaspoorn aur manovinodi svbhav ko kis sima tak vapas lautaya , yah us letter se spasht hai jise greatest days din bad mira bahan ke lie likhvaya thaa i yah letter sadhe days baje ki prarthna ke phauran bad likhva raha hoon jabki main apna vah cheer kar raha hoon jo ek vrat rakhnevale man ke lie nirdharit hai. +",7,2,positive,neutral,positive +"Set this to the key command you would like to use to summon Do. +","इसमें वह की कमांड डालें जिसके होने पर जीनोम डु शुरू हो जाये। +","ismen vah ki command dalen jiske hone par key du shuroo ho jaye. +",8,1,neutral,neutral,positive +"His life and the lives of those nearest and dearest to him would be forfeit if he refused to do the bidding of his lord. +","अगर अपने राजा की बात को मानने से इन्कार करता है तो उसके तथा उसके निकट संबंधियों की जान जाती है। +","agar apne raja ki bat ko manne se inkar karta hai to uske tatha uske nikat snbndhiyon ki jan jati hai. +",8,4,negative,negative,positive +"Windows that should be use alpha blur by default +","विंडोज़ जिसे मूलभूत रूप से अल्फा धुंधला का प्रयोग करना चाहिए +","windows jise default roop se alpha blur ka pryog karna chahie +",9,1,neutral,neutral,neutral +"DNA- RNA- Protein All the aforementioned steps can be carried out in the test-tube if the building blocks , enzymes and ribosome 's are provided as well as the nucleic acid to give primary information sequence . +","डी.एन.एआर.एन.ए . प्रोटीन उपर्यु> सारी इऋयाएं एक परखनली में भी की जा सकती हैं बशर्ते इसके लिए आवशऋ-ऊण्श्छ्ष्-यक एंजाइम तथा राइबोसोम आदि पदार्थ उपलबऋ-ऊण्श्छ्ष्-ध हों.प्रारंभिक जानकारी का ऋम देने हेतु नऋ-ऊण्श्छ्ष्-यूकऋ-ऊण्श्छ्ष्-लिइक अमऋ-ऊण्श्छ्ष्-ल भी उपलबऋ-ऊण्श्छ्ष्-ध हो . +","dieneaarene protin uparyu sari iriyaen ek parakhanli men bhi ki ja sakti hain basharte iske lie aavshri-oonshchhsh-yak enzymes and ribosome aadi padarth upalbri-oonshchhsh-dh honprarnbhik jankari ka rim dene hetu nri-oonshchhsh-yookri-oonshchhsh-liik amri-oonshchhsh-l bhi upalbri-oonshchhsh-dh ho +",6,1,neutral,neutral,positive +"Our enemy is thoughtlessness. This is philosophy. ” +","अविचारशीलता हमारी शत्रु है। यह दर्शन है ” +","philosophy hamari enemy hai. yah darshan hai +",2,2,negative,neutral,negative +"Allah said: be thou gone; then who soever of them followeth thee, Hell is your meed, a meed ample. +","ख़ुदा ने फरमाया चल (दूर हो) उनमें से जो शख़्श तेरी पैरवी करेगा तो (याद रहे कि) तुम सबकी सज़ा जहन्नुम है और वह भी पूरी पूरी सज़ा है +","uda ne pharmaya chal door ho unmen se jo shash teri pairvi karega to yad rahe ki tum sabki allah jahannum hai aur vah bhi thou thou allah hai +",4,6,neutral,neutral,negative +"Then say to him a gentle saying; haply he may be admonished or he may fear. +","उससे नर्म बात करना, कदाचित वह ध्यान दे या डरे। "" +","usse gentle bat karna, haply vah dhyan de ya fear +",6,1,neutral,negative,negative +"One of the historical structures in Mumbai used to be Governor 's residence. +","मुंबई में ऐतिहासिक संरचना जहां राज्यपाल निवास करते थे। +","munbee men historical structures jahan rajypal nivas karte the. +",6,4,neutral,neutral,neutral +"GNOME Theme% s correctly installed Gnome +","थीम% s ठीक से अधिष्ठापित है +","theme s thik se gnome hai +",4,2,neutral,negative,neutral +"""Adjournment of the sitting of the House""- Termination of the sitting of the House which meets again at the time appointed for the next sitting. +","""सभाकी बैठक का स्थगन"" -- स्थगन होने पर सभा की बैठक समाप्त हो जाती है और सभा अगली बैठक के लिए नियत समय पर पुनः समवेत होती है। +","sbhaki baithak ka sthagan -- sthagan hone par sabha ki baithak samapt ho jati hai aur sabha agli baithak ke lie time appointed par puna samvet hoti hai. +",4,5,neutral,neutral,neutral +"Label comet names in the sky map? +","आकाश नक्शे पर धूमकेतुओं पर लेबल लगाएँ? +","label map par dhoomketuon par comet names +",7,0,neutral,neutral,neutral +"Deva Devi, the lovely maiden, was the pride of Brahma 's creation. +","सुंदर कन्या देवदेवी ब्रह्मा की सृष्टि की गौरवपूर्ण रचना थी। +","sundar kanya devdevi brahma ki srishti ki gauravpoorn rachna thi. +",5,8,positive,neutral,positive +"There is a lesson for you concerning cattle. We provide you with drink from their bellies and many other benefits. You can consume them as meat. +","और निश्चय ही तुम्हारे लिए चौपायों में भी एक शिक्षा है। उनके पेटों में जो कुछ है उसमें से हम तुम्हें पिलाते है। औऱ तुम्हारे लिए उनमें बहुत-से फ़ायदे है और उन्हें तुम खाते भी हो +","aur nishchay hi tumhare lie chaupayon men bhi ek shiksha hai. unke peton men jo kuchh hai usmen se ham tumhen pilate hai. au tumhare lie unmen bahut-se fayde hai aur unhen tum khate bhi ho +",8,4,positive,neutral,positive +"refer to teachings and examples of our prophet, +","हमारे पैगम्बर की शिक्षाओं और उदाहरणों को उद्धृत करते हैं, +","hamare refer to teachings aur udaharnon ko uddhrit karte hain, +",6,1,neutral,neutral,neutral +"Is Taj Mahal in realty the Temple of Lord Shiva? +","क्या ताजमहल वास्तव में शिव मंदिर है? +","lord taj vastav men realty temple hai +",5,2,neutral,neutral,neutral +"Speech by The President of India,Shri Pranab Mukherjee at The National Education Day celebrations and the inauguration of 40th Jawaharlal Nehru National Science, Mathematics and Environment Exhibition for children - 2013 +","राष्ट्रीय शिक्षा दिवस समारोह तथा 40वीं जवाहरलाल नेहरू राष्ट्रीय बाल विज्ञान, गणित और पर्यावरण प्रदर्शनी - 2013 के उद्घाटन के अवसर पर भारत के राष्ट्रपति का अभिभाषण +","national education speech celebrations tatha 40vin jawaharlal nehroo national children science , mathematics aur environment exhibition - 2013 ke inauguration ke avasar par india ke president ka abhibhashan +",9,2,neutral,positive,neutral +"I.—Recovery of tax in respect of non-residents +","झ–अनिवासियों की बाबत कर की वसूली +","jhanivasiyon ki respect kar ki recovery +",7,1,neutral,neutral,positive +"These are gross and obvious examples but there are infinite and subtle gradations in the misunderstandings which can arise between people and the ways in which the law can tangle with traditional ways. +","यह सकल और स्पष्ट उदाहरण है, परंतु लोगों के बीच असंख्य और सूक्ष्म कारणों से अनेक गलत फहमियां पैदा हो सकती हैं और कानून कई तरह से परंपरागत रास्तों में उलझ सकता है। +","yah gross aur obvious examples hai , parntu logon ke bich asnkhy aur subtle ways se anek galat infinite paida ho sakti hain aur law kee tarah se traditional raston men ulajh sakta hai. +",6,1,negative,negative,negative +"Your Lord knows better than you (people). He will have mercy on you or will punish you as He wills. We have not sent you to watch over them. Your Lord knows best about those in the heavens and the earth. +","तुम्हारा परवरदिगार तुम्हारे हाल से खूब वाक़िफ है अगर चाहेगा तुम पर रहम करेगा और अगर चाहेगा तुम पर अज़ाब करेगा और (ऐ रसूल) हमने तुमको कुछ उन लोगों का ज़िम्मेदार बनाकर नहीं भेजा है +","tumhara paravardigar tumhare hal se khoob vaiph hai agar chahega tum par raham karega aur agar chahega tum par azab karega aur ae rasool hamne tumko kuchh un logon ka zimmedar banakar nahin bheja hai +",9,1,neutral,positive,positive +"We saw earlier that thousands of devotees were visiting his house and that he used to spend the nights with them, singing devotional songs and speaking of Shiva. +","हम पहले देख चुके हैं कि हजारो भक़्त बसव के घर आते थे और वह भक़्तिपद गाता हुआ, शिव के बारे में बातें करता हुआ रातें उन्हीं के साथ बिताता था. +","ham pahle dekh chuke hain ki hajaro bhat basav ke ghar aate the aur vah bhatipad gata huaa, shiv ke bare men baten karta huaa raten unhin ke sath bitata tha +",7,6,neutral,neutral,positive +"Wherever you see the x, you just substitute it with the +","जहा भी आप जे देखे, आप इसे प्रतियस्थापित करे साथ +","jaha bhi aap je dekhe, aap ise substitute kare sath +",8,1,neutral,neutral,neutral +"As a part of improvement of the infrastructure, Air India is in the process of creation of bases for new aircraft as under +","अधोसंरचना के विकास के लिए एयर इंडिया नए विमानों के लिए नए अड्डो के निर्माण की प्रक्रिया में लगा हुआ है। इसके अंतर्गत +","process of creation ke lie air india ne vimanon ke lie ne addo ke nirman ki prakriya men laga huaa hai. iske antargat +",7,0,neutral,neutral,positive +"The damage caused by man - made pollution and its effects on the future of mankind are now being seriously studied by scientists in a number of countries. +","मानव निर्मित प्रदूषण से होने वाली क्षति और भविष्य में मानव जाति पर होने वाले उसके दुष्प्रभावों का अब अनेक देशों में गंभीरतापूर्वक वैज्ञानिकों के द्वारा अध्ययन किया जा रहा है। +","man nirmit pollution se hone vali damage aur future men man jati par hone vale uske effects ka ab number countries men gnbhirtapoorvak scientists ke dvara adhyayan kiya ja raha hai. +",7,0,negative,negative,negative +"Negative 3, the opposite is 3. +","नकारात्मक 3, विपरीत 3 है. +","negative 3, opposite 3 hai +",9,2,neutral,neutral,negative +"Such an institution is no good for building the nation. +","यह संस्था राष्ट्र के नव निर्माण की दृष्टि से उपयोगी नहीं है। +","yah institution nation ke nav nirman ki drishti se upyogi nahin good +",8,2,negative,negative,negative +"Do they seek to hasten Our chastisement? +","तो क्या ये लोग हमारे अज़ाब की जल्दी कर रहे हैं +","to kya ye log chastisement azab ki jaldi kar rahe hain +",8,0,neutral,neutral,neutral +"21 th edition (10 January - 10 December): WC3 focused on India. +","21वां अंक (10 जनवरी-10 दिसंबर): 3 भारत पर केंद्रित. +","21van th january janavri-10 december : 3 india par kendrit +",5,5,neutral,neutral,positive +"If you are already a widow or widower, you can get up to 100% of your late husband 's or wife' s Additional Pension. +","अगर आप पहले से ही विधवा है या फिर विधुर है तो आप को आप के गुजरे हुए पती या फिर पत्नी का अतिरिक्त निवृत्ती वेतन 100% तक मिल सकता है। +","agar aap pahle se hi widow hai ya phir vidhur hai to aap ko aap ke gujre hue pati ya phir patni ka additional pension pension 100 tak mil sakta husband +",6,5,neutral,neutral,neutral +"There were great rulers holding sway over vast areas as well as minor chieftains who paid tributes to them and ruled over limited areas. +","उन दिनो अगर एक और बडे बडे भूभागो पर राज करने वाले और उनके अधीन सांमती करने वाले ऐसे छोटे छोटे सांमत सरदार भी थे जो सीमित भूभागो का शासन किया करते थे। +","un dino agar ek aur great great bhoobhago par raj karne vale aur unke adhin sanmti karne vale aese minor minor chieftains sardar bhi the jo limited bhoobhago ka rulers kiya karte tributes +",7,2,neutral,neutral,positive +"A proper medical examination will ensure high standards of health and physical fitness of employees and will reduce the rates of accidents, absenteeism and labour turnover. +","अच्छीट तरह की चिकित्साथ जांच कर्मचारी के उच्च़ स्त. रीय स्वानस्य्कि और शारीरिक फिटनेस सुनिश्चित करेगी और दुर्घटना की दर कम करेगी अनुपस्थिति घटेगी और श्रम उत्पादन बढ़ेगा। +","achchhit tarah ki chikitsath medical employees ke uch st riy svanasyki aur physical fitness sunishchit karegi aur accidents ki high kam karegi absenteeism ghategi aur labour utpadan standards +",5,1,positive,positive,positive +"causing redness of the skin by increasing its blood flow +","उसके रक्त का प्रवाह बढ़ने के कारण त्वचा की लालिमा. +","uske blood ka flow skin by increasing tvcha ki redness +",6,1,negative,neutral,neutral +"He works towards impacting the environment in a positive manner through his own actions as well as by imparting knowledge amongst students to help them achieve their potential. +","वह अपने कार्यों के जरिए तथा विद्यार्थियों को अपनी क्षमता अर्जित करने में मदद करने के लिए ज्ञान प्रदान करके वातावरण को सकारात्मक तरीके से प्रभावित करने का कार्य करता है। +","vah apne karyon ke jarie tatha vidyarthiyon ko apni kshamta arjit karne men madad karne ke lie jnjan prdan karke vatavaran ko sakaratmak tarike se prbhavit karne ka kary karta hai. +",7,3,positive,neutral,positive +"A new computer center will come up for the poor children. +","गरीब बच्चों के लिए एक नया कंप्यूटर केन्द्र चालू होने वाला है। +","poor children ke lie ek new computer center chaloo hone vala hai. +",9,2,negative,neutral,negative +"Apply Rajiv Gandhi Advocate’s Training Scheme +","राजीव गाँधी अधिवक्ता प्रशिक्षण हेतु आवेदन करना +","rajiv gandhi advocate prshikshan hetu aavedan karna +",9,0,neutral,neutral,neutral +"The only cohesive factor was trade, which had been initiated in the Mauryan period, as a stable government ensured communication between various parts of the empire and encouraged active internal trade. +","इस काल का एकमात्र संगत उपादान व्यापार था जो मौर्य काल में प्रारंभ किया गया था क्योंकि स्थिर सरकार ने साम्राज्य के विभिन्न भागों में संचारण सुनिश्चित किया था तथा सक्रिय आंतरिक व्यापार को प्रोत्साहित किया था। +","is period ka only communication upadan factor tha jo mauryan period men prarnbh kiya gaya tha kyonki stable government ne empire ke various bhagon men sncharan sunishchit kiya tha tatha active internal factor ko protsahit kiya tha. +",8,0,neutral,positive,positive +"Finance Bill 2008 was published on 27th March. +","वित्त विधेयक 29 मार्च 2000 को प्रकाशित किया गया था। +","finance bill 29 march 2000 ko published kiya gaya tha. +",9,1,neutral,neutral,neutral +"And among them are some that say, “Our Lord! Give us good in the world and good in the Hereafter, and save us from the punishment of fire! ” +","और बाज़ बन्दे ऐसे हैं कि जो दुआ करते हैं कि ऐ मेरे पालने वाले मुझे दुनिया में नेअमत दे और आख़िरत में सवाब दे और दोज़ख़ की बाग से बचा +","aur baz bande aese hain ki jo duaa karte hain ki ae mere palne vale mujhe world men neamat lord aur aairat men savab lord aur doza ki bag se bacha +",4,5,positive,positive,positive +"that astonished the media business. +","जिन्होनें इन मीडिया कंपनियों की हवा निकाल दी। +","astonished in media knpniyon ki hava nikal di. +",7,0,positive,neutral,positive +"Show disk view 'Type' column on startup +","'प्रकार' स्तंभ को आरंभन पर डिस्क दृश्य दिखाएँ +","prkar column on startup par show disk view +",6,1,neutral,neutral,neutral +"Ladies and Gentlemen,I invite you to please join me in raising a toast: +","देवियो और सज्जनो, आइए हम सब मिलकरः +","ladies aur sajjno, toast ham sab milakra +",5,4,neutral,neutral,positive +"Oncotomy is a good option for treatment. +","अर्बुदछेदन उपचार का उत्तम विकल्प है +","arbudchhedan treatment ka good option hai +",8,1,positive,neutral,positive +"After Gandhiji initiated the Non - Cooperation Movement, Azad was trying to choose whether to follow the ways of Gandhiji or the violent ways of the revolution. +","गांधीजी के असहयोग आन्दोलन छिड़ने के बाद वे गांधीजी के तरीकों और हिंसक आन्दोलन में से अपने लिए रास्ता चुनने लगे। +","gandhiji ke non cooperation chhirne ke bad ve gandhiji ke ways aur violent cooperation men se apne lie rasta azad lage. +",6,1,neutral,neutral,negative +"The arab and israeli war kept the tourist away from visiting these countries. +","अरब इज़राइल युद्ध ने इन देशों का दौरा करने से पर्यटक को दूर रखा। +","arab israeli war ne in visiting these countries karne se paryatak ko door rakha. +",7,1,negative,neutral,negative +"Joint Forest Management Committees have played a key role in curbing the exploitation of forest resources that had often led to the marginalization and deprivation of tribal people. +","संयुक्त वन प्रबंधन समितियों ने अक्सर जनजातीय लोगों को पिछड़ा और अभावग्रस्त बनाने वाले वन संसाधनों के दोहन को समाप्त करने में प्रमुख भूमिका निभाई है। +","joint forest management committees ne aksar tribal resources ko pichhara aur abhavagrast banane vale forest snsadhnon ke exploitation ko samapt karne men key role nibhaee hai. +",8,1,neutral,negative,negative +"It cannot be said that the product was unknown in India. +","ऐसा नहीं कहा जा सकता है कि यह उत्पाद भारत में अनजान था +","aesa nahin kaha ja sakta hai ki yah product india men unknown tha +",9,1,neutral,neutral,neutral +"Have you not regarded those who style themselves as pure? Indeed, it is Allah who purifies whomever He wishes, and they will not be wronged [so much as] a single date - thread. +","(ऐ रसूल) क्या तुमने उन लोगों के हाल पर नज़र नहीं की जो आप बड़े मुक़द्दस बनते हैं (मगर उससे क्या होता है) बल्कि ख़ुदा जिसे चाहता है मुक़द्दस बनाता है और ज़ुल्म तो किसी पर धागे के बराबर हो ही गा नहीं +","ae rasool kya tumne un logon ke hal par nazar nahin ki jo aap bare pure bante hain magar usse kya hota hai balki uda jise chahta hai pure banata hai aur zulm to kisi par dhage ke barabar ho hi style nahin +",3,5,neutral,negative,positive +"Tansen fell ill and it was two months before he could return to the court. +","लगातार दो महिने तक वह बीमार रहा। +","lagatar do months tak vah fell ill +",6,1,negative,negative,negative +"If set to true, then Nautilus shows folders prior to showing files in the icon and list views. +","यदि यह सत्य पर नियत किया जाता है, चिह्न तथा सूची दृश्य में नॉटिलस फ़ोल्डर्स को फ़ाइलें के पहले दिखाएगा. +","yadi yah saty par niyat kiya jata hai, icon and list drishy shows folders prior ko failen ke pahle dikhaega +",8,0,neutral,neutral,positive +"Externally, the quadrangular open court is surrounded by a prakara with a cloister, or malika, locally called nalambalam or chuttambalam. +","बाह्य रूप से चतुर्भुज खुला प्रांगण एक प्राकार से घिरा होता है जिसमें एक विहार, या मालिका होती है जिसे स्थानीय रूप से नलांबलम या चुट्टांबलम कहा जाता हैं. +","bahy roop se chaturbhuj open court ek prakar se ghira hota hai jismen ek vihar, ya malika hoti hai jise sthaniy roop se locally called nalambalam kaha jata hain +",7,1,neutral,negative,neutral +"And you probably all have it, and if you haven't, you need to. +","और शायद आप सभी में भी वह होता है, और अगर वह आपके पास नहीं है तो आपको उसकी आवश्यकता है। +","aur shayad aap sabhi men bhi vah hota hai, aur agar vah aapke pas nahin hai to aapko uski aavashyakta hai. +",10,0,neutral,positive,neutral +"Equally evident are grounds for introspection. +","समान रूप से स्पष्ट आत्मनिरीक्षण के लिए आधार हैं। +","saman roop se evident introspection ke lie grounds hain. +",9,2,neutral,neutral,neutral +"citizens have self - organized political protests and +","नागरिकों ने खुद को राजनैतिक विरोधों में आयोजित किया और +","citizens ne khud ko political protests men aayojit kiya aur +",9,2,neutral,negative,negative +"The Government of India had no adequate plans and arrangements for the country 's defence. +","भारत सरकार के पास देश की रक्षा के लिए पर्याप्त योजनाएं व इंतजाम न थे. +","india government ke pas country ki defence ke lie adequate plans v intjam n the +",7,3,negative,negative,negative +"Or, listen to Basava: The root is the mouth of the tree, pour water there at the bottom, and, look, it sprouts green at the top. +","अथवा बासव की बात सुनें, जड़ पेड़ का मुख है, जड़ को सींचो और देखो वह चोटी पर हरा-भरा हो जाता है। +","athva basav ki bat sunen, jar per ka mukh hai, jar ko sincho aur dekho vah choti par hara-bhra ho jata hai. +",4,7,neutral,neutral,positive +"We established between them and the town that We had blessed, other towns nearby, and thus made it easier to travel. We told them, ""Travel there safely day and night"". +","और हम अहले सबा और (शाम) की उन बस्तियों के दरमियान जिनमें हमने बरकत अता की थी और चन्द बस्तियाँ (सरे राह) आबाद की थी जो बाहम नुमाया थीं और हमने उनमें आमद व रफ्त की राह मुक़र्रर की थी कि उनमें रातों को दिनों को (जब जी चाहे) बेखटके चलो फिरो +","aur ham ahle saba aur sham ki un bastiyon ke darmiyan jinmen hamne barakat ata ki thi aur chand bastiyan sre rah aabad ki thi jo baham numaya thin aur hamne unmen aamad v rapht ki rah murrar ki thi ki unmen raton ko dinon ko jab ji chahe bekhatke chalo phiro +",3,5,positive,neutral,positive +"and there's been a lot of talk about how life-changing this conference is +","और बहुत बातें हो रहीं हैं कि यह कांफ्रेंस कितनी असाधारण है, कायापलट कर देती है, +","aur bahut talk ho rahin hain ki yah conference lot asadharan hai, kayapalat kar deti hai, +",7,0,positive,neutral,neutral +"He further said, ” That the issue of the said periodical work of the said 28th day of April, 1883 was made up and published entirely on my responsibility, and to the best of my knowledge, information and belief, the said Ramcoomar Dey did not read anything contained therein in the editorial columns before the publication thereof. +","उन्होंने आगे कहा: ” कि उक्त पत्र का 28 अप्रैल 1883 का अंक पूरी तरह मेरी जिम्मेदारी पर तैयार हुआ और छपा. मेरी सर्वाधिक जानकारी, सूचना और विश्वास के अनुसार रामकुमार डे ने प्रकाशन से पहले इसके संपादकीय की सामग्री को नहीं पढ़ा +","work anything kaha : ki ukt patr ka 28 day 1883 ka ank poori tarah best responsibility par taiyar huaa aur chhapa best sarvadhik knowledge , soochna aur belief ke anusar ramcoomar periodical ne issue se pahle iske editorial ki samagri ko nahin paa +",5,1,neutral,negative,positive +"just for the Carnival and the Knife. +","बस कार्निवल और नैफ के लिए. +","bas karnival aur naiph ke lie +",4,7,neutral,neutral,neutral +"115AB. (1) Where the total income of an assessee, being an overseas financial organisation (hereinafter referred to as Offshore Fund) includes— +","115कख. (1) जहां किसी निर्धारिती की, जो विदेशी वित्तीय संगठन है (जिसे इसमें इसके पश्चात् ''अपतट निधि'' कहा गया है) कुल आय में,– +","115kakh 1 jahan kisi assessee ki, jo overseas financial sngathan hai jise isfund iske pashchat apatat nidhi kaha gaya hai kul aay fund, +",4,4,neutral,neutral,neutral +"Remove the validity tests on this cell +","इस कक्ष पर वैधता जांच हटाएं +","is cell par validity tests hataen +",8,3,negative,neutral,neutral +"The Krishna temple, Pattabhirama temple, Hazara Ramachandra and Chandrasekhara temple as also the Jain temples, are other examples. +","यहां स्थित कृष्ण मंदिर, पट्टाभिराम मंदिर, हजारा राम चंद्र और चंद्र शेखर मंदिर भी यहां के जैन मंदिर हैं जो अन्य उदाहरण हैं। +","yahan sthit krishna temple , pattabhiram temple , hazara ram chndr aur chndr shekhar temple bhi yahan ke jain temple hain jo other examples hain. +",8,4,neutral,neutral,neutral +"They say: 'You to whom the Remembrance is sent down, you are indeed mad. +","वे कहते है, ""ऐ व्यक्ति, जिसपर अनुस्मरण अवतरित हुआ, तुम निश्चय ही दीवाने हो! +","ve kahte hai , ae vyakti , jisapar remembrance avatrit huaa , tum nishchay hi mad ho ! +",8,0,negative,neutral,negative +"A time of acute difficulty in financial matters. +","वित्तीय मामलों में संकट की घडी। +","financial matters men time ki ghadi. +",5,2,negative,negative,negative +"When composite tender is invited for various types of works / activities. +","जब विविध प्रकार के कार्यों के लिए एक ही संयुक्त टेन्डर जारी किया जाता हो। +","jab various types ke works ke lie ek hi composite tender jari kiya jata ho. +",10,0,neutral,neutral,neutral +"You be there at 10 A. M. sharp. +","आप प्रात 10 बजे वहाँ हो तेज. +","aap prat 10 sharp vahan ho tej +",6,2,neutral,neutral,neutral +"If I haven 't covered something, feel free to write a comment on +","अगर मैं कुछ शामिल नहीं किया है, पर एक टिप्पणी लिखने के लिए मुक्त महसूस करता हूँ +","agar i kuchh covered nahin kiya hai , par ek comment likhne ke lie free something karta hoon +",5,1,neutral,neutral,positive +"To the poor refugees who were driven out of their homes and their possessions, as they sought the favor of God and His approval, and came to the aid of God and His Messenger. These are the sincere. +","(इस माल में) उन मुफलिस मुहाजिरों का हिस्सा भी है जो अपने घरों से और मालों से निकाले (और अलग किए) गए (और) ख़ुदा के फ़ज़ल व ख़ुशनूदी के तलबगार हैं और ख़ुदा की और उसके रसूल की मदद करते हैं यही लोग सच्चे ईमानदार हैं और (उनका भी हिस्सा है) +","is possessions men un poor approval ka god bhi hai jo apne homes se aur malon se nikale aur favor kie ge aur uda ke fazal v ushnoodi ke messenger hain aur uda ki aur uske rasool ki aid karte hain yahi log sachche sincere hain aur unka bhi god hai +",7,4,neutral,neutral,positive +"I 've sinned, betrayed innocent blood. +","मैं ने पाप किया है, निर्दोष खून को धोखा दिया है. +","i ne pap kiya hai , innocent blood ko dhokha diya hai +",8,2,negative,neutral,negative +"The tax paid by companies on their profits / capital gains. +","कंपनियों द्वारा उनके द्वारा कमाए गए लाभ/पूंजी लाभ पर दिया जाने वाला कर। +","companies dvara unke dvara kamae ge profitspoonji profits par diya jane vala tax +",6,5,neutral,neutral,positive +"Military action had been so scattered and sporadic that our people , often leaderless and without the means of getting news from remote places , perhaps did not even have a very clear picture of what was happening to their country . +","फौजी कार्रवाई इतनी छितरी हुई और छुटपुट थी कि हमारी जनता , जिनका न कोई नेता था और न ही जिसके पास दूर-दराज के इलाकों तक संचार के कोई साधन थे , शायद स्पष्ट रूप से यह जानती तक नहीं थी कि उनके देश को क़्या हो रहा +","military action itni chhitri huee aur chhutput thi ki hamari janta , jinka n koee neta tha aur n hi jiske pas door-draj ke ilakon tak snchar ke koee sadhan the , shayad spasht roop se yah janti tak nahin thi ki unke desh ko ya ho raha +",8,2,negative,negative,positive +"For example, in Silicon Valley, ethnic Indian technopreneurs form a significant constituency. +","उदाहरण के लिए सिलिकॉन घाटी में पारम्पफरिक भारतीय तकनीकी उद्यमी द्वारा एक महत्वलपूर्ण क्षेत्र रचित किया गया है। +","example ke lie silicon valley men parampaphrik indian takniki udymi dvara ek mahatvalpoorn kshetr significant kiya gaya ethnic +",6,3,neutral,neutral,positive +"It hissed again, fiercely. +","वह बड़े गुस्से से फिर फुसकारा। +","vah bare gusse se phir phuskara. +",9,1,negative,neutral,neutral +"Whoever brings virtue shall receive [a reward] better than it, but whoever brings vice—those who commit misdeeds shall not be requited except for what they used to do. +","जो कोई अच्छा आचारण लेकर आया उसे उससे उत्तम प्राप्त होगा, और जो बुरा आचरण लेकर आया तो बुराइयाँ करनेवालों को तो वस वही मिलेगा जो वे करते थे +","jo koee achchha virtue brings aaya use usse uttam prapt hoga , aur jo bura aacharan brings aaya to misdeeds karnevalon ko to vas vahi milega jo ve karte the +",7,2,neutral,negative,positive +"I have complete knowledge of debenture bond. +","डिबेंचर बांड के बारे में मुझे समस्त जानकारी है। +","debenture bond ke bare men i samast complete hai. +",5,0,neutral,neutral,neutral +"Let me draw a number line here, and I 'm just going to +","इसलिए मैं एक संख्या रेखा खिचने जा रहा हू, और +","islie i ek number line khichne ja raha hoo , aur +",8,2,neutral,neutral,positive +"about the kid who got this paper. +","उस बच्चे के विषय में जिसे यहपत्र मिला. +","us kid ke vishay paper jise yahapatr mila +",7,2,neutral,neutral,neutral +"The square root of 4, what times itself or what positive +","4 का वर्गमूल, कौन सी संख्या या कौन सी घनात्मक संख्या +","4 ka square , kaun si snkhya ya kaun si positive snkhya +",6,4,neutral,neutral,positive +"They were as good as the babies in Taiwan +","वो ताइवान वाले शिशुओं जीतने अच्छे थे +","vo taiwan vale babies jitne good the +",9,1,positive,positive,positive +"You can not store this. +","आप इसे संग्रहित नही कर सकते। +","aap ise store nahi kar sakte. +",9,2,negative,neutral,neutral +"God could not care whether you believe in him or not, if he is there. +","ईश्वर यदि है, तो वह यह चिंता नहीं करेगा कि तुम उसके अस्तित्व को स्वीकार करते हो या अस्वीकार। +","god yadi hai , to vah yah chinta nahin karega ki tum uske astitv ko svikar karte ho ya asvikar. +",9,0,neutral,neutral,negative +"So too the world picture is perceived only in the reflected light of the Self through the darkness of avidya ignorance. +","इसी तरह विश्व-चित्र भी केवल अविद्या अज्ञान के अंधकार के बीच आत्मा के प्रतिबंबित प्रकाश में ही दिखाई पड़ता है। +","isi tarah vishv-chitr bhi keval self ignorance ke world ke picture aatma ke reflected light men hi dikhaee parta hai. +",7,2,neutral,negative,negative +"The premature death a day earlier of her fourth son Bhupendranath at the age of thirteen, must have precipi - tated her own. +","इससे एक दिन पहले उनके चौथे पुत्र भूपेन्द्रनाथ की तेरह वर्ष की आयु में अकाल मृत्यु ने भी जल्द ही उनकी जीवनलीला समाप्त करने में मदद की होगी। +","earlier ek day pahle unke fourth son bhupendranath ki thirteen varsh ki age men premature death ne bhi jald hi unki jivanlila samapt karne men madad ki hogi. +",7,3,negative,negative,negative +"Thus, we see how critical the handloom sector is to the simultaneous realization of several seemingly disparate national objectives: employment generation, rural development, social justice and empowerment, women 's welfare, preservation and promotion of artisanry, and checking the migration of rural families to urban areas. +","अतः हम समझ सकते हैं कि रोजगार जुटाने, ग्रामीण विकास, सामाजिक न्याय, महिला कल्याण, कारीगरों और उनकी कला को संरक्षण तथा प्रोत्साहन और ग्रामीण लोगों का शहरों तथा नगरों की तरफ पलायन पर अंकुश लगाने जेसे विभिन्न राष्ट्रीय लक्ष्यों को प्राप्त करने के अभियान में हथकरघा क्षेत्र कितना महत्वपूर्ण है। +","ata families samajh sakte hain ki employment jutane , critical development , social justice , women welfare , karigron aur unki kala ko preservation tatha protsahan aur critical logon ka shahron tatha nagron ki taraph migration par ankush lagane jese several national realization ko prapt karne ke abhiyan men handloom sector kitna mahatvpoorn hai. +",7,2,neutral,neutral,positive +"Further, requests for changes or correction in PAN data or a request for a newPAN card (for an existing PAN) may also be made through the Internet. +","। इसके अतिरिक्तक पैन डाटा में परिवर्तन या सुधार के लिए अनुरोध या नए पैन कार्ड के लिए अनुरोध (मौजूदा पैन के लिए) भी इंटरनेट के माध्यपम से किया जा सकता है। +",". iske atiriktak changes data men parivartan ya correction ke lie requests ya ne changes card ke lie requests maujooda changes ke lie bhi internet ke madhyapam se kiya ja sakta hai. +",7,2,neutral,negative,neutral +"The more mature the clinician , the more expert will be his physical examination . +","डाक़्टर जितना अनुभवी होगा उसके द्वारा की गयी शारीरिक जांच भी उतनी ही सटीक होगी . +","clinician jitna anubhvi hoga uske dvara ki gayi physical examination bhi utni hi satik hogi +",9,1,neutral,neutral,positive +"In many civil service exams that take place in India, questions which test the general knowledge of a candidate are commonplace. +","भारत में कई सरकारी पदों के लिए होने वाली परीक्षाओं में सामान्य ज्ञान के प्रश्न अकसर पूछे जाते हैं। +","many men kee service candidate ke lie hone vali parikshaon men general knowledge ke civil akasar poochhe jate hain. +",5,4,neutral,neutral,neutral +"Co - operation should be encouraged inland, industry and in other departments of national activity so that free India may develop into a co - operative commonwealth. +","खेती, उद्योग तथा राष्ट्रीय प्रवृत्ति के अन्य विभागों में सहकारिता की भावना को प्रोत्साहन देना चाहिये, जिससे स्वधीन भारत सहकारी प्रजातंत्र का रूप ग्रहण कर सके। +","kheti, udyog tatha rashtriy prvritti ke any vibhagon men sahkarita ki bhavna ko protsahan dena chahiye, jisse svdhin bharat sahkari prjatntr ka roop grahan kar sake. +",4,6,neutral,neutral,positive +"but believe me, we all share one incredibly powerful thing - +","परंतु विश्वास मानिए, हम सभी में एक अविश्वसनीय शक्तिशाली बात है - +","parntu vishvas share , ham sabhi men ek avishvasniy powerful thing hai - +",5,1,positive,positive,positive +"You can build your relationship together through those sometimes difficult teenage years . +","आप उसकी किशोरावस्था के दौरान , जो कभी-कभी बड़ी कठिन अवस्था होती है , उससे अपना निजी अंतरंग सम्बंध स्थापित कर सकते हैं . +","aap uski teenage ke dauran , jo kabhi-kbhi bari difficult avastha hoti hai , usse apna sometimes antrng relationship sthapit kar sakte hain +",5,5,positive,neutral,negative +"very small change in time, we have a roughly constant +","बहुत छोटे परिवर्तन के समय में, हम एक मोटे तौर पर निरंतर है +","bahut chhote change in time men, ham ek roughly taur par nirntar hai +",9,2,neutral,neutral,neutral +"Amazed at the strength of her love and at the same time ardently desiring to get rid of herYama granted a series of boons to her, in course of which, in a psychological moment, Savitri made him grant that she would have a hundred sons by Satyavan! +","सावित्री के प्रेम की शक्ति से चकित होकर तथा इसी के साथ उससे पीछा छुड़ाने की उत्कट इच्छा से यम ने उसे कई वरदान दिए और उन्हीं वरदानों के क्रम में सावित्री ने एक मनोवैज्ञानिक क्षण में उनसे यह भी स्वीकार कराया कि उसे सत्यवान से सौ पुत्रों की प्राप्ति हो। +","savitri ke love ki strength se chakit hokar rid isi ke sath usse pichha chhurane ki utkat ichchha se series ne use kee vardan sons aur unhin boons ke course men savitri ne ek psychological moment men unse yah bhi svikar karaya ki use satyvan se sau putron ki prapti ho. +",6,2,positive,negative,positive +"Have you not seen that they wander distract in every valley, +","क्या तुमने देखा नहीं कि वे हर घाटी में बहके फिरते हैं, +","kya tumne dekha nahin ki ve distract valley men bahke phirte hain , +",7,3,neutral,neutral,negative +"A chart / material showing the information on amount disbursed. +","धनराशि के वितरण के बारे में तैयार की गई रूपरेखागत सूचना सामग्री +","amount ke vitaran ke bare men taiyar ki gee information on amount +",8,2,neutral,neutral,neutral +"The label used for menu items and buttons that activate this action. +","मेनू मद व बटन के लिये लेबल जो इस क्रिया को सक्रिय करता है. +","menu mad v items ke liye label jo is activate this action karta hai +",6,3,neutral,neutral,neutral +"But what could they do with a patient who would not listen to them? +","पर जो रोगी उनकी बात माने नहीं, उसके लिए वे क्या कर सकते थे? +","par jo patient unki bat mane nahin, uske lie ve kya kar sakte the +",9,1,negative,negative,neutral +"“I feel hesitant, and my tongue does not speak fast, therefore make Haroon also a Noble Messenger. ” +","और (उनके झुठलाने से) मेरा दम रुक जाए और मेरी ज़बान (अच्छी तरह) न चले तो हारुन के पास पैग़ाम भेज दे (कि मेरा साथ दे) +","aur unke jhuthlane se i hesitant ruk jae aur meri tongue achchhi tarah n chale to haroon ke pas paiam bhej de ki i sath de +",6,1,neutral,neutral,positive +"Preventer of good, aggressor, and doubter, +","जो (वाजिब हुकूक से) माल में बुख्ल करने वाला हद से बढ़ने वाला (दीन में) शक़ करने वाला था +","jo vajib hukook se mal men bukhl karne vala had se bane vala din men sha karne vala tha +",7,2,neutral,neutral,negative +"but to worship Me? Surely, that is a straight path. +","और यह कि मेरी बन्दगी करो? यही सीधा मार्ग है +","aur yah ki meri bandgi karo yahi straight path hai +",7,0,positive,neutral,positive +"Third, Islamism has historic and philosophic ties to Marxism-Leninism. Sayyid Qutb, the Egyptian Islamist thinker, accepted the Marxist notion of stages of history, only adding an Islamic postscript to them; he predicted that an eternal Islamic era would come after the collapse of capitalism and Communism. Ali Shariati , the key intellectual behind the Iranian revolution of 1978-79, translated Franz Fanon, Che Guevara, and Jean-Paul Sartre into Persian. More broadly, the Iranian analyst Azar Nafisi observes that Islamism “takes its language, goals, and aspirations as much from the crassest forms of Marxism as it does from religion. Its leaders are as influenced by Lenin, Sartre, Stalin, and Fanon as they are by the Prophet.” +","तीसरा, ऐतिहासिक रूप से इस्लामवाद का मार्क्सवाद और लेनिनवाद से ऐतिहासिक और दार्शनिक सम्बन्ध है। मिस्र के इस्लामवादी चिंतक सैयद कुत्ब ने इतिहास के मार्क्सवादी विकास के चरण की अवधारणा को स्वीकार किया था और इसे मात्र इस्लामी स्वरूप दिया और उन्होंने भविष्यवाणी की थी कि पूँजीवाद और कम्युनिज्म के पतन के उपरांत शाश्वत इस्लामी युग आयेगा। 1978-79 की ईरानी क्रांति के पीछे प्रमुख बौद्धिक व्यक्ति अली शरियाती ने चे गुवेरा, फ्रांज फानोन और जीन पाल सार्टर का फारसी में अनुवाद किया था। इससे भी विस्तृत रूप में ईरानी विश्लेषक अजार नफीसी ने पाया कि इस्लामवाद, “ अपनी भाषा, उद्देश्य और प्रेरणा मार्क्सवाद के नाजुक स्वरूप से लेता है जितना कि यह धर्म से। इसके नेता लेनिन, सार्टेर , स्टालिन और फैनोन से भी प्रभावित हैं जैसे पैगम्बर से”। +","tisra, aetihasik roop se islamvad ka marksvad aur leninvad se aetihasik aur darshnik sambandh hai. misr ke islamvadi chintak saiyad kutb ne itihas ke marksvadi vikas ke charan ki avdharna ko svikar kiya tha aur ise matr islami svroop diya aur unhonne bhavishyvani ki thi ki poonjivad aur kamyunijm ke patan ke uprant shashvat islami yug aayega. 1978-79 ki eerani kranti ke pichhe prmukh bauddhik vyakti ali shariyati ne che guvera, phranj phanon aur jin pal sartar ka pharsi men anuvad kiya tha. isse bhi vistrit roop men eerani vishleshak ajar naphisi ne paya ki islamvad, apni bhasha, uddeshy aur prerna marksvad ke najuk svroop se leta hai jitna ki yah dharm se. iske neta lenin, sarter , stalin aur phainon se bhi prbhavit hain jaise paigambar se. +",4,7,neutral,negative,positive +"Then we can make this same statement again. +","तो हम इस एक ही बयान पुनः बना सकते हैं। +","to ham is ek hi statement puna bana sakte hain. +",9,1,neutral,neutral,neutral +"So the Government of India had no reason to revise its educational and cultural policy, which had been one of the causes of the Revolt of 1857, but decided to enforce it more systematically and thoroughly with the help of a large section of Indians. +","इसलिए भारत सरकार के पास उनकी शैक्षणिक और सांस्कृतिक नीति को संशोधित करने का कोई कारण नहीं रहा, जो कि 1857 के विद्रोह का एक कारण था, बल्कि बड़ी संख्या में भारतीयों की सहायता से उसे और सुव्वस्थित ढ़ग से अच्छी तरह कार्यान्वित करने का निश्चय किया। +","islie bharat educational and cultural unki shaikshnik aur sanskritik niti ko snshodhit karne ka koee karan nahin raha, jo ki 1857 ke vidroh ka ek karan tha, balki bari snkhya men bhartiyon ki sahayta se use aur suvvasthit g se achchhi tarah karyanvit karne ka nishchay kiya. +",7,2,neutral,negative,positive +"Not only one but several contributions made by him will establish him as a great man for centuries to come. +","उन्होंने एक नहीं कई काम ऐसे किए जो सदियों तक उनकी महापुरुष के रुप में मान्यता कामय रखेंगे। +","great ek nahin kee man aese several jo centuries tak unki mahapurush ke contributions men manyta kamay rakhenge. +",7,3,positive,neutral,positive +"It 's better to die that way than live like this . ” +","इस तरह जीने से बेहतर है उस तरह मर जाना . ' ' +","is tarah live se behatar hai us tarah mar die +",7,3,negative,neutral,positive +"NH - 47 (Walayar – Kaliyikkavila) with a length of 416. 800 km; +","एनएच-47 (वालायार-कलिहीकविला) जिसकी लंबाई 416.800 किलो मीटर है; +","enech-47 valayar-klihikvila jiski length 416800 mitar hai +",7,2,neutral,neutral,positive +"In order to measure blood pressure the cuff is wound round the upper arm and the stethoscope is put below the cuff, over the artery, to hear the pulsation of blood passing through it. +","रक्तदाब या रक्तचाप मापने के लिए कफ को ऊपरी बाजू पर लपेट दिया जाता है और स्टैथोस्कोप उसके नीचे, धमनी के ऊपर रखा जाता है जिससे, उससे होकर गुजरने वाले रक्त के स्पंदन को सुना जा सके। +","raktdab ya measure blood ke lie kaph ko upper arm par lapet diya jata hai aur staithoskop uske niche, round the upper rakha jata hai jisse, usse hokar gujarne vale rakt ke spndan ko suna ja sake. +",6,3,neutral,neutral,negative +"Now, fixed price you can decide, well, how do I set that price. +","अब, तुम तय कर सकते हैं, अच्छी तरह से, कीमत तय कैसे मैं उस मूल्य निर्धारित करते हैं। +","ab, tum tay kar sakte hain, achchhi tarah se, price tay kaise main us mooly set that price +",7,1,neutral,neutral,positive +"Because over here, on this line, let 's take +","क्योंकि अधिक यहाँ, इस पंक्ति पर, चलो ले +","kyonki adhik yahan , is line par , chalo le +",9,2,neutral,neutral,neutral +"He was friendly and helpful, charming and soft - spoken. +","वह मैत्रीपूर्ण, सहायताशील, आकर्षक और मृदुभाषी था. +","vah friendly, helpful, aakarshak aur mridubhashi tha +",8,3,positive,neutral,positive +"The main purpose of my visit was to further strengthen our multi-faceted relations and consolidate our ties. +","मेरी यात्रा का मुख्य उद्देश्य हमारे बहु-आयामी रिश्तों को और मजबूत बनाना तथा अपने रिश्तों को प्रगाढ़ करना था। +","meri visit ka main purpose hamare bahu-aayami relations ko aur majboot banana tatha apne relations ko prga karna tha. +",9,2,positive,neutral,positive +"Use as desktop background '% s' +","डेस्कटॉप पृष्ठ भूमि '% s' के रूप में उपयोग करें +","desktop background bhoomi s ke roop men upyog karen +",9,0,neutral,neutral,neutral +"India exchanges mail with more than 217 countries by air and surface. +","भारत 217 से भी अधिक देशों के साथ स्थलीय और विमान सेवा द्वारा पत्रो का आदान-प्रदान करता है। +","india surface se bhi more countries ke sath sthliy aur air exchanges dvara patro ka aadan-prdan karta hai. +",7,2,neutral,neutral,neutral +"and the guilty shall behold the Fire and know that they are bound to fall into it, and will find no escape from it. +","और गुनेहगार लोग (देखकर समझ जाएँगें कि ये इसमें सोके जाएँगे और उससे गरीज़ (बचने की) की राह न पाएँगें +","aur guilty log fire samajh jaengen ki ye ismen soke escape aur usse gariz bachne ki ki rah n paengen +",4,0,negative,negative,negative +"When he came to his Lord with a pure heart [attached to Allah Alone and none else, worshipping none but Allah Alone true Islamic Monotheism, pure from the filth of polytheism]. +","जब वह अपने परवरदिगार (कि इबादत) की तरफ (पहलू में) ऐसा दिल लिए हुए बढ़े जो (हर ऐब से पाक था +","jab vah apne lord ki ibadat ki taraph pure men true heart lie hue bae jo har islamic se pak tha +",6,1,neutral,negative,positive +"After a few minutes' silence, Gora said, Please don 't involve me in all this. +",">> गोरा ने थोड़ी देर चुप रहकर कहा, देखिए, इन सब मामलों में मुझे न फँसाइये। +","gora ne few der silence rahakar kaha , dekhie , in sab mamlon men mujhe n phnsaiye. +",8,0,neutral,negative,positive +"The officer who is entitled with the responsibility of arbitration. +","वह अधिकारी जिसे मध्यस्थता करने की जिम्मेदारी सौंपी गयी है। +","vah officer jise arbitration karne ki responsibility saunpi gayi hai. +",8,3,neutral,neutral,positive +"She answered, This is their home. +","उत्तर था, यह उनका घर है। +","uttar tha , yah unka ghar home +",5,8,neutral,neutral,neutral +"Lamas practice dance, sing and play on pipes and horns. Many Lamas get religious training here. +","यहां लामा नृत्य, गीत गायन और नाटकों में पाइपों तथा सींगों का इस्तेमाल करते हैं। अनेक लामा यहां धार्मिक प्रशिक्षण प्राप्त करते हैं। +","yahan practice dance , sing gayan aur play men paipon tatha horns ka istemal karte pipes many practice yahan religious training prapt karte pipes +",7,0,neutral,neutral,positive +"You need two numbers or string to do an addition +","जोड़ने के लिए आपको दो संख्या या वाक्यांश चाहिए +","addition ke lie aapko do numbers or string chahie +",8,3,neutral,neutral,neutral +"Your discipline, commitment and determination will help you navigate through the rough terrain. +","आपका अनुशासन, समर्पण और संकल्प मुश्किल हालात से गुजरने में आपकी मदद करेगा। +","aapka anushasan, commitment and determination mushkil halat se gujarne men aapki madad karega. +",10,0,positive,neutral,positive +"In Hindi, the word “”America“” is used instead of “”United States of America“”. +","हिन्दी भाषा में संयुक्त राज्य या संयुक्त राज्य अमेरिका के स्थान पर केवल अमेरिका कहने का ही प्रचलन है जो इस देश के लघु नाम के रूप मे उपयोग में लाया जाता है। +","hindi bhasha men united rajy ya united rajy america ke sthan par keval america kahne ka hi prachalan hai jo is desh ke laghu nam ke roop me upyog men laya jata hai. +",7,3,neutral,neutral,neutral +"Some may go to out-of-the-way places to sniff which can add to the dangers . +","कुछ लोग संभवतः सुँघनी लेने के लिए कोई अनजानी जगह भी चुन सकते हैं , जिससे ख़तरे और बढ़ सकते हैं . +","kuchh log snbhavta sunghni lene ke lie koee places jagah bhi out-of-the-way sakte hain , jisse tre aur ba sakte hain +",5,6,negative,neutral,negative +"Chromium is no longer updating because your operating system is obsolete. +","क्रोमियम अब और अपडेट नहीं कर रहा है क्योंकि आपका ऑपरेटिंग सिस्टम अप्रचलित है. +","chromium ab aur apdet nahin kar raha hai kyonki aapka operating system obsolete hai +",8,1,negative,negative,negative +"It ' s what turns lead into gold , and makes the gold return to the earth . ” +","यही चक्र सीसे को सोना बना देता है , और सोने को धरती में वापिस समावेश करा देता है । ” +","yahi chakr lead ko gold return deta hai , aur sone ko earth men vapis samavesh kara deta hai . +",6,1,neutral,neutral,neutral +"Cannot send message: no recipients defined. +","संदेश नहीं भेज सकता हैः कोई प्राप्तकर्ता परिभाषित नहीं है. +","message nahin send sakta haia koee recipients defined nahin hai +",7,3,negative,neutral,positive +"Then, when He will, He bringeth him again to life. +","फिर जब चाहेगा उसे (जीवित करके) उठा खड़ा करेगा।- +","phir jab life use jivit karke utha khara karega.- +",8,0,positive,neutral,neutral +"Deposits of stock is governed by prescribed rules. +","माल जमा की प्रक्रिया निर्धारित नियमों के अनुसार होगी। +","stock deposits ki prakriya prescribed rules ke anusar hogi. +",10,0,neutral,neutral,neutral +"than about capturing a moment really. +","बजाय सच में एक पल को खींचने के | +","bajay sach men ek pal ko capturing ke +",8,2,neutral,neutral,neutral +"Mountain Biking (External website that opens in a new window) +","माउंटेन बाइकेन (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","maunten baiken bahri vebsait jo ek nee vindon website that opens +",4,4,neutral,neutral,neutral +"I have pointed out the mistakes in these translations. +","मैं अनुवादों की अशुद्धियां दिखा चुका हूं। +","main translations ki ashuddhiyan dikha chuka hoon. +",9,1,negative,neutral,negative +"Those of Abraham and Lut; +","और इबराहीम की क़ौम और लूत की क़ौम +","aur ibrahim ki aum aur loot ki aum +",6,3,neutral,neutral,neutral +"At this stage, learned counsel for the parties have pointed out that the decreetal amount has since been deposited with the Registrar General of this court which is lying in an FDR. +","इस स्तर पर, पक्षकारों के विद्वत वकील ने ध्यान दिलाया कि डिक्रीत राशि तब से इस अदालत के महा-रजिस्ट्रार के पास जमा कर दी गई थी जो कि एक सावधि जमा रसीद में पड़ी हुई है. +","is stage par , pakshkaron ke vidvat counsel ne dhyan dilaya ki decreetal amount tab se is adalat ke maha-rjistrar ke pas jama kar general gee thi jo ki ek fdr jama rasid men pari huee hai +",6,4,neutral,neutral,negative +"Paraumbilical is also known as paraomphalic. +","परानाभिक को नाभि के पास स्थित जाना जाता है +","paranabhik ko nabhi ke pas sthit jana jata hai +",5,9,neutral,neutral,neutral +"So at very low frequencies, or very long wavelengths, +","ऐसा बहुत कम आवृत्तियों, या बहुत लंबे तरंग दैर्ध्य पर, +","aesa bahut kam frequencies, ya bahut long tarng wavelengths par, +",5,5,neutral,neutral,negative +"After discussion with the relevant doctor or nurse in the ward you can complaint against them formally if you are unhappy or unsatisfied with the services or facilities. +","सम्बन्धित डाक्टर या वार्ढ में नर्सों से बातचीत करने के बाद, हस्पताल में आप या आप के सम्बन्धी को प्राप्त होने वाली सेवाओं के बारे में यदि आप प्रसन्न नहीं हैं, तो आप औचारिक शिकायत कर सकते हैं। +","relevant doctor ya discussion men narson se batchit karne ke bad , hasptal men aap ya aap ke sambandhi ko prapt hone vali services ke bare men yadi aap unhappy nahin hain , to aap ward shikayat kar sakte hain. +",6,2,negative,neutral,negative +"But in this plot he followed the SRI method of nursery preparation. +","लेकिन इस प्लॉट में उन्होंने नर्सरी तैयार करने के लिए श्री पद्धति का अनुसरण किया। +","lekin is plt men unhonne nursery preparation karne ke lie shri method of nursery kiya. +",5,6,neutral,neutral,neutral +"“ Could he see you ? ” +","“ क्या उसने तुम्हें देख लिया ? ” +","kya usne tumhen dekh liya +",7,3,neutral,neutral,neutral +"Vast majority suffered, died or lived disabled. +","अधिकांश लोग तो पीड़ित रहे, मर गए अथवा विकलीकृत disabled हो गए। +","vast majority to suffered rahe, mar ge athva viklikrit disabled ho ge. +",7,1,negative,neutral,negative +"We want you to rewrite this integral when +","हम आपको इस अभिन्न जब फिर से लिखना करने के लिए चाहता हूँ +","ham aapko is integral jab phir se rewrite karne ke lie chahta hoon +",8,1,neutral,neutral,positive +"Besides the above, there are other symbols of the village gods. +","इनके अतिरिक्त, ग्रामीण देवताओं के अन्य प्रतीक भी हैं। +","inke atirikt, village gods ke any prtik bhi hain. +",9,2,neutral,neutral,neutral +"141. [Omitted by the Taxation Laws (Amendment) Act, 1970, w.e.f. 1-4-1971.] +","141. [कराधान विधि (संशोधन) अधिनियम, 1970 द्वारा 1.4.1971 से लोप किया गया।] +","141 taxation laws amendment act , 1970 dvara 141971 se lop kiya gaya. +",7,1,neutral,neutral,neutral +"This is because we have excellent faculty members as well as brilliant students and do not lack in merit. +","ऐसा इसलिए है क्योंकि हमारे यहां श्रेष्ठ संकाय सदस्य और प्रतिभावान विद्यार्थी हैं और हमारे यहां गुणवत्ता की कमी नहीं है। +","aesa islie hai kyonki hamare yahan excellent faculty members aur prtibhavan vidyarthi hain aur hamare yahan gunavatta ki kami nahin hai. +",8,1,positive,neutral,positive +"and so that He might admit the believers, men and women, into Gardens through which rivers flow, to dwell therein forever, and so that He may remove their evils from them, that is, indeed, a supreme triumph in God 's eyes, +","ताकि मोमिन मर्द और मोमिना औरतों को (बेहिश्त) के बाग़ों में जा पहुँचाए जिनके नीचे नहरें जारी हैं और ये वहाँ हमेशा रहेंगे और उनके गुनाहों को उनसे दूर कर दे और ये ख़ुदा के नज़दीक बड़ी कामयाबी है +","taki momin men and women aurton ko behisht ke baon men ja pahunchae jinke niche nahren jari hain aur ye vahan hamesha rahenge aur unke gunahon ko unse door kar de aur ye uda ke nazdik bari kamyabi hai +",4,4,positive,neutral,positive +"Every time you take a full and deep breath, or when you cachinnate well, you get extra energy instantly. +","हर बार जब भी आप पूरी और गहरी सांस लेते हैं, अथवा जोर से अट्टहास लगाते हैं, तो आपको तुरंत अतिरिक्त उर्जा प्राप्त होती है. +","har time jab bhi aap full aur deep breath lete hain , athva jor se atthas energy hain , to aapko turnt extra urja prapt hoti hai +",7,1,positive,positive,positive +"Nearest - neighbor interpolation is an algorithm is used to map a screen pixel to the corresponding point on the texture map. +","निकटतम पड़ोसी-प्रक्षेप, एक कलन विधि (एल्गोरिथ्म) होती है, जो स्क्रीन के पिक्सेल को प्रतिचित्रण पर बिंदु के अनुरूप प्रतिचित्रतित करती है। +","nikatatam parosi-prakshep, ek kalan vidhi elgorithm hoti hai, jo skrin ke piksel ko prtichitran par bindu ke anuroop prtichitrtit karti hai. +",5,8,neutral,neutral,neutral +"There is a good deal of mixing - up of various Shaiva groups since Basava. +","बसव के पश्चात् विभिन्न शैव सम्प्रदायों में काफी मिश्रण हुआ है। +","basava ke pashchat various shaiva good men kaphi mishran huaa hai. +",7,2,neutral,positive,positive +"We should ensure that these pillars remain strong and unshakable. +","हमें यह सुनिश्चित करना चाहिए कि इन स्तंभों की सुदृढ़ता और अविचलता बनी रहे। +","hamen yah sunishchit karna chahie ki in pillars ki sudrita aur avichalta bani ensure +",8,1,positive,negative,positive +"Your password has been changed. +","आपका शब्दकूट बदला गया है. +","aapka password badla gaya hai +",10,0,neutral,neutral,neutral +"The pronouncements of the Supreme Court on the validity of certain measures for, protection of these sections of the society amply bear out the need and justification for these exceptions See Yusuf Abdul Aziz v. +","समाज के इन वर्गों के संरक्षण के लिए कतिपय कानूनों की विधिमान्यता के संबंध में उच्चतम न्यायालय की उद्घोषणाएं इन अपवादों की जरूरत तथा औचित्य को प्रचुर रूप में प्रमाणित करती हैं। +","society ke in sections ke protection ke lie certain measures ki validity ke snbndh men supreme court ki udghoshnaen in exceptions ki need tatha justification ko prchur v men prmanit karti hain. +",9,2,neutral,neutral,positive +"Thus the word ' costs ' included costs incidental to the suit . +","इस प्रकार खर्च शब्द में वाद के सभी अनुषंगी खर्च शामिल हैं . +","is prkar costs word men suit ke sabhi anushngi costs included hain +",8,2,neutral,neutral,neutral +"Notification area applet for managing your network devices and connections. +","आपके संजाल युक्तियां और कनेक्शन को प्रबंधित करने के लिए अधिसूचना क्षेत्र एप्लेट. +","aapke network devices aur connections ko prbndhit karne ke lie notification area applet +",9,0,neutral,neutral,neutral +"These reverses inflicted a huge psychological blow to the organisation, which hastily claimed the surrenders were stage - managed. +","इससे संग न को करारा ज्ह्टका लगा और उसने कहा कि आत्मसमर्पण विशुद्ध रूप से प्रायोजित कार्रवाई है. +","isse sng n ko reverses jhtka stage aur usne kaha ki surrenders vishuddh roop se prayojit karrvaee hai +",6,4,negative,negative,positive +"It has a green cover of 41 percent and rich mineral deposits of iron ore, aluminium, bauxite, tin and coal. +","इसके 41 प्रतिशत भूभाग जंगलों से आच्छादित हैं तथा यहां लौह अयस्क, एल्यूमिनियम, बॉक्साइट, टिन तथा कोयले जैसे खनिजों की बहुतायत है। +","iske 41 prtishat bhoobhag jnglon se aachchhadit hain tatha yahan iron ore, elyoominiyam, bksait, tin and coal jaise khanijon ki bahutayat hai. +",6,4,neutral,neutral,positive +"It could be that, other than fiscally, he is not a conservative but a moderate. It could be ego: the governor is just more brilliant than the rest of us. Or, as several analysts suggest, it could be cynical double pandering: Muslims get what they want most and Zionists what they want most, with each party ignoring what Christie does for the other. Interestingly, Senator Joseph Lieberman of Connecticut pursued this double track policy (soft on Islamism, staunch on Israel) and became the Democrats' VP candidate in 2000. < s > Whatever the reason, we conclude that Chris Christie lacks the moral compass, gravitas, and integrity needed to serve as vice - president of the United States. +","हो सकता है कि बजट घाटे के अतिरिक्त वे परम्परावादी न होकर नरमपंथी हों। या फिर अहंकार हो कि राज्यपाल से मेधावी कौन हो सकता है? या फिर जैसा कि अनेक विश्लेषक सुझाव देते हैं कि यह दोहरे तुष्टीकरण की नीति हो सकती हैः मुसलमानों को अधिक से अधिक वह मिले जो वह चाहते हैं और इजरायलवादियों को वह जो वह चाहते हैं और इस मामले में दोनों ही इस बात की परवाह नहीं करते कि क्रिस्टी दूसरों के लिये क्या कर रहे हैं? रोचक बात है कि कानेक्टीकट के सीनेटर जोसेफ लिबरमैन ने इस दोहरी नीति को अपनाया था (इस्लामवाद के प्रति नरम, इजरायल के प्रति रवैया) और 2000 मे डेमोक्रेट की ओर से उपराष्ट्रपति पद के प्रत्याशी बने थे। +","ho sakta hai ki bajat ghate ke united ve conservative n moderate narampnthi hon. ya phir ahnkar ho ki governor se brilliant kaun ho sakta hai ya phir jaisa ki several analysts sujhav dete hain ki yah double tushtikaran ki policy ho states haia muslims ko reason se reason vah mile jo vah other hain aur ijrayalvadiyon ko vah jo vah other hain aur is mamle men donon hi is bat ki parvah nahin karte ki christie party ke liye kya kar rahe hain rochak bat hai ki cynical ke senator joseph lieberman ne is dohri policy ko apnaya tha islamvad ke moral soft , ijrayal ke moral ravaiya aur 2000 me demokret ki or se vice compass ke pratyashi bane the. +",7,1,neutral,negative,positive +"and we have the derivative sin of x because we learned the +","और हम एक्स के व्युत्पन्न पाप है, क्योंकि हम सीखा +","aur ham x ke derivative sin hai , kyonki ham sikha +",3,3,negative,neutral,negative +"And most of them believe not in Allah without associating (other as partners) with Him! +","इनमें अधिकतर लोग अल्लाह को मानते भी है तो इस तरह कि वे साझी भी ठहराते है +","most other log allah ko mante bhi hai to is tarah ki ve sajhi bhi thahrate hai +",8,0,negative,neutral,neutral +"National Population Policy (File referring to external site opens in a new window) +","राष्ट्रीय जनसंख्या नीति (पीडीएफ फाइल जो नई विंडों में खुलती है) +","national population policy file referring jo nee external site opens hai +",5,0,neutral,neutral,neutral +"UPS is below the critical level and this computer is about to shutdown. +","UPS गंभीरता स्तर से नीचे है और यह कंप्यूटर बंद होने के कगार पर है. +","UPS ups level se niche hai aur yah computer bnd hone ke kagar par hai +",7,3,negative,neutral,negative +"And the overturned towns He hurled down +","उलट जानेवाली बस्ती को भी फेंक दिया। +","overturned janevali basti ko bhi phenk diya. +",8,2,negative,neutral,neutral +"If set to true, then Nautilus shows folders prior to showing files in the icon and list views. +","यदि यह सत्य पर नियत किया जाता है, चिह्न तथा सूची दृश्य में नॉटिलस फ़ोल्डर्स को फ़ाइलें के पहले दिखाएगा. +","yadi yah true par niyat kiya jata hai , icon tatha list drishy men folders foldars ko files ke pahle dikhaega +",7,3,neutral,neutral,positive +"C _ heck for new messages in all folders +","सभी फ़ोल्डर में नये संदेश के लिये जांचें (_ h) +","sabhi folders men new messages ke liye janchen _ c +",8,2,negative,neutral,neutral +"has the minimum number of wiggles. +","उसमे सबसे कम हलचल होता है. +","usme sabse minimum wiggles hota hai +",8,2,neutral,neutral,positive +"The decree that the court gave was an appealable decree. +","अदालत ने जो डेक्री दी वह एक अपीलनीय डेक्री थी। +","court ne jo decree di vah ek court gave thi. +",6,1,neutral,negative,neutral +"Book where objections are recorded. +","पुस्तक जिसमें एतराज अंकित किए जाते हो। +","pustak jismen etraj ankit kie jate ho. +",8,1,neutral,neutral,neutral +"Three public meetings were held in Bombay City to observe this day. +","उस अवसर पर बंबई में तीन सभाएं की गयीं। +","us avasar par bombay men tin meetings ki gayin. +",9,1,neutral,neutral,neutral +"UNICEF with PressWise Training Page 31 The Media and the UN Convention on the Rights of the Child Appendix 1 A journalist 's summary of the United Nations Convention on the Rights of the Child The preamble recalls the basic principles of the United Nations - in particular the spirit of peace, dignity, tolerance, freedom, equality and solidarity - and specific provisions of relevant human rights treaties and proclamations. +","युनिसेफ और प्रेसवाइज ट्रेनिंग 31 मीडिया और संयुक्त राष्ट्र बाल समझौता परिशिष्ट 1 संयुक्त राष्ट्र बाल अधिकार समझौते का पत्रकारों के लिए सारांश प्रस्तवाना में संयुक्त राष्ट्र के बुनियादी सिद्धांतों-विशेषकर शांति, गरिमा, सहनशीलता, स्वतंत्रता, समानता और एकजुटता की भावना-और मानव अधिकार की उपयुक्त संधियों ओर घोषणाओं के विशिष्ट प्रावधानों की याद दिलाई गई है। +","yuniseph aur presvaij trening 31 midiya aur snyukt rashtr bal samjhauta parishisht 1 snyukt rashtr bal adhikar samjhaute ka patrkaron ke lie saransh prastvana men snyukt rashtr ke buniyadi siddhanton-visheshakar shanti, garima, sahanshilta, svtntrta, samanta aur ekjutta ki bhavna-aur manav adhikar ki upyukt sndhiyon or ghoshnaon ke vishisht pravdhanon ki yad dilaee gee hai. +",4,7,neutral,neutral,positive +"Directory% s is not writable +","% s निर्देशिका लिखने योग्य नहीं +","s directory likhne yogy nahin +",9,1,negative,neutral,neutral +"Continuous sound that is produce by something that buzzes. +","किसी वस्तु द्वारा उत्पन्न भिभिनाहट की क्रमिक ध्वनि +","kisi vastu dvara produce bhibhinahat ki krmik sound +",8,1,neutral,negative,neutral +"[Commanding him], ""Make full coats of mail and calculate [precisely] the links, and work [all of you] righteousness. Indeed I, of what you do, am Seeing."" +","कि फँराख़ व कुशादा जिरह बनाओ और (कड़ियों के) जोड़ने में अन्दाज़े का ख्याल रखो और तुम सब के सब अच्छे (अच्छे) काम करो वो कुछ तुम लोग करते हो मैं यक़ीनन देख रहा हूँ +","ki make full coats jirah banao aur kariyon ke jorne men andaze ka khyal rakho aur tum sab ke sab achchhe achchhe make full vo kuchh tum log karte ho main yainan dekh raha hoon +",5,2,neutral,neutral,neutral +"%s You have made no changes, update the editor? +","%s आपने कोई परिवर्तन नहीं किया है, संपादक अद्यतन करें? +","s aapne koee parivartan nahin kiya hai , editor adyatan karen +",7,1,negative,neutral,negative +"A fruit of subfamily Maloideae of the family Rosaceae. +","रोसकशया वंश के मेलोडिया उपवंश का एक फल. +","rosakashya family ke melodiya upvnsh ka ek fruit +",8,3,neutral,neutral,neutral +"Opens all branches of the file tree +","फ़ाइल ट्री की सभी शाखाओं को खोलता है +","file tree ki sabhi branches ko kholta hai +",10,0,neutral,neutral,neutral +"In case of accidents: If any labourer gets bodily injury during the course of employment at work site, the person is entitled to free medical treatment from the State Government. +","दुर्घटना की स्थिति में-यदि कोई कामगार कार्यस्थल पर कार्य के दौरान घायल होता है तो राज्य सरकार की ओर से वह निःशुल्क चिकित्सा सुविधा पाने का हकदार होगा। +","accidents ki case men-ydi koee kamgar work par kary ke dauran employment hota hai to rajy government ki or se vah person medical suvidha pane ka hakdar hoga. +",7,2,neutral,neutral,positive +"Dr. Ambedkar warned sternly, You will have to struggle for your own liberation. +","डा. आंबेडकर ने साफ साफ सचेत किया, अपने उद्धार के लिए आपको संघर्ष करना होगा। +","da aanbedakar ne saph saph sachet kiya, apne liberation ke lie aapko struggle karna hoga. +",7,1,neutral,neutral,negative +"Blend File / Folder with diff Output +","डिफ़ आउटपुट के साथ फ़ाइल/फ़ोल्डर ब्लैंड करें +","diff output ke sath file blaind karen +",9,1,neutral,neutral,neutral +"'This, is the reward for what your hands have forwarded. Allah is not unjust to the worshipers' +","(कहा जाएगा,) यह उसके कारण है जो तेरे हाथों ने आगे भेजा था और इसलिए कि अल्लाह बन्दों पर तनिक भी ज़ुल्म करनेवाला नहीं +","kaha reward , yah uske karan hai jo tere hathon ne aage bheja tha aur islie ki allah worshipers par tanik bhi zulm karnevala nahin +",6,3,positive,neutral,positive +"Children from the lowest social class are five times more likely to die in road accidents than those from the highest social class. +","समाज के सब से नीचे वाले वर्ग के बच्चों की सड़क दुर्घटना में मौत होने का खतरा सब से उँचे वर्ग वाले बच्चों से पाँच गुना अधिक है। +","samaj ke sab se niche vale varg ke bachchon ki road accidents men maut hone ka khatra sab se unche varg vale bachchon se panch highest social class +",4,2,negative,neutral,negative +"More recently, it appears that none of the millions of antiwar demonstrators have a bad word to say about Saddam Hussein nor an iota of sympathy for those oppressed, tortured and murdered by his regime. Instead, they vent fury against the American president and British prime minister. +","अभी हाल में यह देखने में आया है कि लाखों युद्ध विरोधी प्रदर्शनकारियों ने सद्दाम हुसैन के विरूद्ध एक भी शब्द नहीं कहा और न ही उनके शासन में पीड़ित हत्या के शिकार हुए लोगों के प्रति एक भी सहानुभूति का शब्द निकाला। इसके बजाय उन्होंने अमेरिकी राष्ट्रपति और व्रिटेन के प्रधानमंत्री के विरूद्ध आक्रोश प्रदर्शित किया। +","abhi hal men yah dekhne men aaya hai ki lakhon yuddh virodhi pradarshankariyon ne saddam husain ke virooddh ek bhi shabd nahin kaha aur n hi unke shasan men pirit hatya ke shikar hue logon ke prti ek bhi sahanubhooti ka shabd nikala. iske bajay unhonne ameriki rashtrapti aur vriten ke prdhanmntri ke virooddh aakrosh pradarshit kiya. +",7,4,negative,negative,negative +"Doubt that anyone charged with and tried for the 7/7 attacks would receive a fair trial: 44 percent. +","44 प्रतिशत मुसलमानों को इस बात में संशय है कि 7 जुलाई के विस्फोटों के आरोपियों पर निष्पक्ष मुकदमा चल सकेगा. +","44 percent musalmanon ko is bat men snshay hai ki 7 attacks would receive ke aaropiyon par fair trial chal sakega +",6,3,negative,negative,negative +"They think that the Confederates have not withdrawn; and if the Confederates should come (again), they would wish they were in the deserts (wandering) among the Bedouins, and seeking news about you (from a safe distance); and if they were in your midst, they would fight but little. +","(मदीने का मुहासेरा करने वाले चल भी दिए मगर) ये लोग अभी यही समझ रहे हैं कि (काफ़िरों के) लश्कर अभी नहीं गए और अगर कहीं (कुफ्फार का) लश्कर फिर आ पहुँचे तो ये लोग चाहेंगे कि काश वह जंगलों में गँवारों में जा बसते और (वहीं से बैठे बैठे) तुम्हारे हालात दरयाफ्त करते रहते और अगर उनको तुम लोगों में रहना पड़ता तो फ़क़त (पीछा छुड़ाने को) ज़रा ज़हूर (कहीं) लड़ते +","safe ka confederates karne vale chal bhi midst magar ye log abhi yahi samajh rahe hain ki kafiron ke lashkar abhi nahin distance aur agar kahin kuphphar ka lashkar phir aa pahunche to ye log chahenge ki kash vah jnglon men gnvaron men ja baste aur vahin se baithe baithe tumhare news daryapht karte rahte aur agar unko tum logon men rahna parta to fat pichha chhurane ko zara bedouins kahin larte +",5,4,neutral,neutral,positive +"Vrindavanlal Verma wrote. another play Mahoba Sangram Battle of Mahoba in which he glorified armed struggle for independence. +","एक और नाटक 'महोबा संग्राम' भी वर्मा जी ने लिखा, जिसमें देश की स्वतंत्रता के लिए सशस्त्र संघर्ष की महत्ता दिखायी थी। +","ek aur natak mhoba sngram bhi varma ji ne wrote, jismen desh ki svtntrta ke lie sashastr sngharsh ki mahatta dikhayi thi. +",6,3,neutral,neutral,positive +"Thus the word ' costs ' included costs incidental to the suit . +","इस प्रकार खर्च शब्द में वाद के सभी अनुषंगी खर्च शामिल हैं . +","is prkar kharch shabd men vad ke sabhi included costs incidental hain +",8,0,neutral,neutral,neutral +"but it does tend to leave you waking up crying at three o'clock in the morning. +","मगर हो सकता है कि आप सुबह के तीन बजे जागे हुए पाये जायें। +","magar ho sakta hai ki aap morning ke tin oclock jage hue paye jayen. +",6,3,negative,neutral,negative +"Average feed consumption upto marketable age +","बेचने योग्य होने की आयु तक पहुँचने तक भोजन की औसत खपत +","upto marketable hone ki aayu tak pahunchne tak average feed consumption khapat +",7,3,neutral,neutral,neutral +"Among them 13, 74, 283 lives were under subsidised category and 61, 133 lives were under General non - subsidised category. +","इनमें क्रमशः13,74,283 और 61,133 व्यक्ति सब्सिडी पाने वाले वर्ग में थे और 61,135 पूरा प्रीमियम देने वालों में थे। +","inmen kramsha13,74,283 aur 61,133 vyakti sabsidi pane vale varg men the aur 61,135 poora primiyam dene valon men the. +",5,8,neutral,neutral,neutral +"PROVISIONS AS TO THE COMPTROLLER AND AUDITOR-GENERAL OF INDIA +","भारत के नियंत्रक-महालेखापरीक्षक के बारे में उपबंध +","india ke niyntrak-mhalekhaprikshak ke bare men provisions +",9,2,neutral,neutral,neutral +"But, with respect to potassic fertilizers, there are no known commercially exploitable reserves of potash in the country and the entire requirement of these fertilizers is met through imports. +","परन्तु पोटाश उर्वरक के संबंध में देश में पोटाश का कोई दोहन करने योग्य ज्ञात भंडार नहीं है और इन उर्वरकों की समस्त आवश्यकताएं आयात के माध्यम से पूरी की जाती हैं। +","commercially exploitable urvarak ke snbndh men desh men potash ka koee dohan karne yogy jnjat bhndar nahin hai aur in urvarkon ki met through imports ke madhyam se poori ki jati hain. +",7,1,neutral,negative,positive +"The Rajghat Dam is almost complete. +","राजघाट बांध का निर्माण कार्य लगभग पूरा हो चुका है। +","rajghat dam ka nirman kary lagabhag poora ho chuka complete +",4,6,positive,neutral,neutral +"Dr. Ambedkar was at pains to emphasise that the new republic would be a ""Union” of States, as opposed to a"" Federation” of States. The States would have no right to secede. +","डॉ. अंबेडकर ने बहुत परिश्रम से यह बताने का प्रयास किया था कि नया गणतंत्र राज्यों के ‘परिसंघ’के बजाय राज्यों का ‘संघ’ होगा। राज्यों को अलग होने का अधिकार नहीं होगा। +","d anbedakar ne bahut parishram se yah batane ka pryas kiya tha ki naya gantntr federation ke prisnghke bajay federation ka sngh hoga. federation ko alag hone ka adhikar nahin hoga. +",5,4,negative,negative,negative +"So sometimes you 'll say morula, +","तो कभी कभी आप morula कहता हूँ, +","to kabhi kabhi aap morula kahta hoon , +",8,1,neutral,neutral,neutral +"Disables saving browser history in %{PRODUCTNAME} and prevents users from changing this setting. If this setting is enabled, browsing history is not saved. If this setting is disabled or not set, browsing history is saved. +","%{PRODUCTNAME} में ब्राउज़र इतिहास सहेजना अक्षम करती है और उपयोगकर्ताओं को यह सेटिंग बदलने से रोकती है. यदि यह सेटिंग सक्षम है, तो ब्राउज़िंग इतिहास सहेजा नहीं जाता है. यदि यह सेटिंग अक्षम है या कॉन्फ़िगर नहीं है, तो ब्राउज़िंग इतिहास सहेजा जाता है. +","PRODUCTNAME men saving browser history aksham karti hai aur upyogakartaon ko yah seting badalne se rokti hai yadi yah seting saksham hai, to browsing history saheja nahin jata hai yadi yah seting aksham hai ya knfigar nahin hai, to browsing history saheja jata hai +",7,2,neutral,neutral,positive +"Force Brasero to display the project selection page +","परियोजना चयन पृष्ठ दिखाने के लिए ब्रैसेरो को बाध्य करें +","project selection page display ke lie braisero ko badhy karen +",10,0,neutral,neutral,neutral +"Whether accelerated compositing should be enabled +","क्या त्वरित कंपोजिटिंग सक्रिय की जानी चाहिए +","kya tvrit compositing sakriy ki jani chahie +",9,2,neutral,neutral,neutral +"These reverses inflicted a huge psychological blow to the organisation, which hastily claimed the surrenders were stage - managed. +","इससे संग न को करारा ज्ह्टका लगा और उसने कहा कि आत्मसमर्पण विशुद्ध रूप से प्रायोजित कार्रवाई है. +","isse sng n ko huge psychological blow aur usne kaha ki aatmasamarpan vishuddh roop se prayojit karrvaee hai +",6,8,negative,negative,positive +"(a) dearness allowance or dearness pay unless it enters into the computation of superannuation or retirement benefits of the employee concerned; +","(क) महंगार्इ भत्ता या महंगार्इ वेतन, जब तक कि वह संबद्ध कर्मचारी के अधिवर्षिता या सेवानिवृत्ति संबंधी फायदों की संगणना करने में हिसाब में नहीं लिया जाता हो; +","benefits dearness allowance ya dearness pay , jab tak ki vah snbaddh employee ke superannuation ya retirement snbndhi phaydon ki computation karne men hisab men nahin liya jata ho +",7,1,neutral,neutral,positive +"Anundoram was a student of the Gauhati School in the late fifties of the nineteenth century, that is, in the early stage of English education in Assam. +","आनन्दराम ने उन्नीसवीं सदी के छठे दशक में, यानी असम में अंग्रेज़ी शिक्षा के आरम्भिक चरण में गुवाहाटी स्कूल में अपनी पढ़ाई पूरी की। +","aanandram ne unnisvin sadi ke chhathe dashak men, yani asam men angrezi shiksha ke aarambhik charan men guvahati skool men apni paaee poori ki. +",8,1,neutral,neutral,neutral +"They stretch when the heart pumps blood through them. +","जब हृदय उनमें से रक्त संचार करता है तो वे फैलती है। +","jab hriday unmen se blood snchar karta hai to ve heart pumps +",5,1,neutral,neutral,positive +"The living organism and its relationship with the environment. +","जीवित जीव और पर्यावरण के साथ उसके संबंध। +","living organism aur environment ke sath uske relationship +",8,3,neutral,neutral,neutral +"The time remaining when action is taken +","बचा समय जब क्रिया की जाती है +","time remaining jab action ki jati hai +",7,4,neutral,neutral,neutral +"India and South Africa share a longstanding friendship that is rooted in history and our shared values. +","भारत और दक्षिण अफ्रीका के बीच संबंधों की जड़ें इतिहास और साझे मूल्यों में स्थापित हैं. +","india aur south aphrika ke share snbndhon ki jaren history aur friendship moolyon men sthapit hain +",6,1,positive,neutral,positive +"Allah said: be thou gone; then who soever of them followeth thee, Hell is your meed, a meed ample. +","ख़ुदा ने फरमाया चल (दूर हो) उनमें से जो शख़्श तेरी पैरवी करेगा तो (याद रहे कि) तुम सबकी सज़ा जहन्नुम है और वह भी पूरी पूरी सज़ा है +","uda ne pharmaya chal door ho unmen se jo shash teri pairvi karega to yad rahe ki tum sabki saza jahannum hai aur vah bhi poori poori saza hai +",4,6,neutral,neutral,negative +"The Quran itself states that muslims have the right to read the Quran. +","स्वयं कुरान कहता है और वे इसे पढ़ने के अधिकार ‎के साथ पढ़ते हैं। +","quran itself states hai aur ve ise pane ke adhikar ke sath pate read +",4,5,neutral,neutral,neutral +"A student can choose to appear in one or more subjects in an examination and earn credits till he / she completes all five subjects for final certification within a stipulated period of five years. +","शिक्षार्थी किसी परीक्षा में एक अथवा अधिक विषयों की परीक्षा में बैठ सकता है और पाँच वर्षों की निर्धारित अवधि में प्रमाणपत्र के लिए सभी पांचों विषयों को पूरा करने तक क्रेडिट अर्जित कर सकता है। +","student kisi examination men ek athva more subjects ki examination men baith sakta hai aur years varshon ki stipulated period men prmanapatr ke lie sabhi panchon subjects ko poora karne tak kredit arjit kar sakta final +",8,0,neutral,neutral,positive +"With focus on Per Drop More Crop and ""Har Khet ko Pani”, coverage under Pradhan Mantri Krishi Sinchayee Yojana has been expanded. +","हर बूंद अधिक फसल तथा‘‘हर खेत को पानी’’को ध्यान में रखते हुए प्रधान मंत्री कृषि सिंचाई योजनाका कवरेज बढ़ाया गया है। +","har drop more crop tathahar khet ko paniko dhyan men rakhte hue prdhan mntri krishi sinchaee yojnaka kavrej baaya gaya hai. +",6,1,neutral,neutral,negative +"Image format (default RGB) +","छवि प्रारूप (डिफ़ॉल्ट RGB) +","image format diflt RGB +",8,0,neutral,neutral,neutral +"A sudden state of danger in financial matters. +","वित्तीय मामलों में उपस्थित आकस्मिक आपात स्थिति। +","state matters men upasthit sudden danger sthiti. +",7,2,negative,neutral,negative +"If a landlord uses language or physical behaviour which is threatening or violent against the tenant, the latter should consult his or her local authority or other advice centre. +","मकान मालिक ने शोर-शरबा, दंगे या फिर लैंगिक और जात पात का भाव रख कर घटिया व्यवहार किया हो । +","landlord malik ne shor-sharba , physical ya phir laingik aur jat pat ka latter violent kar local language kiya ho centre +",4,2,negative,neutral,negative +"For example, unwanted pregnancies especially amongst the under 16s always have serious personal and social consequences for both the mothers and their children. +","उदाहरणार्थ अनचाहा गर्भ, विशेषकर १६ वर्ष से कम की अवस्था में, माता एवं बच्चे दोनों के लिये अनेक वैयक्तिक एवं सामाजिक समस्याओं को जन्म देता हैं। +","unwanted pregnancies garbh, visheshakar १६ varsh se kam ki avastha men, mata evn bachche donon ke liye anek personal and social samasyaon ko janm deta hain. +",8,3,negative,negative,negative +"When they came upon you from above you and from below you, and when eyes turned aside and hearts reached to the gullets, and of Allah ye were imagining various things. +","जिस वक्त वह लोग तुम पर तुम्हारे ऊपर से आ पड़े और तुम्हारे नीचे की तरफ से भी पिल गए और जिस वक्त (उनकी कसरत से) तुम्हारी ऑंखें ख़ैरा हो गयीं थी और (ख़ौफ से) कलेजे मुँह को आ गए थे और ख़ुदा पर तरह-तरह के (बुरे) ख्याल करने लगे थे। +","jis vakt vah log tum par tumhare oopar se aa pare aur tumhare niche ki taraph se bhi pil ge aur jis vakt unki kasarat se tumhari eyes turned ho gayin thi aur auph se kaleje munh ko aa ge the aur uda par tarah-tarah ke bure khyal karne lage the. +",6,6,neutral,neutral,positive +"Suddenly, Uttama spotted a peculiar object lying among the coral. +","अचानक उत्तम को मूंगे की चटटानों के बीच में एक विचित्र सी चीज पडी हुई दिखाई दी। +","achanak uttam ko moonge ki chattanon ke bich men ek vichitr si chij padi huee dikhaee di. +",5,8,neutral,positive,negative +"No further items in the history. +","इतिहास में कोई अन्य वस्तु नहीं. +","history men koee any items nahin +",8,1,neutral,neutral,negative +"Joseph Henry helped to solve the first problem. +","जोज़ेफ हेनरी की मदद से पहली समस्या तो हल हो गयी। +","joseph henri ki madad se first problem to hal ho gayi. +",8,1,neutral,neutral,negative +"o Word Processors, DTP Solutions and SDKs for various Indian languages +","वर्ड प्रॉसेसर, तथा विभिन्न भारतीय भाषाओं के लिए डीटीपी समाधान तथा एसडीके +","vard prsesar, tatha vibhinn indian languages ke lie ditipi samadhan tatha esdike +",5,0,neutral,neutral,positive +"During the war years, the railways were under great strain, not only because of the growing needs of transportation of troops and war materials internally, but also because of the responsibility thrown on them to meet the demands of staff and material for the railways in the African theatre of war. +","युद्ध के वर्षों के दौरान, रेलवे पर अत्यधिक दबाव था. यह न केवल सेना और युद्ध सामग्री को देश में ही लाने ले जाने के कारण था वरन् अफ्रीकी युद्ध में रेलवे के लिए स्टाफ और सामग्री की बढ़ती हुई मांग को पूरा करने के उन पर सौंपे गये दायित्व के कारण था. +","yuddh ke varshon ke dauran, relve par great strain tha yah n keval sena aur yuddh samagri ko desh men hi lane le jane ke karan tha varan african theatre men relve ke lie staph aur samagri ki bati huee mang ko poora karne ke un par saunpe gaye dayitv ke karan tha +",7,2,negative,neutral,negative +"In Mumbai average annual temperature, and the average annual precipitation table +","मुंबई में औसत तापमान एवं वर्षण (प्रैसिपिटेशन) की सारणी +","mumbai average annual tapman evn varshan praisipiteshan ki sarni +",7,3,neutral,neutral,neutral +"Soor's Krishna is a form of love and melody. +","सूर के कृष्ण प्रेम और माधुर्य प्रतिमूर्ति है। +","soor ke krishn love and melody prtimoorti form +",6,1,positive,neutral,positive +"How soon can you have this dress ready? +","इस ड्रेस को कितनी जल्दी तैयार कर सकते हो? +","is dres ko kitni dress ready kar sakte ho +",7,4,neutral,neutral,positive +"But, rising wage bill of IT professionals and global financial meltdown is challenging India 's position as a preferred destination for outsourcing business processes. +","तथापि, आईटी व्यथवसायियों के बढ़ते वेतन बिल तथा वैश्विक वित्तीय मंदी आउट सोर्सिंग व्यपवसाय प्रक्रियाओं के लिए एक वरीय गंतव्यव स्थैल के रूप में भारत की स्थिति को चुनौती दे रही है। +","tathapi , preferred vyathavsayiyon ke global wage bill tatha vaishvik financial meltdown professionals sorsing vyapavsay processes ke lie ek variy gntavyav sthail ke roop men india ki position ko chunauti de rahi hai. +",6,2,negative,positive,positive +"President of India Shri Pranab Mukherjee will undertake a day visit to Punjab (Ludhiana) tomorrow (27 November, 2012). +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (27 नवम्बर, 2012) पंजाब (लुधियाना) की एक दिवसीय यात्रा करेंगे। +","bharat ke shri pranab mukherjee mukharji kal 27 november, 2012 pnjab ludhiyana ki ek divsiy yatra karenge. +",8,1,neutral,neutral,neutral +"But unfortunately the way in which the fresh blood of modernism was transfused into the anaemic body of Indian society deprived it of just these vital ingredients and on the whole did more harm than good: In the first place, the modern Western culture which reached India was not the genuine article but an export model of which the parts came from England but were assembled in India mainly by men of mediocre ability, who could be spared after selecting political and intellectual leaders for the home country. +","किंतु दुर्भाग़्य से जिस तरह का ताजा रक़्त भारतीय समाज के रक़्तहीन शरीर में भरा गया, उसने उसे इन महत्वपूर्ण अव्यवों से वंचित कर दिया और कुल मिलाकर अच्छाई के स्थान पर हानि अधिक हुई प्रथम स्थिति में, आधुनिक पश्चिमी संस्कृतिक, जो भारत पहुंची तथा वह वास्तविक रूप में नहीं, बल्कि यह उसका एक निर्यात रूप था, जिसके पुर्जे इंग़्लैड सें आये, किंतु भारत में उन्हे मुख़्य रूप से अति सामान्य योग़्यता वाले व्यक़्तियों के द्वारा जमाया गया, जिन्हें अपने देश के लिए राजनैतिक बुद्धिमान नेता चुनने के बाद अलग किया जा सकता +","kintu durbhay se jis tarah ka taja rat bhartiy samaj ke rathin sharir men bhara gaya, usne use in mahatvpoorn avyvon se vnchit kar diya aur kul milakar achchhaee ke sthan par hani adhik huee pratham sthiti men, modern western culture, jo bharat pahunchi tatha vah vastvik roop men nahin, balki yah uska ek niryat roop tha, jiske purje inlaid sen aaye, kintu bharat men unhe muy roop se ati samany yoyta vale vyatiyon ke dvara jamaya gaya, jinhen apne desh ke lie rajnaitik buddhiman neta chunne ke bad alag kiya ja sakta +",8,0,negative,negative,positive +"Check that the spelling is correct and that your proxy settings are correct. +","जांच लें कि वर्तनी सही है और आपके प्रॉक्सी विन्यास सही हैं. +","check len ki spelling correct hai aur aapke proxy settings correct hain +",7,2,neutral,neutral,neutral +"If you choose to create a new empty project, the file selection will be discarded. +","यदि आप नई रिक्त परियोजना बनाने के लिए चुनते हैं, सभी फ़ाइल चयन नष्ट हो जाएंगे. +","yadi aap new empty project banane ke lie chunte hain , sabhi fail selection nasht ho jaenge +",8,0,negative,neutral,negative +"The application for registration of a plant variety may be filed by a breeder or his assignee in the prescribed form with the prescribed fee to the Authority including particulars such as the name of variety, source of parental line, or name of variety used to develop the variety in question, essential characteristics conferring distinctiveness, denomination and geographical location of the variety and claims. +","वनस्पिति प्रकार के पंजीकरण हेतु आवेदन प्रजनक अथवा उसके अधिन्याससी द्वारा निर्धारित शुल्को के साथ निर्धारित प्रपत्र में प्रकार के नाम, पैतृक प्रकार का स्रोत, अथवा पंजीकृत किए जाने वाले प्रकार के विकास में प्रयुक्तथ प्रकार का नाम, प्रकार के वैशिष्ट्ये, अंकन एवं भौगोलिक स्थाकन को दर्शाती आवश्य क विशेषताओं एवं दावों जैसे विवरणों सहित प्राधिकार को दी जा सकती है। +","plant application ke registration location aavedan breeder athva uske adhinyassi dvara prescribed shulko ke sath prescribed prapatr men application ke name , parental application ka source , athva pnjikrit kie jane vale application ke essential men pryuktath application ka name , application ke vaishishtye , ankan evn geographical sthakan ko line aavashy k characteristics evn claims jaise vivarnon sahit pradhikar ko particulars ja sakti question +",8,0,neutral,neutral,positive +"I assure you, I haven 't even seen him. she said. +","मैं आपको यकीन दिलाती हूं कि मैंने आज तक उसे देखा भी नहीं है। +","i aapko yakin assure hoon ki mainne aaj tak use dekha bhi nahin hai. +",7,0,neutral,neutral,positive +"Sonabadra District in Uttar Pradesh is the one and only place whose borders touches four other districts | +","उत्तर प्रदेश का सोनभद्र जिला देश का एक मात्र ऐसा जिला है जिसकी सीमाएँ सर्व चार प्रदेशों को छूती है। +","uttar prdesh ka place whose borders ka ek matr aesa jila hai jiski simaen sarv char prdeshon ko borders touches +",4,3,neutral,neutral,neutral +"I am extremely happy that Raipur Airport has been named after the saint / philosopher and visionary Swami Vivekananda. After Kolkata, Raipur is the place Swamiji spent the largest number of years of his life. +","मुझे यह जानकर बहुत खुशी हुई है कि रायपुर हवाई अड्डे का नाम संत/दार्शनिक तथा स्वपनद्रष्टा स्वामी विवेकानंद के नाम पर रखा गया है। +","mujhe yah janakar bahut khushi huee hai ki raipur airport adde ka nam sntdarshnik tatha svapanadrashta svami vivekannd ke nam par rakha gaya hai. +",7,3,positive,positive,positive +"And two pairs of light, strong and comfortable shoes for walking. +","और ये देखिए जूते दो जोड़ी, हल्के और मजबूत, चलने मे आराम देह। +","aur ye dekhie shoes do pairs , light aur strong , walking me comfortable deh. +",7,3,positive,neutral,positive +"associated or substantially identical trade marks +","सहयुक्त या सारत तदरूप व्यापार चिह्न +","sahyukt ya sarat identical trade chihn +",8,1,neutral,neutral,neutral +"There is only one way of acquiring this knowledge contemplation of the beauty and majesty of Man and Nature and reading the Book of Self. +","उस विद्या-प्राप्ति का केवल एक मार्ग है-प्रकृति और मानव की सुन्दरता और महिमा का चिंतन और आत्म-ग्रन्थ प्रकृति और मानव की सुन्दरता और महद् महिमा का चिंतन और आत्म-ग्रन्थ का पठन। +","us vidya-prapti ka keval ek marg hai-man and nature ki sundarta aur mahima ka chintan aur aatm-granth man and nature ki sundarta aur mahad mahima ka chintan aur aatm-granth ka pathan. +",7,0,neutral,neutral,positive +"Go to hell, Dileep snapped and stomped off, banging the door behind him. +","भाड़ में जाओं, उल्लास चीखा और उठकर धड़ाम से दरवाजा बंद करके चला गया। +","bhar men jaon, ullas chikha aur uthakar dharam se darvaja bnd karke chala gaya. +",8,1,negative,neutral,negative +"Nature is to the Divine Self as character is to the human self. ” +","जिस प्रकार चरित्र मनुष्य के लिए होता है, उसी प्रकार दैवी आत्मा के लिए प्रकृति है. ” +","jis nature character self ke lie hota hai , usi nature divine aatma ke lie prkriti hai +",7,2,neutral,neutral,positive +"but no information, no follow - up, +","मगर जानकारी गायब है, न कोई आगे की बात, +","magar jankari gayab hai, n koee aage ki bat, +",5,9,negative,neutral,negative +"Apply a layer of fine manure +","उत्तम खाद की परत का उपयोग करना +","fine manure ki layer ka upyog karna +",8,2,neutral,neutral,positive +"1 gallon is 4 quarts. +","1 गॅलन 4 क्वॉर्ट होता है. +","1 gallon 4 quarts hota hai +",10,0,neutral,neutral,neutral +"The following cookies were blocked (third - party cookies are being blocked without exception): +","निम्न कुकी अवरोधित कर दी गई हैं (तृतीय-पक्ष की कुकी को बिना किसी अपवाद के अवरोधित किया जा रहा है): +","cookies were blocked kar di gee hain tritiy-paksh ki cookies ko bina kisi blocked without exception kiya ja raha hai: +",6,1,neutral,neutral,negative +"The rising demand for gunny bags , created by increasing food exports to Europe , gave a fresh stimulus to jute cultivation and the handloom industry . +","यूरोप के लिए बढते खाद्य सामग्री के निर्यात के कारण बढ़ी हुई बोरियों की मांग ने जूट की खेती और हथकरघा उद्योग को एक नया प्रोत्साहन दिया . +","yoorop ke lie increasing food samagri ke niryat ke karan created by increasing ki mang ne joot ki kheti aur hathakargha udyog ko ek naya protsahan diya +",7,0,positive,positive,positive +"He made the Subhashbabu the Chief Working Officer of the corporation. +","उन्होंने सुभाषबाबू को महापालिका का प्रमुख कार्यकारी अधिकारी बनाया। +","unhonne made the subhashbabu ka prmukh chief working officer +",6,2,neutral,neutral,neutral +"It appears that he was solely interested in saving his own life and that of his queen who by that time hated him. +","ऐसा लगता है कि उनका एकमात्र सरोकार अपनी और उस बेगम की जान बचाना था जो उस समय तक उनसे नफरत करने लगी थी। +","interested lagta hai ki unka ekmatr own apni aur us queen ki jan bachana tha jo us time tak unse napharat karne lagi thi. +",6,6,negative,positive,negative +"All perception of unity, similarity, difference, kind, uniqueness arrived at by the supramental reason is consonant with and depends on this order. +","अतिमानसिक बुद्धि एकता, सदृशता, विषमता, जाति और विशिष्टता का जो भी ज्ञान प्राप्त करती है वह सब इस विधान के साथ समस्वर होता है तथा इस पर निर्भर करता है। +","supramental buddhi unity , sadrishta , vishamta , kind aur uniqueness ka jo bhi perception prapt karti hai vah difference is vidhan ke sath consonant hota hai tatha is par nirbhar karta hai. +",8,1,neutral,neutral,positive +"Build but do not install the target. +","बिल्ड नहीं अधिष्ठापित करें लक्ष्य. +","bild nahin install the target +",4,1,neutral,neutral,neutral +"So if we get rid of the percent sign, +","इस लिए अगर हम पर्सेंटेज के निशान को हटा देते हैं तो, हम दशमलव को +","is lie rid ham percent ke sign ko hata dete hain to , ham dashamalav ko +",6,2,neutral,negative,neutral +"It was no exotic music which enthralled him. +","उन्हें विदेशी संगीत भाव-विभोर नहीं कर पाता था। +","unhen exotic music bhav-vibhor nahin kar pata tha. +",9,2,neutral,neutral,negative +"The process by which ammonia is converted to nitrites and then to nitrates. +","वह प्रक्रिया जिसके द्वारा अमोनिया को नाइट्राइटिस एवं तत्पश्चात नाइट्रेट्स में परिवर्तित किया जाता है +","vah process jiske dvara ammonia ko naitraitis evn tatpashchat nitrates men parivartit kiya jata hai +",8,1,neutral,neutral,neutral +"The eastern regions of Salsette Island contain many quagmires (or is marshy), they are also biologically, very diverse. +","सैलसेट द्वीप की पूर्वी ओर दलदली इलाका है जो जैवभिन्नताओं से परिपूर्ण है। +","sailset island ki eastern or daladli ilaka hai jo jaivbhinntaon se paripoorn hai. +",8,0,neutral,positive,neutral +"Registration under Shops and Establishment Act +","दुकानें और प्रतिष्ठान अधिनियम के तहत पंजीकरण +","shops and establishment act ke tahat registration +",10,0,neutral,neutral,neutral +"federal metropolis washington is situated in the eastern columbia district, in the middle of maryland and virginia. +","संघीय राजधानी वाशिंगटन देश के पूर्वी भाग में कोलंबिया ज़िले में स्थित है मेरिलैंड और वर्जिनिया के मध्य। +","federal metropolis washington desh ke eastern bhag men columbia zile men sthit hai middle aur virginia ke madhy. +",8,4,neutral,negative,neutral +"of what there is to fear and to hate. +","हमे किससे डरना चाहिये और बचना चाहिये. +","hame kisse darna chahiye aur bachna chahiye +",8,3,negative,negative,negative +"Failed to get folder properties:% s +","फ़ोल्डर विशेषता पाने में विफलः% s +","folder properties pane men viphla s +",8,0,negative,neutral,negative +"The first book written by him was Batris Sinhasan on the story of the legendary Vikramaditya as a dispenser of justice. +","उसके द्वारा लिखी गई पहली पुस्तक न्याय की रक्षा करने वाले विक्रमादित्य की लोक-कथा पर आधारित बत्तीस सिंहासन थी। +","uske dvara story legendary first book justice ki raksha karne vale vikramaditya ki lok-ktha par aadharit battis sinhasan thi. +",8,2,neutral,neutral,positive +"to go out and continue this very important thing +","जिससे कि वो इस बहुत ही महत्वपूर्ण काम को जारी रख सकें +","jisse ki vo is bahut hi important thing ko continue rakh saken +",9,2,neutral,neutral,positive +"Failed to load remote file. +","दस्तावेज फिर लोड करने में विफल. +","file phir lod karne men remote +",5,1,negative,neutral,negative +"Harimohini came near the staircase and coughed a couple of times, but to no avail. +","हरिमोहिनी ने सीढी के पास आकर दो-तीन बार खाँसा भी, लेकिन उसका कोई असर नहीं हुआ। +","harimohini ne sidhi ke pas aakar do-tin bar khansa bhi, lekin uska koee asar nahin huaa. +",5,9,neutral,neutral,negative +"Subhashbabu was in jail in year 1930. +","1930 में सुभाषबाबू कारावास में थे। +","1930 year subhashbabu jail in year +",4,5,neutral,neutral,neutral +"Sales costs: Product inventory, raw materials, manufacturing equipment +","बिक्री लागतः उत्पाद सूची, कच्चा माल, निर्माण उपकरण +","sales costs product inventory , raw mal , manufacturing equipment +",4,5,neutral,neutral,neutral +"Does he not know that God sees? +","क्या उसने नहीं जाना कि अल्लाह देख रहा है? +","god usne nahin jana ki allah sees raha hai +",5,3,neutral,neutral,negative +"in that we have way more data that we know what to do with, +","में है कि हम रास्ता अधिक डेटा है कि हम जानते हैं के साथ क्या करना है, +","men hai ki ham rasta adhik data hai ki ham jante hain ke sath kya karna hai, +",9,0,neutral,neutral,neutral +"They made the boy continue digging, but he found nothing. +","उन्होंने लड़के को और खुदाई करने के लिए मजबूर किया, मगर मिला कुछ नहीं। +","unhonne boy ko aur digging karne ke lie majboor kiya , magar mila kuchh nahin. +",8,0,neutral,neutral,neutral +"He usually speaks impeccable English and you think for a moment that you are perhaps better off here than in China. +","वे आम तौर पर अच्छी अंग्रेजी बोलते हैं और एक क्षण के लिए लगेगा कि चीन की तुलना में शायद यहां बेहतर स्थिति है. +","ve aam taur par achchhi english bolte hain aur ek moment ke lie impeccable ki china ki tulna men shayad yahan behatar sthiti hai +",7,0,positive,neutral,positive +"But the folk writer developed an elaborate story about her. +","किंतु लोक-साहित्यकारों ने उसकी कहानी विस्तार से सुनायी। +","kintu lok-sahitykaron ne uski writer elaborate se sunayi. +",5,0,neutral,neutral,neutral +"The Act seeks to facilitate the development of these enterprises as also enhance their competitiveness. +","अधिनियम में यह भी उनकी प्रतिस्पर्धात्मकता बढ़ाने के रूप में इन उद्यमों के विकास की सुविधा के लिए करना चाहता है। +","act men yah bhi unki prtispardhatmakta baane ke roop men in udymon ke facilitate the development ke lie karna chahta hai. +",7,0,positive,neutral,neutral +"But one important institution - the U.S. government - claims not to know Hadayet's goals. An FBI spokesman has said that “there's nothing to indicate terrorism.” Another FBI official said of Hadayet: “It appears he went there with the intention of killing people. Why he did that we are still trying to determine.” Possible causes named include a work dispute and a hate crime. +","परंतु एक महत्वपूर्ण संस्थान अमेरिकी सरकार का दावा है कि उन्हें हदायत के लक्ष्य का पता नहीं था। एफ बी आई के प्रवक्ता ने कहा, “ कुछ भी नहीं है जो आतंकवाद की ओर संकेत करता हो” । एफ बी आई के एक और अधिकारी ने हदायत के सम्बंध में कहा, “ ऐसा प्रतीत होता है कि वह वहाँ लोगों को मारने के आशय से गया था । हम यह जानने का प्रयास कर रहे हैं कि उसने ऐसा क्यों किया?” सम्भावित कारणों में कार्यक्षेत्र का विवाद और घृणा अपराध बताया गया। +","parntu ek important institution ameriki government ka claims hai ki unhen hadayet ke intention ka pata nahin tha. work bi people ke spokesman ne kaha , kuchh bhi nahin hai jo aatnkvad ki or snket karta ho nothing work bi people ke ek aur official ne hadayet ke sambndh men kaha , aesa prtit hota hai ki vah vahan logon ko marne ke aashay se gaya tha nothing ham yah janne ka pryas kar rahe hain ki usne aesa kyon kiya sambhavit causes men karyakshetr ka dispute aur hate crime bataya gaya. +",8,2,negative,negative,negative +"Renicapsule refers to the capsule in the kidney. +","अधिवृक्क-पिण्ड वृक्क में संपुटक को निर्दिष्ट करता है. +","adhivrikk-pind refers men capsule ko nirdisht karta hai +",6,1,neutral,neutral,neutral +"Nanalal was not merely a new signature but a new voice in modern Gujarati poetry. +","नानालाल गुजराती आधुनिक काव्य में एक नये हस्ताक्षर ही नहीं, एक नये स्वर भी थे। +","nanalal gujarati new poetry men ek naye signature hi nahin , ek naye voice bhi the. +",7,0,neutral,neutral,neutral +"he method of recording of votes by Members on `Ayes' and `Noes' slips is generally resorted to in the eventuality of : +","'हां' या 'नहीं' पर्चियों पर सदस्यों के मतों का अभिलेखन का तरीका सामान्यतया निम्नलिखित परिस्थतियों में अपनाया जाता हैः- +","ayes ya nhin slips par members ke votes ka abhilekhan ka tarika samanyatya nimnlikhit paristhtiyon men apnaya jata haia- +",7,2,neutral,negative,neutral +"and while training, I was hit by a bus. +","अपने अभ्यास के दौरान, एक बस ने मुझे टक्कर मार दी। +","apne training ke dauran, ek bas ne mujhe takkar mar di. +",10,0,negative,neutral,neutral +"Soor's Krishna is a form of love and melody. +","सूर के कृष्ण प्रेम और माधुर्य प्रतिमूर्ति है। +","soor ke krishna love aur melody prtimoorti hai. +",8,3,positive,neutral,positive +"and so that He might admit the believers, men and women, into Gardens through which rivers flow, to dwell therein forever, and so that He may remove their evils from them, that is, indeed, a supreme triumph in God 's eyes, +","ताकि मोमिन मर्द और मोमिना औरतों को (बेहिश्त) के बाग़ों में जा पहुँचाए जिनके नीचे नहरें जारी हैं और ये वहाँ हमेशा रहेंगे और उनके गुनाहों को उनसे दूर कर दे और ये ख़ुदा के नज़दीक बड़ी कामयाबी है +","believers men women aur momina aurton ko behisht ke baon men ja pahunchae jinke niche rivers jari hain aur ye vahan hamesha triumph aur unke gunahon ko unse door kar evils aur ye uda ke nazdik bari kamyabi hai +",4,1,positive,neutral,positive +"Branch audit is conducted by a firm assigned the job on yearly basis. +","शाखा लेखा परीक्षा बाहरी फर्म द्वारा, जिसे वार्षिक रूप से यह कार्य सौंपा जाता है, की जाती है। +","branch audit pariksha basis firm dvara , jise yearly roop se yah job saunpa jata hai , ki jati hai. +",9,2,neutral,neutral,neutral +"Additionally, 23 post-graduate scholarships for courses in hydel power and water resources management at IIT, Roorkee have been offered to Nepali engineers and experts this year. +","इसके अतिरिक्त नेपाली इंजीनियरी और विशेषज्ञों को इस वर्ष आईआईटी रुड़की में पनबिजली और जल संसाधन प्रबंधन में पाठ्यक्रम के लिए 23 स्नातकोत्तर छात्रवृत्तियां प्रदान की जाएंगी। +","iske atirikt nepali injiniyri aur experts ko is hydel iit roorkee men power aur water resources management men courses ke lie 23 snatkottar scholarships prdan ki jaengi. +",7,4,neutral,neutral,neutral +"Set this to the key command you would like to use to summon Do. +","इसमें वह की कमांड डालें जिसके होने पर जीनोम डु शुरू हो जाये। +","ismen vah ki command do jiske hone par key du shuroo ho jaye. +",8,0,neutral,neutral,positive +"The Department of Agriculture organizes Pre - Kharif and Pre - Rabi Programme Planning Workshops that are attended by department officers, field level functionaries, university of agricultural sciences scientists, officers of line departments and related input agencies. +","कृषि विभाग खरीफ पूर्व और रबी पूर्व कार्यक्रम आयोजना कार्यशालाओं का आयोजन करता है जिसमें विभाग के अधिकारी, क्षेत्रीय स्तर के कार्यकर्ता, कृषि विज्ञान वैज्ञानिक विश्वविद्यालय इसी तरह के विभागों के अधिकारी और संबंधित निवेश एजेंसियों के अधिकारी भाग लेते हैं। +","krishi vibhag khariph poorv aur rabi poorv programme planning workshops ka aayojan karta hai jismen vibhag ke adhikari, kshetriy star ke karyakarta, agricultural sciences scientists vishvvidyalay isi tarah ke vibhagon ke adhikari aur related input agencies ke adhikari bhag lete hain. +",7,2,neutral,neutral,neutral +"Wherever you see the x, you just substitute it with the +","जहा भी आप जे देखे, आप इसे प्रतियस्थापित करे साथ +","wherever bhi aap x dekhe , aap ise prtiyasthapit kare sath +",7,1,neutral,neutral,neutral +"was that it was legal to sell you +","ये कानूनन सही है कि आपको बेचा जाय +","ye legal sahi hai ki aapko sell jay +",7,2,neutral,neutral,positive +"Circulation of water from the tank through the collectors and back to the tank continues automatically due to density difference between hot and cold water (thermosyphon effect). +","टंकी से संग्राहक तक पानी की धारा का प्रवाह गर्म और ठंडे पानी के घनत्व में अंतर (थर्मोसाइफन प्रभाव) के कारण हमेशा स्वचालित ढंग से बना रहता है। +","hot and cold tak pani ki dhara ka prvah garm aur thnde pani ke ghanatv men antar tharmosaiphan prbhav ke karan hamesha svchalit dhng se bana rahta hai. +",7,0,neutral,neutral,neutral +"At the back of Pratibimbal Lake there is a walking path +","प्रतिबिम्बित झील के पीछे पैदल पथ +","prtibimbit lake ke back walking path +",6,2,neutral,neutral,neutral +"General lien does not give the right to dispose off the articles. +","सामान्य धारणाधिकार ऋणदाता को वस्तुओं को बेचने का अधिकार प्रदान नहीं करता। +","general lien rindata ko articles ko bechne ka right prdan nahin karta. +",10,0,negative,negative,neutral +"Danaus Umniace is another common butterfly of the plains, with black wings, marked with bluish - white streaks. +","मैदानों की दूसरी सामान्य तितली डेनॉस लिम्निएस है जिसके काले पंखों पर नीलाभ-सफेद रेखाएं होती हैं। +","plains ki doosri common butterfly danaus umniace hai jiske black wings par nilabh-sphed rekhaen hoti hain. +",9,0,neutral,neutral,neutral +"(i) it begins to manufacture or produce articles after the 30th day of September, 1977 but before the 1st day of April, 1990, in any rural area ; +","(i) यह किसी ग्रामीण क्षेत्र में वस्तुओं का विनिर्माण या उत्पादन 30 दिसम्बर, 1977 के पश्चात् किंतु 1 अप्रैल, 1990 के पूर्व प्रारंभ करता है; +","i yah kisi rural area men vastuon ka manufacture or produce 30 disambar, 1977 ke pashchat kintu 1 aprail, 1990 ke poorv prarnbh karta hai +",8,1,neutral,neutral,neutral +"Do not be faint of heart in pursuing these people: if you happen to suffer harm they too are suffering just as you are, while you may hope from Allah what they cannot hope for. Allah is All - Knowing, All - Wise. +","और (मुसलमानों) दुशमनों के पीछा करने में सुस्ती न करो अगर लड़ाई में तुमको तकलीफ़ पहुंचती है तो जैसी तुमको तकलीफ़ पहुंचती है उनको भी वैसी ही अज़ीयत होती है और (तुमको) ये भी (उम्मीद है कि) तुम ख़ुदा से वह वह उम्मीदें रखते हो जो (उनको) नसीब नहीं और ख़ुदा तो सबसे वाक़िफ़ (और) हिकमत वाला है +","aur musalmanon dushamnon ke pichha karne men susti n karo agar laraee men tumko suffer harm hai to jaisi tumko suffer harm hai unko bhi vaisi hi aziyat hoti hai aur tumko ye bhi ummid hai ki tum uda se vah vah ummiden rakhte ho jo unko nasib nahin aur uda to sabse vaif aur hikamat vala hai +",5,2,neutral,neutral,negative +"Kanta gets herself a job, but because of Madhab, she cannot consider herself 'free'. +","कांता एक नौकरी ढूंढ़ लेती है पर माधव की वजह से वह अपने को स्वतंत्र नहीं समझ पाती है। +","kanta ek job dhoon leti hai par madhav ki vajah se vah apne ko svtntr nahin samajh pati hai. +",8,4,neutral,negative,negative +"""And the places of worship are for Allah (alone): So invoke not any one along with Allah; +","और यह कि मस्जिदें अल्लाह के लिए है। अतः अल्लाह के साथ किसी और को न पुकारो +","aur yah ki places worship ke lie hai. ata worship ke sath kisi aur ko n pukaro +",5,2,neutral,neutral,positive +"He was with Washington University, St. Louis, Mo., USA from 1961 to 1971. +","वह 1961 से 1971तक अमेरिका के वाशिंगटन विश्वविद्यालय के साथ जुड़े रहे। +","vah louis se 1971tak amerika ke washington university ke sath jure rahe. +",6,2,neutral,neutral,neutral +"to pull money out of the air, +","पैसे हवा से बाहर खींचने के लिए, +","money air se bahar pull ke lie, +",7,2,neutral,neutral,neutral +"and We shall make him the lowest of low +","फिर हमने उसे (बूढ़ा करके रफ्ता रफ्ता) पस्त से पस्त हालत की तरफ फेर दिया +","phir hamne use booa karke lowest lowest past se past halat ki taraph pher diya +",5,3,negative,neutral,negative +"S35: This material and its container must be disposed of in a safe way +","S35: यह पदार्थ तथा इसके मर्तबान को सुरक्षित तरीके से फेंका जाना चाहिएPlease take the official translations! You find them here: http:// europa. eu. int/eur-lex/lex/LexUriServ/LexUriServ. do? uri = CELEX: 32001L0059: EN: HTML +","S35: yah padarth tatha iske martban ko surakshit tarike se phenka jana chahiePlease take the official translations! You find them here: http: europa eu inteur-lexlexLexUriServLexUriServ do uri CELEX: 32001L0059: EN: HTML +",5,9,negative,neutral,positive +"As for the landlords, who in many provinces formed the link between the Government and the cultivators, as a class they did not stir a finger to help or encourage their tenants. +","जहां तक मालगुजारों का संबध था, जो कई प्रांतों में Zकिसान और सरकार के बीच संबंध बनाये हुये थे. एक वर्ग के रूप में उन्होने अपने किरायेदारों की सहायता या प्रोत्साहन के लिए उंगली तक नहीं हिलाई. +","jahan tak landlords ka class tha , jo kee many men Zkisan aur link ke bich snbndh banaye huye the ek varg ke roop men unhone apne tenants ki sahayta ya protsahan ke lie finger tak nahin hilaee +",6,1,negative,negative,positive +"Children between the ages of 3 and 7 have the best prognosis. +","3 से 7 वर्ष की उम्र के बच्चों में रोग का निदान सबसे अच्छे तरीके से हो सकता है. +","3 se 7 varsh ki ages ke bachchon men rog ka nidan sabse achchhe tarike se ho sakta hai +",8,4,positive,positive,positive +"How to prevent ama in day - to - day life and, perhaps, be magically relieved from all sorts of problems ranging from plain 'not feeling well' to arthritis? +","रोजमर्रा की जिंदगी में आंव की रोकथाम कैसे की जाए और तबीयत ठीक नहीं है से लेकर गठिया तक की सभी प्रकार की समस्याओं से किस प्रकार जादुई ढंग से मुक्ति पाई जाये? +","day ki life men ama ki roktham plain ki jae aur tabiyat thik nahin hai se lekar gathiya tak ki sabhi sorts ki problems se kis sorts jaduee dhng se mukti paee jaye +",8,2,neutral,negative,negative +"An invalid three-wheeler supplied by the DSS +","गलत तीन पैयो वाली गाडी ढ्श्श् ने सहायता के लिए दी हो ? +","invalid three-wheeler supplied vali gadi dhshsh ne sahayta ke lie di ho +",7,2,negative,negative,neutral +"This is essentially necessary in the evolution of laws and norms regarding the resources of the sea and of new technology involving outer space. +","यह बात विशेषतः समुद्र सम्बंधी तथा बाह्य अंतरिक्ष विषयक टेक्नोलाजी के विकास से सम्बद्ध कानूनों और मानदंडों के बारे में लागू होनी चाहिए। +","yah bat visheshta samudr sambndhi tatha bahy antriksh vishayak teknolaji ke vikas se sambaddh kanoonon aur mandndon ke bare men lagoo honi chahie. +",6,3,neutral,neutral,neutral +"The blood pressure measured when the atria and ventricles are relaxed and filled with blood. +","हृदय गति की वह माप जब अलिंद और निलय शिथिल हों तथा रक्त से भरे हों। +","hriday gati ki vah pressure jab atria aur ventricles relaxed hon tatha blood se bhare hon. +",6,1,neutral,neutral,positive +"Two days prior to that, his pains had abated and he told his disciples and others that he was feeling a great calm. +","मृत्यु से दो दिन पूर्व उन्होंने अपने शिष्यों को बताया कि उनका दर्द काफी कम है और वे काफी राहत महसूस कर रहे हैं। +","mrityu se do days prior told his disciples ko bataya ki unka dard kaphi kam hai aur ve feeling a great kar rahe hain. +",5,4,positive,negative,positive +"O believers, if you listen to the infidels they will make you turn your backs, and you will be the losers. +","ऐ ईमानदारों अगर तुम लोगों ने काफ़िरों की पैरवी कर ली तो (याद रखो) वह तुमको उलटे पॉव (कुफ़्र की तरफ़) फेर कर ले जाऐंगे फिर उलटे तुम ही घाटे में आ जाओगे +","ae eemandaron agar tum logon ne kafiron ki pairvi kar li to yad rakho vah tumko ulte pv kufr ki taraf pher kar le jaaenge phir ulte tum hi ghate men aa jaoge +",4,7,negative,neutral,negative +"Not only one but several contributions made by him will establish him as a great man for centuries to come. +","उन्होंने एक नहीं कई काम ऐसे किए जो सदियों तक उनकी महापुरुष के रुप में मान्यता कामय रखेंगे। +","unhonne ek nahin kee kam aese man for centuries tak unki mahapurush ke rup men manyta kamay rakhenge. +",5,3,positive,neutral,positive +"Your Lord knows very well what is in your hearts. If you are good, He is forgiving to those who are penitent. +","जो कुछ तुम्हारे जी में है उसे तुम्हारा रब भली-भाँति जानता है। यदि तुम सुयोग्य और अच्छे हुए तो निश्चय ही वह भी ऐसे रुजू करनेवालों के लिए बड़ा क्षमाशील है +","jo kuchh lord hearts men hai use tumhara rab bhali-bhanti janta hai. yadi penitent suyogy aur achchhe hue to nishchay hi vah bhi aese rujoo karnevalon ke lie good kshmashil hai +",6,2,positive,neutral,positive +"This excessive amount of skin cells form the skin lesions of psoriasis. +","यही अधिकाधिक त्वचा कोशिकाओं का झड़ाव त्वचा पर छालरोग के घाव पैदा कर देता है। +","yahi adhikadhik skin excessive ka jharav skin par psoriasis ke lesions paida kar deta amount +",5,5,negative,negative,neutral +"They also wanted to be treated as equals in a democratic society. +","उन्होंने यह इच्छा भी व्यक्त की कि एक जनतांत्रिक समाज में उनके साथ समानता का व्यवहार हो। +","unhonne yah ichchha bhi vyakt ki ki ek democratic society men unke sath samanta ka vyavhar ho. +",9,2,neutral,negative,neutral +"if culture changes us, as indeed it does, +","अगर संस्कृति हमें परिवर्तित करती हो, जो कि वह वाकई करती है - +","agar snskriti hamen parivartit karti ho, jo ki vah vakee karti hai - +",9,1,neutral,neutral,neutral +"Commercial recovery of germanium has been mainly achieved from zinc and zinc - copper - lead ores, germanite and fly ash from coals. +","जर्मेनियम वाणिज्यक रूप में मुख्यतया जिंक, जिंक-तांबा-सीसा अयस्कों, जर्मेनाइट तथा कोयले की फ्लाई एश से प्राप्त होता है। +","germanium commercial roop men mukhyatya zinc , jink-tanba-sisa copper , jarmenait tatha coals ki ash lead se prapt hota recovery +",7,2,neutral,neutral,neutral +"A fruit of subfamily Maloideae of the family Rosaceae. +","रोसकशया वंश के मेलोडिया उपवंश का एक फल. +","rosakashya family ke melodiya upfamily ka ek phal +",8,3,neutral,neutral,neutral +"By no means! Surely it is a flaming fire +","(मगर) ये हरगिज़ न होगा +","magar ye means n hoga +",6,0,negative,neutral,negative +"She said, “My Lord, how can I have a child, when no man has touched me? ” He said, “It will be so. God creates whatever He wills. To have anything done, He only says to it, ‘Be, ’ and it is. ” +","वह बोली, ""मेरे रब! मेरे यहाँ लड़का कहाँ से होगा, जबकि मुझे किसी आदमी ने छुआ तक नहीं?"" कहा, ""ऐसा ही होगा, अल्लाह जो चाहता है, पैदा करता है। जब वह किसी कार्य का निर्णय करता है तो उसको बस यही कहता है 'हो जा' तो वह हो जाता है +","vah boli , lord god ! lord yahan child kahan se anything , jabki mujhe kisi man ne chhuaa tak nahin kaha , aesa hi anything , allah jo chahta hai , paida karta hai. jab vah kisi kary ka nirnay karta hai to usko bas yahi kahta hai ho ja to vah ho jata hai +",8,2,neutral,neutral,positive +"We 'll do the microbiology of it in the future +","हम भविष्य में इस बात का सूक्ष्म जीव विज्ञान है, लेकिन यह +","microbiology future men is bat ka sookshm jiv vijnjan hai , lekin yah +",5,0,neutral,neutral,neutral +"Advanced training of intelligence officers is conducted by the Intelligence Bureau. +","गुप्तचर अधिकारियों के उन्नत प्रशिक्षण का काम गुप्तचर विभाग द्वारा किया जाता है। +","intelligence officers ke advanced training ka kam intelligence bureau dvara kiya jata hai. +",9,1,neutral,neutral,positive +"THE PLAYS OF BHAVABHUT1 But the main spring of dramatic action in the Uttararamacharita is psychological. +","किन्तु उत्तर-रामचरित में नाटकीय क्रियाकलापों का मुख्य स्रोत मनोवैज्ञानिक है। +","kintu uttar-ramachrit men dramatic kriyaklapon ka main spring psychological hai. +",8,1,neutral,neutral,positive +"Padhya and Brahmbhatt, who painstakingly gathered facts on the lake, produced satellite pictures that showed the presence of a lake. +","पाध्या और ब्रह्मंभट्टं ने पूरी कोशिश करके तथ्य जुटाए और उपग्रह से खींची गई तस्वीरें पेश की, जिनसे वहां ज्हील होने की पुष्टि होती थी. +","padhya aur showed the presence koshish painstakingly gathered facts aur upagrah se khinchi gee tasviren pesh ki, jinse vahan jhil hone ki pushti hoti thi +",6,2,neutral,neutral,neutral +"So it tasted the evil result of its conduct, and the end of its affair was perdition. +","तो उन्होने अपने काम की सज़ा का मज़ा चख लिया और उनके काम का अन्जाम घाटा ही था +","to unhone apne affair ki evil ka maza conduct liya aur unke affair ka anjam ghata hi tha +",7,4,negative,negative,negative +"Sending a message with an empty subject line +","कोई रिक्त विषय पंक्ति के साथ एक संदेश भेजें (e) +","koee empty subject line ke sath ek sndesh bhejen e +",9,1,negative,neutral,negative +"Opposition politicians such as those of the rightist Jamaat - e - Islami are already criticising the General 's alleged gullibility in putting his faith on the US. +","दक्षिणपंथी जमाते-इस्लमी जैसी विपक्षी पार्टियां अमेरिका पर भरोसा करने की जनरल की कथित मूर्खता की आलचना कर रही हैं. +","dakshinpnthi putting his faith partiyan amerika par bharosa karne ki janaral ki kathit moorkhta ki aalachna kar rahi hain +",6,2,negative,negative,negative +"Error sending ""% s"" to% s +","""% s"" को% s में भेजने में त्रुटि +","error ko error men bhejne men truti +",6,2,negative,negative,negative +"Suddenly , one of the hawks made a flashing dive through the sky , attacking the other . +","अकस्मात एक चील ने आसमान में तेजी से डुबकी लगाई और दूसरी चील पर हमला कर दिया । +","made a flashing ne aasman men teji se dubki lagaee aur hawks made par hamla kar diya . +",3,3,neutral,neutral,negative +"They would, you know, throw it back at you. +","वे इस खेल को आप पर वापस फेंक देंगे. +","ve is khel ko aap par vapas phenk denge +",5,8,negative,neutral,neutral +"He said, “This is my staff; I support myself on it, and I knock down leaves for my sheep with it, and there are other uses for me in it. ” +","उसने कहा, ""यह मेरी लाठी है। मैं इसपर टेक लगाता हूँ और इससे अपनी बकरियों के लिए पत्ते झाड़ता हूँ और इससे मेरी दूसरी ज़रूरतें भी पूरी होती है।"" +","usne kaha , yah meri staff leaves i isapar tek lagata hoon aur other apni bakriyon ke lie patte uses hoon aur other meri doosri zaroorten bhi poori hoti leaves +",6,0,neutral,neutral,positive +"Windows that should be use alpha blur by default +","विंडोज़ जिसे मूलभूत रूप से अल्फा धुंधला का प्रयोग करना चाहिए +","windows jise default roop se alpha blur ka use karna chahie +",8,3,neutral,neutral,neutral +"Dr Bhanu may have been persuaded to step in because a business partner is close to former chief minister S. Bangarappa, who in turn is related to Rajkumar. +","भानु को भूमिका निभाने के लिए शायद इसलिए तैयार किया गया कि एक व्यावसायिक साज्हीदार के पूर्व मुयमंत्री एस. बंगारप्पा से, जो राजकुमार के रिश्तेदार हैं, निकट संबंध हैं. +","dr ko minister nibhane ke lie turn islie taiyar kiya gaya ki ek vyavsayik partner ke former chief es bngarappa se , jo rajkumar ke rishtedar hain , nikat business hain +",6,2,neutral,neutral,neutral +"where they will hear no idle talk, +","वहाँ कोई लग़ो बात सुनेंगे ही नहीं +","vahan koee idle talk sunenge hi nahin +",9,1,neutral,negative,negative +"it is clear that in vadic era puran and history were kept on the same level +","इनसे यह स्पष्ट है कि वैदिक काल में पुराण तथा इतिहास को समान स्तर पर रखा गया है। +","inse yah clear hai ki vaidik era men vadic tatha history ko same level par rakha gaya hai. +",6,1,neutral,neutral,positive +"Don 't get pulled into that rush... into that storm. +","उस भीड़ में खींचे नहीं चले जाना है.... उस तूफ़ान मे। +","us bhir don pulled nahin chale jana hai us toofan me. +",7,2,neutral,negative,neutral +"Casual workers are paid wages per man - day. +","दिहाडी मजदूरों को मजदूरी का भुगतान श्रम-दिन के आधार पर किया जाता है। +","dihadi workers ko wages ka bhugtan shram-din ke casual par kiya jata man +",9,0,neutral,neutral,positive +"He would search for sure - fire devices of making bombs. +","बम बनाने के नुस्ख़े तलाश करता। +","bombs banane ke nuse talash sure +",7,2,neutral,neutral,neutral +"Excavations made in Malabar have proved the existence of chambers in which massive earthenware urns had been kept. +","मालाबार में खुदाई के कमरों में रखे हुए बड़े-बड़े बर्तन मिले हैं जिनमे शव रखे जाते थे। +","malabar men excavations ke kamron men rakhe hue bare-bare earthenware mile hain jinme massive rakhe jate the. +",7,1,neutral,neutral,neutral +"They noticed Chandu Menon steadily enjoying handfuls of the pudding as if nothing had happened. +","उन्होंने देखा कि चन्दु मेनन खुब मजे से खाने पर ऐसे हाथ साफ करने में मशगूल हैं जैसे कुछ हुआ ही नहीं। +","unhonne nothing ki chandu pudding khub maje se khane par aese hath saph karne men mashgool hain jaise kuchh huaa hi nahin. +",6,3,neutral,neutral,positive +"The story of 'Sudas' is taken from the Rig Veda. +","सुदामा की कहानी ऋग्वेद से ली है। +","sudama ki story rigved se li hai. +",9,1,neutral,neutral,negative +"Crowding also brings about other factors of destruction such as disease and malnutrition. +","भीड़-भाड़ भी विनाश के अन्य कारणों को जन्म देती है, जैसे बीमारी और अपर्याप्त पोषण। +","bhir-bhar bhi destruction ke other factors ko janm deti hai , jaise disease aur aparyapt poshan. +",9,0,negative,negative,negative +"that's right, a $1 billion - +","जी हाँ, 10 करोड़ डॉलर्ज़ - +","ji han, 10 billion dlarz - +",5,5,neutral,neutral,neutral +"Revitalization of cooperative institutions is central to the success of this agenda. +","इस कार्यक्रम की सफलता के लिए सहकारी संस्थाओं को फिर से प्राणवंत बनाना अत्यंत आवश्यक है। +","is karyakram ki saphalta ke lie cooperative institutions ko phir se pranvnt banana institutions is central +",7,2,positive,neutral,positive +"Of the people there are some who say: ""We believe in Allah and the Last Day;"" but they do not (really) believe. +","कुछ लोग ऐसे हैं जो कहते हैं कि हम अल्लाह और अन्तिम दिन पर ईमान रखते हैं, हालाँकि वे ईमान नहीं रखते +","kuchh people aese hain jo kahte hain ki ham allah aur antim din par eeman rakhte hain, halanki ve eeman nahin rakhte +",9,2,neutral,neutral,neutral +"Of his party was also Abraham; +","और इबराहीम भी उसी के सहधर्मियों में से था। +","aur ibrahim bhi usi ke sahadharmiyon men se tha. +",8,4,neutral,neutral,positive +"Find out how long the job will take or agree on a set time for collection, and check how the garage will want you to pay the bill. +","पता कीजिए कि क्या काम व पुर्ज़ों की वारंटी है या नहीं । +","set garage ki kya job v collection ki varnti hai ya nahin . +",8,1,neutral,neutral,positive +"I hope you 're here to find out what does it take to go from an idea to a business. +","मुझे आशा है कि आप कर रहे हैं यहाँ यह क्या करता है खोजने के लिए एक विचार से एक व्यवसाय के लिए जाने के लिए ले लो। +","i aasha hai ki aap kar rahe hain yahan yah kya karta hai khojne ke lie ek idea se ek business ke lie jane ke lie le lo. +",4,1,neutral,neutral,positive +"While interpreting the power of it, Supreme Court also said that it is only a tribunal, which decides the election schedules, and holding election is his work. +","सुप्रीम कोर्ट ने भी उसकी शक्तियों की व्याख्या करते हुए कहा कि वह एकमात्र अधिकरण है जो चुनाव कार्यक्रम निर्धारित करे चुनाव करवाना केवल उसी का कार्य है +","supreme court ne bhi power shaktiyon ki vyakhya karte hue kaha ki vah ekmatr tribunal hai jo election schedules nirdharit kare election karvana keval usi ka work hai +",6,1,neutral,neutral,positive +"Foot - wear should not be uncomfortable and should not hamper the free movements of the feet. +","जूते को असुविधा-जनक और पैर की सुचारु गति में बाधा पहुंचाने वाला नहीं होना चाहिए। +","joote ko asuvidha-janak aur pair ki sucharu gati men badha pahunchane vala nahin hona chahie. +",4,7,neutral,neutral,negative +"Now, a simple way for you to start +","अब, तुम शुरू करने के लिए एक सरल तरीका +","ab , tum shuroo karne ke lie ek simple way +",9,0,positive,neutral,neutral +"But we have very special warmth for Nepal and we think that any relationship which we build up or trade relations or economic co - operation will be to our mutual benefit. +","लेकिन हमारे मन में नेपाल के लिए विशेष प्यार है और हम सोचते हैं कि उससे जो भी सम्बंध हम विकसित करेंगे, चाहे व्यापारिक सम्बंध हो या आथिर्क सहयोग वे दोनों ही देशों के लिए लाभदायक होंगे। +","lekin hamare man men nepal ke lie vishesh pyar hai aur ham sochte hain ki usse jo bhi sambndh ham viksit karenge, chahe vyaparik sambndh ho ya aathirk sahyog ve relations or economic ke lie labhdayak honge. +",10,0,positive,positive,positive +"It is indeed a happy occasion for me this evening to participate in the inauguration of the International Conference on Natural Fibres, which has been organized to mark the conclusion of the Platinum Jubilee Celebrations of the National Institute of Research on Jute and Allied Fibre Technology (NIR-JAFT). +","अंतरराष्ट्रीय प्राकृतिक रेशा सम्मेलन, जिसे राष्ट्रीय जूट और संबंधित रेशा प्रौद्योगिकी अनुसंधान के प्लेटिनम जुबली समारोह के स्थापना के अवसर पर आयोजित किया गया है, के उद्घाटन में आज की शाम भाग लेना मेरे लिए वास्तव में खुशी का मौका है। +","antarrashtriy natural international conference , jise national joot aur snbndhit international technology research ke platinum conclusion samaroh ke sthapna ke occasion par aayojit kiya gaya hai , ke inauguration men aaj ki sham bhag lena mere lie vastav men happy ka mauka hai. +",7,0,positive,positive,positive +"11)In sanskrit sentence words can be placed in any order. +","११) संस्कृत वाक्यों में शब्दों को किसी भी क्रम में रखा जा सकता है। +","sanskrit snskrit words men shabdon ko kisi bhi order men rakha ja sakta hai. +",6,0,neutral,neutral,positive +"The number of columns that a child spans +","स्तंभों की संख्या जो संतति तक फैला है +","number of columns jo spans tak phaila hai +",6,2,neutral,neutral,positive +"Please fill in empty pile first. +","कृपया खाली ढेर को पहले भरें. +","kripya empty pile ko pahle fill +",7,3,neutral,neutral,positive +"As a barrister, I was well aware of the difficulties of proving the truth of statements giving rise to libel proceedings. +","एक वकीलके नाते मैं मानहानिवाल बातोंको सिद्ध करनेकी कठिनाइयोंको जानता था। +","ek vakilke rise i manhanival batonko siddh karneki kathinaiyonko aware tha. +",7,0,neutral,negative,positive +"Another program on your computer added an extension that may change the way Chrome works. +","आपके कंप्यूटर पर किसी अन्य प्रोग्राम ने एक्सटेंशन जोड़ा है, जो Chrome के काम करने के तरीके को बदल सकता है. +","aapke computer par kisi any added an extension jora hai, jo Chrome ke kam karne ke tarike ko badal sakta hai +",7,1,neutral,neutral,neutral +"The label used for menu items and buttons that activate this action. +","मेनू मद व बटन के लिये लेबल जो इस क्रिया को सक्रिय करता है. +","menu items v buttons ke liye label jo is action ko sakriy karta hai +",8,2,neutral,neutral,neutral +"In this too, their situation was fundamentally different from mine. +","इस प्रश्न को लेकर भी मेरे और उनके दृष्टिकोण में भारी अन्तर था। +","is prashn ko lekar bhi mere aur unke drishtikon men bhari antar tha. +",10,0,neutral,neutral,neutral +"du of dx is equal to cosine of x. +","du dx की कोज्या एक्स के लिए बराबर है। +","du dx ki cosine eks ke lie equal hai. +",8,1,neutral,neutral,negative +"Or you may be unable to work because of a serious illness or disability. +","या फिर आप किसी गंभीर बीमारी या फिर विकलांगता के कारण काम नही कर सकेंगे । +","ya phir aap kisi serious illness ya phir disability ke karan unable nahi kar sakenge . +",5,1,negative,negative,negative +"Shares of best companies which have very important effect on the share market. +","श्रेष्ठ कंपनियों के शेयर्स जो शेयर बाजार को बहुत प्रभावित करने वाले हों। +","shreshth companies ke effect jo share market ko bahut prbhavit karne vale hon. +",9,0,positive,positive,positive +"On the passage from the Gate to the Central Hall from where the procession passes, red baize cloth is spread. +","जहाँ से शोभायात्रा गुजरती है अर्थात् मुख्य द्वार से केन्द्रीय कक्ष तक लाल कालीन बिछाया जाता है। +","jahan se procession passage hai arthat central gate se kendriy hall tak red kalin bichhaya jata hai. +",7,1,neutral,neutral,neutral +"Inflammation of the portal vein was observed in the examined patient. +","रोगी की जांच में प्रतिहारी शिरा के सूजन का पता चला. +","patient ki janch men prtihari shira ke soojan ka pata chala +",9,0,neutral,negative,neutral +"He was appreciated a lot for his role opposite Rajesh Khanna and Rekha and he also got Filmfare award for best supporting actor. +","राजेश खन्ना और रेखा के विपरीत इनकी सहायक भूमिका में इन्हें बेहद सराहा गया और इन्हें सर्वश्रेष्ठ सहायक कलाकार का फिल्मफेयर पुरस्कार दिया गया। +","rajesh khanna aur rekha ke viprit inki sahayak role men inhen behad lot gaya aur inhen best sahayak actor ka filmfare award diya gaya. +",8,2,positive,positive,positive +"Truth is the same to all nations, he had said, but each nation has its lies which it speaks of as its idealism. +","उन्होंने कहा भी था, सत्य सभी राष्ट्र् के लिए एक समान है, लेकिन हर राष्ट्र के पास अपने अपने झूठ भी होते हैं, जिसे वह अपने आदर्शवाद के तौर पर बघारते हैं। +","unhonne kaha bhi tha , truth sabhi rashtr ke lie ek same hai , lekin har nation ke pas apne apne jhooth bhi hote hain , jise vah apne idealism ke taur par bagharte hain. +",8,2,neutral,neutral,positive +"Internal error: UID in invalid format: %s +","आंतरिक त्रुटि:अवैध प्रारूप में UID: %s +","internal truti:avaidh invalid format UID: s +",7,2,negative,neutral,negative +"Vedant philosophy has strengthened his faith. +","वेदांत-दर्शन से उनका विश्वास और भी दृढ़ हो गया है। +","philosophy se unka vishvas aur bhi dri ho gaya faith +",5,3,positive,negative,positive +"Droupadi is an emanation of Mahashakti, the Power Creatrix, as well. +","द्रौपदी महाशक्ति का भी स्रोत है और सृष्टि सत्ता का भी। +","droupadi emanation ka bhi srot hai aur srishti power ka bhi. +",5,1,neutral,neutral,positive +"In this there is, certainly, evidence (of the Truth). But most of them have no faith. +","यक़ीनन इसमें (भी क़ुदरत) ख़ुदा की एक बड़ी निशानी है मगर उनमें से अक्सर ईमान लाने वाले ही नहीं +","truth ismen bhi evidence uda ki ek bari nishani hai magar unmen se aksar eeman lane vale hi nahin +",6,2,neutral,neutral,negative +"Unable to connect to the Internet +","इंटरनेट से कनेक्ट होने में असमर्थ +","internet se connect hone men unable +",7,6,negative,neutral,neutral +"We established between them and the town that We had blessed, other towns nearby, and thus made it easier to travel. We told them, ""Travel there safely day and night"". +","और हम अहले सबा और (शाम) की उन बस्तियों के दरमियान जिनमें हमने बरकत अता की थी और चन्द बस्तियाँ (सरे राह) आबाद की थी जो बाहम नुमाया थीं और हमने उनमें आमद व रफ्त की राह मुक़र्रर की थी कि उनमें रातों को दिनों को (जब जी चाहे) बेखटके चलो फिरो +","aur other ahle saba aur night ki un town ke darmiyan jinmen hamne barakat ata ki thi aur chand bastiyan sare rah aabad ki thi jo baham travel thin aur hamne day aamad v rapht ki rah murrar ki thi ki day raton ko dinon ko jab easier chahe bekhatke chalo phiro +",8,2,positive,neutral,positive +"So the fact that when we tried to figure out x 's that would +","तो सच है कि जब हम बाहर एक्स कि होता यह पता लगाने की कोशिश की +","to fact hai ki jab ham bahar x ki hota yah pata lagane ki koshish ki +",8,4,neutral,negative,neutral +"The Reserve Bank has stated that the company has passed resolutions at its Board of Directors’ level and a special resolution by the shareholders, agreeing for enhancing the limit for the purchase of its equity shares and convertible debentures by FIIs / RFPIs. +","रिज़र्व बैंक ने बताया है कि कंपनी ने अपने निदेशक मंडल स्तर पर संकल्प पारित किए हैं और शेयरधारकों द्वारा एक विशेष संकल्प पारित किया गया है जिसमें एफआईआई/आरएफपीआई द्वारा इसके इक्विटी शेयरों और परिवर्तनीय डिबेंचरों की खरीद की सीमा में वृद्धि करने पर सहमति बनी है। +","rizarv bank has stated hai ki knpni ne apne nideshak mndal star par snkalp parit kie hain aur sheyardharkon dvara ek vishesh snkalp parit kiya gaya hai jismen ephaaeeaaeeaarephpiaaee dvara iske ikviti sheyron aur parivartniy dibenchron ki kharid ki enhancing the limit karne par sahamti bani hai. +",3,3,neutral,neutral,positive +"But if he was of the deniers [who were] astray, +","और अगर झुठलाने वाले गुमराहों में से है +","aur agar deniers vale astray men se hai +",7,1,neutral,neutral,negative +"(18) ""company in which the public are substantially interested""a company is said to be a company in which the public are substantially interested— +","(18) ''वह कंपनी जिसमें जनता पर्याप्त हितबद्ध है''- किसी कंपनी को ऐसी कंपनी, जिसमें जनता82 पर्याप्त रूप से हितबद्ध है, तब कहा जाता है जब– +","18 vah company jismen public paryapt interested hai - kisi company ko aesi company , jismen janta82 paryapt roop se interested hai , tab kaha jata hai jab +",7,3,neutral,neutral,neutral +"The male condom is any of the effective and safe method of contraception. +","पुरुष कंडोम गर्भ-निरोधक का सबसे प्रभावी और सुरक्षित उपाय है। +","male condom garbh-nirodhak ka sabse effective aur safe contraception hai. +",10,0,neutral,neutral,positive +"At the centre, remains the card scheme provider like the ‘National Payments Corporation’ (NPCI) for clearing and settlement. +","इस स्कीम के केंद्र में ‘राष्ट्रीय भुगतान निगम’ जैसे कार्ड स्कीम प्रदाता होते हैं जो समाशोधन तथा भुगतान करते हैं। +","is skim ke kendr men rashtriy bhugtan nigam jaise card scheme provider hote hain jo clearing and settlement karte hain. +",8,1,neutral,neutral,positive +"And we know how to write that in decimal form. +","और हम जानते हैं की इसे कैसे दसमलव के रूप में लिखते. +","aur ham jante hain ki ise kaise decimal ke form men likhte +",9,2,neutral,neutral,neutral +"Failed to move temporary file “%s” to final location “%s”: %s +","“%s” अस्थायी फ़ाइल को अंतिम अवस्थिति “%s” में भेजने में विफल: %s +","s temporary file ko final location s failed failed to move: s +",5,3,negative,neutral,negative +"“ Well . . . so I can do things , ” he had responded . “ And so I can change those things that I don ' t want to happen . ” +","“ इसलिए कि मैं कुछ कर सकूं , ” ऊंट चालक ने कहा , “ और उन चीजों को बदल सकूं जिन्हें मैं घटित होते हुए नहीं देखना चाहता ! ” +","islie ki i kuchh kar sakoon , oont chalak ne kaha , aur un chijon ko badal sakoon jinhen i ghatit hote hue nahin dekhna chahta ! +",7,2,neutral,neutral,positive +"The blood pressure measured when the atria and ventricles are relaxed and filled with blood. +","हृदय गति की वह माप जब अलिंद और निलय शिथिल हों तथा रक्त से भरे हों। +","hriday gati ki vah map jab atria and ventricles shithil hon tatha rakt se bhare hon. +",7,1,neutral,neutral,positive +"Ladies and Gentlemen, manpower and technology are the prime drivers of industrial progress. +","देवियो और सज्जनो, जनशक्ति और प्रौद्योगिकी, औद्योगिक प्रगति के प्रमुख प्रेरक हैं। +","ladies aur sajjno, manpower and technology, industrial progress ke prime drivers hain. +",9,0,positive,positive,positive +"“If you 're not failing every now and again, it' s a sign you 're not doing anything very innovative. ” - Woody Allen +","“यदि आप बार बार नहीं गिर रहे हैं तो इसका अर्थ है कि आप कुछ नया नहीं कर रहे हैं. ”-वुडी एलन +","yadi aap bar bar nahin sign rahe hain to iska arth hai ki aap kuchh naya nahin kar rahe hain -vudi woody +",7,2,neutral,neutral,positive +"On top of this building there is a big tomb +","इस इमारत के ऊपर एक वृहत गुम्बद सुशोभित है। +","is building ke top ek big tomb sushobhit hai. +",8,1,neutral,neutral,positive +"Kindness, seriousness and restraint were the balance column +","दया विचारशीलता और संयम इसके आधार स्तम्भ थे। +","kindness seriousness aur restraint iske aadhar column the. +",9,2,positive,negative,positive +"These dealt with matters arising during periods of the first and second Emergencies proclaimed in 1962 and 1971. +","इनका संबंध उन मामलों से था जो 1962 और 1971 में उदघोषित आपात उपबंध पहले और दूसरे आपातो के दौरान पैदा हुए। +","inka snbndh un mamlon se tha jo 1962 aur 1971 men udghoshit aapat upbndh pahle aur doosre aapato ke dauran paida hue. +",8,2,neutral,neutral,neutral +"causing no headiness or intoxication. +","न उसमें कोई ख़ुमार होगा और न वे उससे निढाल और मदहोश होंगे। +","n usmen koee headiness hoga aur n ve usse headiness or intoxication honge. +",7,5,neutral,neutral,negative +"Administer to any party to arbitration +","पंच निर्णय के लिए पक्षकार को सौंप देना +","arbitration nirnay ke lie party ko saunp administer +",5,1,neutral,neutral,positive +"So the fence would have been broken if there really had been a leopard. +","अतः यदि चीता वहां सचमुच में गया होता तो बाड़ी कहीं से टूटी मिलती। +","ata yadi leopard vahan sachmuch men gaya hota to bari kahin se tooti milti. +",9,2,negative,neutral,negative +"and Our command is but a single [word], like the twinkling of an eye. +","और हमारा आदेश (और काम) तो बस एक दम की बात होती है जैसे आँख का झपकना +","aur hamara command aur single to bas ek dam ki word hoti hai jaise eye ka twinkling +",6,1,neutral,neutral,positive +"I do not wish to take any hasty step, nor would you wish to take it. +","मैं जल्दबाजी में कोई कदम नहीं उठाना चाहता, न आप जल्दबाजी में कोई कदम उठाना चाहेंगे। +","i hasty men koee kadam nahin uthana chahta , n aap hasty men koee kadam uthana chahenge. +",5,4,neutral,neutral,negative +"For instance, for a Muslim child the first and most important part of his education was to learn to read Arabic, in order that he might be able to read the Quran. +","उदाहरण के तौर पर, एक मुसलमान बच्चे की शिक्षा का प्रथम और सवांधिक महत्वपूर्ण अंग था अरबी पढने का ज्ञान ताकि वह कुरान पढ सकें. +","instance ke taur par , ek muslim child ki education ka first aur savandhik important part tha arabic padhne ka jnjan taki vah quran padh saken +",7,1,positive,neutral,positive +"But he who is given the Record behind his back, +","और रह वह व्यक्ति जिसका कर्म-पत्र (उसके बाएँ हाथ में) उसकी पीठ के पीछे से दिया गया, +","aur rah vah vyakti jiska karm-patr uske baen hath men uski pith ke pichhe se diya gaya, +",8,1,neutral,neutral,neutral +"I can't find my provider and I wish to enter it manually: +","मैं अपने प्रदाता नहीं ढूँढ़ सकता हूँ और मैं इसे दस्ती रूप से दाखिल करना चाहता हूँ (m): +","main apne prdata nahin dhoon sakta find aur main ise dasti roop se dakhil karna chahta find m: +",5,1,negative,neutral,positive +"Reminds you when you forgot to add an attachment to a mail message. +","आपको याद दिलाता है जब आप डाक संदेश के लिए एक संलग्नक जोड़ना भूल गए. +","aapko reminds dilata hai jab aap mail message ke lie ek attachment jorna bhool ge +",7,6,neutral,neutral,positive +"An unknown application wants to change the password for the default keyring. You have to choose the password you want to use for it. +","एक अनजान अनुप्रयोग तयशुदा कीरिंग के लिए कूटशब्द बदलना चाहता है. आपको कूटशब्द चुनना है जिसे आप इसके लिये प्रयोग करना चाहते हैं. +","ek unknown application default keyring ke lie kootashabd badalna chahta hai aapko kootashabd chunna hai jise aap iske liye pryog karna chahte hain +",8,2,neutral,neutral,positive +"Allah destroys interest and gives increase for charities. And Allah does not like every sinning disbeliever. +","खुदा सूद को मिटाता है और ख़ैरात को बढ़ाता है और जितने नाशुक्रे गुनाहगार हैं खुदा उन्हें दोस्त नहीं रखता +","allah interest ko destroys hai aur airat ko baata hai aur jitne disbeliever gunahgar hain allah unhen dost nahin rakhta +",6,3,neutral,negative,positive +"because we can say one hundred will go into seven hundred and twenty - three. +","क्योंकि हम कह सकते हैं एक सौ सात सौ और बीस-तीन में जाना होगा। +","kyonki ham kah sakte hain ek sau sat sau aur twenty men jana hoga. +",4,6,neutral,neutral,neutral +"The Indo-Japanese forces advanced rapidly on all the three sectors of the wide front . +","भारतीय जापानी सेनाएं दीर्घ सीमांत के तीनों सेक़्टरों में तेजी से आगे बढ़ रही थीं . +","bhartiy japani senaen dirgh simant ke forces advanced rapidly teji se aage ba rahi thin +",4,5,neutral,neutral,positive +"But a higher standard of material life has a cultural content only when it is imbued with, or serves as a means of attaining some ultimate moral value. +","किंतु उच्च स्तर के भौतिक जीवन संस्कृति का अंश तभी आता हैं, जबकि वह उसमें संश्लिष्ट हो उच्च नैतिक मूल्यों को प्राप्त करने का कोई माध्यम बने. +","kintu higher standard ke material life cultural ka content tabhi aata hain , jabki vah usmen ultimate ho higher moral moolyon ko prapt karne ka koee madhyam bane +",7,2,neutral,neutral,positive +"But the current is quite strong in the middle, so sit still. +","लेकिन बीच में धारा काफी तेज है, इसलिए पक्का होकर बैठना। +","lekin bich men dhara kaphi tej hai, islie pakka hokar baithna. +",5,8,positive,negative,positive +"Everything was in motionup and down and sideways and forwards. +","हर चीज हरकत में थी-ऊपर, नीचे, दायें, बायें, सामने। +","har chij harakat men thi-oopar, niche, dayen, bayen, samne. +",10,0,neutral,neutral,neutral +"These cows have straight top lines , level rumps , and sharp withers . +","इस नस्ल की गायों की सीधी ऊपरी रेखाएं , सम पिछली पीठ और नुकीले कन्धे होते हैं . +","is nasl ki gayon ki straight top lines , sam pichhli pith aur nukile kandhe hote hain +",9,0,neutral,neutral,positive +"The kingdom of Magadha was powerful, so Vishnugupta decided to go to Pataliputra and persuade the Nanda king Dhanananda to attack the Greeks and drive them out of India. +","चूंकि मगध शक्तिशाली राज्य था इसलिए विष्णुगुप्त ने पाटलिपुत्र जाकर नन्द राजा घनानन्द को इस बात के लिए राजी कराने का निश्चय किया कि वह यूनानियों पर आक्रमण करें और उन्हें भारत से मार भगाएं। +","choonki magadha powerful kingdom tha islie vishnugupt ne patliputr jakar nanda raja dhanananda ko is bat ke lie raji karane ka nishchay kiya ki vah greeks par aakraman karen aur unhen india se mar bhagaen. +",9,2,neutral,neutral,negative +"The arab and israeli war kept the tourist away from visiting these countries. +","अरब इज़राइल युद्ध ने इन देशों का दौरा करने से पर्यटक को दूर रखा। +","arab izrail war ne in countries ka daura karne se tourist ko door rakha. +",8,1,negative,neutral,negative +"Bull 's stomach has blown up. +","बैल का पेट फूल जाता है। +","bull ka stomach phool jata hai. +",8,0,negative,neutral,neutral +"“ That ' s the gospel truth , ” Čepek enthusiastically agreed . +","“ आपकी बात सोलह आने सही है । ” चेपक ने उत्साहपूर्वक हामी भरी । +","truth bat solah aane sahi hai . gospel čepek ne utsahpoorvak hami bhari . +",5,2,positive,neutral,positive +"Third Party guarantee (if mortgage could not be created before or at the time of disbursement). +","तृतीय पक्ष गारंटी (अगर संवितरण के समय या इससे पहले बंधक का सृजन नहीं किया जा सका है)। +","third paksh guarantee agar disbursement ke time ya isse pahle mortgage ka srijan nahin kiya ja saka hai . +",8,2,neutral,neutral,positive +"Its other important dimension is that it must provide impetus to such a campaign that endeavours to bring about desirable changes in the organisations, institutions and circumstances and thus aims at extirpating evils. +","इसका एक अन्य आयाम यह है कि इसके माध्यम से एक ऐसा अभियान चलाया जाये जो संगठनों, संस्थाओं और परिरिस्थितियों में आवश्यकतानुसार परिवर्तन लाने तथा इस प्रकार सामाजिक बुराइयों को खत्म करने का प्रयास करे। +","iska ek any aayam yah hai ki iske madhyam se ek aesa abhiyan chalaya jaye jo sngathnon, snsthaon aur pariristhitiyon men aavashyaktanusar parivartan lane tatha is prkar samajik buraiyon ko khatm karne ka pryas kare. +",8,0,neutral,negative,negative +"One consequence of this kind of segregation was that there was usually little mental companionship between husband and wife . +","इस तरह के अलगाव का एक परिणाम यह था कि साधारणतया पति और पत्नी के बीच सहचारिता नहीं थी . +","is tarah ke segregation ka ek consequence yah tha ki sadharanatya husband aur wife ke bich little nahin thi +",7,0,negative,neutral,neutral +"(a) no deduction shall be admissible under this section to the amalgamating or the demerged company for the previous year in which the amalgamation or the demerger takes place; and +","(क) समामेलक या अविलयित कंपनी को, उस पूर्ववर्ष के लिए, जिसमें समामेलन या अविलयन होता है, इस धारा के अधीन कोर्इ कटौती अनुज्ञेय नहीं होगी; और +","previous amalgamating ya demerged company ko , us poorvavarsh ke lie , jismen samamelan ya demerger hota hai , is section ke adhin kori deduction admissible nahin hogi aur +",7,6,neutral,neutral,negative +"National integration is essential for the idea of India to grow. +","भारत के विकास के विचार के लिए राष्ट्रीय अखंडता अत्यावश्यक है। +","india ke essential ke idea ke lie national integration atyavashyak hai. +",6,2,positive,neutral,neutral +"It is, therefore, rare. +","इसलिए वह बहुत विरल होता है। +","islie vah bahut viral hota rare +",6,0,neutral,negative,neutral +"The IT sector has positioned India globally as a major services hub, becoming a major exporter of IT, BPO and software services. +","सूचना और प्रौद्योगिकी क्षेत्र ने भारत को सूचना प्रौद्योगिकी,बीपीओ तथा सॉफ्टवेयर सेवाओं का प्रमुख निर्यातक बनाते हुए एक प्रमुख सेवा केंद्र के रूप में विश्व में स्थापित कर दिया है। +","soochna aur praudyogiki sector ne bharat ko soochna praudyogiki , bpo tatha software services ka major exporter banate hue ek major seva hub ke roop men vishv men sthapit kar diya hai. +",8,4,positive,positive,neutral +"Directory% s is not writable +","% s निर्देशिका लिखने योग्य नहीं +","s directory likhne yogy nahin +",9,2,negative,neutral,neutral +"No, I understood perfectly. +","नहीं, मैंने ठीक से समझा है, दीदी। +","nahin , mainne thik se samjha hai , didi. +",7,6,positive,neutral,positive +"And it 's the only college where we don' t give a certificate. +","और अकेला ऐसा कॉलेज जहाँ हम सर्टिफ़िकेट नहीं देते हैं। +","aur akela aesa college jahan ham give nahin dete hain. +",4,1,negative,neutral,neutral +"gradual recovery of health after illness +","रोगग्रस्त होने के बाद स्वास्थ्य में क्रमिक सुधार +","illness hone ke bad health men gradual sudhar +",10,0,neutral,neutral,negative +"Your demand being so reasonable, no impartial person would even suggest that you should moderate it. +","आपकी मांग ऐसी है कि कोई निष्पक्ष मनुष्य उसमें काटछांट करनेकी बात सुझा ही नहीं सकता। +","aapki mang aesi hai ki koee impartial person usmen katchhant karneki bat sujha hi nahin sakta. +",8,0,negative,negative,negative +"get our egotism out of the way. +","अपने अहंकरवाद रास्ते से हटा देना है. +","apne egotism raste se hata dena hai +",9,0,negative,neutral,negative +"Find out how long the job will take or agree on a set time for collection, and check how the garage will want you to pay the bill. +","पता कीजिए कि क्या काम व पुर्ज़ों की वारंटी है या नहीं । +","pata long ki kya kam v pay the bill hai ya nahin . +",3,3,neutral,neutral,positive +"What quantity should be added to both sides of this equation +","क्या मात्रा इस समीकरण के दोनों पक्षों के लिए शामिल किया जाना चाहिए +","kya quantity is equation ke sides pakshon ke lie shamil kiya jana chahie +",8,1,neutral,neutral,neutral +"We must now utilize our enlarged capacities to raise the general standards of living. +","हमें अब अपनी बढ़ी हुई क्षमता का उपयोग जीवन के आम स्तर को ऊंचा उठाने के लिए करना होगा। +","hamen ab apni bai huee utilize our enlarged jivan ke aam star ko ooncha uthane ke lie karna hoga. +",7,0,positive,neutral,neutral +"I throw a ball and it 's going to go up in the air. +","मैं एक गेंद फेंक और इसे हवा में ऊपर जाना जा रहा है। +","i ek ball phenk aur ise air men oopar jana ja raha hai. +",7,2,neutral,neutral,neutral +"Somebody sang before him a song which goes thus: ” I feel I am a poor man when people do n 't ask gifts of me. +","किसी ने उसके सामने इसक प्रकार का गीत गाया: ” जब लोग मुझसे दान नहीं मांगते तो जान पड़ता है कि दरिद्र व्यक़्ति हूं. +","kisi ne uske i somebody prkar ka song gifts : jab people ask dan nahin mangte to jan parta hai ki poor man hoon +",3,1,negative,negative,negative +"There were problems applying the diff% 1 to the file% 2. +","डिफ़% 1 को फ़ाइल% 2 में लागू करने में समस्याएँ हैं. +","problems 1 ko file 2 problems applying karne men samasyaen hain +",7,2,negative,neutral,negative +"The only cohesive factor was trade, which had been initiated in the Mauryan period, as a stable government ensured communication between various parts of the empire and encouraged active internal trade. +","इस काल का एकमात्र संगत उपादान व्यापार था जो मौर्य काल में प्रारंभ किया गया था क्योंकि स्थिर सरकार ने साम्राज्य के विभिन्न भागों में संचारण सुनिश्चित किया था तथा सक्रिय आंतरिक व्यापार को प्रोत्साहित किया था। +","is kal ka ekmatr sngat upadan vyapar tha jo maury kal men prarnbh kiya gaya tha kyonki sthir sarkar ne samrajy ke vibhinn bhagon stable government ensured kiya tha tatha active internal trade ko protsahit kiya tha. +",7,0,neutral,positive,positive +"But his words fell on deaf ears, for was he not the poet of a nation defeated and enslaved? +","लेकिन उनकी वाणी किन्हीं बहरे कानों में पड़ रही थी, क्या वे स्वयं एकपराजित और परतंत्र देश के कवि नहीं थे? +","lekin unki words kinhin deaf ears men par rahi thi , kya ve svyn ekaprajit aur partntr nation ke poet nahin the +",7,3,negative,neutral,negative +"Sacred place of Hindus located in the district of Faizabad in the state of Uttar Pradesh. +","उत्तर प्रदेश राज्य में फैज़ाबाद जिले में स्थित हिन्दूओं की एक पवित्र जगह। +","uttar prdesh rajy men phaizabad jile men sthit hindooon ki ek sacred place +",6,4,neutral,neutral,neutral +"In old Tamil literature also one comes across the murasu quite often . +","प्राचीन तमिल साहित्य में मुरसु का भी कई जगह उल्लेख हुआ है . +","old tamil literature men murasu ka bhi kee jagah ullekh huaa hai +",8,3,neutral,neutral,neutral +"Please confirm whether Is duly sanctioned or not? +","प्राण विधिवत मंजूर किया हुआ है-पुष्टि भेजें। +","pran duly sanctioned kiya huaa hai-pushti bhejen. +",8,2,neutral,neutral,positive +"Whatever you possess is transient and whatever is with God is everlasting. We will recompense those who exercise patience with their due reward and even more. +","तुम्हारे पास जो कुछ है वह तो समाप्त हो जाएगा, किन्तु अल्लाह के पास जो कुछ है वही बाक़ी रहनेवाला है। जिन लोगों ने धैर्य से काम लिया उन्हें तो, जो उत्तम कर्म वे करते रहे उसके बदले में, हम अवश्य उनका प्रतिदान प्रदान करेंगे +","god pas jo kuchh hai vah to samapt ho reward , kintu allah ke pas jo kuchh hai vahi due rahnevala hai. jin transient ne patience se kam liya unhen to , jo uttam karm ve karte rahe uske badle men , ham avashy unka prtidan prdan karenge +",7,2,positive,neutral,positive +"This is convenient as the members of the family can give a constant care to the vegetables during leisure and the wastewater from the bathrooms and kitchen can easily be diverted to the vegetable beds. +","यह सुविधाजनक स्थान होता है क्योंकि परिवार के सदस्य खाली समय में साग-सब्जियों पर ध्यान दे सकते हैं तथा रसोईघर व स्नानघर से निकले पानी आसानी से सब्जी की क्यारी की ओर घुमाया जा सकता है। +","yah suvidhajanak sthan hota hai kyonki parivar ke sadasy family can give sag-sabjiyon par dhyan de sakte hain tatha rasoeeghar v snanaghar se nikle pani aasani se sabji ki kyari ki or ghumaya ja sakta hai. +",6,1,positive,neutral,positive +"Once your decisions are known, money can be obtained. +","एक बार आपके निर्णय ज्ञान हो जाने के बाद पैसा प्राप्त किया जा सकेगा। +","ek bar aapke decisions jnjan ho jane ke bad money prapt kiya ja sakega. +",8,0,neutral,neutral,neutral +"If they deny you, so have other messengers been denied before you, who came with clear signs, scriptures and enlightening book. +","फिर यदि वे तुम्हें झुठलाते ही रहें, तो तुमसे पहले भी कितने ही रसूल झुठलाए जा चुके है, जो खुली निशानियाँ, 'ज़बूरें' और प्रकाशमान किताब लेकर आए थे +","phir yadi ve tumhen jhuthlate hi rahen, to tumse pahle bhi kitne hi rasool messengers been denied hai, jo clear signs, zbooren aur enlightening book lekar aae the +",5,6,neutral,neutral,positive +"Handa is charged with using his connections in the Congress to influence the Delhi government . +","हांड़ा पर दिल्ली सरकार को प्रभावित करने के लिए कांग्रेस में अपने संबंधों के इस्तेमाल का आरोप है . +","influence the delhi government ko prbhavit karne ke lie kangres men apne snbndhon ke istemal ka aarop hai +",4,5,neutral,neutral,negative +"You can select one or more devices. +","आप एक या अधिक उपकरण चुन सकते हैं. +","aap ek ya adhik devices select sakte hain +",8,2,neutral,neutral,neutral +"But we will come back, once again, +","लेकिन हम वापस आ गए हैं, दोबारा, +","lekin ham vapas aa ge hain , dobara , +",8,3,positive,neutral,neutral +"A natural outer covering or coat, such as the skin of an animal or the membrane enclosing an organ. +","प्राकृतिक बाहरी कवर या कोट, जैसे पशुओं की खाल या अंग को ढकने वाली झिल्ली। +","natural outer kavar ya coat , jaise animal ki skin ya organ ko dhakne vali jhilli. +",9,2,neutral,neutral,positive +"It belongs to the seventh century if not earlier , and was perhaps intended originally for the Buddhist creed , but was adopted later for a Vishnu temple , the principal deity being a recumbent Vishnu , or Anantasayin . +","यदि यह और पहले का नहीं , तो भी सातवीं शताब्दी का बना है और शायद मूल रूप से बौद्ध मत के लिए था , किंतु बाद में विष्णु मंदिर में रूपांतरित कर दिया गया जिसमें प्रमुख देवता लेटे हुए विष्णु या अनंतशायी हैं . +","yadi yah aur pahle ka nahin , to bhi seventh century ka bana hai aur shayad mool roop se bauddh mat ke lie tha , kintu bad men vishnu mndir men roopantrit kar diya gaya jismen prmukh devta lete hue vishnu ya anntshayi hain +",9,2,neutral,neutral,neutral +"Belonging to a particular denomination, he had his own customs. +","एक विशिष्ट संप्रदाय का होने के नाते उसकी अपनी कुछ प्रथाएं थीं। +","ek particular denomination ka hone ke nate uski apni kuchh customs thin. +",8,2,neutral,neutral,neutral +"Sudhir, run and call Panu Babu. +","सुधीर, तुम दौड़कर जाओ, पानू बाबू को फौरन बुला लाओ। +","sudhir , tum daurakar jao , panu babu ko phauran bula lao. +",8,0,neutral,neutral,neutral +"a protection against every rebel satan; +","और प्रत्येक सरकश शैतान से सुरक्षित रखने के लिए +","aur pratyek rebel satan se surakshit rakhne ke lie +",6,4,neutral,neutral,negative +"Sometimes the Idol of tenderness or affection of Ram makes him think him as his mother and he himself is his son| +","कभी-कभी वह राम को वात्सल्य मूर्ति के रूप में माँ मान लेते हैं और खुद को उनका पुत्र। +","kabhi-kbhi vah ram ko affection idol ke roop men mother man lete hain aur khud ko unka tenderness +",7,1,neutral,negative,positive +"You can see a gleam in their eye. +","और आपको उनकी आँखों में एक चमक दिखेगी। +","aur aapko unki eye men ek gleam dikhegi. +",10,0,neutral,neutral,neutral +"There are cases in which the constituencies are more than 200 miles away from Lucknow. +","ऐसे भी निर्वाचन-क्षेत्र हैं, जो लखनऊसे दो सौ मीलसे भी ज्यादा दूर हैं। +","aese bhi nirvachan-kshetr hain , jo lakhnoose do more milse bhi jyada door cases +",8,3,neutral,neutral,neutral +"When it is obvious that the goals cannot be reached, don 't adjust the goals, adjust the action steps. +","जब यह साफ हो कि लक्ष्यों को प्राप्त नहीं किया जा सकता है, तो लक्ष्यों में फेरबदल न करें, बल्कि अपनी प्रयासों में बदलाव करें. +","jab yah saph ho ki goals ko prapt nahin kiya ja sakta hai, to adjust the action n karen, balki apni action steps badlav karen +",8,2,negative,negative,negative +"citizens have self - organized political protests and +","नागरिकों ने खुद को राजनैतिक विरोधों में आयोजित किया और +","citizens ne khud ko political protests men aayojit kiya aur +",9,2,neutral,negative,negative +"Download in progress. Do you want to save the task? +","डाउनलोड प्रगति में है. क्या आप इस कार्य को सहेजना चाहते हैं? +","download progress men hai kya aap is task ko sahejna chahte hain +",9,0,neutral,neutral,positive +"two into forty is twenty times. +","चालीस में दो बीस गुना है। +","forty men do twenty times hai. +",9,2,neutral,neutral,neutral +"Select the number of horizontal video windows in which to split the video +","वीडियो विभाजित करने के लिए क्षैतिज वीडियो विंडोज़ की संख्या का चुनाव करें +","video vibhajit karne ke lie horizontal video windows ki number ka chunav karen +",8,2,neutral,neutral,positive +"Rules for grant of leave to the employees of All India Services due to special disability. +","अखिल भारतीय सेवा के कर्मचारियों को विशेष निशक्तता के कारण छुट्टी देने के लिए नियम। +","akhil bhartiy due to special ko special disability ke grant of leave ke lie niyam. +",7,2,neutral,neutral,positive +"And here you'll see Daniel throw this hoop into the air, +","और यहाँ आप देखेंगे डानिएल हूप को ऊपर उड़ाते हुए, +","aur yahan aap throw this hoop ko oopar urate hue, +",5,3,neutral,neutral,neutral +"In the year 712, Mohammad Bin Kasim, the commander of Persia defeated the King of Sindh. +","सन् 712 में फारस के सेनापति मुहम्मद बिन क़ासिम ने सिन्ध के राजा को हरा दिया । +","year 712 men persia ke commander muhammad bin kasim ne sindh ke king ko hara diya . +",9,2,neutral,neutral,negative +"and the reason for that is it 's entirely dark in there - +","और उसका कारण है की वहां धुप्प अंधकार है। +","aur uska reason hai ki vahan dark andhkar hai. +",8,1,negative,neutral,neutral +"But there was music in the family. +","लेकिन परिवार का वातावरण संगीतमय था। +","lekin family ka vatavaran sngitamay tha. +",8,4,neutral,neutral,neutral +"And this is what he ended up concluding that he saw. +","और यह वो था जो उन्होंने निष्कर्ष निकाला कि उन्होंने क्या देखा। +","aur yah vo tha jo unhonne nishkarsh nikala ki ended up concluding +",4,6,neutral,negative,neutral +"During this period of his stay in London he visited the Houses of Parliament and heard Gladstone and John Bright speak on the Irish Home Rule. +","लंदन में इस प्रवास के दौरान उन्होंने संसद भवन को देखा और आयरिश होम रूल पर ग्लैडस्टोन और जॉन ब्राइट को भाषण देते हुए सुना. +","london men is period ke dauran unhonne houses home ko dekha aur irish rule rool par gladstone aur john bright ko bhashan dete hue heard +",5,5,neutral,neutral,positive +"He said, ‘Indeed you cannot have patience with me! +","उसने कहा, ""तुम मेरे साथ धैर्य न रख सकोगे, +","usne kaha, tum mere sath patience n rakh sakoge, +",8,3,negative,negative,neutral +"“ Could he see you ? ” +","“ क्या उसने तुम्हें देख लिया ? ” +","kya usne tumhen dekh liya +",9,0,neutral,neutral,neutral +"So We inspired him: “Build the Ark under Our observation and by Our inspiration. And when Our decree comes to pass, and the oven boils over, load into it two pairs of every kind, together with your family, except those of them against whom the word has already been pronounced. And do not speak to me concerning those who did wrong; for they are to be drowned. ” +","तब हमने उसकी ओर प्रकाशना की कि ""हमारी आँखों के सामने और हमारी प्रकाशना के अनुसार नौका बना और फिर जब हमारा आदेश आ जाए और तूफ़ान उमड़ पड़े तो प्रत्येक प्रजाति में से एक-एक जोड़ा उसमें रख ले और अपने लोगों को भी, सिवाय उनके जिनके विरुद्ध पहले फ़ैसला हो चुका है। और अत्याचारियों के विषय में मुझसे बात न करना। वे तो डूबकर रहेंगे +","tab hamne uski or prkashna ki ki oven boils ke samne aur hamari prkashna ke anusar nauka bana aur phir jab hamara aadesh aa jae aur toofan umar pare to pratyek prjati men se ek-ek jora usmen rakh le aur apne logon ko bhi, sivay unke jinke viruddh pahle faisla ho chuka hai. aur atyachariyon ke vishay men mujhse bat n karna. ve to doobakar rahenge +",3,5,neutral,positive,positive +"It is now our duty to produce from their literature some clear testimonies as to this subject and cognate theories of other nations. +","अब उनके (हिन्दुओं के) साहित्य से इस विषय और अन्य जातियों के सजातीय सिद्धांतों के संबंध में कुछ स्पष्ट साक्ष्य प्रस्तुत करना हमारा कर्तव्य हो जाता है. +","ab unke hinduon ke sahity se is vishay aur any subject and cognate siddhanton ke snbndh men kuchh clear testimonies prastut karna hamara kartavy ho jata hai +",8,0,neutral,negative,positive +"But man wishes to do wrong (even) in the time in front of him. +","बल्कि मनुष्य चाहता है कि अपने आगे ढिठाई करता रहे +","balki man wishes hai ki apne aage dhithaee karta rahe +",8,1,neutral,negative,negative +"Honestly - I was the same for a long time. +","मैं भी एक ज़माने मैं अनजान था. +","i bhi ek time i anjan tha +",7,0,neutral,neutral,positive +"but whoever goes beyond this is a transgressor; +","तो जो लोग उनके सिवा और के ख़ास्तगार हों तो यही लोग हद से बढ़ जाने वाले हैं +","to jo log unke siva aur ke astgar hon to yahi log transgressor se ba jane vale hain +",4,4,negative,neutral,neutral +"We have created the heavens and the earth and all that is between the two in accordance with the requirements of truth and wisdom. The Hour is surely coming. So overlook [their faults] with gracious forgiveness. +","हमने तो आकाशों और धरती को और जो कुछ उनके मध्य है, सोद्देश्य पैदा किया है, और वह क़ियामत की घड़ी तो अनिवार्यतः आनेवाली है। अतः तुम भली प्रकार दरगुज़र (क्षमा) से काम लो +","created the heavens aur dharti ko aur jo kuchh unke madhy hai, soddeshy paida kiya hai, aur vah iyamat ki ghari to anivaryta aanevali hai. ata tum bhali prkar darguzar kshma se kam lo +",4,4,positive,neutral,positive +"Choose the version of the Kolab Server you are using. +","कोलाब संस्करण जो आप इस्तेमाल कर रहे हैं उसे चुनें. +","kolab version jo aap istemal kar rahe hain use server +",5,1,neutral,neutral,neutral +"this expression, it 's the derivative of y. +","इस अभिव्यक्ति, यह व्युत्पन्न y का है। +","is expression, yah derivative y ka hai. +",8,2,neutral,neutral,neutral +"But then how to act compassionately if you don't have compassion? +","पर आप सहानुभूति पूर्वक कार्य कैसे करोगे अगर आप में करुणा न हो +","par aap act compassionately kary kaise karoge agar aap men karuna n ho +",7,4,negative,neutral,positive +"We then put him ashore on a plain, and he was sick. +","अन्ततः हमने उसे इस दशा में कि वह निढ़ाल था, साफ़ मैदान में डाल दिया। +","antta hamne use is dasha men ki vah sick tha , plain maidan men dal diya. +",8,3,negative,neutral,negative +"The existing or ongoing projects in the MMP category, being implemented by various Central Ministries, States, and State Departments would be suitably augmented and enhanced to align with the objectives of NeGP. +","एमएमपी श्रेणी में मौजूदा या जारी परियोजनाओं का कार्यान्वायन विभिन्न केंद्रीय मंत्रालयों, राज्यों और राज्यर विभागों द्वारा उचित रूप से बढ़ाया जाएगा तथा इसे एनईजीपी के उद्देश्योंे के साथ मिलने के लिए उन्नात बनाया जाएगा। +","mmp category men maujooda ya ongoing projects ka karyanvayan various central ministries , states aur rajyar departments dvara uchit objectives se baaya jaega tatha ise eneejipi ke uddeshyone ke sath milne ke lie unnat banaya jaega. +",8,2,neutral,positive,neutral +"In collaboration with the Small Industries Development Bank of India (SIDBI), financial assistance is provided to set up projects in tiny / small scale industrial sector, service enterprises and also for undertaking expansion, technology upgradation, modernisation and revival of viable sick units in SSI Sector. +","भारतीय लघु उद्योग विकास बैंक (सिडबी) के सहयोग से छोटे/लघु उद्योग और सेवा उद्यम लगाने के साथ ही लघु उद्योगों की रुग्ण इकाइयों के प्रौद्योगिकी उन्नयन, विस्तार और आधुनिकीकरण में वित्तीय सहयोग दिया जाता है +","bhartiy small india development bank sidbi ke collaboration se chhotelghu india aur service udyam lagane ke sath hi small industries ki sick units ke technology upgradation , expansion aur modernisation men financial collaboration diya jata hai +",6,1,positive,neutral,negative +"Round them will be passed a cup of pure wine; +","उनके बीच विशुद्ध पेय का पात्र फिराया जाएगा, +","unke bich pure pey ka passed a cup, +",5,3,neutral,neutral,neutral +"Indeed in that are signs, and indeed, We are ever testing [Our servants]. +","इसमें शक नहीं कि हसमें (हमारी क़ुदरत की) बहुत सी निशानियाँ हैं और हमको तो बस उनका इम्तिहान लेना मंज़ूर था +","ismen servants nahin ki signs hamari udarat ki bahut si nishaniyan hain aur hamko to bas unka imtihan lena mnzoor tha +",7,0,neutral,neutral,neutral +"Enable audible notifications when new messages arrive. +","नए संदेश आने पर श्रव्य सूचनाएं सक्षम करें. +","new messages enable par audible notifications saksham karen +",6,1,neutral,neutral,neutral +"Show disk view 'Type' column on startup +","'प्रकार' स्तंभ को आरंभन पर डिस्क दृश्य दिखाएँ +","column stnbh ko startup par disk show dikhaen +",7,1,neutral,neutral,neutral +"A muscle that retracts an organ. +","एक पेशी जो किसी अंग का आकुंचन करती है. +","ek peshi jo kisi organ ka aakunchan karti hai +",9,2,neutral,neutral,neutral +"Look after the vitamins and minerals in your food; +","अपने भोजन में विटामिन एवं मिनरल्स के प्रति सजग रहें. +","apne look men vitamins evn minerals ke prti sajag rahen +",5,1,positive,neutral,neutral +"The Skene 's glands is more commonly known as the G - spot. +","स्कीन ग्रन्थियाँ सामान्यतः जी-स्पॉट के रूप में जानी जाती हैं. +","skin granthiyan samanyta ji-spt ke roop men g more hain +",7,3,neutral,neutral,neutral +"The males die and are absorbed. +","नर कृमि नष्ट होकर अवशोषित कर लिए जाते हैं। +","males krimi nasht hokar avshoshit kar lie jate hain. +",5,7,negative,negative,negative +"They have to be fired by the spirit of patriotism and a sense of social responsibility. +","उनमें देशभक्ति तथा सामाजिक उत्तरदायित्व का ज़ज्बा जगाने की जरूरत है। +","unmen patriotism tatha social responsibility ka spirit jagane ki jaroorat hai. +",8,3,negative,neutral,negative +"And seek ye out strongholds, that haply ye may last for ever? +","और बड़े बड़े महल तामीर करते हो गोया तुम हमेशा (यहीं) रहोगे' +","aur bare bare mahal tamir karte ho goya tum hamesha yhin rahoge +",5,8,neutral,negative,positive +"And We shall bring hell in front of the disbelievers. +","और उस दिन जहन्नम को इनकार करनेवालों के सामने कर देंगे +","aur us disbelievers hell ko inkar karnevalon ke front kar denge +",5,1,negative,neutral,negative +"The pre-poll phase (registration of voters) and +","मतदान-पूर्व चरण (मतदाताओं का रजिस्ट्रीकरण) तथा +","matdan-poorv phase matdataon ka rajistrikaran tatha +",9,1,neutral,neutral,neutral +"He worked there with utmost steadfastness and devotion. +","उन्होंने वहॉं रहकर दत्तचित्तता के साथ काम किया। +","unhonne utmost devotion dattchittta ke sath kam kiya. +",6,3,positive,neutral,positive +"People of Ahmedia community do not accept Muhammed as the last prophet and also call themselves the followers of Islam. +","अहमदिय्या समुदाय के लोग मुहम्मद साहब को अन्तिम नबी नहीं मानते हैं और स्वयं को इस्लाम का अनुयायी भी कहते हैं। +","ahamdiyya samuday ke log muhammad sahab ko antim nabi nahin mante hain aur svyn ko followers of islam bhi kahte hain. +",8,1,negative,negative,negative +"Sending a message with an _ empty subject line +","कोई रिक्त विषय पंक्ति के साथ एक संदेश भेजें (_ e) +","koee empty subject line ke sath ek sndesh bhejen _ e +",7,1,negative,neutral,negative +"Mrs de Leeuw then invited her to teach at a new school at London. +","इसके बाद श्रीमती डा. लीयू ने उसे लंदन के एक नए स्कूल में अध्यापन-कार्य के विए आमंत्रित किया। +","iske bad mrs da liyoo ne use lndan ke ek ne skool men adhyapan-kary ke vie aamntrit kiya. +",8,0,neutral,neutral,neutral +"The President of India, Shri Pranab Mukherjee will visit Uttar Pradesh (Vrindavan, Mathura) tomorrow (November 18, 2015) where he will inaugurate the 500thyear celebrations of Sri Chaitanya Mahaprabhu’s advent in Vrindavan. He will also visit the Shri Radha Raman Temple. +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (18 नवम्बर, 2015) उत्तर प्रदेश (वृंदावन, मथुरा) की यात्रा करेंगे जहां वह श्री चैतन्य महाप्रभु के वृंदावन आगमन के 500वें वर्ष समारोह का उद्घाटन करेंगे। वह श्री राधा-रमण मंदिर के दर्शन करने भी जाएंगे। +","bharat ke shri pranab mukherjee mukharji kal 18 navambar, 2015 uttar prdesh vrindavan, mathura ki yatra karenge jahan vah shri chaitany mahaprbhu ke vrindavan aagaman ke 500ven varsh samaroh ka udghatan karenge. vah shri radha-raman mndir ke darshan karne bhi jaenge. +",5,8,neutral,neutral,neutral +"The house around them was settling down into unquiet sleep, but they were both wide awake. +","चारों ओर से उन्हें घेरता हुआ मकान अशान्त निद्रा में सो रहा था, किन्तु वे दोनों जाग रहे थे। +","charon or se unhen gherta huaa makan unquiet sleep men so raha tha, kintu ve wide awake rahe the. +",6,4,neutral,neutral,neutral +"It assists the government in formulating and implementing policies for national development. +","यह राष्ट्रीय विकास के लिए नीतियों के निर्माण और कार्यान्वयन में सरकार की मदद करती है। +","yah national development ke lie nitiyon ke formulating and implementing men assists the government karti hai. +",7,1,neutral,neutral,neutral +"such as projections and judgements of others... yes. +","हाँ, जैसे कि दूसरो के बारे में मानसिक कल्पनाएँ और राय। +","such , jaise ki others ke bare men mansik kalpnaen aur ray. +",6,5,neutral,neutral,positive +"UPS is below the critical level and this computer is about to shutdown. +","UPS गंभीरता स्तर से नीचे है और यह कंप्यूटर बंद होने के कगार पर है. +","UPS critical star se niche hai aur yah computer shutdown hone ke kagar par hai +",9,1,negative,neutral,negative +"They said, 'Nay, but we found our fathers so doing.' +","उन्होंने कहा, ""नहीं, बल्कि हमने तो अपने बाप-दादा को ऐसा ही करते पाया है।"" +","unhonne kaha , nahin , balki hamne to apne bap-dada ko fathers hi karte paya hai. +",7,2,neutral,neutral,neutral +"The backend for this address book refused to perform this query.% s +","इस पता पुस्तिका के लिए बैकेंड यह प्रश्न करने से मना किया.% s +","is address pustika ke lie backend yah prashn karne se mana kiya s +",8,0,negative,neutral,negative +"We cannot become what we need to be by remaining what we are +","हम जो हैं वही बने रहकर वह नहीं बन सकते जो कि हम बनना चाहते हैं। +","ham jo hain vahi bane rahakar vah nahin ban sakte jo ki ham banna chahte hain. +",9,0,neutral,negative,neutral +"“I feel hesitant, and my tongue does not speak fast, therefore make Haroon also a Noble Messenger. ” +","और (उनके झुठलाने से) मेरा दम रुक जाए और मेरी ज़बान (अच्छी तरह) न चले तो हारुन के पास पैग़ाम भेज दे (कि मेरा साथ दे) +","aur unke jhuthlane se mera dam ruk jae aur meri speak fast tarah n chale to harun ke pas paiam bhej de ki mera sath de +",8,0,neutral,neutral,positive +"There are some reserved parking zones for those car who show the orange badge on their windscreen, or you can sometimes park where generally parking is not permitted. < s > You and Your Body (उपयोगी +","संस्थाओं के पते पृष्ठ ३९ पर हैं) कई स्थानों पर पार्किंग स्थान, विशेषकर, उन कारों के लिये रिज़र्व रखे गये हैं जो अपने विंडस्क्रीन पर ओरेंज बैज का प्रगर्शन करते हैं, और आप सीमित समय के लिये उन स्थानों पर भी रूक सकते हैं, प्रायः जहां पार्क करने की अनुमति नहीं हैं। +","snsthaon ke pate prishth ३९ par hain kee sthanon par parking sthan, visheshakar, un karon ke liye rizarv rakhe gaye hain jo apne vindaskrin par orenj baij ka pragarshan karte hain, aur aap simit samay ke liye un sthanon par bhi rook sakte hain, park where generally karne ki anumti nahin hain. +",7,1,neutral,neutral,neutral +"He said: ” I ask you again to judge the accused by what is before you, on what you have heard in this room and what you have read of his writings. +","उन्होंने कहा ” मैं आपसे दोबारा आग्रह करता हूं कि आपके सामने जो आया है, आपने इस कक्ष में जो सुना है और जो अभियुक्त के लेखों में पढ़ा है, सिर्फ इसी आधार पर अभियुक्त पर फैसला दें. +","unhonne kaha main aapse dobara aagrah karta hoon ki aapke samne jo aaya hai, aapne is kaksh men jo suna hai aur jo abhiyukt ke lekhon men paa hai, sirph isi aadhar par abhiyukt par phaisla den +",7,3,neutral,neutral,negative +"When I'm not fighting poverty, I'm fighting fires +","जब मैं गरीबी के खिलाफ नहीं लड़ रहा होता, तब एक स्वयंसेवी +","jab i poverty ke khilaph nahin lar raha hota , tab ek fires +",7,3,neutral,neutral,positive +"Payment of property tax, electricity bills and water bills of colonies and office premises bills of vendors +","कालोनियों और कार्यालय परिसरों और प्रधान कार्यालय का संपत्ति कर, बिजली के बिलों, पानी के बिलों और विक्रताओं के बिलों का भुगतान +","colonies aur office premises aur prdhan office ka property kar , electricity ke bills , water ke bills aur vikrtaon ke bills ka payment +",8,4,neutral,neutral,neutral +"The focus now has to be on implementation of these agreements. +","अब इन समझौतों को अमल में लाने पर ध्यान देना होगा। +","ab in agreements ko amal men lane par dhyan dena hoga. +",7,6,neutral,neutral,positive +"Inflammation related to the tissues around the larynx. +","स्वरयंत्र के चारों ओर पाए जाने वाले ऊतक से संबंधी प्रदाह +","larynx ke charon or pae jane vale tissues se snbndhi inflammation +",8,1,negative,negative,neutral +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","vastav men eparchar kal exposure time ko diya gaya vigopan kal hai jo kisi optical system eparchar ke madhyam se chitr satah men kisi kendrbindu par aati hai. +",8,1,neutral,neutral,neutral +"The phase of cell cycle in which the size of the cell is increase and copy of a DNA is made. +","कोशिका चक्र में चरण जिसमें कोशिका के आकार में वद्धि होती है तथा डीएनए की प्रतिकृति निर्मित होती है +","phase of cell charan jismen koshika ke aakar men vaddhi hoti hai tatha increase and copy nirmit hoti hai +",5,1,neutral,neutral,positive +"Badi Maa and Dana Pani were written for Hindi films. +","बडी मॉँ और दाणा पाणी हिन्दी फिल्मों के लिए लिखे गए थे। +","badi mn aur dana pani hindi films ke lie likhe dana the. +",8,0,neutral,neutral,neutral +"As for those whose deeds weigh light in the scales—it is they who have ruined their souls, because they used to wrong Our signs. +","(और जिनके नेक अमाल के) पल्ले हलके होगें तो उन्हीं लोगों ने हमारी आयत से नाफरमानी करने की वजह से यक़ीनन अपना आप नुक़सान किया +","aur jinke nek amal ke deeds weigh light to unhin logon ne hamari aayat se napharmani karne ki vajah se yainan apna aap nusan kiya +",5,5,negative,neutral,negative +"They also wanted to be treated as equals in a democratic society. +","उन्होंने यह इच्छा भी व्यक्त की कि एक जनतांत्रिक समाज में उनके साथ समानता का व्यवहार हो। +","unhonne yah wanted bhi vyakt ki ki ek democratic society men unke sath samanta ka vyavhar ho. +",8,2,neutral,negative,neutral +"List of Governors of Tamil Nadu +","तमिल नाडु के राज्यपालों की सूची +","tamil nadu ke governors ki list +",10,0,neutral,neutral,neutral +"Once your decisions are known, money can be obtained. +","एक बार आपके निर्णय ज्ञान हो जाने के बाद पैसा प्राप्त किया जा सकेगा। +","ek bar aapke nirnay jnjan ho jane ke bad paisa prapt kiya ja sakega. +",4,7,neutral,neutral,neutral +"Cannot save to file ""{0}"". +","""{0}"" फ़ाइल में संग्रहित नहीं कर सकता है. +","0 save to file nahin kar sakta hai +",5,0,negative,neutral,negative +"This is how We reward the doers of good. +","मुबारक हम नेकोकारों को ऐसा ही बदला दिया करते हैं +","good ham doers ko aesa hi badla diya karte hain +",6,1,positive,positive,positive +"It is He who gave you hearing, sight, and hearts, but only few of you give thanks. +","हालाँकि वही वह (मेहरबान खुदा) है जिसने तुम्हारे लिए कान और ऑंखें और दिल पैदा किये (मगर) तुम लोग हो ही बहुत कम शुक्र करने वाले +","halanki hearing vah hearts sight hai jisne tumhare lie kan aur ऑnkhen aur dil paida kiye magar tum log ho hi bahut few shukr karne vale +",7,1,neutral,neutral,positive +"A measurement of change in prices. +","कीमतों में परिवर्तन को आंकने का एक पैमाना। +","change in prices ko aankne ka ek paimana. +",9,0,neutral,neutral,neutral +"No parent could be found in the tree for the path ""% s"" +","कोई जनक ""% s"" पथ के लिए तररू में नहीं मिल सका +","koee parent s path ke lie tree men nahin mil found +",4,5,neutral,neutral,negative +"'How well what he described as' my greatest fast 'helped to restore his normal cheer of spirits and good humour can be seen from the letter he dictated for Mira Behn three days later: I am dictating this immediately after the 3. 30 a. m. prayer while I am taking my meal such as a fasting man with prescribed food can take. +","जिसे उन्होंने मेरा सबसे बड़ा व्रत कहा था उसने उनके उल्लासपूर्ण और मनोविनोदी स्वभाव को किस सीमा तक वापस लौटाया, यह उस पत्र से स्पष्ट है जिसे उन्होंने तीन दिन बाद मीरा बहन के लिए लिखवाया थाः मै यह पत्र साढे. तीन बजे की प्रार्थना के फौरन बाद लिखवा रहा हूं जबकि मैं अपना वह भोजन कर रहा हूं जो एक व्रत रखनेवाले व्यक्ति के लिए निर्धारित है। +","jise unhonne mera sabse bara vrat kaha tha usne unke ullaspoorn aur manovinodi svbhav ko kis sima tak vapas lautaya, yah us patr se spasht hai jise unhonne tin din bad mira bahan ke lie likhvaya thaa mai yah patr sadhe tin baje ki prarthna ke phauran bad likhva raha hoon jabki main apna vah bhojan kar raha hoon jo ek vrat rakhnevale vyakti ke lie nirdharit hai. +",7,5,positive,neutral,positive +"And may it run forever, because it gives people like me a living. +","और ये हमेशा चलता रहे , क्योंकि ये मुझ जैसे लोगों को जीविका देती है. +","aur ye people chalta rahe , kyonki ye mujh jaise logon ko living deti hai +",7,2,positive,neutral,positive +"Though a good deal of it has now become redundant or useless, there are seminal ideas in our past culture that can be of, great use in guiding our future. +","यद्यपि इसका एक ख़ासा भाग फ़ालतू या निरर्थक हो गया है, फिर भी हमारी पारम्परिक संस्कृति में कुछ प्रारम्भिक विचार हैं जो हमारे भावी पथ-प्रदर्शन में बहुत उपयोगी हो सकते हैं। +","yadypi iska ek deal good faltoo ya redundant ho gaya hai , phir bhi hamari paramprik culture men kuchh prarambhik ideas hain jo hamare future path-pradarshan men bahut upyogi ho sakte past +",7,1,positive,neutral,positive +"So do not obey the deniers. +","अतः तुम झुठलानेवालों को कहना न मानना +","ata tum obey the deniers n manna +",5,2,neutral,neutral,positive +"Say: 'Obey Allah and obey the Messenger. If you turn away, upon him only rests what is laid upon him, and upon you rests what is laid on you. If you obey him, you shall be guided. It is only for the Messenger to deliver a clear message' +","(ऐ रसूल) तुम कह दो कि ख़ुदा की इताअत करो और रसूल की इताअत करो इस पर भी अगर तुम सरताबी करोगे तो बस रसूल पर इतना ही (तबलीग़) वाजिब है जिसके वह ज़िम्मेदार किए गए हैं और जिसके ज़िम्मेदार तुम बनाए गए हो तुम पर वाजिब है और अगर तुम उसकी इताअत करोगे तो हिदायत पाओगे और रसूल पर तो सिर्फ साफ तौर पर (एहकाम का) पहुँचाना फर्ज है +","ae rasool tum kah do ki uda ki itaat karo aur rasool ki itaat karo is par bhi agar tum sartabi karoge to bas rasool par itna hi tabli vajib hai jiske vah zimmedar kie ge hain aur jiske zimmedar tum banae ge ho tum par vajib hai aur agar tum uski itaat karoge to hidayat paoge aur rasool par to sirph saph taur par ehkam ka pahunchana pharj hai +",5,8,neutral,neutral,positive +"It provides the fundamental physics basis of nuclear energy development. +","यह मौलिक भौतिकी को न्यूक्लीय ऊर्जा विकास का आधार प्रदान करता है। +","yah fundamental physics ko nuclear energy development ka basis prdan karta hai. +",7,3,neutral,neutral,positive +"Transport Policy which includes fiscal concessions, and policy guidelines for rapid development of the mode and to encourage private sector participation in development of infrastructure and ownership and operation of inland vessels. +","इस नीति में अंतर्देशीय जहाजों के संचालन, स्वा मित्व और ढांचागत विकास में निजी क्षेत्र को बढ़ावा देने के लिए कई वित्तीय रियायतें और मार्ग दर्शन मौजूद हैं। +","is policy men transport vessels ke operation , sva ownership aur dhanchagat development men private sector ko baava dene ke lie kee fiscal concessions aur marg darshan maujood guidelines +",8,1,neutral,neutral,positive +"This bushy plant is a host in a plant pathosystem. +","यह झाड़ीदार पौधा पादप रोग-तंत्र में एक परपोषी है। +","yah bushy plant padap rog-tntr men ek host hai. +",8,4,neutral,neutral,neutral +"They distribute agricultural machinery; undertake wholesale, retail and foreign trade. +","यह कृषि यंत्रों, थोक तथा खुदरा बाजार एवं विदेशी व्यापार को भी वितरित एवं नियंत्रित करता है। +","yah agricultural machinery, thok tatha khudra bajar evn foreign trade ko bhi vitrit evn niyntrit karta hai. +",8,1,neutral,neutral,neutral +"He felt as if the surroundings were embracing him and the sky was within reach. +","उसे ऐसा लग रहा था मानो चारों दिशाएं उसे निविड़ता से घेर रही हों, आकाश मानो उसे छू रहा हो। +","use aesa reach raha tha mano charon dishaen use nivirta se gher rahi hon , sky mano use surroundings raha ho. +",6,4,positive,negative,neutral +"We should view the going of such a person not so much with sorrow, but with gratitude that we had the privilege of knowing her, that we had the privilege of her affection, that we had the privilege of being within her circle of radiance. +","ऐसी विभूति के प्रयाण पर हमें दुखी न होकर कृतज्ञता महसूस करनी चाहिए कि हमने उन्हें जाना, उनका प्यार पाया, उनके व्यक्तित्व के प्रभामंडल में रहने का गौरव प्राप्त किया। +","aesi vibhooti ke pryan par hamen dukhi n hokar kritajnjta mahsoos karni chahie ki hamne unhen jana, unka pyar paya, unke vyaktitv ke prbhamndal men rahne ka gaurav prapt kiya. +",7,4,positive,positive,positive +"The knife was used by the guide as a weapon. +","गाइड द्वारा एक हथियार के रूप में चाकू का इस्तेमाल किया गया था। +","guide dvara ek weapon ke roop men chakoo ka istemal kiya gaya tha. +",9,1,neutral,neutral,negative +"Any one document which provides customer information to the satisfaction of the bank will suffice +","कोई एक ऐसा दस्तावेज काफी होगा, जिसमें बैंक की संतुष्टि के अनुरूप ग्राहक सूचना हो +","koee ek aesa document kaphi hoga , jismen bank ki satisfaction ke anuroop customer information ho +",7,3,positive,neutral,positive +"Doppler radar is generally used in police radar systems and also for measuring the velocity of hurricanes. +","डॉपलर रडार का उपयोग आम तौर पर पुलिस रडार प्रणालियों में किया जाता है, इसके साथ ही इसका इस्तेमाल तूफान के वेग को मापने के लिए भी किया जाता है +","doppler radar ka upyog aam taur par police radar systems men kiya jata hai , iske sath hi iska istemal hurricanes ke velocity ko mapne ke lie bhi kiya jata hai +",9,0,neutral,neutral,neutral +"In response to popular demand, he would also include his old stage hits in his repertoire. +","जनता की मांग पर उन्होंने अपने पुराने सफल रंगमंच नाटक भी रंगपटल पर सम्मिलित किये। +","popular ki response par unhonne apne old saphal stage natak bhi repertoire par sammilit kiye. +",7,2,neutral,neutral,positive +"In a condolence message, the President has said, ""It was with profound sorrow that I learnt of the passing away ofShri Justice V.R. Krishna Iyer. +","राष्ट्रपति ने एक शोक संदेश में कहा है , "" मुझे न्यायमूर्तिश्रीवी आर कृष्ण अय्यर के निधन के बारे में जानकर अत्यंत दुःख हुआ है। +","president ne ek condolence message men kaha hai , i justice profound krishn ayyar ke nidhan ke bare men janakar atynt duakh huaa hai. +",7,0,neutral,neutral,neutral +"Therefore listen not to the Unbelievers, but strive against them with the utmost strenuousness, with the (Qur 'an). +","अतः इनकार करनेवालों की बात न मानता और इस (क़ुरआन) के द्वारा उनसे जिहाद करो, बड़ा जिहाद! (जी तोड़ कोशिश) +","ata inkar karnevalon ki bat n manta aur is uraan ke dvara unse jihad karo, bara jihad! ji tor koshish +",7,1,neutral,neutral,neutral +"The amount of commission paid to the broker. +","दलाल को दी जाने वाली कमीशन की राशि। +","broker ko di jane vali amount of commission +",8,1,neutral,neutral,neutral +"and We lay veils upon their hearts lest they understand it, and in their ears heaviness. And when thou mentionest thy Lord only in the Koran, they turn in their traces in aversion. +","और उनके दिलों पर भी परदे डाल देते है कि वे समझ न सकें। और उनके कानों में बोझ (कि वे सुन न सकें)। और जब तुम क़ुरआन के माध्यम से अपने रब का वर्णन उसे अकेला बताते हुए करते हो तो वे नफ़रत से अपनी पीठ फेरकर चल देते है +","aur unke dilon par bhi lay veils dete hai ki ve samajh n saken. aur unke ears heaviness bojh ki ve thou mentionest thy aur jab tum uraan ke madhyam se apne rab ka varnan use akela batate hue karte ho to ve nafarat se apni pith pherakar chal dete hai +",5,1,neutral,neutral,positive +"Move ~ a onto the five of spades. +","~ a को एक हुकुम का पंजा पर ले जाएँ +","a ko ek spades ka pnja par le move +",7,1,neutral,negative,neutral +"in that we have way more data that we know what to do with, +","में है कि हम रास्ता अधिक डेटा है कि हम जानते हैं के साथ क्या करना है, +","men hai ki ham way more data hai ki ham jante hain ke sath kya karna hai , +",6,4,neutral,neutral,neutral +"Failed to get next auto increment value +","अगली स्वतः वृद्धि मूल्य प्राप्ति विफल हुई +","agli auto increment mooly prapti viphal huee +",7,4,negative,neutral,negative +"Under the Act, weight and measures also include 'weighing or measuring instrument' which means ""any object, instrument, apparatus or device, or any combination thereof, which is, or is intended to be, used, exclusively or additionally, for the purpose of making any weighment or measurement, and includes any appliance, accessory or part associated with any such object, instrument, apparatus or device"". +","अधिनियम के अंतर्गत, भार तथा माप में ""भार करने का मापन करने वाला उपकरण"" भी शामिल है जिसका अर्थ है ""कोई भी वस्तु उपकरण, यंत्र या युक्ति या उनका कोई भी संयोजक जिसका प्रयोग से अनन्य रूप से या अतिरिक्त रूप से किया जाता है या किया जाना आशयित है तथा इसमे ऐसी किसी वस्तु, उपकरण, उपस्कर या युक्ति से संबद्ध कोई उपकरण, सहायक सामग्री या पुर्जा शामिल है।"" +","act ke antargat , weight thereof combination men weight karne ka measurement karne vala measures bhi shamil hai jiska arth hai koee bhi object measures , yntr ya yukti ya unka koee bhi snyojak jiska pryog se anany roop se ya atirikt roop se kiya jata hai ya kiya jana aashyit hai thereof isme aesi kisi object , measures , upaskar ya yukti se snbaddh koee measures , accessory samagri ya part shamil hai. +",7,1,neutral,neutral,neutral +"And whomever We give a long life, We cause him to regress in creation. Then, will they not exercise their reason? +","और हम जिस शख्स को (बहुत) ज्यादा उम्र देते हैं तो उसे ख़िलक़त में उलट (कर बच्चों की तरह मजबूर कर) देते हैं तो क्या वह लोग समझते नहीं +","aur ham jis shakhs ko bhut long life dete hain to use ilat men ulat kar bachchon ki tarah majboor kar dete hain to kya vah log samajhte nahin +",7,1,neutral,neutral,positive +"And if their speed is zero, they 'll maintain that restfulness. +","और यदि उनकी गति शून्य है, तो वे उस restfulness को बनाए रखने देंगे। +","aur yadi unki speed shoony hai, to ve us restfulness ko maintain rakhne denge. +",8,1,neutral,neutral,neutral +"install the standard and TSC pumps +","मानक और टीएससी पंप स्थापित करें +","standard aur tiessi pumps install karen +",7,1,neutral,neutral,neutral +"Color to use for the bottom color - stop of the skydome - fallback gradient +","स्काइडोम फालबैक ढ़ाल के तलवर्ती रंग स्टॉप के लिए प्रयोग का रंग +","skydome fallback gradient ke talavarti color stp ke lie pryog ka color +",6,1,neutral,neutral,negative +"Apply a layer of fine manure +","उत्तम खाद की परत का उपयोग करना +","fine manure ki layer ka upyog karna +",8,2,neutral,neutral,positive +"two into forty is twenty times. +","चालीस में दो बीस गुना है। +","chalis men do forty is twenty +",5,1,neutral,neutral,neutral +"On the Day when you witness it, the suckling woman shall utterly neglect the infant she suckles, and every pregnant woman shall cast her burden, and you will see people as though they are drunk, when they are not drunk; but dreadful shall be Allah 's chastisement. +","जिस दिन तुम उसे देख लोगे तो हर दूध पिलाने वाली (डर के मारे) अपने दूध पीते (बच्चे) को भूल जायेगी और सारी हामला औरते अपने-अपने हमल (बेहिश्त से) गिरा देगी और (घबराहट में) लोग तुझे मतवाले मालूम होंगे हालाँकि वह मतवाले नहीं हैं बल्कि खुदा का अज़ाब बहुत सख्त है कि लोग बदहवास हो रहे हैं +","jis din tum use dekh loge to har doodh pilane vali dar ke mare apne doodh pite bachche ko bhool jayegi aur sari hamla aurte apne-apne hamal behisht se gira degi aur ghabrahat men log tujhe matvale maloom honge halanki vah matvale nahin hain balki khuda ka azab bahut sakht hai ki log badahvas ho rahe hain +",7,3,negative,neutral,neutral +"Is it possible for everyone to know one 's true nature? +","क्या हर कोई अपने सच्चे स्वरुप का जान सकता है? +","true possible koee apne sachche nature ka jan sakta hai +",3,0,neutral,neutral,positive +"And although , in the short term , the truth has many facets , the long-term truth is only one and unmistakable . +","और अल्पकाल में तो सत्य के कई पहलू हो सकते हैं , दीर्धकालीन सत्य केवल एक और सुस्पष्ट होता है . +","aur short men to truth ke kee facets ho sakte hain , dirdhkalin truth keval ek aur many hota hai +",4,7,neutral,neutral,positive +"The midrib which is present in the leaves of small leafy plants. +","पत्ती के केन्द्र जिसके छोटे पत्तेदार पौधों की पत्तियों में मौजूद है। +","leaves ke kendr jiske small leafy plants ki pattiyon men present hai. +",9,1,neutral,neutral,neutral +"and likewise to cherish my mother; He has not made me arrogant, unprosperous. +","और अपनी माँ का हक़ अदा करनेवाला बनाया। और उसने मुझे सरकश और बेनसीब नहीं बनाया +","aur apni mother ka likewise ada karnevala banaya. aur usne mujhe arrogant aur unprosperous nahin banaya +",6,2,positive,negative,positive +"The selected audio device was successfully opened but it is impossible to read data from this device. In case it is a pluggable device it may be sufficient to reconnect it. If not, or if it still is not accessible, please check your audio setup. +","चयनित ऑडियो युक्ति सफलतापूर्वक खोला गया लेकिन इस युक्ति से आंकड़ा पढ़ना असंभव है. उस स्थिति में यदि यह एक प्लगेबल युक्ति है यह पर्याप्त होगा इसे फिर कनेक्ट करना. यदि नहीं, या यदि यह अभी भी पहुँच योग्य नहीं है, कृपया अपना ऑडियो सेटअप जाँचें. +","selected audio device successfully opened gaya lekin is device se read data asnbhav hai us sthiti men yadi yah ek plgebal device hai yah paryapt hoga ise phir kanekt karna yadi nahin, ya yadi yah abhi bhi pahunch yogy nahin hai, kripya apna ऑdiyo setap janchen +",5,3,neutral,neutral,negative +"So, when you are free, strive hard, +","अतः जब निवृत हो तो परिश्रम में लग जाओ, +","ata jab free ho to strive hard lag jao, +",7,0,positive,neutral,positive +"Dinkar looked at them suspiciously. +","दिनकर उनकी तरफ शंका से देखा। +","dinkar unki taraph shnka se dekha. +",9,0,neutral,neutral,negative +"Open this bookmark in a new window +","इस पुस्तकचिह्न को नए विंडो में खोलें +","is bookmark ko new window men kholen +",9,2,neutral,neutral,neutral +"“ But , above all , I learned that these things are all so simple that they could be written on the surface of an emerald . ” +","“ मगर इस सबसे ज्यादा मैंने यह सीखा कि ये सब चीजें इतनी सरल हैं कि इन्हें नगीने की सतह पर भी लिखा जा सकता है । +","magar is sabse things i yah sikha ki ye sab chijen itni simple hain ki inhen emerald ki surface par bhi likha ja sakta hai . +",7,3,positive,neutral,neutral +"National Rail Museum, New Delhi +","राष्ट्रीय रेल संग्रहालय, नई दिल्ली +","national rail museum , new delhi +",5,8,neutral,neutral,neutral +"Bring me sheets of iron ""- until, when he had leveled [them] between the two mountain walls, he said,"" Blow [with bellows], ""until when he had made it [like] fire, he said,"" Bring me, that I may pour over it molten copper. "" +","(अच्छा तो) मुझे (कहीं से) लोहे की सिले ला दो (चुनान्चे वह लोग) लाए और एक बड़ी दीवार बनाई यहाँ तक कि जब दोनो कंगूरो के दरमेयान (दीवार) को बुलन्द करके उनको बराबर कर दिया तो उनको हुक्म दिया कि इसके गिर्द आग लगाकर धौको यहां तक उसको (धौंकते-धौंकते) लाल अंगारा बना दिया +","achchha to mujhe khin se lohe ki sile la do chunanche vah log lae aur ek bari divar banaee yahan tak ki jab dono sheets of iron divar ko buland karke unko barabar kar diya to unko hukm diya ki iske gird aag lagakar dhauko yahan tak usko dhaunkte-dhaunkte lal angara bana diya +",5,4,neutral,neutral,neutral +"For 5to 6days Suddodhana arranged a programme for naming ceremony and appointed 8 brahmin pandits to tell about the future. +","सुधोधना ने पांचवें दिन एक नामकरण समारोह आयोजित किया और आठ ब्राह्मण विद्वानों को भविष्य पढ़ने के लिए आमंत्रित किया। +","sudhodhna ne panchven din ek naming ceremony aayojit kiya aur aath brahmin pandits ko bhavishy pane ke lie aamntrit kiya. +",8,1,neutral,neutral,neutral +"Then he will take a look and sight him in the middle of hell. +","तो क्या तुम लोग भी (मेरे साथ उसे झांक कर देखोगे) ग़रज़ झाँका तो उसे बीच जहन्नुम में (पड़ा हुआ) देखा +","to kya tum log bhi mere sath use jhank kar dekhoge raz jhanka to use middle of hell para huaa dekha +",8,2,negative,neutral,negative +"Jute plants need a temperature ranging from 21 to 38 degrees Celsius and relative humidity of 70 to 80 per cent. +","पटसन के पौधों को 21 से 38 डिग्री सेलसियस तापमान तथा 70 से 80 प्रतिशत सापेक्ष आर्द्रता की जरूरत पड़ती हैं। +","patasan ke paudhon ko 21 se 38 digri selsiyas tapman tatha 70 se 80 prtishat sapeksh aardrta ki jaroorat parti hain. +",8,1,neutral,neutral,neutral +"16. Pitchblende and other uranium ores. +","16. पिचब्लेंड और अन्य यूरेनियम अयस्क। +","16 pichablend aur any uranium ayask. +",8,4,neutral,neutral,neutral +"By contrast , one LSD trip might result in psychological damage to somebody with latent mental illness . +","इसके विपरीत एलएसडी का एक ही बार दम लगाने से किसी प्रच्छन्न दिमाग़ी रोग वाले व्यक्ति को मनोवैग्यानिक हानि पहुँचने की संभावना हो सकती है । +","iske contrast lsd ka ek hi bar dam lagane se kisi latent trip illness vale vyakti ko manovaigyanik damage pahunchne ki snbhavna ho sakti hai . +",7,4,negative,negative,negative +"Committee on Health and Family Welfare: +","स्वास्थ्य और परिवार कल्याण संबंधी समितिः +","health aur family welfare committee samitia +",8,2,neutral,neutral,neutral +"(a) the provisions of any existing law; or +","(क) किसी वर्तमान विधि के उपबंधों पर, अथवा +","provisions kisi vartman law ke upbndhon par , athva +",7,1,neutral,neutral,neutral +"Now who will take rebukes on my behalf. +",", अब वहाँ मेरे स्थान पर कौन झिड़किए खायेगा? +",", ab vahan mere sthan par kaun jhirkie khayega +",10,0,negative,neutral,neutral +"For this reason also I am unable to uphold the contention of the said plea being not available to the plaintiff. +","इस कारण से भी मैं कथित अभिवाक़ के वादी के लिए उपलब्ध न होने के तर्क का समर्थन करने में असमर्थ हूँ. +","is reason se bhi main kathit abhiva ke plaintiff ke lie available n hone ke contention ka samarthan karne men unable hoon +",8,1,negative,neutral,neutral +"that could be created by things like cosmic rays, +","जो ब्रह्माण्डीय किरणो जैसी चीज के कारण होता है, +","jo things rays jaisi chij ke karan hota hai , +",7,1,neutral,neutral,positive +"Agriculture is mainly done to meet the food requirement of the family and livestock. +","खेती मुख्य रूप से परिवार तथा पशुओं की भोजन आवश्यकताओं के लिए की जाती है। +","kheti mukhy roop se family and livestock ki food requirement ke lie ki jati hai. +",9,1,neutral,neutral,neutral +"I realized that I was no longer the same runner I used to be, +","मुझे एहसास हुआ कि मैं वो धावक नहीं थी जो मैं हुआ करती थी, +","mujhe realized huaa ki main vo longer nahin thi jo main huaa karti thi, +",7,2,negative,neutral,negative +"Could not start% 1 application. +","अनुप्रयोग% 1 चला नहीं सका. +","anupryog 1 chala nahin saka +",7,6,negative,neutral,neutral +"The midrib which is present in the leaves of small leafy plants. +","पत्ती के केन्द्र जिसके छोटे पत्तेदार पौधों की पत्तियों में मौजूद है। +","patti ke kendr jiske small leafy plants ki pattiyon leaves of small +",7,0,neutral,neutral,neutral +"A revelation from the Beneficent, the Merciful Allah: +","यह अवतरण है बड़े कृपाशील, अत्यन्त दयावान की ओर से, +","yah revelation hai bare beneficent , atyant dayavan ki or se , +",8,3,positive,neutral,positive +"The period of heat in ewes lasts from 3 to 70 hours , with an average of 27 hours . +","भेड़ें 3 से 70 घण्टे तक गर्मी में रहती हैं.गर्मी की औसत अवधि 27 घण्टे होती है . +","ewes 3 se 70 lasts tak heat men rahti haingarmi ki average period 27 lasts hoti hai +",6,1,neutral,neutral,neutral +"The human and the divine, love of nature and of man, intuition and thought so mingle and interpenetrate in his consciousness that in his poetry, as in actual life, it is difficult to separate one from the other. +","मानवीय और दैवी, नैसर्गिक प्रेम और मानव-प्रेम, आत्म-बोध और विचार परस्पर उनकी चेतना में ठीक उसी प्रकार घुल-मिल जाते हैं जैसे कि उनके निजी जीवन में, और इन्हें एक-दूसरे से विलग करना कठिन हो जाता है। +","human aur divine , naisargik love aur manav-prem , aatm-bodh aur other paraspar unki consciousness men man usi nature ghul-mil actual hain jaise ki unke niji life men , aur inhen ek-doosre se vilag karna difficult ho jata poetry +",7,5,neutral,negative,positive +"And in this state, he is married and brings home a wife. +","इसी हालत मके उसका विवाह हो जाता है और पत्नी घर में ले आता है। +","isi state make uska married ho jata hai aur wife ghar men le aata hai. +",7,0,neutral,neutral,neutral +"Desai say this story is not suitable to him who frighted and win with died in real life why should i killed him in film. +","देसाई ने इनके बारे में कहा था कि ऐसे आदमी के लिए यह कहना बिल्कुल अनुपयुक्त होगा कि जो असली जीवन में मौत से लड़कर जीता हो उसे परदे पर मौत अपना ग्रास बना ले। +","desaee ne inke bare men kaha tha ki aese aadmi ke lie yah kahna bilkul anupyukt hoga ki jo asli jivan men maut se larakar jita ho use parde par maut apna gras bana le. +",4,6,negative,neutral,negative +"The First T-10 Tournament of the Rashtrapati Bhavan was won by Household Royals led by Meher Chand and Runners up was PBG Chargers led by Major Amit Bharadwaj. +","राष्ट्रपति भवन का पहला टी-10 टूर्नामेंट मेहरचंद के नेतृत्व में हाउस होल्ड रॉयल्स ने जीता तथा उप-विजेता टीम मेजर अमित भारद्वाज के नेतृत्व में पी बी जी चारजर्स रही। +","rashtrapti bhavan ka pahla ti-10 toornament meharchnd ke netritv men haus hold ryals ne jita tatha up-vijeta tim mejar amit bharadvaj ke netritv men pi bi ji charajars rahi. +",9,2,neutral,neutral,positive +"This group traveled in two ships to reach Jeddah in year 1577 and left for Mecca and Madina. +","ये जत्था दो पोतों में सूरत से जेद्दाह बंदरगाह पर १५७७ में पहुंचा और मक्का और मदीना को अग्रसर हुआ। +","ye group do ships men soorat se jeddah bndargah par year men pahuncha aur mecca aur madina ko agrasar huaa. +",8,3,neutral,neutral,neutral +"I think it starts household by household, under the same roof. +","मैं सोचती हूँ यह घर से शुरू होती है, एक ही छत के नीचे। +","i household same yah ghar se shuroo hoti hai , ek hi roof ke niche. +",7,1,neutral,neutral,neutral +"During sunset Puksi region of Shanghai- Sun is still not under the horizon but has reached the line of dense smog. +","सूर्यास्त के समय शंघाई का पुक्सी क्षेत्र अब तक सूरज अपने क्षितिज के नीचे तक नहीं डूबा है बल्कि यह धुंध (smog) की रेखा तक पहुँच गया है. +","sooryast ke samay shnghaee ka puksi region ab tak sun apne horizon ke niche tak nahin smog hai balki yah dhundh dense ki rekha tak pahunch gaya hai +",6,3,neutral,neutral,negative +"when the earth shall be rocked +","जब धरती थरथराकर काँप उठेगी; +","jab earth tharathrakar kanp uthegi +",9,1,neutral,neutral,neutral +"The cow is worshipped as a holy animal . +","गाय बड़ी पवित्र तथा पुज़्य मानी जाती है . +","gay bari cow is worshipped mani jati hai +",6,5,neutral,negative,positive +"Eyes: Spitting cobras can actually eject their venom quite accurately into the eyes of their victims, resulting in direct eye pain and damage. +","आंख-थूकनेवाले कोबरा अक्सर अपने शिकार की आंखों में विष थूक देते हैं, जिससे आंखें क्षतिग्रस्त हो सकती हैं या उनमें दर्द हो सकता है। +","venom quite accurately apne direct eye pain men vish thook dete hain, jisse aankhen kshtigrast ho sakti hain ya unmen dard ho sakta hai. +",4,5,negative,negative,negative +"In the last Conference of Vice Chancellors, we took a number of decisions. +","कुलपतियों के विगत सम्मेलन में, हमने अनेक निर्णय लिए। +","vice ke last conference men , hamne number decisions lie. +",6,0,neutral,neutral,positive +"Tall table, tall chairs! Well, I haven 't made them yet. +","लंबी मेज, लंबी कुर्सियां! खैर, मैंने इन्हें अभी तक पूरा नहीं किया है. +","tall table, tall chairs! khair, haven inhen abhi tak poora nahin kiya hai +",7,3,neutral,neutral,positive +"Another sensible approach would be to prevent the mast cells from exploding and the subsequent release of histamine. +","दूसरा उपाय यह है कि मास्ट कोशिकाओं से हिस्टामीन निकलने ही न दिया जाये। +","doosra approach yah hai ki mast cells se histamin nikalne hi n diya jaye. +",9,0,neutral,neutral,neutral +"Further, requests for changes or correction in PAN data or a request for a newPAN card (for an existing PAN) may also be made through the Internet. +","। इसके अतिरिक्तक पैन डाटा में परिवर्तन या सुधार के लिए अनुरोध या नए पैन कार्ड के लिए अनुरोध (मौजूदा पैन के लिए) भी इंटरनेट के माध्यपम से किया जा सकता है। +",". iske atiriktak pain pan data parivartan ya sudhar ke lie anurodh ya ne pain kard ke lie anurodh maujooda pain ke lie bhi intarnet ke madhyapam se kiya ja sakta hai. +",6,4,neutral,negative,neutral +"He was appreciated a lot for his role opposite Rajesh Khanna and Rekha and he also got Filmfare award for best supporting actor. +","राजेश खन्ना और रेखा के विपरीत इनकी सहायक भूमिका में इन्हें बेहद सराहा गया और इन्हें सर्वश्रेष्ठ सहायक कलाकार का फिल्मफेयर पुरस्कार दिया गया। +","supporting actor aur rekha ke viprit inki sahayak bhoomika men inhen behad saraha gaya aur inhen sarvashreshth sahayak kalakar ka philmpheyar puraskar diya gaya. +",6,2,positive,positive,positive +"My devotees! no fear shall be on you that Day, nor shall ye grieve, - +","""ऐ मेरे बन्दों! आज न तुम्हें कोई भय है और न तुम शोकाकुल होगे।""- +","ae mere bandon! aaj n tumhen koee bhay hai aur n tum grieve hoge.- +",8,3,positive,positive,positive +"Those are the verses of the clear Book. +","ये वाज़ेए व रौशन किताब की आयतें है +","ye verses v raushan book ki aayten hai +",7,1,neutral,neutral,positive +"All his reviews are based on this criterion and hence do not go further than assessing the thought and discussing the language. +","उनकी समीक्षायें इन्हीं मापदण्डों पर आधारित होती हैं, अतः वह विचारों के मूल्यांकन और भाषा की चर्चा से आगे नहीं बढ़ पाते। +","unki samikshayen inhin mapadandon par aadharit hoti hain, ata vah assessing the thought aur discussing the language se aage nahin ba pate. +",6,3,neutral,neutral,neutral +"A sliding Vicryl noose is used in postoperative suture adjustment of extraocular muscles. +","खिसकने वाली विक्राइल फंदे का प्रयोग शल्यक्रिया के बाद नेत्रेतर मांसपेशियों की सीवन के समन्वयन हेतु किया जाता है। +","khisakne vali vikrail phnde ka pryog shalyakriya ke bad netretar manspeshiyon ki sivan ke samanvayan hetu kiya jata hai. +",6,4,neutral,neutral,neutral +"“ Look ! ” he said . +","“ देखो ! ” उसने कहा । +","look ! s usne kaha . +",9,1,neutral,neutral,neutral +"He said, ""My Lord, indeed I fear that they will deny me +","मूसा ने अर्ज़ कि परवरदिगार मैं डरता हूँ कि (मुबादा) वह लोग मुझे झुठला दे +","lord ne arz ki paravardigar i darta hoon ki mubada vah log mujhe jhuthla de +",6,2,neutral,negative,negative +"Sending a message with an _ empty subject line +","कोई रिक्त विषय पंक्ति के साथ एक संदेश भेजें (_ e) +","koee empty subject line ke sath ek message bhejen _ e +",9,1,negative,neutral,negative +"The artist in him, too, looked for fresh pastures and newer modes of expression. +","उनमें बैठा कलाकार भी, ताजी दूब वाले चरागाहों में विचरण करता और अभिव्यक्ति के अभिन्न क्षेत्रों की तलाश में रहता था. +","unmen baitha kalakar bhi, taji pastures and newer men vicharan karta aur abhivyakti ke abhinn kshetron ki talash men rahta tha +",8,2,neutral,neutral,positive +"Two kinds of poultry feed may be prepared. +","दो तरह के मुर्गी चारे तैयार किए जा सकते हैं। +","do tarah ke poultry feed taiyar kie ja sakte hain. +",9,0,neutral,neutral,positive +"The benevolent aspects of treating the labour. +","जब श्रम के मानवीय पक्षों पर विचार किया जाता हो। +","jab labour ke benevolent aspects par vichar kiya jata ho. +",10,0,positive,neutral,positive +"Truly, to Us is their return; +","बेशक उनको हमारी तरफ़ लौट कर आना है +","beshak unko hamari taraf laut kar aana hai +",9,1,positive,neutral,positive +"and it re-condenses in the other side. +","और वह फिर दूसरे पक्ष में गाढ़ी हो जाती है +","aur vah phir doosre side men gai ho other hai +",6,3,neutral,neutral,neutral +"Yet his novel could not attain perfect fusion of content and form. +","फिर भी उनके उपन्यास में विषय वस्तु और रूपविधान की दृष्टि से तालमेल नहीं रह सका। +","phir bhi unke upanyas men vishay content and form ki drishti se talmel nahin rah saka. +",8,1,negative,negative,negative +"for example, in this case, +","उदाहरण के तौर पर, यहाँ, +","example ke taur par , yahan , +",9,2,neutral,neutral,neutral +"Beside these, the Peepal tree, Banana tree and Bilva have been also placed in appropriate locations in the Vatika bringing the total to 51 trees/plants. +","इनके अलावा, पीपल वृक्ष, केला वृक्ष तथा बिल्व भी वाटिका के उपयुक्त स्थलों पर लगाए गए हैं जिससे कुल 51 वृक्ष/पौधे हो गए हैं। +","inke alava , peepal tree , banana tree tatha bilva bhi vatika ke appropriate sthlon par lagae ge hain jisse kul total vrikshpaudhe ho ge hain. +",8,4,neutral,neutral,neutral +"Poor labour - management relationship and associated low workers' morale and low productivity, strikes, lockouts, etc. +","खराब श्रम प्रबंधन संबंध और कर्मचारियों का सहबद्ध मनोबल कम होना तथा कम उत्पादकता, हड़तालें, तालाबंदियां इत्या दि। +","kharab shram management relationship aur workers ka sahabaddh morale poor hona tatha poor productivity , strikes , talabndiyan itya di. +",7,3,negative,neutral,negative +"A drainage basin is an extent of land. +","मैले की द्रोणी जमीन के अंत में होती है। +","maile ki basin extent of land men hoti hai. +",7,5,neutral,neutral,neutral +"The centrally governed parts of land are called union territories +","केन्द्रीय प्रशासित भू-भागों को संघराज्य क्षेत्र कहा जाता है। +","union governed bhoo-bhagon ko territories land kaha jata parts +",6,2,neutral,neutral,neutral +"Application of mud to all part of the body. +","शरीर के सभी हिस्सों पर कीचड़ का आलेपन +","body ke sabhi part par application ka aalepan +",7,1,neutral,neutral,neutral +"It is indeed a matter of introspection as to how, despite availability of agricultural labour and sizeable arable land, notwithstanding some decline in Asia, many Asian and African countries have witnessed spiralling food prices. +","इस बात पर वास्तव में आत्ममंथन की जरूरत है कि कृषि श्रमिकों तथा विशाल आकार में खेती योग्य भूमि, एशिया में कुछ कमी आने के बावजूद, के बाद भी बहुत से एशियाई और अफ्रीकी देशों में खाद्यान्न की कीमतों में अत्यधिक वृद्धि कैसे हुई है। +","is bat par matter of introspection ki jaroorat hai ki krishi shrmikon tatha vishal aakar men kheti yogy bhoomi, eshiya men kuchh kami aane ke bavjood, ke bad bhi bahut se eshiyaee aur aphriki deshon men khadyann ki kimton men atydhik vriddhi kaise huee hai. +",6,5,neutral,negative,neutral +"I have one climate crisis; +","मैं पास एक जलवायु संकट है +","i pas ek climate crisis hai +",7,0,neutral,negative,negative +"They said, ""By Allah, certainly has Allah preferred you over us, and indeed, we have been sinners."" +","उन्होंने कहा, ""अल्लाह की क़सम! आपको अल्लाह ने हमारे मुक़ाबले में पसन्द किया और निश्चय ही चूक तो हमसे हुई।"" +","unhonne kaha , allah ki sinners ! aapko allah ne hamare muable men pasand kiya aur nishchay hi chook to hamse huee. +",8,1,neutral,negative,positive +"The same word or signal, therefore, should always be used for the particular response desired. +","इसलिए इच्छित अनुक्रिया के लिए सदा ही एक शब्द अथवा संकेत का इस्तेमाल किया जाना चाहिए। +","islie ichchhit response ke lie sada hi ek word athva signal ka same kiya jana chahie. +",8,1,neutral,neutral,positive +"A rule that elaborates equality in value. +","ऐसा नियम जो मूल्य में समानता की व्याख्या करता हो। +","aesa rule jo value men equality ki vyakhya karta ho. +",8,3,neutral,neutral,positive +"He added that HE had expressed by telegram and letter in emphatic terms his complete confidence in me but that the days when this would be enough were over. 10. +","गवर्नर-जनरल ने यह भी कहा कि निजाम ने तार द्वारा जोरदार शब्दों में मुझ पर संपूर्ण विश्वास वयक्त किया है, परन्तु वे दिन चले गये जब इतना कहना काफी हो सकता था। +","gavarnar-janaral ne yah bhi kaha ki nijam ne telegram dvara jordar terms men mujh par complete confidence vayakt kiya hai , parantu ve letter chale gaye jab enough kahna kaphi ho sakta tha. +",7,4,neutral,neutral,positive +"that the amount - - as my best sense of it - - is that the +","मेरे लिए सबसे सही-- यह है +","mere lie sabse sahi-- yah hai +",10,0,neutral,neutral,positive +"Yes, if either of the parties want an adjournment of hearing, they should make an application in writing to the Exchange giving reasons for seeking adjournment to the Exchange in advance to enable the Exchange to forward such request to the arbitrator. +","हां, यदि दोनों में से कोई भी एक पक्ष सुनवाई का स्थगन चाहता है तो उन्हें स्थगन मांगने के कारणों को बताते हुए एक्सचेंज के पास अग्रिम रूप से एक आवेदन करना चाहिए जिससे कि एक्सचेंज ऐसे अनुरोध को आर्बिट्रेटर को भेज सके। +","han , yadi donon men se koee bhi ek parties hearing ka adjournment chahta hai to unhen adjournment mangne ke reasons ko batate hue exchange ke pas advance roop se ek application karna chahie jisse ki exchange aese anurodh ko arbitrator ko bhej sake. +",8,2,neutral,neutral,positive +"You need to log on to your account to take a printout of your admit card carrying your photograph. +","इसके लिए आपको आपके एकाउंट में लॉगइन करना होगा जिससे कि आप अपने फोटोयुक्त प्रवेश कार्ड के प्रिंट आउट ले सकें। +","iske lie aapko aapke ekaunt men lgin karna hoga jisse ki aap apne photoyukt prvesh kard ke print aaut le saken. +",4,6,neutral,neutral,positive +"He said: ""I do not want India to be a country in which millions of people say ""yes” to one man, I want a strong opposition.” +","उन्होंने कहा था :‘‘मैं नहीं चाहता कि भारत ऐसा देश बने जहां लाखों लोग एक व्यक्ति की‘हां’में हां मिलाएं, मैं एक मजबूत विपक्ष चाहता हूं।’’ +","unhonne kaha tha :main nahin chahta ki bharat aesa desh bane millions of people ek vyakti kihanmen han milaen, main ek majboot vipaksh chahta hoon. +",8,1,neutral,negative,positive +"the order of left to right is using to keep close broken words. +","दायें-से-बायें क्रम का उपयोग तुकान्त शब्दों को पास-पास लाने के लिया किया जाता है। +","dayen-se-bayen order ka upyog broken words ko pas-pas lane ke liya kiya left hai. +",9,1,neutral,neutral,negative +"Folder% 1 already exists.% 2 may become owner and permissions may change. Do you really want to use% 3? +","फ़ोल्डर% 1 पहले ही मौजूद है.% 2 मालिक बन सकता है और अनुमतियाँ बदल सकती हैं. क्या आप सचमुच% 3 का इस्तेमाल करना चाहते हैं? +","folder 1 pahle hi exists hai 2 owner ban sakta hai aur permissions may change hain kya aap sachmuch 3 ka istemal karna chahte hain +",7,2,neutral,neutral,positive +"Place the king of hearts next to the queen of hearts. +","लाल पान की बेगम के बगल में लाल पान के वादशाह को रखें. +","place hearts ki queen ke bagal men place hearts ke king ko rakhen +",7,2,neutral,neutral,positive +"Before an action or occurrence took place. +","एक क्रिया या घटना होने के पहले +","ek occurrence took place hone ke pahle +",6,4,neutral,neutral,neutral +"Set the directory where to store temporary files +","निर्देशिका सेट करें जहाँ अस्थायी फाइल जमा करना है +","directory set karen jahan store temporary files karna hai +",6,1,neutral,neutral,neutral +"They were compelled to pay many illegal dues and cesses and were often required to perform forced labour or begar . +","उन्हें न केवल बहुत से गैरकानूनी कर और महसूल देने को मजबूर किया जाता बल्कि उनसे बेगार भी करायी जाती थी . +","unhen n keval bahut se illegal kar aur many dene ko majboor kiya jata balki unse begar bhi karayi jati thi +",8,2,negative,negative,negative +"Label comet names in the sky map? +","आकाश नक्शे पर धूमकेतुओं पर लेबल लगाएँ? +","sky map par dhoomketuon par label lagaen +",9,1,neutral,neutral,neutral +"Awareness among farmers on practices and techniques of SRI should be generated, as it involves change of practices, compared to conventional method. +","किसानों के बीच श्री की रीतियों एवं तकनीकों के बारे में जागरूकता पैदा की जानी चाहिए, क्योंकि उसमें परम्परागत विधि की तुलना में पद्धतियों में बदलाव हो जाता है, +","awareness among farmers shri ki ritiyon evn taknikon ke bare men jagrookta paida ki jani chahie, kyonki usmen parampragat vidhi ki tulna men change of practices ho jata hai, +",7,2,neutral,neutral,neutral +"Yet they say: ""When will this decree come, if you speak the truth?"" +","वे कहते है कि ""यह फ़ैसला कब होगा, यदि तुम सच्चे हो?"" +","ve kahte hai ki yah decree come truth , yadi tum sachche ho +",5,1,neutral,neutral,positive +"It 's easy on synthetic data, yeah. +","यह हाँ पर सिंथेटिक डेटा, आसान है। +","yah yeah par synthetic data, easy hai. +",7,4,neutral,neutral,positive +"It will act as a platform where novel ideas are nurtured and innovators mentored to develop new products. +","यह एक ऐसे मंच के रूप में कार्य करेगा जहां नवीन विचारों को प्रोत्साहन मिलेगा और नए उत्पादों के विकास के लिए नवान्वेषकों को प्रोत्साहित किया जाएगा। +","yah ek aese mnch ke roop men kary karega jahan navin vicharon ko protsahan milega aur ne utpadon ke vikas ke lie navanveshkon ko protsahit kiya jaega. +",4,7,positive,neutral,positive +"The lightning almost snatches their sight away. Whenever it illuminates for them, they walk in it; but when it grows dark over them, they stand still. Had God willed, He could have taken away their hearing and their sight. God is capable of everything. +","क़रीब है कि बिजली उनकी ऑंखों को चौन्धिया दे जब उनके आगे बिजली चमकी तो उस रौशनी में चल खड़े हुए और जब उन पर अंधेरा छा गया तो (ठिठके के) खड़े हो गए और खुदा चाहता तो यूँ भी उनके देखने और सुनने की कूवतें छीन लेता बेशक खुदा हर चीज़ पर क़ादिर है +","rib hai ki bijli unki lightning almost snatches de jab unke aage bijli chamki to us raushni men chal khare hue aur jab un par andhera chha gaya to thithke ke khare ho ge aur khuda chahta to yoon bhi unke dekhne aur sunne ki koovten chhin leta beshak khuda har chiz par adir hai +",3,5,neutral,negative,positive +"Bug Buddy is not installed. +","बग बड्डी संस्थापित नहीं है. +","bag buddy installed nahin hai +",9,0,negative,neutral,neutral +"Dalhousie wrote his famous minutes on railways in 1853, envisaging a general system for the whole country, and setting out general principles of management, finance and construction. +","डलहौजी ने अपना प्रसिद्ध रेलवे वक़्तव्य सन् 1853 में जारी किया जिसमें उन्होंने पूरे देश के लिए एक ही सामान्य प्रणाली की सिफारिश की और जिसमें व्यवस्था वित्त और निर्माण के सामान्य सिद्धांत भी प्रतिपादित किये. +","dalhauji ne apna prsiddh relve vatavy san 1853 men jari kiya jismen unhonne poore desh ke lie ek hi samany prnali ki sipharish ki aur jismen vyavastha vitt aur nirman ke samany siddhant bhi prtipadit kiye +",8,0,neutral,neutral,neutral +"And their eyes spoke of death. +","उनकी आंखें मौत का संदेश दे रही थीं। +","unki eyes death ka sndesh de rahi thin. +",9,1,negative,negative,negative +"A manual switch on the control panel by means of which a bit may be entered in a processor register. +","कंट्रोल पैनल में मैनुअल स्विच, जिसके द्वारा एक बिट प्रोसेसर रजिस्टर में प्रविष्ट कर सकता है. +","control panel men manual switch , means dvara ek bit processor register men prvisht kar sakta hai +",8,0,neutral,neutral,neutral +"He needed to authenticate the documents with signature. +","उसे दस्तावेज़ों को हस्ताक्षर द्वारा अधिप्रमाणित करने की आवश्यकता थी। +","use documents with signature dvara authenticate karne ki aavashyakta thi. +",8,4,neutral,neutral,neutral +"Could not open file:% s:% s +","फ़ाइल को खोल नहीं सकाः% s:% s +","fail ko khol nahin sakaa file : file +",4,3,negative,neutral,neutral +"ODD (2) returns 3 +","ODD (2) का परिणाम होगा 3 +","ODD 2 ka returns hoga 3 +",8,1,neutral,neutral,negative +"We must learn international languages to communicate and widen our horizon. +","हमें अपने क्षितिज का विस्तार करने और व्यापार संचार के लिए अंतर्राष्ट्रीय भाषाएं पढनी ही चाहिए। +","widen our horizon ka vistar karne aur vyapar snchar ke lie international languages padhni hi chahie. +",6,4,neutral,neutral,neutral +"The pre-poll phase (registration of voters) and +","मतदान-पूर्व चरण (मतदाताओं का रजिस्ट्रीकरण) तथा +","matdan-poorv phase voters ka registration tatha +",9,1,neutral,neutral,neutral +"When it is legal act by illegal means over act is necessary. +","जब अवैध तरीकों से कानूनी कार्रवाई की गयी है तब यह अधिनियम आवश्यक है. +","jab avaidh tarikon se legal act ki gayi hai tab yah adhiniyam aavashyak hai +",10,0,neutral,neutral,negative +"You shall not attain righteousness until you spend out of what you love (in the way of Allah). Allah knows whatever you spend. +","तुम नेकी और वफ़ादारी के दर्जे को नहीं पहुँच सकते, जब तक कि उन चीज़ो को (अल्लाह के मार्ग में) ख़र्च न करो, जो तुम्हें प्रिय है। और जो चीज़ भी तुम ख़र्च करोगे, निश्चय ही अल्लाह को उसका ज्ञान होगा +","tum righteousness aur vafadari ke darje ko nahin pahunch sakte , jab tak ki un chizo ko allah ke way men rch n karo , jo tumhen priy hai. aur jo chiz bhi tum rch karoge , nishchay hi allah ko uska jnjan hoga +",7,1,neutral,neutral,positive +"In old Tamil literature also one comes across the murasu quite often . +","प्राचीन तमिल साहित्य में मुरसु का भी कई जगह उल्लेख हुआ है . +","prachin tamil literature men mursu ka bhi kee jagah ullekh huaa hai +",9,2,neutral,neutral,neutral +"'. After the 25th, Prem Chand did not have good sleep. +","25 की रात के बाद ठीक से कभी सो न सके। +","sleep ki good ke bad thik se kabhi so n sake. +",4,0,negative,negative,negative +"He also recalled the insinuation made the other day by Haran about Binoy. +","विनय के बारे में हारान बाबू उस दिन जो इशारा कर गये थे, वह भी उन्हें याद आया। +","binoy ke bare men haran baboo us day jo insinuation kar gaye the , vah bhi unhen other aaya. +",8,1,neutral,neutral,neutral +"And never [O Muhammad] pray for one of them who dies, nor stand by his grave. For they denied God and His Messenger, and died rebellious. +","औऱ उनमें से जिस किसी व्यक्ति की मृत्यु हो उसकी जनाज़े की नमाज़ कभी न पढ़ना और न कभी उसकी क़ब्र पर खड़े होना। उन्होंने तो अल्लाह और उसके रसूल के साथ कुफ़्र किया और मरे इस दशा में कि अवज्ञाकारी थे +","au unmen se jis kisi vyakti ki pray ho god janaze ki stand kabhi n pana aur n kabhi god br par khare hona. unhonne to messenger aur uske rasool ke sath kufr kiya aur mare is dasha men ki rebellious the +",8,0,negative,negative,negative +"The almost insoluble dilemma is that they benefit not only the ordinary citizen who occasionally finds himself in the coils of the law but the professional criminal who by long experience has learned to take advantage of all its defences. +","एक लगभग उपचारहीन दुविधा यह है कि इनका लाभ केवल उन साधारण नागरिकों को ही नहीं मिलता जो यदाकदा विधि के शिकंजे में फंस जाते हैं बल्कि उन पेशेवर अपराधियों को भी मिलता है जिन्होंने दीर्घ अनुभव से सभी प्रतिरक्षाओं का लाभ उठाने का गुर सीख लिया +","ek citizen who occasionally yah hai ki inka labh keval un ordinary citizen ko hi nahin milta jo yadakda vidhi ke shiknje men phns jate hain balki un peshevar apradhiyon ko bhi milta hai jinhonne dirgh anubhav se sabhi prtirakshaon ka labh uthane ka gur sikh liya +",5,5,neutral,negative,negative +"Why welding and why not computers? +","झाल लगाना की क्यों, कंप्यूटर क्यों नहीं? +","welding lagana ki kyon , computers kyon nahin +",8,1,neutral,neutral,neutral +"Now, a simple way for you to start +","अब, तुम शुरू करने के लिए एक सरल तरीका +","ab, tum start karne ke lie ek simple tarika +",10,0,positive,neutral,neutral +"""So we led you astray because we were ourselves astray."" +","हम खुद गुमराह थे तो तुम को भी गुमराह किया +","ham khud astray the to tum ko bhi astray kiya +",9,1,neutral,neutral,neutral +"From 1998 - 99, various poverty alleviation and employment generation programmes are grouped under two broad categories of: +","वर्ष 1998-99 से चलने वाले कई तरह के गरीबी उन्मूलन तथा रोजगार सृजन कार्यक्रमों को व्यापक रूप से दो वर्गों में रखे गए हैंः +","employment 1998-99 se chalne vale kee tarah ke poverty various tatha generation srijan programmes ko broad categories se do vargon men rakhe ge haina +",6,1,neutral,neutral,negative +"LEVEL : NEWS PAPERS IN HINDI LANGUAGE +","श्रेणी:हिन्दी भाषा के समाचार पत्र +","level : hindi language ke news papers +",9,0,neutral,neutral,neutral +"The main objectives of the Board are to: - +","बोर्ड के मुख्य उद्देश्य हैं: +","board ke main objectives hain : +",9,2,neutral,neutral,neutral +"Starting sequence number (deprecated) +","आरंभिक शृंखला संख्या (पदावनत) +","aarnbhik sequence number padavanat +",8,0,neutral,neutral,positive +"and we have the derivative sin of x because we learned the +","और हम एक्स के व्युत्पन्न पाप है, क्योंकि हम सीखा +","aur ham eks ke derivative sin hai, kyonki ham learned +",5,3,negative,neutral,negative +"You have to be in this range. +","आपको इसी रेंग मे रहना है +","aapko isi range me rahna hai +",9,1,neutral,neutral,neutral +"Will you sing me a Beatles' song? +","तुम मेरे लिए एक बीटल्स का गाना गा सकते हो क्या? +","tum mere lie ek beatles ka song ga sakte ho kya +",9,1,neutral,neutral,neutral +"The same word or signal, therefore, should always be used for the particular response desired. +","इसलिए इच्छित अनुक्रिया के लिए सदा ही एक शब्द अथवा संकेत का इस्तेमाल किया जाना चाहिए। +","islie response desired ke lie sada hi ek word or signal ka istemal kiya jana chahie. +",7,1,neutral,neutral,positive +"On the other hand, art flourished under Buddhist patronage. +","दूसरी ओर बोद्धों के संरक्षण में कला समृद्धशाली बनी। +","hand or boddhon ke snrakshan men kala samriddhshali bani. +",6,2,neutral,neutral,positive +"Why, is he better who founded his building upon the fear of God and His good pleasure, or he who founded his building upon the brink of a crumbling bank that has tumbled with him into the fire of Gehenna? And God guides not the people of the evildoers. +","क्या जिस शख़्स ने ख़ुदा के ख़ौफ और ख़ुशनूदी पर अपनी इमारत की बुनियाद डाली हो वह ज्यादा अच्छा है या वह शख़्स जिसने अपनी इमारत की बुनियाद इस बोदे किनारे के लब पर रखी हो जिसमें दरार पड़ चुकी हो और अगर वह चाहता हो फिर उसे ले दे के जहन्नुम की आग में फट पडे और ख़ुदा ज़ालिम लोगों को मंज़िलें मक़सूद तक नहीं पहुंचाया करता +","kya jis better ne fear ke auph aur ushnoodi par apni building ki buniyad dali ho vah good achchha hai ya vah better jisne apni building ki buniyad is bank kinare ke brink par rakhi ho jismen darar par chuki ho aur agar vah chahta ho phir use guides evildoers ke jahannum ki fire men phat pade aur fear zalim logon ko mnzilen masood tak nahin pahunchaya karta +",8,2,neutral,negative,positive +"A type of reproduction without fertilization. +","निषेचन रहित प्रजनन का एक प्रकार +","reproduction without fertilization ka ek type +",9,1,neutral,neutral,neutral +"In the moulded type a full human or animal figure is fashioned. +","ढलाई में मानव और पशुओं की पूरी आकृति बनायी जाती है। +","moulded men full aur animal ki poori figure banayi jati hai. +",6,4,neutral,neutral,neutral +"In fact, someone on Reddit thought, +","बल्कि, रेडिट पे किसी नें सोचा, +","fact, redit pe kisi nen thought, +",4,4,neutral,neutral,neutral +"And then you know what we do? We negotiate. +","और फ़िर हम क्या करते है? हम सौदा तय करते हैं। +","aur fir ham kya karte hai ham sauda tay karte hain. +",9,2,neutral,neutral,neutral +"But this exclusive consummation is not the sole or inevitable result of the Path of Knowledge. +","किन्तु यह एकाग्डी अत्युच्च अवस्था ही ज्ञान के मार्ग का अकेला या अनिवार्य परिणाम नहीं। +","kintu yah ekagdi atyuchch avastha hi knowledge ke path ka sole ya inevitable result nahin. +",9,2,neutral,negative,positive +"They embrace the infinite coastline of the sea at their mouths. +","वे अपने मुहानों पर असीम समुद्रतट का आलिंगन करती हैं। +","ve apne muhanon par infinite sea ka aalingan karti hain. +",9,2,positive,positive,positive +"When such a person comes to Us, he will say [to his comrade], ""If only you had been as far away from me as east is from west. What an evil comrade!"" +","यहाँ तक कि जब (क़यामत में) हमारे पास आएगा तो (अपने साथी शैतान से) कहेगा काश मुझमें और तुममें पूरब पश्चिम का फ़ासला होता ग़रज़ (शैतान भी) क्या ही बुरा रफीक़ है +","yahan tak ki jab yamat men hamare pas aaega to apne comrade shaitan se kahega kash mujhmen aur person east west ka fasla hota raz shaitan bhi kya hi evil raphi hai +",5,2,negative,negative,negative +"Now I do call to witness the Lord of all points in the East and the West that We can certainly - +","अतः कुछ नहीं, मैं क़सम खाता हूँ पूर्वों और पश्चिमों के रब की, हमे इसकी सामर्थ्य प्राप्त है +","ata kuchh nahin, main sam khata hoon poorvon aur pashchimon ke rab ki, hame iski samarthy prapt hai +",3,5,positive,neutral,positive +"The deceased was doing a private job at the time of the accident. +","मृतक दुर्घटना के समय एक निजी काम कर रहा था. +","deceased accident ke time ek private job kar raha tha +",8,1,neutral,neutral,negative +"seeing towards down after the noon, we can see pollution in Los Angeles into the moor of mountains +","नीचे देखने पर सामने की पहाडी के मैदान में दोपहर के बाद वायु प्रदूषण साफ साफ़ लोस अन्जेल्स में दिखता है. +","niche dekhne par samne ki pahadi ke maidan men noon ke bad vayu pollution towards saf los moor men dikhta hai +",4,2,neutral,neutral,neutral +"There is a great percentage of poetry in his so - called dramas, also there is music in them. +","उनके तथाकथित नाटकों में, कविताओं का अंश मुख्य है, उनमें संगीत भी शामिल है। +","unke tathakthit dramas men , poetry ka percentage great hai , unmen music bhi shamil hai. +",7,1,positive,neutral,positive +"Decisions in a proprietary concern are easy and prompt. +","स्वामित्व प्रतिष्ठान में निर्णय सुगमता से और त्वरित रूप में लिए जा सकते हैं। +","proprietary concern men nirnay sugamta se aur tvrit roop men lie ja sakte hain. +",9,0,positive,neutral,positive +"Image format (default RGB) +","छवि प्रारूप (डिफ़ॉल्ट RGB) +","image format default rgb +",9,2,neutral,neutral,neutral +"Failed to unlock lock file '% s' '% s' +","लॉक फ़ाइल को अन-लॉक करने में असफ़ल +","lock unlock lock file karne men asafal +",7,1,negative,neutral,negative +"Whether to show contacts that are offline in the contact list. +","क्या संपर्कों को दिखाना है जो संपर्क सूची में ऑफ़लाइन हैं. +","kya contact ko dikhana hai jo contacts list men offline hain +",6,1,neutral,neutral,negative +"The selected audio device was successfully opened but it is impossible to read data from this device. In case it is a pluggable device it may be sufficient to reconnect it. If not, or if it still is not accessible, please check your audio setup. +","चयनित ऑडियो युक्ति सफलतापूर्वक खोला गया लेकिन इस युक्ति से आंकड़ा पढ़ना असंभव है. उस स्थिति में यदि यह एक प्लगेबल युक्ति है यह पर्याप्त होगा इसे फिर कनेक्ट करना. यदि नहीं, या यदि यह अभी भी पहुँच योग्य नहीं है, कृपया अपना ऑडियो सेटअप जाँचें. +","chaynit audio device saphaltapoorvak khola gaya lekin is device se data pana impossible hai us case men yadi yah ek pluggable device hai yah sufficient hoga ise phir kanekt karna yadi nahin , ya yadi yah abhi bhi pahunch yogy nahin hai , kripya apna audio setup janchen +",6,5,neutral,neutral,negative +"then makes him to die, and buries him, +","फिर उसे मौत दी फिर उसे कब्र में दफ़न कराया +","phir use maut di phir use kabr men dafan karaya +",9,1,negative,neutral,negative +"""and it 's going to be a $40 billion business in the next 7 years."" +","""और यह एक 40 अरब डॉलर कारोबार अगले 7 वर्षों में होने जा रहा है."" +","aur yah ek 40 arab billion business agle 7 years men hone ja raha hai +",8,1,neutral,positive,neutral +"And that favour wherewith thou didst oblige me was that thou hadst enslaved the Children of Isra 'il? +","और ये भी कोई एहसान हे जिसे आप मुझ पर जता रहे है कि आप ने बनी इसराईल को ग़ुलाम बना रखा है +","aur ye bhi koee ehsan he jise aap favour wherewith thou rahe hai ki aap ne bani enslaved the children bana rakha hai +",4,4,neutral,negative,positive +"The future development of the mini steel industry will depend on the availability of sponge iron. +","लघु इस्पात उद्योग का भावी विकास स्पंज आयन की उपलब्धता पर निर्भर करेगा. +","mini steel industry ka bhavi sponge iron aayan ki upalabdhta par nirbhar karega +",7,2,neutral,neutral,neutral +"has the minimum number of wiggles. +","उसमे सबसे कम हलचल होता है. +","usme sabse kam number hota hai +",6,0,neutral,neutral,positive +"Thus the word of your Lord is fulfilled concerning the transgressors that they shall not believe. +","ये तुम्हारे परवरदिगार की बात बदचलन लोगों पर साबित होकर रही कि ये लोग हरगिज़ ईमान न लाएँगें +","ye lord paravardigar ki word transgressors logon par sabit hokar rahi ki ye log hargiz eeman n laengen +",7,2,positive,neutral,positive +"Have they not realised that God knows their secrets and their confidential talk, and that God has the knowledge of unknown things? +","क्या उन्हें खबर नहीं कि अल्लाह उनका भेद और उनकी कानाफुसियों को अच्छी तरह जानता है और यह कि अल्लाह परोक्ष की सारी बातों को भली-भाँति जानता है +","kya unhen khabar nahin ki allah unka bhed aur unki kanaphusiyon ko achchhi tarah janta hai aur yah ki allah knowledge of unknown baton ko bhali-bhanti janta hai +",8,1,neutral,neutral,positive +"The default browser is currently %{BROWSERNAME}. +","वर्तमान में डिफ़ॉल्ट ब्राउज़र %{BROWSERNAME} है. +","vartman men default browser BROWSERNAME hai +",9,0,neutral,neutral,neutral +"This apple tastes sour, doesn 't it? +","यह सेव खट्टा है ना? +","yah apple sour hai na +",9,1,negative,neutral,neutral +"Far from securing the ends of justice their pendency or disposal on merits will indubitably defeat the ends of justice. +","न्याय के उद्देश्यों की प्राप्ति से कोसों दूर, उनका अनिर्णय या योग्यता के आधार पर निपटान सुनिश्चित रूप से न्याय के उद्देश्यों को विफल कर देगा. +","ends of justice ki prapti se koson door, unka anirnay ya yogyta ke aadhar par niptan sunishchit roop se ends of justice ko viphal kar dega +",7,3,negative,negative,positive +"At the centre, remains the card scheme provider like the ‘National Payments Corporation’ (NPCI) for clearing and settlement. +","इस स्कीम के केंद्र में ‘राष्ट्रीय भुगतान निगम’ जैसे कार्ड स्कीम प्रदाता होते हैं जो समाशोधन तथा भुगतान करते हैं। +","is scheme ke centre men national payments corporation jaise card scheme provider hote hain jo clearing tatha payments karte hain. +",9,0,neutral,neutral,positive +"where god shanker was telling the story to parvatijiof ram story there was a crow 's nest and inside the nest crow was also listenng the story +","जहाँ पर भगवान शंकर पार्वती जी को भगवान श्री राम की कथा सुना रहे थे वहाँ कागा (कौवा) का एक घोसला था और उसके भीतर बैठा कागा भी उस कथा को सुन रहा था। +","jahan par bhagvan shnkar parvti ji ko bhagvan shri ram ki katha suna rahe the vahan kaga kauva ka ek ghosla tha aur uske bhitar baitha kaga bhi us katha ko sun raha tha. +",8,1,neutral,neutral,positive +"It is right that we should put all our strength in the advancement of the cause that we hold dear. +","यह बहुत ठीक है कि जो मकसद हमें प्यारा है, उसको पूरा करने के लिए हम अपनी पूरी ताकत लगा दें। +","yah bahut thik hai ki jo makasad hamen pyara hai, usko poora karne ke lie ham apni poori takat laga den. +",8,4,positive,neutral,positive +"Construction of Farkka dam has been helpful in production of seed of hilsa fish. +","फरक्का बांध बन जाने से गंगा नदी में हिल्सा मछली के बीजोत्पादन में सहायता मिली है। +","pharakka bandh ban jane se gnga production of seed machhli ke bijotpadan helpful in production hai. +",5,1,positive,neutral,positive +"I do not bother about any criticism. +","मुझे न निंदा की परवाह हे, न तोहमत की। +","i n criticism ki parvah he , n tohamat ki. +",6,3,neutral,neutral,negative +"And there came a caravan of travellers and they sent their water - drawer to draw water from the well. He let down his bucket into the well and he exclaimed, ""Oh, what a lucky find, here is a boy!"" They hid him like a piece of merchandise, but God knew well what they did. +","एक क़ाफ़िला आया। फिर उसने पनिहारा को भेजा। उसने अपना डोल ज्यों ही डाला तो पुकार उठा, ""अरे! कितनी ख़ुशी की बात है। यह तो एक लड़का है।"" उन्होंने उसे व्यापार का माल समझकर छुपा लिया। किन्तु जो कुछ वे कर रहे थे, अल्लाह तो उसे जानता ही था +","ek afila aaya. phir usne panihara ko bheja. usne apna draw water hi dala to pukar utha, are! kitni ushi ki bat hai. yah to ek larka hai. unhonne use vyapar ka mal samajhkar chhupa liya. kintu jo kuchh ve kar rahe the, allah to use janta hi tha +",4,7,positive,neutral,positive +"This appeal has impugned the judgment and decree dated 20. 01. 2007 which had endorsed the judgment and decree of the trial judge dated 08. 11. 2005 decreeing the suit of the plaintiff for possession, declaration and mandatory injunction +","इस अपील ने २०. ०१. २००७ दिनांकित निर्णय और डिक्री पर आक्षेप किया है, जिसने ०८. ११. २००५ दिनांकित विचारण के निर्णय और डिक्री का समर्थन किया था, जिसमें वादी के कब्जे, घोषणा और अनिवार्य निषेधाज्ञा के वाद पर डिक्री की गई थी. +","is appeal ne २० ०१ २००७ dinankit judgment aur decree par aakshep kiya hai , jisne ०८ ११ २००५ dinankit trial ke judgment aur decree ka samarthan kiya tha , jismen plaintiff ke possession , declaration aur mandatory injunction ke suit par decree ki gee thi +",7,1,negative,negative,positive +"We should ensure that these pillars remain strong and unshakable. +","हमें यह सुनिश्चित करना चाहिए कि इन स्तंभों की सुदृढ़ता और अविचलता बनी रहे। +","hamen yah sunishchit karna chahie ki in pillars ki sudrita aur strong bani rahe. +",7,1,positive,negative,positive +"Nikzad Nojoumi 's illustrations have been used for a variety of children' s books. +","निकज़द नौजूमी के चित्र अनेकों बाल पुस्तकों में लिये गये है। +","nikazad naujoomi ke s anekon children illustrations men liye gaye hai. +",6,2,neutral,neutral,neutral +"Two kinds of poultry feed may be prepared. +","दो तरह के मुर्गी चारे तैयार किए जा सकते हैं। +","do tarah ke poultry feed prepared kie ja sakte hain. +",9,2,neutral,neutral,positive +"It contains seven vertical strokes followed by this fish-like sign. +","समें सात ऊर्ध्वाधर रेखाओं के पीछे एक मछली का चिन्ह है। +","strokes sat oordhvadhar rekhaon ke pichhe ek machhli ka fish-like sign +",5,2,neutral,neutral,neutral +"It seems that animals lower down the evolutionary ladder like bees and birds are born with their behaviourial patterns like the courting dances of the former and navigational instincts of the latter genetically fixed once for all. +","ऐसा प्रतीत होता है कि मधुमक्खी तथा पक्षियों जैसे विकास की सीढ़ी के निचले पायदोनों के प्राणियों का आचरण उनके जन्म के साथ निर्धारित किया जाता है। +","aesa prtit hota hai ki bees and birds jaise vikas ki sii ke nichle paydonon ke praniyon ka aacharan unke janm ke sath nirdharit kiya jata hai. +",9,0,neutral,neutral,positive +"They both grew up in more or less the same atmosphere. +","दोनों कमोबेश एक ही वातावरण में पालित-पोषित हुए थे। +","donon kamobesh ek hi atmosphere men palit-poshit hue the. +",9,2,neutral,neutral,neutral +"O which of your Lord 's bounties will you and you deny? +","तो तुम दोनों अपने रब की अनुकम्पाओं में से किस-किस को झुठलाओगे? +","to tum donon apne rab ki anukampaon men se kis-kis ko deny +",8,1,neutral,neutral,negative +"We created you, then why do you believe not? +","हमने तुम्हें पैदा किया; फिर तुम सच क्यों नहीं मानते? +","hamne tumhen paida kiya phir tum sach kyon nahin mante +",9,2,neutral,neutral,positive +"Save changes to image ""% s"" before closing? +","छवि ""% s"" में बंद करने से पहले परिवर्तन सहेजें? +","chhavi s men closing karne se pahle parivartan save +",5,4,neutral,neutral,positive +"Of his party was also Abraham; +","और इबराहीम भी उसी के सहधर्मियों में से था। +","aur ibrahim bhi usi ke party men se tha. +",10,0,neutral,neutral,positive +"writing in the 1850s about how the railroad, the steam ship, +","कैसे रेल, स्टीमर के बारे में 1850 के दशक में लेखन, +","kaise rel, stimar ke bare men 1850 ke dashak men writing, +",8,1,neutral,neutral,neutral +"(Unbelievers) whose eyes had been under a veil from remembrance of Me, and who had been unable even to hear. +","जिनके नेत्र मेरी अनुस्मृति की ओर से परदे में थे और जो कुछ सुन भी नहीं सकते थे +","jinke eyes meri remembrance ki or se parde men the aur jo kuchh sun bhi nahin sakte the +",7,6,neutral,neutral,neutral +"I decided to devote my energies towards bridging the gulf between the old leaders and the new socialist group . +","मैंने पुराने नेताओं और नये सोशलिस्ट गुट के बीच खाई खत्म करने में अपनी ताकत का इस्तेमाल करने का फैसला किया . +","mainne purane netaon aur devote my energies ke bich khaee khatm karne men apni takat ka istemal karne ka phaisla kiya +",6,4,neutral,neutral,positive +"it's like playing poker and going all in right away. +","यह पोकर में सारे पत्ते खोल देने जैसा है. +","yah playing poker sare patte khol dene jaisa hai +",8,2,neutral,neutral,positive +"Cricket has been played in India since 1721 . +","क्रिकेट का खेलभारत में क्रिकेट के खेल का आरम्भ 1721 में हुआ . +","cricket ka khelbharat men cricket ke india ka aarambh 1721 men huaa +",7,1,neutral,neutral,positive +"Do not be faint of heart in pursuing these people: if you happen to suffer harm they too are suffering just as you are, while you may hope from Allah what they cannot hope for. Allah is All - Knowing, All - Wise. +","और (मुसलमानों) दुशमनों के पीछा करने में सुस्ती न करो अगर लड़ाई में तुमको तकलीफ़ पहुंचती है तो जैसी तुमको तकलीफ़ पहुंचती है उनको भी वैसी ही अज़ीयत होती है और (तुमको) ये भी (उम्मीद है कि) तुम ख़ुदा से वह वह उम्मीदें रखते हो जो (उनको) नसीब नहीं और ख़ुदा तो सबसे वाक़िफ़ (और) हिकमत वाला है +","aur musalmanon faint ke pichha karne men susti n heart agar wise men people harm pahunchti hai to jaisi people harm pahunchti hai unko bhi vaisi hi aziyat hoti hai aur people ye bhi ummid hai ki tum uda se vah vah ummiden rakhte ho jo unko knowing nahin aur uda to sabse vaif aur hikamat vala hai +",5,0,neutral,neutral,negative +"It was during the time of the dictatorship of Herod that Jesus was born, when the condition of the rule was dismal. +","ईसु के जन्म के समय निरकुंश राजा हैरोद का शासन था जिसमे प्रजा की स्थिति शोचनीय थी। +","jesus ke janm ke time nirkunsh raja hairod ka rule tha jisme prja ki condition shochniy thi. +",7,1,negative,neutral,negative +"And we 're going to expand it into two simpler expressions +","और हम दो सरल भाव में विस्तृत करने के लिए जा रहे हैं +","aur ham do simpler expressions men expand karne ke lie ja rahe hain +",9,1,neutral,neutral,positive +"Pro tempore appointment means an appointment carrying a definite rate of pay sanctioned for a limited time only. +","अल्पकालीन नियुक्ति का अर्थ उस नियुक्ति से होता है, जिसमें मात्र एक निश्चित समयावधि के लिए ही निश्चित दर से वेतन स्वीकृत होता है। +","alpkalin appointment ka arth us appointment se hota hai , jismen matr ek definite limited ke lie hi definite rate se pay svikrit hota hai. +",9,0,neutral,neutral,negative +"He said, “Stop it – peace be upon you; I shall seek forgiveness for you from my Lord; indeed He is very kind to me. ” +","इबराहीम ने कहा (अच्छा तो) मेरा सलाम लीजिए (मगर इस पर भी) मैं अपने परवरदिगार से आपकी बख्शिश की दुआ करूँगा +","peace ne kaha forgiveness to mera salam lijie magar is par bhi main apne paravardigar se aapki bakhshish ki duaa karoonga +",6,1,positive,neutral,positive +"Aryans did not make any statues or temples for deities. +","आर्य देवताओं की कोई मूर्ति या मन्दिर नहीं बनाते थे। +","aary deities ki koee statues or temples nahin make the. +",7,2,neutral,negative,neutral +"When Our manifest signs are recited to them, the faithless say to the faithful, ‘Which of the two groups is superior in station and better with respect to company? ’ +","और जब हमारी वाज़ेए रौशन आयतें उनके सामने पढ़ी जाती हैं तो जिन लोगों ने कुफ़्र किया ईमानवालों से पूछते हैं भला ये तो बताओ कि हम तुम दोनों फरीक़ो में से मरतबे में कौन ज्यादा बेहतर है और किसकी महफिल ज्यादा अच्छी है +","aur jab manifest raushan aayten unke samne pai respect hain to jin logon ne faithless kiya faithful se poochhte hain bhala ye to company ki tum station groups men se superior men kaun jyada better hai aur kiski mahphil jyada achchhi hai +",6,2,neutral,neutral,positive +"And he said: ye have taken images instead of Allah out of affection between you in the life of the world; but on the Day of Resurrection ye shall deny each other and ye shall curse each other, and your resort shall be the Fire, and ye shall have no helpers. +","और उसने कहा, ""अल्लाह से हटकर तुमने कुछ मूर्तियों को केवल सांसारिक जीवन में अपने पारस्परिक प्रेम के कारण पकड़ रखा है। फिर क़ियामत के दिन तुममें से एक-दूसरे का इनकार करेगा और तुममें से एक-दूसरे पर लानत करेगा। तुम्हारा ठौर-ठिकाना आग है और तुम्हारा कोई सहायक न होगा।"" +","aur usne kaha , allah se hatakar tumne kuchh images ko keval sansarik life men apne parasprik affection ke karan pakar rakha hai. phir resurrection ke day ye se ek-doosre ka inkar karega aur ye se ek-doosre par lanat karega. other thaur-thikana fire hai aur other koee helpers n resort +",8,1,negative,neutral,negative +"They roam about widely in search of food . +","इस जाति के पक्षी भोजन की खोज में दूर दूर तक घूमते हैं . +","is jati ke pakshi search of food men widely roam about widely hain +",7,2,neutral,neutral,neutral +"Nibbles couldn 't find pixmap file:% s Please check your Nibbles installation +","निब्बल्स पिक्समेप फ़ाइल:% s ढूंढ नहीं सका. कृपया अपना निब्बल्स संस्थापना जांचें +","nibbles pixmap s : s dhoondh nahin saka please apna nibbles snsthapna janchen +",8,1,negative,neutral,positive +"But they also built a playhouse in 1753 which closed down when the Fort and Calcutta were lost in battle to Nawab Siraj - ud - Dowla in 1756. +","किंतु उन्होंने सन् 1753 में एक नाटकघर भी बनवाया, जो कि सन् 1756 के युद्ध में किले और कलकत्ता के नवाब सिराजुद्दौला के हाथ में चले जाने पर बंद हो गया। +","kintu unhonne playhouse 1753 men ek natakaghar bhi banvaya , jo ki playhouse 1756 ke battle men fort aur calcutta ke navab siraj ke hath men chale jane par bnd ho gaya. +",8,2,neutral,neutral,negative +"Winds built up to 65 kph and waves broke on the boat, deluging it with water. +","हवा का वेग बढ़कर 65 किलोमीटर प्रति घंटा हो गया और विशालकाय लहरें नौका से टकराने लगीं और उसे पानी से भर दिया। +","hava ka veg bakar 65 kilomitar prti ghnta ho gaya aur vishalkay lahren nauka se takrane lagin aur use pani se bhar diya. +",9,2,negative,neutral,negative +"Folder% 1 already exists.% 2 may become owner and permissions may change. Do you really want to use% 3? +","फ़ोल्डर% 1 पहले ही मौजूद है.% 2 मालिक बन सकता है और अनुमतियाँ बदल सकती हैं. क्या आप सचमुच% 3 का इस्तेमाल करना चाहते हैं? +","folder 1 pahle hi maujood hai 2 owner ban sakta hai aur anumtiyan badal sakti hain kya aap sachmuch 3 ka istemal karna chahte hain +",8,1,neutral,neutral,positive +"Something like this is happening to Farooq Abdullah. +","कुछ ऐसी ही बात फारूक अदुल्ल के साथ हो रही है. +","kuchh aesi hi bat pharook happening ke sath ho rahi hai +",7,1,negative,neutral,positive +"What are they waiting for – except the Last Day, that it may suddenly come upon them while they are unaware? +","क्या वे बस उस (क़ियामत की) घड़ी की प्रतीक्षा कर रहे है कि वह सहसा उनपर आ पड़े और उन्हें ख़बर भी न हो +","ve bas us last ki ghari ki prtiksha kar rahe hai ki vah unaware unapar aa pare aur unhen bar bhi n ho +",8,0,neutral,neutral,negative +"And they will offer (their full) submission to Allah (Alone) on that Day, and their invented false deities [all that they used to invoke besides Allah, e. g. idols, saints, priests, monks, angels, jinns, Jibrael (Gabriel), Messengers, etc.] will vanish from them. +","उस दिन वे अल्लाह के आगे आज्ञाकारी एवं वशीभूत होकर आ पड़ेगे। और जो कुछ वे घड़ा करते थे वह सब उनसे खोकर रह जाएगा +","us din ve allah ke aage aajnjakari evn vashibhoot hokar aa parege. aur jo kuchh ve ghara karte the vah sab unse khokar rah jaega +",4,7,negative,neutral,negative +"Accursed wherever they are found, [being] seized and massacred completely. +","फिटकारे हुए होंगे। जहाँ कही पाए गए पकड़े जाएँगे और बुरी तरह जान से मारे जाएँगे +","accursed hue honge. jahan kahi pae ge pakare jaenge aur buri tarah jan se mare jaenge +",5,5,negative,neutral,neutral +"Could not decode private key. +","निजी कुंजी को विगोपित नहीं कर सका. +","private key ko decode nahin kar saka +",8,4,negative,neutral,neutral +"As long as they continue to mix up caste and race , they can go about their business , ” he says. +","जब तक वे जाति और नस्ल को मिलते रहैंगे तब तक उनका धंधा चलता रहेगा . ' ' +","jab tak ve caste aur nasl ko milte rahainge tab tak unka business chalta rahega +",9,0,neutral,neutral,neutral +"We have first a body supported by the physical life - force, the physical prana which courses through the whole nervous system and gives its stamp to our corporeal action, so that all is of the character of the action of a living and not an inert mechanical body. +","सबसे पहले है हमारा शरीर जिसे भौतिक प्राणशक्ति अर्थात् स्थूल प्राण धारण किये है; यह प्राण समपूर्ण स्नायुमण्डल में गति करता है और हमारे शरीर के कार्य पर अपनी छाप लगा देता हैं परिणामस्वरूप, इसके सभी कार्य किसी जड़-यान्त्रिक शरीर की नहीं, बल्कि एक सजीव की क्रिया का स्वभाव धारण किये रहते हैं। +","sabse pahle hai hamara body jise bhautik pranashakti arthat sthool force dharan kiye hai yah force sampoorn nervous men gati karta hai aur hamare body ke action par apni stamp laga deta hain parinamasvroop , iske sabhi action kisi jar-yantrik body ki nahin , balki ek life ki kriya ka character dharan kiye rahte hain. +",7,0,neutral,neutral,positive +"It will act as a platform where novel ideas are nurtured and innovators mentored to develop new products. +","यह एक ऐसे मंच के रूप में कार्य करेगा जहां नवीन विचारों को प्रोत्साहन मिलेगा और नए उत्पादों के विकास के लिए नवान्वेषकों को प्रोत्साहित किया जाएगा। +","yah ek aese platform ke roop men kary karega jahan novel ideas ko protsahan milega aur ne products ke vikas ke lie innovators ko protsahit kiya jaega. +",9,2,positive,neutral,positive +"The market rates are going down. +","बाजार दर जल्दी नीचे जा रहे हैं। +","market dar jaldi niche ja rahe hain. +",9,1,neutral,neutral,neutral +"and we had thought that men and jinn would never speak against God a lie. +","और ये कि हमारा तो ख्याल था कि आदमी और जिन ख़ुदा की निस्बत झूठी बात नहीं बोल सकते +","aur ye ki thought that men tha ki aadmi aur jin god a lie jhoothi bat nahin bol sakte +",6,3,neutral,negative,negative +"As long as they continue to mix up caste and race , they can go about their business , ” he says. +","जब तक वे जाति और नस्ल को मिलते रहैंगे तब तक उनका धंधा चलता रहेगा . ' ' +","jab tak ve caste and race ko milte rahainge tab tak unka dhndha chalta continue +",9,1,neutral,neutral,neutral +"That 's why he stole the salver. +","चांदी की थाली की चोरी इसी कारण की है। +","chandi ki stole the salver isi karan ki hai. +",5,1,negative,neutral,neutral +"The next thing is that, if you want to predict +","दूसरी ये कि, यदि आप पूर्वानुमानित करना चाहें +","next ye ki , yadi aap poorvanumanit karna chahen +",8,2,neutral,neutral,positive +"I assure you, I haven 't even seen him. she said. +","मैं आपको यकीन दिलाती हूं कि मैंने आज तक उसे देखा भी नहीं है। +","main aapko yakin dilati hoon ki mainne aaj tak use dekha bhi nahin hai. +",10,0,neutral,neutral,positive +"The doctor proscribed smoking in the waiting room of his clinic. +","डॉक्टर ने अपने क्लिनिक के प्रतीक्षा कक्ष में धूम्रपान की सख्त मनाही कर दी। +","doctor ne apne klinik ke waiting room men dhoomrpan ki sakht manahi kar di. +",9,2,neutral,neutral,neutral +"He made the Subhashbabu the Chief Working Officer of the corporation. +","उन्होंने सुभाषबाबू को महापालिका का प्रमुख कार्यकारी अधिकारी बनाया। +","unhonne subhashbabu ko corporation ka chief working officer banaya. +",10,0,neutral,neutral,neutral +"The focus now has to be on implementation of these agreements. +","अब इन समझौतों को अमल में लाने पर ध्यान देना होगा। +","ab in agreements ko implementation men lane par focus dena hoga. +",9,2,neutral,neutral,positive +"In Uttarapatha there is a mention of a golden stupa at Mathura. +","उत्तरापथ में मथुरा में सुवर्णस्तूप होने का उल्लेख मिलता है। +","uttrapath men mention men suvarnastoop hone ka ullekh milta hai. +",7,2,neutral,neutral,neutral +"A type of reproduction without fertilization. +","निषेचन रहित प्रजनन का एक प्रकार +","fertilization rahit reproduction ka ek type +",10,0,neutral,neutral,neutral +"In most countries in the world, there are approximately 105 female births for every 100 males. +","विश्व के अधिकतर देशों में, प्रति 100 पुरुषों के पीछे लगभग 105 स्त्रियों का जन्म होता है, +","world ke adhikatar countries men , prti 100 males ke pichhe most 105 female ka births hota hai , +",8,0,neutral,neutral,neutral +"The day the sky will tremble, +","जिस दिन आसमान चक्कर खाने लगेगा +","jis day sky chakkar khane lagega +",8,2,neutral,neutral,negative +"Ibne Sina (980 - 237) associated with the medical science to be ahead of many who wrote the book became the basis of modern medical science +","इबने सीना (९८०-१०३७) ने चिकित्सा विज्ञान से संबंधित कई पुस्तकें लिखीं जो कि आगे जा कर आधुनिक चिकित्सा विज्ञान का आधार बनीं। +","ibne sina ९८०-१०३७ ne medical science se snbndhit kee pustken likhin jo ki aage ja kar modern medical science ka aadhar banin. +",9,0,neutral,neutral,neutral +"hoping that your sex cells, your male sex cells, +","इस उम्मीद में कि आपकी सेक्स कोशिकाएं, आपकी पुरुष सेक्स कोशिकाएं, +","is ummid men ki aapki sex cells, aapki male sex cells, +",9,2,neutral,negative,positive +"The instinctive nature of man to form into groups and to dance and sing is as old as human existence. +","नृत्य और गायन मानव की आंतरिक प्रकृति है तथा मानव-जीवन के साथ-साथ ही इसका आरंभ हुआ। +","nrity aur groups man ki aantrik instinctive hai tatha manav-jivan ke sath-sath hi iska aarnbh existence +",4,1,neutral,neutral,neutral +"These powers of the Supreme Court to grant special leave to appeal are far wider than the High Courts' power to grant certificates to appeal to the Supreme Court under article 134. +","अनुच्छेद 134 के अधीन उच्चतम न्यायालय में अपील के लिए प्रमाणपत्र देने की जो शक्ति उच्च न्यायालय को प्राप्त है, उससे कहीं अधिक व्यापक उच्चतम न्यायालय की ये शक्तियां अपील की विशेष इजाजत देने के बारे में हैं. +","article 134 ke adhin supreme court men appeal ke lie certificates dene ki jo power uchch court ko prapt hai , usse kahin adhik wider supreme court ki ye powers appeal ki special leave dene ke bare men hain +",7,1,neutral,neutral,positive +"Discussions in the assembly were marked by elements of purity, fairness, frankness and freedom. +","सभा में चर्चाएं स्वतंत्र, स्वच्छ एवं निर्बाध हुआ करती थीं. +","assembly frankness and freedom, svachchh evn nirbadh huaa karti thin +",5,1,positive,neutral,positive +"Under sub - rule 2 of rule 45, after hearing the charges, the Commandant may award such punishment to the accused which he is empowered to award +","नियम ४५ के उप-नियम २ के तहत, आरोपों को सुनने के बाद, कमांडेंट अभियुक्त के लिए ऐसी सज़ा अधिनिर्णित कर सकता है जिसके लिए वह सशक्त है. +","rule ४५ ke up-rule २ ke tahat, hearing the charges ke bad, commandant abhiyukt ke lie award such punishment kar sakta hai jiske lie vah sashakt hai +",8,2,neutral,neutral,positive +"for example, in this case, +","उदाहरण के तौर पर, यहाँ, +","udaharan ke taur par, yahan, +",7,3,neutral,neutral,neutral +"In the past year Germany also expressed its willingness to tap the vast skilled manpower pool India enjoys in the area of Information Technology. +","गत वर्ष जर्मनी ने इच्छा प्रकट की कि सूचना प्रौद्योगिकी के क्षेत्र में प्रशिक्षित भारतीयों की प्रतिभा का लाभ जर्मनी उठाना चाहता है। +","gat varsh jarmni ne ichchha prakat ki ki information technology ke vast skilled manpower bhartiyon ki prtibha ka labh jarmni uthana chahta hai. +",7,0,positive,neutral,positive +"During the fourth invasion of Durrani in 1757, a detachment was sent to chastise the Sikhs at Amritsar. +","सन् 1747 में दुर्रानी के चौथे हमले के समय सिक्खों को दण्ड देने के लिए सेना का एक खण्ड अमृतसर भेजा गया। +","detachment 1747 men durrani ke fourth hamle ke samay sikkhon ko dand dene ke lie sena ka ek khand amritsar bheja invasion +",5,4,neutral,neutral,negative +"But they say, “We found our parents on a course, and we are guided in their footsteps. ” +","बल्कि ये लोग तो ये कहते हैं कि हमने अपने बाप दादाओं को एक तरीके पर पाया और हम उनको क़दम ब क़दम ठीक रास्ते पर चले जा रहें हैं +","balki ye log to ye kahte hain ki hamne apne bap dadaon ko ek tarike par paya aur ham unko dam b dam thik raste par chale ja rahen hain +",9,2,neutral,neutral,neutral +"He told me to go to his room. +","उसने मुझे उसके कमरे में जाने को कहा। +","told mujhe uske room men jane ko kaha. +",9,0,neutral,neutral,neutral +"o Word Processors, DTP Solutions and SDKs for various Indian languages +","वर्ड प्रॉसेसर, तथा विभिन्न भारतीय भाषाओं के लिए डीटीपी समाधान तथा एसडीके +","word prsesar , o various indian bhashaon ke lie dtp solutions o esdike +",4,3,neutral,neutral,positive +"All the appellants pleaded not guilty to the charge and claimed to be tried +","सभी अपीलकर्ताओं ने अपराध स्वीकार नहीं किया और मुक़दमा चलाये जाने की मांग की. +","sabhi appellants ne apradh svikar nahin kiya aur mudma chalaye jane ki mang ki +",9,1,neutral,negative,positive +"They roam about widely in search of food . +","इस जाति के पक्षी भोजन की खोज में दूर दूर तक घूमते हैं . +","is jati ke pakshi food ki search men door door tak ghoomte hain +",6,3,neutral,neutral,neutral +"When they came to a gutter filled with rain water, they plunged in, scream - ing with laughter. +","छोकरे जब बारिश के पानी से भरा नाली के निकट पहुंचे, तो उसी में कूद पड़े और धमाचौकड़ी मचाते हुए हो-हल्ला करने लगे। +","laughter jab rain ke water se bhara gutter ke nikat pahunche , to usi men ing pare aur dhamachaukari machate hue ho-halla karne lage. +",6,2,negative,negative,positive +"Reading is a complex cognitive process of decoding symbols for the purpose of deriving meanings. +","पाठन, अर्थ प्राप्त करने के उद्देश्य से प्रतीकों के विकोडन की एक जटिल संज्ञानात्मक प्रक्रिया है। +","reading, meanings prapt karne ke uddeshy se process of decoding ki ek complex cognitive process hai. +",8,1,neutral,neutral,neutral +"What actually happened was the impulses were reduced. +","असलियत में ये हुआ कि गतियाँ कम हो गयीं. +","asliyat men ye huaa ki gatiyan impulses ho gayin +",7,1,neutral,negative,neutral +"The place where Bapu lost his life cannot but continue to be a spot attracting visits from devotees, tourists and others. +","जिस स्थान में बापू की हत्या हुई, वह उनके भक्तों, यात्रियों तथा अन्य लोगों को सदा ही आकर्षित करता रहेगा। +","jis place men bapu ki life huee , vah unke devotees , yatriyon tatha any others ko tourists hi aakarshit karta rahega. +",6,0,neutral,neutral,positive +"The use of money to create more money in the form of interest, dividend or profit etc. +","धनराशि से और ज्यादा धनराशि पैदा करने के लिए किया गया कार्य जो ब्याज, लाभांश, मुक्तता इत्यादि प्राप्ति द्वारा हो सकता है। +","money se aur create more money karne ke lie kiya gaya kary jo interest, dividend, muktta ityadi prapti dvara ho sakta hai. +",7,5,neutral,neutral,positive +"This movement was a plan to mobilize the support of the governments of Afghanistan and Turkey in organizing a revolt within India to overthrow the British rule. +","यह आंदोलन वास्तव में, अंग्रेजों के शासन का तख्ता पलटने के लिए भारत के अंदर विद्रोह को आयोजित करने में अफगानिस्तान और तुर्की की सरकारों का समर्थन हासिल करने की एक योजना थी। +","yah aandolan vastav men, angrejon ke overthrow the british palatne ke lie bharat ke andar organizing a revolt karne men afghanistan and turkey ki sarkaron ka samarthan hasil karne ki ek yojna thi. +",5,1,neutral,neutral,positive +"Water is major constituents of all living matters. +","पानी सभी जीवित पदार्थों का मुख्य घटक है. +","water sabhi living padarthon ka major constituents hai +",8,1,neutral,neutral,neutral +"Deposits of stock is governed by prescribed rules. +","माल जमा की प्रक्रिया निर्धारित नियमों के अनुसार होगी। +","stock deposits ki prakriya prescribed rules ke anusar hogi. +",10,0,neutral,neutral,neutral +"Say: “He is Allah, the One and Unique; +","(ऐ रसूल) तुम कह दो कि ख़ुदा एक है +","say unique tum kah do ki uda ek hai +",7,0,positive,neutral,neutral +"Its other important dimension is that it must provide impetus to such a campaign that endeavours to bring about desirable changes in the organisations, institutions and circumstances and thus aims at extirpating evils. +","इसका एक अन्य आयाम यह है कि इसके माध्यम से एक ऐसा अभियान चलाया जाये जो संगठनों, संस्थाओं और परिरिस्थितियों में आवश्यकतानुसार परिवर्तन लाने तथा इस प्रकार सामाजिक बुराइयों को खत्म करने का प्रयास करे। +","iska ek other dimension yah hai ki iske madhyam se ek aesa campaign chalaya jaye jo organisations , snsthaon aur pariristhitiyon men aavashyaktanusar changes lane tatha is prkar samajik evils ko khatm karne ka pryas circumstances +",8,2,neutral,negative,negative +"My special congratulations to Shri Shashi Kapoor who has been honoured with the Dadasaheb Phalke Award this year. +","श्री शशि कपूर को मेरी विशेष बधाई जिन्हें इस वर्ष दादा साहेब फाल्के पुरस्कार प्रदान किया गया है। +","shri shashi kapoor ko meri vishesh badhaee jinhen is varsh dada award this year prdan kiya gaya hai. +",7,4,positive,positive,positive +"I throw a ball and it 's going to go up in the air. +","मैं एक गेंद फेंक और इसे हवा में ऊपर जाना जा रहा है। +","air ek ball phenk aur ise hava men oopar jana ja raha hai. +",5,1,neutral,neutral,neutral +"Unable to open lock file. +","लाक फ़ाइल खोलने में अक्षम. +","lock unable kholne men aksham +",4,1,negative,neutral,neutral +"Polar ice caps may melt further and increase the size of the oceans which may submerge large expanses of land - LRB - China, Egypt, Indonesia, Bangladesh and West Bengal face this threat - RRB -. +","अधिक मात्रा में ध्रुवों की बर्फ पिघलने से सागरों में जल का स्तर बढ़ जाएगा. जिससे पृथ्वी का काफी बड़ा भू-भाग इसमें डूब जाएगा. चीन, मिस्त्र, इन्डोनेशिया, बंग्लादेश और पश्चिम बंगाल के लिए यह खतरा मंडरा रहा है. +","adhik polar ice caps ki ice caps se sagron men jal ka star ba jaega jisse prithvi ka kaphi bara bhoo-bhag ismen doob jaega chin, mistr, indoneshiya, bngladesh aur pashchim bngal ke lie yah khatra mndra raha hai +",8,3,negative,positive,negative +"“It 's nice for swimming there. ” +","पानी में तैरने का वहाँ बहुत बढ़िया इन्तज़ाम है। +","pani men nice ka vahan bahut baiya intazam hai. +",3,4,positive,neutral,positive +"So, I need to decipher what I wrote. +","तो, मुझे समझने की जरुरत है कि मैंने क्या लिखा है। +","to, mujhe decipher ki jarurat hai ki mainne kya likha hai. +",8,1,neutral,negative,neutral +"When you go in these developing societies, +","जब आप इन विकासशील इलाकों में जाते हैं, +","jab aap in developing ilakon men jate hain, +",9,2,neutral,neutral,neutral +"The greatest crime in the world is not developing your potential. When you do your best, you are helping others. +","अपनी सामर्थ्य का पूर्ण विकास न करना दुनिया में सबसे बड़ा अपराध है. जब आप अपनी पूर्ण क्षमता के साथ कार्य निष्पादन करते हैं, तब आप दूसरों की सहायता करते हैं. +","apni potential ka poorn developing n karna duniya helping sabse greatest crime hai jab aap apni poorn kshamta ke sath kary nishpadan karte hain, tab aap doosron ki sahayta karte hain +",5,3,neutral,negative,positive +"Few, if any of us, can use this highest reason with any purity, but the attempt to do it is the topmost capacity of the inner instrument, the antahkarana. +","यदि हममें से कोई इस उच्चतम बुद्धि का प्रयोग किसी शुद्ध रूप में कर भी पाते हैं तो वे विरले ही होते हैं, किन्तु इसके लिये प्रयत्न करना अन्तःकरण की सबसे ऊंची क्षमता है। +","yadi hammen se koee is highest reason ka pryog kisi shuddh roop men kar bhi pate hain to ve virle hi hote hain, kintu iske liye prayatn karna antakaran ki sabse topmost capacity hai. +",6,1,neutral,neutral,neutral +"This position is similar to royal position, just the woman to take the other side of your face is the face of men. In a way it 's back to enter the position. The man' s situation stays the same kind of right royal position, but women by men toward the back right in front of his penis is hard bringing up my cunt. Then slowly enter the penis cunt gives. Women in this position quite comfortable lives. It supported him get his feet that put him in the attack is easier. This position is changing dramatically because of it with some other ideas on other furniture can be pursued. +","यह पोजीशन शाही पोजीशन की ही तरह है बस इसमें महिला अपनी चेहरा पुरुष के चेहरे के दूसरी ओर कर लेती है. एक तरह से यह पीछे से प्रवेश की भी पोजीशन है. इसमें पुरुष की स्थिति ठीक शाही पोजीशन की ही तरह रहती है लेकिन महिला पुरुष की ओर पीठ करके ठीक उसके लिंग के सामने अपनी योनि को लाकर खड़ी होती है. फिर धीरे से योनि को लिंग में प्रवेश कराती है. इस पोजीशन में महिला काफी आरामदायक स्थिति में रहती है. इसमें उसे सहारा उसके पैरों से मिलता है जिससे उसे धक्के लगाने में भी आसानी होती है. यह पोजीशन आश्चर्यजनक रूप से परिवर्तनशील है इसलिये इसे कुछ अन्य आइडिया के साथ दूसरे फर्नीचर पर भी अपनाई जा सकती है. +","yah similar royal similar ki hi tarah hai bas ismen woman apni face men ke chehre ke doosri or kar leti hai ek tarah se yah pichhe se prvesh ki bhi similar hai ismen men ki position way royal similar ki hi tarah rahti hai lekin woman men ki or pith karke way uske penis ke front apni cunt ko hard khari hoti hai phir dhire se cunt ko penis men prvesh karati hai is similar men woman kaphi comfortable position men rahti hai ismen use sahara uske pairon se milta hai jisse use attack lagane men bhi easier hoti hai yah similar aashcharyajanak roop se parivartanshil hai isliye ise kuchh other aaidiya ke sath doosre furniture par bhi apnaee ja sakti hai +",5,3,neutral,neutral,negative +"Under sub - rule 2 of rule 45, after hearing the charges, the Commandant may award such punishment to the accused which he is empowered to award +","नियम ४५ के उप-नियम २ के तहत, आरोपों को सुनने के बाद, कमांडेंट अभियुक्त के लिए ऐसी सज़ा अधिनिर्णित कर सकता है जिसके लिए वह सशक्त है. +","rule ४५ ke up-niyam २ ke tahat , charges ko sunne ke bad , commandant abhiyukt ke lie such punishment adhinirnit kar sakta hai jiske lie vah sashakt hai +",8,2,neutral,neutral,positive +"You know, my work is inspired +","आप जानते हैं, मेरा काम प्रभावित है +","aap jante hain, mera work inspired hai +",9,2,positive,positive,positive +"When Our manifest signs are recited to them, the faithless say to the faithful, ‘Which of the two groups is superior in station and better with respect to company? ’ +","और जब हमारी वाज़ेए रौशन आयतें उनके सामने पढ़ी जाती हैं तो जिन लोगों ने कुफ़्र किया ईमानवालों से पूछते हैं भला ये तो बताओ कि हम तुम दोनों फरीक़ो में से मरतबे में कौन ज्यादा बेहतर है और किसकी महफिल ज्यादा अच्छी है +","aur jab hamari signs are recited unke samne pai jati hain to jin logon ne kufr kiya eemanvalon se poochhte hain bhala ye to batao ki ham tum donon phario men se maratbe men kaun jyada behatar hai aur kiski mahphil jyada achchhi hai +",5,4,neutral,neutral,positive +"started speaking to us in the 20th century, +","से हमारी बातचीत 20 वीं सदी में शुरू हुई, +","se hamari batchit 20th vin century men shuroo huee , +",7,1,neutral,neutral,neutral +"Alas the woe that day for those who deny! +","तबाही है उस दिन झुठलानेवालों की +","woe hai us day jhuthlanevalon ki +",5,1,negative,neutral,negative +"learned the correct initial state for the 17 - bit LFSR, we will have also +","सही प्रारंभिक राज्य सीखा 17-बिट LFSR के लिए, हम भी करना होगा +","correct initial state sikha 17-bit LFSR ke lie , lfsr bhi karna bit +",7,1,neutral,neutral,neutral +"I ask no recompense of you; my reward is only with the Lord of the Universe. +","मैं इस काम पर तुमसे कोई प्रतिदान नहीं माँगता। मेरा प्रतिदान तो बस सारे संसार के रब के ज़ि्म्मे है। +","i is kam par tumse koee recompense nahin mangta. mera recompense to bas sare universe ke rab ke zimme hai. +",8,2,positive,neutral,positive +"Child - 3: Tell us now, Grandpa! +","बच्चा 3: फिर सुनाओ, दादा! +","child 3 : phir sunao , grandpa ! +",10,0,neutral,neutral,neutral +"When I'm not fighting poverty, I'm fighting fires +","जब मैं गरीबी के खिलाफ नहीं लड़ रहा होता, तब एक स्वयंसेवी +","jab main poverty ke khilaph nahin fighting raha hota, tab ek fires +",6,4,neutral,neutral,positive +"O Prophet, say to your wives: 'If you seek this life and its finery, come, I will release you with a fine release. +","ऐ रसूल अपनी बीवियों से कह दो कि अगर तुम (फक़त) दुनियावी ज़िन्दगी और उसकी आराइश व ज़ीनत की ख्वाहॉ हो तो उधर आओ मैं तुम लोगों को कुछ साज़ो सामान दे दूँ और उनवाने शाइस्ता से रूख़सत कर दूँ +","fine rasool apni biviyon se life do ki agar o release duniyavi zindgi aur uski finery v zinat ki khvah ho to udhar aao i o logon ko kuchh sazo saman de wives aur unvane shaista se roosat kar wives +",6,2,neutral,neutral,positive +"His old friend Amar Singh helped him, when his company ABCL failed and he had to thereby face financial trouble. +","उनके पुराने मित्र अमरसिंह (Amar Singh) ने इनकी कंपनी एबीसीएल के फेल हो जाने के कारण आर्थिक संकट के समय इनकी मदद कीं। +","unke purane mitr amarsinh Amar Singh ne inki knpni ebisiel ke phel ho jane ke face financial trouble ke samay inki madad kin. +",5,1,neutral,neutral,negative +"It seems that animals lower down the evolutionary ladder like bees and birds are born with their behaviourial patterns like the courting dances of the former and navigational instincts of the latter genetically fixed once for all. +","ऐसा प्रतीत होता है कि मधुमक्खी तथा पक्षियों जैसे विकास की सीढ़ी के निचले पायदोनों के प्राणियों का आचरण उनके जन्म के साथ निर्धारित किया जाता है। +","latter lower hota hai ki madhumakkhi tatha animals jaise evolutionary ki ladder ke nichle paydonon ke praniyon ka instincts unke janm ke sath nirdharit kiya jata former +",7,1,neutral,neutral,positive +"Sardar Bhagat Singh was the leader of the youth movement in Punjab carried on under the banner of Nawjawan Bharat Sabha with which Subhas Chandra associated himself closely at a later stage . +","सरदार भत सिंह पंजाब की ? नौजवान भारत सभा ? नाम से विख़्यात युवा आंदोलन के नेता थे , जिससे बाद में सुभाष चन्द्र का भी अंतरंग साहचर्य स्थापित हुआ . +","sardar bhagat singh punjab ki bharat movement banner nam se viyat youth aandolan ke leader the , jisse bad men chandra chandr ka bhi later sahachary sthapit huaa +",4,2,neutral,neutral,neutral +"(b) where the marriage of his parents does not subsist, in the net wealth of that parent who maintains the minor child in the previous year as defined in section 3 of the Income-tax Act, and where any such assets are once included in the net wealth of either parent, any such assets shall not be included in the net wealth of the other parent in any succeeding year unless the Assessing Officer is satisfied, after giving that parent an opportunity of being heard, that it is necessary so to do ; +","(ख) जहां उसके माता या पिता का विवाह अस्तित्व में नहीं है वहां उस माता या पिता के शुद्ध धन में सम्मिलित की जाएंगी जिसने आय-कर अधिनियम की धारा 3 में परिभाषित पूर्ववर्ष में अवयस्क संतान का भरणपोषण किया है, और जहां ऐसी कोर्इ आस्तियां माता या पिता में से किसी एक के शुद्ध धन में एक बार सम्मिलित कर ली जाती हैं वहां ऐसी कोर्इ आस्तियां, किसी उत्तरवर्ती वर्ष में माता या पिता में से किसी अन्य के शुद्ध धन में तब तक सम्मिलित नहीं की जाएंगी जब तक निर्धारण अधिकारी का, उस माता या पिता को सुनवार्इ का अवसर देने के पश्चात्, यह समाधान नहीं हो जाता है कि ऐसा करना आवश्यक है; +","b jahan uske parents ya child ka marriage astitv men nahin hai vahan us parents ya child ke net wealth men sammilit ki jaengi jisne aay-kar act ki section 3 men paribhashit previous men minor sntan ka bharanposhan kiya hai , aur jahan aesi kori assets parents ya child men se kisi ek ke net wealth men ek bar sammilit kar li jati hain vahan aesi kori assets , kisi uttaravarti year men parents ya child men se kisi other ke net wealth men tab tak sammilit nahin ki jaengi jab tak nirdharan officer ka , us parents ya child ko sunvari ka opportunity dene ke pashchat , yah samadhan nahin ho jata hai ki such karna necessary hai +",8,0,neutral,negative,positive +"The beaters ran away after injuring the man. +","पीटने वाले आदमी को घायल करके भाग गए। +","pitne vale man ko ghayal karke beaters ge. +",6,0,negative,neutral,neutral +"Then came forward Rajaraja Varma, diffident and nervous. +","इसके बाद भयभीत और आशंका से भरे राजराज वर्मा सामने आए। +","iske bad nervous aur aashnka se diffident rajaraja varma samne aae. +",7,2,neutral,neutral,negative +"Committee on Health and Family Welfare: +","स्वास्थ्य और परिवार कल्याण संबंधी समितिः +","health and family welfare snbndhi samitia +",7,3,neutral,neutral,neutral +"There are those who disbelieve in Allah and His Messengers and seek to differentiate between Allah and His Messengers, and say: 'We believe in some and deny others, and seek to strike a way between the two.' +","बेशक जो लोग ख़ुदा और उसके रसूलों से इन्कार करते हैं और ख़ुदा और उसके रसूलों में तफ़रक़ा डालना चाहते हैं और कहते हैं कि हम बाज़ (पैग़म्बरों) पर ईमान लाए हैं और बाज़ का इन्कार करते हैं और चाहते हैं कि इस (कुफ़्र व ईमान) के दरमियान एक दूसरी राह निकलें +","beshak jo log uda aur uske rasoolon se inkar karte hain aur uda aur uske seek to differentiate dalna chahte hain aur kahte hain ki ham baz paimbron par eeman lae hain aur baz ka inkar karte hain aur chahte hain ki is kufr v eeman ke darmiyan ek doosri rah niklen +",3,5,neutral,neutral,negative +"Speaking on the occasion, the President said India is fortunate to have a large young population to take forward her aspirational agenda of change. +","इस अवसर पर, राष्ट्रपति ने कहा कि, भारत सौभाग्यशाली है कि उसके पास परिवर्तन की आकांक्षापूर्ण कार्यसूची की प्राप्ति के लिए विशाल युवा पीढ़ी है। +","is avasar par, rashtrapti ne kaha ki, bharat saubhagyshali hai ki uske pas forward her aspirational karysoochi ki prapti ke lie large young pii hai. +",6,3,positive,positive,positive +"But that brings me to lesson number two: +","तो इस तरह मैं अपने दूसरे सबक तक पहुँचती हूँ। +","to is tarah main apne doosre number tak pahunchti hoon. +",5,7,neutral,neutral,positive +"Or like abundant rain from the cloud in which is utter darkness and thunder and lightning; they put their fingers into their ears because of the thunder peal, for fear of death, and Allah encompasses the unbelievers. +","या (उनकी मिसाल ऐसी है) जैसे आकाश से वर्षा हो रही हो जिसके साथ अँधेरे हों और गरज और चमक भी हो, वे बिजली की कड़क के कारण मृत्यु के भय से अपने कानों में उँगलियाँ दे ले रहे हों-और अल्लाह ने तो इनकार करनेवालों को घेर रखा हैं +","ya unki misal aesi hai jaise aakash se varsha ho rahi ho jiske sath andhere hon aur garaj aur chamak bhi ho, ve bijli ki karak ke karan mrityu ke bhay se apne put their fingers de le rahe hon-aur allah ne to inkar karnevalon ko gher rakha hain +",8,2,negative,neutral,negative +"Presence of excess ammount of uric acid in the urine. +","मूत्र में यूरिक एसिड मे उपलब्ध अत्यधिक मात्रा। +","urine men uric acid me upalabdh atydhik matra. +",7,3,neutral,negative,neutral +"She was touted as the next dream girl. +","मुद्दा उन्हें अगली स्वप्न सुंदरी करार दिया जा रहा था. +","mudda unhen next dream girl karar diya ja raha tha +",9,1,neutral,neutral,positive +"The Agreement on South Asian Free Trade Area (SAFTA) was signed by all the member States of the South Asian Association for Regional Cooperation (SAARC) during the twelfth 'SAARC Summit' held in Islamabad on 4 - 6th January, 2004. +","दक्षिणी एशिया मुक्त कारोबार क्षेत्र (साफ्टा) पर करारनामे पर इस्लामाबाद में 4-6 जनवरी को आयोजित बारहवेंदक्षिण एशियाई क्षेत्रीय सहयोग संघ (सार्क) सम्मेलन के दौरान सार्क के सभी सदस्य देशों ने हस्ताक्षर किए। +","south eshiya free trade area agreement par kararname par islamabad men 4-6 january ko aayojit barahvendakshin asian regional association twelfth states summit ke dauran states ke sabhi member deshon ne hastakshar kie. +",7,3,neutral,neutral,positive +"Dr. Ambedkar warned sternly, You will have to struggle for your own liberation. +","डा. आंबेडकर ने साफ साफ सचेत किया, अपने उद्धार के लिए आपको संघर्ष करना होगा। +","ambedkar aanbedakar ne saph saph sachet kiya , apne liberation ke lie own sngharsh karna hoga. +",7,0,neutral,neutral,negative +"Indeed, We thus reward the doers of good. +","निस्संदेह हम उत्तमकारों को ऐसा ही बदला देते है +","nissndeh ham reward the doers hi badla dete hai +",6,4,positive,neutral,positive +"If this option is checked, every new view will display marks for code folding, if code folding is available. +","यदि यह विकल्प चुना जाता है, हर नया दृश्य कोड फोल्डिंग के मार्क्स दिखाएगा, यदि कोड फोल्डिंग उपलब्ध है. +","yadi yah option chuna jata hai , har new view code folding ke marks dikhaega , yadi code folding available hai +",7,5,neutral,neutral,neutral +"We gave the four a row and we gave the eight a row. +","हम 4 को एक पंक्ति देते है और 8 को एक पंक्ति देते हैं. +","ham 4 ko ek row dete hai aur 8 ko ek row dete hain +",8,2,neutral,neutral,neutral +"and the smell of the earth, the wheat, the grass, the charged particles. +","और मिट्टी, गेहूं, घास की गंध। +","aur earth , wheat , grass ki smell +",9,2,neutral,neutral,negative +"He never lost a chance to refer to them in an appreciative voice when delivering important speeches. +","महत्वपूर्ण भाषणों में वे इन दोनों को उद्घृत करना नहीं भूलते थे। +","delivering important speeches ve in donon ko udghrit karna nahin bhoolte the. +",8,4,positive,neutral,positive +"The cyst got intumesce as it was not treated. +","छाले का इलाज न होने के कारण वह सूज गया है. +","chhale ka ilaj n hone ke karan vah cyst gaya hai +",8,1,negative,neutral,neutral +"Many scholars - and , of course , there are many who dispute the point - are of the opinion that quite possibly the idea of making a harp originated in the twang of the hunting or martial bow and the plectrum in the arrow . +","हालांकि अनेक विद्वान इस मत का विरोध करते हैं , फिर भी बहुत से विद्वानों की यह मान्यता है कि तंत्र-वाद्य के निर्माण का विचार संभवत : शिकारी या युद्ध संबंधी धनुष और बाण के कोण द्वारा उत्पन्न टंकार से दिमाग में आया होगा . +","halanki anek vidvan is mat ka virodh karte hain , phir bhi bahut se vidvanon ki yah manyta hai ki dispute the point ka vichar snbhavat : hunting or martial snbndhi dhanush aur ban ke kon dvara utpann tnkar se dimag men aaya hoga +",4,5,neutral,neutral,negative +"In the year 1985-86, the erstwhile Ministry of Welfare was bifurcated into the Department of Women and Child Development and the Department of Welfare. +","वर्ष 1985-86 में पूर्ववर्ती कल्याण मंत्रालय को महिला एवं बाल विकास विभाग तथा कल्याण विभाग में विभक्त किया गया था। +","year 1985-86 men poorvavarti welfare ministry ko women evn erstwhile development department tatha welfare department men vibhakt kiya gaya tha. +",7,6,neutral,neutral,neutral +"A pangolin 's territory is around 3 square miles 8 sq km. +","पैंगोलिन का क्षेत्र लगभग आठ वर्ग किलोमीटर का होता है। +","pangolin ka territory lagabhag square varg miles ka hota hai. +",7,4,neutral,neutral,neutral +"Till, when the Messengers despaired, deeming they were counted liars, Our help came to them and whosoever We willed was delivered. Our might will never be turned back from the people of the sinners. +","पहले के पैग़म्बरो ने तबलीग़े रिसालत यहाँ वक कि जब (क़ौम के ईमान लाने से) पैग़म्बर मायूस हो गए और उन लोगों ने समझ लिया कि वह झुठलाए गए तो उनके पास हमारी (ख़ास) मदद आ पहुँची तो जिसे हमने चाहा नजात दी और हमारा अज़ाब गुनेहगार लोगों के सर से तो टाला नहीं जाता +","pahle ke till ne tablie risalat yahan liars ki jab aum ke eeman lane se paimbar mayoos ho messengers aur un logon ne samajh liya ki vah jhuthlae messengers to unke pas hamari as help aa pahunchi to jise hamne chaha najat di aur hamara azab sinners logon ke sar se to tala nahin jata +",5,1,neutral,neutral,negative +"The Ministry of Labour & Employment, Government of India, instituted the National Safety Awards (Mines) in 1983 for the contest year 1982 to promote a competitive spirit amongst mine operators for the betterment of safety standards in mines and to give due recognition to outstanding safety performance at the national level. +","श्रम और रोजगार मंत्रालय, भारत सरकार ने खानों में सुरक्षा मानकों की बेहतरी तथा राष्ट्रीय स्तर पर उल्लेखनीय सुरक्षा निष्पादन को उचित महत्त्व देने के लिए खान संचालकों में प्रतिस्पर्धा की भावना को बढ़ावा देने के लिए प्रतियोगिता वर्ष के लिए 1983 में राष्ट्रीय सुरक्षा पुरस्कार (खान) आरम्भ किए थे। +","labour aur rojgar ministry , india government ne khanon men safety standards ki amongst tatha national level par outstanding safety nishpadan ko due recognition dene ke lie mines operators men competitive ki spirit ko baava dene ke lie contest year ke lie 1983 men national safety puraskar mines aarambh kie the. +",7,1,positive,neutral,positive +"As for those whose deeds weigh light in the scales—it is they who have ruined their souls, because they used to wrong Our signs. +","(और जिनके नेक अमाल के) पल्ले हलके होगें तो उन्हीं लोगों ने हमारी आयत से नाफरमानी करने की वजह से यक़ीनन अपना आप नुक़सान किया +","aur jinke deeds light ke palle halke hogen to unhin logon ne hamari aayat se napharmani karne ki vajah se yainan apna aap nusan kiya +",5,4,negative,neutral,negative +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","vastav men eparchar kal exposure time ko diya gaya vigopan kal hai jo kisi optical system eparchar ke madhyam se chitr satah men kisi kendrbindu par aati hai. +",8,1,neutral,neutral,neutral +"Dhanpat Rai Shreevastav, who wrote with pen name Premchand (31 July 1880 - 8 October 1936) was one of the greatest Indian , Hindi and Urdu writers. +","प्रेमचंद (३१ जुलाई १८८० - ८ अक्तूबर १९३६) के उपनाम से लिखने वाले धनपत राय श्रीवास्तव हिन्दी और उर्दू के महानतम भारतीय लेखकों में से एक हैं। +","name dhanpat july १८८० - ८ aktoobar pen ke upnam se likhne vale dhanapat ray shrivastav hindi aur urdu ke greatest indian writers men se ek hain. +",5,6,positive,positive,positive +"And he said: ye have taken images instead of Allah out of affection between you in the life of the world; but on the Day of Resurrection ye shall deny each other and ye shall curse each other, and your resort shall be the Fire, and ye shall have no helpers. +","और उसने कहा, ""अल्लाह से हटकर तुमने कुछ मूर्तियों को केवल सांसारिक जीवन में अपने पारस्परिक प्रेम के कारण पकड़ रखा है। फिर क़ियामत के दिन तुममें से एक-दूसरे का इनकार करेगा और तुममें से एक-दूसरे पर लानत करेगा। तुम्हारा ठौर-ठिकाना आग है और तुम्हारा कोई सहायक न होगा।"" +","aur usne kaha, allah se hatakar tumne kuchh moortiyon ko keval sansarik jivan men apne parasprik prem ke karan pakar rakha hai. phir iyamat ke din tummen se ek-doosre ka inkar karega aur tummen se ek-doosre par lanat karega. tumhara thaur-thikana aag hai aur tumhara koee sahayak n hoga. +",4,7,negative,neutral,negative +"Of the people there are some who say: ""We believe in Allah and the Last Day;"" but they do not (really) believe. +","कुछ लोग ऐसे हैं जो कहते हैं कि हम अल्लाह और अन्तिम दिन पर ईमान रखते हैं, हालाँकि वे ईमान नहीं रखते +","kuchh people aese hain jo kahte hain ki ham allah aur last day par eeman rakhte hain , halanki ve eeman nahin rakhte +",9,0,neutral,neutral,neutral +"They noticed Chandu Menon steadily enjoying handfuls of the pudding as if nothing had happened. +","उन्होंने देखा कि चन्दु मेनन खुब मजे से खाने पर ऐसे हाथ साफ करने में मशगूल हैं जैसे कुछ हुआ ही नहीं। +","unhonne dekha ki chandu menan khub maje se khane par aese hath saph karne men mashgool hain jaise kuchh huaa hi nahin. +",5,8,neutral,neutral,positive +"In the twenty first century Maoist 's rebel spread a lot. +","इक्कीसवीं सदी की शुरुआत में नेपाल में माओवादियों का आन्दोलन तेज होता गया। +","ikkisvin sadi ki shuruaat men nepal men maovadiyon ka aandolan tej hota gaya. +",5,8,neutral,negative,negative +"These poems lack the sombre grandeur of Prantik, for the memory of the Borderland and the haunting sense of the terror and beauty that Meanwhile he was content to relax and watch and savour what simple delight of sight and sound were still left for him on earth. +","इन कविता संकलनों में? प्रांतिक? की विषादपूर्ण श्रेष्ठता नहीं थी, क्योंकि अब सीमा प्रदेश की स्मृति या संत्रास और सौंदर्य का परिवेश थम चला था और कवि एक बार फिर धरती की नर्म बांहों में था. विस्मयकारी उत्कृष्टता का विवेक बाद में लौटा जब अभिव्यक्ति फिर से विषादपूर्ण उत्प्रेरण की ऊचाइयों को छू लेने को होती. इस समय वे उनके लिए धरती पर बचे सामान्य दृश्य और श्रव्य को देखकर बड़े आराम से आश्वस्त हो रहे थे और उनका आनंद उठाते प्रसन्न थे. +","in kavita snkalnon men prantik ki sombre grandeur nahin thi , kyonki terror sima prdesh ki memory ya sntras aur beauty ka parivesh tham chala tha aur kavi ek sound phir earth ki narm banhon men tha vismaykari utkrishtta ka sense bad men lauta jab content phir se sombre utpreran ki oochaiyon ko borderland lene ko hoti is samay ve unke lie earth par bache simple sight aur shravy ko dekhakar bare aaram se aashvast ho rahe the aur unka delight uthate prasann the +",7,1,neutral,negative,positive +"He said, “Our Lord is He who gave everything its existence, then guided it. ” +","मूसा ने कहा हमारा परवरदिगार वह है जिसने हर चीज़ को उसके (मुनासिब) सूरत अता फरमाई +","lord ne kaha everything paravardigar vah hai jisne har chiz ko uske munasib soorat existence pharmaee +",6,2,positive,neutral,neutral +"Indeed, We thus reward the doers of good. +","निस्संदेह हम उत्तमकारों को ऐसा ही बदला देते है +","nissndeh ham doers ko aesa hi badla dete hai +",7,2,positive,neutral,positive +"this expression, it 's the derivative of y. +","इस अभिव्यक्ति, यह व्युत्पन्न y का है। +","is expression , yah derivative y ka hai. +",7,3,neutral,neutral,neutral +"Let me draw a number line here, and I 'm just going to +","इसलिए मैं एक संख्या रेखा खिचने जा रहा हू, और +","islie draw a number line draw ja raha hoo, aur +",4,1,neutral,neutral,positive +"It was Senator Obama when they created it. They changed the name later. +","जब उन्होंने इसे बनाया तो वह सेनेटर ऒबामा था. बाद में उन्होंने नाम बदल दिया. +","jab unhonne ise banaya to vah senator obama tha bad men unhonne name badal diya +",6,6,neutral,neutral,positive +"No indeed! When it reaches up to the collar bones +","कुछ नहीं, जब प्राण कंठ को आ लगेंगे, +","kuchh nahin, jab pran reaches ko aa lagenge, +",6,8,neutral,neutral,negative +"Thereafter, We utterly destroyed the rest, +","(और हलाक हो गयी) फिर हमने उन लोगों को हलाक कर डाला +","aur halak ho rest phir hamne un logon ko halak kar dala +",6,0,negative,negative,negative +"Exposure time will be shifted forward by% d% s,% d% s,% d% s, and% d% s. +","एक्सपोजर समय आगे बढ़ा दिया जाएगा% d% s,% d% s,% d% s, और% d% s से. +","exposure time forward baa diya jaega d s, d s, d s, aur d s se +",6,1,neutral,neutral,neutral +"Cement Machinery: - there are 18 units in the organized sector for the manufacture of complete cement plant machinery. +","सीमेंट मशीनरीः-पूर्ण सीमेंट संयंत्र मशीनरी के विनिर्माण के लिए संगठित क्षेत्रक में 18 यूनिट हैं। +","cement mashinria-poorn cement machinery units ke vinirman ke lie sngthit sector men 18 yoonit complete +",5,7,neutral,neutral,neutral +"literature fo various dialects of hindi are still popular today, and even today, many poets and writers use regional languages for their work +","हिंदी की विभिन्न बोलियों का साहित्य आज भी लोकप्रिय है और आज भी अनेक कवि और लेखक अपना लेखन अपनी-अपनी क्षेत्रीय भाषाओं में करते हैं। +","hindi ki vibhinn dialects of hindi aaj bhi lokapriy hai aur aaj bhi anek poets and writers apna lekhan apni-apni kshetriy bhashaon men karte hain. +",6,4,neutral,neutral,positive +"In the last Conference of Vice Chancellors, we took a number of decisions. +","कुलपतियों के विगत सम्मेलन में, हमने अनेक निर्णय लिए। +","chancellors ke vigat sammelan men, hamne anek nirnay lie. +",8,1,neutral,neutral,positive +"The Vision Statement highlighting the Perspective Plan 2015 of the Department of Ocean Development was formulated in the year 2002 stipulating the Vision, the Mission, the Mandate and the Priority Areas, to be pursued by the Department over the next decade. +","विभाग के लिए परिदृश्य परिसंकल्प 2015 को 2002 में बनाया गया था। इसमें अगले दशक के दौरान उन विभिन्न मिशनों, प्राथमिकता क्षेत्रों, दायित्वों आदि की पहचान की गई है जिन्हें विभाग प्राप्त करने का प्रयास करेगा। +","department ke lie vision parisnkalp 2015 ko 2002 men statement gaya plan ismen next decade ke dauran un vibhinn mission , priority areas , dayitvon aadi ki pahchan ki year hai jinhen department prapt karne ka pryas karega. +",7,1,neutral,neutral,positive +"The higher education sector is witnessing sweeping changes the world over. +","उच्च शिक्षा क्षेत्र में पूरे विश्व में तीव्र बदलाव आ रहे हैं। +","higher education sector men poore vishv men tivr changes aa rahe hain. +",7,3,positive,negative,neutral +"May we Work Together with Vigour and Energy +","हम मिलकर उत्साह और ऊर्जा के साथ कार्य करें +","ham milakar energy aur vigour ke sath kary karen +",8,2,positive,neutral,positive +"Do they seek to hasten Our chastisement? +","तो क्या ये लोग हमारे अज़ाब की जल्दी कर रहे हैं +","to kya ye log hamare seek to hasten kar rahe hain +",7,3,neutral,neutral,neutral +"Show the properties and metadata of the selected image +","चयनित छवि की मेटाडेटा व गुण दिखाएँ +","selected properties and metadata v gun show +",6,0,neutral,neutral,neutral +"A conflict or disagreement comes into being or originates. +","कोई टकराव या असहमति पैदा होती है या अस्तित्व में आती है। +","koee takrav ya asahamti paida hoti hai ya astitv conflict or disagreement +",3,5,neutral,neutral,negative +"It shduld be recommended by the Tahsil Committee; 4. +","3. तहसील कमेटी द्वारा उसकी सिफारिश की जानी चाहिये। +","3 tahsil committee dvara uski recommended ki jani chahiye. +",9,0,neutral,neutral,positive +"They were the products of the revolution. +","वे क्रान्ति की सन्तानें थीं. +","ve revolution ki products thin +",8,1,neutral,neutral,neutral +"The Indian Government has been disinvesting from the basic education for last 5 years. +","भारतीय सरकार पिछले 5 वर्षों से बुनियादी शिक्षा से विनिवेश कर रही है। +","indian government last 5 varshon se basic education se vinivesh kar rahi hai. +",9,2,negative,negative,neutral +"The flow of thought ran through my mind. +","दिमाग से विचार का प्रवाह निकल गया। +","mind se thought ka flow ran gaya. +",6,5,neutral,negative,neutral +"Observe the fly land on the ceiling of your zoom after its flight. +","घरेलू मक्खी को उड़ान के बाद अपने कमने की छत पर बैठते हुए देखिए। +","ghareloo fly ko zoom ke bad apne kamne ki ceiling par baithte hue dekhie. +",8,4,neutral,neutral,neutral +"The pots have to be exposed to sunlight as the spirulina takes 3 to 4 days to mature. +","चूंकि स्पाइरुलिना को बढ़ने में 3-4 दिन लग जाते हैं इसलिए पॉट पर सूर्य की रोशनी अवश्य पड़नी चाहिए। +","choonki spairulina ko bane men 3-4 din lag jate hain islie pt par soory ki roshni avashy parni chahie. +",8,1,neutral,neutral,positive +"In response to popular demand, he would also include his old stage hits in his repertoire. +","जनता की मांग पर उन्होंने अपने पुराने सफल रंगमंच नाटक भी रंगपटल पर सम्मिलित किये। +","response to popular par unhonne apne purane saphal rngmnch natak bhi rngapatal par sammilit kiye. +",7,2,neutral,neutral,positive +"Veer Savarkar 's Trial A number of people on the quay commenced to shout,' arretezle '. +","तट पर अनेक व्यक्ति अरेटेजेल पकड़ो... चिल्लाने लगे। +","trial par number people quay pakaro chillane lage. +",5,4,neutral,positive,positive +"We need really to see it. And instead of looking at this, +","हमें वास्तव में इसे देखने की ज़रूरत है और इसे देखने की अपेक्षा +","hamen vastav men ise dekhne ki zaroorat hai aur ise dekhne ki apeksha +",5,8,neutral,neutral,neutral +"The increasing adoption of the continuous casting process by the integrated steel plants would mean that they will themselves use most of the scrap generated by them . +","समन्वित इस्पात मिलों द्वारा निरन्तर कास्टिंग प्रक्रिया के अपनाने का अर्थ होगा कि अपने ही संयंत्रों से निकले टुकड़ों ( स्क्रेप ) का वे स्वयं उपयोग करेंगे . +","integrated steel plants dvara continuous casting process ke apnane ka arth hoga ki apne hi snyntron se nikle tukaron skrep ka ve svyn upyog karenge +",7,5,neutral,positive,neutral +"(ii) continuous modernization as well as implementation of de - bottlenecking and technology upgradation schemes in the older plants; +",". पुराने संयंत्रों में निरंतर आधुनिकीकरण तथा बाधाओं को दूर करना और प्रौद्योगिकी उन्नयन +","older implementation men continuous modernization tatha badhaon ko ii karna aur technology upgradation +",5,3,neutral,neutral,positive +"Colostrum, which is the first yellowish secretion from the breast, is full of substances that protect the baby from getting an infection; it 's almost like a vaccine. +","स्तन से निकलनेवाला पीले रंग का द्रव, जिसे कोलोस्ट्रम कहते हैं, शिशु को संक्रमण से बचाने और उसकी प्रतिरोधक क्षमता को मजबूत करने का सबसे अच्छा उपाय है। यह एक टीका है। +","breast se nikalnevala yellowish rng ka drav , jise colostrum kahte hain , baby ko infection se bachane aur uski prtirodhak kshamta ko majboot karne ka sabse achchha upay first yah ek vaccine first +",8,0,neutral,neutral,positive +"I congratulate him for winning this coveted award. I am sure he will continue to enrich Hindi literature in the years to come. +","मैं इस प्रतिष्ठित पुरस्कार को जीतने के लिए उन्हें बधाई देता हूं। मुझे विश्वास है कि वह आने वाले वर्षों में हिंदी साहित्य को समृद्ध करते रहेंगे। +","i is prtishthit award ko jitne ke lie unhen badhaee deta years mujhe sure hai ki vah aane vale varshon men hindi literature ko samriddh karte rahenge. +",7,0,positive,positive,positive +"You can not store this. +","आप इसे संग्रहित नही कर सकते। +","aap ise sngrhit nahi kar sakte. +",9,1,negative,neutral,neutral +"No doubt it was the foremost troupe at the time. +","निस्संदेह यह उस समय की सर्वश्रेष्ठ मंडली थी। +","doubt yah us time ki foremost troupe thi. +",5,3,neutral,neutral,positive +"And We shall bring hell in front of the disbelievers. +","और उस दिन जहन्नम को इनकार करनेवालों के सामने कर देंगे +","aur us din hell in front karnevalon ke samne kar denge +",3,5,negative,neutral,negative +"Microscope was used to observe the tissue. +","ऊतकों को देखने के लिए सूक्ष्मदर्शी प्रयोग किया गया +","observe the tissue ke lie microscope pryog kiya gaya +",8,2,neutral,neutral,neutral +"you haven 't heard from in years. +","जिनसे काफी दिनों से बात नहीं हुई हो। +","jinse kaphi dinon se bat nahin huee ho. +",7,6,negative,neutral,neutral +"ATAL BIHARI VAJPAYEE: SELECTED SPEECHES Firstly, it helps correct a grave distortion that has taken place in public consciousness. +","पहला, इससे जन-चेतना में आने वाली एक गंभीर विकृति को दूर करने में मदद मिलती है। +","pahla, isse jan-chetna men aane vali ek gnbhir vikriti ko door karne men madad milti hai.1 +",7,2,neutral,neutral,neutral +"Ladies and Gentlemen, manpower and technology are the prime drivers of industrial progress. +","देवियो और सज्जनो, जनशक्ति और प्रौद्योगिकी, औद्योगिक प्रगति के प्रमुख प्रेरक हैं। +","ladies aur gentlemen , manpower aur technology , industrial progress ke prime drivers hain. +",9,1,positive,positive,positive +"So do not obey the deniers. +","अतः तुम झुठलानेवालों को कहना न मानना +","do tum deniers ko kahna n manna +",7,3,neutral,neutral,positive +"Then God sent a raven, which scratched the earth, so that He might show him how to hide the corpse of his brother. ""Alas!"" he cried, ""Am I not able even to be like this raven, so that I may hide the corpse of my brother?"" And he repented. +","(तब उसे फ़िक्र हुई कि लाश को क्या करे) तो ख़ुदा ने एक कौवे को भेजा कि वह ज़मीन को कुरेदने लगा ताकि उसे (क़ाबील) को दिखा दे कि उसे अपने भाई की लाश क्योंकर छुपानी चाहिए (ये देखकर) वह कहने लगा हाए अफ़सोस क्या मैं उस से भी आजिज़ हूं कि उस कौवे की बराबरी कर सकॅू कि (बला से यह भी होता) तो अपने भाई की लाश छुपा देता अलगरज़ वह (अपनी हरकत से) बहुत पछताया +","tab use fikr huee ki corpse ko kya kare to earth ne ek raven ko bheja ki vah zamin ko kuredne able taki use abil ko dikha de ki use apne brother ki corpse kyonkar alas chahie ye dekhakar vah kahne able hae afsos kya i us se bhi aajiz hoon ki us raven ki barabri kar sakoo ki bala se yah bhi hota to apne brother ki corpse chhupa deta alagaraz vah apni harakat se bahut pachhtaya +",6,3,neutral,neutral,negative +"Display options for Brasero - burn library +","ब्रैसेरो बर्न लाइब्रेरी के लिए प्रदर्शक विकल्प +","brasero barn library ke lie display options +",8,3,neutral,neutral,neutral +"He added that he had entirely abandoned himself to the French nation, which called itself the land of fraternity, equality and liberty, and as such, he would not take any part in the trial. +","उन्होंने आगे कहा कि वह खुद को पूरी तरह उस फ्रांस पर छोड़ चुके हैं, जो स्वाधीनता, समानता और बंधुत्व का दम भरता है, इसलिए वह इस मुकदमे में बिलकुल भाग नहीं लेंगे। +","nation land kaha ki vah khud ko poori tarah us french par chhor chuke hain , jo liberty , equality aur fraternity ka dam bharta hai , islie vah is mukadme men bilkul part nahin lenge. +",7,2,negative,negative,neutral +"From here the trekkers enter the deep valley and have to cross many small rivulets and huge rocks. +","यहां से ट्रैकर्स गहरी घाटी में प्रवेश करते हैं और उन्हें मार्ग में कई छोटे-छोटे नाले और बड़े-बड़े पत्थर पार करने पड़ते हैं। +","cross many small gahri enter the deep karte hain aur unhen marg men kee chhote-chhote nale aur bare-bare patthar par karne parte hain. +",3,4,neutral,neutral,positive +"This helps us to determine the lower time - limit of the period of their compilation. +","इसमें हमें उनके संकलन की निम्नतम समय-सीमा निर्धारित करने में सहायता मिलती है. +","ismen lower unke compilation ki limit samay-sima time karne men sahayta milti hai +",6,0,neutral,neutral,positive +"♫ from the edge of the observable universe ♫ +","♫ देखे जाने वाले ब्रह्मांड के किनारे से ♫ +","dekhe jane vale universe ke kinare se +",8,1,neutral,neutral,neutral +"But a higher standard of material life has a cultural content only when it is imbued with, or serves as a means of attaining some ultimate moral value. +","किंतु उच्च स्तर के भौतिक जीवन संस्कृति का अंश तभी आता हैं, जबकि वह उसमें संश्लिष्ट हो उच्च नैतिक मूल्यों को प्राप्त करने का कोई माध्यम बने. +","kintu uchch standard of material jivan snskriti ka ansh tabhi aata hain, jabki vah usmen snshlisht ho uchch naitik moolyon ko prapt karne ka koee madhyam bane +",8,2,neutral,neutral,positive +"Traditionally, welding has been used as a means of fabrication. +","पारम्परिक रूप से वेल्डिंग को विनिर्माण के साधन के रूप में उपयोग किया गया है। +","paramprik roop se fabrication ko vinirman ke means ke roop men upyog kiya gaya hai. +",6,2,neutral,neutral,neutral +"The main purpose of my visit was to further strengthen our multi-faceted relations and consolidate our ties. +","मेरी यात्रा का मुख्य उद्देश्य हमारे बहु-आयामी रिश्तों को और मजबूत बनाना तथा अपने रिश्तों को प्रगाढ़ करना था। +","meri yatra ka main purpose hamare bahu-aayami rishton ko aur majboot banana tatha apne rishton ko consolidate our ties +",7,1,positive,neutral,positive +"Then we can sit down and discuss all aspects of the matter. +","उस हालत में हम मिल बैठकर सभी पक्षों पर विचार कर सकते हैं। +","us matter men ham mil baithakar sabhi aspects par vichar kar sakte hain. +",9,2,neutral,neutral,neutral +"In those days i. e. before 1947 Urdu was the State language of the Punjab, and Punjabi was grossly neglected by the intellectuals, most of who behaved like 'Sahibs' in their speech, mannerisms, etc. +","उन दिनों 1947 से पूर्व उर्दू पंजाब की राजभाषा थी और बुद्धिजीवी जिनमें से अधिकांश तो अपनी बातचीत व व्यवहार में साहिबों जैसा व्यवहार करते थे तछा पंजाबी की पूरी तरह उपेक्षा करते थे। +","un days mannerisms se poorv urdu punjab ki most thi aur intellectuals jinmen se adhikansh to apni speech v state men sahibon jaisa state karte the tachha punjabi ki poori tarah upeksha karte the. +",7,6,negative,negative,negative +"The period of compulsory isolation to control the spread of infectious disease. +","संक्रामक रोग के प्रसार को नियंत्रित करने के लिए अनिवार्य अलगाव की अवधि. +","infectious disease ke control the spread karne ke lie anivary isolation to control +",6,4,neutral,neutral,negative +"With these words, I have great pleasure to inaugurate this Congress. +","इन शब्दों के साथ मुझे इस सम्मेलन का उदघाटन करते हुए प्रसन्नता हो रही है। +","in words ke sath i is congress ka udghatan karte hue pleasure ho rahi hai. +",7,2,positive,neutral,positive +"She cut the cake into six pieces and gave one to each of the children. +","उसने केक को छः टुकड़ो में काटकर, हर बच्चे हो एक टुकड़ा दिया। +","usne cake ko chha pieces men katakar , har children ho ek tukara diya. +",8,4,neutral,neutral,negative +"Life is not but our worldly life - we die and live, but we will not be resurrected. +","कि हम मरते भी हैं और जीते भी हैं और हम तो फिर (दुबारा) उठाए नहीं जाएँगे हो न हो ये (सालेह) वह शख्स है जिसने खुदा पर झूठ मूठ बोहतान बाँधा है +","ki life marte bhi hain aur jite bhi hain aur life to phir worldly uthae nahin jaenge ho n ho ye saleh vah shakhs hai jisne khuda par jhooth mooth bohtan bandha hai +",6,3,negative,neutral,negative +"At the end of second act dialogue between Raja Sruthoson and the music composer Nanda mentions the name of Brahmadutt. +","दूसरे अंक के अंत मे राजा सुतसोम और गाथाकार नन्द की बातचीत है जिसमे भी ब्रह्रादत का उल्लेख होता है। +","doosre ank ke ant me raja sutsom aur gathakar nand ki batchit hai jisme bhi brahradat ka ullekh hota hai. +",9,2,neutral,neutral,neutral +"Language model adapts as you write. +","भाषा मॉडल अनुकूलित करता है जैसे आप लिखते हैं +","language model adapts karta hai jaise aap write hain +",8,0,neutral,neutral,neutral +"It treats of the sacrifices to the fire , and is recited in three different ways . +","इसमें यज्ञों का विवेचन है और इसका पाठ तीन भिन्न प्रकार से किया जाता +","ismen sacrifices ka vivechan hai aur iska path tin different prkar se kiya jata +",8,1,neutral,neutral,negative +"Continuous sound that is produce by something that buzzes. +","किसी वस्तु द्वारा उत्पन्न भिभिनाहट की क्रमिक ध्वनि +","kisi something dvara utpann bhibhinahat ki continuous sound +",7,0,neutral,negative,neutral +"Since Bala himself will be speaking at TED +","क्योंकि बाला खुद बाद में TED में बोल रहे हैं +","kyonki bala khud bad men TED men bol rahe hain +",10,0,neutral,neutral,neutral +"(4) Where the net tonnage of ships chartered in exceeds the limit under sub-section (1) during any previous year, the total income of such company in relation to that previous year shall be computed as if the option for tonnage tax scheme does not have effect for that previous year. +","(4) जहां भाड़े पर लिए गए पोतों का शुद्ध टनभार, किसी पूर्ववर्ष के दौरान उपधारा (1) के अधीन वर्णित सीमा से अधिक हो जाता है, वहां ऐसी कंपनी की, उस पूर्ववर्ष के संबंध में कुल आय की संगणना इस प्रकार की जाएगी मानो उस पूर्ववर्ष के लिए टनभार कर स्कीम संबंधी विकल्प का कोर्इ प्रभाव नहीं था। +","4 jahan bhare par lie ge poton ka shuddh tanbhar, kisi poorvavarsh ke dauran updhara 1 ke limit under sub-section se adhik ho jata hai, vahan aesi knpni ki, us poorvavarsh ke snbndh men kul aay ki snganna is prkar ki jaegi mano us poorvavarsh ke lie tanbhar kar skim snbndhi vikalp ka kori prbhav nahin tha. +",4,6,neutral,negative,neutral +"Opening image ""% s"" +","""% s"" छवि सहेज रहा है +","s image sahej raha hai +",7,3,neutral,neutral,neutral +"So my question is, if it can be done in Europe, +","तो मेरा प्रश्न है, कि यदि ये यूरोप में किया जा सकता है, +","to mera question hai, ki yadi ye europe men kiya ja sakta hai, +",9,1,neutral,neutral,neutral +"Scientists analyse genes by taking a sample of DNA from an organism and sequencing it . +","वैज्ञानिक , जीव से डीएनए का नमूना लेकर तथा इसे क्रमबद्ध करके जीन का विश्लेषण करते हैं . +","scientists , organism se dna ka sample lekar tatha ise kramabaddh karke genes ka vishleshan karte hain +",8,3,neutral,neutral,neutral +"O dear Prophet (Mohammed – peace and blessings be upon him), wage holy war against the disbelievers and the hypocrites, and be strict with them; and their destination is hell; and what a wretched outcome! +","ऐ नबी! इनकार करनेवालों और कपटाचारियों से जिहाद करो और उनके साथ सख़्ती से पेश आओ। उनका ठिकाना जहन्नम है और वह अन्ततः पहुँचने की बहुत बुरी जगह है +","o wage ! inkar karnevalon aur hypocrites se war wretched aur unke sath destination se pesh aao. unka outcome jahannam hai aur vah antta pahunchne ki bahut buri jagah hai +",2,2,negative,negative,positive +"Run an application by typing a command or choosing from a list +","कमांड प्रविष्ट कर एक अनुप्रयोग चलाएँ या सूची से चुनकर +","command prvisht kar ek application chalaen ya list se chunakar +",7,3,neutral,neutral,neutral +"So, a smaller group, whether it is called a steering committee or something else, is needed which can be more active and can meet more frequently and with less expenses. +","इसीलिये एक ज्यादा छोटे समूह की जरूरत है, चाहे उसे आप कार्य संचालन समिति कहें या कुछ और, जो साल में कई बार मिल सके, अधिक सक्रिय हो सके और कम खर्च से काम चला सके। +","isiliye ek jyada smaller group ki jaroorat hai, chahe use aap kary snchalan samiti kahen ya kuchh aur, jo sal men kee bar mil sake, adhik sakriy ho sake aur kam kharch se kam chala sake. +",6,4,neutral,neutral,positive +"The production of a play is an exacting experience in planning and organization, hence it should not be done until children are ready to take responsibility and to profit by the work necessary for it. +","नाटक तैयार करने के लिए जिस योजना तथा संगठन की आवश्यकता होती है, उसे जुटा पाना आसान नहीं है; अतः इस कार्य को तभी हाथ में लेना चाहिए जब बच्चे उत्तरदायित्व को निभाने और आवश्यक परिश्रम से पूरा लाभ उठाने के लिए तैयार हों। +","play ready karne ke lie jis planning tatha organization ki necessary hoti hai , use juta pana aasan nahin hai hence is work ko tabhi hath men lena chahie jab children responsibility ko nibhane aur aavashyak parishram se poora experience uthane ke lie ready hon. +",8,4,negative,neutral,positive +"His ominous tone echoed Pakistani concerns about the lack of representation of the majority Pashtoon community within the Northern Alliance. +","उनकी तल्खी से एलयंस में भ-संयक पतून समुदाय का प्रतिनिधित्व न होने को लेकर पाकिस्तान की चिंता ज्ह्लकती थी. +","unki tone se northern men bh-snyak pashtoon community ka representation n hone ko lekar pakistani ki concerns jhlakti thi +",7,1,negative,neutral,negative +"9. For general advice please contact our general enquiry service 9 +","आम सलाह के लिए कृपया हमारी आम पूछताछ सेवा पर संपर्क करें। +","aam salah ke lie kripya hamari aam enquiry service par snpark advice +",7,3,neutral,neutral,positive +"Besides the above, there are other symbols of the village gods. +","इनके अतिरिक्त, ग्रामीण देवताओं के अन्य प्रतीक भी हैं। +","inke above , village gods ke other symbols bhi hain. +",7,3,neutral,neutral,neutral +"All his reviews are based on this criterion and hence do not go further than assessing the thought and discussing the language. +","उनकी समीक्षायें इन्हीं मापदण्डों पर आधारित होती हैं, अतः वह विचारों के मूल्यांकन और भाषा की चर्चा से आगे नहीं बढ़ पाते। +","unki reviews inhin mapadandon par aadharit hoti hain , ata vah thought ke moolyankan aur language ki charcha se criterion nahin ba pate. +",8,0,neutral,neutral,neutral +"Many of them are likely to return to India, but while they live abroad, all of them are vulnerable in many ways owing to the fact that they do not enjoy the privileges of citizenship in their host country. +","उनमें से बहुतों के भारत लौटने की संभावना है परंतु विदेश में रहने पर वे सभी इस सच्चाई की वजह से असुरक्षित हैं कि उन्हें अपने मेजबान देश की नागरिकता के लाभ नहीं मिलते हैं। +","unmen se bahuton ke bharat lautne ki snbhavna hai parntu videsh men rahne par ve sabhi is sachchaee ki vajah se asurakshit hain ki unhen apne mejban desh ki nagrikta ke labh nahin milte hain. +",9,1,negative,negative,negative +"The amount of space between two consecutive rows +","दो लगातार पंक्तियों के बीच की दूरी +","do consecutive amount of space ki doori +",5,0,neutral,neutral,neutral +"He was complaining of retching since two days. +","वह दो दिनों से उबकाई की शिकायत कर रहा था. +","vah do days se ubkaee ki shikayat kar raha tha +",9,2,negative,neutral,negative +"Quotation is invited for purchase of note briquettes of 40 Kgs (approx) per bag in sealed cover superscribed “Quotation for Purchase of Note Briquettes” and addressed to the General Manager, Issue Department, Reserve Bank of India, Kolkata - 700001” so as to reach the office on or before 14: 00 hrs on June 24, 2015 on the following terms and conditions. +","निम्नलिखित नियमों और शर्तों पर मुहरबंद लिफाफे में, जिसके ऊपर ‘नोट ब्रिकेट्स की खरीद के लिए निविदा ‘ लिखा हो और जो महाप्रबंधक, निर्गम विभाग, भारतीय रिज़र्व बैंक, कोलकाता – 700 001 को संबोधित हो, प्रति बैग 40 किलोग्राम (लगभग) के नोट ब्रिकेट्स की खरीद के लिए कोटेशन का आमंत्रण इस तरह से किया जाता है कि यह 24 जून 2015 को 14:00 बजे अथवा उसके पूर्व कार्यालय में पहुंच जाए। +","cover niymon aur conditions par sealed liphaphe men , jiske issue india note quotation ki purchase ke lie nivida india likha ho aur jo general , nirgam department , bhartiy rizarv bank , kolkata 700 001 ko snbodhit ho , prti bag 40 kgs approx ke note quotation ki purchase ke lie koteshan ka aamntran is tarah se kiya jata hai ki yah 24 june 2015 ko 14:00 hrs athva uske poorv karyalay men pahunch jae. +",7,2,neutral,neutral,positive +"If 20gms of the magaj is soaked in one cup of lukewarm water, a brown coloured colour of Burgundy wine, mildly aromatic drink is obtained. +","यदि 20 ग्राम मगज एक कप गुनगुने पानी में अवशोषित किया जाये तो भूरे रंग बर्गंडी वाइन का रंग का हल्का सुंगधित पेय तैयार हो जायेगा। +","yadi 20 gram magaj ek cup lukewarm water men avshoshit kiya jaye to brown colour bargndi wine ka colour ka halka sungdhit drink taiyar ho jayega. +",8,0,neutral,neutral,neutral +"A time of acute difficulty in financial matters. +","वित्तीय मामलों में संकट की घडी। +","financial time of acute ki ghadi. +",6,2,negative,negative,negative +"All data is encrypted with your sync passphrase +","सभी डेटा आपके समन्वयन पासफ़्रेज़ के साथ एन्क्रिप्ट किया जाएगा +","sabhi data aapke sync passphrase ke sath enkript kiya jaega +",7,3,neutral,neutral,neutral +"Ever since Mamata broke away to form the Trinamool in 1997 , there has been a string of desertions from the Congress . +","ममता ने 1997 में पार्टी से अलग होकर तृकां बनाई थी तबसे पार्टी से नेताओं के जाने का सिलसिल जारी है . +","mamta ne 1997 men parti se alag hokar trikan banaee thi tabse parti se netaon ke string of desertions jari hai +",8,1,negative,negative,negative +"In order to be possessor of his being with any complete reality of freedom and mastery, man must find out his highest self, the real man or highest Purusha in him, which is free and master in its own inalienable power. +","मनुष्य को किसी पूर्ण रूप से सच्ची स्वतन्त्रता और प्रभुता के साथ अपनी सत्ता का स्वामी बनने के लिये अपनी उच्चतम आत्मा को, अपने अन्दर के उस वास्तविक मनुष्य या उच्चतम पुरुष को, ढूंढ़ना होगा जो स्वतन्त्र है तथा अपनी अविच्छेद्य शक्ति का स्वामी है। +","freedom ko kisi complete roop se sachchi svatantrta aur mastery ke sath apni reality ka possessor banne ke liye apni highest order ko , apne andar ke us real freedom ya highest purush ko , dhoonna hoga jo svatantr hai tatha apni avichchhedy shakti ka possessor hai. +",7,2,neutral,negative,positive +"With the fingerprints of the man in their custody matching Chhota Rajan 's specimen prints provided by the Mumbai police, the Thai police are clear about his identity. +","थाई पुलिस अपनी हिरासत में मौजूद व्यैक्त की उंगलियों के निशान मुंबई पुलिस द्वारा भेजे गए छोटा राजन की उंगलियों के निशान से मिलने से उसकी पहचान को लेकर निश्चिंत है. +","thai police apni hirasat men maujood vyaikt ki ungliyon ke nishan munbee pulis dvara bheje ge chhota specimen prints provided ke nishan se milne se uski pahchan ko lekar nishchint hai +",6,3,neutral,neutral,positive +"yet there are over you watchers +","जबकि तुमपर निगरानी करनेवाले नियुक्त हैं +","jabki tumapar watchers karnevale niyukt hain +",7,1,neutral,neutral,neutral +"All right, this is another one that should be cut and pasted. +","सब ठीक है, यह एक और एक कि काटा और चिपकाया जाना चाहिए है। +","sab thik hai, yah ek aur ek ki cut and pasted jana chahie cut +",8,0,neutral,neutral,negative +"He spread out the earth for the people. +","और उसी ने लोगों के नफे क़े लिए ज़मीन बनायी +","aur usi ne logon ke naphe e lie earth banayi +",9,0,positive,neutral,neutral +"WHAT WILL I EARN? 20 +","मेरी आमदनी क्या होगी? 25। +","meri aamadni kya hogi 25. +",8,4,neutral,neutral,neutral +"Sudhir, run and call Panu Babu. +","सुधीर, तुम दौड़कर जाओ, पानू बाबू को फौरन बुला लाओ। +","sudhir, tum daurakar jao, panoo baboo ko phauran bula lao. +",8,0,neutral,neutral,neutral +"What is today 's status of Consolidated Stock? +","समेकित स्टॉक की आज की स्थिति क्या है। +","consolidated stock ki aaj ki status kya stock +",7,4,neutral,neutral,neutral +"For services in Wales contact: Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. +","वेल्स में सेवाओं के लिए सम्पर्क:-Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. टेलीफ़ोन नम्बर ०२२२ ८२५१११ +","wales men services ke lie contact : -Welsh Office Drugs Unit , Welsh Office , Cathays office , Cardiff CF1 3NQ telifon nambar ०२२२ ८२५१११ +",8,1,neutral,neutral,neutral +"Device does not support FILTER _ SLOT property. +","उपकरण में FILTER _ SLOT गुण समर्थन उपलब्ध नहीं है. +","upakaran men FILTER _ SLOT gun samarthan upalabdh nahin hai +",8,3,negative,neutral,negative +"And that He may punish the Hypocrites, men and women, and the Polytheists men and women, who imagine an evil opinion of Allah. On them is a round of Evil: the Wrath of Allah is on them: He has cursed them and got Hell ready for them: and evil is it for a destination. +","और मुनाफिक़ मर्द और मुनाफ़िक़ औरतों और मुशरिक मर्द और मुशरिक औरतों पर जो ख़ुदा के हक़ में बुरे बुरे ख्याल रखते हैं अज़ाब नाज़िल करे उन पर (मुसीबत की) बड़ी गर्दिश है (और ख़ुदा) उन पर ग़ज़बनाक है और उसने उस पर लानत की है और उनके लिए जहन्नुम को तैयार कर रखा है और वह (क्या) बुरी जगह है +","aur hypocrites men aur munafi aurton aur polytheists men aur polytheists aurton par jo evil ke ha men bure bure opinion rakhte hain wrath nazil kare un par musibat ki round gardish hai aur evil un par zabnak hai aur usne us par lanat ki hai aur unke lie jahannum ko ready kar rakha hai aur vah destination buri jagah hai +",7,2,negative,neutral,negative +"The tribals also depend on the bamboo to augment their incomes . +","आदिवासी अपनी आय बढने के लिए भी बांस पर निर्भर रहते हैं . +","tribals apni incomes badhne ke lie bhi bamboo par nirbhar rahte hain +",7,1,neutral,neutral,neutral +"organs superficially appear to be similar and perform the same function. +","बाहरी दिखावे में अंग एक जैसे दिखें और एक ही प्रकार का कार्य कर रहे हों। +","bahri function perform ang ek jaise dikhen aur ek hi prkar ka kary kar rahe hon. +",6,2,neutral,neutral,neutral +"He usually speaks impeccable English and you think for a moment that you are perhaps better off here than in China. +","वे आम तौर पर अच्छी अंग्रेजी बोलते हैं और एक क्षण के लिए लगेगा कि चीन की तुलना में शायद यहां बेहतर स्थिति है. +","ve aam taur par achchhi angreji bolte hain aur ek kshan ke lie lagega ki chin ki tulna men shayad yahan behatar sthiti hai +",10,0,positive,neutral,positive +"Server 's certificate cannot be checked. +","सर्वर प्रमाणपत्र की जांच नहीं की जा सकती. +","server certificate ki janch nahin ki ja sakti +",10,0,neutral,negative,neutral +"Therefore that process is not sufficient for our Yoga; something else is needed more embracingly positive. +","इसलिये वह विधि हमारे योग के लिये पर्याप्त नहीं; किसी और साधन की भी आवश्यकता है जो अधिक सर्वग्राही रूप में भावात्मक हो। +","isliye vah process hamare yoga ke liye sufficient nahin kisi aur sadhan ki bhi aavashyakta hai jo adhik sarvagrahi roop men positive ho. +",8,3,neutral,neutral,positive +"to the focus points and saying it 's a constant. +","यह एक निरंतर ध्यान केंद्रित अंक और कह रही करने के लिए है। +","yah ek constant focus kendrit points aur kah rahi karne ke lie hai. +",8,0,neutral,neutral,neutral +"View the output produced by the last executed command +","अंतिम कार्यान्वित कमांड द्वारा उत्पादित आउटपुट देखेंFile +","antim executed command dvara output produced dekhenFile +",8,2,neutral,neutral,neutral +"So from A, we look at the neighbors of A. The neighbors of A are B and C. +","इसलिए A से, हम ए के पड़ोसियों में देखो B और c. A के पड़ोसी हैं +","islie A se , ham b ke neighbors men dekho B aur c A ke parosi hain +",6,4,neutral,neutral,neutral +"Will you sing me a Beatles' song? +","तुम मेरे लिए एक बीटल्स का गाना गा सकते हो क्या? +","tum mere lie ek bitals ka song ga sakte ho kya +",10,0,neutral,neutral,neutral +"The Arya Samaj preacher is never so happy as when he is reviling other religions. +","आर्य समाजी उपदेशकों को जो मजा दूसरे धर्मो पर कीचड़ उछालने में आता है, वह मजा और किसी बात में नहीं आता। +","samaj preacher updeshkon ko jo maja doosre dharmo par kichar uchhalne men aata hai, vah maja aur kisi bat men nahin aata. +",5,6,negative,neutral,positive +"A tape with a magnetizable layer on which data can be stored. +","चुंबकीय परत वाला एक टेप, जिसपर डेटा संग्रहीत किया जा सकता है. +","chunbkiy layer vala ek tape , jisapar data sngrhit kiya ja sakta hai +",8,1,neutral,neutral,neutral +"“O sister of Haroon, neither was your father an evil man nor was your mother of poor conduct! ” +","हे हारून की बहन! न तो तेरा बाप ही कोई बुरा आदमी था और न तेरी माँ ही बदचलन थी। "" +","he haroon ki sister! n to tera bap hi koee evil man tha aur n teri man hi badachalan thi. +",7,2,neutral,neutral,negative +"When I used dynamic fonts on a colored background, the color around the text is different from the rest of the background, only in a Netscape browser. +","जब मैंने एक रंगीन पृष्ठभूमि में डायनामिक फ़ॉन्ट का उपयोग किया, टेक्स्ट के आसपास का रंग पृष्ठभूमि के बाकी हिस्सों के रंग से अलग था जो केवल एक नेटस्केप ब्राउज़र में होता है. +","jab mainne ek rngin background men dynamic text ka upyog kiya , tekst ke aaspas ka i background ke rest hisson ke i se different tha jo keval ek netscape browser men hota hai +",7,5,neutral,neutral,positive +"When Manohar was transferred to Amudalavalasa , the couple put their through the weight-training regimen at the Ammi Naidu gym in the district headquarters town of Srikakulam . +","मनोहर का तबादल अमूदलवलसा हा तो वहां दोनों ने श्रीकाकुलम जिल मुयालय स्थित अमी नायड़ू जिम में अयास जारी रखा . +","manohar ka town couple ha to vahan donon ne shrikakulam district headquarters sthit ammi naidu gym men ayas jari rakha +",8,0,neutral,neutral,neutral +"The Rajghat Dam is almost complete. +","राजघाट बांध का निर्माण कार्य लगभग पूरा हो चुका है। +","rajghat dam ka nirman kary lagabhag poora ho chuka complete +",3,5,positive,neutral,neutral +"Administer to any party to arbitration +","पंच निर्णय के लिए पक्षकार को सौंप देना +","arbitration nirnay ke lie party ko saunp administer +",6,0,neutral,neutral,positive +"Realizing the growth of embedded systems in day - to - day life and the need for trained manpower in this promising area, C - DAC has launched a Diploma in Embedded Systems Design (DESD) for Engineers in computers, electronics and IT. +","दैनिक जीवन में एंबेडेड सिस्टम एवं महत्वपूर्ण क्षेत्रों में प्रशिक्षित मानव संसाधन की बढ़ती आवश्यकता को ध्यान में रख कर सी-डैक ने कम्प्यूटर, इलेक्ट्रॉनिक्स और आइटी इंजीनियरों के लिए एंबेडेड सिस्टम डिजाइन में डिप्लोमा () पाठ्यक्रम की शुरूआत की है। +","day life men embedded sistam evn mahatvpoorn area men trained manav snsadhan ki bati need ko dhyan men growth kar si-daik ne computers , electronics aur aaiti engineers ke lie embedded sistam dijain men diploma pathyakram ki shurooaat ki hai. +",7,1,positive,neutral,positive +"This vagueness persisted in the dynamical equations for the particles. +","यह अस्पष्टता कणों के गतिकीय समीकरणों में चलती रही। +","yah vagueness particles ke dynamical equations men chalti rahi. +",10,0,neutral,negative,positive +"Goods which have not been given a final shape. +","वह माल जिसे अभी अंतिम रूप दिया जाना बाकी है। +","vah goods jise abhi final shape diya jana baki hai. +",9,2,negative,neutral,neutral +"And if terrorist is impolite, adjectives such as Islamist, Islamic, and Muslim become unmentionable. My blog titled “Not Calling Islamism the Enemy ” provides copious examples of this avoidance, along with its motives. In short, those who would replace War on Terror with A Global Struggle for Security and Progress imagine this linguistic gambit will win over Muslim hearts and minds. +","और यदि आतंकवादी असभ्य हैं तो इस्लामवादी, इस्लामी और मुस्लिम का उल्लेख करने से परहेज किया जाता है। मेरे ब्लाग Not calling Islamism the Enemy में इस बात के उदाहरण दिये गये हैं कि इससे परहेज क्यों किया जाता है और इसका उद्देश्य क्या है? संक्षेप में जो लोग आतंक के विरुद्ध युद्ध को सुरक्षा और विकास के लिये वैश्विक संघर्ष के रूप में नया नाम देना चाहते हैं उन्हें कल्पना है कि इस प्रकार भाषा बदल कर वे मुस्लिम ह्रदय और मस्तिष्क को विजित कर सकेंगे। +","aur yadi aatnkvadi asabhy hain to islamvadi, islami aur muslim ka ullekh karne se parhej kiya jata hai. mere blag Not calling Islamism the Enemy men is bat ke udaharan diye gaye hain ki isse parhej kyon kiya jata hai aur iska uddeshy kya hai snkshep men jo log aatnk ke viruddh yuddh ko suraksha aur vikas ke liye vaishvik sngharsh ke roop men naya nam dena chahte hain unhen kalpna hai ki is prkar bhasha badal kar ve muslim hraday aur mastishk ko vijit kar sakenge. +",5,6,negative,negative,negative +"To go to residences to provide some service. +","कोई सेवा प्रदान करने के लिए निजी घरों पर जाने वाला। +","koee service provide karne ke lie niji residences par jane vala. +",8,1,neutral,neutral,neutral +"Update the files in the archive “%s”? +","फ़ाइलों “%s” अभिलेख में अद्यतन करें? +","files s archive men adyatan karen +",7,2,neutral,neutral,neutral +"The only other way is the socialist way. +","दूसरा रास्ता सिर्फ समाजवाद का रास्ता है। +","doosra rasta sirph samajvad ka rasta hai. +",10,0,negative,neutral,neutral +"It cannot be said that the product was unknown in India. +","ऐसा नहीं कहा जा सकता है कि यह उत्पाद भारत में अनजान था +","aesa nahin kaha ja sakta hai ki yah product unknown in india tha +",6,1,neutral,neutral,neutral +"But in this plot he followed the SRI method of nursery preparation. +","लेकिन इस प्लॉट में उन्होंने नर्सरी तैयार करने के लिए श्री पद्धति का अनुसरण किया। +","lekin is plot men unhonne narsri preparation karne ke lie sri method ka anusaran kiya. +",7,5,neutral,neutral,neutral +"And proclaim His Purity, morning and evening. +","सुबह व शाम उसकी तसबीह करते रहो +","morning v evening purity tasbih karte raho +",8,1,positive,positive,neutral +"Since Bala himself will be speaking at TED +","क्योंकि बाला खुद बाद में TED में बोल रहे हैं +","kyonki bala khud bad men TED men bala rahe hain +",7,1,neutral,neutral,neutral +"This is surely in the earlier Books, +","निस्संदेह यही बात पहले की किताबों में भी है; +","surely yahi bat pahle ki earlier books bhi hai +",6,5,neutral,neutral,positive +"But any one of these eight million odd different sperms may fertilise any one of the same number of possible ova at the time of conception to form a genotype consisting of 23 pairs of chromosomes. +","इन अस्सी लाख शुक्राणुओं में से कोई भी एक उतनी ही बड़ी संख्या के डिंबों में से किसी एक को संषेचित कर एक नया आनुवंशिक रूप उत्पन्न कर सकता है। +","in assi consisting sperms men se koee bhi ek same hi bari number ke dinbon men se kisi ek ko conception kar ek odd different roop utpann kar sakta time +",3,3,neutral,neutral,negative +"Ayurveda teaches us how to age with dignity and grace. +","आयुर्वेद हमें सिखाता है कि हम बूढ़े भी हों तो गरिमा और शालीनता के साथ इस अवस्था में कैसे पहुंचें। +","ayurveda teaches sikhata hai ki ham booe bhi hon to dignity and grace ke sath is avastha men kaise pahunchen. +",7,1,positive,neutral,positive +"“ The States , ” he says , ” are still so numerous in India that they offer a grave conundrum in evolution to which no solution is at present forthcoming . +","वह लिखतें : हिंदुस्तान में इतनी ज़्यादा रियासतें हैं कि वे यहां की तरक़्की के रास्ते में एक बहुत बड़ी पहेली हैं . +","vah states : india men itni zyada riyasten hain ki ve yahan ki taraki ke raste men ek bahut bari conundrum hain +",8,1,negative,negative,negative +"This momentous decision to go to England to become a barrister took place when Badruddin was fifteen years old, a year after the mutiny. +","बैरिस्टर बनने के लिए इंग़्लैड जाने का यह महत्वपूर्ण निर्णय बगावत के एक वर्ष बाद लिया गया जब बदरूद्दीन पंद्रह वर्ष के थें. +","bairistar banne ke lie inlaid jane ka yah momentous decision bagavat ke ek varsh bad liya gaya jab badrooddin fifteen years ke then +",6,6,neutral,neutral,neutral +"Among the Garo the household is known as the Nok. +","गारो जनजाति में गृहस्थी को नोक कहा जाता है। +","garo janjati men grihasthi ko nok kaha jata hai. +",9,1,neutral,neutral,neutral +"The time remaining when action is taken +","बचा समय जब क्रिया की जाती है +","bacha time jab action ki jati hai +",7,3,neutral,neutral,neutral +"The backend for this address book refused to perform this query.% s +","इस पता पुस्तिका के लिए बैकेंड यह प्रश्न करने से मना किया.% s +","is address book ke lie perform this query karne se refused kiya s +",8,1,negative,neutral,negative +"Sacred place of Hindus located in the district of Faizabad in the state of Uttar Pradesh. +","उत्तर प्रदेश राज्य में फैज़ाबाद जिले में स्थित हिन्दूओं की एक पवित्र जगह। +","district pradesh state men faizabad jile men sthit hindus ki ek sacred place +",6,1,neutral,neutral,neutral +"And that He may punish the Hypocrites, men and women, and the Polytheists men and women, who imagine an evil opinion of Allah. On them is a round of Evil: the Wrath of Allah is on them: He has cursed them and got Hell ready for them: and evil is it for a destination. +","और मुनाफिक़ मर्द और मुनाफ़िक़ औरतों और मुशरिक मर्द और मुशरिक औरतों पर जो ख़ुदा के हक़ में बुरे बुरे ख्याल रखते हैं अज़ाब नाज़िल करे उन पर (मुसीबत की) बड़ी गर्दिश है (और ख़ुदा) उन पर ग़ज़बनाक है और उसने उस पर लानत की है और उनके लिए जहन्नुम को तैयार कर रखा है और वह (क्या) बुरी जगह है +","aur munaphi mard aur munafi aurton aur mushrik men and women aurton par jo uda ke ha men bure bure khyal rakhte hain azab nazil kare un par musibat ki bari gardish hai aur uda un par zabnak hai aur usne us par lanat ki hai aur unke lie jahannum ko taiyar kar rakha hai aur vah kya buri jagah hai +",7,2,negative,neutral,negative +"Those! theirs shall be a provision known: +","उनके वास्ते (बेहिश्त में) एक मुक़र्रर रोज़ी होगी +","unke vaste behisht men ek murrar rozi hogi +",9,2,positive,neutral,neutral +"You can search residential telephone numbers and local address from the directory listing. +","आप निर्देशिका लिस्टिंग से आवासीय टेलीफोन नम्बर और स्थानीय पता ढूँढ सकते हैं। +","aap directory listing se residential telephone numbers aur local address dhoondh sakte hain. +",10,0,neutral,neutral,neutral +"computing will actually merge with the physical world. +","कम्प्यूटिंग यथार्थ में भौतिक संसार के साथ मिल जाएगी। +","computing yatharth men physical world ke sath mil jaegi. +",8,3,neutral,negative,neutral +"In this there is, certainly, evidence (of the Truth). But most of them have no faith. +","यक़ीनन इसमें (भी क़ुदरत) ख़ुदा की एक बड़ी निशानी है मगर उनमें से अक्सर ईमान लाने वाले ही नहीं +","truth ismen bhi udarat uda ki ek bari nishani hai magar unmen se aksar eeman lane vale hi nahin +",7,2,neutral,neutral,negative +"Belonging to a particular denomination, he had his own customs. +","एक विशिष्ट संप्रदाय का होने के नाते उसकी अपनी कुछ प्रथाएं थीं। +","ek vishisht belonging ka hone ke nate uski apni kuchh customs thin. +",7,1,neutral,neutral,neutral +"Singan, the husband of the Kuratti, now comes in search of her. +","अब कुरत्ती का पति सिंगन उसे ढुंढता हुआ आता है। +","kuratti kuratti ka husband singan use dhundhta huaa aata hai. +",7,0,neutral,neutral,neutral +"He agreed to Shri Duni Chand being appointed as his legal adviser. +","श्री दुनी चंद को अपना कानूनी परामर्शदाता नियुक्त करने पर वह सहमत हो गये। +","shri duni chnd ko apna legal paramarshdata niyukt karne par vah sahamat ho gaye. +",8,1,neutral,neutral,positive +"As the first woman from India to clinch this Grand Slam title,you have set a new benchmark of success for Tennis players that will inspire the youth of India, especially women. +","इस ग्रांड स्लाम खिताब को जीतने वाली भारत की पहली महिला के रूप में आपने टेनिस के खिलाड़ियों के लिए सफलता का एक नया कीर्तिमान स्थापित कर दिया है जो भारत के युवाओं,खासकर महिलाओं को प्रेरित करेगा। +","is grand slam khitab ko jitne vali bharat ki pahli mahila ke roop men aapne tenis ke khilariyon ke lie saphalta ka ek naya kirtiman sthapit kar diya hai jo bharat ke yuvaon,khasakar mahilaon ko prerit karega. +",8,3,positive,positive,positive +"It contains seven vertical strokes followed by this fish-like sign. +","समें सात ऊर्ध्वाधर रेखाओं के पीछे एक मछली का चिन्ह है। +","strokes sat vertical rekhaon ke pichhe ek machhli ka sign hai. +",6,1,neutral,neutral,neutral +"They said: Hast come unto us that we should serve Allah alone, and forsake what our fathers worshipped? Then bring upon us that wherewith thou threatenest us if thou art of the truthful! +","तो वह लोग कहने लगे क्या तुम हमारे पास इसलिए आए हो कि सिर्फ ख़ुदा की तो इबादत करें और जिनको हमारे बाप दादा पूजते चले आए छोड़ बैठें पस अगर तुम सच्चे हो तो जिससे तुम हमको डराते हो हमारे पास लाओ +","to vah log kahne lage kya tum hamare pas islie aae ho ki sirph uda ki to ibadat karen aur jinko hamare bap dada poojte chale aae chhor baithen pas agar tum sachche ho to jisse tum hamko darate ho hamare pas lao +",8,1,neutral,negative,positive +"This appeal has impugned the judgment and decree dated 20. 01. 2007 which had endorsed the judgment and decree of the trial judge dated 08. 11. 2005 decreeing the suit of the plaintiff for possession, declaration and mandatory injunction +","इस अपील ने २०. ०१. २००७ दिनांकित निर्णय और डिक्री पर आक्षेप किया है, जिसने ०८. ११. २००५ दिनांकित विचारण के निर्णय और डिक्री का समर्थन किया था, जिसमें वादी के कब्जे, घोषणा और अनिवार्य निषेधाज्ञा के वाद पर डिक्री की गई थी. +","is apil ne २० ०१ २००७ dinankit judgment and decree par aakshep kiya hai, jisne ०८ ११ २००५ dinankit vicharan ke judgment and decree ka samarthan kiya tha, jismen plaintiff for possession, ghoshna aur anivary nishedhajnja ke vad par dikri ki gee thi +",7,1,negative,negative,positive +"Anaerobic is a technical word which literally means without oxygen. +","अनॉक्सीय एक तांत्रिक शब्द है जिसका शाब्दिक अर्थ है बीना प्राणवायु के। +","anksiy ek tantrik shabd hai word which literally hai bina pranvayu ke. +",8,3,negative,neutral,neutral +"causing redness of the skin by increasing its blood flow +","उसके रक्त का प्रवाह बढ़ने के कारण त्वचा की लालिमा. +","uske blood ka flow bane ke karan skin ki redness +",8,3,negative,neutral,neutral +"The lightning almost snatches their sight away. Whenever it illuminates for them, they walk in it; but when it grows dark over them, they stand still. Had God willed, He could have taken away their hearing and their sight. God is capable of everything. +","क़रीब है कि बिजली उनकी ऑंखों को चौन्धिया दे जब उनके आगे बिजली चमकी तो उस रौशनी में चल खड़े हुए और जब उन पर अंधेरा छा गया तो (ठिठके के) खड़े हो गए और खुदा चाहता तो यूँ भी उनके देखने और सुनने की कूवतें छीन लेता बेशक खुदा हर चीज़ पर क़ादिर है +","rib hai ki lightning unki ऑnkhon ko chaundhiya everything jab unke aage lightning chamki to us raushni men capable god hue aur jab un par dark chha gaya to thithke ke god ho ge aur sight chahta to yoon bhi unke dekhne aur sunne ki koovten chhin leta beshak sight har chiz par adir hai +",3,3,neutral,negative,positive +"Our media can play a major role in creating awareness and projecting positive stories in this respect. +","इस संबंध में हमारा मीडिया जागरूकता पैदा करने और सकारात्मक जागरूकता प्रस्तुत करने में एक महत्वपूर्ण भूमिका निभा सकता है। +","is snbndh men hamara midiya jagrookta paida karne aur sakaratmak jagrookta prastut karne men ek major role media can play +",8,1,positive,positive,positive +"Let's see, let's do minus 5 / 7 divided by 10 / 3. +","देखे, करे नकारात्मक 5/7 विभाजित है 10/3 से +","let , kare nakaratmak 57 vibhajit hai 103 se +",6,4,neutral,neutral,neutral +"gradual recovery of health after illness +","रोगग्रस्त होने के बाद स्वास्थ्य में क्रमिक सुधार +","illness hone ke bad recovery men gradual sudhar +",7,4,neutral,neutral,negative +"One of them, 'Aman da Kafla' Caravan of Peace was then on the lips of almost everybody whether a progressive or not. +","उनमें से एक कविता अमन का काफिला अमन दा काफिला उस समय लगभग हर आदमी की जबान पर थी। +","unmen se ek kavita peace ka kaphila peace da kaphila us samay lagabhag har aadmi ki jaban par thi. +",9,0,neutral,neutral,positive +"Simulated papers do not create and legal right or entitlement. +","नकली कागज-पत्र/दस्तावेज कोई कानूनी अधिकार/प्राप्ति हक सृजित नहीं करते। +","nakli kagaj-patrdastavej koee legal adhikarprapti hak create nahin karte. +",8,3,negative,neutral,negative +"Priyobroto had felt a wave of deep contentment. +","इससे पता नहीं कितना गहरा सुख उसे मिला था। +","isse pata nahin kitna deep wave use mila tha. +",9,1,positive,negative,positive +"The main qualification for this is: +","इसके लिए मुख्य योग्यता है :| +","iske lie main qualification hai : +",9,2,neutral,neutral,neutral +"We gave the four a row and we gave the eight a row. +","हम 4 को एक पंक्ति देते है और 8 को एक पंक्ति देते हैं. +","ham 4 ko ek row gave hai aur 8 ko ek row gave hain +",4,5,neutral,neutral,neutral +"Test the orphans until they reach the age of marriage, and then if you find them mature of mind hand over to them their property, and do not eat it up by either spending extravagantly or in haste, fearing that they would grow up (and claim it). If the guardian of the orphan is rich let him abstain entirely (from his ward 's property); and if he is poor, let him partake of it in a fair measure. When you hand over their property to them let there be witnesses on their behalf. Allah is sufficient to take account (of your deeds). +","और यतीमों को कारोबार में लगाए रहो यहॉ तक के ब्याहने के क़ाबिल हों फिर उस वक्त तुम उन्हे (एक महीने का ख़र्च) उनके हाथ से कराके अगर होशियार पाओ तो उनका माल उनके हवाले कर दो और (ख़बरदार) ऐसा न करना कि इस ख़ौफ़ से कि कहीं ये बड़े हो जाएंगे फ़ुज़ूल ख़र्ची करके झटपट उनका माल चट कर जाओ और जो (जो वली या सरपरस्त) दौलतमन्द हो तो वह (माले यतीम अपने ख़र्च में लाने से) बचता रहे और (हॉ) जो मोहताज हो वह अलबत्ता (वाजिबी) दस्तूर के मुताबिक़ खा सकता है पस जब उनके माल उनके हवाले करने लगो तो लोगों को उनका गवाह बना लो और (यूं तो) हिसाब लेने को ख़ुदा काफ़ी ही है +","aur test ko behalf men lagae let yah tak ke age ke abil mind phir us vakt account unhe ek mahine ka guardian unke mature se karake agar hoshiyar pao to unka property unke havale kar do aur bardar aesa n karna ki is auf se ki kahin ye bare ho jaenge haste rchi karke jhatapat unka property chat kar jao aur jo jo vali ya ward daulatamand ho to vah male orphan apne guardian men lane se bachta rahe aur h jo poor ho vah alabatta vajibi dastoor ke mutabi kha sakta hai pas jab unke property unke havale karne lago to logon ko unka gavah bana lo aur yoon to hisab lene ko uda measure hi hai +",7,2,neutral,neutral,positive +"The vertical text alignment, from 0 (top) to 1 (bottom). +","लंबबत पाठ समायोजन, 0 (शीर्ष) से 1 (तल) में +","vertical text alignment , 0 top se 1 bottom men +",8,4,neutral,neutral,positive +"A papilionaceous flower has a corolla, usually with five petals that include a large upper petal, the vexillum. +","एक कोरोला का तितली जैसा फूल जिस की पांच पंखुड़ियो में एक सबसे उपरी लंबी पत्ती जो होती है ध्वज। +","ek corolla ka titli jaisa phool jis ki panch pnkhuriyo men ek sabse upri lnbi patti jo hoti hai dhvaj. +",4,7,neutral,neutral,neutral +"Price escalation will increase overall cost of the project. +","कीमत वृद्धि के कारण परियोजना की लागत में वृद्धि हो जायेगी। +","price escalation ke karan project ki cost men escalation ho jayegi. +",8,3,negative,neutral,positive +"You have to put your tremendous expertise and experience to good use. +","आपको अपने वृहद् कौशल तथा अनुभव का उपयुक्त उपयोग करना होगा। +","aapko apne tremendous expertise tatha experience ka good use karna hoga. +",8,3,positive,positive,positive +"In summer he spends most of his time in the verandah and in winter he basks in the early sun bare - bodied. +","वे अकसर गमीँ के दिनों में बरामदे में और सर्दियों में सुबह की धूप में नंगे बदन बैठे मिल जाएंगे। +","ve most gamin ke time men verandah men aur winter men subah ki sun men bare summer baithe mil jaenge. +",5,5,neutral,neutral,neutral +"Through its various schemes and financial assistance, and support in regular procurement of raw material by producers – as well as infrastructural support– Government of India has given critical backing to boost the existing coir industry and encourage new entrepreneurs. +","अपनी विभिन्न स्कीमों तथा वित्तीय सहयोग से तथा उत्पादकों द्वारा कच्चे माल की नियमित खरीदारी में सहायता देकर और अवसंरचना संबंधी सहयोग देकर भारत सरकार ने मौजूदा कॉयर उद्योग को बढ़ावा देने के लिए तथा नए उद्यमियों को प्रोत्साहित करने के लिए महत्त्वपूर्ण सहयोग दिया है। +","apni various schemes tatha financial producers se tatha utpadkon dvara raw mal ki regular procurement men assistance new aur infrastructural snbndhi producers new india government ne maujooda coir industry ko baava dene ke lie tatha ne entrepreneurs ko protsahit karne ke lie mahattvpoorn producers diya hai. +",7,1,positive,negative,positive +"Those whose striving goes astray in the present life, while they think that they are working good deeds. +","यो वे लोग है जिनका प्रयास सांसारिक जीवन में अकारथ गया और वे यही समझते है कि वे बहुत अच्छा कर्म कर रहे है +","yo ve log hai jinka present life working good deeds gaya aur ve yahi samajhte hai ki ve bahut achchha karm kar rahe hai +",5,2,neutral,neutral,positive +"Until he was eight,there was instability lagging to him for which no arrangement for education could be made. +","जब तक अकबर आठ वर्ष का हुआ जन्म से लेकर अब तक उसके सभी वर्ष भारी अस्थिरता में निकले थे जिसके कारण उसकी शिक्षा-दीक्षा का सही प्रबंध नहीं हो पाया था। +","jab tak akabar aath varsh ka huaa janm se lekar ab tak uske sabhi varsh bhari asthirta men nikle the jiske arrangement for education ka sahi prbndh nahin ho paya tha. +",5,4,negative,neutral,negative +"I 've sinned, betrayed innocent blood. +","मैं ने पाप किया है, निर्दोष खून को धोखा दिया है. +","main ne sinned kiya hai, innocent betrayed innocent blood diya hai +",7,2,negative,neutral,negative +"Look at the likes of Gandhi who achieved so much through pacifism. +","गांधी जैसे लोगों को देखें जिन्होनें शांतिवाद के माध्यम से महान उपलब्धियां हासिल की हैं. +","gandhi jaise much ko look jinhonen likes ke madhyam se mahan upalabdhiyan hasil ki hain +",5,3,positive,neutral,positive +"How to claim see page 15. +","यह कैसे अर्जी भर के मिल सकता है इस के लिए पान क्रमांक 15 देखें । +","yah kaise page bhar ke mil sakta hai is ke lie pan krmank 15 dekhen . +",7,0,neutral,neutral,neutral +"The birds are usually found in pairs in open country near cultivation, commonly seen perched on a mound or some other eminence, or flying at great speed at hedge - top height in search of small birds, rats, mice, lizards and large insects which comprise their prey. +","ये ज्यादातार जोड़े में खेतों के आसपास खुले मैदानों मे, किसी टीले पर या किसी दूर से दिखते स्थान पर बैठे पाए जाते हैं, अथवा छोटी चिड़ियों, चूहों, छिपकलियों और बड़े कीड़ों की खोज में बाड़ों की ऊंचाई पर तेजी से उड़ते भी पाए जा सकते हैं। +","ye found in pairs kheton ke aaspas khule maidanon me, kisi tile par ya kisi door se dikhte sthan par baithe pae jate hain, athva chhoti chiriyon, choohon, lizards and large kiron ki khoj men baron ki oonchaee par teji se urte bhi pae ja sakte hain. +",8,1,neutral,neutral,positive +"National Population Policy (File referring to external site opens in a new window) +","राष्ट्रीय जनसंख्या नीति (पीडीएफ फाइल जो नई विंडों में खुलती है) +","national population policy external file jo new vindon men khulti hai +",6,4,neutral,neutral,neutral +"The Juvenile Justice Board apparently has given benefit to the appellant by treating his age to be 20 years as on 13. 08. 2003 which was on the lower side within the range of one year fixed by the Medical Board. +","किशोर न्याय बोर्ड ने प्रकट रूप से अपीलार्थी को, १३. ०८. २००३ पर उसकी आयु २० वर्ष मानकर, जो मेडिकल बोर्ड द्वारा तय एक वर्ष की सीमा के भीतर कमी की तरफ थी, लाभ दिया है. +","juvenile justice board ne prakat roop se apilarthi ko, १३ ०८ २००३ par uski aayu २० varsh manakar, jo medikal bord dvara tay ek varsh ki sima ke bhitar kami ki taraph thi, labh diya hai +",9,2,neutral,positive,positive +"PRESIDENT OF INDIA’S MESSAGE ON THE EVE OF NATIONAL DAY OF SEYCHELLES, Rashtrapati Bhavan : 28.06.2017 +","सेशल्स के राष्ट्रीय दिवस की पूर्व संध्या पर भारत के राष्ट्रपति का संदेश, राष्ट्रपति भवन : 28.06.2017 +","seshals ke national day ki poorv sndhya par president of indias ka sndesh, rashtrapti bhavan : 28062017 +",6,3,neutral,neutral,neutral +"This is composed of seven small islands that have been formed by volcanic eruptions and is connected to the mainland via a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska gathan lava nirmit sat small islands dvara huaa hai evn yah pul dvara prmukh bhoo-khnd ke sath jura huaa hai. +",8,4,neutral,neutral,neutral +"The absence of the karnakutas in the hara of the top tala marks the first step towards the elimination of the hara itself, and the placement of the vahanas and lanchanas of the main deity at the corners in its place. +","ऊपरी तल के हार में कर्णकूटों की अनुपस्थित स्वंय हार के विलोपन और उसके स्थान पर कोनों पर मुख्य देवता के वाहनों और लांछनों के स्थापन की दिशा में पहला कदम हैं। +","oopri tal ke har men karnkooton ki anupasthit svny har ke vilopan aur uske sthan par konon par mukhy devta ke vahnon aur lanchhnon ke sthapan ki disha men pahla kadam hain. +",9,2,neutral,neutral,positive +"Opening the calendar. Please wait... +","पंचांग खोल रहा है. कृपया प्रतीक्षा करें... +","calendar opening raha hai kripya wait karen +",6,4,neutral,neutral,positive +"Never show the dialog again for all links of this type. +","इस प्रकार के सभी लिंक के लिए संवाद पुनः कभी न दिखाएं. +","is type ke sabhi links ke lie dialog puna kabhi n dikhaen +",9,2,negative,neutral,neutral +"Amount of wage paid for a day. +","दिनभर के लिए दी जाने वाली मजदूरी की राशि। +","day ke lie di jane vali amount ki rashi. +",7,1,neutral,neutral,neutral +"You will be more likely to give up before the 30 minutes elapse compared to you. +","आप लोगों के छोड़ने की सम्भावना, आप लोगों से ज्यादा है। +","aap logon ke chhorne ki likely , aap logon se jyada hai. +",6,4,negative,neutral,neutral +"This Conference, by focusing on water use efficiency, will help to bring this important issue to the forefront of policy discourse. +","इस सम्मलेन के जल उपयोग दक्षता पर केन्द्रित होने से, यह महत्वपूर्ण मुद्दा नीति संबंधी परिचर्चा में शामिल हो पाएगा। +","is conference ke water use efficiency par kendrit hone se , yah important issue policy snbndhi discourse men shamil ho paega. +",8,0,positive,positive,positive +"In the Gardens of delight (Paradise). +","नेमत भरी जन्नतों में होंगे; +","delight bhari jannton men honge +",6,6,positive,neutral,positive +"The most familiar representative of the family APODIDAE True Swifts is our House Swift Apus affinis PLATE 11. 55 bottom Hindi: Babila or Batasi. +","ऐपोडिडी परिवार की सबसे अधिक आम चिड़िया हमारी घरेलू बतासी या बबीला ही है Apus affinis-प्लेट 11.55-यह डीलडौल में गौरैया से छोटी धुएं जैसी काली होती है। +","aepodidi parivar ki sabse adhik aam chiriya hamari ghareloo batasi ya babila hi hai Apus affinis-plet 1155-yah dildaul men gauraiya se chhoti dhuen jaisi kali hoti hai. +",7,3,neutral,neutral,positive +"We have not appointed any one but angels as keepers of Hell, and their number that We have fixed is to make it a means of contention for disbelievers, so that those who were given the Book may be certain, and the faith of the believers may have greater increase, and the people of the Book and believers may not be deceived, and the sceptics and infidels may say: ""What does God mean by this parable?"" That is how God leads whosoever He will astray, and guides whosoever He will. None knows the armies of your Lord save Him self. This is no more than reminder for mankind. +","और हमने जहन्नुम का निगेहबान तो बस फरिश्तों को बनाया है और उनका ये शुमार भी काफिरों की आज़माइश के लिए मुक़र्रर किया ताकि अहले किताब (फौरन) यक़ीन कर लें और मोमिनो का ईमान और ज्यादा हो और अहले किताब और मोमिनीन (किसी तरह) शक़ न करें और जिन लोगों के दिल में (निफ़ाक का) मर्ज़ है (वह) और काफिर लोग कह बैठे कि इस मसल (के बयान करने) से ख़ुदा का क्या मतलब है यूँ ख़ुदा जिसे चाहता है गुमराही में छोड़ देता है और जिसे चाहता है हिदायत करता है और तुम्हारे परवरदिगार के लशकरों को उसके सिवा कोई नहीं जानता और ये तो आदमियों के लिए बस नसीहत है +","aur hamne jahannum ka nigehban to bas pharishton ko banaya hai aur unka ye shumar bhi kaphiron ki aazmaish ke lie murrar kiya taki ahle kitab phauran yain kar len aur momino ka eeman aur jyada ho aur ahle kitab aur mominin kisi tarah sha n karen aur jin logon ke dil men nifak ka marz hai vah aur kaphir log kah baithe ki is masal ke bayan karne se uda ka kya matalab hai yoon uda jise chahta hai gumrahi men chhor deta hai aur jise chahta hai hidayat karta hai aur tumhare paravardigar ke lashakron ko uske siva koee nahin janta aur ye to aadmiyon ke lie bas nasihat hai +",4,7,neutral,neutral,positive +"where they will hear no idle talk, +","वहाँ कोई लग़ो बात सुनेंगे ही नहीं +","vahan koee hear no idle hi nahin +",6,1,neutral,negative,negative +"You need to log on to your account to take a printout of your admit card carrying your photograph. +","इसके लिए आपको आपके एकाउंट में लॉगइन करना होगा जिससे कि आप अपने फोटोयुक्त प्रवेश कार्ड के प्रिंट आउट ले सकें। +","iske lie aapko account ekaunt men lgin karna admit jisse ki aap apne photoyukt prvesh card ke print photograph printout saken. +",6,0,neutral,neutral,positive +"and I 'll send you back your poster. Join by groups +","और मैं आपके पोस्टर आपको वापस भेज दूंगा. इकट्ठे आइये +","aur main aapke back your poster bhej doonga ikatthe aaiye +",6,1,neutral,neutral,positive +"He debunked the popular misgivings about the concept of Nagalim . +","उन्होंने नगालिम की धारणा को लेकर आम लगों में फैली भ्रांतियों को भी स्पष्ट किया . +","unhonne debunked the popular ko lekar aam lagon men phaili bhrantiyon ko bhi spasht kiya +",6,2,neutral,neutral,positive +"If you are already a widow or widower, you can get up to 100% of your late husband 's or wife' s Additional Pension. +","अगर आप पहले से ही विधवा है या फिर विधुर है तो आप को आप के गुजरे हुए पती या फिर पत्नी का अतिरिक्त निवृत्ती वेतन 100% तक मिल सकता है। +","s aap pahle se hi widow hai ya phir widower hai to aap ko aap ke gujre hue late ya phir wife ka additional pension vetan 100 tak mil sakta hai. +",5,5,neutral,neutral,neutral +"But the current is quite strong in the middle, so sit still. +","लेकिन बीच में धारा काफी तेज है, इसलिए पक्का होकर बैठना। +","lekin middle men current kaphi sit hai , islie strong hokar baithna. +",6,0,positive,negative,positive +"This is a Surah which We have sent down and We have made it mandatory, and We have sent down clear Commandments in it so that you may learn lessons. +","(ये) एक सूरा है जिसे हमने नाज़िल किया है और उस (के एहक़ाम) को फर्ज क़र दिया है और इसमें हमने वाज़ेए व रौशन आयतें नाज़िल की हैं ताकि तुम (ग़ौर करके) नसीहत हासिल करो +","ye ek soora hai jise hamne nazil kiya hai aur us ke made it mandatory r diya hai aur ismen hamne vazee v raushan aayten nazil ki hain taki tum aur karke nasihat learn lessons +",4,5,neutral,neutral,positive +"No, I understood perfectly. +","नहीं, मैंने ठीक से समझा है, दीदी। +","nahin, mainne thik se understood hai, didi. +",6,3,positive,neutral,positive +"according to the Tulsidas at the top there was sri rama 's story where lord shanker was telling the story to mother parvati +","तुलसीदास जी के अनुसार सर्वप्रथम श्री राम की कथा भगवान श्री शंकर ने माता पार्वती जी को सुनाया था। +","tulsidas ji ke anusar sarvapratham shri story to mother bhagvan shri shnkar ne mother parvati ji ko sunaya tha. +",5,2,neutral,neutral,positive +"Another revolutionary ' action ' which took place a few months earlier also deserves notice . +","एक और क्रांतिकारी कार्यवाही भी , जो कुद महीनों पहले की गई थी , घ्यानाकर्षक है . +","ek aur revolutionary action bhi , jo kud months pahle ki place thi , ghyanakarshak hai +",8,0,neutral,neutral,neutral +"Some establishments keep their books of accounts / ledgers based on loose leaf system. +","कुछ प्रतिष्ठान अपनी लेखा पुस्तकें खुले पन्नों की प्रणाली के आधार पर रखते हैं। +","kuchh establishments apni accounts books khule ledgers ki system ke aadhar par rakhte hain. +",7,1,neutral,neutral,negative +"Netaji received congratulations from Eamon De Velera , President of the Irish Free State . +","नेताजी को आइरिश फ्री स्टेट के अध्यक्ष इमौन डि बलेरा का बधाई संदेश भी मिला . +","netaji ko irish free state ke president eamon di velera ka congratulations sndesh bhi mila +",9,0,positive,neutral,positive +"” You lived your life in a loving way , and died with dignity . +","‘ तुमने अपना जीवन बड़े प्यार से जिया और बड़े सम्मान के साथ ही तुमने अपना शरीर छोड़ा । +","tumne apna jivan bare pyar se jiya aur bare samman ke sath hi tumne apna sharir chhora . +",8,4,positive,neutral,positive +"City Civic Centre Locations (External website that opens in a new window) +","शहर नागरिक केंद्र स्थान (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","city civic centre locations external website jo ek new vindon men khulti hain +",9,0,neutral,neutral,neutral +"All the sadhaks are one in the Mother; all meditate in the presence of the Mother. +","सभी श्री मां की उपस्थिति में ध्यान करते हैं। +","sabhi shri mother ki presence men dhyan karte hain. +",9,1,neutral,neutral,neutral +"No further items in the history. +","इतिहास में कोई अन्य वस्तु नहीं. +","history men koee any items nahin +",8,2,neutral,neutral,negative +"Ratnambar while defining sin at the end in Chitralekha, says' There is nothing that is wrong in the world, this is only another novel in the difference of attitudes in people. +","चित्रलेखा के अन्त में पाप की व्याख्या करते हुए रत्नाम्बर कहता हैः संसार में पाप कुछ भी नहीं है, वह केवल मनुष्य के दृष्टिकोण की विषमता का दूसरा नाम है। +","chitralekha ke end men sin ki vyakhya karte hue ratnambar kahta difference world men sin kuchh bhi nahin hai , vah nothing manushy ke attitudes ki vishamta ka novel nam hai. +",7,2,neutral,negative,positive +"Dusty air coming towards Stratford, Texas. +","स्ट्रेटफोर्ड टेक्सास की और आने वाली धूल भरी आंधी (Stratford Texas). +","air coming ki aur aane vali dhool bhari aandhi Stratford Texas +",6,3,neutral,neutral,neutral +"For this reason also I am unable to uphold the contention of the said plea being not available to the plaintiff. +","इस कारण से भी मैं कथित अभिवाक़ के वादी के लिए उपलब्ध न होने के तर्क का समर्थन करने में असमर्थ हूँ. +","is karan se bhi main kathit abhiva ke vadi ke lie upalabdh n hone ke uphold the contention karne men asamarth hoon +",8,2,negative,neutral,neutral +"Through its various schemes and financial assistance, and support in regular procurement of raw material by producers – as well as infrastructural support– Government of India has given critical backing to boost the existing coir industry and encourage new entrepreneurs. +","अपनी विभिन्न स्कीमों तथा वित्तीय सहयोग से तथा उत्पादकों द्वारा कच्चे माल की नियमित खरीदारी में सहायता देकर और अवसंरचना संबंधी सहयोग देकर भारत सरकार ने मौजूदा कॉयर उद्योग को बढ़ावा देने के लिए तथा नए उद्यमियों को प्रोत्साहित करने के लिए महत्त्वपूर्ण सहयोग दिया है। +","apni vibhinn schemes and financial sahyog se tatha utpadkon dvara kachche mal ki niymit kharidari men sahayta dekar aur avsnrachna snbndhi sahyog dekar bharat sarkar ne existing coir industry ko baava dene ke lie tatha ne udymiyon ko protsahit karne ke lie mahattvpoorn sahyog diya hai. +",7,1,positive,negative,positive +"Though they had improved upon it in some ways but ' the thing ' had become ' totally different from what it originally was . ' +","यद्यपि उन्होंने उसमें थोड़ा-बहुत संशोधन किया है ? किंतु जो असल बात थी वह बिलकुल बदल गई है . ? +","yadypi unhonne usmen thora-bhut snshodhan kiya hai kintu jo asal bat thi vah bilkul badal gee hai +",8,2,neutral,negative,positive +"PRESIDENT RELEASES COMMEMORATIVE POSTAGE STAMP ON LATE SHRI RAMGOPAL JI MAHESHWARI, Rashtrapati Bhavan : 20.11.2012 +","राष्ट्रपति ने स्वर्गीय श्री रामगोपाल जी माहेश्वरी पर स्मारक डाक टिकट जारी किया, राष्ट्रपति भवन : 20.11.2012 +","president ne late shri ramgopal ji maheshvri par commemorative postage stamp jari kiya , president bhavan : 20112012 +",9,0,neutral,neutral,neutral +"Now We have sent down to you a Book wherein is your Remembrance; will you not understand? +","हमने तो तुम लोगों के पास वह किताब (कुरान) नाज़िल की है जिसमें तुम्हारा (भी) ज़िक्रे (ख़ैर) है तो क्या तुम लोग (इतना भी) समझते +","hamne to tum logon ke pas vah book remembrance nazil ki hai wherein tumhara bhi zikre air hai to kya tum log itna bhi samajhte +",5,6,neutral,neutral,neutral +"During 2010 - 11, the production of HINCOL was 159. 39 MT. +","वर्ष 2010-11 के दौरान, हिनकोल का उत्पादन 159.39 लाख टन था। +","varsh 2010-11 ke dauran , hincol ka production 15939 lakh mt tha. +",5,2,neutral,neutral,neutral +"You have no recently reported crashes. Crashes that occurred when crash reporting was disabled will not appear here. +","आपके पास हाल ही में रिपोर्ट किए गए क्रैश नहीं हैं. क्रैश रिपोर्टिंग अक्षम होने के दौरान होने वाले क्रैश यहां दिखाई नहीं देंगे. +","aapke recently reported hi men riport kie ge crashes nahin hain occurred when crash hone ke dauran hone vale crashes yahan dikhaee nahin denge +",7,2,negative,negative,negative +"The Arya Samaj preacher is never so happy as when he is reviling other religions. +","आर्य समाजी उपदेशकों को जो मजा दूसरे धर्मो पर कीचड़ उछालने में आता है, वह मजा और किसी बात में नहीं आता। +","arya samaji updeshkon ko jo happy doosre religions par kichar uchhalne men other hai , vah happy aur kisi bat men nahin aata. +",7,2,negative,neutral,positive +"He said: ” I ask you again to judge the accused by what is before you, on what you have heard in this room and what you have read of his writings. +","उन्होंने कहा ” मैं आपसे दोबारा आग्रह करता हूं कि आपके सामने जो आया है, आपने इस कक्ष में जो सुना है और जो अभियुक्त के लेखों में पढ़ा है, सिर्फ इसी आधार पर अभियुक्त पर फैसला दें. +","unhonne kaha i aapse dobara aagrah karta hoon ki aapke samne jo aaya hai , aapne is room men jo suna hai aur jo abhiyukt ke writings men paa hai , sirph isi aadhar par abhiyukt par phaisla den +",8,2,neutral,neutral,negative +"Persons taking sulphonylurea therapy and who have normal blood glucose values may need to reduce the sulphonylurea dose while on exercise programme. +","जिन रोगियों को सल्फोनाइलयूरिया दवाइयां दी जा रही हैं और उनका रक़्त ग़्लूकोज स्तर सामान्य है, उन्हें व्यायाम कार्यक्रम के दौरान इन दवाइयों इन दवाइयों की खुराक कम करने की आवश्यकता हो सकती +","jin persons ko sulphonylurea davaiyan di ja rahi hain aur unka glucose lookoj star normal hai , unhen exercise programme ke dauran in davaiyon in davaiyon ki dose kam karne ki aavashyakta ho sakti +",8,4,neutral,neutral,positive +"For the Indians in general, patriotism was the only meaning of the ideals and lessons preached by Gandhiji. +","भारतीय जन-मानस के समक्ष गाँधी द्वारा प्रादुर्भूत आदर्शों और उपदेशों का अर्थ मात्र देश-भक्ति था। +","indians jan-manas ke samaksh gandhiji dvara pradurbhoot ideals aur lessons ka meaning only desh-bhakti tha. +",7,6,neutral,neutral,positive +"Failed to write file '% s': fwrite () failed:% s'% s' +","फ़ाइल को लिखने में विफलः fwrite () विफलः% s +","failed ko failed to write fwrite viphla s +",4,4,negative,neutral,negative +"Rate / water charges applicable as well as the common storage facility. +","दर/पानी प्रभार लागू और समान्य एकत्र करने की सुविधा। +","darpani charges applicable aur samany ekatr karne ki facility +",5,7,neutral,neutral,neutral +"It is more important to do right thing than to do things right. +","काम को सही करने से अधिक महत्वपूर्ण यह है कि सही काम ही किये जावें। +","thing ko right karne se adhik important yah hai ki right thing hi kiye javen. +",9,1,positive,positive,positive +"The degree of blurring from 1 to 127. +","1 से 127 तक धुंधला की डिग्री. +","1 se 127 tak dhundhla ki degree +",9,1,neutral,neutral,neutral +"They all < s > are major causes of serious illness or early death; +","गंभीर एवं जानलेवा बीमारियों के प्रमुख कारण हैं। +","illness or early bimariyon ke prmukh karan hain. +",7,4,negative,negative,negative +"And dread the Day when no one shall avail anyone in any way; nor shall any ransom be accepted from anyone; nor shall intercession profit any body; nor shall the offenders be helped from any quarter. +","और उस दिन से डरो जिस दिन कोई शख्स किसी की तरफ से न फिदया हो सकेगा और न उसकी तरफ से कोई मुआवेज़ा क़ुबूल किया जाएगा और न कोई सिफारिश ही फायदा पहुचाँ सकेगी, और न लोग मदद दिए जाएँगे +","aur us day se daro jis day koee shakhs kisi ki way se n phidya ho sakega aur n uski way se koee ransom ubool kiya jaega aur n koee sipharish hi profit pahuchan offenders , aur n log madad die jaenge +",4,5,negative,neutral,negative +"The main plateaus are the Baghelkhand and the Chota Nagpur. +","इस क्षेत्र के प्रमुख पठार बघेलखंड तथा छोटा नागपुर हैं। +","is kshetr ke main plateaus baghelkhnd tatha chhota nagpur hain. +",9,2,neutral,neutral,neutral +"he had spent most time in racing, wrestling and hunting and he never had interest in studies +","उसका काफी समय आखेट दौड़ व द्वंद्व कुश्ती आदि में बीता तथा शिक्षा में उसकी रुचि नहीं रही। +","uska most time hunting daur v dvndv kushti aadi men bita tatha shiksha men uski interest nahin rahi. +",7,1,neutral,neutral,negative +"No such interface ‘% s' +","कोई अंतरफलक ‘% s 'नहीं +","koee such s nhin +",5,3,neutral,neutral,negative +"He will forgive your sins and admit you into gardens with streams running in them, and into good dwellings in the Gardens of Eden; that is the great success. +","वह तुम्हारे गुनाहों को क्षमा कर देगा और तुम्हें ऐसे बागों में दाखिल करेगा जिनके नीचे नहरें बह रही होगी और उन अच्छे घरों में भी जो सदाबहार बाग़ों में होंगे। यही बड़ी सफलता है +","vah good sins ko kshma kar dega aur gardens aese eden men dakhil karega jinke niche nahren bah rahi hogi aur un achchhe dwellings men bhi jo sadabhar baon men honge. yahi bari success hai +",7,3,positive,neutral,positive +"It will be easier if the boxes are fitted with bolts. +","बक्सों को बंद करने के लिए उनमें कब्जे और कुंडे हों तो सुविधा रहती है। +","boxes ko bnd karne ke lie unmen kabje aur kunde hon to suvidha rahti hai. +",9,0,neutral,neutral,positive +"Action is the foundational key to all success. +","कर्म सफलता का मूल है. +","foundational key ka mool hai +",2,3,positive,neutral,positive +"He needed to authenticate the documents with signature. +","उसे दस्तावेज़ों को हस्ताक्षर द्वारा अधिप्रमाणित करने की आवश्यकता थी। +","use documents ko signature dvara adhiprmanit karne ki aavashyakta thi. +",9,1,neutral,neutral,neutral +"It is, therefore, rare. +","इसलिए वह बहुत विरल होता है। +","islie vah bahut rare hota hai. +",5,6,neutral,negative,neutral +"After much exertion and pressure he was made to say 'No' only. +","काफी प्रयास करने और दबाव डालने के बाद वह जबाव में सिर्फ 'नहीं' कहकर चुप हो गये. +","kaphi pryas karne aur dabav dalne ke bad vah jabav men sirph nhin kahakar chup ho gaye +",8,4,neutral,neutral,negative +"Sometimes, the local craftsmen also display their items for sale in this emporium. +","कभी स्थानीय शिल्पकार भी अपनी कलाकृतियों को यहां पर बेचने के लिए रख देते हैं. +","kabhi local craftsmen bhi apni kalakritiyon ko yahan par bechne ke lie rakh dete hain +",8,0,neutral,neutral,neutral +"Rate / water charges applicable as well as the common storage facility. +","दर/पानी प्रभार लागू और समान्य एकत्र करने की सुविधा। +","darpani water applicable aur common rate karne ki facility +",6,1,neutral,neutral,neutral +"It is more important to do right thing than to do things right. +","काम को सही करने से अधिक महत्वपूर्ण यह है कि सही काम ही किये जावें। +","kam ko sahi karne se adhik mahatvpoorn yah hai ki sahi kam hi kiye thing +",4,6,positive,positive,positive +"""The wall belonged to two young orphans in the town whose father had been a righteous man, and a treasure of theirs lay underneath it. So your Lord wanted them to come of age and then to dig up their treasure as a mercy from Him. I did not do [it] of my own accord. That is the explanation of the things about which you were not able to restrain yourself."" +","और रही यह दीवार तो यह दो अनाथ बालकों की है जो इस नगर में रहते है। और इसके नीचे उनका ख़जाना मौजूद है। और उनका बाप नेक था, इसलिए तुम्हारे रब ने चाहा कि वे अपनी युवावस्था को पहुँच जाएँ और अपना ख़जाना निकाल लें। यह तुम्हारे रब की दयालुता के कारण हुआ। मैंने तो अपने अधिकार से कुछ नहीं किया। यह है वास्तविकता उसकी जिसपर तुम धैर्य न रख सके। "" +","aur rahi yah divar to yah do anath balkon ki hai jo is nagar men rahte hai. aur iske niche unka jana maujood hai. aur unka bap nek tha, islie tumhare rab ne chaha ki ve apni yuvavastha ko pahunch jaen aur apna jana nikal len. yah tumhare rab ki dayaluta ke karan huaa. mainne to apne adhikar se kuchh nahin kiya. yah hai vastvikta uski jisapar tum dhairy n rakh sake. +",8,1,neutral,neutral,positive +"Dump texture atlas changes to an image file +","एटलस के संरचना को छवि फाइल में बदल कर डंप करें +","atlas ke snrachna ko image file men badal kar dnp karen +",7,4,neutral,neutral,negative +"Then We awakened them to know which of the two groups could better calculate the length of their stay. +","फिर हमने उन्हें भेजा, ताकि मालूम करें कि दोनों गिरोहों में से किसने याद रखा है कि कितनी अवधि तक वे रहे +","phir hamne unhen bheja , stay maloom karen ki donon groups men se kisne yad rakha hai ki kitni length tak ve rahe +",6,1,neutral,neutral,positive +"virtual tor of Taj mahal in Internet. +","ताजमहल का इंटरनेट पर वर्चुअल टूर +","mahal in internet par virtual tor +",7,1,neutral,neutral,neutral +"Until the Day of the time well - known. "" +","उस दिन तक के लिए जिसका समय ज्ञात एवं नियत है। "" +","us day tak ke lie jiska time jnjat evn niyat hai. +",9,0,neutral,neutral,positive +"""Adjournment of the sitting of the House""- Termination of the sitting of the House which meets again at the time appointed for the next sitting. +","""सभाकी बैठक का स्थगन"" -- स्थगन होने पर सभा की बैठक समाप्त हो जाती है और सभा अगली बैठक के लिए नियत समय पर पुनः समवेत होती है। +","sabhaki sitting ka adjournment -- adjournment hone par house ki sitting samapt ho jati hai aur house next sitting ke lie niyat time par puna samvet hoti hai. +",8,1,neutral,neutral,neutral +"the light water reactor, the heavy water reactor would be around very long. They were just +","हल्के जल रिएक्टर, भारी जल रिएक्टर के आसपास बहुत लंबी होगी. वे सिर्फ थे +","light water reactor, heavy water reactor ke aaspas bahut lnbi hogi ve sirph the +",7,4,neutral,negative,neutral +"As a part of improvement of the infrastructure, Air India is in the process of creation of bases for new aircraft as under +","अधोसंरचना के विकास के लिए एयर इंडिया नए विमानों के लिए नए अड्डो के निर्माण की प्रक्रिया में लगा हुआ है। इसके अंतर्गत +","infrastructure ke improvement ke lie air indiya new aircraft ke lie new addo ke creation ki process men laga huaa part iske antargat +",6,3,neutral,neutral,positive +"When Manohar was transferred to Amudalavalasa , the couple put their through the weight-training regimen at the Ammi Naidu gym in the district headquarters town of Srikakulam . +","मनोहर का तबादल अमूदलवलसा हा तो वहां दोनों ने श्रीकाकुलम जिल मुयालय स्थित अमी नायड़ू जिम में अयास जारी रखा . +","manohar ka tabadal amoodalavalsa ha to vahan donon ne shrikakulam jil muyalay sthit ami nayaroo jim men ayas jari rakha +",8,2,neutral,neutral,neutral +"The Krishna temple, Pattabhirama temple, Hazara Ramachandra and Chandrasekhara temple as also the Jain temples, are other examples. +","यहां स्थित कृष्ण मंदिर, पट्टाभिराम मंदिर, हजारा राम चंद्र और चंद्र शेखर मंदिर भी यहां के जैन मंदिर हैं जो अन्य उदाहरण हैं। +","yahan sthit krishn mndir, pattabhiram mndir, hajara ram chndr aur chndr shekhar mndir bhi yahan ke jain mndir hain jo any udaharan hain. +",4,7,neutral,neutral,neutral +"what they want to learn to do. +","जो वो सीखना चाहते हैं. +","jo vo learn chahte hain +",4,3,neutral,neutral,positive +"And what can make you know what is the Striking Calamity? +","और तुम्हें क्या मालूम कि क्या है वह खड़खड़ानेवाली? +","aur tumhen kya maloom ki kya hai vah striking +",9,0,neutral,neutral,neutral +"An organism in the early stages of development. +","विकास की प्रारम्भिक अवस्था में एक जीव +","early ki stages avastha men ek organism +",6,1,neutral,neutral,neutral +"If TRUE, the selected month cannot be changed +","अगर सत्य तो चयनित माह नही बदला जा सकता +","agar true to chaynit month nahi badla ja sakta +",8,1,neutral,neutral,positive +"I am uncompromisingly against all destructive machinery. +","मै तमाम नाशकारी यंत्रोंका कट्टर विरोधी हूं। +","mai tamam nashkari yntronka kattar virodhi hoon. +",9,2,negative,neutral,negative +"The place you go while you are staring at a computer that is processing something very slowly. +","वह स्थान जहाँ आप एक कंप्यूटर को घूर रहे हैं जबकि वह कंप्यूटर बहुत धीरे-धीरे कुछ प्रोसेसिंग कर रहा है। +","vah place jahan aap ek computer ko staring rahe hain jabki vah computer bahut slowly kuchh prosesing kar raha hai. +",6,1,neutral,neutral,neutral +"Project Manager Plugin for Anjuta. +","परियोजना प्रबंधक प्लगइन के लिए Anjuta. +","project manager plugin ke lie Anjuta +",8,1,neutral,neutral,neutral +"Child process stopped by signal %ld +","संतति प्रक्रिया %ld संकेत के द्वारा रोका गया +","child process ld signal ke dvara stopped gaya +",7,3,negative,neutral,negative +"WHAT WILL I EARN? 20 +","मेरी आमदनी क्या होगी? 25। +","meri aamadni kya hogi 25. +",7,5,neutral,neutral,neutral +"It is n 't a good idea to focus on the use of solvents. +","केवल सॉल्वैट्स के उपयोग पर ही सारा ध्यान केंद्रित कर देना कोई अच्छा विचार नहीं है. +","keval n ke use par hi sara dhyan kendrit kar dena koee good idea nahin hai +",5,4,negative,neutral,positive +"He had atopic eczema as a child. +","उसे एक शिशु की तरह चोटी का पामा था. +","use ek child ki tarah choti ka eczema tha +",8,1,negative,negative,neutral +"to beam a representation of our loved ones into our living rooms - +","हमारे चाहने वालों के प्रतिनिधित्व को बीम करने में- +","ones loved valon ke representation ko living karne men- +",6,2,positive,neutral,positive +"We are now adding a ""digital"" dimension to this connectivity. +","अब हम इन संबंधों में ‘डिजिटल’ पहलू भी जोड़ रहे हैं। +","ab ham in connectivity men dijital dimension bhi jor rahe hain. +",9,2,neutral,negative,neutral +"(ii) continuous modernization as well as implementation of de - bottlenecking and technology upgradation schemes in the older plants; +",". पुराने संयंत्रों में निरंतर आधुनिकीकरण तथा बाधाओं को दूर करना और प्रौद्योगिकी उन्नयन +","older plants men continuous modernization tatha badhaon ko door karna aur technology upgradation +",6,8,neutral,neutral,positive +"he takes a nap in the afternoon, and I got to go. +","वे दोपहर में सोते हैं, और मुझे ज़रूरी जाना है. +","ve nap men sote hain , aur i zaroori jana hai +",5,1,neutral,neutral,neutral +"It is also a matter of satisfaction that graduates of the centre have been recognised and valued. +","यह भी संतोष का विषय है कि इस सेंटर के स्नातकों को मान्यता और महत्व प्राप्त है। +","yah bhi matter of satisfaction hai ki is sentar ke snatkon ko recognised and valued prapt hai. +",6,0,positive,positive,positive +"it's like playing poker and going all in right away. +","यह पोकर में सारे पत्ते खोल देने जैसा है. +","yah poker men sare patte khol dene jaisa hai +",8,3,neutral,neutral,positive +"Generating tissues of predictable density and behavior +","उम्मीद के मुताबिक घनत्व और व्यवहार के ऊतक बनाना +","ummid ke mutabik predictable aur behavior ke tissues banana +",8,2,neutral,neutral,neutral +"Purchase of machinery and implements / equipment +","मशीनों एवं उपकरणों/औजारों की खरीद। आवधिक ऋण: +","machinery evn upakarnonaujaron ki purchase aavdhik rin : +",9,0,neutral,neutral,neutral +"She was touted as the next dream girl. +","मुद्दा उन्हें अगली स्वप्न सुंदरी करार दिया जा रहा था. +","mudda unhen agli dream girl karar diya ja raha tha +",9,0,neutral,neutral,positive +"Though a good deal of it has now become redundant or useless, there are seminal ideas in our past culture that can be of, great use in guiding our future. +","यद्यपि इसका एक ख़ासा भाग फ़ालतू या निरर्थक हो गया है, फिर भी हमारी पारम्परिक संस्कृति में कुछ प्रारम्भिक विचार हैं जो हमारे भावी पथ-प्रदर्शन में बहुत उपयोगी हो सकते हैं। +","yadypi iska ek asa bhag faltoo ya nirarthak ho gaya hai, phir bhi hamari paramprik snskriti men kuchh prarambhik vichar hain jo guiding our future men bahut upyogi ho sakte hain. +",5,3,positive,neutral,positive +"Only Lolita acted as a bridge between these two households. +","इन दोनों के बीच अकेली ललिता ही सेतु-सी बनी रह गई। +","in donon ke bich akeli lalita hi setu-si bani households gee. +",6,4,neutral,neutral,neutral +"Move% s onto% s. +","% s खिसकाएँ% s पर. +","s khiskaen s par +",9,0,neutral,neutral,neutral +"Canada 's currently led by a party +","कनाडा में आज जिस पार्टी की सरकार है, +","canada men aaj jis parti ki sarkar hai, +",9,2,neutral,neutral,positive +"(i) it begins to manufacture or produce articles after the 30th day of September, 1977 but before the 1st day of April, 1990, in any rural area ; +","(i) यह किसी ग्रामीण क्षेत्र में वस्तुओं का विनिर्माण या उत्पादन 30 दिसम्बर, 1977 के पश्चात् किंतु 1 अप्रैल, 1990 के पूर्व प्रारंभ करता है; +","i yah kisi rural area men articles ka vinirman ya utpadan 30 september , 1977 ke pashchat kintu 1 april , 1990 ke poorv prarnbh karta hai +",8,1,neutral,neutral,neutral +"The Chairman to the right and the Speaker to the left of the President who occupies the middle seat. +","बीच के आसन पर राष्ट्रपति बैठता है, उसके दायें राज्य सभा का सभापति और बायें लोक सभा का अध्यक्ष। +","bich ke aasan par rashtrapti baithta hai, uske dayen rajy sabha ka sabhapti aur bayen lok sabha ka adhyaksh. +",9,1,neutral,neutral,neutral +"you have to learn to do that for your digital self. +","हमें यही सब अपने डिजिटल जीवन में भी करना सीखना पड़ता है. +","hamen yahi sab apne digital jivan men bhi karna learn parta hai +",7,1,neutral,neutral,neutral +"Update the files in the archive “%s”? +","फ़ाइलों “%s” अभिलेख में अद्यतन करें? +","files s archive men update karen +",9,1,neutral,neutral,neutral +"The writer of this monograph met her in October 1972 in Leningrad. +","इस पुस्तक के लेखक की अक्तूबर 1972 में, लेनिनग्राद में, लोला से, उनके घर पर भेंट हुई। +","is pustak ke lekhak ki october 1972 men, leninagrad men, lola se, unke ghar par bhent huee. +",8,0,neutral,neutral,neutral +"He is the Lord of the heavens and the earth and all that is between them. He is the Beneficent God and no one will be able to address Him. +","वह आकाशों और धरती का और जो कुछ उनके बीच है सबका रब है, अत्यन्त कृपाशील है, उसके सामने बात करना उनके बस में नहीं होगा +","vah aakashon aur earth ka aur jo kuchh unke bich hai sabka rab hai, atyant kripashil hai, uske samne bat karna unke bas men nahin hoga +",8,1,positive,neutral,positive +"They said, ‘O Moses! Will you throw first, or shall we? ’ +","वे बोले, ""ऐ मूसा! या तो तुम फेंको या फिर हम पहले फेंकते हैं।"" +","ve bole , moses ! ya to tum phenko ya phir ham pahle phenkte hain. +",8,2,neutral,neutral,neutral +"243W. Powers, authority and responsibilities of Municipalities, etc.- +","243ब. नगरपालिकाओं, आदि की शक्तियाँ, प्राधिकार और उत्तरदायित्व- +","243b powers , aadi ki responsibilities , authority aur uttardayitv- +",6,4,neutral,neutral,positive +"of the banking system has attracted a lot of investment from outside. +","बैंकिंग प्रणाली की इस मज़बूती ने के बाहर से निवेश को भी बहुत आकर्षित किया है। +","banking system ki is mazbooti ne ke outside se investment ko bhi bahut aakarshit kiya lot +",7,2,neutral,negative,positive +"Negativistic gnosticism treats the relationship of the spirit and the body as accidental and meaningless. +","नकारात्मक ज्ञानवाद शरीर और आत्मा के संबध को संयोगात्मक और अर्थहीन मानता है। +","nakaratmak jnjanvad body aur spirit ke relationship ko snyogatmak aur meaningless manta hai. +",10,0,negative,neutral,negative +"Panini not only in India, but the world 's biggest linguist, who did extensive studies and vivid descriptive language. +","पाणिनि न केवल भारत के, अपितु संसार के सबसे बड़े भाषाविज्ञानी हैं, जिन्होंने वर्णनात्मक रूप में भाषा का विशद एवं व्यापक अध्ययन किया। +","panini n keval india ke , apitu world ke sabse bare linguist hain , jinhonne descriptive roop men language ka vivid evn extensive studies kiya. +",9,2,positive,neutral,neutral +"THE PLAYS OF BHAVABHUT1 But the main spring of dramatic action in the Uttararamacharita is psychological. +","किन्तु उत्तर-रामचरित में नाटकीय क्रियाकलापों का मुख्य स्रोत मनोवैज्ञानिक है। +","kintu dramatic action natkiy kriyaklapon ka mukhy srot manovaijnjanik hai. +",6,2,neutral,neutral,positive +"If 20gms of the magaj is soaked in one cup of lukewarm water, a brown coloured colour of Burgundy wine, mildly aromatic drink is obtained. +","यदि 20 ग्राम मगज एक कप गुनगुने पानी में अवशोषित किया जाये तो भूरे रंग बर्गंडी वाइन का रंग का हल्का सुंगधित पेय तैयार हो जायेगा। +","yadi 20 gram magaj ek kap lukewarm water men avshoshit kiya jaye to brown coloured colour vain ka rng ka halka sungdhit pey taiyar ho jayega. +",8,3,neutral,neutral,neutral +"Each vertex has a label, and these labels must have the following property. +","प्रत्येक वर्टेक्स एक लेबल है, और इन लेबल निम्न गुण होना आवश्यक है। +","pratyek vertex ek label hai , aur in label following property hona aavashyak hai. +",8,3,neutral,neutral,neutral +"If such a declaration or public recognition is not made to begin with by the British Government, even so it must be clearly understood that we can only talk on this basis and on no other. 2. +","यदि आरंभ में ब्रिटिश सरकार द्वारा ऐसी धारणा सार्वजनिक स्वीकृति न की जाय, तो भी यह स्पष्ट रूप से समझ लिया जाना चाहिये कि हम केवल इसी आधार पर बातचीत कर सकते हैं, अन्य किसी आधार पर नहीं। +","yadi aarnbh men british government dvara aesi dharna public recognition n ki jay , to bhi yah spasht roop se understood liya jana declaration ki ham keval isi basis par batchit kar sakte hain , other kisi basis par nahin. +",7,1,neutral,neutral,positive +"May be, they laughed at something in the concert. +","संगीत के किसी बात पर हँस रही हों। +","concert ke kisi something par hns rahi hon. +",8,1,neutral,neutral,positive +"Language model adapts as you write. +","भाषा मॉडल अनुकूलित करता है जैसे आप लिखते हैं +","language model adapts karta hai jaise aap likhte hain +",9,1,neutral,neutral,neutral +"The Department of Agriculture organizes Pre - Kharif and Pre - Rabi Programme Planning Workshops that are attended by department officers, field level functionaries, university of agricultural sciences scientists, officers of line departments and related input agencies. +","कृषि विभाग खरीफ पूर्व और रबी पूर्व कार्यक्रम आयोजना कार्यशालाओं का आयोजन करता है जिसमें विभाग के अधिकारी, क्षेत्रीय स्तर के कार्यकर्ता, कृषि विज्ञान वैज्ञानिक विश्वविद्यालय इसी तरह के विभागों के अधिकारी और संबंधित निवेश एजेंसियों के अधिकारी भाग लेते हैं। +","agriculture department kharif pre aur rabi pre programme aayojna workshops ka planning karta hai jismen department ke officers , kshetriy level ke karyakarta , agriculture sciences scientists university isi tarah ke departments ke officers aur related input agencies ke officers bhag lete hain. +",6,5,neutral,neutral,neutral +"Though the poem was not later included in his Collected Works, it did help to establish his reputation on its first appearance. +","भले ही यह कविता उनकी समग्र रचनावली में संकलित होने से रह गई थी, तो भी अपनी पहली उपस्थिति से उसकी प्रतिष्ठा स्थापित करने में सहायता मिली थी. +","bhale hi yah kavita unki samagr rachnavli men snklit hone se rah gee thi, to bhi apni pahli upasthiti se establish his reputation karne men sahayta mili thi +",7,3,neutral,negative,positive +"The optical photo conductor is no longer functioning +","ऑप्टिकल फोटो कंडक्टर कामकाज नहीं रहा है +","optical photo conductor functioning nahin raha hai +",8,0,negative,negative,negative +"Error sending ""% s"" to% s +","""% s"" को% s में भेजने में त्रुटि +","s ko s men sending men error +",5,1,negative,negative,negative +"The Indian Council of Cultural Relations carried on its role of acting as a cultural ambassador for the country. +","सांस्कृतिक सम्बन्ध भारतीय सांस्कृतिक सम्बन्ध परिषद देश के सांस्कृतिक दूत की भूमिका निभा रही है। +","cultural relations indian cultural relations council country ke cultural ambassador ki role nibha rahi hai. +",7,1,neutral,neutral,neutral +"He propagated the principles of Hinduism. +","उसने हिन्दुत्व के नियमों का प्रचार किया। +","usne hinduism ke principles ka prchar kiya. +",9,2,neutral,neutral,neutral +"Third Party guarantee (if mortgage could not be created before or at the time of disbursement). +","तृतीय पक्ष गारंटी (अगर संवितरण के समय या इससे पहले बंधक का सृजन नहीं किया जा सका है)। +","tritiy party guarantee agar time of disbursement ya isse pahle bndhak ka srijan nahin kiya ja saka hai. +",7,3,neutral,neutral,positive +"44 year old JNU is well known in India and abroad as a University with a ‘difference’. +","44 वर्ष पुराना जवाहरलाल नेहरू विश्वविद्यालय भारत और विदेश में एक ‘अलग’ तरह के विश्वविद्यालय के रूप में सुविख्यात है। +","44 year old javaharlal nehroo jnu india aur videsh men ek difference tarah ke jnu ke roop men suvikhyat hai. +",7,1,neutral,neutral,positive +"""and it 's going to be a $40 billion business in the next 7 years."" +","""और यह एक 40 अरब डॉलर कारोबार अगले 7 वर्षों में होने जा रहा है."" +","aur yah ek 40 arab dlar business next 7 varshon men hone ja raha hai +",7,0,neutral,positive,neutral +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","track the actor par nazar rakhne ke lie clip region ko set karen +",7,0,neutral,neutral,neutral +"The tribals also depend on the bamboo to augment their incomes . +","आदिवासी अपनी आय बढने के लिए भी बांस पर निर्भर रहते हैं . +","tribals apni aay augment ke lie bhi bamboo par depend rahte hain +",7,0,neutral,neutral,neutral +"Pirates of the Caribbean: Dead Man's Chest +","समुंदर के लुटेरे: मुर्दे का खज़ाना +","pirates ke caribbean : murde ka man +",4,0,neutral,neutral,negative +"His duty is scheduled at night shift. +","उसकी ड्यूटी रात की पारी में सूचित है। +","uski duty night ki shift men soochit hai. +",9,2,neutral,neutral,neutral +"A type of vein arrangement in leaf where veins run parallel to each other from the poin they strat to the end. +","पत्ती में पाया जाने वाला एक प्रकार का शिरा विन्यास जहां अपने आरंभ होने के स्थान से अंत होने के स्थान तक शिराएं एक दूसरे के समांतर होती हैं +","leaf men paya jane vala ek type ka vein arrangement jahan apne aarnbh hone ke other se end hone ke other tak shiraen ek doosre ke samantar hoti hain +",7,3,neutral,neutral,neutral +"""What was it that brought you to Hell?"" +","""तुम्हे क्या चीज़ सकंर (जहन्नम) में ले आई?"" +","brought kya chiz saknr jahannam men le aaee +",7,2,neutral,neutral,negative +"Our immediate aim should be to eradicate communicable diseases and control the non-communicable ones. +","हमारा तात्कालिक लक्ष्य संचारी बीमारियों का उन्मूलन तथा गैर-संचारी बीमारियों पर नियंत्रण होना चाहिए। +","hamara tatkalik lakshy snchari bimariyon ka unmoolan eradicate communicable diseases par niyntran hona chahie. +",8,0,neutral,neutral,neutral +"The Cyber City is operational since then. +","यह साइबर सिटी तभी से चालू है। +","yah cyber city tabhi se operational hai. +",8,1,neutral,neutral,neutral +"The Indian Government has been disinvesting from the basic education for last 5 years. +","भारतीय सरकार पिछले 5 वर्षों से बुनियादी शिक्षा से विनिवेश कर रही है। +","indian government pichhle 5 varshon se basic education se vinivesh kar rahi hai. +",8,2,negative,negative,neutral +"(That) We sent it down one night of blessing - - so that We could warn - - +","निस्संदेह हमने उसे एक बरकत भरी रात में अवतरित किया है।-निश्चय ही हम सावधान करनेवाले है।- +","nissndeh hamne use ek barakat bhari rat men avatrit kiya hai.-nishchay hi ham savdhan karnevale hai.- +",5,8,neutral,neutral,positive +"And then you know what we do? We negotiate. +","और फ़िर हम क्या करते है? हम सौदा तय करते हैं। +","aur fir ham kya karte hai ham negotiate tay karte hain. +",8,2,neutral,neutral,neutral +"Language can't math me. +","भाषा मेरा गणित नहीं समेट सकती. +","language mera math nahin samet sakti +",9,2,negative,negative,neutral +"Motions, though they cover a variety of proceedings of the House, fall into three principal categories namely, Substantive Motions, Substitute Motions, and Subsidiary Motions. +","यद्यपि प्रस्ताव सदन की विभिन्न कार्यवाहियों से संबंधित होते हैं तथापि उन्हें तीन प्रमुख श्रेणियों में रखा जा सकता है, अर्थात मूल (सब्सटेंटिव) प्रस्ताव, स्थानापन्न (सबस्टीट्यूट) प्रस्ताव और सहायक (सब्सीडियरी) प्रस्ताव. +","yadypi motions house ki variety proceedings se snbndhit hote hain tathapi unhen tin principal fall men rakha ja sakta hai , arthat mool sabstentiv motions , substitute sabastityoot motions aur subsidiary sabsidiyri motions +",6,2,neutral,neutral,neutral +"But your Lord does not destroy habitations without having sent an apostle to their metropolis to read out Our commandments to them. We would never have destroyed cities if their inhabitants were not given to wickedness. +","तेरा रब तो बस्तियों को विनष्ट करनेवाला नहीं जब तक कि उनकी केन्द्रीय बस्ती में कोई रसूल न भेज दे, जो हमारी आयतें सुनाए। और हम बस्तियों को विनष्ट करनेवाले नहीं सिवाय इस स्थिति के कि वहाँ के रहनेवाले ज़ालिम हों +","tera rab to bastiyon ko vinasht karnevala nahin jab tak ki unki metropolis to read koee rasool n bhej de, jo hamari aayten sunae. aur ham bastiyon ko vinasht karnevale nahin sivay is sthiti ke ki vahan ke rahnevale zalim hon +",4,3,neutral,negative,positive +"And that 's the same thing as 0. 75x. +","जैसे 1X माइनस 0.25X के जैसे लिखा और वह समान चीज़ है जैसे 0.75X +","jaise 1X mainas 025X ke jaise likha aur vah saman chiz hai jaise 075X +",7,4,neutral,neutral,neutral +"unusual trapping or confinement of a part in the body +","यारीर में किसी अंग का असामान्य रूप से फंसना या सीमित हो जाना +","yarir part kisi ang ka asamany roop se phnsna ya simit ho jana +",6,3,neutral,neutral,neutral +"The certificate “$1%{CERTIFICATENAME}” represents a Certification Authority. +","प्रमाणपत्र “%{CERTIFICATENAME}” एक प्रमाणन प्राधिकरण का प्रतिनिधित्व करता है. +","certificate CERTIFICATENAME ek certification authority ka prtinidhitv karta hai +",8,2,neutral,neutral,positive +"These are the ones who found their fathers steeped in error, +","उन लोगों ने अपन बाप दादा को गुमराह पाया था +","un ones ne error fathers dada ko gumrah paya tha +",6,3,negative,neutral,negative +"The meeting was held that very night at about 11 or 12 p. m. +","रातके लगभग 11 या 12 बजें यह सभा हुई। +","meeting lagabhag 11 ya 12 meeting was held huee. +",5,1,neutral,neutral,neutral +"“If you prick us, do we not bleed, +","“अगर तुम हमें काटते हो, तो क्या हमारा खून नहीं बहता, +","agar tum hamen katte ho, to kya hamara khoon nahin bahta, +",9,2,negative,neutral,negative +"The following rules have been notified under the Environment Protection Act, 1986: i Manufacture, Storage and Import of Hazardous Chemicals, 1989; ii Hazardous Wasles Management and Handling Rules, 1989; and iii Manufacture, Use, Import, Export and Environment Storage of Hazardous Micro - organisms / Genetically Engineered Organisms or Cell, 1989 and iv Biomedical Waste Rules, 1998. +","इन गतिविधियों को चलाने के लिए पर्यावरण संरक्षण अधिनियम, 1986 के अंतर्गत निम्नलिखित नियम अधिसूचित किए गए हैं: 1 खतरनाक रसायनों का उत्पादन, भंडारण तथा आयात नियम, 1989:2 खतरनाक अपशिष्ट पदार्थ प्रबंध तथा हैंडलिंग नियम-1989:3 खतरनाक सूक्ष्म जीव/आनुवांशिकी इंजीनियरी जन्य जीवों अथवा कोशिकाओं का उत्पादन, उपयोग, निर्यात एवं आयात तथा भंडारण नियम 1989: और 4 जैव-चिकित्सा अपशिष्ट नियम, 1998। +","in gatividhiyon ko chalane ke lie environment protection act , 1986 ke antargat following rules adhisoochit kie biomedical hain : 1 hazardous chemicals ka manufacture , storage tatha import rules , 1989:2 hazardous waste padarth management tatha handling niyam-1989:3 hazardous sookshm jivaanuvanshiki injiniyri jany organisms athva cell ka manufacture , use , export evn import tatha storage rules 1989 : aur 4 jaiv-chikitsa waste rules , 1998. +",7,2,neutral,neutral,negative +"Blend File / Folder with diff Output +","डिफ़ आउटपुट के साथ फ़ाइल/फ़ोल्डर ब्लैंड करें +","diff output ke sath failfoldar blend karen +",7,3,neutral,neutral,neutral +"The premature death a day earlier of her fourth son Bhupendranath at the age of thirteen, must have precipi - tated her own. +","इससे एक दिन पहले उनके चौथे पुत्र भूपेन्द्रनाथ की तेरह वर्ष की आयु में अकाल मृत्यु ने भी जल्द ही उनकी जीवनलीला समाप्त करने में मदद की होगी। +","isse ek din pahle unke fourth son age of thirteen varsh ki aayu men akal mrityu ne bhi jald hi unki jivanlila samapt karne men madad ki hogi. +",5,4,negative,negative,negative +"'The first short story of Prem Chand, Duniya ka Sabse Anmol Ratan' The Most Precious Jewel in the World, appeared in 1907. +","प्रेमचन्द के अनुसार उनकी पहली कहानी, दुनिया का सबसे अनमोल रतन, सन् 1907 में प्रकाशित हुई। +","prem ke short unki first story , world ka sabse precious ratan , san 1907 men prkashit huee. +",6,1,positive,neutral,positive +"He said: ""I do not want India to be a country in which millions of people say ""yes” to one man, I want a strong opposition.” +","उन्होंने कहा था :‘‘मैं नहीं चाहता कि भारत ऐसा देश बने जहां लाखों लोग एक व्यक्ति की‘हां’में हां मिलाएं, मैं एक मजबूत विपक्ष चाहता हूं।’’ +","unhonne kaha tha : i nahin chahta ki india aesa country bane jahan millions people ek man ki han men han milaen , i ek strong opposition chahta hoon. +",6,1,neutral,negative,positive +"A conflict or disagreement comes into being or originates. +","कोई टकराव या असहमति पैदा होती है या अस्तित्व में आती है। +","koee conflict ya disagreement originates hoti hai ya astitv men aati hai. +",9,2,neutral,neutral,negative +"Accursed wherever they are found, [being] seized and massacred completely. +","फिटकारे हुए होंगे। जहाँ कही पाए गए पकड़े जाएँगे और बुरी तरह जान से मारे जाएँगे +","phitkare hue honge. jahan kahi pae ge pakare jaenge aur buri tarah jan se mare jaenge +",4,7,negative,neutral,neutral +"The males die and are absorbed. +","नर कृमि नष्ट होकर अवशोषित कर लिए जाते हैं। +","nar males nasht hokar avshoshit kar lie jate hain. +",8,2,negative,negative,negative +"Whether the label widget should fill all available horizontal space +","क्या लेबल विजेट सभी उपलब्ध क्षैतिज स्थान को भरना चहिए +","kya label widget sabhi available horizontal space ko bharna chahie +",9,1,neutral,neutral,neutral +"The duplicitous salesman sold the sculpture to someone else even though he had promised to sell it to us. +","धोखेबाज़ बिक्रीकर्ता ने प्रतिमा हमें बेचने का वायदा करने के बावजूद उसे किसी और को बेच दी। +","dhokhebaz duplicitous salesman sold hamen promised to sell karne ke bavjood use kisi aur ko bech di. +",5,1,negative,neutral,positive +"Malik Bhago, the chief of the place invites the Guru to partake food from the rich feast arranged by him. +","स्थान मुखिया, मलिक भागो गुरूजी को अपने द्वारा सुशेभित की हुई शानदार द़ावत में भोजन ग्रहण करने के लिए कहता है। +","sthan mukhiya, malik bhago gurooji ko apne dvara sushebhit ki huee shandar avat men bhojan grahan karne ke lie kahta hai. +",4,7,neutral,neutral,positive +"Specify the size and location of the main window +","आकार और स्थान का मुख्य विंडो +","size and location ka main window +",7,6,neutral,neutral,neutral +"Dhartnavaram Ramakrishnamacharyulu As mentioned earlier, except for a few, the modern theatrical plays were the result of the influence of English literature, which had then became a fashion. +","जैसे कि पहले कहा जा चुका है कि बहुत कम उदाहरणों को छोडकर आधुनिक रंगमंच के नाटकों की रचना तथा प्रदर्शन अंग्रेजी साहित्य के प्रभाव से ही आरंभ हुए हैं। +","jaise ki pahle kaha ja chuka hai ki bahut few udaharnon ko chhodakar modern rngmnch ke plays ki literature tatha pradarshan english sahity ke influence se hi aarnbh hue hain. +",8,3,neutral,neutral,positive +"and their hearts are preoccupied with trivial matters. The unjust ones whisper to each other and say, ""Is he (Muhammad) more than a mere mortal like you? How can you follow that which you know is only a magic?"" +","उनके दिल दिलचस्पियों में खोए हुए होते है। उन्होंने चुपके-चुपके कानाफूसी की-अर्थात अत्याचार की नीति अपनानेवालों ने कि ""यह तो बस तुम जैसा ही एक मनुष्य है। फिर क्या तुम देखते-बूझते जादू में फँस जाओगे?"" +","unke dil dilachaspiyon men khoe hue hote hai. unhonne chupke-chupke unjust ones whisper ki niti apnanevalon ne ki yah to bas tum jaisa hi ek manushy hai. phir kya tum dekhte-boojhte jadoo men phns jaoge +",6,5,negative,neutral,positive +"I have pointed out the mistakes in these translations. +","मैं अनुवादों की अशुद्धियां दिखा चुका हूं। +","i translations ki ashuddhiyan dikha chuka hoon. +",7,2,negative,neutral,negative +"In the year 712, Mohammad Bin Kasim, the commander of Persia defeated the King of Sindh. +","सन् 712 में फारस के सेनापति मुहम्मद बिन क़ासिम ने सिन्ध के राजा को हरा दिया । +","san 712 men commander of persia muhammad bin kasim ne king of sindh ko hara diya . +",9,2,neutral,neutral,negative +"Cash, silver and gold ornaments, coconuts, fruits and flowers are offered to the Lord. +","नकद रुपये, चांदी और सोने के आभूषण, नारियल, फल, फूल देवता को भेंट में चढ़ाये जाते हैं। +","cash rupye , silver aur sone ke aabhooshan , coconuts , fruits , flowers lord ko bhent men chaaye jate hain. +",8,3,positive,neutral,neutral +"The result was discord and loss of peace in the family. +","इससे घर में कलह मच गया। +","result ghar family kalah mach gaya. +",5,1,negative,negative,negative +"The Government of India had no adequate plans and arrangements for the country 's defence. +","भारत सरकार के पास देश की रक्षा के लिए पर्याप्त योजनाएं व इंतजाम न थे. +","india government ke pas desh ki raksha ke lie paryapt plans and arrangements n the +",8,2,negative,negative,negative +"that's right, a $1 billion - +","जी हाँ, 10 करोड़ डॉलर्ज़ - +","ji right , 10 karor dlarz - +",6,1,neutral,neutral,neutral +"Whether to show contacts that are offline in the contact list. +","क्या संपर्कों को दिखाना है जो संपर्क सूची में ऑफ़लाइन हैं. +","contact list ko show hai jo snpark soochi men ऑflain hain +",3,3,neutral,neutral,negative +"Proctosigmoidoscopy is a very important instrument used by the doctor for examining the disease. +","मलाशय-अवग्रहांत्रदर्शन रोगों की जांच के लिए चिकित्सक द्वारा प्रयोग किया जाने वाला एक बहुत ही महत्वपूर्ण उपकरण है. +","malashay-avagrhantradarshan examining the disease ke lie doctor dvara pryog kiya jane vala ek bahut hi important instrument hai +",7,0,neutral,neutral,positive +"The court said that the words were merely laughable and incapable of producing any effect on the readers. +","न्यायालय ने कहा कि वे शब्द सिर्फ हास्यास्पद थे और पाठकों पर कोई प्रभाव डालने में अक्षम थे। +","court ne kaha ki ve words sirph laughable the aur readers par koee effect dalne men incapable the. +",9,1,negative,negative,negative +"My devotees! no fear shall be on you that Day, nor shall ye grieve, - +","""ऐ मेरे बन्दों! आज न तुम्हें कोई भय है और न तुम शोकाकुल होगे।""- +","ae mere devotees ! aaj n tumhen koee fear hai aur n tum shokakul hoge. - +",9,1,positive,positive,positive +"Brmaha is Unique, only Unique. +","ब्रह्म एक और सिर्फ़ एक ही है। +","brmaha ek aur sirf ek hi hai. +",10,0,positive,neutral,neutral +"Please add songs to the project. +","कृपया गाने को परियोजना में जोड़ें. +","kripya songs ko project men add +",9,0,neutral,neutral,positive +"Can 't pass document URIs to a' Type = Link 'desktop entry +","दस्तावेज़ URI को 'Type = Link' डेस्कटॉप प्रविष्टि में भेज नहीं सकता है +","pass URI ko Type Link desktop entry men bhej nahin sakta hai +",7,1,negative,neutral,neutral +"Evidence of satisfactory completion of institutional arrangements +","संस्थागत व्यवस्था के संतोषजनक पूरा होने की साक्ष्य +","institutional arrangements ke satisfactory poora hone ki evidence +",10,0,positive,neutral,positive +"Somebody sang before him a song which goes thus: ” I feel I am a poor man when people do n 't ask gifts of me. +","किसी ने उसके सामने इसक प्रकार का गीत गाया: ” जब लोग मुझसे दान नहीं मांगते तो जान पड़ता है कि दरिद्र व्यक़्ति हूं. +","kisi ne uske samne isak prkar ka git gaya: jab log mujhse dan nahin mangte to jan parta hai ki daridr vyati hoon +",7,3,negative,negative,negative +"He grow up together and remains friends life long. +","ये एक साथ ही पले और बढ़े और आजीवन मित्र रहे। +","ye ek sath hi pale aur bae aur life friends rahe. +",6,5,positive,neutral,positive +"Something which is dangerous or risky for survival. +","ऐसी वस्तू जो जीवन या उत्पति के लिए संकटजन्य है +","something vastoo jo jivan ya utpti ke lie dangerous hai +",7,2,negative,neutral,negative +"Opposition politicians such as those of the rightist Jamaat - e - Islami are already criticising the General 's alleged gullibility in putting his faith on the US. +","दक्षिणपंथी जमाते-इस्लमी जैसी विपक्षी पार्टियां अमेरिका पर भरोसा करने की जनरल की कथित मूर्खता की आलचना कर रही हैं. +","rightist jamate-islmi such opposition partiyan amerika par faith karne ki general ki alleged moorkhta ki aalachna kar e hain +",5,2,negative,negative,negative +"India and Togo enjoy warm and friendly relations. +","भारत और टोगो के प्रगाढ़ और मैत्रीपूर्ण संबंध हैं। +","india aur togo ke warm and friendly snbndh hain. +",7,1,positive,neutral,positive +"He met hundreds of people from all religions to share in their suffering. +","उन्होंने सभी धर्मों के सैकड़ों लोगों से मिलकर उनके दुःख में अपनी भागीदारी जतायी। +","unhonne sabhi hundreds of people logon se milakar unke duakh men apni bhagidari jatayi. +",6,2,neutral,negative,negative +"Yet his novel could not attain perfect fusion of content and form. +","फिर भी उनके उपन्यास में विषय वस्तु और रूपविधान की दृष्टि से तालमेल नहीं रह सका। +","phir bhi unke novel men content vastu aur form ki drishti se talmel nahin perfect saka. +",8,1,negative,negative,negative +"We have a fully autonomous vehicle +","हमारे पास पूरी तरह से स्वचालित वाहन है +","hamare pas fully tarah se autonomous vehicle hai +",8,0,neutral,neutral,neutral +"that is why sapta sindhu language (relion language of parsi) has got converted to hafta hindu. +","इसलिये सप्त सिन्धु अवेस्तन भाषा (पारसियों की धर्मभाषा) मे जाकर हफ्त हिन्दु मे परिवर्तित हो गया (अवेस्ता: वेन्दीदाद फ़र्गर्द 1.18)। +","isliye sapta sindhu hindu language relion ki dharmbhasha me jakar hapht hindu me parivartit ho gaya avesta : vendidad fargard 118 . +",8,1,neutral,neutral,neutral +"Thus did a frustrated, enraged, and powerless people overwhelm their authorities and target close-by innocents. +","इस प्रकार शक्तिहीन, कुण्ठित, क्रोधित लोगों ने अपने अधिकारियों पर गुस्सा दिखाया तथा अपने निकट के निर्दोष लोगों को निशाना बनाया. +","is prkar powerless , innocents , krodhit people ne apne authorities par gussa dikhaya tatha apne nikat ke nirdosh people ko nishana banaya +",9,0,negative,negative,negative +"The deceased was doing a private job at the time of the accident. +","मृतक दुर्घटना के समय एक निजी काम कर रहा था. +","mritak accident ke time ek private job kar raha tha +",8,1,neutral,neutral,negative +"plus i, and then you pay your monthly payment. +","इसके अलावा i, और फिर आप अपने मासिक भुगतान का भुगतान। +","iske i i , aur phir aap apne monthly payment ka bhugtan. +",7,1,neutral,neutral,negative +"Those are the ones whom Allah has guided, so from their guidance take an example. Say, ""I ask of you for this message no payment. It is not but a reminder for the worlds."" +","वे (पिछले पैग़म्बर) ऐसे लोग थे, जिन्हें अल्लाह ने मार्ग दिखाया था, तो तुम उन्हीं के मार्ग का अनुसरण करो। कह दो, ""मैं तुमसे उसका कोई प्रतिदान नहीं माँगता। वह तो सम्पूर्ण संसार के लिए बस एक प्रबोध है।"" +","ve pichhle paimbar aese log the, jinhen allah ne marg dikhaya tha, to tum unhin ke marg ka anusaran karo. kah do, main tumse uska koee prtidan nahin mangta. vah to sampoorn snsar ke lie bas ek prbodh hai. +",5,9,neutral,neutral,negative +"Inspired Teachers’ by their own example can instill good moral values in their students. +","प्रेरित शिक्षक’ अपने उदाहरण से अपने विद्यार्थियों में अच्छे नैतिक मूल्यों का समावेश कर सकते हैं। +","inspired teachers apne udaharan se apne students men good moral moolyon ka samavesh kar sakte hain. +",8,4,positive,neutral,positive +"Connection refused through SOCKSv5 proxy. SOCKSv5 +","प्रॉक्सी के माध्यम से कनेक्शन से इनकार कर दिया. +","proxy ke madhyam se connection se refused kar diya +",8,0,negative,neutral,negative +"We've driven from San Francisco to Los Angeles on Highway 1. +","हमने इसे हाईवे 1 पर सैन फ्रांसिस्को से लॉस एंजेलेस तक चलाया है +","hamne ise highway 1 par san francisco se angeles enjeles tak chalaya hai +",8,1,neutral,neutral,neutral +"I know that the Bodhisattva lovingly regards all living creatures to deliver them from misery! +","मै जानता हूं कि बोधिसत्व सभी प्राणियों पर अपनी कृपा भाव बिखेरे हुए हैं! +","i janta hoon ki bodhisattva sabhi living par apni kripa bhav bikhere hue hain ! +",7,1,positive,negative,positive +"Radha today these eyes beheld; A maid she is unparalleled. +","राधा को देखा है इन आँखों ने आज, वह बाला है अप्रतिभ। +","radha ko eyes hai in aankhon ne today , vah bala hai aprtibh. +",6,2,positive,neutral,neutral +"My daughter provided me with a well - written chronicle of events in the first year of her elementary school. +","मुझे मेरी बेटी ने उसके प्राथमिक विद्यालय के पहले वर्ष की घटनाओं का अच्छी तरह से लिखा हुआ वृत्तान्त दिया है। +","well meri daughter ne uske first school ke pahle year ki events ka achchhi tarah se likha huaa chronicle diya hai. +",7,2,positive,neutral,positive +"Cannot authenticate MAPI accounts in offline mode +","ऑफलाइन मोड में MAPI खाता सत्यापित नहीं कर सकता है +","mapi mode men MAPI accounts satyapit nahin kar sakta hai +",5,1,negative,neutral,negative +"An unknown application wants to change the password for the default keyring. You have to choose the password you want to use for it. +","एक अनजान अनुप्रयोग तयशुदा कीरिंग के लिए कूटशब्द बदलना चाहता है. आपको कूटशब्द चुनना है जिसे आप इसके लिये प्रयोग करना चाहते हैं. +","ek unknown application tayshuda keyring ke lie password badalna chahta hai aapko password chunna hai jise aap iske liye pryog karna chahte hain +",8,1,neutral,neutral,positive +"And their words were not but that they said, ""Our Lord, forgive us our sins and the excess [committed] in our affairs and plant firmly our feet and give us victory over the disbelieving people."" +","उन्होंने कुछ नहीं कहा सिवाय इसके कि ""ऐ हमारे रब! तू हमारे गुनाहों को और हमारे अपने मामले में जो ज़्यादती हमसे हो गई हो, उसे क्षमा कर दे और हमारे क़दम जमाए रख, और इनकार करनेवाले लोगों के मुक़ाबले में हमारी सहायता कर।"" +","words kuchh nahin kaha affairs iske ki forgive lord sins ! too lord gunahon ko aur lord apne mamle men jo excess hamse ho gee ho , use kshma kar de aur lord plant disbelieving rakh , aur inkar karnevale logon ke muable men hamari sahayta kar. +",6,1,neutral,negative,positive +"The adjacent to the foot path all around the garden and the central foot path may be utilised for growing different short duration green vegetables like Coriander, spinach, fenugreek, Alternanthera etc. +","बगीचा के चारों ओर तथा आने-जाने के रास्ते का उपयोग विभिन्न अल्पावधि हरी साग-सब्जी जैसे-धनिया, पालक, मेथी, पुदीना आदि उगाने के लिए किया जा सकता है। +","garden ke charon or tatha aane-jane ke path ka upyog different short green sag-sabji jaise-dhniya , spinach , fenugreek , pudina aadi ugane ke lie kiya ja sakta central +",9,0,neutral,neutral,positive +"A staff of GUARD then brought 2 kg. of earthworms which costed Chandranna Rs. 300. +","के स्टाफ के एक सदस्य ने उसके बाद 2 किलोग्राम केंचुए लाकर दिए, जिसकी कीमत चन्द्रण्णा को 300 रुपये देनी पड़ी। +","ke staff ke ek sadasy ne uske bad guard kg earthworms lakar die , jiski kimat chandranna ko 300 rupye deni pari. +",4,1,neutral,neutral,neutral +"Are you sure you want to delete these {0} tasks? +","क्या आप निश्चित हैं कि आप इन {0} कार्यों को मिटाना चाहते हैं? +","kya aap nishchit hain ki aap in 0 tasks ko delete chahte hain +",7,3,neutral,neutral,positive +"The construction of this temple was taken place in 4 century. +","मूल रूप से इस मंदिर का निर्माण चौथी शताब्दी के आस-पास हुआ था। +","mool roop se is temple ka construction place century ke aas-pas huaa tha. +",7,1,neutral,neutral,neutral +"There is in this audience and all around us a large number of elders who are making extremely valuable contributions to our country and to our society. +","इस सभा में तथा हमारे आसपास ऐसे बहुत से वयोवृद्ध हैं जो कि हमारे देश तथा समाज के लिए बहुमूल्य सहयोग प्रदान कर रहे हैं। +","is large number tatha hamare aaspas aese bahut se vayovriddh hain jo ki hamare desh tatha samaj ke lie bahumooly sahyog prdan kar rahe hain. +",8,1,positive,positive,positive +"Failed to move temporary file “%s” to final location “%s”: %s +","“%s” अस्थायी फ़ाइल को अंतिम अवस्थिति “%s” में भेजने में विफल: %s +","file temporary fail ko final location file men bhejne men viphal : file +",7,2,negative,neutral,negative +"Your midwife or doctor should give advice on how you can best look after yourself and your baby while you are pregnant. +","जब आप गर्भावस्था में हैं, आप अपनी और बच्चे की किस प्रकार से देखभाल कर सकती हैं, इस बारे आप की मिडवाईफ़ या आपके डाक्टर को परामर्श देना चाहिये। +","jab aap pregnant men hain , aap apni aur look ki kis prkar se dekhbhal kar sakti hain , is bare aap ki midwife ya aapke doctor ko advice dena chahiye. +",7,1,neutral,neutral,positive +"Negative 3, the opposite is 3. +","नकारात्मक 3, विपरीत 3 है. +","negative 3 , opposite 3 hai +",9,2,neutral,neutral,negative +"of what there is to fear and to hate. +","हमे किससे डरना चाहिये और बचना चाहिये. +","hame kisse darna chahiye aur bachna chahiye +",8,4,negative,negative,negative +"They taste not death therein, save the first death. And He hath saved them from the doom of hell, +","वहाँ पहली दफ़ा की मौत के सिवा उनको मौत की तलख़ी चख़नी ही न पड़ेगी और ख़ुदा उनको दोज़ख़ के अज़ाब से महफूज़ रखेगा +","vahan pahli dafa ki maut ke siva unko maut ki talai chani hi n paregi aur uda unko doom of hell se mahphooz rakhega +",4,6,neutral,neutral,negative +"Traditional Indian family values are observed with great honor. +","पारंपरिक भारतीय पारिवारिक मूल्यों को काफी आदर की दृष्टि से देखा जाता है। +","traditional indian family moolyon ko kaphi aadar ki drishti se dekha jata hai. +",8,0,positive,neutral,positive +"One article from devoting air dispersion modeling and transformation for technical quality and air dispersion modeling of air pollution. +","वायु प्रकीर्णन मॉडलिंग और रुपान्तरण फ़ार्मुले छह से एक लेख समर्पित करने के लिए तकनीकी गुणवत्ता और वायु प्रदूषण के वायु प्रकीर्णन मॉडलिंग +","air dispersion mdling aur transformation farmule chhah se ek article samarpit karne ke lie technical quality aur air pollution ke air dispersion mdling +",5,0,neutral,neutral,positive +"His old friend Amar Singh helped him, when his company ABCL failed and he had to thereby face financial trouble. +","उनके पुराने मित्र अमरसिंह (Amar Singh) ने इनकी कंपनी एबीसीएल के फेल हो जाने के कारण आर्थिक संकट के समय इनकी मदद कीं। +","unke old friend singh Amar Singh ne inki company abcl ke phel ho jane ke karan financial face ke samay inki madad kin. +",8,1,neutral,neutral,negative +"In order to make it a warning for you, and that the ear retentive may preserve it. +","ताकि हम उसे तुम्हारे लिए यादगार बनाएं और उसे याद रखने वाले कान सुनकर याद रखें +","order ham use tumhare lie retentive banaen aur use yad rakhne vale ear sunakar yad rakhen +",7,2,neutral,neutral,negative +"For services in Wales contact: Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. +","वेल्स में सेवाओं के लिए सम्पर्क:-Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. टेलीफ़ोन नम्बर ०२२२ ८२५१११ +","services in wales ke lie sampark:-Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ telifon nambar ०२२२ ८२५१११ +",8,1,neutral,neutral,neutral +"Ice bag is used for the application to reduce local swelling and pain +","स्थानीय सूजन तथा दर्द को कम करने हेतु बर्फ की थैली का प्रयोग किया जाता है। +","reduce local swelling dard ko kam karne hetu barph ki thaili ka pryog kiya jata hai. +",7,1,neutral,neutral,negative +"For a country of this small size, the geographical variations are astonishing. +","एक छोटे से क्षेत्र के लिए नेपाल की भौगोलिक विविधता बहुत उल्लेखनीय है। +","ek small se country ke lie nepal ki geographical vividhta bahut ullekhniy hai. +",7,5,neutral,neutral,neutral +"Surely the pious shall be in bliss, +","निस्संदेह अच्छे लोग नेमतों में होंगे, +","nissndeh achchhe log pious men honge , +",8,2,positive,neutral,positive +"and their hearts are preoccupied with trivial matters. The unjust ones whisper to each other and say, ""Is he (Muhammad) more than a mere mortal like you? How can you follow that which you know is only a magic?"" +","उनके दिल दिलचस्पियों में खोए हुए होते है। उन्होंने चुपके-चुपके कानाफूसी की-अर्थात अत्याचार की नीति अपनानेवालों ने कि ""यह तो बस तुम जैसा ही एक मनुष्य है। फिर क्या तुम देखते-बूझते जादू में फँस जाओगे?"" +","unke hearts dilachaspiyon men trivial hue hote matters unhonne chupke-chupke kanaphoosi ki-arthat unjust ki niti apnanevalon ne ki yah to bas other jaisa hi ek mortal matters phir kya other dekhte-boojhte magic men phns jaoge +",6,4,negative,neutral,positive +"I have complete knowledge of debenture bond. +","डिबेंचर बांड के बारे में मुझे समस्त जानकारी है। +","debenture bond ke bare men mujhe samast complete knowledge +",6,0,neutral,neutral,neutral +"The flow of thought ran through my mind. +","दिमाग से विचार का प्रवाह निकल गया। +","flow of thought ka flow nikal thought +",4,1,neutral,negative,neutral +"A component of a chemical compound which is essential. +","किसी रासायनिक यौगिक का घटक जो आवश्यक होता है. +","kisi chemical compound ka component jo aavashyak hota hai +",8,3,neutral,neutral,neutral +"And it 's good to always do a reality check after every step. +","और यह हमेशा हर कदम के बाद एक वास्तविकता की जांच करने के लिए अच्छा है। +","aur yah hamesha har step ke bad ek reality ki janch karne ke lie good hai. +",9,1,positive,positive,positive +"And send down (to prey) upon them birds in flocks, +","और उन पर झुन्ड की झुन्ड चिड़ियाँ भेज दीं +","aur un par flocks ki flocks birds send din +",5,1,neutral,neutral,neutral +"and We made them a thing of the past, and We made them an example to later people. +","अतः हमने उन्हें अग्रगामी और बादवालों के लिए शिक्षाप्रद उदाहरण बना दिया +","ata hamne unhen thing aur past ke lie shikshaprad udaharan bana diya +",6,1,neutral,neutral,neutral +"Every soul shall have a taste of death: And only on the Day of Judgment shall you be paid your full recompense. Only he who is saved far from the Fire and admitted to the Garden will have attained the object (of Life): For the life of this world is but goods and chattels of deception. +","प्रत्येक जीव मृत्यु का मज़ा चखनेवाला है, और तुम्हें तो क़ियामत के दिन पूरा-पूरा बदला दे दिया जाएगा। अतः जिसे आग (जहन्नम) से हटाकर जन्नत में दाख़िल कर दिया गया, वह सफल रहा। रहा सांसारिक जीवन, तो वह माया-सामग्री के सिवा कुछ भी नहीं +","full object death ka taste chakhnevala hai , aur tumhen to judgment ke day poora-poora badla de diya jaega. ata jise fire jahannam se hatakar garden men dail kar diya gaya , vah saphal raha. raha sansarik soul , to vah maya-samagri ke siva kuchh bhi nahin +",7,2,negative,negative,negative +"The Englishman ' s eyes lit up . +","अंग्रेज की आंखों में चमक आ गई , +","englishman ki eyes men chamak aa gee , +",9,2,neutral,neutral,neutral +"In most of the Committees, public is directly or indirectly associated when memoranda containing suggestions are received. +","अधिकांश समितियों में जनता प्रत्यक्ष अथवा अप्रत्यक्ष ढ़ंग से तब संबद्ध होती है जब उनसे सुझावों संबंधी ज्ञापन प्राप्त होते हैं। +","most committees men public pratyaksh athva apratyaksh ng se tab snbaddh hoti hai jab unse memoranda snbndhi jnjapan prapt hote hain. +",8,1,neutral,neutral,neutral +"But Nanak was for more knowledgeable than his teachers. +","लेकिन नानक का ज्ञान गुरु से कहीं बढ़-चढ़ कर था। +","lekin nanak ka jnjan guru se kahin ba-cha kar tha. +",4,6,neutral,neutral,neutral +"the form f of x is greater than a. +","जे का फ बड़ा है आ से +","je ka ph greater hai aa se +",5,5,neutral,neutral,positive +"Suddenly , one of the hawks made a flashing dive through the sky , attacking the other . +","अकस्मात एक चील ने आसमान में तेजी से डुबकी लगाई और दूसरी चील पर हमला कर दिया । +","akasmat ek hawks ne sky men teji se dive lagaee aur doosri hawks par hamla kar diya . +",8,3,neutral,neutral,negative +"“ Well , then , why do we need all these books ? ” the boy asked . +","“ तो फिर तुम्हें इन ढेर सारी किताबों की क्या जरूरत है ? ” +","to phir tumhen in books sari kitabon ki kya jaroorat hai +",7,2,neutral,neutral,positive +"Folder '{0}' doesn 't contain any duplicate message. +","फोल्डर '{0}' में कोई दोहरा संदेश नहीं है. +","folder doesn men koee duplicate message nahin hai +",8,0,neutral,negative,neutral +"He was never to look back again. +","उन्होंने फिर कभी मुड़कर नहीं देखा. +","unhonne phir kabhi murakar nahin dekha +",5,8,negative,negative,neutral +"you have to learn to do that for your digital self. +","हमें यही सब अपने डिजिटल जीवन में भी करना सीखना पड़ता है. +","hamen yahi sab apne digital jivan men bhi karna sikhna parta hai +",9,0,neutral,neutral,neutral +"Shimla can be reached by rail, road or air. +","शिमला, रेल, सड़क और वायु मार्ग से पहुंचा जा सकता है। +","shimla, rail, road or air marg se reached ja sakta hai. +",8,1,neutral,neutral,positive +"The phase of cell cycle in which the size of the cell is increase and copy of a DNA is made. +","कोशिका चक्र में चरण जिसमें कोशिका के आकार में वद्धि होती है तथा डीएनए की प्रतिकृति निर्मित होती है +","cell cycle men phase jismen cell ke size men vaddhi hoti hai tatha dna ki prtikriti nirmit hoti hai +",8,0,neutral,neutral,positive +"The international community must work together now, with wisdom, to create tolerance and understanding for addressing the complex issues confronting mankind. +","अंतरराष्ट्रीय समुदाय को अब मानव के सम्मुख जटिल मुद्दों के समाधान हेतु सहिष्णुता और सद्भावना पैदा करने के लिए मिलकर बुद्धिमतापूर्वक मिलकर कार्य करना चाहिए। +","international community ko ab manav ke sammukh complex issues ke samadhan hetu tolerance aur sadbhavna paida karne ke lie mankind wisdom mankind kary karna chahie. +",7,5,neutral,neutral,positive +"Notification area applet for managing your network devices and connections. +","आपके संजाल युक्तियां और कनेक्शन को प्रबंधित करने के लिए अधिसूचना क्षेत्र एप्लेट. +","aapke snjal devices and connections ko prbndhit karne ke lie notification area applet +",8,0,neutral,neutral,neutral +"and I 'll send you back your poster. Join by groups +","और मैं आपके पोस्टर आपको वापस भेज दूंगा. इकट्ठे आइये +","aur main aapke poster join vapas bhej groups ikatthe aaiye +",3,1,neutral,neutral,positive +"that the world, because of people like Tony Blair and Bono +","कि ये संसार, टोनी ब्लेयर और बोनो और +","ki ye world , tony blair aur bono aur +",8,1,negative,neutral,positive +"You can do the number line if you need to. +","आप इसे नंबर लाइन कर सकते हैं यदि आपको ज़रूरत पड़े तो. +","aap ise number line kar sakte hain yadi aapko zaroorat pare to +",9,2,neutral,neutral,positive +"This is necessary if we have to reach the goal of creating a hunger - free society by doubling our food production in the next ten years. +","यह जरूरी है क्योंकि अगले 10 वर्षों में समाज से भुखमरी दूर करने के लिए खाद्य-उत्पादन दुगुना करना होगा। +","yah necessary hai years next ten varshon men society se hunger door karne ke lie khady-utpadan production karna hoga. +",8,0,positive,neutral,positive +"This message is encrypted, with a strong encryption algorithm. It would be very difficult for an outsider to view the content of this message in a practical amount of time. +","यह संदेश गुप्त है, एक मजबूत गोपन एलागरिथम के साथ. किसी बाहरी के लिए प्रायोगिक समय सीमा में संदेश की सामग्री देखना बहुत कठिन होगा. +","yah message content hai , ek strong encryption algorithm ke sath kisi bahri ke lie prayogik time sima men message ki samagri dekhna bahut difficult hoga +",6,4,neutral,negative,positive +"The following clusters have been chosen for intervention: +","इस मदद हेतु निम्नांकित समूहों को चुना गया है +","is madad hetu nimnankit samoohon ko chuna gaya hai +",8,2,neutral,neutral,neutral +"The first signs of ill-health are the cessation of rumination , and drop in milk yield . +","बीमारी का पहला लक्षण तो यह है कि जानवर जुगाली करना बंद कर देता है.दूध भी वह कम मात्रा में देने लगता है . +","signs ka first lakshan to yah hai ki milk cessation karna bnd kar deta haidoodh bhi vah kam drop men dene lagta hai +",4,1,negative,neutral,negative +"115AB. (1) Where the total income of an assessee, being an overseas financial organisation (hereinafter referred to as Offshore Fund) includes— +","115कख. (1) जहां किसी निर्धारिती की, जो विदेशी वित्तीय संगठन है (जिसे इसमें इसके पश्चात् ''अपतट निधि'' कहा गया है) कुल आय में,– +","115kakh 1 jahan kisi assessee ki , jo overseas financial organisation hai jise ismen iske hereinafter apatat fund kaha gaya hai kul total men , +",7,2,neutral,neutral,neutral +"In a condolence message, the President has said, ""It was with profound sorrow that I learnt of the passing away ofShri Justice V.R. Krishna Iyer. +","राष्ट्रपति ने एक शोक संदेश में कहा है , "" मुझे न्यायमूर्तिश्रीवी आर कृष्ण अय्यर के निधन के बारे में जानकर अत्यंत दुःख हुआ है। +","rashtrapti ne ek condolence message men kaha hai , mujhe nyaymoortishrivi aar krishn ayyar ke nidhan ke bare men janakar atynt duakh huaa hai. +",9,0,neutral,neutral,neutral +"While primay matter and the Universals are eternal, it is the individuals which are produced and are perishable. +","जहां मूल द्रव्य और सामान्य शाश्वत होते है, वही व्यक्तियो की उत्पति होती है और नश्वर होते है। +","jahan mool dravy aur samany shashvat hote hai, vahi vyaktiyo ki utpti hoti hai aur nashvar hote hai. +",9,2,neutral,neutral,neutral +"A market study shows that a male turkey sold at 24 weeks of age weighing 10 to 20 kg with expenditure of Rs. 300 to 450 will give a profit of Rs. 500 to 600. +","एक अध्ययन के अनुसार 24 सप्ताह की आयु और 10-20 किलो ग्राम वजन वाले नर मादा को यदि 300 से 450 रुपये में बेचा जाता है तो इसमें करीब 500 से 600 रुपये का लाभ होता है। +","ek adhyayan ke anusar 24 weeks of age aur 10-20 kilo gram vajan vale nar mada ko yadi 300 se 450 rupye men becha jata hai to ismen karib 500 se 600 rupye ka labh hota hai. +",9,0,neutral,neutral,positive +"Without having tried it and found out all its qualities, how would they prescribe it for rulers, kings and men, low and high? +","बिना परीक्षण किए वे अपने राजा, दरबारियों, सामंतों तथा प्रजा को इसके उपयोग की स्वीकृति कैसे दे सकते हैं। +","bina parikshan kie ve apne rulers , darbariyon , samnton tatha men ko iske low ki svikriti kaise high sakte hain. +",3,4,neutral,neutral,negative +"By the time father and son reached the foot of the Himalayas it was April . +","पिता और पुत्र जब हिमालय की घाटी में पहुंचे तब अप्रैल का महीन शुरू हो चुका था . +","father aur son jab himalayas ki ghati men time tab aprail ka foot shuroo ho chuka tha +",7,2,neutral,neutral,positive +"but whoever seeks beyond that—it is they who are the transgressors) +","किन्तु जिस किसी ने इसके अतिरिक्त कुछ और चाहा तो ऐसे ही लोग सीमा का उल्लंघन करनेवाले है।- +","kintu jis kisi ne iske atirikt kuchh aur chaha to aese hi log sima ka ullnghan karnevale transgressors +",7,1,neutral,neutral,neutral +"The body of humans are prone to destruction but destruction never occurs to the soul. +","मनुष्य का शरीर विनाशशील है किंतु आत्मा का कभी नाश नहीं होता। +","humans ka body prone hai kintu soul ka kabhi destruction nahin hota. +",8,2,negative,negative,negative +"Exactly how LSD acts on the mind is not really known at present. +","एल. एस. डी. मस्तिष्क पर किस प्रकार असर डालती है, यह वर्तमान में ठीक-ठीक पता नहीं है। +","el es di mastishk par kis prkar asar dalti hai, yah present men thik-thik pata nahin hai. +",9,0,neutral,negative,neutral +"But, so this is the first quadrant intersection. +","लेकिन, तो यह पहली वृत्त का चतुर्थ भाग मिलन बिंदु है। +","lekin , to yah first quadrant ka intersection bhag milan bindu hai. +",8,2,neutral,neutral,neutral +"Whether menu items should have accelerators +","क्या मेन्यू मद में त्वरक होने चाहिए +","kya menu items men accelerators hone chahie +",9,2,neutral,neutral,neutral +"Sayings on Hindi by various great personalities +","हिन्दी के बारे में विभिन्न महापुरुषों के वचन +","hindi ke bare men various great ke sayings +",7,2,neutral,neutral,positive +"And the plants and the trees prostrate (for Him). +","और बूटियाँ बेलें, और दरख्त (उसी को) सजदा करते हैं +","aur plants belen, aur trees prostrate ko sajda karte hain +",7,4,neutral,neutral,neutral +"Following problems were found with the data you entered: +","डाटा जो आपने भरा है उसके कारण निम्न समस्याएँ मिलींः +","data jo aapne bhara hai uske karan nimn problems milina +",8,1,negative,neutral,negative +"I told him that the Congress bow was a hefty bow and had many strings to it and many more would be added to it. +","मैंने उसे बतायाZ कि कांग्रेस वैसे ही एक ताकतवर संस्था है, इसकी कई शाखाएं-प्रशाखाएं हैं तथा इसमें कुछ और भी जुड़ेंगी. +","mainne use batayaZ ki congress vaise hi ek takatavar snstha hai, iski kee shakhaen-prshakhaen hain tatha ismen kuchh aur bhi added +",7,3,neutral,negative,neutral +"The complement of any maxterm is a minterm. +","किसी भी योगपद का पूरक एक गुणद होता है। +","kisi bhi maxterm ka complement ek gunad hota hai. +",9,2,neutral,neutral,neutral +"How soon can you have this dress ready? +","इस ड्रेस को कितनी जल्दी तैयार कर सकते हो? +","is dress ko kitni jaldi ready kar sakte ho +",10,0,neutral,neutral,positive +"Panini not only in India, but the world 's biggest linguist, who did extensive studies and vivid descriptive language. +","पाणिनि न केवल भारत के, अपितु संसार के सबसे बड़े भाषाविज्ञानी हैं, जिन्होंने वर्णनात्मक रूप में भाषा का विशद एवं व्यापक अध्ययन किया। +","panini n keval bharat ke, apitu snsar ke sabse biggest linguist hain, jinhonne varnnatmak roop men bhasha ka vishad evn vyapak adhyayan kiya. +",8,2,positive,neutral,neutral +"[it will be] lowering and exalting. +","कि किसी को पस्त करेगी किसी को बुलन्द +","ki kisi ko exalting karegi kisi ko buland +",8,2,neutral,neutral,negative +"Vrindavanlal Verma wrote. another play Mahoba Sangram Battle of Mahoba in which he glorified armed struggle for independence. +","एक और नाटक 'महोबा संग्राम' भी वर्मा जी ने लिखा, जिसमें देश की स्वतंत्रता के लिए सशस्त्र संघर्ष की महत्ता दिखायी थी। +","ek aur play mhoba sangram bhi vrindavanlal mahoba ne likha , jismen desh ki independence ke lie sashastr struggle ki mahatta dikhayi thi. +",6,5,neutral,neutral,positive +"And here you'll see Daniel throw this hoop into the air, +","और यहाँ आप देखेंगे डानिएल हूप को ऊपर उड़ाते हुए, +","aur yahan aap dekhenge daniel hoop ko oopar urate hue , +",8,1,neutral,neutral,neutral +"And the Word will be fulfilled against them, because of their wrong - doing, and they will be unable to speak (in plea). +","इन पर (अज़ाब का) वायदा पूरा हो गया फिर ये लोग कुछ बोल भी तो न सकेंगें +","in par word ka vayda poora ho gaya phir ye log kuchh speak bhi to n wrong +",7,2,negative,neutral,negative +"Are you sure you want to delete these {0} tasks? +","क्या आप निश्चित हैं कि आप इन {0} कार्यों को मिटाना चाहते हैं? +","kya aap sure hain ki aap in 0 tasks ko mitana chahte hain +",9,2,neutral,neutral,positive +"Average feed consumption upto marketable age +","बेचने योग्य होने की आयु तक पहुँचने तक भोजन की औसत खपत +","upto yogy hone ki age tak pahunchne tak feed ki average consumption +",6,1,neutral,neutral,neutral +"A typical exploitation of the horizontal instability is by tampering with regions of higher albedo like the polar ice caps. +","क्षैतिज अस्थिरता के समुपयोजन का एक प्रारुपिक उदाहरण ध्रवीय बर्फ-टोपी जैसे उच्च एल्बडो के क्षेत्र में हस्तक्षेप है। +","horizontal instability ke exploitation ka ek typical udaharan polar barph-topi jaise higher elbdo ke regions men hastakshep hai. +",9,1,negative,neutral,positive +"Then We raised up after them another generation. +","फिर हमने उनके बाद एक और क़ौम को (समूद) को पैदा किया +","phir hamne unke bad ek aur aum ko generation ko paida kiya +",8,0,neutral,neutral,neutral +"This is essentially necessary in the evolution of laws and norms regarding the resources of the sea and of new technology involving outer space. +","यह बात विशेषतः समुद्र सम्बंधी तथा बाह्य अंतरिक्ष विषयक टेक्नोलाजी के विकास से सम्बद्ध कानूनों और मानदंडों के बारे में लागू होनी चाहिए। +","yah new visheshta sea sambndhi tatha outer space vishayak technology ke evolution se sambaddh laws aur norms ke bare men lagoo resources chahie. +",6,2,neutral,neutral,neutral +"camouflage worn by bullies who are dangerously armed +","बदमाश छलावरण पहने हैं जो खतरनाक हथियारों से लैस हैं +","badmash camouflage pahne hain jo khatarnak hathiyaron se lais hain +",9,0,negative,neutral,negative +"unusual trapping or confinement of a part in the body +","यारीर में किसी अंग का असामान्य रूप से फंसना या सीमित हो जाना +","body men kisi part ka unusual roop se trapping ya simit ho jana +",8,1,neutral,neutral,neutral +"There were great rulers holding sway over vast areas as well as minor chieftains who paid tributes to them and ruled over limited areas. +","उन दिनो अगर एक और बडे बडे भूभागो पर राज करने वाले और उनके अधीन सांमती करने वाले ऐसे छोटे छोटे सांमत सरदार भी थे जो सीमित भूभागो का शासन किया करते थे। +","un dino agar ek aur bade bade bhoobhago par raj karne vale aur unke adhin sanmti karne vale aese chhote minor chieftains sardar bhi the jo simit bhoobhago ka shasan kiya karte the. +",7,6,neutral,neutral,positive +"Democracy implies the existence of representative institutions, the expression of the will of the people as to who their representatives would be and the participation of the people in national tasks. +","लोकतंत्र में यह अंतर्निहत है कि प्रतिनिधित्वपूर्ण संस्थाएं काम करें और लोग स्वतंत्र रूप से राय दे सकें कि उनमें प्रतिनिधि कौन होंगे तथा राष्ट्रीय क्रियाकलापों में जनता की भागीदारी रहे। +","democracy men yah antarnihat hai ki prtinidhitvpoorn institutions tasks karen aur people svtntr participation se ray expression saken ki existence representative kaun honge tatha national kriyaklapon men janta ki bhagidari rahe. +",7,1,neutral,neutral,neutral +"When they entered unto him, and said: Salaman (peace)! [Ibrahim (Abraham)] said: ""Indeed! We are afraid of you."" +","कि जब ये इबराहीम के पास आए तो (पहले) उन्होंने सलाम किया इबराहीम ने (जवाब सलाम के बाद) कहा हमको तो तुम से डर मालूम होता है +","ki jab ye peace ke pas aae to pahle unhonne salam kiya peace ne afraid salam ke bad kaha hamko to tum se salaman maloom hota hai +",4,4,neutral,negative,positive +"The first Sthai inhabitants took its from about 1000 years back | +","प्रथम स्थाई बस्तियों ने ९००० वर्ष पूर्व स्वरुप लिया। +","pratham sthaee bastiyon ne ९००० years back svrup liya. +",5,7,neutral,neutral,neutral +"But this exclusive consummation is not the sole or inevitable result of the Path of Knowledge. +","किन्तु यह एकाग्डी अत्युच्च अवस्था ही ज्ञान के मार्ग का अकेला या अनिवार्य परिणाम नहीं। +","kintu yah ekagdi atyuchch avastha hi path of knowledge ka sole or inevitable parinam nahin. +",9,2,neutral,negative,positive +"The First Appellate Authority can give either a ""spoken"" order or a written order +","प्रथम अपीलीय अधिकारी मौखिक या लिखित किसी भी रूप में आदेश दे सकते हैं। +","first appellate authority spoken ya likhit kisi bhi roop men order de sakte hain. +",8,3,neutral,neutral,positive +"Until the Day of the time well - known. "" +","उस दिन तक के लिए जिसका समय ज्ञात एवं नियत है। "" +","us din tak ke lie jiska samay jnjat evn niyat day +",9,2,neutral,neutral,positive +"The place where Bapu lost his life cannot but continue to be a spot attracting visits from devotees, tourists and others. +","जिस स्थान में बापू की हत्या हुई, वह उनके भक्तों, यात्रियों तथा अन्य लोगों को सदा ही आकर्षित करता रहेगा। +","jis sthan men bapoo ki hatya huee, vah unke bhakton, yatriyon tatha any logon ko sada hi aakarshit karta rahega. +",5,8,neutral,neutral,positive +"Shahjahan arrange to built it in memory of his wife Mumtaz Mahal. +","यह मुगल बादशाह शाहजहां ने अपनी बेगम मुमताज महल की याद में बनवाया था। +","yah mugal badshah shahajhan ne apni begam mumtaj mahal ki yad men banvaya tha. +",9,1,neutral,neutral,neutral +"This is true even if the larval stage has been artificially fed on capsularis diet. +","यह उस स्थिति में भी सत्य है जब लार्वा कैपसुलैरिस आहार ग्रहण करे। +","yah us stage men bhi true hai jab larval capsularis diet grahan kare. +",9,2,neutral,neutral,positive +"Info to be shown for this item +","इस मद के लिए दिखाए जाने के लिए जानकारी +","is mad ke lie shown jane ke lie info +",6,3,neutral,neutral,neutral +"So the fence would have been broken if there really had been a leopard. +","अतः यदि चीता वहां सचमुच में गया होता तो बाड़ी कहीं से टूटी मिलती। +","ata yadi chita vahan sachmuch men gaya hota to bari kahin se tooti milti. +",7,5,negative,neutral,negative +"Then we can sit down and discuss all aspects of the matter. +","उस हालत में हम मिल बैठकर सभी पक्षों पर विचार कर सकते हैं। +","us halat men ham mil sit sabhi pakshon par vichar kar sakte hain. +",5,5,neutral,neutral,neutral +"There are four to five generations in a year and generally the pest overwinters as nymph which develops into adult in early spring. +","वर्ष में चार-पांच पीढ़ियां पूरी हो जाती हैं और यह पीड़क निम्फ के रूप में सर्दियां पार करके बसंत के आरंभ में प्रौढ़ बन जाता है। +","year men char-panch generations poori ho jati hain aur yah pirak nimph ke roop men sardiyan par karke spring ke aarnbh men adult nymph jata hai. +",8,1,neutral,neutral,neutral +"(9) The person from whose custody any books of account or other documents are seized under sub-section (1) or sub-section (1A) may make copies thereof, or take extracts therefrom, in the presence of the authorised officer or any other person empowered by him in this behalf, at such place and time as the authorised officer may appoint in this behalf. +","(9) वह व्यक्ति, जिसकी अभिरक्षा से कोर्इ लेखा बहियां या अन्य दस्तावेज उपधारा (1) या उपधारा (1क) के अधीन अभिगृहीत किए जाते हैं, उनकी नकलें या उनसे उद्धरण प्राधिकृत अधिकारी या उस निमित्त उसके द्वारा सशक्त किसी अन्य व्यक्ति की उपस्थिति में ऐसे स्थान और समय पर जो प्राधिकृत अधिकारी इस निमित्त नियत करें ले सकेगा। +","9 vah vyakti, jiski abhiraksha se kori lekha bahiyan ya any dastavej updhara 1 ya updhara 1k ke adhin abhigrihit kie jate hain, unki naklen ya unse uddharan authorised officer ya us nimitt uske dvara sashakt kisi any vyakti ki upasthiti men aese sthan aur samay par jo authorised officer is nimitt niyat karen le sakega. +",4,5,neutral,neutral,neutral +"Officials from the Ministry of External Affairs and the Ministry of Defence participated. +","इसमें भारतीय रक्षा मंत्रालय के अधिकारियों ने भाग लिया। +","ismen bhartiy defence ministry ke officials ne bhag liya. +",10,0,neutral,neutral,positive +"Water is major constituents of all living matters. +","पानी सभी जीवित पदार्थों का मुख्य घटक है. +","water sabhi living padarthon ka major ghatak hai +",8,2,neutral,neutral,neutral +"For more than four decades, Gurbakhsh Singh prevailed over Punjabi journalism. +","चार दशकों से अधिक, गुरबख्श सिंह पंजाबी पत्रकारिता पर आच्छादित रहे। +","char dashkon se adhik, gurabakhsh sinh punjabi journalism par aachchhadit rahe. +",10,0,neutral,neutral,neutral +"But then how to act compassionately if you don't have compassion? +","पर आप सहानुभूति पूर्वक कार्य कैसे करोगे अगर आप में करुणा न हो +","par aap compassion poorvak kary kaise karoge agar aap men karuna n ho +",8,4,negative,neutral,positive +"And two pairs of light, strong and comfortable shoes for walking. +","और ये देखिए जूते दो जोड़ी, हल्के और मजबूत, चलने मे आराम देह। +","aur ye dekhie joote do pairs, light aur strong, walking me aaram deh. +",9,1,positive,neutral,positive +"I wonder if I could rightly call it a meeting. +","पर इसको सभा कहा भी जाए या नहीं? +","par i meeting kaha bhi jae ya nahin +",7,4,neutral,neutral,neutral +"Ratnambar while defining sin at the end in Chitralekha, says' There is nothing that is wrong in the world, this is only another novel in the difference of attitudes in people. +","चित्रलेखा के अन्त में पाप की व्याख्या करते हुए रत्नाम्बर कहता हैः संसार में पाप कुछ भी नहीं है, वह केवल मनुष्य के दृष्टिकोण की विषमता का दूसरा नाम है। +","chitrlekha ke ant men pap ki vyakhya karte hue ratnambar kahta haia snsar men pap kuchh bhi nahin hai, vah keval manushy ke drishtikon ki vishamta ka doosra nam hai. +",8,2,neutral,negative,positive +"It is free, and borrowing books is free. +","यह सेवा निःशुल्क (मुफ़्त) है और (पढ़ कर लौटा दी जाने वाली) किताबें मुफ़्त में मिलेंगी. +","yah seva free muft hai aur books kar lauta di jane vali kitaben muft men milengi +",6,1,positive,positive,positive +"The peasant was shaken up and he began to emerge from his quiescent shell . +","किसान झकझोर उठा और वह अपनी खामोश झोपडियों में से निकल कर बाहर झांकने लगा . +","kisan jhakjhor utha aur vah apni began to emerge se nikal kar bahar jhankne laga +",5,2,neutral,neutral,negative +"Nobody cared why my intellect was rusting. +","किसीको यह परवाह नहीं थी कि मेरी बुद्धि पर क्यों जंग लगाया जा रहा है। +","kisiko yah cared nahin thi ki meri buddhi par kyon jng lagaya ja raha hai. +",8,0,negative,neutral,positive +"God has sealed their hearts and hearing and their vision is veiled; a great punishment awaits them. +","अल्लाह ने उनके दिलों पर और कानों पर मुहर लगा दी है और उनकी आँखों पर परदा पड़ा है, और उनके लिए बड़ी यातना है +","allah ne unke dilon par aur sealed their hearts laga di hai aur unki aankhon par parda para hai, aur unke lie great punishment hai +",7,3,negative,negative,positive +"XML parsing error: '%s' at line %d +","एक्सएम एल पदभंजन त्रुटि: '%s' %d पंक्ति पर +","parsing el padbhnjan error: s d line par +",5,2,negative,neutral,negative +"VIP s shild issue passes for gallery. +","विशिष्ट दर्शक गॅलरी के पास जारी करें। +","vishisht darshak glri ke s issue karen. +",7,0,neutral,negative,positive +"We have told you the stories of the prophets to make your heart firm and in these accounts truth has come to you, with an exhortation and a reminder for the believers. +","और (ऐ रसूल) पैग़म्बरों के हालत में से हम उन तमाम क़िस्सों को तुम से बयान किए देते हैं जिनसे हम तुम्हारे दिल को मज़बूत कर देगें और उन्हीं क़िस्सों में तुम्हारे पास हक़ (क़ुरान) और मोमिनीन के लिए नसीहत और याद दहानी भी आ गई +","aur ae heart firm ke halat men se ham un tamam isson ko tum se bayan kie dete hain jinse ham tumhare dil ko mazboot kar degen aur unhin isson men tumhare accounts truth uran aur mominin ke lie nasihat aur yad dahani bhi aa gee +",5,5,neutral,neutral,positive +"Hell shall be their bed, and over them will be coverings of fire, thus shall We reward the wrongdoers. +","और उनके ऊपर से (आग ही का) ओढ़ना भी और हम ज़ालिमों को ऐसी ही सज़ा देते हैं और जिन लोगों ने ईमान कुबुल किया +","aur unke wrongdoers se hell hi ka bed bhi aur ham zalimon ko aesi hi saza dete hain aur jin logon ne eeman kubul kiya +",4,5,negative,negative,negative +"Vast majority suffered, died or lived disabled. +","अधिकांश लोग तो पीड़ित रहे, मर गए अथवा विकलीकृत disabled हो गए। +","vast log to pirit rahe , mar ge athva viklikrit disabled ho ge. +",7,1,negative,neutral,negative +"I was born in Mexico, I grew up in Mexico +","मैं मेक्सिको में पैदा हुआ, मेक्सिको में बड़ा हुआ +","main born men paida huaa, born men bara huaa +",5,3,neutral,negative,neutral +"In order to make it a warning for you, and that the ear retentive may preserve it. +","ताकि हम उसे तुम्हारे लिए यादगार बनाएं और उसे याद रखने वाले कान सुनकर याद रखें +","order ham use order to make banaen aur use yad rakhne vale kan sunakar yad rakhen +",5,3,neutral,neutral,negative +"When I used dynamic fonts on a colored background, the color around the text is different from the rest of the background, only in a Netscape browser. +","जब मैंने एक रंगीन पृष्ठभूमि में डायनामिक फ़ॉन्ट का उपयोग किया, टेक्स्ट के आसपास का रंग पृष्ठभूमि के बाकी हिस्सों के रंग से अलग था जो केवल एक नेटस्केप ब्राउज़र में होता है. +","jab mainne ek rngin prishthbhoomi men dynamic fonts ka upyog kiya, tekst ke aaspas ka rng prishthbhoomi ke baki hisson ke rng se alag tha jo keval ek netaskep brauzar men hota hai +",6,6,neutral,neutral,positive +"Notify when remote emails are queued +","जब रिमोट ई-मेल क़तारबद्ध हों तो सूचित करें +","jab remote ee-mel tarabaddh emails to soochit karen +",5,3,neutral,neutral,neutral +"The birds are usually found in pairs in open country near cultivation, commonly seen perched on a mound or some other eminence, or flying at great speed at hedge - top height in search of small birds, rats, mice, lizards and large insects which comprise their prey. +","ये ज्यादातार जोड़े में खेतों के आसपास खुले मैदानों मे, किसी टीले पर या किसी दूर से दिखते स्थान पर बैठे पाए जाते हैं, अथवा छोटी चिड़ियों, चूहों, छिपकलियों और बड़े कीड़ों की खोज में बाड़ों की ऊंचाई पर तेजी से उड़ते भी पाए जा सकते हैं। +","ye jyadatar pairs men cultivation ke aaspas open maidanon me , kisi mound par ya kisi door se dikhte great par baithe hedge jate hain , athva chhoti birds , rats , lizards aur bare country ki search men baron ki height par speed se urte bhi hedge ja sakte hain. +",7,0,neutral,neutral,positive +"As a leading agency in all international initiatives UNESCO Education for All goals is to get the force and unity. +","एक अग्रणी अभिकरण के रूप में यूनेस्को सभी अन्तरराष्ट्रीय पहल को सबके लिए शिक्षा के लक्ष्य को पाने की ओर प्रवृत एवं एकजुट कर रही है। +","ek agrni agency ke roop men unesco sabhi antarrashtriy initiatives ko force lie education ke goals ko pane ki or prvrit evn unity kar rahi hai. +",6,0,positive,positive,neutral +"He had atopic eczema as a child. +","उसे एक शिशु की तरह चोटी का पामा था. +","use ek child ki tarah choti ka pama tha +",9,1,negative,negative,neutral +"And he said: You have only taken for yourselves idols besides Allah by way of friendship between you in this world 's life, then on the resurrection day some of you shall deny others, and some of you shall curse others, and your abode is the fire, and you shall not have any helpers. +","और इबराहीम ने (अपनी क़ौम से) कहा कि तुम लोगों ने ख़ुदा को छोड़कर बुतो को सिर्फ दुनिया की ज़िन्दगी में बाहम मोहब्त करने की वजह से (ख़ुदा) बना रखा है फिर क़यामत के दिन तुम में से एक का एक इनकार करेगा और एक दूसरे पर लानत करेगा और (आख़िर) तुम लोगों का ठिकाना जहन्नुम है और (उस वक्त तुम्हारा कोई भी मददगार न होगा) +","aur ibrahim ne apni aum se kaha ki idols way ne yourselves ko fire friendship ko sirph world ki zindgi men baham mohabt karne ki vajah se yourselves bana rakha hai phir yamat ke day idols men se ek ka ek inkar resurrection aur ek doosre par lanat resurrection aur aair idols way ka abode jahannum hai aur us vakt tumhara koee bhi helpers n hoga +",4,0,negative,neutral,negative +"Dinkar looked at them suspiciously. +","दिनकर उनकी तरफ शंका से देखा। +","dinakar unki taraph shnka se looked +",7,2,neutral,neutral,negative +"Unable to open lock file. +","लाक फ़ाइल खोलने में अक्षम. +","open lock file men unable +",5,3,negative,neutral,neutral +"The period of compulsory isolation to control the spread of infectious disease. +","संक्रामक रोग के प्रसार को नियंत्रित करने के लिए अनिवार्य अलगाव की अवधि. +","infectious disease ke spread ko niyntrit karne ke lie compulsory isolation ki period +",8,2,neutral,neutral,negative +"We should view the going of such a person not so much with sorrow, but with gratitude that we had the privilege of knowing her, that we had the privilege of her affection, that we had the privilege of being within her circle of radiance. +","ऐसी विभूति के प्रयाण पर हमें दुखी न होकर कृतज्ञता महसूस करनी चाहिए कि हमने उन्हें जाना, उनका प्यार पाया, उनके व्यक्तित्व के प्रभामंडल में रहने का गौरव प्राप्त किया। +","aesi vibhooti ke pryan par much sorrow n hokar gratitude affection person chahie ki hamne unhen jana , unka pyar paya , unke vyaktitv ke prbhamndal men rahne ka privilege prapt kiya. +",7,2,positive,positive,positive +"GNOME Theme% s correctly installed Gnome +","थीम% s ठीक से अधिष्ठापित है +","thim s correctly se installed hai +",4,5,neutral,negative,neutral +"But they also built a playhouse in 1753 which closed down when the Fort and Calcutta were lost in battle to Nawab Siraj - ud - Dowla in 1756. +","किंतु उन्होंने सन् 1753 में एक नाटकघर भी बनवाया, जो कि सन् 1756 के युद्ध में किले और कलकत्ता के नवाब सिराजुद्दौला के हाथ में चले जाने पर बंद हो गया। +","kintu unhonne san 1753 men ek natakaghar bhi banvaya, jo ki san 1756 ke yuddh men kile aur kalakatta ke navab sirajuddaula ke hath men chale jane par bnd ho gaya. +",5,7,neutral,neutral,negative +"9. For general advice please contact our general enquiry service 9 +","आम सलाह के लिए कृपया हमारी आम पूछताछ सेवा पर संपर्क करें। +","general advice ke lie please hamari general enquiry service par snpark karen. +",10,0,neutral,neutral,positive +"So it tasted the evil result of its conduct, and the end of its affair was perdition. +","तो उन्होने अपने काम की सज़ा का मज़ा चख लिया और उनके काम का अन्जाम घाटा ही था +","to unhone apne affair ki evil ka maza chakh liya aur unke affair ka anjam ghata hi tha +",6,5,negative,negative,negative +"We then put him ashore on a plain, and he was sick. +","अन्ततः हमने उसे इस दशा में कि वह निढ़ाल था, साफ़ मैदान में डाल दिया। +","antta hamne use is dasha men ki vah nial tha, saf maidan men dal diya. +",8,1,negative,neutral,negative +"I take this opportunity to convey my best wishes for your Excellency’s well being and for the continued progress and prosperity of the friendly people of Saint Vincent and the Grenadines. +","मैं इस अवसर पर महामहिम की कुशलता तथा सेंट विंसेंट एवं ग्रेनडीन की मित्र जनता की निरंतर प्रगति और समृद्धि के लिए अपनी मेरी शुभकामनाएं देता हूं। +","i is opportunity par excellency ki kushalta tatha saint vincent evn friendly ki mitr people ki continued progress aur prosperity ke lie apni best wishes deta hoon. +",7,4,positive,positive,positive +"The verses of Hindu poets are also marked by this dawning romanticism. +","हिंदू कवियों को कवितांए भी स्व्च्छंतावाद के इस उदय को प्रकट करती हैं. +","hindu poets ko verses bhi romanticism ke is uday ko prakat karti hain +",10,0,neutral,neutral,positive +"An error occurred while trying to set up sync. +","सिंक सेट अप करने का प्रयास करते समय एक त्रुटि उत्पन्न हुई. +","sync set ap karne ka pryas karte samay ek error occurred huee +",8,0,negative,negative,negative +"Till, when the Messengers despaired, deeming they were counted liars, Our help came to them and whosoever We willed was delivered. Our might will never be turned back from the people of the sinners. +","पहले के पैग़म्बरो ने तबलीग़े रिसालत यहाँ वक कि जब (क़ौम के ईमान लाने से) पैग़म्बर मायूस हो गए और उन लोगों ने समझ लिया कि वह झुठलाए गए तो उनके पास हमारी (ख़ास) मदद आ पहुँची तो जिसे हमने चाहा नजात दी और हमारा अज़ाब गुनेहगार लोगों के सर से तो टाला नहीं जाता +","pahle ke paimbro ne tablie risalat yahan vak ki jab aum ke eeman lane se paimbar mayoos ho ge aur un logon ne samajh liya ki vah jhuthlae ge to unke pas hamari as madad aa pahunchi to jise hamne chaha najat di aur hamara azab gunehgar logon ke sar se to tala nahin jata +",3,5,neutral,neutral,negative +"She bent over Mohan and hiccupped. +","वह मोहन पर झुक गयी और हिलक उठी। +","vah mohan par jhuk gayi aur hilak uthi. +",10,0,neutral,neutral,neutral +"The result was discord and loss of peace in the family. +","इससे घर में कलह मच गया। +","result ghar men discord family gaya. +",3,5,negative,negative,negative +"Only Lolita acted as a bridge between these two households. +","इन दोनों के बीच अकेली ललिता ही सेतु-सी बनी रह गई। +","in donon ke bich akeli acted hi setu-si bani rah gee. +",5,7,neutral,neutral,neutral +"Before an action or occurrence took place. +","एक क्रिया या घटना होने के पहले +","ek action ya occurrence hone ke pahle +",10,0,neutral,neutral,neutral +"Human body consists of head, neck, torso, arms and legs. +","मनुष्य शरीर में शीश, गर्दन, धड़, बाजु तथा टांगें होती हैं +","human body consists shish, neck, torso, baju tatha tangen hoti hain +",7,2,neutral,neutral,neutral +"Display options for Brasero - burn library +","ब्रैसेरो बर्न लाइब्रेरी के लिए प्रदर्शक विकल्प +","brasero burn library ke lie display options +",9,1,neutral,neutral,neutral +"You should pay grand rent. +","तुम्हें जमीन का भाड़ा अदा करना चाहिए। +","tumhen jamin ka rent ada karna chahie. +",7,2,negative,neutral,positive +"""% s"" could not be found in the path +","""% s"" को पथ में नहीं पाया जा सका +","s ko path men nahin paya ja saka +",9,0,negative,negative,neutral +"install the standard and TSC pumps +","मानक और टीएससी पंप स्थापित करें +","standard aur tsc pumps sthapit karen +",9,2,neutral,neutral,neutral +"Brmaha is Unique, only Unique. +","ब्रह्म एक और सिर्फ़ एक ही है। +","brahm ek aur sirf ek hi hai. +",8,3,positive,neutral,neutral +"The average annual clip is about one kilogram. +","वर्षभर में औसतन लगभग एक किलोग्राम ऊन एक भेड़ से उतरती है। +","average annual clip lagabhag ek kilogram oon ek bher se utarti hai. +",9,0,neutral,neutral,neutral +"But there was music in the family. +","लेकिन परिवार का वातावरण संगीतमय था। +","lekin family ka vatavaran music tha. +",9,2,neutral,neutral,neutral +"they've calculated that Congo may have lost +","उसने यह अनुमान लगाया है कि कोंगों का नुकसान +","usne yah anuman lagaya hai ki lost ka nuksan +",5,3,neutral,negative,negative +"Ther are many product, device, or equipment in adaptive technology which include large - key keyboards, alternative input devices, like touch screen displays, speech recognition programs, text reader etc.. +","अनुकूली तकनीक में अनेक उत्पाद, उपकरण या उपस्कर हैं, जिनमें बड़ी कुंजी वाले कुंजीपटल, वैकल्पिक इनपुट उपकरण, जैसे-स्पर्श स्क्रीन प्रदर्श, भाषण पहचान प्रोग्राम, तथा पाठ्यांश वाचक आदि शामिल हैं +","adaptive technology men many product , device ya upaskar hain , jinmen large key vale keyboards , alternative input device , jaise-sparsh touch displays , speech recognition programs , tatha pathyansh ther aadi shamil hain +",8,2,neutral,neutral,positive +"I mean, I think that looks like some sort of flying animal or beast. +","शायद यह एक उड़ने वाले जानवर जैसा दिखता है. +","shayad yah ek animal or beast jaisa dikhta hai +",7,1,neutral,neutral,positive +"Drayage from port to warehouse is borne by the importer. +","बन्दरगाह से गोदाम तक माल की ढुलाई का व्यय आयातक द्वारा वहन किया जाता है। +","port se godam tak mal ki dhulaee ka vyay importer dvara vahan kiya jata hai. +",9,2,neutral,neutral,neutral +"God is the most exalted King and the Supreme Truth. He is the only God and the Lord of the Gracious Throne. +","तो ख़ुदा जो सच्चा बादशाह (हर चीज़ से) बरतर व आला है उसके सिवा कोई माबूद नहीं (वहीं) अर्श बुर्जुग़ का मालिक है +","to uda jo sachcha badshah har chiz se baratar v aala hai uske siva koee mabood nahin vhin throne burju ka malik hai +",4,5,positive,neutral,positive +"It was difficult not to think about what he had left behind. +","जो कुछ वह पीछे छोड़कर आया है, उसके बारे में एकदम कुछ न सोचना उसके लिए बहुत मुश्किल था। +","jo kuchh vah pichhe chhorakar aaya hai, uske bare men ekadam kuchh n sochna uske lie bahut mushkil tha. +",5,8,negative,negative,negative +"Disables saving browser history in %{PRODUCTNAME} and prevents users from changing this setting. If this setting is enabled, browsing history is not saved. If this setting is disabled or not set, browsing history is saved. +","%{PRODUCTNAME} में ब्राउज़र इतिहास सहेजना अक्षम करती है और उपयोगकर्ताओं को यह सेटिंग बदलने से रोकती है. यदि यह सेटिंग सक्षम है, तो ब्राउज़िंग इतिहास सहेजा नहीं जाता है. यदि यह सेटिंग अक्षम है या कॉन्फ़िगर नहीं है, तो ब्राउज़िंग इतिहास सहेजा जाता है. +","PRODUCTNAME men browser history sahejna disables karti hai aur users ko yah setting badalne se prevents hai yadi yah setting saksham hai , to productname history saheja nahin jata hai yadi yah setting disables hai ya knfigar nahin hai , to productname history saheja jata hai +",6,5,neutral,neutral,positive +"Here's a really short text. +","यहाँ एक बहुत छोटा वाक्य है। +","yahan ek bahut short text text +",6,3,neutral,neutral,neutral +"The person who carries out survey or a profession engaged in survey work. +","वह व्यक्ति जो सर्वेक्षण करता हो अथवा जो सर्वेक्षण के व्यवसाय में संलग्न हो। +","vah vyakti jo survey karta ho athva jo survey ke vyavsay person who carries +",5,1,neutral,neutral,positive +"and the smell of the earth, the wheat, the grass, the charged particles. +","और मिट्टी, गेहूं, घास की गंध। +","aur earth, wheat, grass ki gndh. +",8,3,neutral,neutral,negative +"An invalid three-wheeler supplied by the DSS +","गलत तीन पैयो वाली गाडी ढ्श्श् ने सहायता के लिए दी हो ? +","invalid tin dss vali gadi dhshsh ne sahayta ke lie three-wheeler ho +",5,3,negative,negative,neutral +"Swelling of the rectum and the colon. +","मलाशय और बृहदान्त्र का सूजन. +","rectum aur brihdantr ka swelling +",8,1,neutral,neutral,neutral +"In the absence of organised marketing for small agricultural products producers do not get good price realisation. +","लघु कृषि उत्पादों के लिए संगठित विद्यमान व्यवस्था के अभाव में उत्पादकों को उनकी उपज का अच्छा मूल्य नहीं मिल पाता। +","small agricultural products ke lie sngthit vidyman vyavastha ke abhav men utpadkon ko unki upaj ka achchha mooly nahin mil pata. +",7,3,negative,negative,negative +"The Council has 28 members - 20 from the newspaper world, five are Members of Parliament three nominated by the Speaker of the Lok Sabha and two by the Chairman of the Rajya Sabha and remaining three are nominated by the Sahitya Akademi, the Bar Council of India and the University Grants Commission. +","परिषद में 28 सदस्य होते है-20 समाचार जगत से, पॉँच संसद-सदस्य तीन को लोकसभा के अध्यक्ष और दो को राज्यसभा के सभापति नामजद करते है और शेष तीन का नामांकन साहित्य अकादमी, भारत के बार कौसिल और विश्विलय अनुदान आयोग द्वारा किया ताजा है। +","council men 28 members hote hai-20 newspaper world se , pnch snsad-sadasy tin ko lok ke speaker aur do ko rajyasbha ke sabhapti namajad karte hai aur shesh tin ka namankan sahity akademi , india ke bar kausil aur university grants commission dvara kiya taja hai. +",8,4,neutral,neutral,positive +"We have a fully autonomous vehicle +","हमारे पास पूरी तरह से स्वचालित वाहन है +","hamare pas poori tarah se autonomous vehicle hai +",8,0,neutral,neutral,neutral +"The famous 'Chauri Chaura' and 'Meerut conspiracy' case are few cases wherein this Court delivered memorable judgments upholding the concept of liberty. +","प्रसिद्ध चौरी-चौरा तथा मेरठ षडयंत्र कुछ ऐसे मामले हैं जिनमें न्यायालय ने स्वतंत्रता की अवधारणा बनाए रखते हुए स्मरणीय निर्णय दिए। +","famous chauri-chaura few chaura conspiracy kuchh aese case hain jinmen court ne liberty ki concept banae rakhte hue memorable judgments die. +",6,3,neutral,neutral,neutral +"Elsewhere, he expressed surprise over the ‘symptoms of of utter confusion in its value system’ displayed by the Indian society in a period of change. +","अन्यत्र, उन्होंने भारतीय समाज द्वारा बदलते हुए समय के साथ ""अपनी मूल्य व्यवस्था में नितांत भ्रम के लक्षणों"" के प्रति आश्चर्य प्रकट किया। +","anyatr, unhonne indian society dvara badalte hue samay ke sath apni mooly vyavastha men nitant bhram ke lakshnon ke prti aashchary prakat kiya. +",9,1,negative,neutral,positive +"(iii) ""contract"" shall include sub-contract; +","(iii) ""संविदा"" के अंतर्गत उपसंविदा भी है; +","iii contract ke antargat upsnvida bhi hai +",8,2,neutral,neutral,neutral +"Hence he came to be called Padmapada. +","इसी से उसका नाम पद्मपाद पड गया। +","isi se uska nam padmpad hence gaya. +",5,5,neutral,neutral,neutral +"Plan your work and work your plan. +","अपने कार्य की योजना बनाएं तथा अपनी योजना पर कार्य करें. +","apne work and work banaen tatha apni plan par work karen +",5,0,positive,neutral,neutral +"The centrally governed parts of land are called union territories +","केन्द्रीय प्रशासित भू-भागों को संघराज्य क्षेत्र कहा जाता है। +","kendriy prshasit called union territories kshetr kaha jata hai. +",7,2,neutral,neutral,neutral +"Unable to send memo information, the memo does not exist +","ज्ञापन सूचना देने में असमर्थ, यह ज्ञापन मौजूद नहीं है +","memo information dene men unable , yah memo maujood nahin hai +",8,4,negative,neutral,neutral +"Test the orphans until they reach the age of marriage, and then if you find them mature of mind hand over to them their property, and do not eat it up by either spending extravagantly or in haste, fearing that they would grow up (and claim it). If the guardian of the orphan is rich let him abstain entirely (from his ward 's property); and if he is poor, let him partake of it in a fair measure. When you hand over their property to them let there be witnesses on their behalf. Allah is sufficient to take account (of your deeds). +","और यतीमों को कारोबार में लगाए रहो यहॉ तक के ब्याहने के क़ाबिल हों फिर उस वक्त तुम उन्हे (एक महीने का ख़र्च) उनके हाथ से कराके अगर होशियार पाओ तो उनका माल उनके हवाले कर दो और (ख़बरदार) ऐसा न करना कि इस ख़ौफ़ से कि कहीं ये बड़े हो जाएंगे फ़ुज़ूल ख़र्ची करके झटपट उनका माल चट कर जाओ और जो (जो वली या सरपरस्त) दौलतमन्द हो तो वह (माले यतीम अपने ख़र्च में लाने से) बचता रहे और (हॉ) जो मोहताज हो वह अलबत्ता (वाजिबी) दस्तूर के मुताबिक़ खा सकता है पस जब उनके माल उनके हवाले करने लगो तो लोगों को उनका गवाह बना लो और (यूं तो) हिसाब लेने को ख़ुदा काफ़ी ही है +","aur yatimon ko karobar men lagae raho yah tak ke byahne ke abil hon phir us vakt tum unhe ek mahine ka rch unke hath se karake agar hoshiyar pao to unka mal unke havale kar do aur bardar aesa n karna ki is auf se ki kahin ye bare ho jaenge fuzool rchi karke jhatapat unka mal chat kar jao aur jo jo vali ya saraparast daulatamand ho to vah male yatim apne rch men lane se bachta rahe aur h jo mohtaj ho vah alabatta vajibi dastoor ke mutabi kha sakta hai pas jab unke mal unke havale karne lago to logon ko unka gavah bana lo aur yoon to hisab lene ko uda kafi hi hai +",4,6,neutral,neutral,positive +"Originally, the reservation was for ten years but it is being extended every time for the next ten years - LRB - articles 330 and 334 - RRB -. +","मूलतया आरक्षण दस वर्षों के लिए था लेकिन उसे हर बार अगले दस वर्षों के लिए बढ़ाया जा रहा है (अनुच्छेद 330 तथा 334). +","lrb reservation ten years ke lie tha lekin use har time agle ten years ke lie baaya ja raha hai anuchchhed 330 tatha 334 +",8,2,neutral,neutral,neutral +"Delhi fort is also called as red fort since it is red in color. +","दिल्ली के किले को लाल-किला भी कहते हैं क्योंकि यह लाल रंग का है। +","delhi ke fort ko lal-kila bhi kahte hain kyonki yah red color ka hai. +",10,0,neutral,neutral,neutral +"Those who have gone before them belied, yet they did not reach a tenth of what We gave them; yet they belied My Messengers. And how was (My) rejection (their destruction)! +","और झूठलाया उन लोगों ने भी जो उनसे पहले थे। और जो कुछ हमने उन्हें दिया था ये तो उसके दसवें भाग को भी नहीं पहुँचे है। तो उन्होंने मेरे रसूलों को झुठलाया। तो फिर कैसी रही मेरी यातना! +","aur messengers un destruction ne bhi jo unse pahle the. aur jo kuchh hamne unhen diya tha ye to uske tenth bhag ko bhi nahin pahunche hai. to unhonne mere rasoolon ko jhuthlaya. to phir kaisi rahi meri rejection ! +",5,6,negative,negative,negative +"But, so this is the first quadrant intersection. +","लेकिन, तो यह पहली वृत्त का चतुर्थ भाग मिलन बिंदु है। +","lekin, to yah pahli vritt ka quadrant intersection milan bindu hai. +",5,3,neutral,neutral,neutral +"And although , in the short term , the truth has many facets , the long-term truth is only one and unmistakable . +","और अल्पकाल में तो सत्य के कई पहलू हो सकते हैं , दीर्धकालीन सत्य केवल एक और सुस्पष्ट होता है . +","aur short men to truth ke kee facets ho sakte hain , term truth keval ek aur suspasht hota hai +",6,5,neutral,neutral,positive +"Video output for Windows 7/Windows Vista with Platform update +","प्लेटफार्म अद्यतन के साथ Windows 7/Windows Vista के लिए वीडियो आउटपुट +","platform update ke sath Windows 7Windows vista ke lie video output +",9,1,neutral,neutral,neutral +"The presiding officer of each House or any other officer or Member of Parliament who is for the time being vested with the powers to regulate procedure , or to enforce or carry out the decision of either House of Parliament , is not subject to the jurisdiction of the courts in exercise of those powers -LRB- articles 122 -LRB- 2 -RRB- and 105 -LRB- 3 -RRB- -RRB- . +","प्रत्येक सदन का पीठासीन अधिकारी या कोई अधिकारी या संसद-सदस्य जिनमें अस्थायी रूप में प्रक्रिया या कार्य-संचालन को विनियमित करने की तथा संसद के किसी सदन के निर्णय को लागू करने की शक्तियां निहित हों , इन शक्तियों के प्रयोग के विषय में किसी न्यायालय की अधिकारिता के अधीन नहीं होगा [अनुच्छेद 122 ( 2 ) तथा 105 ( 3 ) ] . +","pratyek sadan ka presiding officer ya koee adhikari ya snsad-sadasy jinmen asthayi roop men prakriya ya kary-snchalan ko viniymit karne ki tatha snsad ke kisi sadan ke nirnay ko lagoo karne ki shaktiyan nihit hon , in shaktiyon ke pryog ke vishay men kisi nyayalay ki adhikarita ke adhin nahin hoga anuchchhed 122 2 tatha 105 3 +",5,6,neutral,negative,positive +"Beside these, the Peepal tree, Banana tree and Bilva have been also placed in appropriate locations in the Vatika bringing the total to 51 trees/plants. +","इनके अलावा, पीपल वृक्ष, केला वृक्ष तथा बिल्व भी वाटिका के उपयुक्त स्थलों पर लगाए गए हैं जिससे कुल 51 वृक्ष/पौधे हो गए हैं। +","inke alava, peepal tree, banana tree tatha bilv bhi vatika ke upyukt sthlon par lagae ge hain jisse kul 51 vrikshpaudhe ho ge hain. +",8,2,neutral,neutral,neutral +"from the evil of what He has created, +","हर चीज़ की बुराई से जो उसने पैदा की पनाह माँगता हूँ +","har created ki evil se jo usne paida ki panah mangta hoon +",5,1,negative,negative,negative +"which obeys really strict rules. +","जो वास्तव में कड़े नियमों का अनुसरण करता है। +","jo vastav men strict rules ka anusaran karta hai. +",8,4,neutral,neutral,neutral +"Process ID assigned a unique number to every process running in the system. +","प्रोसेस आईडी, प्रणाली में चालू प्रत्येक प्रक्रिया के लिए एक विशिष्ट संख्या आवंटित करता है। +","proses aaeedi, process running chaloo pratyek prakriya ke lie ek vishisht snkhya aavntit karta hai. +",8,0,neutral,neutral,positive +"115WF. If any person, being an employer— +","115बच.यदि कोर्इ व्यक्ति, जो नियोजक है– +","115bachydi kori person , jo niyojak hai +",7,1,neutral,neutral,neutral +"The poet is trying to create an image of a woman whose whole body is pining away, every limb is turning and twisting and, as described in a sloka mentioned above, the very bed and bed - sheets have become symbols of anguish and torture. +","कवि यहां एक ऐसी नारी के बिम्ब की उदभावना में लगा है जिसकी देह झुर रही है, अंग-अंग मरोड़ खा रहा है और, जैसा एक अन्य सलोक में कहा गया, बिछौना और चादर भी यन्त्रणा का प्रतिरूप बन उठे हैं। +","kavi yahan ek aesi nari ke bimb ki udbhavna men laga hai jiski deh jhur rahi hai, ang-ang maror kha raha hai aur, jaisa ek any salok men kaha gaya, bed and bed bhi yantrna ka prtiroop ban uthe hain. +",8,1,negative,negative,negative +"Cash, silver and gold ornaments, coconuts, fruits and flowers are offered to the Lord. +","नकद रुपये, चांदी और सोने के आभूषण, नारियल, फल, फूल देवता को भेंट में चढ़ाये जाते हैं। +","nakad rupye, silver and gold ke aabhooshan, coconuts, phal, phool devta ko bhent men chaaye jate hain. +",8,2,positive,neutral,neutral +"Indeed for Allah only is the kingship of the heavens and the earth; He gives life and He gives death; and other than Allah, you have neither a Protector nor any Supporter. +","इसमें तो शक़ ही नहीं कि सारे आसमान व ज़मीन की हुकूमत ख़ुदा ही के लिए ख़ास है वही (जिसे चाहे) जिलाता है और (जिसे चाहे) मारता है और तुम लोगों का ख़ुदा के सिवा न कोई सरपरस्त है न मददगार +","ismen to sha hi nahin ki sare aasman v zamin ki hukoomat uda hi ke lie as hai vahi jise chahe jilata hai aur jise chahe marta hai aur tum logon ka uda ke siva n koee saraparast hai n madadgar +",8,1,neutral,negative,negative +"Then if they deny you, [O Muhammad] - so were messengers denied before you, who brought clear proofs and written ordinances and the enlightening Scripture. +","फिर यदि वे तुम्हें झुठलाते ही रहें, तो तुमसे पहले भी कितने ही रसूल झुठलाए जा चुके है, जो खुली निशानियाँ, 'ज़बूरें' और प्रकाशमान किताब लेकर आए थे +","phir yadi ve o jhuthlate hi rahen , to scripture pahle bhi kitne hi proofs jhuthlae ja chuke hai , jo clear nishaniyan , ordinances aur prkashman kitab lekar aae the +",7,0,neutral,neutral,positive +"He agreed to Shri Duni Chand being appointed as his legal adviser. +","श्री दुनी चंद को अपना कानूनी परामर्शदाता नियुक्त करने पर वह सहमत हो गये। +","shri duni chnd ko apna legal adviser niyukt karne par vah sahamat ho gaye. +",9,2,neutral,neutral,positive +"Adopting measures to get incentive prices for coconut and its products. +","नारियल और इसके उत्पादों के लिए प्रोत्साहन मूल्य पाने के उपाय अपनाना। +","coconut aur iske products ke lie incentive prices pane ke adopting measures +",6,3,neutral,neutral,positive +"Sugar Machinery: - domestic manufacturers occupy predominant position in the global scenario and are capable of manufacturing from concept to commissioning stage sugar plants of latest design for a capacity upto 10, 000 TCD (tons crushing per day). +","वर्तमान में संपूर्ण चीनी संयंत्रों के विनिर्माण के लिए संगठित क्षेत्र में 2 इकाइयां हैं और प्रति वर्ष लगभग 200 करोड़ की संस्थापित क्षमता वाले पुर्जे हैं। +","vartman men snpoorn chini snyntron ke vinirman ke lie sngthit kshetr men 2 ikaiyan hain aur prti varsh lagabhag 200 karor ki snsthapit kshamta vale purje hain. +",4,6,neutral,neutral,neutral +"In order to be possessor of his being with any complete reality of freedom and mastery, man must find out his highest self, the real man or highest Purusha in him, which is free and master in its own inalienable power. +","मनुष्य को किसी पूर्ण रूप से सच्ची स्वतन्त्रता और प्रभुता के साथ अपनी सत्ता का स्वामी बनने के लिये अपनी उच्चतम आत्मा को, अपने अन्दर के उस वास्तविक मनुष्य या उच्चतम पुरुष को, ढूंढ़ना होगा जो स्वतन्त्र है तथा अपनी अविच्छेद्य शक्ति का स्वामी है। +","manushy ko kisi poorn roop se sachchi freedom and mastery ke sath apni satta ka svami banne ke liye apni uchchatam aatma ko, apne andar ke us vastvik manushy ya uchchatam purush ko, dhoonna hoga jo svatantr hai tatha apni inalienable power ka svami hai. +",9,0,neutral,negative,positive +"In India, various agencies and organisations conduct studies and surveys as well as publish reports on a regular basis covering diverse aspects of the economy. +","भारत में अनेक अधिकरण और संगठन अध्ययन और सर्वेक्षणों का आयोजन करते हैं, साथ ही अर्थव्यवस्था की विविध पहलुओं शामिल करते हुए एक नियमित आधार पर रिपोर्ट प्रकाशित करते हैं। +","india men various agencies aur organisations studies aur sarvekshnon ka aayojan karte hain , sath hi economy ki diverse aspects shamil karte hue ek regular basis par reports prkashit karte hain. +",9,1,neutral,neutral,positive +"and on the mountains, how they are firmly set up, +","और पहाड़ो की ओर कि कैसे खड़े किए गए? +","aur mountains ki or ki kaise khare kie ge +",8,3,neutral,neutral,neutral +"But they had not been sent as guardians over them. +","हालाँकि वे उनपर कोई निगरानी करनेवाले बनाकर नहीं भेजे गए थे +","halanki ve unapar koee guardians karnevale banakar nahin bheje ge the +",9,0,neutral,neutral,neutral +"Before road transport developed, the principal arteries of communication during those days were the river routes. +","सड़कों के विकास के पहले उन दिनों नदियों के मार्ग ही यातायात के प्रमुख साधन थे। +","sarkon ke vikas ke pahle un days river ke road hi transport ke principal communication the. +",8,0,neutral,neutral,neutral +"In Terms of its geographic size India is the seventh largest country in The World. +","भारत भौगोलिक क्षेत्रफल के आधार पर विश्व का सातवाँ सबसे बड़ा राष्ट्र है। +","terms geographic kshetraphal ke aadhar par largest ka seventh sabse bara country hai. +",6,1,neutral,positive,neutral +"21 th edition (10 January - 10 December): WC3 focused on India. +","21वां अंक (10 जनवरी-10 दिसंबर): 3 भारत पर केंद्रित. +","21van edition 10 janavri-10 disnbar: 3 focused on india +",8,1,neutral,neutral,positive +"To change time or date settings, you need to authenticate. +","समय या दिनांक सेटिंग्स को बदलने के लिए, आपको प्रमाणित करने की जरूरत है. +","time ya dinank settings ko badalne ke lie , aapko prmanit karne ki jaroorat hai +",9,0,neutral,neutral,neutral +"And the overturned towns He hurled down +","उलट जानेवाली बस्ती को भी फेंक दिया। +","overturned janevali basti ko bhi hurled diya. +",6,3,negative,neutral,neutral +"If the opinion so declared is again challenged, the Speaker directs that the votes be recorded either by operating the automatic vote recorder or by using 'Aye' and 'No' slips in the House or by members going into the lobbies. +","यदि इस प्रकार घोषित राय को पुन: चुनौती दी जाती है तो अध्यसक्ष आदेश देता है कि या तो स्वचालित मत अभिलेखन उपकरण को चालू करके या सदन में? हां? या? या? की पर्चियों का प्रयोग करके या सदस्यों द्वारा लाबियों में जाकर मत अभिलिखित किए जाएं. +","yadi is prkar ghoshit ray ko pun : chunauti di jati hai to speaker aadesh deta hai ki ya to automatic opinion abhilekhan upakaran ko chaloo karke ya house men han ya ya ki slips ka pryog karke ya members dvara lobbies men jakar opinion abhilikhit kie jaen +",5,2,neutral,neutral,negative +"He raised the heavens and set up everything in balance, +","उसने आकाश को ऊँचा किया और संतुलन स्थापित किया- +","usne heavens ko everything kiya aur balance sthapit kiya- +",5,1,positive,neutral,positive +"this order was made applicable to State Governments including the State of Uttar Pradesh. +","इस आदेश को उत्तर प्रदेश राज्य सहित समस्त राज्य सरकारों को लागू किया गया था. +","is aadesh ko uttar prdesh rajy sahit samast rajy order was made kiya gaya tha +",5,2,neutral,neutral,neutral +"As for the good land, vegetation comes forth in abundance by the command of its Lord, whereas from the bad land, only poor vegetation comes forth. Thus do We expound Our signs in diverse ways for a people who are grateful. +","और अच्छी भूमि के पेड़-पौधे उसके रब के आदेश से निकलते है और जो भूमि ख़राब हो गई है तो उससे निकम्मी पैदावार के अतिरिक्त कुछ नहीं निकलता। इसी प्रकार हम निशानियों को उन लोगों के लिए तरह-तरह से बयान करते है, जो कृतज्ञता दिखानेवाले है +","aur good land ke per-paudhe uske lord ke command se nikalte hai aur jo land poor ho diverse hai to usse nikammi paidavar ke atirikt kuchh nahin nikalta. isi ways ham nishaniyon ko un logon ke lie tarah-tarah se bayan karte hai , jo grateful dikhanevale hai +",5,3,positive,positive,negative +"[This is] a promise of Allah: Allah does not break His promise, but most people do not know. +","(ये) ख़ुदा का वायदा है) ख़ुदा अपने वायदे के ख़िलाफ नहीं किया करता मगर अकसर लोग नहीं जानते हैं +","ye allah ka promise hai allah apne vayde ke ilaph nahin kiya karta magar most people nahin jante hain +",8,1,neutral,neutral,neutral +"As a barrister, I was well aware of the difficulties of proving the truth of statements giving rise to libel proceedings. +","एक वकीलके नाते मैं मानहानिवाल बातोंको सिद्ध करनेकी कठिनाइयोंको जानता था। +","ek vakilke nate main manhanival batonko siddh karneki kathinaiyonko janta tha. +",7,3,neutral,negative,positive +"Your upcoming events will be displayed here when you select a date with events. +","आपकी आने वाली घटनाओं को प्रदर्शित किया जाएगा जब आप घटनाओं के साथ एक तिथि का चयन करेंगे. +","aapki aane vali date with events kiya jaega jab aap ghatnaon ke sath ek select a date karenge +",5,1,neutral,neutral,neutral +"In short they were now in a mood to send their sons to any school which the Anjuman set up. +","संक्षिप्त में, अब अंजुमन द्वारा स्थापित स्कूल में अपने पुत्रों के भेजने का उनका मन हो गया। +","short men, ab anjuman dvara sthapit skool men apne send their sons ka unka man ho gaya. +",6,1,neutral,neutral,neutral +"We have told you the stories of the prophets to make your heart firm and in these accounts truth has come to you, with an exhortation and a reminder for the believers. +","और (ऐ रसूल) पैग़म्बरों के हालत में से हम उन तमाम क़िस्सों को तुम से बयान किए देते हैं जिनसे हम तुम्हारे दिल को मज़बूत कर देगें और उन्हीं क़िस्सों में तुम्हारे पास हक़ (क़ुरान) और मोमिनीन के लिए नसीहत और याद दहानी भी आ गई +","aur ae firm prophets ke halat men se believers un tamam stories ko tum se bayan kie dete hain jinse believers truth heart ko mazboot kar degen aur unhin stories men truth pas ha reminder aur mominin ke lie exhortation aur yad dahani bhi aa gee +",7,4,neutral,neutral,positive +"It appears that he was solely interested in saving his own life and that of his queen who by that time hated him. +","ऐसा लगता है कि उनका एकमात्र सरोकार अपनी और उस बेगम की जान बचाना था जो उस समय तक उनसे नफरत करने लगी थी। +","aesa lagta hai ki unka ekmatr sarokar apni aur us begam ki solely interested tha jo us samay tak unse napharat karne lagi thi. +",6,4,negative,positive,negative +"There did Zakariya pray to his Lord; he said: My Lord! grant me from Thee good offspring; surely Thou art the Hearer of prayer. +","(ये माजरा देखते ही) उसी वक्त ज़करिया ने अपने परवरदिगार से दुआ कि और अर्ज क़ी ऐ मेरे पालने वाले तू मुझको (भी) अपनी बारगाह से पाकीज़ा औलाद अता फ़रमा बेशक तू ही दुआ का सुनने वाला है +","ye offspring dekhte hi usi vakt zakriya ne apne paravardigar se pray ki aur arj i ae mere palne vale too mujhko bhi apni bargah se pakiza aulad ata farma beshak too hi pray ka sunne vala hai +",6,5,positive,positive,positive +"He added that HE had expressed by telegram and letter in emphatic terms his complete confidence in me but that the days when this would be enough were over. 10. +","गवर्नर-जनरल ने यह भी कहा कि निजाम ने तार द्वारा जोरदार शब्दों में मुझ पर संपूर्ण विश्वास वयक्त किया है, परन्तु वे दिन चले गये जब इतना कहना काफी हो सकता था। +","gavarnar-janaral ne yah bhi kaha ki nijam ne tar dvara jordar shabdon men mujh par snpoorn vishvas vayakt kiya hai, parantu ve din chale gaye jab itna kahna kaphi ho sakta tha. +",6,5,neutral,neutral,positive +"The worth of the security for sale or purchase. +","प्रतिभूति का मूल्य जो खरीद या बिक्री के लिए हो। +","security ka worth jo purchase ya sale ke lie ho. +",7,3,neutral,neutral,positive +"This bushy plant is a host in a plant pathosystem. +","यह झाड़ीदार पौधा पादप रोग-तंत्र में एक परपोषी है। +","yah jharidar paudha padap rog-tntr men ek parposhi hai. +",8,4,neutral,neutral,neutral +"A book in which the business transactions of an agent are posted in the form of debits and credits. +","एक बही जिसमें किसी अभिकर्ता के व्यावसायिक लेन-देन लेनदारी व देनदारी के रूप में दर्ज़ होते हैं। +","ek bahi jismen kisi agent ke business len-den lendari v dendari ke form men book hote hain. +",7,1,neutral,neutral,positive +"and in the mornings they would ask for forgiveness; +","और वही प्रातः की घड़ियों में क्षमा की प्रार्थना करते थे +","aur vahi prata ki ghariyon men kshma ki prarthna karte the +",9,2,neutral,neutral,positive +"He was complaining of retching since two days. +","वह दो दिनों से उबकाई की शिकायत कर रहा था. +","vah do days se ubkaee ki complaining kar raha tha +",8,1,negative,neutral,negative +"by 5, so 1 times 5 is 5. +","तो 1 गुना 5 बराबर है 5के. +","to 1 times 5 barabar hai 5ke +",6,7,neutral,neutral,neutral +"Mr. Vagish Shastri has bestowed scientific nature to Sanskrit Grammar. +","संस्कृत के व्याकरण को वागीश शास्त्री ने वैज्ञानिक स्वरूप प्रदान किया है। +","snskrit ke vyakaran ko vagish shastri ne bestowed scientific nature kiya hai. +",8,1,positive,neutral,neutral +"They stretch when the heart pumps blood through them. +","जब हृदय उनमें से रक्त संचार करता है तो वे फैलती है। +","jab heart unmen se blood snchar karta hai to ve phailti hai. +",8,1,neutral,neutral,positive +"And never [O Muhammad] pray for one of them who dies, nor stand by his grave. For they denied God and His Messenger, and died rebellious. +","औऱ उनमें से जिस किसी व्यक्ति की मृत्यु हो उसकी जनाज़े की नमाज़ कभी न पढ़ना और न कभी उसकी क़ब्र पर खड़े होना। उन्होंने तो अल्लाह और उसके रसूल के साथ कुफ़्र किया और मरे इस दशा में कि अवज्ञाकारी थे +","au unmen se jis kisi vyakti ki mrityu ho uski janaze ki namaz kabhi n pana aur n kabhi uski br par khare hona. unhonne to allah aur uske rasool ke sath kufr kiya aur mare is dasha men ki avajnjakari the +",7,3,negative,negative,negative +"Primary center connects toll centers. +","प्राथमिक केंद्र, शुल्क केन्द्रों (टोल केन्द्रों) को जोड़ता है। +","primary center , shulk centers toll centers ko jorta hai. +",9,0,neutral,neutral,neutral +"Provided that where in respect of any such consideration, the equalisation levy has been deducted in any subsequent year or has been deducted during the previous year but paid after the due date specified in sub-section (1) of section 139, such sum shall be allowed as a deduction in computing the income of the previous year in which such levy has been paid; +","परंतु जहां ऐसे किसी प्रतिफल के संबंध में किसी पश्चात्वर्ती वर्ष में समकरण उद्ग्रहण की कटौती की गर्इ है या पूर्ववर्ष के दौरान कटौती की गर्इ है किंतु धारा 139 की उपधारा (1) में विनिर्दिष्ट नियत तारीख के पश्चात् संदत्त किया गया है तो ऐसी राशि को पूर्ववर्ष जिसमें ऐसे उद्ग्रहण का संदाय किया गया है कि आय की संगणना में कटौती के रूप में अनुज्ञात किया जाएगा। +","parntu jahan aese kisi consideration ke snbndh men kisi subsequent year men equalisation levy ki respect ki such hai ya previous ke dauran respect ki such hai kintu section 139 ki updhara 1 men vinirdisht due date ke pashchat sndatt kiya gaya hai to aesi sum ko previous jismen aese levy ka snday kiya gaya hai ki income ki snganna men respect ke roop men anujnjat kiya jaega. +",4,3,neutral,negative,positive +"you haven 't heard from in years. +","जिनसे काफी दिनों से बात नहीं हुई हो। +","jinse years dinon se bat nahin huee heard +",5,3,negative,neutral,neutral +"Asavari resigned herself to further reading. +","हारकर आसावरी ने आगे पढ़ना शुरू किया। +","harakar reading ne aage pana shuroo kiya. +",6,3,neutral,neutral,negative +"And [Yusuf (Joseph)] told his servants to put their money (with which they had bought the corn) into their bags, so that they might know it when they go back to their people, in order that they might come back. +","और हम ज़रुर इस काम को पूरा करेंगें और यूसुफ ने अपने मुलाज़िमों (नौकरों) को हुक्म दिया कि उनकी (जमा) पूंजी उनके बोरो में (चूपके से) रख दो ताकि जब ये लोग अपने एहलो (अयाल) के पास लौट कर जाएं तो अपनी पूंजी को पहचान ले. +","aur ham zarur is kam ko poora karengen aur yusuf ne apne mulazimon servants ko order diya ki unki bags money unke boro men choopke se rakh do taki jab ye people apne ehlo ayal ke pas laut kar jaen to apni money ko pahchan le +",7,0,neutral,neutral,neutral +"O Prophet, say to your wives: 'If you seek this life and its finery, come, I will release you with a fine release. +","ऐ रसूल अपनी बीवियों से कह दो कि अगर तुम (फक़त) दुनियावी ज़िन्दगी और उसकी आराइश व ज़ीनत की ख्वाहॉ हो तो उधर आओ मैं तुम लोगों को कुछ साज़ो सामान दे दूँ और उनवाने शाइस्ता से रूख़सत कर दूँ +","ae rasool apni biviyon se kah do ki agar tum phat duniyavi zindgi aur uski aaraish v zinat ki khvah ho to udhar aao main tum logon ko kuchh sazo saman de doon aur unvane shaista se roosat kar doon +",6,6,neutral,neutral,positive +"While primay matter and the Universals are eternal, it is the individuals which are produced and are perishable. +","जहां मूल द्रव्य और सामान्य शाश्वत होते है, वही व्यक्तियो की उत्पति होती है और नश्वर होते है। +","jahan individuals matter aur samany eternal hote hai , vahi vyaktiyo ki utpti hoti hai aur perishable hote hai. +",8,1,neutral,neutral,neutral +"Does he not know that God sees? +","क्या उसने नहीं जाना कि अल्लाह देख रहा है? +","kya usne nahin jana ki allah dekh raha hai +",5,8,neutral,neutral,negative +"The Government , therefore , decided that an amendment of the Constitution was not necessary . +","अत : सरकार ने निश्चय किया कि संविधान का संशोधन जरूरी नहीं है . +","at : government ne decided kiya ki constitution ka amendment jaroori nahin hai +",9,0,neutral,negative,neutral +"The resource base of the Union government today is an ocean compared to that drop. +","आज केन्द्र सरकार के संसाधन उस बूंद की तुलना में एक महासागर के समान हैं। +","aaj base sarkar ke snsadhan us boond ki tulna men ek mahasagar ke saman hain. +",8,1,neutral,neutral,negative +"It indicates the expenses and earnings of the firm as well as the amount of its debits and credits. +","यह फर्म के व्यय और आमदनी तथा साथ ही इसके नामे और जमा की राशि को भी दर्शाता है। +","yah firm ke expenses and earnings tatha sath hi iske debits and credits ki rashi ko bhi darshata expenses +",8,2,neutral,neutral,positive +"On the Day when you witness it, the suckling woman shall utterly neglect the infant she suckles, and every pregnant woman shall cast her burden, and you will see people as though they are drunk, when they are not drunk; but dreadful shall be Allah 's chastisement. +","जिस दिन तुम उसे देख लोगे तो हर दूध पिलाने वाली (डर के मारे) अपने दूध पीते (बच्चे) को भूल जायेगी और सारी हामला औरते अपने-अपने हमल (बेहिश्त से) गिरा देगी और (घबराहट में) लोग तुझे मतवाले मालूम होंगे हालाँकि वह मतवाले नहीं हैं बल्कि खुदा का अज़ाब बहुत सख्त है कि लोग बदहवास हो रहे हैं +","jis day tum use chastisement loge to har doodh infant burden woman ke mare apne doodh pite bachche ko bhool jayegi aur sari hamla aurte apne-apne pregnant behisht se gira degi aur ghabrahat men people tujhe drunk maloom honge halanki vah drunk nahin hain balki khuda ka azab bahut sakht hai ki people badahvas ho rahe hain +",8,0,negative,neutral,neutral +"Saccus endolymphaticus is also known as endolymphatic sac. +","अन्तरुदक कोश को अन्तः कर्णोदक कोश के रूप में भी जाना जाता है. +","antrudak kosh ko anta endolymphatic sac ke roop men bhi jana jata hai +",8,4,neutral,neutral,neutral +"After much exertion and pressure he was made to say 'No' only. +","काफी प्रयास करने और दबाव डालने के बाद वह जबाव में सिर्फ 'नहीं' कहकर चुप हो गये. +","much exertion karne aur pressure dalne ke bad vah jabav men sirph nhin kahakar chup ho gaye +",9,2,neutral,neutral,negative +"These cows have straight top lines , level rumps , and sharp withers . +","इस नस्ल की गायों की सीधी ऊपरी रेखाएं , सम पिछली पीठ और नुकीले कन्धे होते हैं . +","is level ki cows ki top oopri rumps , sam pichhli pith aur nukile kandhe hote hain +",6,1,neutral,neutral,positive +"He further said, ” That the issue of the said periodical work of the said 28th day of April, 1883 was made up and published entirely on my responsibility, and to the best of my knowledge, information and belief, the said Ramcoomar Dey did not read anything contained therein in the editorial columns before the publication thereof. +","उन्होंने आगे कहा: ” कि उक्त पत्र का 28 अप्रैल 1883 का अंक पूरी तरह मेरी जिम्मेदारी पर तैयार हुआ और छपा. मेरी सर्वाधिक जानकारी, सूचना और विश्वास के अनुसार रामकुमार डे ने प्रकाशन से पहले इसके संपादकीय की सामग्री को नहीं पढ़ा +","unhonne aage kaha: ki ukt patr ka 28 april 1883 ka ank poori tarah meri jimmedari par taiyar huaa aur chhapa meri sarvadhik jankari, soochna aur vishvas ke anusar ramkumar de ne prkashan se pahle iske snpadkiy ki samagri ko nahin paa +",4,7,neutral,negative,positive +"Nobody cared why my intellect was rusting. +","किसीको यह परवाह नहीं थी कि मेरी बुद्धि पर क्यों जंग लगाया जा रहा है। +","kisiko yah nobody nahin thi ki meri intellect par kyon jng lagaya ja raha hai. +",6,0,negative,neutral,positive +"Savarkar 's counsel, Mr Baptista, also raised the point that Savarkar' s arrest on French soil was illegal. +","सावरकर के वकील श्री बप्तिस्ता ने भी यह मुद्दा उठाया कि फ्रांसिसी भूमि पर सावरकर की गिफ्तारी गैर-कानूनी है। +","savarakar ke vakil shri baptista ne bhi yah mudda uthaya ki phransisi bhoomi par savarakar ki soil was illegal +",9,2,neutral,neutral,negative +"Harnessing modern biology in agriculture is the need of the hour. +","कृषि में आधुनिक जीवविज्ञान का उपयोग आज की जरूरत है। +","agriculture men modern biology ka upyog aaj ki jaroorat hai. +",8,1,neutral,positive,neutral +"A sliding Vicryl noose is used in postoperative suture adjustment of extraocular muscles. +","खिसकने वाली विक्राइल फंदे का प्रयोग शल्यक्रिया के बाद नेत्रेतर मांसपेशियों की सीवन के समन्वयन हेतु किया जाता है। +","khisakne vali vikrail adjustment ka pryog shalyakriya ke bad netretar muscles ki suture ke samanvayan hetu kiya jata hai. +",7,1,neutral,neutral,neutral +"The amount that has been set aside to meet the possible liability / risk. +","ऐसी राशि जिसे किसी संभावित दायित्व/जोखिम की पूर्ति के लिए अलग से रख दिया गया हो। +","aesi amount jise kisi possible dayitvjokhim ki poorti ke lie alag se risk diya gaya ho. +",8,1,neutral,neutral,negative +"Shares of best companies which have very important effect on the share market. +","श्रेष्ठ कंपनियों के शेयर्स जो शेयर बाजार को बहुत प्रभावित करने वाले हों। +","best companies ke effect jo shares bajar ko bahut prbhavit karne vale hon. +",9,1,positive,positive,positive +"Benefits of information technology to the common man can only access the software tools and man - machine interface of systems are available in your language. +","सूचना प्रौद्योगिकी के लाभ आम आदमी तक केवल तभी पहुंच सकते हैं जब सॉफ्टवेयर टूल्स और मानव-मशीन इंटरफेस प्रणालियां लोगों की अपनी भाषा में उपलब्ध हों +","information technology ke benefits common man tak keval tabhi access sakte hain jab software tools aur manav-mshin interface prnaliyan logon ki apni language men available hon +",8,1,positive,neutral,positive +"With momentum of time Marathi literature also became modern. +","मराठी साहित्य भी समय की गति क साथ साथ आधुनिक हो चुका है। +","marathi literature bhi momentum of time k sath sath aadhunik ho chuka hai. +",9,2,neutral,neutral,neutral +"Neutrophilic leukocytes with respect to phagocytes, release histolytic enzymes. +","भक्षक कोशिकाओं के संबंध में न्यूट्रोफिलिक श्वेताणु ऊतकीय एंजाइमों को मुक्त करते हैं +","bhakshak koshikaon ke snbndh men nyootrophilik shvetanu ootkiy enjaimon ko mukt karte hain +",4,7,neutral,neutral,positive +"DLA for children under age 16 < s > You can claim DLA for a child with a severe physical or mental disability if they need much more help or looking after than other children of the same age because of their illness or disability +","जिन बच्चोंको गंभीर शारीरीक और मानसिक विकलांगता है जिस के कारण उनको उनकी विकलांगता और बीमारी की वजह से उन्हीं की आयु के बच्चों से अधिकतर मदद या फिर देखभाल की जरुरत लगती है तो आपको DLA के लिए अर्जी भर सकते है। +","jin children severe sharirik aur mental physical hai jis ke s unko unki physical aur other ki vajah se unhin ki age ke child se more help ya phir dekhbhal ki jarurat lagti hai to aapko DLA ke lie arji dla sakte hai. +",7,2,neutral,neutral,negative +"Connection refused through SOCKSv5 proxy. SOCKSv5 +","प्रॉक्सी के माध्यम से कनेक्शन से इनकार कर दिया. +","proxy ke madhyam se connection se inkar kar diya +",9,1,negative,neutral,negative +"It is n 't a good idea to focus on the use of solvents. +","केवल सॉल्वैट्स के उपयोग पर ही सारा ध्यान केंद्रित कर देना कोई अच्छा विचार नहीं है. +","keval idea to focus par hi sara good kendrit kar dena koee good idea nahin hai +",5,0,negative,neutral,positive +"When something is routed through the account belonging to oneself. +","जब कोई सौदा या लेन-देन ऐसे खाते के माध्यम से किया जा रहा हो जो स्वयं का हो। +","jab koee account ya len-den aese khate ke madhyam se kiya ja raha ho jo svyn ka something +",4,5,neutral,neutral,neutral +"Brittani officer has captured the jewelery and her husband 's debt has been accounted from the queens yearly maintenance. +","ब्रितानी अधिकारियों ने राज्य का खजाना ज़ब्त कर लिया और उनके पति के कर्ज़ को रानी के सालाना खर्च में से काट लिया गया। +","britani adhikariyon ne rajy ka khajana zabt kar liya aur unke pati ke karz ko rani ke salana kharch men se kat liya gaya. +",5,8,neutral,neutral,negative +"When you go in these developing societies, +","जब आप इन विकासशील इलाकों में जाते हैं, +","jab aap in societies ilakon men jate hain , +",6,6,neutral,neutral,neutral +"Continue applying patches with resolved conflicts +","जारी रखें लागू कर रहा है के साथ परस्पर विरोध +","continue applying patches kar raha hai ke sath resolved conflicts +",4,3,neutral,neutral,negative +"Guard against the disgrace and misery of the day when you shall return to Allah: there everyone shall be paid in full, for the good or evil one has earned and none shall be wronged. +","और उस दिन का डर रखो जबकि तुम अल्लाह की ओर लौटोगे, फिर प्रत्येक व्यक्ति को जो कुछ उसने कमाया पूरा-पूरा मिल जाएगा और उनके साथ कदापि कोई अन्याय न होगा +","aur us din ka dar rakho jabki tum allah ki or lautoge, phir pratyek vyakti ko jo kuchh usne kamaya poora-poora mil jaega aur unke sath kadapi koee anyay n hoga +",9,1,positive,negative,negative +"She answered, This is their home. +","उत्तर था, यह उनका घर है। +","answered tha, yah unka ghar hai. +",7,1,neutral,neutral,neutral +"Your midwife or doctor should give advice on how you can best look after yourself and your baby while you are pregnant. +","जब आप गर्भावस्था में हैं, आप अपनी और बच्चे की किस प्रकार से देखभाल कर सकती हैं, इस बारे आप की मिडवाईफ़ या आपके डाक्टर को परामर्श देना चाहिये। +","jab aap garbhavastha men hain, aap apni aur bachche ki kis prkar se dekhbhal kar sakti hain, is bare aap ki midvaeef ya aapke doctor should give dena chahiye. +",4,5,neutral,neutral,positive +"Many of them are likely to return to India, but while they live abroad, all of them are vulnerable in many ways owing to the fact that they do not enjoy the privileges of citizenship in their host country. +","उनमें से बहुतों के भारत लौटने की संभावना है परंतु विदेश में रहने पर वे सभी इस सच्चाई की वजह से असुरक्षित हैं कि उन्हें अपने मेजबान देश की नागरिकता के लाभ नहीं मिलते हैं। +","many se bahuton ke bharat lautne ki likely hai parntu videsh men rahne par ve sabhi is fact ki vajah se vulnerable hain ki unhen apne host country ki citizenship ke privileges nahin milte hain. +",6,1,negative,negative,negative +"Lala Hardayal was building up his revolutionary Gaddar Party in America. +","उन दिनों अमेरिका में लाला हरदयाल की ‘गदर पार्टी’ एक क्रांतिकारी संगठन का रुप ले रही थी। +","un dinon america men lala hardayal ki gadar party ek revolutionary sngathan ka rup le rahi thi. +",9,0,neutral,neutral,positive +"A plugin sending events to Zeitgeist +","जेटगीइस्ट में कार्यक्रम भेजने के लिए प्लगइन +","events men karyakram bhejne ke lie plugin +",6,4,neutral,neutral,neutral +"% s is inviting you to join% s +","% s आपको% s में शामिल होने के लिए आमंत्रित कर रहा है +","s inviting s men shamil hone ke lie aamntrit kar raha hai +",4,7,neutral,neutral,positive +"And we know how to write that in decimal form. +","और हम जानते हैं की इसे कैसे दसमलव के रूप में लिखते. +","aur ham jante hain ki ise kaise decimal ke form men write +",7,1,neutral,neutral,neutral +"Sarah Palin entered the fray yesterday. In a high-profile interview yesterday with Chris Wallace , she spontaneously brought up the topic of Obama's winning a second term by bombing Iran: +","साराह पालिन इस बहस में कल शामिल हो गयीं। कल एक व्यापक चर्चित साक्षात्कार में क्रिस वालेस के साथ उन्होंने स्वतः ही इस विषय को चर्चा में ला दिया कि ईरान पर बम गिराकर ओबामा दूसरा कार्यकाल विजित कर सकते हैं। +","sarah palin is bahas men yesterday shamil ho gayin. yesterday ek vyapak charchit interview men chris wallace ke sath unhonne svta hi is topic ko charcha men la diya ki iran par bam girakar obama second karykal vijit kar sakte hain. +",9,2,neutral,neutral,positive +"camouflage worn by bullies who are dangerously armed +","बदमाश छलावरण पहने हैं जो खतरनाक हथियारों से लैस हैं +","worn by bullies hain jo khatarnak hathiyaron se lais hain +",6,3,negative,neutral,negative +"With the result , our rivers which we consider holy are no longer so but are laden with pollutants , making them unsuitable for providing water for drinking and other purposes . +","इसके परिणामस्वरूप जिन नदियों को हम पूजनीय मानते थे , अब वे वैसी नहीं रही हैं बल्कि प्रदूषकों से भर गयी हैं जिसकी वजह से उनका पानी पीने तथा अन्य दूसरे कार्यों के लिए उपयुक्त नहीं रह गया है . +","iske result jin rivers ko ham holy mante the , ab ve vaisi nahin rahi hain balki pollutants se bhar gayi hain jiski vajah se unka water drinking tatha other doosre purposes ke lie upyukt nahin rah gaya hai +",8,2,negative,neutral,negative +"Vaccine is available and cannot be given during pregnancy. Women vaccincated against varicella should not try to conceive for at least one month after vaccination. +","टीका उपलब्ध है और गर्भवती स्त्रियों को नहीं दिया जा सकता है. टीका लेने के बाद स्त्रियों को कम से कम एक महीने तक गर्भधारण नहीं करना चाहिये. +","vaccine upalabdh hai aur conceive women ko nahin diya ja sakta hai vaccine lene ke bad women ko kam se kam ek mahine tak garbhdharan nahin karna chahiye +",8,1,negative,neutral,neutral +"Products with factory price are available in show room +","फैक्टरी कीमत पर उत्पाद शो रूम में उपलब्ध है। +","factory price par products show room men available hai. +",10,0,neutral,neutral,neutral +"The pumping system draws water from the open well, bore well, stream, pond, canal etc. +","पम्पिंग प्रणाली जल को खुले कुएं, बोरवेल, जल-धारा, तालाब, नहर आदि से खींचती है। +","pumping system jal ko khule kuen, bore, stream, pond, nahar aadi se khinchti hai. +",9,2,neutral,neutral,positive +"Much of the work done by Bose were on loose sheets of paper which he never bothered to preserve. +","बोस द्वारा किये गये अधिकतर कार्य बिखरे हुए कागज के पन्नों पर थे जिन्हें सुरक्षित रखने का उन्होंने कभी कष्ट नहीं उठाया। +","bos dvara kiye gaye adhikatar kary bikhre hue kagaj ke pannon par the jinhen surakshit rakhne ka unhonne kabhi kasht nahin uthaya. +",9,0,negative,neutral,negative +"Apply the given geometry to the main window +","मुख्य विंडो के लिए दिए गए ज्यामिति को लागू करें +","main window ke lie die ge geometry ko lagoo karen +",9,1,neutral,neutral,neutral +"O believers, if you listen to the infidels they will make you turn your backs, and you will be the losers. +","ऐ ईमानदारों अगर तुम लोगों ने काफ़िरों की पैरवी कर ली तो (याद रखो) वह तुमको उलटे पॉव (कुफ़्र की तरफ़) फेर कर ले जाऐंगे फिर उलटे तुम ही घाटे में आ जाओगे +","ae eemandaron agar o logon ne infidels ki pairvi kar li to yad rakho vah tumko ulte pv kufr ki taraf backs kar le losers phir ulte o hi ghate men aa jaoge +",3,4,negative,neutral,negative +"He debunked the popular misgivings about the concept of Nagalim . +","उन्होंने नगालिम की धारणा को लेकर आम लगों में फैली भ्रांतियों को भी स्पष्ट किया . +","unhonne popular ki dharna ko lekar aam lagon men phaili bhrantiyon ko bhi spasht kiya +",7,1,neutral,neutral,positive +"Bull 's stomach has blown up. +","बैल का पेट फूल जाता है। +","stomach has blown phool jata hai. +",4,1,negative,neutral,neutral +"The certificate has already been imported. +","प्रमाणपत्र पहले ही आयातित किया जा चुका है. +","certificate pahle hi imported kiya ja chuka hai +",7,2,neutral,neutral,neutral +"Let 's draw this on the number line. +","चलो यह संख्या लाइन पर आरेखित करें। +","let yah number line par aarekhit karen. +",6,4,neutral,neutral,positive +"and when the Koran is recited to them they do not bow? +","और जब उन्हें कुरआन पढ़कर सुनाया जाता है तो सजदे में नहीं गिर पड़ते? +","aur jab unhen koran pakar sunaya jata hai to sajde men nahin gir parte +",4,6,neutral,neutral,neutral +"Chandrashekhar himself is undecided as to what he should do. +","स्वयं चंद्रशेखर इस संदर्भ में अनिश्चित है कि उसे क्या करना चाहिए। +","svyn chndrshekhar is sndarbh men anishchit hai ki use kya karna chahie. +",9,1,neutral,neutral,negative +"Surely the Day of Judgement has an appointed time; +","निस्संदेह फ़ैसले का दिन एक नियत समय है, +","surely day of judgement ek appointed time hai, +",8,4,neutral,neutral,positive +"Internal error: UID in invalid format: %s +","आंतरिक त्रुटि:अवैध प्रारूप में UID: %s +","internal error : invalid format men UID : uid +",7,1,negative,neutral,negative +"The house around them was settling down into unquiet sleep, but they were both wide awake. +","चारों ओर से उन्हें घेरता हुआ मकान अशान्त निद्रा में सो रहा था, किन्तु वे दोनों जाग रहे थे। +","charon or se unhen gherta huaa house unquiet sleep men so raha tha , kintu ve donon wide rahe the. +",5,6,neutral,neutral,neutral +"Non - Political Terrorism - Terrorism is not aimed for the political purposes “”designed to create and maintain fear Ssacen Uchcha Sthar force for the purposes of display, but ultimately a political objective the achievement of personal or collective gain rather than“” +","गैर राजनीतिक आतंकवाद-कि आतंकवाद के उद्देश्य से नहीं है राजनीतिक प्रयोजनों पर जो सचेत डिजाइन बनाने और बनाये रखने के डर के उच्च स्तर के लिए प्रदर्शन बलपूर्वक (coercive) प्रयोजनों लेकिन अंत व्यक्तिगत हो या सामूहिक एक राजनीतिक उद्देश्य की प्राप्ति के बजाए लाभ. +","non political aatnkvad-ki terrorism ke objective se nahin hai political purposes par jo sachet dijain banane aur force rakhne ke fear ke uchch star ke lie display balpoorvak ssacen purposes lekin ant personal ho ya collective ek political objective ki achievement ke bajae labh +",7,1,negative,neutral,negative +"things that didn 't quite exist physically like insurance, stocks and bonds, enterprise softwares, +","चीजें हैं जो काफी शारीरिक रूप से मौजूद नहीं था बीमा, स्टॉक्स और बांड्स, उद्यम सॉफ्टवेयर की तरह, +","things hain jo kaphi sharirik stocks se maujood nahin tha insurance , stks aur bonds , enterprise softwares ki tarah , +",7,1,neutral,neutral,positive +"This is convenient as the members of the family can give a constant care to the vegetables during leisure and the wastewater from the bathrooms and kitchen can easily be diverted to the vegetable beds. +","यह सुविधाजनक स्थान होता है क्योंकि परिवार के सदस्य खाली समय में साग-सब्जियों पर ध्यान दे सकते हैं तथा रसोईघर व स्नानघर से निकले पानी आसानी से सब्जी की क्यारी की ओर घुमाया जा सकता है। +","yah convenient sthan hota hai kyonki members ke sadasy khali samay men sag-sabjiyon par care constant sakte hain tatha rasoeeghar v wastewater se nikle pani aasani se vegetables ki kyari ki or ghumaya ja sakta hai. +",7,1,positive,neutral,positive +"God will say, ""Enter the Fire and join the bands of jinn and men that have gone before you."" Every time a host enters [the fire], it will curse its fellow - host, then, when they are all gathered there, the last of them will say of the first, ""Our Lord, it was they who led us astray: give them double punishment in the Fire,"" - - God will say, ""Every one of you will have double punishment, though you do not know it"" - - +","वह कहेगा, ""जिन्न और इनसान के जो गिरोह तुमसे पहले गुज़रे हैं, उन्हीं के साथ सम्मिलित होकर तुम भी आग में प्रवेश करो।"" जब भी कोई जमाअत प्रवेश करेगी, तो वह अपनी बहन पर लानत करेगी, यहाँ तक कि जब सब उसमें रल-मिल जाएँगे तो उनमें से बाद में आनेवाले अपने से पहलेवाले के विषय में कहेंगे, ""हमारे रब! हमें इन्हीं लोगों ने गुमराह किया था; तो तू इन्हें आग की दोहरी यातना दे।"" वह कहेगा, ""हरेक के लिए दोहरी ही है। किन्तु तुम नहीं जानते।"" +","vah jinn , time aur first ke jo host tumse pahle punishment hain , unhin ke sath sammilit hokar tum bhi fire men enters karo. jab bhi koee jamaat enters karegi , to vah apni fellow par lanat karegi , yahan tak ki jab sab usmen ral-mil jaenge to unmen se bad men aanevale apne se pahlevale ke vishay men kahenge , hamare god ! hamen inhin logon ne astray kiya tha to too inhen fire ki double yatna de. vah jinn , harek ke lie double hi hai. kintu tum nahin jante. +",5,1,neutral,negative,negative +"Cannot attach CMS Enveloped data +","CMS लिफाफाकृत आंकड़ा संलग्न नहीं कर सकता है +","CMS cms data snlagn nahin kar sakta hai +",5,7,negative,neutral,neutral +"Thereafter, some disputes arose between the parties, who started living separately. +","इसके बाद, दलों के बीच कुछ विवाद उठे, जिन्होंने अलग रहना शुरू कर दिया. +","iske bad , parties ke bich kuchh disputes uthe , jinhonne alag rahna shuroo kar diya +",9,2,neutral,neutral,positive +"These powers of the Supreme Court to grant special leave to appeal are far wider than the High Courts' power to grant certificates to appeal to the Supreme Court under article 134. +","अनुच्छेद 134 के अधीन उच्चतम न्यायालय में अपील के लिए प्रमाणपत्र देने की जो शक्ति उच्च न्यायालय को प्राप्त है, उससे कहीं अधिक व्यापक उच्चतम न्यायालय की ये शक्तियां अपील की विशेष इजाजत देने के बारे में हैं. +","anuchchhed 134 ke adhin uchchatam nyayalay men apil ke lie prmanapatr dene ki jo shakti uchch nyayalay ko prapt hai, usse kahin adhik vyapak uchchatam nyayalay ki ye shaktiyan apil ki grant special leave ke bare men hain +",5,3,neutral,neutral,positive +"In those days i. e. before 1947 Urdu was the State language of the Punjab, and Punjabi was grossly neglected by the intellectuals, most of who behaved like 'Sahibs' in their speech, mannerisms, etc. +","उन दिनों 1947 से पूर्व उर्दू पंजाब की राजभाषा थी और बुद्धिजीवी जिनमें से अधिकांश तो अपनी बातचीत व व्यवहार में साहिबों जैसा व्यवहार करते थे तछा पंजाबी की पूरी तरह उपेक्षा करते थे। +","un dinon 1947 se poorv state language ki rajbhasha thi aur buddhijivi jinmen se adhikansh to apni batchit v vyavhar men sahibon jaisa vyavhar karte the tachha pnjabi ki poori tarah upeksha karte the. +",6,4,negative,negative,negative +"Sarah Palin entered the fray yesterday. In a high-profile interview yesterday with Chris Wallace , she spontaneously brought up the topic of Obama's winning a second term by bombing Iran: +","साराह पालिन इस बहस में कल शामिल हो गयीं। कल एक व्यापक चर्चित साक्षात्कार में क्रिस वालेस के साथ उन्होंने स्वतः ही इस विषय को चर्चा में ला दिया कि ईरान पर बम गिराकर ओबामा दूसरा कार्यकाल विजित कर सकते हैं। +","sarah palin is bahas men kal shamil ho gayin. kal ek vyapak charchit sakshatkar men kris vales ke sath unhonne svta hi is vishay ko charcha men la diya ki eeran par bam girakar obama doosra karykal vijit kar sakte hain. +",5,8,neutral,neutral,positive +"And that 's probably the key lesson to my short talk here, is that +","और मेरे छोटे व्याख्यान का शायद महत्वपूर्ण सबक है, +","aur mere short talk ka shayad key lesson hai , +",7,5,neutral,neutral,neutral +"(iii) ""contract"" shall include sub-contract; +","(iii) ""संविदा"" के अंतर्गत उपसंविदा भी है; +","iii snvida ke include contract bhi hai +",6,2,neutral,neutral,neutral +"And the Word will be fulfilled against them, because of their wrong - doing, and they will be unable to speak (in plea). +","इन पर (अज़ाब का) वायदा पूरा हो गया फिर ये लोग कुछ बोल भी तो न सकेंगें +","in par word ka vayda poora ho gaya phir ye log kuchh plea bhi to n wrong +",6,2,negative,neutral,negative +"Sonabadra District in Uttar Pradesh is the one and only place whose borders touches four other districts | +","उत्तर प्रदेश का सोनभद्र जिला देश का एक मात्र ऐसा जिला है जिसकी सीमाएँ सर्व चार प्रदेशों को छूती है। +","uttar pradesh ka sonabadra district one ka ek only aesa district hai jiski simaen sarv char prdeshon ko chhooti hai. +",8,2,neutral,neutral,neutral +"Canada 's currently led by a party +","कनाडा में आज जिस पार्टी की सरकार है, +","canada men aaj jis party ki sarkar hai , +",9,1,neutral,neutral,positive +"Droupadi is an emanation of Mahashakti, the Power Creatrix, as well. +","द्रौपदी महाशक्ति का भी स्रोत है और सृष्टि सत्ता का भी। +","draupdi emanation ka bhi srot hai aur srishti satta ka bhi. +",8,4,neutral,neutral,positive +"However, the suit was filed immediately thereafter, without waiting for two months +","हालाँकि मुकदमा तुरंत ही दायर कर दिया गया था बिना दो महीने इंतज़ार करे ही. +","halanki suit turnt hi dayar kar diya gaya tha bina do months intazar kare hi +",7,1,neutral,neutral,neutral +"Dr. Ambedkar was at pains to emphasise that the new republic would be a ""Union” of States, as opposed to a"" Federation” of States. The States would have no right to secede. +","डॉ. अंबेडकर ने बहुत परिश्रम से यह बताने का प्रयास किया था कि नया गणतंत्र राज्यों के ‘परिसंघ’के बजाय राज्यों का ‘संघ’ होगा। राज्यों को अलग होने का अधिकार नहीं होगा। +","pains ambedkar ne bahut parishram se yah batane ka pryas kiya tha ki new republic states ke parisngh ke bajay states ka union hoga. states ko alag hone ka right nahin hoga. +",7,0,negative,negative,negative +"that we should abolish this age - discriminatory word +","कि हमें इस उम्र-पक्षपाती शब्द को मिटा ही देना चाहिए +","ki hamen is umr-pakshpati age ko discriminatory hi dena chahie +",7,1,negative,negative,neutral +"For the Indians in general, patriotism was the only meaning of the ideals and lessons preached by Gandhiji. +","भारतीय जन-मानस के समक्ष गाँधी द्वारा प्रादुर्भूत आदर्शों और उपदेशों का अर्थ मात्र देश-भक्ति था। +","bhartiy jan-manas ke samaksh gandhi dvara pradurbhoot ideals and lessons ka arth matr desh-bhakti tha. +",8,4,neutral,neutral,positive +"XRC resource: Incorrect colour specification '%s' for property '%s'. +","एक्सआरसी स्रोतसाधन: गलत रंग विशिष्टता '%s' गुणधर्म '%s' के लिए। +","eksaarsi srotsadhan: incorrect colour specification s gunadharm s ke lie. +",7,1,negative,neutral,neutral +"Another intriguing structure at the Imambara is the five - storied baoli (step well), which belongs to the pre - Nawabi era. +","इमामबाड़े की एक और विहित संरचना 5 मंजिला बावड़ी (सीढ़ीदार कुंआ) है, जो पूर्व नवाबी युग की है। +","imambara ki ek aur vihit structure intriguing mnjila bavari siidar kunaa hai , jo pre nawabi era ki hai. +",5,2,neutral,neutral,positive +"Please accept, Excellency, my good wishes for your personal health and well-being, as well as for the progress and prosperity of the friendly people of the Republic of Equatorial Guinea. +","कृपया अपने व्यक्तिगत स्वास्थ्य तथा कुशलता और भूमध्यवर्ती गिनी गणराज्य की मैत्रीपूर्ण जनता की प्रगति और समृद्धि के लिए मेरी शुभकामनाएं स्वीकार करें। +","please apne good health tatha kushalta aur equatorial guinea republic ki friendly people ki progress aur prosperity ke lie meri wishes svikar karen. +",9,2,positive,positive,positive +"With such modes and conventions ruling the stage, it is plausible to assume further that playwrights started preparing their scripts suitably and incorporated directives for acting and representation. +","मंचन को नियंत्रित करना भी संगत होगा कि नाटककार तदनुसार अपनी पांडुलिपियाँ तेयार करने लगे होंगे तथा अभिनय और प्रस्तुतीकरण के निर्देशों का समावेश करने लगे होंगे। +","scripts ko niyntrit karna bhi sngat further ki playwrights tadnusar apni pandulipiyan teyar karne such honge tatha stage aur representation ke directives ka incorporated karne such honge. +",7,3,neutral,neutral,neutral +"He commenced writing it on August 2, 1888, completed it on September 9, 1888, and released it in December. +","दूसरी अगस्त सन् 1888 को लिखनी शुरु की और 9 सितम्बर सन् 1888 को उसे पूर्ण किया तथा दिसम्बर में प्रकाशित किया। +","doosri agast san 1888 ko commenced writing ki aur 9 sitambar san 1888 ko use poorn kiya tatha disambar men prkashit kiya. +",6,5,neutral,neutral,neutral +"working together for a common goal +","किसी सामान्य उद्देश्य के लिए मिलकर काम करना +","kisi common goal ke lie milakar kam karna +",8,1,positive,neutral,neutral +"and on the mountains, how they are firmly set up, +","और पहाड़ो की ओर कि कैसे खड़े किए गए? +","aur mountains ki or ki firmly set kie ge +",8,2,neutral,neutral,neutral +"Technologies that enable efficient use of biomass are becoming prevalent in rural areas. +","जैव ईंधन के प्रभावी उपयोग को सुरक्षित करती प्रौद्योगिकियाँ ग्रामीण क्षेत्रों में फैल रहीं हैं। +","technologies eendhan ke efficient use ko surakshit karti praudyogikiyan rural areas men phail rahin hain. +",6,0,positive,positive,positive +"The file does not appear to be a playlist +","यह फ़ाइल प्लेलिस्ट नहीं दिखता है +","yah file playlist nahin dikhta hai +",9,1,neutral,neutral,neutral +"Pakistani territory of today has been witness to many cultures +","आज का पाकिस्तानी भूभाग कई संस्कृतियों का गवाह रहा है। +","aaj ka pakistani territory kee cultures ka witness raha today +",7,0,neutral,neutral,neutral +"User 's $HOME /. dmrc file is being ignored. This prevents the default session and language from being saved. File should be owned by user and have 644 permissions. User' s $HOME directory must be owned by user and not writable by other users. +","उपयोक्ता का $HOME/. dmrc फाइल अनदेखा किया जा रहा है. यह मूलभूत सत्र और भाषा को सहेजे जाने से रोकता है. फाइल को उपयोक्ता के द्वारा स्वामित्व दिया जाना चाहिये और 644 अनुमति रखना चाहिये. उपयोक्ता की $HOME निर्देशिका उपयोक्ता के द्वारा जरूर स्वामित्व में रखनी चाहिये और अन्य उपयोक्ता द्वारा नहीं लिखने योग्य होना चाहिये. +","user ka HOME dmrc file andekha kiya ja raha hai yah moolbhoot satr aur bhasha ko saheje jane se rokta hai file ko user ke dvara owned diya jana chahiye aur 644 anumti rakhna chahiye user ki HOME nirdeshika user ke dvara jaroor owned men rakhni chahiye aur any user dvara nahin likhne yogy hona chahiye +",9,0,negative,negative,positive +"On GRETIL thousands of Sanskrit text in various encoding. GRETIL +","पर सहस्रों संस्कृत ग्रन्थ अनेक स्रोतों से अनेक इनकोडिंग में +","par gretil sanskrit text various sroton se various inkoding men +",6,6,neutral,neutral,neutral +"Daar ji let our friendship grow but asked him to get permission of his parents for this match so that there was no problem later on. +","दार जी ने हमारी मित्रता को पल्लवित-पुष्पित होने दिया, परन्तु इनको कहा कि तुम भी अपने घरवालों से इस संबंध में सहमति ले लो, ताकि बाद में कोई कठिनाई न हो। +","daar ji ne hamari friendship ko pallvit-pushpit hone diya , match inko kaha ki tum bhi apne gharvalon se is snbndh men permission grow parents , taki bad men koee problem n ho. +",5,5,neutral,neutral,positive +"After Gandhiji initiated the Non - Cooperation Movement, Azad was trying to choose whether to follow the ways of Gandhiji or the violent ways of the revolution. +","गांधीजी के असहयोग आन्दोलन छिड़ने के बाद वे गांधीजी के तरीकों और हिंसक आन्दोलन में से अपने लिए रास्ता चुनने लगे। +","gandhiji ke cooperation movement chhirne ke bad ve gandhiji ke tarikon aur hinsak aandolan men se apne lie rasta chunne lage. +",7,0,neutral,neutral,negative +"He instilled the core values of this organization, the three I’s i. e. industry, impartiality and integrity in the organization. +","उन्होंने इस संगठन में तीन प्रमुख मूल्यों परिश्रम, निष्पक्षता और ईमानदारी का समावेश किया। +","unhonne is sngathan men tin prmukh moolyon parishram, impartiality and integrity ka samavesh kiya. +",8,3,positive,positive,positive +"All the appellants pleaded not guilty to the charge and claimed to be tried +","सभी अपीलकर्ताओं ने अपराध स्वीकार नहीं किया और मुक़दमा चलाये जाने की मांग की. +","sabhi appellants ne apradh svikar nahin kiya aur mudma chalaye jane ki mang ki +",9,0,neutral,negative,positive +"This has happened in India, too. +","ऐसा भारत में भी हुआ है। +","happened in india bhi huaa hai. +",4,3,neutral,neutral,neutral +"Because over here, on this line, let 's take +","क्योंकि अधिक यहाँ, इस पंक्ति पर, चलो ले +","kyonki adhik yahan, is line par, chalo le +",6,8,neutral,neutral,neutral +"The first gurus were Chunakkara Achutha Varier and Sankara Varier. +","प्रथम गुरु चुनक्करा अच्युत वारियर और शंकर वारियर रहे। +","first gurus chunakkra achyut variyar aur sankara variyar rahe. +",6,4,neutral,neutral,neutral +"He covered the vacuum tube with black paper and with card - board through which no visible light could pass. +","उन्होंने निर्यात ट्यूब को काले कागज और कार्डबोर्ड से ढंक दिया, जिससे होकर कोई दृश्य प्रकाश एक और से दूसरी और नहीं गुजर सकता था। +","unhonne card tube ko black paper aur board se vacuum diya , jisse hokar koee visible light ek aur se doosri aur nahin gujar sakta tha. +",5,2,neutral,neutral,negative +"Error: Object path is not specified +","त्रुटि: ऑब्जेक्ट पथ निर्दिष्ट नहीं है +","error: object path nirdisht nahin hai +",9,1,neutral,negative,negative +"Set the row to use as dynamic column headers when speaking calc cells. +","गतिशील कॉलम हेडर के रूप में प्रयोग के लिए पंक्ति सेट करें जब कैल्क सेल बोला जा रहा हो. +","dynamic klam headers ke roop men pryog ke lie row set karen jab calc sel bola ja raha ho +",7,2,neutral,neutral,positive +"It is today a premier organization for industry, trade and service sectors in Karnataka. +","आज यह कर्नाटक के उद्योग,व्यापार तथा सेवा क्षेत्र का एक प्रमुख संगठन है। +","aaj yah karnatak ke udyog,trade and service kshetr ka ek today a premier +",6,2,positive,positive,neutral +"Northeastern India The area covering the Indian States of Assam, Arunachal Pradesh, Meghalaya, Manipur and Tripura, and neighbouring areas of Bangladesh and Burma are one of the most earthquake - prone regions of the world. +","यह क्षेत्र, भारतीयक राज्यों यथा असम, अरूणाचल प्रदेश, मेघालय, मणिपुर, तथा त्रिपुरा एवं निकटवर्ती बांग्लादेश तथा वर्मा को आच्छादित करता है, जो विश्व का सर्वाधिक भूकंप प्रभावित क्षेत्र है। +","yah kshetr, bhartiyak rajyon yatha asam, aroonachal prdesh, meghalay, manipur, tatha tripura evn nikatavarti bangladesh tatha varma ko aachchhadit karta hai, jo vishv ka sarvadhik bhooknp prbhavit kshetr hai. +",4,7,neutral,neutral,neutral +"You are now connected to the WiMAX network. +","आप अभी WiMAX संजाल से कनेक्टेड हैं. +","aap abhi WiMAX network se connected hain +",9,0,neutral,neutral,neutral +"Unto this, then, summon (O Muhammad). And be thou upright as thou art commanded, and follow not their lusts, but say: I believe in whatever scripture Allah hath sent down, and I am commanded to be just among you. Allah is our Lord and your Lord. Unto us our works and unto you your works; no argument between us and you. Allah will bring us together, and unto Him is the journeying. +","अतः इसी लिए (उन्हें सत्य की ओर) बुलाओ, और जैसा कि तुम्हें हुक्म दिया गया है स्वयं क़ायम रहो, और उनकी इच्छाओं का पालन न करना और कह दो, ""अल्लाह ने जो किताब अवतरित की है, मैं उसपर ईमान लाया। मुझे तो आदेश हुआ है कि मैं तुम्हारे बीच न्याय करूँ। अल्लाह ही हमारा भी रब है और तुम्हारा भी। हमारे लिए हमारे कर्म है और तुम्हारे लिए तुम्हारे कर्म। हममें और तुममें कोई झगड़ा नहीं। अल्लाह हम सबको इकट्ठा करेगा और अन्ततः उसी की ओर जाना है।"" +","ata isi lie unhen saty ki or bulao, aur jaisa ki tumhen hukm diya gaya hai svyn ayam raho, aur unki ichchhaon ka palan n karna aur kah do, allah ne jo kitab avatrit ki hai, main usapar eeman laya. mujhe to aadesh huaa hai ki main tumhare bich nyay karoon. allah hi hamara bhi rab hai aur tumhara bhi. hamare lie hamare karm hai aur tumhare lie tumhare karm. hammen aur tummen koee jhagara nahin. allah ham sabko ikattha karega aur antta usi ki or jana hai. +",9,2,neutral,neutral,positive +"Truly, to Us is their return; +","बेशक उनको हमारी तरफ़ लौट कर आना है +","beshak unko hamari return laut kar aana hai +",7,1,positive,neutral,positive +"He worked there with utmost steadfastness and devotion. +","उन्होंने वहॉं रहकर दत्तचित्तता के साथ काम किया। +","unhonne vahn rahakar dattchittta ke sath kam kiya. +",9,1,positive,neutral,positive +"But his words fell on deaf ears, for was he not the poet of a nation defeated and enslaved? +","लेकिन उनकी वाणी किन्हीं बहरे कानों में पड़ रही थी, क्या वे स्वयं एकपराजित और परतंत्र देश के कवि नहीं थे? +","lekin unki vani kinhin fell on deaf par rahi thi, kya ve svyn ekaprajit aur partntr desh ke kavi nahin the +",7,2,negative,neutral,negative +"Some months ago there were normal democratic elections there and as a result a popular radical party a joint popular front came into power . +","कुछ महीने हुए वहां सामान्य लोकतांत्रिक चुनाव हुए और फलस्वरूप वहां एक लोकप्रिय रेडिकल पार्टी-संयुक़्त लोकप्रिय मोर्चा-सत्ता में आयी . +","kuchh months hue vahan normal democratic elections hue aur result vahan ek popular radical parti-snyut popular morcha-satta men front +",7,3,neutral,neutral,positive +"Loan amount up to Rs. 7. 50 lacs: 10 years. +","रु. 7.50 तक की ऋण के लिए: 10 वर्ष +","amount 750 tak ki loan ke lie : 10 years +",6,3,neutral,neutral,neutral +"The best thing is to go to doctor to monitor the size of uterus and how much amniotic fluid is in womb. +","चिकीत्सक द्वारा गर्भाशय के आकार व कोख में स्थित उल्वद्रव की मात्रा की निगरानी की जानी चाहिये +","chikitsak dvara uterus ke size v thing men sthit amniotic ki matra ki nigrani ki jani chahiye +",8,2,neutral,neutral,positive +"The magicians said: ""Moses, will you throw down or shall we be the first to throw?"" +","ग़रज़ जादूगरों ने कहा (ऐ मूसा) या तो तुम ही (अपने जादू) फेंको और या ये कि पहले जो जादू फेंके वह हम ही हों +","raz magicians ne kaha ae moses ya to tum hi apne first phenko aur ya ye ki pahle jo first phenke vah ham hi hon +",7,1,neutral,neutral,neutral +"The magicians answered: ""By Him Who has created us, we shall never prefer you to the Truth after manifest Signs have come to us. So decree whatever you will. Your decree will pertain, at the most, to the present life of the world. +","जादूगर बोले कि ऐसे वाजेए व रौशन मौजिज़ात जो हमारे सामने आए उन पर और जिस (खुदा) ने हमको पैदा किया उस पर तो हम तुमको किसी तरह तरजीह नहीं दे सकते तो जो तुझे करना हो कर गुज़र तो बस दुनिया की (इसी ज़रा) ज़िन्दगी पर हुकूमत कर सकता है +","jadoogar bole ki aese vajee v manifest signs jo hamare samne aae un par aur jis khuda ne hamko paida kiya us par to ham tumko kisi tarah tarjih nahin de sakte to jo tujhe karna ho kar guzar to bas duniya ki isi zara zindgi par hukoomat kar sakta hai +",4,6,neutral,negative,positive +"ATAL BIHARI VAJPAYEE: SELECTED SPEECHES Firstly, it helps correct a grave distortion that has taken place in public consciousness. +","पहला, इससे जन-चेतना में आने वाली एक गंभीर विकृति को दूर करने में मदद मिलती है। +","pahla , isse jan-chetna men aane place ek grave distortion ko door karne men public milti atal +",4,1,neutral,neutral,neutral +"The presiding officer of each House or any other officer or Member of Parliament who is for the time being vested with the powers to regulate procedure , or to enforce or carry out the decision of either House of Parliament , is not subject to the jurisdiction of the courts in exercise of those powers -LRB- articles 122 -LRB- 2 -RRB- and 105 -LRB- 3 -RRB- -RRB- . +","प्रत्येक सदन का पीठासीन अधिकारी या कोई अधिकारी या संसद-सदस्य जिनमें अस्थायी रूप में प्रक्रिया या कार्य-संचालन को विनियमित करने की तथा संसद के किसी सदन के निर्णय को लागू करने की शक्तियां निहित हों , इन शक्तियों के प्रयोग के विषय में किसी न्यायालय की अधिकारिता के अधीन नहीं होगा [अनुच्छेद 122 ( 2 ) तथा 105 ( 3 ) ] . +","jurisdiction house ka member officer ya koee officer ya snsad-sadasy jinmen asthayi roop men procedure ya kary-snchalan ko viniymit karne ki time parliament ke kisi house ke decision ko lagoo karne ki powers nihit hon , in shaktiyon ke pryog ke subject men kisi nyayalay ki adhikarita ke articles nahin hoga anuchchhed 122 2 time 105 3 +",7,3,neutral,negative,positive +"A certificate indicating reputation for financial integrity. +","ऐसा प्रमाणपत्र जो वित्तीय मामलों में निष्ठा सम्बन्धी व्यवहार को प्रकट करने वाला हो। +","aesa prmanapatr jo vittiy mamlon men nishtha sambandhi vyavhar ko prakat karne vala ho. +",9,1,neutral,neutral,positive +"When they came upon you from above you and from below you, and when eyes turned aside and hearts reached to the gullets, and of Allah ye were imagining various things. +","जिस वक्त वह लोग तुम पर तुम्हारे ऊपर से आ पड़े और तुम्हारे नीचे की तरफ से भी पिल गए और जिस वक्त (उनकी कसरत से) तुम्हारी ऑंखें ख़ैरा हो गयीं थी और (ख़ौफ से) कलेजे मुँह को आ गए थे और ख़ुदा पर तरह-तरह के (बुरे) ख्याल करने लगे थे। +","jis allah vah log tum par tumhare oopar se aa pare aur tumhare niche ki taraph se bhi gullets hearts aur jis allah unki kasarat se eyes ऑnkhen aira ho gayin thi aur auph se kaleje munh ko aa hearts the aur uda par tarah-tarah ke various khyal karne lage the. +",4,6,neutral,neutral,positive +"Both J. P. and Vinoba supported the war. +","जे. पी. और विनोबा दोनों ने उस युद्ध का समर्थन किया। +","je pi aur vinoba donon ne us supported the war kiya. +",5,5,neutral,neutral,negative +"to go out and continue this very important thing +","जिससे कि वो इस बहुत ही महत्वपूर्ण काम को जारी रख सकें +","jisse ki vo is bahut hi important thing ko jari rakh saken +",8,2,neutral,neutral,positive +"I ask no recompense of you; my reward is only with the Lord of the Universe. +","मैं इस काम पर तुमसे कोई प्रतिदान नहीं माँगता। मेरा प्रतिदान तो बस सारे संसार के रब के ज़ि्म्मे है। +","main is kam par tumse koee prtidan nahin mangta. mera prtidan to bas sare snsar ke rab ke zimme hai. +",9,2,positive,neutral,positive +"View the output produced by the last executed command +","अंतिम कार्यान्वित कमांड द्वारा उत्पादित आउटपुट देखेंFile +","last executed command dvara utpadit output dekhenFile +",8,1,neutral,neutral,neutral +"It is divided into six parts , five of which deal with cosmic matters . +","यह छह भागों में विभक़्त है जिनमें से पांच में ब्रह्मांड से संबंधित विषयों पर चर्चा की गई है . +","yah chhah bhagon men vibhat hai jinmen se deal with cosmic se snbndhit vishyon par charcha ki gee hai +",4,5,neutral,neutral,neutral +"Usman Riaz: Yes, that was the first one. And then I - +","उस्मान रियाजः हाँ, यह पहला था. और फिर मैं... +","usman riyaja han, yah pahla tha aur phir main +",9,1,neutral,neutral,positive +"- Harper Lee, To Kill a Mocking Bird - +","हार्पर ली, टु किल ए मॉकिंग बर्ड +","harper bird , tu kil e lee bard +",7,1,neutral,neutral,negative +"Split Mode (Equal Split) +","स्प्लिट मोड (बराबर स्प्लिट) +","split mode equal split +",7,3,neutral,neutral,neutral +"Why give BCG vaccine only on the left upper arm? +","बीसीजी का टीका केवल बाईं भुजा पर ऊपर क्यों लगाया जाता है? +","bisiji ka tika left upper arm par oopar kyon lagaya jata hai +",8,2,neutral,neutral,neutral +"It was karthik month when the candle was lit +","कार्तिक मास की सघन काली अमावस्या की वह रात्रि दीयों की रोशनी से जगमगा उठी। +","kartik month ki saghan kali amavasya ki vah ratri candle ki roshni se jagamga uthi. +",8,1,neutral,neutral,neutral +"Then it goes back to potential energy again. +","तो यह वापस संभावित ऊर्जा को फिर से चला जाता है। +","to yah back to potential ko phir se chala jata hai. +",6,1,neutral,neutral,positive +"And if terrorist is impolite, adjectives such as Islamist, Islamic, and Muslim become unmentionable. My blog titled “Not Calling Islamism the Enemy ” provides copious examples of this avoidance, along with its motives. In short, those who would replace War on Terror with A Global Struggle for Security and Progress imagine this linguistic gambit will win over Muslim hearts and minds. +","और यदि आतंकवादी असभ्य हैं तो इस्लामवादी, इस्लामी और मुस्लिम का उल्लेख करने से परहेज किया जाता है। मेरे ब्लाग Not calling Islamism the Enemy में इस बात के उदाहरण दिये गये हैं कि इससे परहेज क्यों किया जाता है और इसका उद्देश्य क्या है? संक्षेप में जो लोग आतंक के विरुद्ध युद्ध को सुरक्षा और विकास के लिये वैश्विक संघर्ष के रूप में नया नाम देना चाहते हैं उन्हें कल्पना है कि इस प्रकार भाषा बदल कर वे मुस्लिम ह्रदय और मस्तिष्क को विजित कर सकेंगे। +","aur yadi terrorist asabhy hain to islamist , islamic aur muslim ka short karne se avoidance kiya jata islamism mere blog gambit calling Islamism the Enemy men is bat ke udaharan diye gaye hain ki isse avoidance kyon kiya jata hai aur iska uddeshy kya hai snkshep men jo log terror ke viruddh war ko security aur progress ke liye vaishvik struggle ke roop men naya nam dena chahte hain unhen kalpna hai ki is prkar linguistic badal kar ve muslim hearts aur minds ko vijit kar sakenge. +",7,3,negative,negative,negative +"Then as for him whose good deeds are preponderant, these are the successful. +","फिर जिनके पलड़े भारी हुए तॊ वही हैं जो सफल। +","phir good deeds bhari hue t vahi hain jo good +",5,3,positive,positive,positive +"And now we can just unwind this. +","और अब हम सिर्फ यह खोलना कर सकते हैं। +","aur ab ham sirph yah unwind kar sakte hain. +",8,2,positive,neutral,neutral +"As for the good land, vegetation comes forth in abundance by the command of its Lord, whereas from the bad land, only poor vegetation comes forth. Thus do We expound Our signs in diverse ways for a people who are grateful. +","और अच्छी भूमि के पेड़-पौधे उसके रब के आदेश से निकलते है और जो भूमि ख़राब हो गई है तो उससे निकम्मी पैदावार के अतिरिक्त कुछ नहीं निकलता। इसी प्रकार हम निशानियों को उन लोगों के लिए तरह-तरह से बयान करते है, जो कृतज्ञता दिखानेवाले है +","aur good land ke per-paudhe uske rab ke aadesh se nikalte hai aur jo bhoomi rab ho gee hai to usse nikammi paidavar ke atirikt kuchh nahin nikalta. isi prkar ham nishaniyon ko un logon ke lie tarah-tarah se bayan karte hai, jo kritajnjta dikhanevale hai +",4,5,positive,positive,negative +"There is another gurudwara in Great Nicobar at Campbell Bay . +","एक अन्य गुरुद्वारा ग्रेट निकोबार के कैम्पल बे में है . +","ek great gurudwara gret nicobar ke campbell be men hai +",6,5,neutral,neutral,positive +"Thou mayest defer (the turn of) any of them that thou pleasest, and thou mayest receive any thou pleasest: and there is no blame on thee if thou invite one whose (turn) thou hadst set aside. This were nigher to the cooling of their eyes, the prevention of their grief, and their satisfaction - that of all of them - with that which thou hast to give them: and Allah knows (all) that is in your hearts: and Allah is All - Knowing, Most Forbearing. +","इनमें से जिसको (जब) चाहो अलग कर दो और जिसको (जब तक) चाहो अपने पास रखो और जिन औरतों को तुमने अलग कर दिया था अगर फिर तुम उनके ख्वाहॉ हो तो भी तुम पर कोई मज़ाएक़ा नहीं है ये (अख़तेयार जो तुमको दिया गया है) ज़रूर इस क़ाबिल है कि तुम्हारी बीवियों की ऑंखें ठन्डी रहे और आर्जूदा ख़ातिर न हो और वो कुछ तुम उन्हें दे दो सबकी सब उस पर राज़ी रहें और जो कुछ तुम्हारे दिलों में है खुदा उसको ख़ुब जानता है और खुदा तो बड़ा वाक़िफकार बुर्दबार है +","inmen se jisko jab mayest hadst kar do aur jisko jab tak mayest apne pas rakho aur jin aurton ko tumne hadst kar diya tha agar phir thou unke khvah ho to bhi thou par koee blame nahin hai ye ateyar jo thee diya gaya hai zaroor is abil hai ki tumhari biviyon ki ऑnkhen thandi rahe aur aarjooda atir n ho aur knowing kuchh thou unhen grief do sabki sab us par prevention rahen aur jo kuchh tumhare hearts men hai eyes usko ub janta hai aur eyes to bara vaiphkar forbearing hai +",4,3,neutral,positive,positive +"There is a great percentage of poetry in his so - called dramas, also there is music in them. +","उनके तथाकथित नाटकों में, कविताओं का अंश मुख्य है, उनमें संगीत भी शामिल है। +","unke called dramas men, percentage of poetry mukhy hai, unmen sngit bhi shamil hai. +",7,1,positive,neutral,positive +"budha 's birthday is still conducted in theravada countries and his mother got death after 7 days of his birth +","बुद्ध का जन्म दिन व्यापक रूप से थएरावदा देशों में मनाया जाता है उनकी माता का उनके जन्म के सात दिन बाद निधन हो गया था। +","buddh ka birthday death vyapak roop se theravada countries men manaya jata hai unki mother ka unke birthday ke sat death bad budha ho gaya tha. +",7,2,negative,negative,negative +"Iraqi maltreatment of Iranian dissidents both raises humanitarian concerns and points to the MeK's larger importance as a mechanism to thwart the U.S. goal of minimizing Tehran's influence in Iraq. +","ईरान के विद्रोहियों के साथ इराक द्वारा किये जा रहे दुर्व्यवहार से जो प्रश्न खडे होते हैं उनमें मानवता के आधार पर चिन्ता तो है ही यह इराक में तेहारान के प्रभाव को बढने से रोकने में मुजाहिदीने खल्क की महती भूमिका को भी अवरुद्ध करता है। +","eeran ke vidrohiyon ke sath irak dvara kiye ja rahe durvyavhar se jo prashn khade hote hain unmen manavta ke aadhar par chinta to hai hi yah irak men goal of minimizing ko badhne se rokne men mujahidine khalk ki mahti bhoomika ko bhi avruddh karta hai. +",7,6,negative,neutral,positive +"% s is inviting you to join% s +","% s आपको% s में शामिल होने के लिए आमंत्रित कर रहा है +","s aapko s men shamil hone ke lie aamntrit kar raha hai +",8,1,neutral,neutral,positive +"The cyst got intumesce as it was not treated. +","छाले का इलाज न होने के कारण वह सूज गया है. +","chhale ka treated n hone ke karan vah sooj gaya hai +",8,1,negative,neutral,neutral +"Thank you for your letter dated 24 May 1947 regarding the situation in Lahore. 2. +","ता. 30-5-1947 लाहौर की स्थिति के विषय में लिखे गये आपके 24 मई के पत्र के लिए धन्यवाद। +","ta 30-5-1947 lahore ki situation ke vishay men likhe gaye aapke 24 mee ke letter ke lie thank +",8,0,neutral,neutral,positive +"The absence of the karnakutas in the hara of the top tala marks the first step towards the elimination of the hara itself, and the placement of the vahanas and lanchanas of the main deity at the corners in its place. +","ऊपरी तल के हार में कर्णकूटों की अनुपस्थित स्वंय हार के विलोपन और उसके स्थान पर कोनों पर मुख्य देवता के वाहनों और लांछनों के स्थापन की दिशा में पहला कदम हैं। +","oopri tala ke hara men karnakutas ki absence svny hara ke elimination aur uske place par corners par top deity ke vahanas aur lanchanas ke placement ki disha men first step hain. +",6,1,neutral,neutral,positive +"Drayage from port to warehouse is borne by the importer. +","बन्दरगाह से गोदाम तक माल की ढुलाई का व्यय आयातक द्वारा वहन किया जाता है। +","port to warehouse tak mal ki dhulaee ka vyay aayatak dvara vahan kiya jata hai. +",6,7,neutral,neutral,neutral +"On the other hand, Pranayama awakens the coiled - up serpent of the Pranic dynamism in the vital sheath and opens to the Yogin fields of consciousness, ranges of experience, abnormal faculties denied to the ordinary human life while it puissantly intensifies such normal powers and faculties as he already possesses. +","दूसरी ओर, प्राणायाम प्राणकोष में प्राणिक सक्रियता की सर्पाकार कुंडलिनी-शक्ति को जगा देता है तथा योगी के सामने चेतना के ऐसे क्षेत्र, अनुभव की ऐसी शृंखलांए तथा असामान्य शक्तियां खोलकर रख देता है जो सामान्य मानव-जीवन में प्राप्त नहीं होतीं, साथ ही वह उन सामान्य शक्तियों एवं क्षमताओं को भी जो उसके पास पहले से हैं अतिशय सबल बना देता है। +","doosri or, pranayam prankosh men pranik sakriyta ki sarpakar kundlini-shakti ko jaga deta hai tatha yogi ke samne chetna ke aese kshetr, anubhav ki aesi shrinkhlane tatha asamany shaktiyan kholakar rakh deta hai jo samany manav-jivan men prapt nahin hotin, sath hi vah un samany shaktiyon evn kshamtaon ko bhi jo uske pas pahle se hain atishay sabal bana deta hai. +",8,2,neutral,neutral,positive +"Central European (_ MacCE) +","मध्य यूरोपीय (_ MacCE) +","central european _ MacCE +",4,7,neutral,neutral,neutral +"Negativistic gnosticism treats the relationship of the spirit and the body as accidental and meaningless. +","नकारात्मक ज्ञानवाद शरीर और आत्मा के संबध को संयोगात्मक और अर्थहीन मानता है। +","nakaratmak jnjanvad sharir aur aatma ke snbadh ko snyogatmak aur arthhin manta hai. +",4,7,negative,neutral,negative +"Thus did a frustrated, enraged, and powerless people overwhelm their authorities and target close-by innocents. +","इस प्रकार शक्तिहीन, कुण्ठित, क्रोधित लोगों ने अपने अधिकारियों पर गुस्सा दिखाया तथा अपने निकट के निर्दोष लोगों को निशाना बनाया. +","is prkar shaktihin, kunthit, krodhit logon ne apne adhikariyon par gussa dikhaya tatha apne nikat ke nirdosh logon ko nishana banaya +",8,4,negative,negative,negative +"Were this true, science as an accurate, dependable and useful branch of knowledge would not have been possible; nature would have been all chaos and confusion; there would have been no permanent laws to discover, no fixed relationship between one fact or event and another; and past experiences would not have been able to give guidance to actions of man. +","यदि यह सच होता तो विज्ञान ज्ञान की एक यथार्थ, विश्वसनीय और उपयोगी शाखा नहीं होती; प्रकृति में चारों तरफ अव्यवस्था और भ्रम व्याप्त होता; खोजने के लिए कोई स्थायी नियम होते और न ही एक दूसरे तथ्यों, एक दूसरी घटनाओं के बीच कोई निश्चित संबंध होते; और न ही पिछले अनुभवों से मनुष्य को अपने कार्यों के लिए कोई मार्गदर्शन मिलता। +","yadi yah sach hota to vijnjan jnjan ki ek yatharth, vishvasniy aur upyogi shakha nahin hoti prkriti give guidance taraph avyavastha aur bhram vyapt hota khojne ke lie koee sthayi niyam hote aur n hi ek doosre tathyon, ek doosri ghatnaon ke bich koee nishchit snbndh hote aur n hi pichhle anubhvon se manushy ko apne karyon ke lie koee margadarshan milta. +",8,2,negative,neutral,negative +"to the focus points and saying it 's a constant. +","यह एक निरंतर ध्यान केंद्रित अंक और कह रही करने के लिए है। +","yah ek constant dhyan focus points aur kah rahi karne ke lie focus +",7,0,neutral,neutral,neutral +"They said: Swear to each other by Allah that we will certainly make a sudden attack on him and his family by night, then we will say to his heir: We did not witness the destruction of his family, and we are most surely truthful. +","वे आपस में अल्लाह की क़समें खाकर बोले, ""हम अवश्य उसपर और उसके घरवालों पर रात को छापा मारेंगे। फिर उसके वली (परिजन) से कह देंगे कि हम उसके घरवालों के विनाश के अवसर पर मौजूद न थे। और हम बिलकुल सच्चे है।"" +","ve aapas men allah ki smen khakar bole, ham avashy usapar aur uske gharvalon par rat ko chhapa marenge. phir uske vali prijan se kah denge ki ham uske gharvalon ke vinash ke avasar par maujood n the. aur ham bilkul surely truthful +",7,2,neutral,negative,positive +"all powered on that coal. +","साब कोयले की ताकत पे खड़े हुए +","powered coal ki takat pe khare hue +",7,2,neutral,neutral,neutral +"a protection against every rebel satan; +","और प्रत्येक सरकश शैतान से सुरक्षित रखने के लिए +","aur pratyek protection satan se surakshit rakhne ke lie +",5,5,neutral,neutral,negative +"Likewise, the two lateral walls of the mandapa are relieved five times, corresponding to the hara elements, the central one on each side being a devakoshtha which is again found on either wing of the front eastern wall on either side of the shrine entrance. +","इसी प्रकार मंडप की दो पाश्चवर्ती दीवारों में पाँच उभार हार तत्वों के अनुरूप हैं जिसमें से हर दिशा में मध्यवर्ती एक देवकोष्ठ है जो पुनः मंदिर प्रवेश के दोनों और सामने की पूर्वी दीवार के दोनों खंडों पर प्राप्य है। +","isi prkar mndap ki do relieved five times panch ubhar har tatvon ke anuroop hain jismen se har disha men madhyavarti ek devkoshth hai jo puna mndir prvesh ke donon aur samne ki poorvi divar ke donon khndon par prapy hai. +",8,1,neutral,neutral,positive +"The Weights and Measures unit in the Ministry of Consumer Affairs, Food and Public Distribution is the nodal agency for all activities relating to the subject. +","नागरिक आपूर्ति और उपभोक्ता मामले तथा सार्वजनिक वितरण मंञालय में माप-तोल निदेशालय इस विषय से संबंधित सभी गतिविधियों को देखने वाली प्रमुख एजेंसी हैं। +","nagrik aapoorti aur upbhokta mamle tatha sarvajnik vitaran weights and measures nideshalay is vishay se snbndhit sabhi gatividhiyon ko dekhne vali prmukh ejensi hain. +",5,4,neutral,neutral,neutral +"Please confirm whether Is duly sanctioned or not? +","प्राण विधिवत मंजूर किया हुआ है-पुष्टि भेजें। +","confirm vidhivat mnjoor kiya huaa hai-pushti bhejen. +",5,7,neutral,neutral,positive +"Recognizing this mantra of statecraft, Karnataka pursues the deepening of bond between the government and the governed. +","शासनकला के इस मंत्र को पहचानते हुए, कर्नाटक द्वारा शासन और शासित के बीच संबंधों को घनिष्ठ बनाने का प्रयास किया जा रहा है। +","shasanakla ke is mntr ko pahchante hue, karnatak dvara shasan aur shasit ke bich snbndhon ko ghanishth banane ka pryas kiya ja raha hai. +",9,2,neutral,neutral,neutral +"However, the international standards offer some guidelines, including the requirement Resident aliens in India are not given right to political participation, including voting rights but they are assured all other basic rights and freedoms. that every individual must have a remedy when a violation of rights is alleged. +","किंतु अंतर्राष्ट्रीय मानदंड से कुछ निर्देश मिलते हैं जिनमें यह भी शामिल है कि यदि अधिकार-हनन की शिकायत हो तो प्रत्येक व्यक्ति उसका समाधान पा सके। +","kintu international standards se kuchh nirdesh milte hain jinmen yah bhi shamil hai ki yadi adhikar-hanan ki shikayat ho to pratyek vyakti uska samadhan pa sake. +",5,6,neutral,negative,positive +"So 8 is 2 times 2 times 2. +","तो 8 होता है 2 गुना 2 गुना 2 +","to 8 hota hai 2 times 2 times 2 +",10,0,neutral,neutral,neutral +"Ever since Mamata broke away to form the Trinamool in 1997 , there has been a string of desertions from the Congress . +","ममता ने 1997 में पार्टी से अलग होकर तृकां बनाई थी तबसे पार्टी से नेताओं के जाने का सिलसिल जारी है . +","mamata ne 1997 men parti se alag hokar trinamool banaee thi tabse parti se congress ke jane ka string jari hai +",7,2,negative,negative,negative +"Repel evil by what is best; We know best what they describe. +","और बुरी बात के जवाब में ऐसी बात कहो जो निहायत अच्छी हो जो कुछ ये लोग (तुम्हारी निस्बत) बयान करते हैं उससे हम ख़ूब वाक़िफ हैं +","aur evil best ke javab men aesi best kaho jo nihayat achchhi ho jo kuchh ye log tumhari nisbat bayan karte hain usse ham oob vaiph hain +",5,4,neutral,neutral,positive +"Thou mayest defer (the turn of) any of them that thou pleasest, and thou mayest receive any thou pleasest: and there is no blame on thee if thou invite one whose (turn) thou hadst set aside. This were nigher to the cooling of their eyes, the prevention of their grief, and their satisfaction - that of all of them - with that which thou hast to give them: and Allah knows (all) that is in your hearts: and Allah is All - Knowing, Most Forbearing. +","इनमें से जिसको (जब) चाहो अलग कर दो और जिसको (जब तक) चाहो अपने पास रखो और जिन औरतों को तुमने अलग कर दिया था अगर फिर तुम उनके ख्वाहॉ हो तो भी तुम पर कोई मज़ाएक़ा नहीं है ये (अख़तेयार जो तुमको दिया गया है) ज़रूर इस क़ाबिल है कि तुम्हारी बीवियों की ऑंखें ठन्डी रहे और आर्जूदा ख़ातिर न हो और वो कुछ तुम उन्हें दे दो सबकी सब उस पर राज़ी रहें और जो कुछ तुम्हारे दिलों में है खुदा उसको ख़ुब जानता है और खुदा तो बड़ा वाक़िफकार बुर्दबार है +","inmen se jisko jab chaho alag kar do aur jisko jab tak chaho apne pas rakho aur jin aurton ko tumne alag kar diya tha agar phir tum unke khvah ho to bhi tum par koee mazaea nahin hai ye thou hadst set diya gaya hai zaroor is abil hai ki tumhari biviyon ki ऑnkhen thandi rahe aur aarjooda atir n ho aur vo kuchh tum unhen de do sabki sab us par razi rahen aur jo kuchh tumhare dilon men hai khuda usko ub janta hai aur khuda to bara vaiphkar burdbar hai +",7,3,neutral,positive,positive +"The Indian Council of Cultural Relations carried on its role of acting as a cultural ambassador for the country. +","सांस्कृतिक सम्बन्ध भारतीय सांस्कृतिक सम्बन्ध परिषद देश के सांस्कृतिक दूत की भूमिका निभा रही है। +","cultural relations bhartiy cultural relations parishad desh ke sanskritik doot ki bhoomika nibha rahi hai. +",7,1,neutral,neutral,neutral +"They were compelled to pay many illegal dues and cesses and were often required to perform forced labour or begar . +","उन्हें न केवल बहुत से गैरकानूनी कर और महसूल देने को मजबूर किया जाता बल्कि उनसे बेगार भी करायी जाती थी . +","unhen n keval bahut se gairkanooni kar aur mahsool compelled to pay kiya jata perform forced labour bhi karayi jati thi +",6,1,negative,negative,negative +"They said: Hast come unto us that we should serve Allah alone, and forsake what our fathers worshipped? Then bring upon us that wherewith thou threatenest us if thou art of the truthful! +","तो वह लोग कहने लगे क्या तुम हमारे पास इसलिए आए हो कि सिर्फ ख़ुदा की तो इबादत करें और जिनको हमारे बाप दादा पूजते चले आए छोड़ बैठें पस अगर तुम सच्चे हो तो जिससे तुम हमको डराते हो हमारे पास लाओ +","to vah log kahne lage kya unto hamare pas islie hast ho ki sirph uda ki to ibadat karen aur jinko hamare fathers dada poojte chale hast chhor baithen pas agar unto truthful ho to jisse unto hamko darate ho hamare pas lao +",6,1,neutral,negative,positive +"SLR investments amounted to 49938 crore where as non - SLR investments stood at 60746 crore. +","एक ओर जहाँ सांविधिक चलनिधि अनुपात (एसएलआर) में निवेश की राशि 49938 करोड़ थी वहीं दूसरी ओर गैर-सांविधिक चलनिधि अनुपात में निवेश की राशि 60746 करोड़ रही. हाल +","ek or jahan sanvidhik chalnidhi anupat eselaar men nivesh ki rashi 49938 karor thi vahin doosri or gair-sanvidhik chalnidhi anupat men nivesh ki rashi 60746 karor rahi hal +",7,3,neutral,neutral,neutral +"In this, the role of Akbar was played by Prithviraj Kapoor. +","इसमें अकबर का पात्र पृथ्वीराज कपूर ने निभाया था। +","ismen role of akbar prithviraj played by prithviraj tha. +",4,1,neutral,neutral,positive +"Both J. P. and Vinoba supported the war. +","जे. पी. और विनोबा दोनों ने उस युद्ध का समर्थन किया। +","je pi aur vinoba donon ne us war ka samarthan kiya. +",6,6,neutral,neutral,negative +"If I haven 't covered something, feel free to write a comment on +","अगर मैं कुछ शामिल नहीं किया है, पर एक टिप्पणी लिखने के लिए मुक्त महसूस करता हूँ +","agar free kuchh covered nahin kiya hai, par ek comment likhne ke lie feel free karta hoon +",6,4,neutral,neutral,positive +"and there did not come to them any apostle but that they used to deride him. +","और (उनकी भी यही हालत थी कि) उनके पास कोई रसूल न आया मगर उन लोगों ने उसकी हँसी ज़रुर उड़ाई +","aur unki bhi yahi halat thi ki unke pas koee apostle n aaya magar un logon ne uski hnsi zarur uraee +",8,3,neutral,neutral,negative +"In an irritated voice, they said, +","एक परेशान आवाज़ में, उन्होंने कहा कि, +","ek irritated voice men, unhonne kaha ki, +",9,1,negative,negative,negative +"Greek 'ouranos' for 'heaven'. Named after the planet Uranus. +","'स्वर्ग' के लिए यूनानी में 'क्वारानोस'. यूरेनस ग्रह के ऊपर नाम रखा गया +","svarg ke lie greek men kvaranos uranus planet ke oopar nam rakha gaya +",8,4,neutral,neutral,positive +"You do not have the permissions necessary to save the file. +","फ़ाइल सहेजने के लिए आपके पास आवश्यक अनुमति नहीं है. +","file sahejne ke lie aapke pas necessary permissions nahin hai +",8,2,neutral,neutral,positive +"Veer Savarkar 's Trial A number of people on the quay commenced to shout,' arretezle '. +","तट पर अनेक व्यक्ति अरेटेजेल पकड़ो... चिल्लाने लगे। +","tat par anek quay commenced pakaro chillane lage. +",6,3,neutral,positive,positive +"""% s"" could not be found in the path +","""% s"" को पथ में नहीं पाया जा सका +","s ko path men nahin paya ja saka +",9,1,negative,negative,neutral +"Without bridging the information gap, such disparity will persist. +","सूचना के इस अंतर को पाटे बिना ऐसी असमानता बनी रहेगी। +","information ke is gap ko pate bina aesi disparity will persist +",8,2,negative,neutral,neutral +"A large number of water birds visit this area. +","इस क्षेत्र में अनेकों पक्षी आते है। +","is kshetr large number birds visit number +",5,3,neutral,neutral,positive +"Military action had been so scattered and sporadic that our people , often leaderless and without the means of getting news from remote places , perhaps did not even have a very clear picture of what was happening to their country . +","फौजी कार्रवाई इतनी छितरी हुई और छुटपुट थी कि हमारी जनता , जिनका न कोई नेता था और न ही जिसके पास दूर-दराज के इलाकों तक संचार के कोई साधन थे , शायद स्पष्ट रूप से यह जानती तक नहीं थी कि उनके देश को क़्या हो रहा +","military action itni scattered huee aur sporadic thi ki hamari people , jinka n koee neta tha aur n hi jiske pas door-draj ke remote tak snchar ke koee means the , shayad clear roop se yah janti tak nahin thi ki unke country ko ya ho raha +",7,5,negative,negative,positive +"I shall not , however , attempt to infer that these murders must have been previously sanctioned by the prisoner ; mere inference on such a point cannot be accepted in a court of justice . +","बहरहाल , मैं यह अनुमान नहीं लगाना चाहता था कि बंदी ने पहले ही इन हत्याओं को मंजूरी दी थी या नहीं , क्योंकि न्याय की अदालत में सिर्फ ऐसे अनुमान को स्वीकार नहीं किया +","baharhal , main yah anuman nahin lagana chahta tha ki bndi ne pahle hi in attempt to infer di thi ya nahin , kyonki court of justice men sirph aese anuman ko svikar nahin kiya +",7,1,negative,negative,negative +"It was no exotic music which enthralled him. +","उन्हें विदेशी संगीत भाव-विभोर नहीं कर पाता था। +","unhen exotic music bhav-vibhor nahin kar pata tha. +",9,2,neutral,neutral,negative +"The amount that has been set aside to meet the possible liability / risk. +","ऐसी राशि जिसे किसी संभावित दायित्व/जोखिम की पूर्ति के लिए अलग से रख दिया गया हो। +","amount rashi jise kisi snbhavit dayitvjokhim ki poorti ke lie set se rakh diya gaya ho. +",8,0,neutral,neutral,negative +"Could not transfer data to window +","डाटा को खिड़की पर स्थानान्तरित किया जा सका +","data to window par transfer kiya ja saka +",8,0,neutral,neutral,neutral +"The nation was therefore indebted to such inspired teachers. +","इसलिए देश ऐसे प्रेरित शिक्षकों का ऋणि है। +","such nation aese inspired teachers ka rini hai. +",7,1,positive,neutral,positive +"It provided for mastery over Sanskrit literature to gain power of expression in Bengali, followed by acquaintance with Bengali literature and, thirdly, access to English education as was then being imparted by the Hindu College and the colleges set up by the Christian missionaries. +","ये पुस्तकें बंगला में अभिव्यक्ति की क्षमता बढ़ाने के लिए संस्कृत साहित्य पर अधिकार करके बंगला साहित्य से घनिष्ठ सम्पर्क तक और हिन्दू कालेज तथा मिशनरियों द्वारा स्थापित कालेजों में दी जाने वाली अंग्रेज़ी शिक्षा तक पहुँचाने का काम निभाने वाली थीं। +","ye pustken bngla men abhivyakti ki kshamta baane ke lie snskrit sahity par adhikar karke bngla sahity se ghanishth sampark tak aur hindoo kalej tatha mishanriyon dvara sthapit kalejon men di jane vali angrezi shiksha tak pahunchane ka kam nibhane vali thin. +",9,1,neutral,neutral,positive +"Persons taking sulphonylurea therapy and who have normal blood glucose values may need to reduce the sulphonylurea dose while on exercise programme. +","जिन रोगियों को सल्फोनाइलयूरिया दवाइयां दी जा रही हैं और उनका रक़्त ग़्लूकोज स्तर सामान्य है, उन्हें व्यायाम कार्यक्रम के दौरान इन दवाइयों इन दवाइयों की खुराक कम करने की आवश्यकता हो सकती +","jin persons taking sulphonylurea davaiyan di ja rahi hain aur unka blood glucose star samany hai, unhen exercise programme ke dauran in davaiyon in davaiyon ki khurak kam karne ki aavashyakta ho sakti +",6,2,neutral,neutral,positive +"Mark the selected messages as having been read +","चयनित संदेश पढ़े गए के रूप में चिह्नित करें +","selected messages pae ge ke roop men chihnit karen +",8,1,neutral,neutral,neutral +"User for login if not current user. +","उपभोक्ता का नाम बताएं अगर आप वर्तमान उपभोक्ता नही है +","user ka nam bataen agar aap current user nahi hai +",9,0,neutral,neutral,neutral +"Repayment (can be customized) Highly flexible - maximum 30 yrs. +","चुकौती (कस्टमाइज़ किया जा सकता है) बहुत अधिक फ़्लेक्सिबल – अधिकतम 30 वर्ष। +","repayment kastmaiz kiya ja sakta hai bahut highly fleksibal maximum 30 varsh. +",5,7,positive,neutral,positive +"And they used to persist in the great violation, +","और बड़े गुनाह पर अड़े रहते थे +","aur great gunah par violation rahte the +",5,1,negative,negative,positive +"Microscope was used to observe the tissue. +","ऊतकों को देखने के लिए सूक्ष्मदर्शी प्रयोग किया गया +","tissue ko dekhne ke lie microscope pryog kiya gaya +",9,0,neutral,neutral,neutral +"'The first short story of Prem Chand, Duniya ka Sabse Anmol Ratan' The Most Precious Jewel in the World, appeared in 1907. +","प्रेमचन्द के अनुसार उनकी पहली कहानी, दुनिया का सबसे अनमोल रतन, सन् 1907 में प्रकाशित हुई। +","premachand ke anusar unki short story, duniya ka sabse precious jewel, san 1907 men prkashit huee. +",7,1,positive,neutral,positive +"Whether you say a thing secretly or openly, He knows the innermost secrets of your hearts. +","और तुम अपनी बात छिपकर कहो या खुल्लम खुल्ला वह तो दिल के भेदों तक से ख़ूब वाक़िफ़ है +","aur tum apni thing secretly kaho ya khullam khulla vah to dil ke bhedon tak se oob vaif hai +",8,0,neutral,neutral,positive +"Habitat They live near water in open tree - and shrub - grasslands. +","निवास: ये पेड़ और घास वाले खुले मैदानों में रहते हैं। +","live: ye per aur ghas vale khule maidanon live near water +",6,2,neutral,neutral,neutral +"The magicians said: ""Moses, will you throw down or shall we be the first to throw?"" +","ग़रज़ जादूगरों ने कहा (ऐ मूसा) या तो तुम ही (अपने जादू) फेंको और या ये कि पहले जो जादू फेंके वह हम ही हों +","raz magicians ne kaha ae moosa ya to tum hi apne jadoo phenko aur ya ye ki pahle jo jadoo phenke vah ham hi hon +",9,2,neutral,neutral,neutral +"that we should abolish this age - discriminatory word +","कि हमें इस उम्र-पक्षपाती शब्द को मिटा ही देना चाहिए +","ki hamen is word shabd ko mita hi dena chahie +",7,4,negative,negative,neutral +"The peasant was shaken up and he began to emerge from his quiescent shell . +","किसान झकझोर उठा और वह अपनी खामोश झोपडियों में से निकल कर बाहर झांकने लगा . +","peasant jhakjhor utha aur vah apni quiescent shell men se nikal kar bahar jhankne laga +",7,3,neutral,neutral,negative +"What they will gain will be the condemnation of God, the angels, and all people, +","उन लोगों का बदला यही है कि उनपर अल्लाह और फ़रिश्तों और सारे मनुष्यों की लानत है +","un god ka badla yahi hai ki unapar allah aur angels aur sare manushyon ki condemnation hai +",6,0,negative,negative,positive +"Now We have sent down to you a Book wherein is your Remembrance; will you not understand? +","हमने तो तुम लोगों के पास वह किताब (कुरान) नाज़िल की है जिसमें तुम्हारा (भी) ज़िक्रे (ख़ैर) है तो क्या तुम लोग (इतना भी) समझते +","hamne to tum logon ke pas vah kitab kuran nazil ki hai jismen tumhara bhi zikre air hai to kya tum log itna bhi samajhte +",4,7,neutral,neutral,neutral +"Bug Buddy is not installed. +","बग बड्डी संस्थापित नहीं है. +","bug baddi snsthapit nahin hai +",9,2,negative,neutral,neutral +"that 's the same thing as multiplying by +","कि से गुणा करने के रूप में एक ही बात है +","ki se multiplying karne ke roop men ek hi thing hai +",7,2,neutral,neutral,neutral +"We saw earlier that thousands of devotees were visiting his house and that he used to spend the nights with them, singing devotional songs and speaking of Shiva. +","हम पहले देख चुके हैं कि हजारो भक़्त बसव के घर आते थे और वह भक़्तिपद गाता हुआ, शिव के बारे में बातें करता हुआ रातें उन्हीं के साथ बिताता था. +","thousands pahle dekh chuke hain ki hajaro shiva basav ke ghar house the aur vah bhatipad gata huaa , shiv ke bare men speaking karta huaa nights unhin ke sath bitata tha +",6,1,neutral,neutral,positive +"DNA- RNA- Protein All the aforementioned steps can be carried out in the test-tube if the building blocks , enzymes and ribosome 's are provided as well as the nucleic acid to give primary information sequence . +","डी.एन.एआर.एन.ए . प्रोटीन उपर्यु> सारी इऋयाएं एक परखनली में भी की जा सकती हैं बशर्ते इसके लिए आवशऋ-ऊण्श्छ्ष्-यक एंजाइम तथा राइबोसोम आदि पदार्थ उपलबऋ-ऊण्श्छ्ष्-ध हों.प्रारंभिक जानकारी का ऋम देने हेतु नऋ-ऊण्श्छ्ष्-यूकऋ-ऊण्श्छ्ष्-लिइक अमऋ-ऊण्श्छ्ष्-ल भी उपलबऋ-ऊण्श्छ्ष्-ध हो . +","dieneaarene protein building acid iriyaen ek parakhanli men bhi ki ja sakti hain basharte iske lie aavshri-oonshchhsh-yak sequence tatha ribosome aadi padarth upalbri-oonshchhsh-dh honprarnbhik information ka rim dene hetu nri-oonshchhsh-yookri-oonshchhsh-liik amri-oonshchhsh-l bhi upalbri-oonshchhsh-dh ho +",8,2,neutral,neutral,positive +"They are outstanding engineering feats. +","ये परियोजनाएं इंजीनियरों के अनूठे कारनामे हैं। +","ye pariyojnaen injiniyron ke anoothe karname hain. +",7,3,positive,neutral,positive +"It is sensible to approach the trader first . +","पहले व्यापारी से संपर्क करना बुद्घिमानी होगी । +","pahle approach the trader karna budghimani hogi . +",8,0,neutral,negative,neutral +"Ice bag is used for the application to reduce local swelling and pain +","स्थानीय सूजन तथा दर्द को कम करने हेतु बर्फ की थैली का प्रयोग किया जाता है। +","local bag tatha pain ko kam karne hetu ice ki thaili ka application kiya jata hai. +",6,1,neutral,neutral,negative +"The officer who is entitled with the responsibility of arbitration. +","वह अधिकारी जिसे मध्यस्थता करने की जिम्मेदारी सौंपी गयी है। +","vah officer jise arbitration karne ki responsibility saunpi gayi hai. +",8,3,neutral,neutral,positive +"Trap shooter Anwar Sultan 's family complains that he has grown silent and introspective . +","ट्रैप शूटर अनवर सुल्तान के परिवार की शिकायत है कि वे बेहद शांत रहने लगे हैं . +","trap shooter anavar sultan ke family ki shikayat hai ki ve behad silent rahne lage hain +",9,0,negative,negative,negative +"And We gave to Abraham, Isaac and Jacob - all [of them] We guided. And Noah, We guided before; and among his descendants, David and Solomon and Job and Joseph and Moses and Aaron. Thus do We reward the doers of good. +","और हमने इबराहीम को इसहाक़ वा याक़ूब (सा बेटा पोता) अता किया हमने सबकी हिदायत की और उनसे पहले नूह को (भी) हम ही ने हिदायत की और उन्हीं (इबराहीम) को औलाद से दाऊद व सुलेमान व अय्यूब व यूसुफ व मूसा व हारुन (सब की हमने हिदायत की) और नेकों कारों को हम ऐसा ही इल्म अता फरमाते हैं +","aur hamne ibrahim ko isha va yaoob sa beta pota ata kiya hamne sabki hidayat ki aur unse pahle nooh ko bhi ham hi ne hidayat ki aur unhin ibrahim ko aulad se daood v suleman v ayyoob v yoosuph v moosa v harun sab ki hamne hidayat ki aur nekon karon ko ham aesa hi ilm ata pharmate hain +",8,0,positive,positive,positive +"""As to these folk, - the cult they are in is (but) a fragment of a ruin, and vain is the (worship) which they practise."" +","“निश्चय ही वह लोग लगे हुए है, बरबाद होकर रहेगा। और जो कुछ ये कर रहे है सर्वथा व्यर्थ है। "" +","worship hi vah log lage hue hai, ruin hokar rahega. aur jo kuchh ye kar rahe hai sarvtha vyarth hai. +",7,1,negative,negative,negative +"Purchasing of commodities in the market is such a way that the buyers are in a position to have control over the price. +","बाजार में निहित स्वार्थों वाले व्यक्तियों द्वारा माल की इस प्रकार खरीद करना जिससे वे बाजार पर मूल्य नियन्त्रण स्थापित करने में सफल हो जाएं। +","market men nihit svarthon vale vyaktiyon dvara commodities ki is way purchasing karna jisse ve market par price control sthapit karne men saphal ho jaen. +",8,4,neutral,neutral,neutral +"[country music plays, alarm beeping] +","[देश संगीत नाटकों, अलार्म beeping] +","country music plays, alarm beeping +",8,4,neutral,neutral,negative +"Uncus is any hook - shaped process or part +","अंकुश एक हुक आकारीय प्रक्रिया अथवा भाग है। +","hook ek uncus shaped process athva part hai. +",4,1,neutral,neutral,neutral +"Nematodes are also known as nema. +","सूत्रकृमि सूत्रक या नेमा के रूप में भी जाने जाते हैं +","nematodes sootrak ya nema ke roop men bhi jane jate hain +",9,0,neutral,neutral,neutral +"he is linking up something very creative. +","ये कुछ बेहद रचनात्मक कर रहे हैं । +","ye kuchh linking creative kar rahe hain . +",5,1,positive,positive,positive +"We have first a body supported by the physical life - force, the physical prana which courses through the whole nervous system and gives its stamp to our corporeal action, so that all is of the character of the action of a living and not an inert mechanical body. +","सबसे पहले है हमारा शरीर जिसे भौतिक प्राणशक्ति अर्थात् स्थूल प्राण धारण किये है; यह प्राण समपूर्ण स्नायुमण्डल में गति करता है और हमारे शरीर के कार्य पर अपनी छाप लगा देता हैं परिणामस्वरूप, इसके सभी कार्य किसी जड़-यान्त्रिक शरीर की नहीं, बल्कि एक सजीव की क्रिया का स्वभाव धारण किये रहते हैं। +","sabse pahle hai hamara sharir jise bhautik pranashakti arthat sthool pran dharan kiye hai yah pran sampoorn snayumandal men gati karta hai aur hamare sharir ke kary par apni chhap laga deta hain parinamasvroop, iske sabhi kary kisi jar-yantrik sharir ki nahin, balki ek sajiv ki kriya ka svbhav dharan kiye rahte hain. +",4,6,neutral,neutral,positive +"Harimohini came near the staircase and coughed a couple of times, but to no avail. +","हरिमोहिनी ने सीढी के पास आकर दो-तीन बार खाँसा भी, लेकिन उसका कोई असर नहीं हुआ। +","harimohini ne staircase ke pas aakar do-tin times khansa bhi , lekin uska koee avail nahin huaa. +",9,2,neutral,neutral,negative +"2. Parliament government is more useful watching the India's variety all category of people can be taken in ministry. +","2. भारत की विविधता को देखते हुए संसदीय शासन ज्यादा उपयोगी है इस मे देश के सभी वर्गों के लोग मंत्रि परिषद मे लिये जा सकते है +","2 india ki variety ko dekhte hue parliament government jyada useful hai is me desh ke sabhi vargon ke people mntri parishad me liye ja sakte hai +",8,1,neutral,negative,positive +"Alas the woe that day for those who deny! +","तबाही है उस दिन झुठलानेवालों की +","alas hai us day deny ki +",2,1,negative,neutral,negative +"I am angry with Megan because she did not invite me to her party. +","मैं मेगन से क्रुद्ध हूं क्योंकि उसने अपने पार्टी में मुझे आमंत्रित नहीं किया था। +","i megan se angry hoon kyonki usne apne party men mujhe aamntrit nahin kiya tha. +",8,0,negative,neutral,negative +"In the past year Germany also expressed its willingness to tap the vast skilled manpower pool India enjoys in the area of Information Technology. +","गत वर्ष जर्मनी ने इच्छा प्रकट की कि सूचना प्रौद्योगिकी के क्षेत्र में प्रशिक्षित भारतीयों की प्रतिभा का लाभ जर्मनी उठाना चाहता है। +","past year germany ne willingness prakat ki ki information manpower ke vast men skilled bhartiyon ki prtibha ka labh germany uthana chahta hai. +",6,3,positive,neutral,positive +"I think it starts household by household, under the same roof. +","मैं सोचती हूँ यह घर से शुरू होती है, एक ही छत के नीचे। +","household by household yah ghar se shuroo hoti hai, ek hi chhat ke niche. +",6,1,neutral,neutral,neutral +"I usually get up at eight o 'clock. +","मैं आमतौर आठ बजे सोकर उठता हूँ। +","main aamtaur aath baje sokar uthta hoon. +",7,5,neutral,neutral,neutral +"I am uncompromisingly against all destructive machinery. +","मै तमाम नाशकारी यंत्रोंका कट्टर विरोधी हूं। +","i tamam nashkari machinery kattar virodhi hoon. +",7,0,negative,neutral,negative +"Our immediate aim should be to eradicate communicable diseases and control the non-communicable ones. +","हमारा तात्कालिक लक्ष्य संचारी बीमारियों का उन्मूलन तथा गैर-संचारी बीमारियों पर नियंत्रण होना चाहिए। +","ones immediate aim communicable diseases ka unmoolan tatha gair-snchari diseases par niyntran hona chahie. +",8,2,neutral,neutral,neutral +"The Vision Statement highlighting the Perspective Plan 2015 of the Department of Ocean Development was formulated in the year 2002 stipulating the Vision, the Mission, the Mandate and the Priority Areas, to be pursued by the Department over the next decade. +","विभाग के लिए परिदृश्य परिसंकल्प 2015 को 2002 में बनाया गया था। इसमें अगले दशक के दौरान उन विभिन्न मिशनों, प्राथमिकता क्षेत्रों, दायित्वों आदि की पहचान की गई है जिन्हें विभाग प्राप्त करने का प्रयास करेगा। +","vibhag ke lie paridrishy parisnkalp 2015 ko 2002 men banaya gaya tha. ismen agle dashak ke dauran un vibhinn mishnon, priority areas, dayitvon aadi ki pahchan ki gee hai jinhen vibhag prapt karne ka pryas karega. +",8,2,neutral,neutral,positive +"It provided for mastery over Sanskrit literature to gain power of expression in Bengali, followed by acquaintance with Bengali literature and, thirdly, access to English education as was then being imparted by the Hindu College and the colleges set up by the Christian missionaries. +","ये पुस्तकें बंगला में अभिव्यक्ति की क्षमता बढ़ाने के लिए संस्कृत साहित्य पर अधिकार करके बंगला साहित्य से घनिष्ठ सम्पर्क तक और हिन्दू कालेज तथा मिशनरियों द्वारा स्थापित कालेजों में दी जाने वाली अंग्रेज़ी शिक्षा तक पहुँचाने का काम निभाने वाली थीं। +","ye pustken sanskrit men expression ki power baane ke lie snskrit literature par mastery karke sanskrit literature se ghanishth acquaintance tak aur hindu college tatha christian dvara sthapit kalejon men access jane vali angrezi education tak pahunchane ka kam nibhane vali thin. +",6,3,neutral,neutral,positive +"It will be the Kingdom of God on earth. +","वह इस धरती पर प्रभुका राज्य होगा। +","vah is earth par prbhuka kingdom god +",7,0,positive,neutral,positive +"A plugin sending events to Zeitgeist +","जेटगीइस्ट में कार्यक्रम भेजने के लिए प्लगइन +","sending events karyakram bhejne ke lie plugin +",6,2,neutral,neutral,neutral +"If a landlord uses language or physical behaviour which is threatening or violent against the tenant, the latter should consult his or her local authority or other advice centre. +","मकान मालिक ने शोर-शरबा, दंगे या फिर लैंगिक और जात पात का भाव रख कर घटिया व्यवहार किया हो । +","tenant malik ne shor-sharba, dnge ya phir laingik aur jat pat ka bhav rakh kar local authority kiya ho . +",6,2,negative,neutral,negative +"- Leonardo da Vinci (1452 - 1519), Italian Artist, Composer and Scientist - +","लेओनार्दो दा विंची (१४५२-१५१९), इतालवी कलाकार, संगीतकार एवं वैज्ञानिक +","leonardo da vinci १४५२-१५१९ , italian artist , composer evn scientist +",8,4,neutral,neutral,neutral +"Failed to write file '% s': fwrite () failed:% s'% s' +","फ़ाइल को लिखने में विफलः fwrite () विफलः% s +","fail ko likhne men file fwrite file s +",5,1,negative,neutral,negative +"There is another gurudwara in Great Nicobar at Campbell Bay . +","एक अन्य गुरुद्वारा ग्रेट निकोबार के कैम्पल बे में है . +","ek any gurudwara gret nikobar ke kaimpal be men hai +",6,4,neutral,neutral,positive +"Split Mode (Equal Split) +","स्प्लिट मोड (बराबर स्प्लिट) +","split mode brabar split +",7,3,neutral,neutral,neutral +"Singan, the husband of the Kuratti, now comes in search of her. +","अब कुरत्ती का पति सिंगन उसे ढुंढता हुआ आता है। +","ab kuratti ka pati singan use dhundhta huaa aata husband +",8,0,neutral,neutral,neutral +"“ That ' s the gospel truth , ” Čepek enthusiastically agreed . +","“ आपकी बात सोलह आने सही है । ” चेपक ने उत्साहपूर्वक हामी भरी । +","aapki bat solah aane sahi hai . s chepak ne utsahpoorvak hami bhari . +",7,3,positive,neutral,positive +"Time after which to automatically increase speed (secs) +","समय जिसके बाद गति को स्वतः बढ़ाना है (सेकेंड) +","samay jiske bad gati ko increase speed hai sekend +",4,3,neutral,neutral,positive +"With focus on Per Drop More Crop and ""Har Khet ko Pani”, coverage under Pradhan Mantri Krishi Sinchayee Yojana has been expanded. +","हर बूंद अधिक फसल तथा‘‘हर खेत को पानी’’को ध्यान में रखते हुए प्रधान मंत्री कृषि सिंचाई योजनाका कवरेज बढ़ाया गया है। +","har drop adhik crop tatha har khet ko pani ko focus men rakhte hue pradhan mantri krishi sinchaee ko coverage baaya gaya hai. +",7,3,neutral,neutral,negative +"If I add 2, I get 30. If I add 3, I get 31. +","तो मुझे 29 मिलता है, यदि 2 जोड़ता हूँ तो 30,3 जोड़ता हूँ तो 31. +","to i 29 milta hai , yadi 2 jorta hoon to 30,3 jorta hoon to 31 +",6,2,neutral,neutral,neutral +"God created the heavens and the earth with the truth; surely in that is a sign to the believers. +","अल्लाह ने आकाशों और धरती को सत्य के साथ पैदा किया। निश्चय ही इसमें ईमानवालों के लिए एक बड़ी निशानी है +","created the heavens aur earth ko saty ke sath paida kiya. nishchay hi ismen eemanvalon ke lie ek bari nishani hai +",8,1,positive,neutral,positive +"That however, at least as a practical force, comes in at a later stage of high perfection. +","किन्तु यह स्थिति, कम-से-कम एक व्यावहारिक शक्ति के रूप में, उच्च सिद्धि की एक बाद की अवस्था में ही प्राप्त होती है। +","kintu yah stage, kam-se-kam ek practical force ke roop men, high perfection ki ek bad ki avastha men hi prapt hoti hai. +",8,3,neutral,neutral,positive +"All these forms have their own specialised areas of operating and organising business activities. +","इन सभी रूपों का परिचालन एवं व्यापार कार्यकलाप आयोजित करने के विशिष्टा क्षेत्र हैं। +","in sabhi areas of operating evn organising business activities karne ke vishishta business activities +",5,0,neutral,neutral,neutral +"Quotation is invited for purchase of note briquettes of 40 Kgs (approx) per bag in sealed cover superscribed “Quotation for Purchase of Note Briquettes” and addressed to the General Manager, Issue Department, Reserve Bank of India, Kolkata - 700001” so as to reach the office on or before 14: 00 hrs on June 24, 2015 on the following terms and conditions. +","निम्नलिखित नियमों और शर्तों पर मुहरबंद लिफाफे में, जिसके ऊपर ‘नोट ब्रिकेट्स की खरीद के लिए निविदा ‘ लिखा हो और जो महाप्रबंधक, निर्गम विभाग, भारतीय रिज़र्व बैंक, कोलकाता – 700 001 को संबोधित हो, प्रति बैग 40 किलोग्राम (लगभग) के नोट ब्रिकेट्स की खरीद के लिए कोटेशन का आमंत्रण इस तरह से किया जाता है कि यह 24 जून 2015 को 14:00 बजे अथवा उसके पूर्व कार्यालय में पहुंच जाए। +","nimnlikhit niymon aur sharton par muharbnd liphaphe men, jiske oopar not brikets ki kharid ke lie nivida likha ho aur jo mahaprbndhak, issue department, bhartiy rizarv baink, kolkata 700 001 ko snbodhit ho, prti baig 40 kilogram lagabhag ke not brikets ki kharid ke lie koteshan ka aamntran is tarah se kiya jata hai ki yah 24 joon 2015 ko 14:00 baje athva uske poorv karyalay men pahunch jae. +",5,6,neutral,neutral,positive +"The Act seeks to facilitate the development of these enterprises as also enhance their competitiveness. +","अधिनियम में यह भी उनकी प्रतिस्पर्धात्मकता बढ़ाने के रूप में इन उद्यमों के विकास की सुविधा के लिए करना चाहता है। +","act men yah bhi unki competitiveness baane ke roop men in enterprises ke development ki suvidha ke lie karna chahta hai. +",7,0,positive,neutral,neutral +"During sunset Puksi region of Shanghai- Sun is still not under the horizon but has reached the line of dense smog. +","सूर्यास्त के समय शंघाई का पुक्सी क्षेत्र अब तक सूरज अपने क्षितिज के नीचे तक नहीं डूबा है बल्कि यह धुंध (smog) की रेखा तक पहुँच गया है. +","sun ke samay region of shanghai kshetr ab tak sooraj apne kshitij ke niche tak nahin dooba hai balki yah dhundh smog ki rekha tak pahunch gaya hai +",4,5,neutral,neutral,negative +"The duplicitous salesman sold the sculpture to someone else even though he had promised to sell it to us. +","धोखेबाज़ बिक्रीकर्ता ने प्रतिमा हमें बेचने का वायदा करने के बावजूद उसे किसी और को बेच दी। +","duplicitous salesman ne prtima hamen bechne ka vayda karne ke bavjood use kisi aur ko bech di. +",5,6,negative,neutral,positive +"And who has a better religion than he who submits himself entirely to Allah? And he is the doer of good (to others) and follows the faith of Ibrahim, the upright one, and Allah took Ibrahim as a friend. +","और दीन (धर्म) की स्पष्ट से उस व्यक्ति से अच्छा कौन हो सकता है, जिसने अपने आपको अल्लाह के आगे झुका दिया और इबराहीम के तरीक़े का अनुसरण करे, जो सबसे कटकर एक का हो गया था? अल्लाह ने इबराहीम को अपना घनिष्ठ मित्र बनाया था +","aur religion dharm ki spasht se us vyakti se achchha kaun ho sakta hai, jisne apne aapko allah ke aage jhuka diya aur ibrahim ke tarie ka anusaran kare, jo sabse katakar ek ka ho gaya tha allah ne ibrahim ko apna ghanishth mitr banaya tha +",4,6,positive,neutral,positive +"Cricket has been played in India since 1721 . +","क्रिकेट का खेलभारत में क्रिकेट के खेल का आरम्भ 1721 में हुआ . +","cricket ka khelbharat men cricket ke khel ka aarambh 1721 men huaa +",4,5,neutral,neutral,positive +"He gone to Kerodemal College of Delhi University, where he taken Science Graduate Degree. +","उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्वविद्यालय के किरोड़ीमल कॉलेज चले गए जहां इन्होंने विज्ञान स्नातक की उपाधि प्राप्त की। +","unhonne bad adhyayan karne ke lie ye delhi university ke kirorimal klej chale ge jahan science graduate degree ki upadhi prapt ki. +",6,4,neutral,neutral,neutral +"Discard the current modified project? +","मौजूदा परिवर्तित परियोजना को छोड़ें? +","current modified project ko chhoren +",8,2,neutral,neutral,negative +"“Taste your ordeal. This is what you used to challenge. ” +","(और उनसे कहा जाएगा) अपने अज़ाब का मज़ा चखो ये वही है जिसकी तुम जल्दी मचाया करते थे +","aur unse kaha taste apne azab ka ordeal chakho ye vahi hai jiski tum jaldi machaya karte the +",8,2,neutral,neutral,positive +"Those whose striving goes astray in the present life, while they think that they are working good deeds. +","यो वे लोग है जिनका प्रयास सांसारिक जीवन में अकारथ गया और वे यही समझते है कि वे बहुत अच्छा कर्म कर रहे है +","deeds ve log hai present striving sansarik life men akarath gaya aur ve yahi samajhte hai ki ve bahut good karm kar rahe hai +",6,1,neutral,neutral,positive +"The Backward Classes Commission was marred in conspiracy from the very beginning. +","पिछड़े वर्गों का आयोग बिल्कुल प्रारंभ से ही विवादों से घिरा रहा। +","backward backward classes commission bilkul prarnbh se hi vivadon se ghira raha. +",8,2,negative,neutral,negative +"Ready to create file systems and mount partitions? +","फाइलतंत्र व माउन्ट प्वाइंट्स बनाने के लिए तैयार हैं? +","file v partitions pvaints banane ke lie ready hain +",7,3,neutral,neutral,positive +"Whether you say a thing secretly or openly, He knows the innermost secrets of your hearts. +","और तुम अपनी बात छिपकर कहो या खुल्लम खुल्ला वह तो दिल के भेदों तक से ख़ूब वाक़िफ़ है +","aur tum apni thing hearts kaho ya khullam khulla vah to dil ke innermost tak se oob vaif hai +",6,0,neutral,neutral,positive +"The famous 'Chauri Chaura' and 'Meerut conspiracy' case are few cases wherein this Court delivered memorable judgments upholding the concept of liberty. +","प्रसिद्ध चौरी-चौरा तथा मेरठ षडयंत्र कुछ ऐसे मामले हैं जिनमें न्यायालय ने स्वतंत्रता की अवधारणा बनाए रखते हुए स्मरणीय निर्णय दिए। +","prsiddh chauri-chaura tatha merath shadyntr kuchh aese mamle hain jinmen nyayalay ne svtntrta ki avdharna banae rakhte hue delivered memorable judgments +",7,2,neutral,neutral,neutral +"Wait until we are told to show the window before executing the command +","कमांड चलाने से पहले इंतजार करें जब तक कि विंडो दिखाने के लिए कहा जाए +","command chalane se pahle wait karen jab tak ki window dikhane ke lie kaha jae +",10,0,neutral,neutral,neutral +"You may bring up to two witnesses to the hearing . +","आप अधिक से अधिक सुनवाई में दो गवाह ला सकते हैं . +","aap adhik se adhik hearing men do witnesses la sakte hain +",9,2,neutral,neutral,neutral +"And so as these elements come together, +","और इस तरह ये सभी एक साथ होकर, +","aur is tarah ye sabhi ek sath hokar, +",9,1,neutral,neutral,neutral +"You can expect to receive a visit from your health visitor: +","आप अपेक्षा कर सकते है कि आपका आरोग्य अधिकारी आपको मिलने के लिए आये ः | +","aap expect kar sakte hai ki health visitor expect to receive ke lie visit a +",3,3,neutral,neutral,neutral +"I got confirmation for this post. +","मेरी इस पोस्ट पर पुष्टि हो गई है। +","meri is post par confirmation ho gee hai. +",9,0,neutral,neutral,neutral +"The story of 'Sudas' is taken from the Rig Veda. +","सुदामा की कहानी ऋग्वेद से ली है। +","sudama ki story rig se li hai. +",7,4,neutral,neutral,negative +"I wonder if I could rightly call it a meeting. +","पर इसको सभा कहा भी जाए या नहीं? +","par isko meeting kaha bhi jae ya nahin +",9,2,neutral,neutral,neutral +"Pirates of the Caribbean: Dead Man's Chest +","समुंदर के लुटेरे: मुर्दे का खज़ाना +","samundar ke lutere: dead ka khazana +",5,6,neutral,neutral,negative +"is an extension of the distance formula, which is really just +","दूरी फार्मूला है, जो वास्तव में सिर्फ है का विस्तार है +","distance formula hai, jo vastav men sirph hai ka extension hai +",6,1,neutral,neutral,neutral +"So the product rules help us. +","तो उत्पाद नियम हमें मदद करते हैं। +","to product rules hamen madad karte hain. +",8,3,positive,neutral,positive +"The company has subsequently moved the Supreme Court . +","उसके बाद कंपनी ने सुप्रीम कोर्ट का दरवाजा खटखटाया . +","uske bad company ne supreme court ka darvaja moved +",6,4,neutral,neutral,positive +"But if he was of the deniers [who were] astray, +","और अगर झुठलाने वाले गुमराहों में से है +","aur agar jhuthlane vale astray men se hai +",9,0,neutral,neutral,negative +"We also sent down blessed water from the heaven, wherewith We caused gardens and harvest - grain to grow, +","और हमने आसमान से बरकत वाला पानी बरसाया तो उससे बाग़ (के दरख्त) उगाए और खेती का अनाज और लम्बी लम्बी खजूरें +","aur hamne heaven se barakat vala water barsaya to usse gardens ke grain ugae aur kheti ka anaj aur lambi lambi khajooren +",8,2,neutral,negative,positive +"However, in respect of factory building, plant and machinery and self fabricated machinery, vouchers to the extent of Rs. 41, 19, 260 / -, Rs. 1, 66, 64, 271 / and Rs. 1, 66, 64, 271 / respectively, could not be produced by the assessee. +","हालांकि, कारखाने के भवन, संयंत्र और मशीनरी और स्व-विरचित मशीनरी के संबंध में क्रमशः रु. ४१, १९, २६०/-, रु. १, ६६, ६४, २७१/- और रु. १, ६६, ६४, २७१/- तक के वाउचर निर्धारिती द्वारा प्रस्तुत नहीं किए जा सके. +","halanki, karkhane ke bhavan, plant and machinery aur sv-virchit machinery ke snbndh men kramsha ru ४१, १९, २६०-, ru १, ६६, ६४, २७१- aur ru १, ६६, ६४, २७१- tak ke vauchar nirdhariti dvara prastut nahin kie ja sake +",6,4,neutral,negative,positive +"Payment of property tax, electricity bills and water bills of colonies and office premises bills of vendors +","कालोनियों और कार्यालय परिसरों और प्रधान कार्यालय का संपत्ति कर, बिजली के बिलों, पानी के बिलों और विक्रताओं के बिलों का भुगतान +","colonies and office parisron aur prdhan karyalay ka snpatti kar, payment of property, pani ke bilon aur vikrtaon ke bilon ka bhugtan +",7,5,neutral,neutral,neutral +"XRC resource: Incorrect colour specification '%s' for property '%s'. +","एक्सआरसी स्रोतसाधन: गलत रंग विशिष्टता '%s' गुणधर्म '%s' के लिए। +","xrc srotsadhan : incorrect colour specification s gunadharm s ke lie. +",7,1,negative,neutral,neutral +"You mustn 't deceive yourself in a serious matter like this. +","लेकिन इतने बड़े महत्व के मामले में यों अपनी आँखों में धूल डालने की कोशिश न कर। +","lekin itne bare matter ke mamle men yon apni aankhon men deceive dalne ki koshish n kar. +",7,1,negative,negative,negative +"Public meetings of sympathy for me and of protest against the judgment of the High Court, were held in almost every considerable town. +","हर शहर में मेरे समर्थन में और उच्च न्यायालय के फैसले के विरोध में सार्वजनिक सभाएं हुईं. +","har shahar men mere samarthan men aur high court ke phaisle ke virodh meetings of sympathy hueen +",7,4,neutral,negative,positive +"While the US urged India to begin a process of negotiation with the Kashmiri leadership, Clinton made it clear to General Pervez Musharraf that the US expected him to rein in the terrorists Pakistan was arming and training. +","जहां अमेरिका ने भारत से कश्मीरी नेतृत्व के साथ बातचीत की प्रक्रिया शुरू करने का अनुरोध किया, वहीं इंक्लटन ने परवेज़ मुशर्रफ से साफ कहा कि वे उन आतंकवादियों पर लगाम लगाएं, जिन्हें पाकिस्तान हथियार और प्रशिक्षण दे रहा है. +","jahan amerika ne bharat se kashmiri netritv ke sath batchit ki prakriya shuroo karne ka anurodh kiya, vahin inklatan ne parvez clear to general kaha ki ve un aatnkvadiyon par lagam lagaen, jinhen pakistan hathiyar aur prshikshan de raha hai +",8,0,neutral,neutral,negative +"It 's easy on synthetic data, yeah. +","यह हाँ पर सिंथेटिक डेटा, आसान है। +","yah yeah par synthetic data , easy hai. +",7,4,neutral,neutral,positive +"There are many particles in air which can harm the health of plans and animals (including humans) or can damage their eyesight. These are produced due to natural process and human activities. The particles not found in the air naturally or or more frequently or different than generic particles are called as pollutants. +","वायु में बहुत से तत्त्व होते हैं जो पौधों और पशुओं (मानव समेत) का स्वास्थ्य कर सकते हैं या नजर ख़राब कर सकते हैं यह प्राकृतिक प्रक्रियाओं तथा मानव गतिविधियों दोनों से उत्पन्न होते हैं. वायु में प्राकृतिक रूप से नहीं पाए जाने वाले तत्व या अधिक सांद्रता के साथ या सामान्य से अलग तत्वों को प्रदूषक कहा जाता है. +","air men bahut se tattv hote hain jo paudhon aur plans many particles ka health kar sakte hain ya najar rab kar sakte hain yah natural prakriyaon tatha many activities donon se utpann hote hain air men natural roop se nahin pae jane vale tatv ya adhik sandrta ke sath ya generic se different tatvon ko prdooshak kaha jata hai +",7,1,negative,negative,negative +"Danaus Umniace is another common butterfly of the plains, with black wings, marked with bluish - white streaks. +","मैदानों की दूसरी सामान्य तितली डेनॉस लिम्निएस है जिसके काले पंखों पर नीलाभ-सफेद रेखाएं होती हैं। +","maidanon ki doosri common butterfly dens limnies hai jiske kale pnkhon par nilabh-sphed rekhaen hoti hain. +",8,1,neutral,neutral,neutral +"The game has no solution. Undo or start again. +","खेल के पास कोई हल नहीं है. वापस ले या फिर शुरू करें. +","game ke pas koee hal nahin hai vapas le ya phir start karen +",8,2,negative,neutral,negative +"Your Lord knows better than you (people). He will have mercy on you or will punish you as He wills. We have not sent you to watch over them. Your Lord knows best about those in the heavens and the earth. +","तुम्हारा परवरदिगार तुम्हारे हाल से खूब वाक़िफ है अगर चाहेगा तुम पर रहम करेगा और अगर चाहेगा तुम पर अज़ाब करेगा और (ऐ रसूल) हमने तुमको कुछ उन लोगों का ज़िम्मेदार बनाकर नहीं भेजा है +","tumhara paravardigar tumhare hal se khoob vaiph hai earth better lord par raham people aur earth better lord par azab people aur ae heavens hamne tumko kuchh un logon ka zimmedar banakar nahin bheja hai +",5,3,neutral,positive,positive +"In our Milky Way alone, there are 40, 000 crore stars. +","केवल हमारी आकाशगंगा में ही 40,000 करोड़ सितारे है। +","keval hamari aakashgnga men hi 40,000 crore stars hai. +",9,2,neutral,neutral,negative +"This called for an additional capacity of about 18 million tonnes, raising the total capacity to 43 million tonnes in 1980 - 85. +","इसका अर्थ था लगभग 180 लाख टन की अतिरिकत क्षमता इससे सन् 1980-85 में कुल क्षमता बढ़ाकर 430 लाख हो जायेगी. +","iska arth tha tonnes 180 total tan ki atirikat additional isse san 1980-85 men kul additional baakar 430 total ho jayegi +",6,2,neutral,neutral,neutral +"Then if they deny you, [O Muhammad] - so were messengers denied before you, who brought clear proofs and written ordinances and the enlightening Scripture. +","फिर यदि वे तुम्हें झुठलाते ही रहें, तो तुमसे पहले भी कितने ही रसूल झुठलाए जा चुके है, जो खुली निशानियाँ, 'ज़बूरें' और प्रकाशमान किताब लेकर आए थे +","phir yadi ve tumhen jhuthlate hi rahen, to tumse pahle bhi kitne hi messengers denied ja chuke hai, jo brought clear, zbooren aur enlightening scripture lekar aae the +",7,1,neutral,neutral,positive +"Thus decision to provide following facilities to jail inmates was taken: +","अतः जेल के कारावासियों को निम्नलिखित सुविधाएं प्रदान करने का निर्णय लिया गयाः +","ata facilities to jail ko provide following facilities karne ka nirnay liya gayaa +",4,2,neutral,neutral,neutral +"I am extremely happy that Raipur Airport has been named after the saint / philosopher and visionary Swami Vivekananda. After Kolkata, Raipur is the place Swamiji spent the largest number of years of his life. +","मुझे यह जानकर बहुत खुशी हुई है कि रायपुर हवाई अड्डे का नाम संत/दार्शनिक तथा स्वपनद्रष्टा स्वामी विवेकानंद के नाम पर रखा गया है। +","i yah janakar bahut khushi huee hai ki raipur airport adde ka nam sntdarshnik swamiji svapanadrashta swami vivekananda ke nam par place gaya number +",7,1,positive,positive,positive +"Underline color for misspelled words when using inline spelling. +","इनलाइन वर्तनी प्रयोग के दौरान गलत वर्तनी वाले शब्द रंग से रेखांकित करें. +","underline spelling pryog ke dauran galat spelling vale words color se rekhankit karen +",7,3,neutral,neutral,neutral +"The outer circle shows what exercises they were focused on. +","ये बाहरी गोला दिखा रहा है कि किन सवालों पर उन्होंने ध्यान दिया। +","ye outer circle dikha raha hai ki kin savalon par unhonne dhyan diya. +",10,0,neutral,neutral,positive +"The First T-10 Tournament of the Rashtrapati Bhavan was won by Household Royals led by Meher Chand and Runners up was PBG Chargers led by Major Amit Bharadwaj. +","राष्ट्रपति भवन का पहला टी-10 टूर्नामेंट मेहरचंद के नेतृत्व में हाउस होल्ड रॉयल्स ने जीता तथा उप-विजेता टीम मेजर अमित भारद्वाज के नेतृत्व में पी बी जी चारजर्स रही। +","rashtrapati bhavan ka first ti-10 tournament meharchnd ke netritv men haus hold household ne jita chand up-vijeta tim major amit bharadwaj ke netritv men runners bi ji pbg rahi. +",7,0,neutral,neutral,positive +"% s,% d%% done,% s remaining +","% s,% d%% संपन्न,% s शेषशेष +","s, d snpann, s remaining +",8,2,neutral,neutral,neutral +"Realizing the growth of embedded systems in day - to - day life and the need for trained manpower in this promising area, C - DAC has launched a Diploma in Embedded Systems Design (DESD) for Engineers in computers, electronics and IT. +","दैनिक जीवन में एंबेडेड सिस्टम एवं महत्वपूर्ण क्षेत्रों में प्रशिक्षित मानव संसाधन की बढ़ती आवश्यकता को ध्यान में रख कर सी-डैक ने कम्प्यूटर, इलेक्ट्रॉनिक्स और आइटी इंजीनियरों के लिए एंबेडेड सिस्टम डिजाइन में डिप्लोमा () पाठ्यक्रम की शुरूआत की है। +","dainik jivan men enbeded sistam evn mahatvpoorn kshetron men prshikshit manav snsadhan ki bati aavashyakta ko dhyan men rakh kar si-daik ne kampyootar, ilektrniks aur aaiti injiniyron ke lie embedded systems design men diploma pathyakram ki shurooaat ki hai. +",5,3,positive,neutral,positive +"The trained phone operators can fill in your form over the telephone. +","फोन पर प्रशिक्षित आप्रेटरज़ क्लेम फार्म भी भर सकते हैं। +","telephone par trained phone operators pharm bhi bhar sakte hain. +",9,1,neutral,neutral,neutral +"He could earn Rs. 41, 700 from sale of 275 kg. worms (at Rs. 150 / kg.) and Rs. 11, 500 from the sale of 23 q. compost at Rs. 500 / q +","उन्होंने 275 किलो कीटों के विक्रय से (150 रुपये/किलो की दर से) 41,700 रुपये कमाए तथा 500 रुपये/क्विंटल की दर से 23 क्विंटल कम्पोस्ट बेचकर 11,500 रुपये कमाए। +","unhonne 275 kilo kiton ke vikray se 150 rupyekilo ki dar se 41,700 rupye kamae tatha 500 rupyekvintal ki dar se 23 kvintal kampost bechakar 11,500 rupye kamae. +",7,3,neutral,neutral,neutral +"Imagine all that comes with it. +","और पूलिस के साथ क्या क्या आ जाता है। +","aur poolis ke sath kya kya aa jata hai. +",9,2,negative,neutral,neutral +"We have created the heavens and the earth and all that is between the two in accordance with the requirements of truth and wisdom. The Hour is surely coming. So overlook [their faults] with gracious forgiveness. +","हमने तो आकाशों और धरती को और जो कुछ उनके मध्य है, सोद्देश्य पैदा किया है, और वह क़ियामत की घड़ी तो अनिवार्यतः आनेवाली है। अतः तुम भली प्रकार दरगुज़र (क्षमा) से काम लो +","hamne to heavens aur earth ko aur jo kuchh unke madhy hai , truth paida kiya hai , aur vah hour ki ghari to anivaryta aanevali hai. ata tum gracious prkar overlook forgiveness se kam requirements +",7,1,positive,neutral,positive +"It administers the Urban Land (Ceiling & Regulation) Act, 1976 as well as the Urban Land (Ceiling & Regulation) Repeal Act, 1999. +","यह शहरी भूमि (उच्चितम सीमा और विनियमन), अधिनियम, 1976 तथा शहरी भूमि (उच्च तम सीमा और विनियमन) निरसन अधिनियम, 1999. का प्रशासन करता है। +","yah urban land uchchitam sima aur viniyaman, adhiniyam, 1976 tatha urban land uchch tam sima aur viniyaman repeal act, 1999 ka prshasan karta hai. +",8,1,neutral,neutral,positive +"going to be aligned at the center of the cell. +","कोशिका के केंद्र में पंक्ति बद्ध होंगे. +","cell ke center men pnkti baddh honge +",9,0,neutral,neutral,neutral +"Sending a message with an empty subject line +","कोई रिक्त विषय पंक्ति के साथ एक संदेश भेजें (e) +","koee empty subject line ke sath ek message bhejen e +",9,2,negative,neutral,negative +"Show the properties and metadata of the selected image +","चयनित छवि की मेटाडेटा व गुण दिखाएँ +","chaynit image ki properties v gun dikhaen +",7,0,neutral,neutral,neutral +"what they want to learn to do. +","जो वो सीखना चाहते हैं. +","jo vo sikhna chahte hain +",8,1,neutral,neutral,positive +"Where there is no economic change, there the position of women remains the same. +","जहां कहीं आर्थिक स्थिति नहीं बदली है, वहां स्त्रियों का दर्जा भी अपरिवर्तनीय रहा है। +","jahan kahin economic position nahin change hai , vahan women ka darja bhi aprivartniy raha same +",6,1,neutral,neutral,negative +"You should pay grand rent. +","तुम्हें जमीन का भाड़ा अदा करना चाहिए। +","tumhen jamin ka rent grand karna chahie. +",5,1,negative,neutral,positive +"An institution which provides academic education +","ऐसी संस्था जो शात्रीय शिक्षा उपलब्ध कराती है +","aesi institution jo academic education upalabdh karati hai +",8,3,neutral,neutral,neutral +"But that brings me to lesson number two: +","तो इस तरह मैं अपने दूसरे सबक तक पहुँचती हूँ। +","to is tarah main apne doosre brings tak pahunchti hoon. +",3,5,neutral,neutral,positive +"I got up and, taking hold of his bloodstained clothes, pulled his leg out. +","मैं उठी और खून से सने उसके कपडों को पकड़ उसकी टांग ऊपर उठा आयी। +","i uthi aur khoon se bloodstained uske clothes ko pakar uski leg oopar utha aayi. +",8,3,neutral,neutral,neutral +"It was presented to the Legislative Council in 1856 and was passed in 1860. +","इसे 1856 में विधायी परिषद के समक्ष प्रस्तुत किया गया और1860 में पारित किया गया। +","ise 1856 men legislative council ke samaksh prastut kiya gaya aur1860 men parit kiya gaya. +",7,3,neutral,neutral,neutral +"And that 's a fun problem, and this is often kind of given as +","और वह एक मजेदार है समस्या है, और यह अक्सर के रूप में दिए गए की तरह है +","aur vah ek fun hai problem hai , aur yah aksar ke kind men die ge ki tarah hai +",5,2,positive,negative,positive +"Web Server to Predict Hub Proteins +","हब प्रोटीन की भविष्यवाणी हेतु वैब सर्वर +","hub proteins ki bhavishyvani hetu web server +",9,1,neutral,neutral,neutral +"Mr. Vagish Shastri has bestowed scientific nature to Sanskrit Grammar. +","संस्कृत के व्याकरण को वागीश शास्त्री ने वैज्ञानिक स्वरूप प्रदान किया है। +","snskrit ke grammar ko vagish shastri ne scientific nature prdan kiya hai. +",8,1,positive,neutral,neutral +"Repayment (can be customized) Highly flexible - maximum 30 yrs. +","चुकौती (कस्टमाइज़ किया जा सकता है) बहुत अधिक फ़्लेक्सिबल – अधिकतम 30 वर्ष। +","repayment kastmaiz kiya ja sakta hai bahut adhik fleksibal yrs maximum flexible varsh. +",4,5,positive,neutral,positive +"Ask your council about anything in the tenancy agreement you do not understand. +","यदि किरायेदारी के समझोते में कोई बात आपको समझ नहीं आती, तो आ कौंसिल को पूँछे। +","yadi kirayedari ke samjhote men koee bat aapko samajh nahin aati, to aa kaunsil ko poonchhe. +",8,2,negative,neutral,positive +"The so-called philosopher king who could rise above the stereotypes of his own party . +","एक तथाकथित दार्शनिक शासक , जो अपनी पार्टी के मानदंड़ों से ऊपर है . +","ek so-called philosopher king , jo apni party ke stereotypes se oopar hai +",9,0,positive,neutral,positive +"In summer he spends most of his time in the verandah and in winter he basks in the early sun bare - bodied. +","वे अकसर गमीँ के दिनों में बरामदे में और सर्दियों में सुबह की धूप में नंगे बदन बैठे मिल जाएंगे। +","ve akasar gamin ke dinon men baramde men aur sardiyon men subah ki dhoop men nnge badan baithe mil jaenge. +",8,4,neutral,neutral,neutral +"And in that, we have to look at not only the long - term strength of the country and the society, but also we have to see the short - term needs which we simply cannot ignore. +","और ऐसा करते हुए हमें केवल समाज और देश की दीर्घकालीन मजबूत को ध्यान में रखना है बल्कि अल्पकालिक जरूरतों को भी देखना है जिनकी अनदेखी नहीं की जा सकती। +","aur aesa karte hue needs short society aur country ki long strength ko dhyan men rakhna hai balki alpkalik jaroorton ko bhi dekhna hai jinki andekhi nahin ki ja sakti. +",4,5,neutral,negative,positive +"These laboratories have a total annual analyzing capacity of 1. 31 lakh samples. +","इन प्रयोगशालाओं में वर्ष में 1.31 लाख नमूनों की जांच करने की क्षमता है। +","in pryogshalaon men varsh men 131 lakh samples ki janch karne ki kshamta total +",5,3,neutral,neutral,neutral +"yet there are over you watchers +","जबकि तुमपर निगरानी करनेवाले नियुक्त हैं +","jabki tumapar watchers karnevale niyukt hain +",7,1,neutral,neutral,neutral +"It is He who is God in heaven, and God on earth. He is the Wise, the Knower. +","वही है जो आकाशों में भी पूज्य है और धरती में भी पूज्य है और वह तत्वदर्शी, सर्वज्ञ है +","knower hai jo aakashon men bhi heaven hai aur earth men bhi heaven hai aur vah tatvadarshi , sarvajnj hai +",4,3,positive,neutral,positive +"All that wouldn 't have mattered if Bhasmasura had been a friendly, good demon. +","इन बातों का कोई मतलब न होता अगर भस्मासूर एक अच्छा राक्षस होता और सबसे मित्रता रखता। +","in baton ka koee matalab n hota agar bhasmasura ek good demon hota aur sabse friendly rakhta. +",8,1,neutral,neutral,positive +"The Weights and Measures unit in the Ministry of Consumer Affairs, Food and Public Distribution is the nodal agency for all activities relating to the subject. +","नागरिक आपूर्ति और उपभोक्ता मामले तथा सार्वजनिक वितरण मंञालय में माप-तोल निदेशालय इस विषय से संबंधित सभी गतिविधियों को देखने वाली प्रमुख एजेंसी हैं। +","nagrik food aur weights mamle tatha public distribution ministry men map-tol measures is subject se snbndhit sabhi gatividhiyon ko dekhne vali prmukh nodal hain. +",5,1,neutral,neutral,neutral +"But we will come back, once again, +","लेकिन हम वापस आ गए हैं, दोबारा, +","lekin ham vapas aa ge hain, dobara, +",3,7,positive,neutral,neutral +"India exchanges mail with more than 217 countries by air and surface. +","भारत 217 से भी अधिक देशों के साथ स्थलीय और विमान सेवा द्वारा पत्रो का आदान-प्रदान करता है। +","india 217 se bhi adhik countries ke sath sthliy aur viman seva dvara patro ka aadan-prdan karta hai. +",8,3,neutral,neutral,neutral +"(b) no election to either House of Parliament or to the House or either House of the Legislature of a State shall be called in question except by an election petition presented to such authority and in such manner as may be provided for by or under any law made by the appropriate Legislature. +","(ख) संसद के प्रत्येक सदन या किसी राज्य के विधान-मंडल के सदन या प्रत्येक सदन के लिए कोई निर्वाचन ऐसी निर्वाचन अर्जी पर ही प्रश्नगत किया जाएगा, जो ऐसे प्राधिकारी को और ऐसी रीति से प्रस्तुत की गई है जिसका समुचित विधान-मंडल द्वारा बनाई गई विधि द्वारा या उसके अधीन उपबंध किया जाए, अन्यथा नहीं। +","kh snsad ke pratyek sadan ya kisi rajy ke vidhan-mndal ke sadan ya pratyek sadan ke lie koee nirvachan aesi nirvachan arji par hi called in question, jo aese pradhikari ko aur aesi riti se prastut ki gee hai jiska samuchit vidhan-mndal dvara banaee gee vidhi dvara ya uske adhin upbndh kiya jae, anytha nahin. +",7,4,neutral,negative,negative +"The nation was therefore indebted to such inspired teachers. +","इसलिए देश ऐसे प्रेरित शिक्षकों का ऋणि है। +","islie nation aese inspired teachers ka rini hai. +",9,1,positive,neutral,positive +"SLR investments amounted to 49938 crore where as non - SLR investments stood at 60746 crore. +","एक ओर जहाँ सांविधिक चलनिधि अनुपात (एसएलआर) में निवेश की राशि 49938 करोड़ थी वहीं दूसरी ओर गैर-सांविधिक चलनिधि अनुपात में निवेश की राशि 60746 करोड़ रही. हाल +","ek or jahan sanvidhik slr non eselaar men investments ki rashi 49938 crore thi vahin doosri or gair-sanvidhik slr non men investments ki rashi 60746 crore rahi hal +",4,4,neutral,neutral,neutral +"Any one document which provides customer information to the satisfaction of the bank will suffice +","कोई एक ऐसा दस्तावेज काफी होगा, जिसमें बैंक की संतुष्टि के अनुरूप ग्राहक सूचना हो +","koee ek aesa dastavej kaphi hoga, jismen baink ki sntushti ke anuroop grahak soochna ho +",9,1,positive,neutral,positive +"Harishchandra, however, submitted that if he be given half an hour, he could do it. +","परन्तु हरिश्चन्द्र का आग्रह था कि यदि उन्हें आध घण्टा का भी समय दिया जाए तो वह उसे याद कर लेंगे। +","parantu harishchandr ka aagrah tha ki yadi unhen aadh ghanta ka bhi samay diya jae to vah use yad kar lenge. +",8,3,neutral,neutral,neutral +"One of the historical structures in Mumbai used to be Governor 's residence. +","मुंबई में ऐतिहासिक संरचना जहां राज्यपाल निवास करते थे। +","mumbai men historical structures jahan governor residence karte the. +",5,1,neutral,neutral,neutral +"Particulars to be furnished in respect of gratuity funds. +","उपदान निधियों की बाबत दी जाने वाली विशिष्टियां +","gratuity nidhiyon ki respect di jane vali particulars +",7,0,neutral,neutral,positive +"The whole film proceeds with computer graphics and animated figures. +","कंप्यूटर ग्राफिक्स और एनिमेटेड आंकड़े के साथ पूरी फिल्म आय. +","computer graphics and animated figures ke sath poori film aay +",7,3,neutral,neutral,neutral +"The prevailing colour of this breed is black and white. +","इस नस्ल का सामान्य रंग काला और सफेद होता है. +","is breed is black colour black and white hota hai +",7,0,neutral,neutral,neutral +"Auto Generate Assoc Accessors (Java) +","एसॉक एक्सेसर्स स्वचालित जनरेट करें (जावा) +","esk accessors auto generate karen java +",8,2,neutral,neutral,neutral +"It is the pivot on which the political system of the country revolves . +","यह वह धुरी है , जो देश के राजनीतिक व्यवस्था की नींव है . +","yah vah pivot hai , jo country ke political system ki ninv hai +",8,1,neutral,negative,neutral +"Chandrashekhar himself is undecided as to what he should do. +","स्वयं चंद्रशेखर इस संदर्भ में अनिश्चित है कि उसे क्या करना चाहिए। +","svyn chandrashekhar is sndarbh men anishchit hai ki use kya karna chahie. +",9,1,neutral,neutral,negative +"This message does not contain the header information required for this action. +","संदेश शीर्षिका सूचना नहीं रखता है इस क्रिया के लिए जरूरी. +","message header information nahin rakhta hai is action ke lie jaroori +",8,0,negative,negative,neutral +"Setting up of EIL - R & D Centre to support National Laboratories +","राष्ट्रीय प्रयोगशालाओं के सहयोग के लिए र्इ. आर्इ. एल.-आर. एण्ड डी. सेन्टर की स्थापना। +","national support national laboratories ke lie ri aari el-aar end di centre ki sthapna. +",3,1,neutral,neutral,positive +"Thus a binary series of numbers would be transmitted. +","इस प्रकार दिवचर श्रेणी की संख्याओं को प्रेषित किया जा सकता हैं। +","is prkar binary series of numbers ko preshit kiya ja sakta hain. +",9,1,neutral,neutral,neutral +"Speech by The President of India,Shri Pranab Mukherjee at The National Education Day celebrations and the inauguration of 40th Jawaharlal Nehru National Science, Mathematics and Environment Exhibition for children - 2013 +","राष्ट्रीय शिक्षा दिवस समारोह तथा 40वीं जवाहरलाल नेहरू राष्ट्रीय बाल विज्ञान, गणित और पर्यावरण प्रदर्शनी - 2013 के उद्घाटन के अवसर पर भारत के राष्ट्रपति का अभिभाषण +","national education day samaroh tatha 40vin jawaharlal nehru national bal vijnjan, ganit aur paryavaran pradarshni - 2013 ke udghatan ke avasar par bharat ke rashtrapti ka abhibhashan +",8,4,neutral,positive,neutral +"The square aditala outer wall carries on top over its prastara four karnakutas at the corners and four salas in between over the central bays of the wall The adhishthana below is extended forward and widened to form the base of the wider square mandapa in front . +","वर्गाकार आदितल की बाहरी दीवार पर उसके प्रस्तर के ऊपर कोनों पर चार कर्णकूट और दीवार के मध्यम खंडों के ऊपर बीच में चार शाला हैं.नीचे अधिष्ठान को आगे बढ़ाकर चौड़ा कर दिया गया है , ताकि सामने एक अधिक बड़े वर्गाकार मंडकप का आधार बन सके . +","vargakar aadital ki bahri divar par uske prastar ke oopar konon par char karnkoot aur divar ke madhyam khndon ke oopar bich men char shala hainniche adhishthan ko aage baakar chaura kar diya gaya hai , taki samne ek adhik wider square mandapa ka aadhar ban sake +",3,5,neutral,neutral,positive +"Let not those grieve thee who rush headlong into Unbelief: Not the least harm will they do to Allah: Allah 's plan is that He will give them no portion in the Hereafter, but a severe punishment. +","और (ऐ रसूल) जो लोग कुफ़्र की (मदद) में पेश क़दमी कर जाते हैं उनकी वजह से तुम रन्ज न करो क्योंकि ये लोग ख़ुदा को कुछ ज़रर नहीं पहुँचा सकते (बल्कि) ख़ुदा तो ये चाहता है कि आख़ेरत में उनका हिस्सा न क़रार दे और उनके लिए बड़ा (सख्त) अज़ाब है +","aur ae rasool jo log kufr ki madad men pesh dmi kar jate hain unki vajah se tum ranj n karo kyonki ye log uda ko kuchh zarar nahin pahuncha sakte balki uda to ye chahta hai ki aaerat men unka hissa n rar de aur unke lie bara sakht azab hai +",4,6,negative,neutral,negative +"However, the international standards offer some guidelines, including the requirement Resident aliens in India are not given right to political participation, including voting rights but they are assured all other basic rights and freedoms. that every individual must have a remedy when a violation of rights is alleged. +","किंतु अंतर्राष्ट्रीय मानदंड से कुछ निर्देश मिलते हैं जिनमें यह भी शामिल है कि यदि अधिकार-हनन की शिकायत हो तो प्रत्येक व्यक्ति उसका समाधान पा सके। +","kintu international standards se kuchh guidelines other hain india yah bhi resident hai ki yadi adhikar-hanan ki shikayat ho to pratyek individual uska samadhan rights sake. +",6,0,neutral,negative,positive +"is an extension of the distance formula, which is really just +","दूरी फार्मूला है, जो वास्तव में सिर्फ है का विस्तार है +","distance formula hai , jo vastav men sirph hai ka extension hai +",7,2,neutral,neutral,neutral +"The process of arbitration that has to be followed compulsorily as per law. +","किसी मामले में पंचनिर्णय की प्रक्रिया जो कानूनन अनिवार्य रूप से पालन करनी होगी। +","kisi mamle men process of arbitration jo kanoonan anivary roop se palan karni hogi. +",8,2,neutral,neutral,neutral +"“ We have always supported the UDF and have a right to nominate those whom we believe will help us , ” says Monsignor Paul Kakkassery , the diocese 's spokesman . +","उनके प्रवक्ता मॉनसिग्नोर पॉल कक्कास्सेरी ने कहा भी , ' ' हमने हमेशा संलमो का समर्थन किया है.इसलिए हमें ऐसे लगों को मनोनीत करने का अधिकार है जिनके बारे में हमारा मानना है कि वे हमारी मदद करेंगे . ' ' +","unke pravakta mnsignor pl kakkasseri ne kaha bhi , hamne hamesha snlmo ka samarthan kiya haiislie hamen aese lagon ko manonit karne ka adhikar hai jinke bare men hamara manna hai ki ve hamari madad karenge +",4,7,positive,positive,positive +"And when it was said to them: Reside in this town and eat from it wherever you wish, and say, Put down from us our heavy burdens: and enter the gate making obeisance, We will forgive you your wrongs: We will give more to those who do good (to others). +","और जब उनसे कहा गया कि उस गाँव में जाकर रहो सहो और उसके मेवों से जहाँ तुम्हारा जी चाहे (शौक़ से) खाओ (पियो) और मुँह से हुतमा कहते और सजदा करते हुए दरवाजे में दाखिल हो तो हम तुम्हारी ख़ताए बख्श देगें और नेकी करने वालों को हम कुछ ज्यादा ही देगें +","aur jab unse kaha gaya ki us ganv men jakar raho saho aur uske mevon se jahan tumhara ji chahe shau se khao piyo aur munh se hutma kahte aur sajda karte hue gate making obeisance ho to ham tumhari tae bakhsh degen aur neki karne valon ko ham kuchh jyada hi degen +",6,1,positive,negative,positive +"When your gums and jawbone have healed , a crown -LRB- artificial tooth -RRB- is constructed , then screwed or cemented to the post . +","जब आपके मसूड़ों और जबड़े की हड्डी के घाव भर जाते हैं तो एक क्राउन ( नकली दाँत ) बनाकर , खंभे पर कस दिया जाता है या सीमेंट द्वारा चिपका दिया जाता है . +","jab aapke gums and jawbone ki haddi ke ghav bhar jate hain to ek kraun artificial tooth banakar , khnbhe par kas diya jata hai ya siment dvara chipka diya jata hai +",6,1,neutral,neutral,negative +"In the year 1985-86, the erstwhile Ministry of Welfare was bifurcated into the Department of Women and Child Development and the Department of Welfare. +","वर्ष 1985-86 में पूर्ववर्ती कल्याण मंत्रालय को महिला एवं बाल विकास विभाग तथा कल्याण विभाग में विभक्त किया गया था। +","year 1985-86 men poorvavarti kalyan mntralay ko mahila evn bal vikas vibhag tatha kalyan vibhag men vibhakt kiya gaya tha. +",10,0,neutral,neutral,neutral +"The Pandiya King immediately fainted and died. +","पांडिय राजा उसी दम मूर्छित होकर गिर पड़े और मृत्यु ग्रस्त हो गये। +","pandiya raja usi dam moorchhit hokar gir pare aur mrityu grast ho gaye. +",8,3,negative,negative,negative +"“Before I die, I want to ... ” +","“ अपनी मृत्यु से पहले, मैं .... करना चाहता हूँ।” +","apni die se pahle, main karna chahta hoon. +",9,0,neutral,neutral,negative +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","actor ka allocation par nazar rakhne ke lie clip region ko sets karen +",8,2,neutral,neutral,neutral +"He was with Washington University, St. Louis, Mo., USA from 1961 to 1971. +","वह 1961 से 1971तक अमेरिका के वाशिंगटन विश्वविद्यालय के साथ जुड़े रहे। +","vah 1961 se 1971tak amerika ke vashingatan university ke sath jure rahe. +",8,1,neutral,neutral,neutral +"In this, the role of Akbar was played by Prithviraj Kapoor. +","इसमें अकबर का पात्र पृथ्वीराज कपूर ने निभाया था। +","ismen akbar ka patr prithviraj kapoor ne role tha. +",5,1,neutral,neutral,positive +"So the fact that when we tried to figure out x 's that would +","तो सच है कि जब हम बाहर एक्स कि होता यह पता लगाने की कोशिश की +","to sach hai ki jab ham bahar eks ki hota yah pata lagane ki koshish ki +",6,7,neutral,negative,neutral +"Delirium produced due to the action of a poison is known as toxic delirium. +","विष की क्रिया के कारण उत्पन्न चित्त विपर्यय को विषजन्य चित्त विपर्यय कहा जाता है। +","poison ki due ke karan utpann chitt viparyay ko vishajany chitt viparyay kaha jata hai. +",6,2,negative,neutral,negative +"Develop Goa as the 'Export / Import Hub' and thus encourage export - oriented industries +","गोवा को ‘आयात/निर्यात हब’ के रूप में विकसित करना और इस प्रकार से निर्यात केंद्रित उद्योगों को बढावा देना। +","goa ko import aayatniryat hub ke roop men viksit karna aur is prkar se export kendrit industries ko badhava dena. +",8,0,neutral,neutral,positive +"“ Aren ' t you a tiny bit superstitious ? ” +","“ क्या तुम खुद बिलकुल भी अन्धविश्वासी नहीं हो ? ” +","aren tum khud bilkul bhi tiny nahin ho +",4,1,neutral,negative,neutral +"The following clusters have been chosen for intervention: +","इस मदद हेतु निम्नांकित समूहों को चुना गया है +","is madad hetu intervention clusters ko chuna gaya hai +",7,3,neutral,neutral,neutral +"The benevolent aspects of treating the labour. +","जब श्रम के मानवीय पक्षों पर विचार किया जाता हो। +","jab labour ke benevolent aspects par vichar kiya jata ho. +",10,0,positive,neutral,positive +"Automatic limit for rows in a join when using - safe - updates - safe - updates +","का उपयोग करते समय ज्वाइन में स्वतः पंक्ति-गणना को सीमित करे. +","ka upyog karte limit join men automatic pnkti-ganna ko simit updates +",5,0,neutral,neutral,positive +"In Mumbai average annual temperature, and the average annual precipitation table +","मुंबई में औसत तापमान एवं वर्षण (प्रैसिपिटेशन) की सारणी +","mumbai men average temperature evn precipitation table ki sarni +",8,2,neutral,neutral,neutral +"II. Muslims Rejected Or will the door be shut in their face? American columnist Ralph Peters dismisses the first scenario: “Far from enjoying the prospect of taking over Europe by having babies, Europe's Muslims are living on borrowed time. … predictions of a Muslim takeover of Europe … ignore history and Europe's ineradicable viciousness.” Instead, depicting Europe as the place “that perfected genocide and ethnic cleansing,” he predicts its Muslims “will be lucky just to be deported,” and not killed. Claire Berlinski , in Menace in Europe: Why the Continent's Crisis Is America's, Too , implicitly agrees, pointing to the “ancient conflicts and patterns … now shambling out of the mists of European history ” which could well trigger violence. +","संक्षेप में पहला तर्क दर्शाता है कि मुसलमानों की सक्रियता और यूरोप की निष्क्रियता के कारण यूरोप का इस्लामीकरण होगा और अपने धिम्मी स्तर के साथ वह इस्लाम में धर्मान्तरित हो जायेगा। उच्च और निम्न धार्मिकता, उच्च और निम्न जन्म दर तथा उच्च और निम्न सास्कृतिक आत्मविश्वास के कारण यह सम्भव होगा। यूरोप एक खुला द्वार है जिसमें मुसलमान टहल रहे हैं। +","ii men first tark darshata hai ki muslims ki sakriyta aur s ki nishkriyta ke karan s ka columnist hoga aur apne dhimmi star ke sath vah history men dharmantrit ho jayega. uchch aur prospect , uchch aur janm ignore tatha uchch aur borrowed aatmvishvas ke karan yah crisis patterns s ek khula door hai jismen muslim genocide rahe takeover +",4,1,negative,negative,negative +"Just write your query on this postcard and send it to Google office via Snail Mail. +","आप अपनी पृच्छा इस पोस्टकार्ड पर लिखकर स्नेल मेल के द्वारा गूगल कार्यालय को भेज दें। +","aap apni query is postcard par likhakar snel snail ke dvara googal office ko bhej den. +",7,4,neutral,neutral,neutral +"They all < s > are major causes of serious illness or early death; +","गंभीर एवं जानलेवा बीमारियों के प्रमुख कारण हैं। +","serious evn s bimariyon ke major karan hain. +",6,4,negative,negative,negative +"And that 's the same thing as 0. 75x. +","जैसे 1X माइनस 0.25X के जैसे लिखा और वह समान चीज़ है जैसे 0.75X +","jaise 1X mainas 025X ke jaise likha aur vah same chiz hai jaise 075X +",8,1,neutral,neutral,neutral +"(ii) the Minister for Tuensang affairs shall deal with, and have direct access to the Governor on, all matters relating to the Tuensang district but he shall keep the Chief Minister informed about the same; +","(ii) त्युएनसांग कार्य मंत्री त्युएनसांग जिले से संबंधित सभी विषयों की बाबत कार्य करेगा और उनके संबंध में राज्यपाल के पास उसकी सीधी पहुँच होगी किंतु वह उनके संबंध में मुख्यमंत्री को जानकारी देता रहेगा; +","ii tyuensang kary mntri tyuensang jile se snbndhit sabhi vishyon ki babat kary karega aur unke snbndh men rajypal ke pas uski sidhi pahunch hogi kintu vah unke snbndh men mukhymntri ko jankari deta rahega +",4,6,neutral,neutral,neutral +"You have made changes to this memo, but not yet saved them. +","आपने इस ज्ञापन में परिवर्तन किया है लेकिन अबतक सहेजा नहीं है. +","aapne is memo men parivartan kiya hai lekin abatak saheja nahin hai +",9,1,negative,neutral,negative +"At the end of second act dialogue between Raja Sruthoson and the music composer Nanda mentions the name of Brahmadutt. +","दूसरे अंक के अंत मे राजा सुतसोम और गाथाकार नन्द की बातचीत है जिसमे भी ब्रह्रादत का उल्लेख होता है। +","doosre act ke end me raja brahmadutt aur gathakar nanda ki dialogue hai jisme bhi brahradat ka name hota second +",4,1,neutral,neutral,neutral +"8.Volunteers for assisting disabled persons and senior citizens +","8. निःशक्त तथा वरिष्ठ नागरिकों की सहायतार्थ स्वयं सेवक। +","8 disabled tatha senior citizens ki sahaytarth svyn sevak. +",8,0,neutral,neutral,neutral +"A bone which forms the front part of the skull housing the brain. +","एक अस्थि जो कपाल का अग्र भाग निर्मित करती है जिसमें मस्तिष्क होता है +","ek bone jo kapal ka agr forms the front hai jismen mastishk hota hai +",7,2,neutral,neutral,neutral +"Kanta gets herself a job, but because of Madhab, she cannot consider herself 'free'. +","कांता एक नौकरी ढूंढ़ लेती है पर माधव की वजह से वह अपने को स्वतंत्र नहीं समझ पाती है। +","kanta ek naukri dhoon leti hai par madhav ki vajah se vah apne ko svtntr nahin samajh pati hai. +",8,1,neutral,negative,negative +"When Gora entered Krishnadayal 's room, he found Krishnadayal lying in bed, with Anandamayi sitting nearby and gently massaging his feet. +","'>> कृष्णदयाल के कमरे में पहुँचकर गोरा ने देखा वह बिस्तर पर लेटे हुए हैं और आनन्दमयी उनके पैरों के पास बैठी पाँव सहला रही है। +","krishnadyal ke kamre men pahunchakar gora ne dekha vah bistar par lete hue hain aur aanandamyi unke pairon ke pas baithi panv sahla rahi hai. +",9,2,neutral,neutral,negative +"The indemnifier after performing his part of the promise has no rights against the third party and he can sue the third party only if there is an assignment in his favour. +","वचन के अपने भाग का निष्पानदन करने के पश्चामत क्षति्पूर्तिकर्ता तृतीय पक्षकार के विरूद्ध कोई अधिकार शेष नहीं रहते तथा वह तृतीय पक्षकार पर तभी मुकदमा चल सकता है जब उसके पक्ष में कोई समनुदेशन हो। +","vachan ke apne bhag ka nishpanadan karne ke pashchamat kshtipoortikarta tritiy pakshkar ke virooddh koee adhikar shesh nahin rahte tatha vah tritiy pakshkar par tabhi mukadma chal sakta hai jab uske paksh men koee samnudeshan ho. +",7,4,neutral,negative,positive +"Reminds you when you forgot to add an attachment to a mail message. +","आपको याद दिलाता है जब आप डाक संदेश के लिए एक संलग्नक जोड़ना भूल गए. +","aapko yad dilata hai jab aap mail message ke lie ek forgot to add ge +",6,3,neutral,neutral,positive +"All the sadhaks are one in the Mother; all meditate in the presence of the Mother. +","सभी श्री मां की उपस्थिति में ध्यान करते हैं। +","sabhi shri mother ki presence men meditate karte hain. +",9,2,neutral,neutral,neutral +"PRESIDENT OF INDIA TO INAUGURATE AN INTERNATIONAL CONVENTION ON HOMOEOPATHY TOMORROW, Rashtrapati Bhavan : 08.04.2016 +","भारत के राष्ट्रपति कल होमियोपैथी पर एक अंतरराष्ट्रीय अभिसमय का उद्घाटन करेंगे।, राष्ट्रपति भवन : 08.04.2016 +","president of india kal homiyopaithi par ek international convention ka udghatan karenge., president bhavan : 08042016 +",8,3,neutral,neutral,neutral +"But those who deny Our messages will be seized by nemesis for being disobedient. +","रहे वे लोग, जिन्होंने हमारी आयतों को झुठलाया, उन्हें यातना पहुँचकर रहेगी, क्योंकि वे अवज्ञा करते रहे है +","rahe ve log , jinhonne hamari messages ko jhuthlaya , unhen yatna pahunchakar rahegi , kyonki ve avajnja karte rahe hai +",7,3,neutral,neutral,negative +"A complaint was also made about the delay in the Industrial Relations Bill. +","औद्योगिक सम्बंध विधेयक में देरी की भी एक शिकायत मिली है। +","industrial relations bill men deri ki bhi ek shikayat mili hai. +",9,1,neutral,neutral,negative +"Sales costs: Product inventory, raw materials, manufacturing equipment +","बिक्री लागतः उत्पाद सूची, कच्चा माल, निर्माण उपकरण +","product lagta product inventory, raw materials, manufacturing equipment +",4,3,neutral,neutral,neutral +"Colostrum, which is the first yellowish secretion from the breast, is full of substances that protect the baby from getting an infection; it 's almost like a vaccine. +","स्तन से निकलनेवाला पीले रंग का द्रव, जिसे कोलोस्ट्रम कहते हैं, शिशु को संक्रमण से बचाने और उसकी प्रतिरोधक क्षमता को मजबूत करने का सबसे अच्छा उपाय है। यह एक टीका है। +","stan se nikalnevala pile rng ka drav, jise kolostram kahte hain, shishu ko snkraman se bachane aur uski prtirodhak kshamta ko majboot karne ka sabse achchha upay hai. yah ek tika hai. +",7,4,neutral,neutral,positive +"Nature is to the Divine Self as character is to the human self. ” +","जिस प्रकार चरित्र मनुष्य के लिए होता है, उसी प्रकार दैवी आत्मा के लिए प्रकृति है. ” +","jis prkar character human ke lie hota hai, usi prkar divine aatma ke lie prkriti hai +",9,2,neutral,neutral,positive +"Sallow refers to sickly yellowish complexion. +","पाण्डुवर्ण या पीतवर्ण पीलेपन को निर्दिष्ट करता है. +","panduvarn ya pitavarn pilepan ko refers karta hai +",8,4,negative,neutral,neutral +"The place you go while you are staring at a computer that is processing something very slowly. +","वह स्थान जहाँ आप एक कंप्यूटर को घूर रहे हैं जबकि वह कंप्यूटर बहुत धीरे-धीरे कुछ प्रोसेसिंग कर रहा है। +","vah place jahan aap ek computer ko ghoor rahe hain jabki vah computer bahut dhire-dhire kuchh prosesing kar raha something +",5,1,neutral,neutral,neutral +"The most famous ballad is about 'Desingu Rajan', of Gingee in South Arcot district, who built two fortresses and died in the 17th century, fighting against a Muslim prince. +","इस राजा ने दो सुदृढ़ गढ़ बनवाये थे और सत्रहवीं शताब्दी में मुसलमानों के विरूद्ध लड़ते हुए वह मारा गया था। +","is south ne do sudri famous banvaye the aur satrahvin century men muslim ke virooddh larte hue vah mara gaya tha. +",7,2,neutral,neutral,negative +"The complement of any maxterm is a minterm. +","किसी भी योगपद का पूरक एक गुणद होता है। +","kisi bhi minterm ka complement ek gunad hota hai. +",8,1,neutral,neutral,neutral +"so that he could make coats of mail and properly measure their rings. We told him and his people to act righteously. We are Well - Aware of what you do. +","कि फँराख़ व कुशादा जिरह बनाओ और (कड़ियों के) जोड़ने में अन्दाज़े का ख्याल रखो और तुम सब के सब अच्छे (अच्छे) काम करो वो कुछ तुम लोग करते हो मैं यक़ीनन देख रहा हूँ +","ki phnra v kushada jirah banao aur kariyon ke jorne men andaze ka khyal rakho aur tum sab ke sab achchhe achchhe kam karo vo kuchh tum log karte ho main yainan dekh raha hoon +",6,4,neutral,neutral,positive +"Or the thought may come not as silent perception but as speech self - born out of the truth and complete in its own right and carrying in itself its own vision and knowledge. +","अथवा विचार एक मौन अनुभव के रूप में नहीं बल्कि एक ऐसी वाणी के रूप में प्रकट हो सकता है जो सत्य में से स्वयमेव जन्म लेती है और अपने निज अधिकार के बल पर ही पूर्ण होती है और अपना अन्तर्दर्शन और ज्ञान अपने ही अन्दर धारण किये होती है। +","athva vichar ek maun truth and complete men nahin balki ek aesi vani ke roop men prakat ho sakta hai jo saty men se svaymev janm leti hai aur apne nij adhikar ke bal par hi poorn hoti hai aur apna antardarshan aur jnjan apne hi andar dharan kiye hoti hai. +",8,0,neutral,negative,positive +"Could not transfer data to window +","डाटा को खिड़की पर स्थानान्तरित किया जा सका +","data ko khirki par sthanantrit kiya ja saka +",8,1,neutral,neutral,neutral +"a Messenger from Allah, reciting from Purified Scrolls; +","(यानि) ख़ुदा के रसूल जो पाक औराक़ पढ़ते हैं (आए और) +","yani uda ke messenger jo reciting from purified hain aae aur +",5,2,neutral,neutral,neutral +"and there's been a lot of talk about how life-changing this conference is +","और बहुत बातें हो रहीं हैं कि यह कांफ्रेंस कितनी असाधारण है, कायापलट कर देती है, +","aur bahut lot ho rahin hain ki yah conference kitni asadharan hai , kayapalat kar deti hai , +",7,0,positive,neutral,neutral +"that 's the same thing as multiplying by +","कि से गुणा करने के रूप में एक ही बात है +","ki se multiplying karne ke roop men ek hi same hai +",5,1,neutral,neutral,neutral +"Nominal check of the attendance is advisable. +","उपस्थिति की नाममात्र जांच उचित है। +","attendance ki nominal check uchit check +",6,5,neutral,neutral,neutral +"So just to remind ourselves, 5 and 5 / 8 is the exact same thing +","तो खुद को याद दिलाने के लिए, 5 और 5/8 बिल्कुल एक ही +","to khud ko yad dilane ke lie, 5 aur 58 exact ek hi +",5,5,neutral,neutral,neutral +"This is necessary if we have to reach the goal of creating a hunger - free society by doubling our food production in the next ten years. +","यह जरूरी है क्योंकि अगले 10 वर्षों में समाज से भुखमरी दूर करने के लिए खाद्य-उत्पादन दुगुना करना होगा। +","yah jaroori hai kyonki agle 10 varshon men samaj se bhukhamri door karne ke lie food production karna hoga. +",9,0,positive,neutral,positive +"Lamas practice dance, sing and play on pipes and horns. Many Lamas get religious training here. +","यहां लामा नृत्य, गीत गायन और नाटकों में पाइपों तथा सींगों का इस्तेमाल करते हैं। अनेक लामा यहां धार्मिक प्रशिक्षण प्राप्त करते हैं। +","yahan lama nrity, git gayan aur natkon men pipes and horns ka istemal karte hain. anek lama yahan dharmik prshikshan prapt karte hain. +",8,1,neutral,neutral,positive +"When Gora entered Krishnadayal 's room, he found Krishnadayal lying in bed, with Anandamayi sitting nearby and gently massaging his feet. +","'>> कृष्णदयाल के कमरे में पहुँचकर गोरा ने देखा वह बिस्तर पर लेटे हुए हैं और आनन्दमयी उनके पैरों के पास बैठी पाँव सहला रही है। +","krishnadayal ke room men pahunchakar gora ne dekha vah bed par lying hue hain aur aanandamyi unke feet ke pas baithi panv sahla rahi hai. +",8,3,neutral,neutral,negative +"when the earth shall be rocked +","जब धरती थरथराकर काँप उठेगी; +","jab earth tharathrakar kanp uthegi +",10,0,neutral,neutral,neutral +"There are cases in which the constituencies are more than 200 miles away from Lucknow. +","ऐसे भी निर्वाचन-क्षेत्र हैं, जो लखनऊसे दो सौ मीलसे भी ज्यादा दूर हैं। +","aese bhi constituencies hain, jo lakhnoose do sau milse bhi jyada door cases +",8,0,neutral,neutral,neutral +"Nearest - neighbor interpolation is an algorithm is used to map a screen pixel to the corresponding point on the texture map. +","निकटतम पड़ोसी-प्रक्षेप, एक कलन विधि (एल्गोरिथ्म) होती है, जो स्क्रीन के पिक्सेल को प्रतिचित्रण पर बिंदु के अनुरूप प्रतिचित्रतित करती है। +","nearest parosi-prakshep , ek algorithm vidhi map hoti hai , jo screen ke pixel ko prtichitran par point ke corresponding texture karti hai. +",9,2,neutral,neutral,neutral +"Why welding and why not computers? +","झाल लगाना की क्यों, कंप्यूटर क्यों नहीं? +","welding lagana ki kyon, computers kyon nahin +",8,1,neutral,neutral,neutral +"as well as to applied science +","साथ ही साथ व्यावहारिक विज्ञानं दोनों को लाभ थे | +","sath hi sath applied science donon ko labh the +",9,1,neutral,neutral,positive +"Without bridging the information gap, such disparity will persist. Of course, thanks to modern communication system, the asymmetry in information access is slowly getting eroded. +","सूचना के इस अंतर को पाटे बिना ऐसी असमानता बनी रहेगी। वास्तव में आधुनिक संचार प्रणाली का धन्यवाद, जिससे सूचना तक पहुंच में यह असंतुलन धीरे-धीरे समाप्त हो रहा है। +","soochna ke is antar ko pate bina aesi asmanta bani rahegi. vastav men modern communication system ka dhanyvad, jisse soochna tak pahunch men yah asntulan dhire-dhire samapt ho raha hai. +",9,1,negative,negative,positive +"We have not appointed any one but angels as keepers of Hell, and their number that We have fixed is to make it a means of contention for disbelievers, so that those who were given the Book may be certain, and the faith of the believers may have greater increase, and the people of the Book and believers may not be deceived, and the sceptics and infidels may say: ""What does God mean by this parable?"" That is how God leads whosoever He will astray, and guides whosoever He will. None knows the armies of your Lord save Him self. This is no more than reminder for mankind. +","और हमने जहन्नुम का निगेहबान तो बस फरिश्तों को बनाया है और उनका ये शुमार भी काफिरों की आज़माइश के लिए मुक़र्रर किया ताकि अहले किताब (फौरन) यक़ीन कर लें और मोमिनो का ईमान और ज्यादा हो और अहले किताब और मोमिनीन (किसी तरह) शक़ न करें और जिन लोगों के दिल में (निफ़ाक का) मर्ज़ है (वह) और काफिर लोग कह बैठे कि इस मसल (के बयान करने) से ख़ुदा का क्या मतलब है यूँ ख़ुदा जिसे चाहता है गुमराही में छोड़ देता है और जिसे चाहता है हिदायत करता है और तुम्हारे परवरदिगार के लशकरों को उसके सिवा कोई नहीं जानता और ये तो आदमियों के लिए बस नसीहत है +","aur hamne hell ka keepers to means pharishton ko banaya hai aur unka ye number bhi infidels ki contention ke lie murrar kiya taki ahle book phauran greater kar guides aur increase ka eeman aur jyada ho aur ahle book aur mominin kisi tarah sha n karen aur jin logon ke dil men parable ka marz hai vah aur kaphir people kah baithe ki is sceptics ke bayan karne se uda ka kya matalab hai yoon uda jise chahta hai gumrahi men chhor deta hai aur jise chahta hai hidayat karta hai aur tumhare paravardigar ke armies ko uske siva koee nahin janta aur ye to aadmiyon ke lie means nasihat hai +",7,3,neutral,neutral,positive +"The President said that Legislative Assembly is the master of Executive in matters of taxation and finance. +","राष्ट्रपति ने कहा कि विधान सभा करारोपण तथा वित्त के मामले में कार्यपालिका की स्वामी है। +","president ne kaha ki legislative assembly taxation tatha finance ke mamle men executive ki master hai. +",9,0,neutral,neutral,neutral +"From 1998 - 99, various poverty alleviation and employment generation programmes are grouped under two broad categories of: +","वर्ष 1998-99 से चलने वाले कई तरह के गरीबी उन्मूलन तथा रोजगार सृजन कार्यक्रमों को व्यापक रूप से दो वर्गों में रखे गए हैंः +","varsh 1998-99 se chalne vale kee tarah ke poverty alleviation tatha employment generation programmes ko vyapak roop se do vargon men rakhe ge haina +",8,0,neutral,neutral,negative +"_ Apply filters to new messages in Inbox on this server +","इस सर्वर पर इनबाक्स में नए संदेश के लिए फिल्टर चलाएँ (_ A) +","is server par inbox apply ne messages ke lie filters chalaen _ A +",7,1,neutral,neutral,neutral +"He stuck to the practices he had learnt during training. +","उन्होंने प्रशिक्षण के दौरान सीखी पद्धतियों का ही पालन किया। +","unhonne training ke dauran sikhi paddhtiyon ka hi palan kiya. +",9,1,neutral,neutral,negative +"When they came to a gutter filled with rain water, they plunged in, scream - ing with laughter. +","छोकरे जब बारिश के पानी से भरा नाली के निकट पहुंचे, तो उसी में कूद पड़े और धमाचौकड़ी मचाते हुए हो-हल्ला करने लगे। +","chhokre jab barish ke filled with rain nali ke nikat pahunche, to usi men kood pare aur dhamachaukari machate hue ho-halla karne lage. +",7,1,negative,negative,positive +"(That) We sent it down one night of blessing - - so that We could warn - - +","निस्संदेह हमने उसे एक बरकत भरी रात में अवतरित किया है।-निश्चय ही हम सावधान करनेवाले है।- +","nissndeh hamne use ek barakat bhari night men avatrit kiya hai.-nishchay hi ham savdhan karnevale hai.- +",5,4,neutral,neutral,positive +"Could not rename '% s' to% s:% s +","`% s 'का% s यह पुनर्नामकरण नहीं कर सकाः% s +","s ka s yah rename nahin kar sakaa s +",8,0,negative,negative,neutral +"You must enable remote connections if you want to use Chromoting to access this computer. +","यदि आप इस कंप्यूटर पर पहुंचने के लिए Chromoting का उपयोग करना चाहते हैं, तो आपको दूरस्थ कनेक्शन सक्षम करने होंगे. +","yadi aap is access par pahunchne ke lie Chromoting ka upyog karna chahte hain , to aapko remote connections saksham karne honge +",7,1,neutral,neutral,positive +"It is divided into six parts , five of which deal with cosmic matters . +","यह छह भागों में विभक़्त है जिनमें से पांच में ब्रह्मांड से संबंधित विषयों पर चर्चा की गई है . +","yah chhah parts men deal hai jinmen se panch men cosmic se snbndhit matters par charcha ki gee hai +",6,4,neutral,neutral,neutral +"than about capturing a moment really. +","बजाय सच में एक पल को खींचने के | +","bajay sach men ek moment ko khinchne ke +",9,1,neutral,neutral,neutral +"And she conceived him, and she withdrew with him to a far place. +","फिर उसे उस (बच्चे) का गर्भ रह गया और वह उसे लिए हुए एक दूर के स्थान पर अलग चली गई। +","phir use us bachche ka garbh rah gaya aur vah use lie hue ek door ke place par alag chali gee. +",8,4,neutral,neutral,neutral +"They said: ""We swear by Allah! Indeed Allah has chosen you in preference to us and we were truly guilty."" +","उन्होंने कहा, ""अल्लाह की क़सम! आपको अल्लाह ने हमारे मुक़ाबले में पसन्द किया और निश्चय ही चूक तो हमसे हुई।"" +","unhonne kaha, allah ki swear! aapko allah ne hamare muable men pasand kiya aur nishchay hi chook to hamse chosen +",8,1,negative,positive,negative +"The type ""% s"" is not a valid type. +","% s नियमित फाइल नहीं है +","type niymit phail nahin hai +",7,1,negative,negative,neutral +"he had spent most time in racing, wrestling and hunting and he never had interest in studies +","उसका काफी समय आखेट दौड़ व द्वंद्व कुश्ती आदि में बीता तथा शिक्षा में उसकी रुचि नहीं रही। +","uska kaphi time in racing v dvndv kushti aadi men bita tatha shiksha men uski ruchi nahin rahi. +",7,1,neutral,neutral,negative +"A pangolin 's territory is around 3 square miles 8 sq km. +","पैंगोलिन का क्षेत्र लगभग आठ वर्ग किलोमीटर का होता है। +","paingolin ka kshetr lagabhag aath varg miles ka hota hai. +",4,7,neutral,neutral,neutral +"Brittani officer has captured the jewelery and her husband 's debt has been accounted from the queens yearly maintenance. +","ब्रितानी अधिकारियों ने राज्य का खजाना ज़ब्त कर लिया और उनके पति के कर्ज़ को रानी के सालाना खर्च में से काट लिया गया। +","britani officer ne rajy ka khajana zabt kar liya aur unke husband ke debt ko rani ke salana maintenance men se jewelery liya gaya. +",6,2,neutral,neutral,negative +"But nay! I swear by the sunset redness, +","तो मुझे शाम की मुर्ख़ी की क़सम +","to mujhe sunset ki muri ki swear +",7,5,neutral,neutral,negative +"And what can make you know what is the Striking Calamity? +","और तुम्हें क्या मालूम कि क्या है वह खड़खड़ानेवाली? +","aur tumhen kya maloom ki kya hai vah kharakharanevali +",10,0,neutral,neutral,neutral +"A component of a chemical compound which is essential. +","किसी रासायनिक यौगिक का घटक जो आवश्यक होता है. +","kisi chemical compound ka component jo essential hota hai +",7,5,neutral,neutral,neutral +"(Unbelievers) whose eyes had been under a veil from remembrance of Me, and who had been unable even to hear. +","जिनके नेत्र मेरी अनुस्मृति की ओर से परदे में थे और जो कुछ सुन भी नहीं सकते थे +","jinke eyes meri remembrance ki or se veil men the aur jo kuchh unable bhi nahin sakte the +",5,3,neutral,neutral,neutral +"Central Excise, Customs and Service Tax, Patna +","केन्द्रीय उत्पाद शुल्क, सीमा शुल्क और सेवा कर, पटना +","central excise tax, sima customs and service kar, patna +",7,0,neutral,neutral,neutral +"City Civic Centre Locations (External website that opens in a new window) +","शहर नागरिक केंद्र स्थान (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","shahar civic centre locations bahri vebsait jo ek nee vindon website that opens +",5,4,neutral,neutral,neutral +"Advanced training of intelligence officers is conducted by the Intelligence Bureau. +","गुप्तचर अधिकारियों के उन्नत प्रशिक्षण का काम गुप्तचर विभाग द्वारा किया जाता है। +","intelligence officers ke unnat training of intelligence intelligence bureau dvara kiya jata hai. +",4,6,neutral,neutral,positive +"writing in the 1850s about how the railroad, the steam ship, +","कैसे रेल, स्टीमर के बारे में 1850 के दशक में लेखन, +","kaise rel , stimar ke bare men 1850 ke dashak men railroad , +",7,1,neutral,neutral,neutral +"Leaving them like chewed - up leaves. +","अन्ततः उन्हें ऐसा कर दिया, जैसे खाने का भूसा हो +","antta unhen aesa kar diya, jaise khane ka chewed ho +",3,5,negative,neutral,positive +"Where the front skin join with the area under the penis. called as joint of front s4kin (farunulum). +","शिश्न के निचली ओर का वह क्षेत्र जहाँ से अग्रत्वचा जुड़ी रहती है अग्रत्वचा का बंध (फेरुनुलम) कहलाता है। +","penis ke nichli or ka vah kshetr jahan se front skin join hai agratvcha ka join pherunulam kahlata hai. +",7,5,neutral,neutral,positive +"In the moulded type a full human or animal figure is fashioned. +","ढलाई में मानव और पशुओं की पूरी आकृति बनायी जाती है। +","dhalaee men human or animal ki poori aakriti banayi jati hai. +",10,0,neutral,neutral,neutral +"Radhakrishnan returned to the Madras Presidency College in 1911. +","मद्रास प्रेसीडेंसी कॉलेज में राधाकृष्णन 1911 में लौटे। +","madras presidency college men radhakrishnan 1911 men laute. +",10,0,neutral,neutral,neutral +"“ Look ! ” he said . +","“ देखो ! ” उसने कहा । +","dekho ! s usne kaha . +",9,2,neutral,neutral,neutral +"In kwick cricket the bowlers don't wait for the batsmen to be ready. This one has been designed for youngsters as it is more tiring and is usually presented during P.E. classes in English schools. Another change has been made to the games to make it faster, which is 'tip and run'. 'Tipty' run, 'Tipsy' run or 'Tippy-Go' rule. In this when the ball touches the bat, the batsman has to take a run even if he has not touched the ball deliberately. This rule can only be observed during instant play. In this instead of the batsman slowing the ball by his touch increases the speed. +","क्विक क्रिकेट (Kwik cricket)में गेंदबाज बल्लेबाज के तैयार होने का इन्तजार नहीं करता है यह अधिक थका देने वाला खेल बच्चों के लिए डिज़ाइन किया गया है. यह अक्सर अंग्रेजी स्कूलों में पी ई पाठ के लिए प्रयुक्त किया जाता है. इस खेल की गति बढ़ाने के लिए इसमें एक और संशोधन किया गया है ये हैं टिप और रन “टिप्टी” रन” टिप्सी रन या टिप्पी- गो नियम.इसमें जब गेंद बल्ले को छूती है तो बल्लेबाज को भागना ही होता है चाहे यह स्पर्श जान बूझ कर न किया गया हो या बहुत ही कम हो. यह नियम तत्काल खेल में ही देखा जा सकता है इसमें बल्लेबाज के द्वारा गेंद को रोकने के अधिकार को हटा कर इसकी गति को बढ़ने की कोशिश की गई है. +","kvik kriket Kwik cricketmen gendbaj ballebaj ke taiyar hone ka intjar nahin karta hai yah adhik thaka dene vala khel bachchon ke lie dizain kiya gaya hai yah aksar angreji skoolon men pi ee path ke lie pryukt kiya jata hai is khel ki gati baane ke lie ismen ek aur snshodhan kiya gaya hai ye hain tip aur ran tipti ran tipsi ran ya tippi- go niyamismen jab gend balle ko chhooti hai to ballebaj ko bhagna hi hota hai chahe yah sparsh jan boojh kar n kiya gaya ho ya bahut hi kam ho yah niyam tatkal khel men hi dekha ja sakta hai ismen ballebaj ke dvara gend ko rokne ke adhikar ko hata kar iski gati ko bane ki koshish ki gee hai +",8,3,neutral,neutral,positive +"A new idea with another turn of the logical machine revolts against it and breaks up the machinery, but A new idea with another turn of the logical machine revolts against it and breaks up the machinery, +","तब एक नया विचार इस तर्कसंगत यन्त्र की एक और प्रवृति को लिए हुए उसके विरुद्ध खड़ा हो जाता है और उस यन्त्र को तोड़-फोड़ देता है, किन्तु वह उसे इसलिए तो तोड़ता है कि अन्त में वह उसके स्थान पर एक दूसरी यांत्रिक प्रणाली की, किसी अन्य मत सिद्धान्त या आचार-पद्धति की स्थापना कर सके। +","tab ek naya vichar is tarksngat yantr ki ek aur prvriti ko lie hue uske viruddh khara ho jata hai aur us yantr ko tor-phor deta hai, kintu vah use islie to torta hai ki ant men vah uske sthan par ek doosri yantrik prnali ki, kisi any mat siddhant ya aachar-paddhti ki sthapna kar sake. +",7,3,neutral,neutral,neutral +"he is linking up something very creative. +","ये कुछ बेहद रचनात्मक कर रहे हैं । +","ye kuchh behad creative kar rahe hain something +",8,2,positive,positive,positive +"Mangle From: / To: headers in replies to replies +","जवाब के जवाब में द्वाराः/कोः हेडर्स बिगड़े +","replies ke replies men headers in replies +",6,3,neutral,neutral,neutral +"We have tried to correct them. +","हमने उन्हें सुधारने की कोशिश की है। +","hamne unhen correct ki koshish ki hai. +",8,2,neutral,neutral,neutral +"I think we have a problem in Mexico. +","मैं सोचता हूँ कि हमारे पास मेक्सिको में समस्या है | +","i sochta hoon ki hamare pas mexico men problem hai +",7,1,negative,negative,negative +"Please circulate deposit book to new members. +","जमा हुंडी नये लोगों को वितरित कर दो। +","deposit hundi new logon ko vitrit kar do. +",8,0,neutral,neutral,positive +"Error verifying signature:% s +","हस्ताक्षर प्रमाणित करते समय त्रुटिः% s +","verifying signature karte samay error s +",9,2,negative,neutral,negative +"and there are any disturbances, you know what happens. +","और कुछ गड़बड़ी हो, आप जानते क्या होता है | +","aur kuchh disturbances ho , aap jante kya hota hai +",9,2,neutral,negative,negative +"Long term loan for agricultural appliances is admissible. +","कृषि उपकरण के लिए दीर्घकालीन ऋण उपलब्ध हैं। +","agricultural appliances ke lie long loan upalabdh hain. +",8,2,neutral,neutral,neutral +"Renicapsule refers to the capsule in the kidney. +","अधिवृक्क-पिण्ड वृक्क में संपुटक को निर्दिष्ट करता है. +","adhikidney-pind kidney men capsule ko nirdisht karta hai +",8,1,neutral,neutral,neutral +"It was a frightening bet . +","बड़ी भयावह बाजी थी यह । +","bari bhayavah bet thi yah . +",4,7,negative,neutral,negative +"This is not the case . +","लेकिन यह बात नही है . +","lekin yah bat nahi hai +",10,0,neutral,neutral,neutral +"(a) no deduction shall be admissible under this section to the amalgamating or the demerged company for the previous year in which the amalgamation or the demerger takes place; and +","(क) समामेलक या अविलयित कंपनी को, उस पूर्ववर्ष के लिए, जिसमें समामेलन या अविलयन होता है, इस धारा के अधीन कोर्इ कटौती अनुज्ञेय नहीं होगी; और +","k samamelak ya demerged company ko, us poorvavarsh ke lie, jismen samamelan ya avilayan hota hai, is dhara ke adhin kori katauti anujnjey nahin hogi aur +",7,6,neutral,neutral,negative +"But we know we're not perfect , and if you're not happy with what Social Services has done , you've got the right to complain about it . +","लेकिन हमें पता है हम परिपक्व नही हैं , और अगर आप सामाजिक सेवाएं के काम से नाराज हैं तो आपको शिकायत करने का अधिकार है | +","lekin hamen pata hai ham perfect nahi hain , aur agar aap social services ke kam se happy hain to aapko shikayat karne ka right hai +",6,1,negative,positive,negative +"Doubt that anyone charged with and tried for the 7/7 attacks would receive a fair trial: 44 percent. +","44 प्रतिशत मुसलमानों को इस बात में संशय है कि 7 जुलाई के विस्फोटों के आरोपियों पर निष्पक्ष मुकदमा चल सकेगा. +","44 percent musalmanon ko is anyone men doubt hai ki 7 julaee ke attacks ke trial par fair mukadma chal sakega +",6,3,negative,negative,negative +"I am learning for you. +","मैं आपके लिये ज्ञान/विद्या अर्जित कर रहा हूँ। +","i aapke liye jnjanvidya arjit kar raha hoon. +",6,6,positive,neutral,neutral +"Tansen fell ill and it was two months before he could return to the court. +","लगातार दो महिने तक वह बीमार रहा। +","lagatar do months tak vah bimar raha. +",8,0,negative,negative,negative +"Nanalal was not merely a new signature but a new voice in modern Gujarati poetry. +","नानालाल गुजराती आधुनिक काव्य में एक नये हस्ताक्षर ही नहीं, एक नये स्वर भी थे। +","modern gujarati poetry kavy men ek naye hastakshar hi nahin, ek naye svar bhi the. +",4,1,neutral,neutral,neutral +"The cumulative size of all web databases in the security origin +","सुरक्षा उद्गम में सभी वेब डेटाबेस के संचयी आकार +","security origin men sabhi web databases ke cumulative size +",8,4,neutral,neutral,positive +"As I knew about it I instantly asked with great curiosity, I had an Indian friend. +","जैसे ही मुझकों इसका पता चला, मैंने तुरंत ही बड़ी जिज्ञासा के साथ उनसे पूछा, मेरे एक हिंदुस्तानी मित्र थे। +","jaise hi i iska pata indian , mainne turnt hi great curiosity ke sath unse poochha , mere ek hindustani friend the. +",6,3,positive,neutral,positive +"I am concerned with matters of consequence. +","मैं … मैं गंभीर व्यक्ति हूँ न, मुझे बेकार की बातों से कोई दिलचस्पी नहीं। +","i i matters vyakti hoon n , mujhe bekar ki baton se koee consequence nahin. +",3,1,neutral,neutral,neutral +"We need really to see it. And instead of looking at this, +","हमें वास्तव में इसे देखने की ज़रूरत है और इसे देखने की अपेक्षा +","hamen vastav men ise dekhne ki zaroorat hai aur ise dekhne ki apeksha +",5,8,neutral,neutral,neutral +"then do not put me, my Lord, among the wrongdoing lot. ’ +","तो मेरे रब! मुझे उन अत्याचारी लोगों में सम्मिलित न करना। "" +","to mere rab! mujhe un wrongdoing logon lot sammilit n put +",6,4,neutral,negative,neutral +"This was essentially Earth. Obviously, Earth got changed +","यह अनिवार्य रूप से पृथ्वी था। जाहिर है, पृथ्वी बदला मिल गया +","yah anivary roop se earth tha. jahir hai , earth badla mil gaya +",6,1,neutral,neutral,neutral +"The higher education sector is witnessing sweeping changes the world over. +","उच्च शिक्षा क्षेत्र में पूरे विश्व में तीव्र बदलाव आ रहे हैं। +","higher education sector men poore vishv men tivr badlav aa rahe hain. +",8,3,positive,negative,neutral +"And certainly We gave Musa the Book that they may follow a right direction. +","और हमने मूसा को किताब प्रदान की, ताकि वे लोग मार्ग पा सकें +","aur hamne moosa ko book prdan ki , taki ve log marg direction saken +",6,3,positive,neutral,positive +"User for login if not current user. +","उपभोक्ता का नाम बताएं अगर आप वर्तमान उपभोक्ता नही है +","user ka nam login agar aap current user nahi hai +",8,0,neutral,neutral,neutral +"He said, “O my son, do not relate your vision to your brothers, lest they plot and scheme against you. Satan is man 's sworn enemy. +","याक़ूब ने कहा ऐ बेटा (देखो ख़बरदार) कहीं अपना ख्वाब अपने भाईयों से न दोहराना (वरना) वह लोग तुम्हारे लिए मक्कारी की तदबीर करने लगेगें इसमें तो शक़ ही नहीं कि शैतान आदमी का खुला हुआ दुश्मन है +","yaoob ne kaha ae beta dekho bardar kahin apna khvab apne bhaeeyon se n dohrana varna vah log plot and scheme ki tadbir karne lagegen ismen to sha hi nahin ki shaitan aadmi ka khula huaa dushman hai +",4,6,negative,negative,negative +"Where there is no economic change, there the position of women remains the same. +","जहां कहीं आर्थिक स्थिति नहीं बदली है, वहां स्त्रियों का दर्जा भी अपरिवर्तनीय रहा है। +","jahan kahin aarthik sthiti nahin badli hai, vahan position of women bhi aprivartniy raha hai. +",7,1,neutral,neutral,negative +"Sucharita shut the kitchen door noisily and sank to the floor, bursting into sobs. +",">> सुचरिता ने धड़ाके से रसोई का दरवाज़ा बन्द कर दिया और फर्श पर बैठ गई। +","sucharita ne dharake se kitchen ka door band kar diya aur floor par sobs gee. +",7,1,negative,neutral,negative +"Amritsar is famous for the Golden Temple. +","अमृतसर स्वर्ण मंदिर के लिए प्रसिद्ध है। +","amritasar golden temple ke lie prsiddh famous +",9,0,positive,neutral,neutral +"The main plateaus are the Baghelkhand and the Chota Nagpur. +","इस क्षेत्र के प्रमुख पठार बघेलखंड तथा छोटा नागपुर हैं। +","is kshetr ke main plateaus baghelkhand tatha chhota nagpur hain. +",9,1,neutral,neutral,neutral +"The Congress called the plan 'preposterous'. +","कांग्रेस ने योनजा को ‘असंगत’ कहा। +","congress ne yonja ko asngat plan kaha. +",9,1,negative,neutral,neutral +"(c) assessment or reassessment, if any, has been made, before the date of receiving the books of account or documents or assets seized or requisitioned by the Assessing Officer having jurisdiction over such other person, such Assessing Officer shall issue the notice and assess or reassess total income of such other person of such assessment year in the manner provided in section 153A. +","(ग) निर्धारण या पुनर्निर्धारण, यदि कोर्इ हो, किया गया है, वहां ऐसा निर्धारण अधिकारी धारा 153क में उपबंधित रीति में सूचना जारी करेगा और उस निर्धारण वर्ष के लिए ऐसे अन्य व्यक्ति की कुल आय का निर्धारण या पुनर्निर्धारण करेगा। +","c assessment ya reassess , yadi kori ho , kiya gaya hai , vahan such assessment officer section 153k men upbndhit manner men notice jari karega aur us assessment year ke lie aese other person ki kul income ka assessment ya reassess karega. +",5,2,neutral,neutral,positive +"Shortly after taking up the job, he was married in 1912 to Shivdayee, with whom he was betrothed since infancy. +","काम पर लगने के शीघ्र बाद ही 1912 मे शिवदाई के साथ उनका विवाह हो गया, जिसके साथ जन्म से ही उनकी मँगनी हो चुकी जीवन 19 थी। +","job par lagne ke shighr bad hi 1912 me shivdaee ke sath unka vivah ho gaya , jiske sath janm se hi unki mngni ho chuki jivan infancy thi. +",6,4,neutral,neutral,neutral +"The Ministry of Labour & Employment, Government of India, instituted the National Safety Awards (Mines) in 1983 for the contest year 1982 to promote a competitive spirit amongst mine operators for the betterment of safety standards in mines and to give due recognition to outstanding safety performance at the national level. +","श्रम और रोजगार मंत्रालय, भारत सरकार ने खानों में सुरक्षा मानकों की बेहतरी तथा राष्ट्रीय स्तर पर उल्लेखनीय सुरक्षा निष्पादन को उचित महत्त्व देने के लिए खान संचालकों में प्रतिस्पर्धा की भावना को बढ़ावा देने के लिए प्रतियोगिता वर्ष के लिए 1983 में राष्ट्रीय सुरक्षा पुरस्कार (खान) आरम्भ किए थे। +","shram aur rojgar mntralay, bharat sarkar ne khanon men suraksha mankon ki behatri tatha rashtriy star par outstanding safety performance ko give due recognition ke lie khan snchalkon men prtispardha ki bhavna ko baava dene ke lie prtiyogita varsh ke lie 1983 men national safety awards khan aarambh kie the. +",6,5,positive,neutral,positive +"A sudden involuntary contraction of one or more muscle +","अचानक होने वाला एक या अधिक मांसपेशियों का संकुचन +","sudden hone vala ek ya more muscle ka involuntary +",6,2,neutral,neutral,neutral +"We're going to go back to the moon ... 50 years later? +","हम चाँद पे फिर से जा रहे हैं - 50 साल बाद - +","ham moon pe phir se ja rahe hain - 50 years bad - +",9,0,neutral,neutral,neutral +"Everyday, she has to get up at 4 o’clock in the morning to cook for her husband who leaves at 5 o’clock in the morning to work at the industrial unit in neighbouring Gamharia town. Earlier she could barely see what she was grinding on the pestle stone. +","प्रतिदिन, उन्हें अपने पति के लिए भोजन तैयार करने के लिए प्रातः 4 बजे उठना पड़ता है, जो पास के गम्हारिया कस्बे में एक औद्योगिक इकाई में काम करने के लिए प्रातः 5 बजे घर से निकल पड़ते हैं। +","prtidin, unhen apne pati ke lie bhojan taiyar karne ke lie prata 4 baje uthna parta hai, jo pas ke gamhariya kasbe men ek audyogik ikaee men kam karne ke lie prata 5 baje ghar se nikal parte hain. +",7,2,neutral,neutral,neutral +"Dak Babu was absorbed in his work. +","डाक बाबू अपने काम में व्यस्त थे। +","dak babu apne kam men vyast the. +",10,0,neutral,neutral,neutral +"where god shanker was telling the story to parvatijiof ram story there was a crow 's nest and inside the nest crow was also listenng the story +","जहाँ पर भगवान शंकर पार्वती जी को भगवान श्री राम की कथा सुना रहे थे वहाँ कागा (कौवा) का एक घोसला था और उसके भीतर बैठा कागा भी उस कथा को सुन रहा था। +","jahan par god shnkar parvti ji ko god shri ram ki story suna rahe the vahan kaga shanker ka ek ghosla tha aur uske bhitar baitha kaga bhi us story ko sun raha tha. +",7,1,neutral,neutral,positive +"When they are cast into it they will hear it sighing, the while it boils +","जब वे उसमें डाले जाएँगे तो उसकी दहाड़ने की भयानक आवाज़ सुनेंगे और वह प्रकोप से बिफर रही होगी। +","jab ve usmen dale jaenge to uski daharne ki bhayanak aavaz sunenge aur vah prkop se biphar rahi hogi. +",5,8,neutral,neutral,neutral +"These were the ushnisa or turban, a pair of flywhisks, umbrella, sword, sandals, and the royal standard. +","ये थे; पगड़ी, चंवरों की जोड़ी, छतरी, खड़ग, चप्पल तथा राजसी ठाट-बाट से रहना। +","ye the turban, chnvron ki jori, umbrella, sword, chappal tatha rajsi that-bat se rahna. +",8,0,neutral,neutral,neutral +"The company 's new project employed 2500 people, including 300 expatriates and 2200 locals. +","कम्पनी की नई परियोजना में कुल 2500 लोगों में से 300 प्रवासी थे और बाकी 2200 लोग देशी। +","company ki nee pariyojna men kul 2500 locals men se 300 expatriates the aur baki 2200 log including +",6,3,neutral,neutral,neutral +"With the fingerprints of the man in their custody matching Chhota Rajan 's specimen prints provided by the Mumbai police, the Thai police are clear about his identity. +","थाई पुलिस अपनी हिरासत में मौजूद व्यैक्त की उंगलियों के निशान मुंबई पुलिस द्वारा भेजे गए छोटा राजन की उंगलियों के निशान से मिलने से उसकी पहचान को लेकर निश्चिंत है. +","thai police apni custody men man vyaikt ki prints ke nishan mumbai police dvara bheje ge chhota chhota ki prints ke nishan se milne se uski fingerprints ko lekar nishchint hai +",6,3,neutral,neutral,positive +"Lala Hardayal was building up his revolutionary Gaddar Party in America. +","उन दिनों अमेरिका में लाला हरदयाल की ‘गदर पार्टी’ एक क्रांतिकारी संगठन का रुप ले रही थी। +","un party in america lala haradyal ki gadar parti ek krantikari sngathan ka rup le rahi thi. +",8,2,neutral,neutral,positive +"Notify when remote emails are queued +","जब रिमोट ई-मेल क़तारबद्ध हों तो सूचित करें +","jab remote emails are queued to soochit karen +",7,1,neutral,neutral,neutral +"I convey my special greetings to members of our Armed Forces, Para-military Forces and Internal Security Forces. +","मैं सशस्त्र बलों, अर्द्धसैनिक बलों और आंतरिक सुरक्षा बलों के सदस्यों को अपनी विशेष बधाई देता हूं। +","i armed forces , arddhsainik forces aur internal security forces ke members ko apni special greetings deta hoon. +",8,2,positive,neutral,positive +"Convenient to man (giver), inconvenient to man (giver), pleasure to man (giver). +","· पुरुष (Giver) को सहूलियत ☻☻☻☻ · पुरुष (Giver) को परेशानी ☺ · पुरुष (Giver) को आनंद ☻☻☻☻ ☺ +","man Giver ko sahooliyat man Giver ko pareshani man Giver ko pleasure +",7,1,neutral,neutral,positive +"Unable to connect to the Internet +","इंटरनेट से कनेक्ट होने में असमर्थ +","internet se kanekt hone men unable +",7,3,negative,neutral,neutral +"A dvitala and hence ashtanga, or ashtavarga vimana of the same Nagara order, square from base to apex is illustrated in the incomplete Valaiyankuttai ratha facing east. +","उसी नागर श्रेणी का एक द्वितल और इसलिए अष्टांग या अष्टवर्ग, आधार से शिखर तक वर्गाकार विमान, पूर्वाभिमुख अपूर्ण वलैयांकुट्टई रथ के रूप में देखा जा सकता है। +","usi nagara shreni ka ek dvitala aur hence ashtanga ya ashtavarga , base se shikhar tak square viman , east incomplete valaiyankuttai ratha ke roop men dekha ja sakta hai. +",8,2,neutral,neutral,neutral +"Do you call on Ba 'lan (the idol Baal) and abandon the Best Creator, +","क्या तुम 'बअत' (देवता) को पुकारते हो और सर्वोत्तम सृष्टा। को छोड़ देते हो; +","kya tum bat devta ko call ho aur sarvottam abandon ko chhor dete ho +",3,3,negative,positive,positive +"Indeed for Allah only is the kingship of the heavens and the earth; He gives life and He gives death; and other than Allah, you have neither a Protector nor any Supporter. +","इसमें तो शक़ ही नहीं कि सारे आसमान व ज़मीन की हुकूमत ख़ुदा ही के लिए ख़ास है वही (जिसे चाहे) जिलाता है और (जिसे चाहे) मारता है और तुम लोगों का ख़ुदा के सिवा न कोई सरपरस्त है न मददगार +","ismen to sha hi nahin ki kingship heavens v life ki hukoomat allah hi ke lie as hai vahi jise chahe death hai aur jise chahe marta hai aur tum logon ka allah ke siva n koee supporter hai n madadgar +",6,0,neutral,negative,negative +"Those who have gone before them belied, yet they did not reach a tenth of what We gave them; yet they belied My Messengers. And how was (My) rejection (their destruction)! +","और झूठलाया उन लोगों ने भी जो उनसे पहले थे। और जो कुछ हमने उन्हें दिया था ये तो उसके दसवें भाग को भी नहीं पहुँचे है। तो उन्होंने मेरे रसूलों को झुठलाया। तो फिर कैसी रही मेरी यातना! +","aur jhoothlaya un logon ne bhi jo unse pahle the. aur jo kuchh hamne unhen diya tha ye to uske dasven bhag ko bhi nahin pahunche hai. to unhonne mere rasoolon ko jhuthlaya. to phir kaisi rahi meri yatna! +",6,5,negative,negative,negative +"This called for an additional capacity of about 18 million tonnes, raising the total capacity to 43 million tonnes in 1980 - 85. +","इसका अर्थ था लगभग 180 लाख टन की अतिरिकत क्षमता इससे सन् 1980-85 में कुल क्षमता बढ़ाकर 430 लाख हो जायेगी. +","iska arth tha lagabhag 180 lakh tan ki atirikat kshamta isse san 1980-85 men kul additional capacity 430 lakh ho jayegi +",7,3,neutral,neutral,neutral +"your council's decisions on housing issues are more open and accountable to you; +","रिहाइशी मामलों के बारे में आपकी कौंसिल के फ़ैसलें अधिक सार्वजनिक होंगे और कौंसिल आपके सामने अधिक जवाब देह होगी | +","housing issues ke bare men aapki kaunsil ke decisions on housing honge aur kaunsil aapke samne adhik javab deh hogi +",8,0,neutral,neutral,neutral +"'This, is the reward for what your hands have forwarded. Allah is not unjust to the worshipers' +","(कहा जाएगा,) यह उसके कारण है जो तेरे हाथों ने आगे भेजा था और इसलिए कि अल्लाह बन्दों पर तनिक भी ज़ुल्म करनेवाला नहीं +","kha jaega, yah uske karan hai jo tere hands have forwarded bheja tha aur islie ki allah bandon par tanik bhi zulm karnevala nahin +",6,3,positive,neutral,positive +"ganga vally is the biggest in India +","गंगा नदी प्रणाली भारत की सबसे बड़ी नदी प्रणाली है। +","ganga vally prnali bharat ki sabse bari vally prnali hai. +",7,1,positive,positive,neutral +"The Organisation has three Regional Headquarters i. e. Mumbai, Chennai, and Port Blair. +","इसके तीन क्षेत्रीय मुख्यालय, मुंबई, चेन्नई और पोर्ट ब्लेयर में हैं। +","iske tin regional headquarters, mumbai, chennee aur port blair men hain. +",9,0,neutral,neutral,neutral +"and there did not come to them any apostle but that they used to deride him. +","और (उनकी भी यही हालत थी कि) उनके पास कोई रसूल न आया मगर उन लोगों ने उसकी हँसी ज़रुर उड़ाई +","aur unki bhi yahi halat thi ki unke pas koee rasool n aaya magar un logon ne uski hnsi zarur uraee +",8,3,neutral,neutral,negative +"How [dreadful] was My punishment and My warning! +","तो (उनको) मेरा अज़ाब और डराना कैसा था +","to unko punishment warning aur dreadful kaisa tha +",4,3,negative,neutral,negative +"In 1895 she went to england for higher studies and along with studies she also wrote poetry. +","वे १८९५ में उच्च शिक्षा प्राप्त करने के लिए इंग्लैंड गईं और पढ़ाई के साथ-साथ कविताएँ भी लिखती रहीं। +","ve १८९५ men higher studies prapt karne ke lie inglaind geen aur paaee ke wrote poetry bhi likhti rahin. +",6,1,neutral,neutral,neutral +"They are allowed to accept / renew public deposits for a minimum period of 12 months and maximum period of 60 months. +","उनके लिए कम से कम 12 माह की अवधि के लिए और अधिकतम 60 माह की अवधि के लिए सार्वजनिक जमाओं को स्वीककार/नवीकरण करने की अनुमति है। +","unke lie kam se kam 12 months ki avdhi ke lie aur adhikatam 60 months ki avdhi ke lie public deposits ko svikkarnvikaran karne ki anumti hai. +",9,2,neutral,neutral,positive +"They were as good as the babies in Taiwan +","वो ताइवान वाले शिशुओं जीतने अच्छे थे +","vo taiwan vale babies jitne good the +",9,1,positive,positive,positive +"The only other way is the socialist way. +","दूसरा रास्ता सिर्फ समाजवाद का रास्ता है। +","other only sirph socialist ka only hai. +",5,2,negative,neutral,neutral +"she 's standing, those Rockports slightly apart, but grounded. +","वो खड़ी हैं, उनके रौकपोर्ट जूते एक-दूसरे से थोड़े दूर, पर ज़मीन पर अच्छी तरह जमे हुए. +","vo standing hain , unke rockports joote ek-doosre se thore door , par zamin par achchhi tarah jame hue +",8,2,neutral,neutral,neutral +"She 's a woman of mental clarity and administrative purposefulness. +","वे साफ सोच और प्रशासन को उद्देश्यपूर्ण काम में लगाए रखने वाली महिल हैं. +","ve saph soch aur prshasan ko uddeshypoorn kam men lagae rakhne vali mahil hain +",4,7,positive,neutral,positive +"All data is encrypted with your sync passphrase +","सभी डेटा आपके समन्वयन पासफ़्रेज़ के साथ एन्क्रिप्ट किया जाएगा +","sabhi data aapke sync passphrase ke sath enkript kiya jaega +",8,1,neutral,neutral,neutral +"So, when you are free, strive hard, +","अतः जब निवृत हो तो परिश्रम में लग जाओ, +","ata jab free ho to parishram men lag jao , +",9,1,positive,neutral,positive +"The cap is designed to create an almost air tight seal around the cervical opening. +","कैप को इस तरह बनाया गया है कि यह गर्भाशय के मुख को इस तरह बंद कर देता है कि हवा भी भीतर नहीं जा सकती। +","cap ko is tarah create gaya hai ki yah garbhashay ke opening ko is tarah bnd kar deta hai ki hava bhi bhitar nahin ja sakti. +",8,2,neutral,neutral,positive +"So sometimes you 'll say morula, +","तो कभी कभी आप morula कहता हूँ, +","to kabhi kabhi aap morula kahta hoon, +",8,0,neutral,neutral,neutral +"and it 's not finally, we could keep going - - +","नही, यह फईनल नहीं है हम आगे जा सकते है. +","nahi, yah pheenal nahin hai ham aage ja sakte hai +",8,3,negative,neutral,neutral +"They swear to you that you may be reconciled to them. But even if you are reconciled to them, Allah shall not be reconciled to the transgressing lot. +","वे तुम्हारे सामने क़समें खाएँगे ताकि तुम उनसे राज़ी हो जाओ, किन्तु यदि तुम उनसे राज़ी भी हो गए तो अल्लाह ऐसे लोगो से कदापि राज़ी न होगा, जो अवज्ञाकारी है +","ve tumhare samne smen khaenge taki tum unse razi ho transgressing , kintu yadi tum unse razi bhi ho ge to allah aese logo se kadapi razi n hoga , jo avajnjakari hai +",6,1,neutral,negative,neutral +"Or the thought may come not as silent perception but as speech self - born out of the truth and complete in its own right and carrying in itself its own vision and knowledge. +","अथवा विचार एक मौन अनुभव के रूप में नहीं बल्कि एक ऐसी वाणी के रूप में प्रकट हो सकता है जो सत्य में से स्वयमेव जन्म लेती है और अपने निज अधिकार के बल पर ही पूर्ण होती है और अपना अन्तर्दर्शन और ज्ञान अपने ही अन्दर धारण किये होती है। +","athva thought ek silent perception ke truth men nahin balki ek aesi speech ke truth men prakat ho sakta hai jo saty men se svaymev janm leti hai aur apne nij right ke bal par hi complete hoti hai aur apna vision aur knowledge apne hi andar dharan kiye hoti hai. +",6,1,neutral,negative,positive +"organs superficially appear to be similar and perform the same function. +","बाहरी दिखावे में अंग एक जैसे दिखें और एक ही प्रकार का कार्य कर रहे हों। +","bahri dikhave men organs ek jaise dikhen aur ek hi similar ka function kar rahe hon. +",7,5,neutral,neutral,neutral +"In India, various agencies and organisations conduct studies and surveys as well as publish reports on a regular basis covering diverse aspects of the economy. +","भारत में अनेक अधिकरण और संगठन अध्ययन और सर्वेक्षणों का आयोजन करते हैं, साथ ही अर्थव्यवस्था की विविध पहलुओं शामिल करते हुए एक नियमित आधार पर रिपोर्ट प्रकाशित करते हैं। +","bharat men anek adhikaran aur sngathan studies and surveys ka aayojan karte hain, sath hi arthavyavastha ki vividh pahluon shamil karte hue ek niymit aadhar par riport prkashit karte hain. +",8,2,neutral,neutral,positive +"""Peace and salutation to Noah among the nations!"" +","कि ""सलाम है नूह पर सम्पूर्ण संसारवालों में!"" +","ki peace and salutation par sampoorn peace men! +",5,4,positive,neutral,positive +"Failed to remove a persona from store:% s +","भंडार से एक व्यक्तित्व को हटाने में विफलः% s +","store se ek persona ko s men viphla s +",3,1,negative,neutral,negative +"A Plugin to synchronize pictures' metadata with a GPS device +","जीपीएस उपकरण से छवि मेटाडाटा को सिंक्रोनाइज करने का एक प्लगइन +","pictures device se chhavi metadata ko sinkronaij karne ka ek plugin +",7,3,neutral,neutral,neutral +"It is He who gave you hearing, sight, and hearts, but only few of you give thanks. +","हालाँकि वही वह (मेहरबान खुदा) है जिसने तुम्हारे लिए कान और ऑंखें और दिल पैदा किये (मगर) तुम लोग हो ही बहुत कम शुक्र करने वाले +","halanki vahi vah meharban khuda hai jisne tumhare lie kan aur ऑnkhen aur dil paida kiye magar tum log ho hi bahut kam shukr karne vale +",9,0,neutral,neutral,positive +"Last week , transporters in Delhi were up in arms against him , and , on April 10 , the first fir alleging a case of cheating and detailing his role in the CNG kit scam , was lodged at a Delhi police station . +","दिल्ली के ट्रांसपोर्टरों ने एकजुट हो 10 अप्रैल को उनके खिलफ धोखाधड़ी के आरोप के साथ सीएनजी किट घोटाले में उनकी भूमिका बताते हे प्राथमिकी दर्ज करवाई . +","dilli ke transportron ne ekjut ho 10 aprail ko unke khilaph dhokhadhari ke aarop ke sath sienji kit scam men unki bhoomika batate he prathmiki darj karvaee +",4,7,negative,neutral,negative +"These are gross and obvious examples but there are infinite and subtle gradations in the misunderstandings which can arise between people and the ways in which the law can tangle with traditional ways. +","यह सकल और स्पष्ट उदाहरण है, परंतु लोगों के बीच असंख्य और सूक्ष्म कारणों से अनेक गलत फहमियां पैदा हो सकती हैं और कानून कई तरह से परंपरागत रास्तों में उलझ सकता है। +","yah gross and obvious udaharan hai, parntu logon ke bich asnkhy aur sookshm karnon se anek galat phahmiyan paida ho sakti hain aur kanoon kee tarah se parnpragat raston men law can tangle +",7,1,negative,negative,negative +"And do not be chary of pursuing them. If you suffer, they shall also suffer like you. But while you have hope (of success) from God, they have none. Surely God is all - knowing and all - wise. +","और उन लोगों का पीछा करने में सुस्ती न दिखाओ। यदि तुम्हें दुख पहुँचता है; तो उन्हें भी दुख पहुँचता है, जिस तरह तुमको दुख पहुँचता है। और तुम अल्लाह से उस चीज़ की आशा करते हो, जिस चीज़ की वे आशा नहीं करते। अल्लाह तो सब कुछ जाननेवाला, तत्वदर्शी है +","aur un logon ka pichha karne men susti n dikhao. yadi tumhen dukh pahunchta hai to unhen bhi dukh pahunchta hai, jis tarah tumko dukh pahunchta hai. aur tum allah se us chiz ki aasha karte ho, jis chiz ki ve aasha nahin karte. allah to sab kuchh jannevala, tatvadarshi hai +",5,8,neutral,negative,positive +"The file ""% s"" is read - only! Edit anyway? +","फ़ाइल से. है पढ़ें संपादन? +","file se hai read edit +",5,5,neutral,neutral,neutral +"Folder '{0}' doesn 't contain any duplicate message. +","फोल्डर '{0}' में कोई दोहरा संदेश नहीं है. +","folder 0 men koee duplicate message nahin hai +",8,1,neutral,negative,neutral +"List of Governors of Tamil Nadu +","तमिल नाडु के राज्यपालों की सूची +","tamil governors of tamil ki list +",4,7,neutral,neutral,neutral +"Allows you to drag a Bugzilla URL from your browser directly into a Gnote note. The bug number is inserted as a link with a little bug icon next to it. +","आपको बगजिला URL खींचना चाहिए सीधे जीनोट में. बग संख्या को बतौर कड़ी जोड़ा जाता है इसे निकट कोई छोटा बग चिह्न के साथ. +","aapko bagjila URL khinchna chahie sidhe jinot men bag snkhya ko bataur kari jora jata hai ise nikat koee chhota bag chihn ke sath +",9,2,neutral,neutral,negative +"The description is required in your bug report. This should not happen with the latest Bug Buddy. +","आपके बग रिपोर्ट में विवरण की जरूरत है. नवीनतम बग बड्डी में ऐसा नहीं होना चाहिए. +","aapke bug report men description ki jaroorat hai latest bug baddi men aesa nahin hona chahie +",8,4,negative,neutral,neutral +"And that 's probably the key lesson to my short talk here, is that +","और मेरे छोटे व्याख्यान का शायद महत्वपूर्ण सबक है, +","aur mere short talk ka shayad key lesson hai, +",9,2,neutral,neutral,neutral +"Generating tissues of predictable density and behavior +","उम्मीद के मुताबिक घनत्व और व्यवहार के ऊतक बनाना +","ummid ke mutabik density and behavior ke ootak banana +",9,1,neutral,neutral,neutral +"When after executing an order of the buyer the amount that remains at his credit. +","क्रेता के खरीद आदेश को सम्पन्न करने के बाद उसके खाते में जो राशि शेष जमा दिख रही है। +","buyer the amount aadesh ko sampann karne ke bad uske khate men jo rashi amount that remains rahi hai. +",4,1,neutral,neutral,positive +"Ripe plantains, some sweets and other ingredients of worship are also put in the donga filled with rice. +","जिस डोंगे में चावल भरा होता है, उसमें पके केले, कुछ मिष्ठान और पूजा-सामग्री भी रख दी जाती है। +","jis donga men rice bhara hota hai , other ripe plantains , kuchh sweets aur pooja-samagri bhi ingredients worship jati hai. +",6,1,neutral,neutral,positive +"Move ~ a onto the five of spades. +","~ a को एक हुकुम का पंजा पर ले जाएँ +","a ko ek spades ka pnja par move jaen +",7,2,neutral,negative,neutral +"They had grown in self - respect and self - confidence. +","उनमें आत्मसम्मान और आत्मविश्वास का विकास हुआ। +","unmen respect aur confidence ka vikas huaa. +",9,1,positive,neutral,positive +"If I had a dozen of a dozen eggs - - a dozen is twelve. +","अगर मेरे पास 1 दर्ज़न के दर्ज़न अंडे हैं-- एक दर्ज़न 12 के बराबर होता है. +","agar mere pas dozen darzan ke darzan ande hain -- ek darzan 12 ke barabar hota hai +",4,5,neutral,neutral,neutral +"The whole of Rashtrapati Bhavan would be with them in their efforts to bring up their children. +","उनके बच्चों की परवरिश में पूरा राष्ट्रपति भवन उनके साथ है। +","unke bachchon ki paravrish men poora rashtrapti bhavan unke sath children +",8,3,positive,neutral,neutral +"But the very spirit of Yoga is this, to make the exceptional normal, and to turn that which is above us and greater than our normal selves into our own constant consciousness. +","परन्तु योग की वास्तविक भावना ही यह है कि अपवाद को सामान्य बनाया जाये और जो हमारे ऊपर है, हमारे साधारण स्व से महत्तर है उसे अपनी शाश्वत चेतना बना लिया जाये। +","parantu yog ki vastvik bhavna hi yah hai ki make the exceptional banaya jaye aur jo hamare oopar hai, hamare sadharan sv se mahattar hai use apni shashvat chetna bana liya jaye. +",7,4,neutral,positive,positive +"Alaukik Laukikata Formality with a Supernatural Touch is one of his most remarkable stories of this period. +","इस दौर में लिखी माणिक की एक अद्वितीय कहानी है अलौकिक लौकिकता। +","is period men likhi remarkable ki ek advitiy stories hai supernatural laukikta. +",4,5,positive,positive,positive +"The quantitative relation between the targets and the achievement. +","लक्ष्य तथा उनके विरूद्ध कार्य सम्पादन के संदर्भ में संख्यात्मक अनुपात। +","targets tatha unke virooddh kary quantitative ke relation men snkhyatmak anupat. +",8,2,neutral,neutral,neutral +"Her history remains alive and vibrant in the thoughts, actions, customs and rituals of her people. +","इसका इतिहास इसके लोगों के विचारों, कार्यों, रीति-रिवाजों और धार्मिक कृत्यों से परिपूर्ण और सजीव बना रहा। +","iska history iske people ke thoughts , alive , riti-rivajon aur dharmik krityon se paripoorn aur customs bana raha. +",7,4,neutral,neutral,positive +"The Englishman ' s eyes lit up . +","अंग्रेज की आंखों में चमक आ गई , +","angrej ki aankhon eyes lit aa gee , +",6,1,neutral,neutral,neutral +"But, rising wage bill of IT professionals and global financial meltdown is challenging India 's position as a preferred destination for outsourcing business processes. +","तथापि, आईटी व्यथवसायियों के बढ़ते वेतन बिल तथा वैश्विक वित्तीय मंदी आउट सोर्सिंग व्यपवसाय प्रक्रियाओं के लिए एक वरीय गंतव्यव स्थैल के रूप में भारत की स्थिति को चुनौती दे रही है। +","tathapi, aaeeti vyathavsayiyon ke rising wage bill tatha global financial meltdown aaut outsourcing business processes ke lie ek variy gntavyav sthail ke roop men bharat ki sthiti ko chunauti de rahi hai. +",8,4,negative,positive,positive +"and in the mornings they would ask for forgiveness; +","और वही प्रातः की घड़ियों में क्षमा की प्रार्थना करते थे +","aur vahi mornings ki ghariyon men forgiveness ki prarthna karte the +",7,3,neutral,neutral,positive +"""The wall belonged to two young orphans in the town whose father had been a righteous man, and a treasure of theirs lay underneath it. So your Lord wanted them to come of age and then to dig up their treasure as a mercy from Him. I did not do [it] of my own accord. That is the explanation of the things about which you were not able to restrain yourself."" +","और रही यह दीवार तो यह दो अनाथ बालकों की है जो इस नगर में रहते है। और इसके नीचे उनका ख़जाना मौजूद है। और उनका बाप नेक था, इसलिए तुम्हारे रब ने चाहा कि वे अपनी युवावस्था को पहुँच जाएँ और अपना ख़जाना निकाल लें। यह तुम्हारे रब की दयालुता के कारण हुआ। मैंने तो अपने अधिकार से कुछ नहीं किया। यह है वास्तविकता उसकी जिसपर तुम धैर्य न रख सके। "" +","aur able yah wall to yah do orphans young ki hai jo is town men rahte lord aur iske niche unka treasure righteous lord aur unka father theirs tha , islie mercy rab ne chaha ki ve apni yuvavastha ko pahunch lay aur apna treasure nikal len. yah mercy rab ki dayaluta ke karan huaa. mainne to apne adhikar se kuchh nahin kiya. yah hai vastvikta uski jisapar man dhairy n rakh sake. +",5,3,neutral,neutral,positive +"Adopting measures to get incentive prices for coconut and its products. +","नारियल और इसके उत्पादों के लिए प्रोत्साहन मूल्य पाने के उपाय अपनाना। +","coconut aur iske products ke lie incentive prices pane ke measures apnana. +",8,4,neutral,neutral,positive +"He will forgive your sins and admit you into gardens with streams running in them, and into good dwellings in the Gardens of Eden; that is the great success. +","वह तुम्हारे गुनाहों को क्षमा कर देगा और तुम्हें ऐसे बागों में दाखिल करेगा जिनके नीचे नहरें बह रही होगी और उन अच्छे घरों में भी जो सदाबहार बाग़ों में होंगे। यही बड़ी सफलता है +","vah tumhare forgive your sins kar dega aur tumhen aese bagon men dakhil karega jinke niche nahren bah rahi hogi aur un achchhe gharon men bhi jo gardens with streams honge. yahi bari saphalta hai +",7,0,positive,neutral,positive +"In Open office 2. 0 (or higher) for adding on Hindi spelling check +","ओपनऑफ़िस 2.0 (या अधिक) में हिन्दी वर्तनी जाँचक शामिल करने के लिए +","open 20 ya adhik hindi spelling check janchak shamil karne ke lie +",6,2,neutral,neutral,neutral +"For God is sufficient as witness between us and you we were not aware of your worship. "" +","""हमारे और तुम्हारे बीच अल्लाह ही एक गवाह काफ़ी है। हमें तो तुम्हारी बन्दगी की ख़बर तक न थी।"" +","hamare aur god bich aware hi ek witness sufficient hai. hamen to tumhari bandgi ki bar tak n thi. +",4,1,positive,negative,positive +"Perhaps, you know by what name the generality of people call extraordinary ideas, uncommon actions, extraordinary high aspirations. +","शायद तुम जानती होगी कि आम लोग असाधारण विचारों, असाधारण कार्यों और असाधारण उच्चाकांक्षाओं को किस नाम से जानते हैं। +","shayad tum janti hogi ki generality people extraordinary ideas , extraordinary actions aur extraordinary high ko kis name se jante hain. +",8,4,neutral,neutral,neutral +"that could be created by things like cosmic rays, +","जो ब्रह्माण्डीय किरणो जैसी चीज के कारण होता है, +","jo created by things chij ke karan hota hai, +",6,2,neutral,neutral,positive +"The process by which ammonia is converted to nitrites and then to nitrates. +","वह प्रक्रिया जिसके द्वारा अमोनिया को नाइट्राइटिस एवं तत्पश्चात नाइट्रेट्स में परिवर्तित किया जाता है +","vah prakriya jiske dvara amoniya ko naitraitis evn tatpashchat naitrets men parivartit kiya jata hai +",9,1,neutral,neutral,neutral +"More recently, it appears that none of the millions of antiwar demonstrators have a bad word to say about Saddam Hussein nor an iota of sympathy for those oppressed, tortured and murdered by his regime. Instead, they vent fury against the American president and British prime minister. +","अभी हाल में यह देखने में आया है कि लाखों युद्ध विरोधी प्रदर्शनकारियों ने सद्दाम हुसैन के विरूद्ध एक भी शब्द नहीं कहा और न ही उनके शासन में पीड़ित हत्या के शिकार हुए लोगों के प्रति एक भी सहानुभूति का शब्द निकाला। इसके बजाय उन्होंने अमेरिकी राष्ट्रपति और व्रिटेन के प्रधानमंत्री के विरूद्ध आक्रोश प्रदर्शित किया। +","abhi hal men yah fury men none hai ki millions yuddh virodhi antiwar ne saddam husain ke virooddh ek bhi word nahin kaha aur n hi unke regime men pirit hatya ke shikar hue logon ke prti ek bhi sympathy ka word nikala. iske bajay unhonne ameriki president aur iota ke minister ke virooddh aakrosh pradarshit kiya. +",6,1,negative,negative,negative +"& Choose which service to edit: +","चुनें कि कौन सी सेवा संपादित करनी हैः (C) +","choose ki kaun si service to edit haia C +",6,3,neutral,neutral,neutral +"If we start translating, we can only say the sun 's colour was slightly reddish. +","अगर हमें अनुवाद करना हो तो हम कहेंगे कि सूर्य का रंग लोहित था। +","agar hamen anuvad karna ho to ham kahenge ki soory ka rng lohit tha. +",9,1,neutral,neutral,neutral +"An organism in the early stages of development. +","विकास की प्रारम्भिक अवस्था में एक जीव +","stages of development avastha men ek organism +",4,1,neutral,neutral,neutral +"'. After the 25th, Prem Chand did not have good sleep. +","25 की रात के बाद ठीक से कभी सो न सके। +","25 ki rat ke bad good se kabhi so n sake. +",7,1,negative,negative,negative +"Certain persons were proceeded against under the Orissa Maintenance of Public Order Act, 1948, and it appears that,Certain persons were proceeded against under the Orissa Maintenance of Public Order Act, 1948, and it appears that, +","कुछ व्यक्तियों के विरूद्ध 'उडिसा मैंटेन्स आँफ पब्लिक आँर्डर एक्ट-1948 के अधीन कानूनी कार्रवाई की गई थी, और ऐसा लगता है कि इन भूतपूर्व राजाओं के, खास तौर पर कालाहांडी के राजा के, प्रोत्साहन और आर्थिक सहायता से ये लोग उस करार की कसौटी करने के लिए हाईकोर्ट तक गये हैं, जो आगे की कानूनी कार्रवाई के मूल में हैं। +","kuchh vyaktiyon ke virooddh udisa maintens aanph pablik aanrdar ekt-1948 ke adhin kanooni karrvaee ki gee thi, aur aesa lagta hai ki in bhootpoorv rajaon ke, khas taur par kalahandi ke raja ke, protsahan aur aarthik sahayta se ye log us karar ki kasauti karne ke lie haeekort tak gaye hain, jo aage ki kanooni karrvaee ke mool men hain. +",4,7,neutral,negative,positive +"Error: Object path is not specified +","त्रुटि: ऑब्जेक्ट पथ निर्दिष्ट नहीं है +","error : object path nirdisht nahin hai +",9,1,neutral,negative,negative +"Have you not regarded those who style themselves as pure? Indeed, it is Allah who purifies whomever He wishes, and they will not be wronged [so much as] a single date - thread. +","(ऐ रसूल) क्या तुमने उन लोगों के हाल पर नज़र नहीं की जो आप बड़े मुक़द्दस बनते हैं (मगर उससे क्या होता है) बल्कि ख़ुदा जिसे चाहता है मुक़द्दस बनाता है और ज़ुल्म तो किसी पर धागे के बराबर हो ही गा नहीं +","ae rasool kya tumne un logon ke hal par nazar nahin ki jo aap bare muddas bante hain magar usse kya hota hai balki uda jise chahta hai muddas banata hai aur zulm to kisi par dhage ke barabar ho hi ga nahin +",4,7,neutral,negative,positive +"Sector that includes entire wants and needs satisfying population of the country. +","वह क्षेत्र जिसमें देश की वह समस्त आबादी जो अपनी इच्छाओं और आवश्यकताओं की पूर्ति में संलग्न हो शामिल होती हो। +","vah sector that includes ki vah samast aabadi jo apni ichchhaon aur aavashyaktaon ki poorti men snlagn ho shamil hoti ho. +",5,5,neutral,neutral,positive +"” Tonight, it will be a year … ” +","आज रात एक साल पूरा हो जाएगा। +","tonight ek year poora ho jaega. +",8,2,neutral,positive,neutral +"the form f of x is greater than a. +","जे का फ बड़ा है आ से +","f ka ph bara hai aa se +",5,7,neutral,neutral,positive +"Punctuation level set to most. +","विराम चिह्न स्तर सबसे करने के लिए निर्धारित किया है. +","punctuation chihn level sabse karne ke lie nirdharit kiya hai +",6,1,neutral,neutral,neutral +"The market rates are going down. +","बाजार दर जल्दी नीचे जा रहे हैं। +","market dar jaldi niche ja rahe hain. +",9,1,neutral,neutral,neutral +"and you take a glass of wine and you put your feet up. +","और आप वाइन के एक गिलास के साथ आराम से अपने पैर ऊपर कर के बैठते हैं. +","aur aap vain ke ek glass ke sath aaram se apne feet oopar kar ke baithte hain +",8,4,neutral,neutral,neutral +"And We have not created the heaven and the earth and all that is between them without purpose; this is what the disbelievers assume; therefore ruin is for the disbelievers, by the fire. +","हमने आकाश और धरती को और जो कुछ उनके बीच है, व्यर्थ नहीं पैदा किया। यह तो उन लोगों का गुमान है जिन्होंने इनकार किया। अतः आग में झोंके जाने के कारण इनकार करनेवालों की बड़ी दुर्गति है +","hamne aakash aur dharti ko aur jo kuchh unke bich hai, vyarth nahin paida kiya. yah to un logon ka guman hai jinhonne inkar kiya. ata aag men jhonke jane ke karan inkar karnevalon ki bari durgti hai +",8,4,negative,neutral,negative +"Amount of wage paid for a day. +","दिनभर के लिए दी जाने वाली मजदूरी की राशि। +","dinabhar ke lie di jane vali amount of wage +",8,2,neutral,neutral,neutral +"Harishchandra, however, submitted that if he be given half an hour, he could do it. +","परन्तु हरिश्चन्द्र का आग्रह था कि यदि उन्हें आध घण्टा का भी समय दिया जाए तो वह उसे याद कर लेंगे। +","parantu harishchandra ka aagrah tha ki yadi unhen aadh hour ka bhi samay diya jae to vah use yad kar lenge. +",8,1,neutral,neutral,neutral +"Kalpana was the first Indian born woman to fly into space and she was the second person of Indian origin to go into space. +","कल्पना जी अंतरिक्ष में उड़ने वाली प्रथम भारत में जन्मी महिला थीं और अंतरिक्ष में उड़ाने वाली भारतीय मूल की दूसरी व्यक्ति थीं। +","kalpana ji space men urne vali first bharat men janmi woman thin aur space men urane vali indian origin ki doosri person thin. +",8,3,neutral,neutral,neutral +"The Chairman to the right and the Speaker to the left of the President who occupies the middle seat. +","बीच के आसन पर राष्ट्रपति बैठता है, उसके दायें राज्य सभा का सभापति और बायें लोक सभा का अध्यक्ष। +","right ke seat par president baithta hai , uske dayen speaker sabha ka chairman aur left lok sabha ka adhyaksh. +",7,2,neutral,neutral,neutral +"The muscle present below the perineum in both females and males. +","पुरूषों तथा स्त्रियों दोनों में मूलाधार से नीचे विद्यमान पेशियां +","females and males donon men mooladhar se niche muscle present +",8,2,neutral,neutral,neutral +"is a lot of material that was already here, +","उसमें लगाई गई बहुत सी सामग्री ऎसी है जो पहले से ही मौजूद थी, +","usmen lot gee bahut si material ऎsi hai jo pahle se hi maujood thi , +",7,2,neutral,neutral,neutral +"PROVISIONS AS TO THE COMPTROLLER AND AUDITOR-GENERAL OF INDIA +","भारत के नियंत्रक-महालेखापरीक्षक के बारे में उपबंध +","india ke niyntrak-mhalekhaprikshak ke bare men provisions +",8,1,neutral,neutral,neutral +"You are now connected to the WiMAX network. +","आप अभी WiMAX संजाल से कनेक्टेड हैं. +","aap abhi WiMAX network se kanekted hain +",8,1,neutral,neutral,neutral +"If you are not happy with the decision, you can take court action, using the conciliator 's findings if you wish. +","अगर आप उसके निर्णय से संतुष्ट नहीं है, तो चाहें तो कंसिलिएटर को पूछ-ताछ के नतीजों को लेकर आप कानूनी कार्यवाही शुरू कर सकते हैं। +","agar aap uske nirnay se sntusht nahin hai, to chahen to knsilietar ko poochh-tachh ke natijon ko lekar aap kanooni karyvahi shuroo kar sakte hain. +",9,2,neutral,neutral,negative +"At its tip it is toothed and sharply hooked. +","इसकी नोक दांतेदार और तीखे हुक वाली होती है. +","iski tip toothed and sharply huk vali hoti hai +",7,1,neutral,neutral,neutral +"The outer circle shows what exercises they were focused on. +","ये बाहरी गोला दिखा रहा है कि किन सवालों पर उन्होंने ध्यान दिया। +","ye outer circle shows raha hai ki kin savalon par unhonne dhyan diya. +",8,1,neutral,neutral,positive +"And may it run forever, because it gives people like me a living. +","और ये हमेशा चलता रहे , क्योंकि ये मुझ जैसे लोगों को जीविका देती है. +","aur ye run forever rahe , kyonki ye mujh jaise people ko jivika deti hai +",7,0,positive,neutral,positive +"Application of mud to all part of the body. +","शरीर के सभी हिस्सों पर कीचड़ का आलेपन +","body ke sabhi part par application of mud +",7,3,neutral,neutral,neutral +"Then we can make this same statement again. +","तो हम इस एक ही बयान पुनः बना सकते हैं। +","to same is ek hi statement puna bana sakte hain. +",8,2,neutral,neutral,neutral +"“ Well , then , why do we need all these books ? ” the boy asked . +","“ तो फिर तुम्हें इन ढेर सारी किताबों की क्या जरूरत है ? ” +","to phir tumhen in boy sari books ki kya jaroorat hai +",7,1,neutral,neutral,positive +"Partially ordered set is the intuitive concept of an ordering and sequencing, or arrangement of the elements of a set. +","अंशतः क्रमित समुच्चय, समुच्चय के तत्वों के अनुक्रमण तथा प्रबंधन का एक सहजज्ञ सिद्धांत होता है। +","anshta krmit set , set ke elements ke sequencing tatha prbndhan ka ek intuitive siddhant hota hai. +",8,1,neutral,neutral,neutral +"ANF 8 for Claiming Duty Drawback on All Industry Rates / Fixation of Drawback Rates / Refund of Terminal Excise Duty +","एएनएफ 8 सभी उद्योग किराये पर ड्यूटी ड्राबैक/शुल्क वापसी का निर्धारण/टर्मिनल उत्पाद शुल्क की वापसी का दावा करने के लिए +","eeneph fixation sabhi industry rates par duty drabaikshulk drawback ka nirdharantarminal excise shulk ki drawback ka dava karne ke lie +",7,2,neutral,neutral,neutral +"The Backward Classes Commission was marred in conspiracy from the very beginning. +","पिछड़े वर्गों का आयोग बिल्कुल प्रारंभ से ही विवादों से घिरा रहा। +","backward vargon ka commission bilkul beginning se hi vivadon se conspiracy raha. +",7,3,negative,neutral,negative +"He could put up with any and everything but opposition to Urdu and the Anjuman was something he could not bear. +","जो कुछ कमाया वह या तो उर्दू पर निछावर कर दिया या दोस्तों और शार्गिदों पर खर्च कर दिया। +","jo kuchh kamaya vah ya to urdu par nichhavar kar diya ya doston aur shargidon par kharch kar put +",4,7,negative,neutral,neutral +"This was essentially Earth. Obviously, Earth got changed +","यह अनिवार्य रूप से पृथ्वी था। जाहिर है, पृथ्वी बदला मिल गया +","yah essentially roop se earth tha. jahir hai, earth got changed gaya +",8,0,neutral,neutral,neutral +"He would search for sure - fire devices of making bombs. +","बम बनाने के नुस्ख़े तलाश करता। +","bam making ke nuse search karta. +",8,1,neutral,neutral,neutral +"Those before them had denied, then punishment had overtaken them is from a quarter they did not suspect. +","जो लोग उनसे पहले गुज़र गए उन्होंने भी (पैग़म्बरों को) झुठलाया तो उन पर अज़ाब इस तरह आ पहुँचा कि उन्हें ख़बर भी न हुई +","jo log unse pahle guzar ge unhonne bhi denied ko jhuthlaya to un par azab is tarah aa pahuncha ki unhen bar bhi n huee +",6,1,neutral,negative,negative +"S35: This material and its container must be disposed of in a safe way +","S35: यह पदार्थ तथा इसके मर्तबान को सुरक्षित तरीके से फेंका जाना चाहिएPlease take the official translations! You find them here: http:// europa. eu. int/eur-lex/lex/LexUriServ/LexUriServ. do? uri = CELEX: 32001L0059: EN: HTML +","S35 : yah material tatha iske martban ko safe tarike se phenka jana chahiePlease take the official container ! You find them here : http : europa eu inteur-lexlexLexUriServLexUriServ do uri CELEX : 32001L0059 : EN : HTML +",9,0,negative,neutral,positive +"Acharya Ramchandra Sukal has written about Surdas- in the field of parental affection so much Surdas has written with close eyes, no other poet has done so much. +","सूरदास के बारे में आचार्य रामचंद्र शुक्ल ने लिखा है- वात्सल्य के क्षेत्र में जितना अधिक उद्धाटन सूर ने अपनी बंद आँखों से किया इतना किसी ओर कवि ने नहीं। +","surdas ke bare men acharya ramchandra sukal ne eyes hai- parental ke field men jitna much uddhatan soor ne apni close aankhon se kiya itna kisi or poet ne nahin. +",8,2,neutral,neutral,positive +"The indemnifier after performing his part of the promise has no rights against the third party and he can sue the third party only if there is an assignment in his favour. +","वचन के अपने भाग का निष्पानदन करने के पश्चामत क्षति्पूर्तिकर्ता तृतीय पक्षकार के विरूद्ध कोई अधिकार शेष नहीं रहते तथा वह तृतीय पक्षकार पर तभी मुकदमा चल सकता है जब उसके पक्ष में कोई समनुदेशन हो। +","promise ke apne part ka nishpanadan karne ke pashchamat kshtipoortikarta third favour ke virooddh koee adhikar shesh nahin rahte tatha vah third favour par tabhi mukadma indemnifier sakta hai jab uske paksh men koee assignment ho. +",8,4,neutral,negative,positive +"But they say, “We found our parents on a course, and we are guided in their footsteps. ” +","बल्कि ये लोग तो ये कहते हैं कि हमने अपने बाप दादाओं को एक तरीके पर पाया और हम उनको क़दम ब क़दम ठीक रास्ते पर चले जा रहें हैं +","balki ye course to ye kahte hain ki hamne apne parents dadaon ko ek tarike par paya aur ham unko footsteps b footsteps thik raste par chale ja rahen hain +",6,3,neutral,neutral,neutral +"It indicates the expenses and earnings of the firm as well as the amount of its debits and credits. +","यह फर्म के व्यय और आमदनी तथा साथ ही इसके नामे और जमा की राशि को भी दर्शाता है। +","yah firm ke expenses aur earnings tatha sath hi iske debits aur jama ki amount ko bhi darshata hai. +",9,2,neutral,neutral,positive +"Build but do not install the target. +","बिल्ड नहीं अधिष्ठापित करें लक्ष्य. +","build nahin adhishthapit karen target +",7,0,neutral,neutral,neutral +"If we start translating, we can only say the sun 's colour was slightly reddish. +","अगर हमें अनुवाद करना हो तो हम कहेंगे कि सूर्य का रंग लोहित था। +","agar hamen anuvad karna ho to reddish kahenge ki sun ka colour lohit tha. +",6,1,neutral,neutral,neutral +"and what will make you understand what the 'Illiyyin is? - - +","और तुमको क्या मालूम कि इल्लीयीन क्या है वह एक लिखा हुआ दफ़तर है +","aur make you understand ki illiyin kya hai vah ek likha huaa dafatar hai +",7,0,neutral,negative,neutral +"Children from the lowest social class are five times more likely to die in road accidents than those from the highest social class. +","समाज के सब से नीचे वाले वर्ग के बच्चों की सड़क दुर्घटना में मौत होने का खतरा सब से उँचे वर्ग वाले बच्चों से पाँच गुना अधिक है। +","social ke sab se niche vale varg ke children ki road accidents men maut hone ka khatra sab se lowest varg vale children se panch times adhik hai. +",8,2,negative,neutral,negative +"Download in progress. Do you want to save the task? +","डाउनलोड प्रगति में है. क्या आप इस कार्य को सहेजना चाहते हैं? +","download in progress hai kya aap is kary ko sahejna chahte hain +",8,2,neutral,neutral,positive +"I had my own doubts of the success of the programme in Bihar. +","मुझे भी इस कार्यक्रम की सफलता में काफी संदेह था। +","i bhi is programme ki success men kaphi doubts own +",5,1,negative,positive,positive +"Check that the spelling is correct and that your proxy settings are correct. +","जांच लें कि वर्तनी सही है और आपके प्रॉक्सी विन्यास सही हैं. +","janch len ki vartni correct hai aur aapke proxy settings correct hain +",9,0,neutral,neutral,neutral +"Such an institution is no good for building the nation. +","यह संस्था राष्ट्र के नव निर्माण की दृष्टि से उपयोगी नहीं है। +","yah such nation ke nav nirman ki drishti se good nahin hai. +",7,1,negative,negative,negative +"(9) The person from whose custody any books of account or other documents are seized under sub-section (1) or sub-section (1A) may make copies thereof, or take extracts therefrom, in the presence of the authorised officer or any other person empowered by him in this behalf, at such place and time as the authorised officer may appoint in this behalf. +","(9) वह व्यक्ति, जिसकी अभिरक्षा से कोर्इ लेखा बहियां या अन्य दस्तावेज उपधारा (1) या उपधारा (1क) के अधीन अभिगृहीत किए जाते हैं, उनकी नकलें या उनसे उद्धरण प्राधिकृत अधिकारी या उस निमित्त उसके द्वारा सशक्त किसी अन्य व्यक्ति की उपस्थिति में ऐसे स्थान और समय पर जो प्राधिकृत अधिकारी इस निमित्त नियत करें ले सकेगा। +","9 vah person , jiski custody se kori account books ya other documents updhara 1 ya updhara 1k ke adhin abhigrihit kie jate hain , unki copies ya unse uddharan authorised officer ya us nimitt uske dvara sashakt kisi other person ki presence men aese place aur time par jo authorised officer is nimitt niyat karen le sakega. +",8,3,neutral,neutral,neutral +"Partially ordered set is the intuitive concept of an ordering and sequencing, or arrangement of the elements of a set. +","अंशतः क्रमित समुच्चय, समुच्चय के तत्वों के अनुक्रमण तथा प्रबंधन का एक सहजज्ञ सिद्धांत होता है। +","partially ordered set, samuchchay ke tatvon ke anukraman tatha prbndhan ka ek intuitive concept hota hai. +",9,0,neutral,neutral,neutral +"OPV can be given to children till 5 years of age. +","बच्चों को ओपीवी 5 वर्ष की आयु तक दिया जा सकता है +","children ko opv 5 years ki age tak diya ja sakta hai +",10,0,neutral,neutral,neutral +"Though the poem was not later included in his Collected Works, it did help to establish his reputation on its first appearance. +","भले ही यह कविता उनकी समग्र रचनावली में संकलित होने से रह गई थी, तो भी अपनी पहली उपस्थिति से उसकी प्रतिष्ठा स्थापित करने में सहायता मिली थी. +","bhale hi yah poem unki samagr collected men snklit hone se rah gee thi , to bhi apni pahli appearance se uski reputation sthapit karne men sahayta mili thi +",8,1,neutral,negative,positive +"A person who attends a service to another. +","एक व्यक्ति जो दूसरों को सेवा प्रदान करता है। +","ek person jo doosron ko service prdan karta hai. +",9,2,neutral,neutral,neutral +"Call them (adopted sons) by (the names of) their fathers, that is more just with Allah. But if you know not their father 's (names, call them) your brothers in faith and Mawalikum (your freed slaves). And there is no sin on you if you make a mistake therein, except in regard to what your hearts deliberately intend. And Allah is Ever OftForgiving, Most Merciful. +","उन्हें उनके बापों का बेटा करकर पुकारो। अल्लाह के यहाँ यही अधिक न्यायसंगत बात है। और यदि तुम उनके बापों को न जानते हो, तो धर्म में वे तुम्हारे भाई तो है ही और तुम्हारे सहचर भी। इस सिलसिले में तुमसे जो ग़लती हुई हो उसमें तुमपर कोई गुनाह नहीं, किन्तु जिसका संकल्प तुम्हारे दिलों ने कर लिया, उसकी बात और है। वास्तव में अल्लाह अत्यन्त क्षमाशील, दयावान है +","unhen unke bapon ka beta karakar pukaro. allah ke yahan yahi adhik nyaysngat bat hai. aur yadi tum unke bapon ko n jante ho, to dharm men ve tumhare bhaee to hai hi aur tumhare sahachar bhi. is silsile men tumse jo lti huee ho usmen tumapar koee gunah nahin, kintu jiska snkalp tumhare dilon ne kar liya, uski bat aur hai. vastav men allah atyant kshmashil, dayavan hai +",7,3,neutral,neutral,positive +"Add one or more images to the panorama +","परिदृश्य में एक या अधिक छवियाँ जोड़ें +","panorama men ek ya more images joren +",8,3,neutral,neutral,neutral +"The application for registration of a plant variety may be filed by a breeder or his assignee in the prescribed form with the prescribed fee to the Authority including particulars such as the name of variety, source of parental line, or name of variety used to develop the variety in question, essential characteristics conferring distinctiveness, denomination and geographical location of the variety and claims. +","वनस्पिति प्रकार के पंजीकरण हेतु आवेदन प्रजनक अथवा उसके अधिन्याससी द्वारा निर्धारित शुल्को के साथ निर्धारित प्रपत्र में प्रकार के नाम, पैतृक प्रकार का स्रोत, अथवा पंजीकृत किए जाने वाले प्रकार के विकास में प्रयुक्तथ प्रकार का नाम, प्रकार के वैशिष्ट्ये, अंकन एवं भौगोलिक स्थाकन को दर्शाती आवश्य क विशेषताओं एवं दावों जैसे विवरणों सहित प्राधिकार को दी जा सकती है। +","vanaspiti prkar ke pnjikaran hetu aavedan prajanak athva uske adhinyassi dvara nirdharit shulko ke sath nirdharit prapatr men prkar ke nam, paitrik prkar ka srot, athva pnjikrit kie jane vale prkar ke vikas men pryuktath prkar ka nam, prkar ke vaishishtye, ankan evn bhaugolik sthakan ko darshati aavashy k visheshtaon evn davon jaise vivarnon sahit pradhikar ko di ja sakti hai. +",6,5,neutral,neutral,positive +"I am a trustworthy messenger to you: +","मै तो यक़ीनन तुम्हारा अमानतदार पैग़म्बर हूँ तो ख़ुदा से डरो +","i to yainan tumhara trustworthy paimbar hoon to uda se daro +",6,1,positive,neutral,positive +"he was arrested while aboard on an unregistered ship +","उसे एक अपंजीकृत जहाज के फलक पर गिरफ्तार किया गया +","use ek unregistered aboard ke phalak par giraphtar kiya gaya +",7,2,neutral,negative,negative +"who are true to their trusts and their covenants, +","और जो अपनी अमानतों और अपने एहद का लिहाज़ रखते हैं +","aur jo apni true aur apne ehad ka lihaz rakhte hain +",8,1,neutral,neutral,positive +"Some may go to out-of-the-way places to sniff which can add to the dangers . +","कुछ लोग संभवतः सुँघनी लेने के लिए कोई अनजानी जगह भी चुन सकते हैं , जिससे ख़तरे और बढ़ सकते हैं . +","kuchh log snbhavta sunghni lene ke lie koee anjani jagah bhi chun sakte hain , jisse tre aur ba sakte hain +",5,5,negative,neutral,negative +"A person who attends a service to another. +","एक व्यक्ति जो दूसरों को सेवा प्रदान करता है। +","ek vyakti jo doosron ko service prdan karta hai. +",9,1,neutral,neutral,neutral +"of the banking system has attracted a lot of investment from outside. +","बैंकिंग प्रणाली की इस मज़बूती ने के बाहर से निवेश को भी बहुत आकर्षित किया है। +","banking system ki is mazbooti ne ke bahar se investment ko bhi bahut attracted kiya hai. +",8,2,neutral,negative,positive +"Unless you realise that the world is a manifestation of divinity , as long as you do not realise within yourself that the world you see around you , the country in which you live are manifestations of divinity , then all these are unreal . +","जब तक आप यह अनुभूति नहीं करते हैं कि सारा विश्व ईश्वरत्व की अभिव्यक्ति है , जब तक आप अपने भीतर यह अनुभव नहीं करते हैं कि यह संसार जिसे आप अपने चारों और देखते हैं , और यह देश , जिसमें आप रहते हैं , ईश्वरत्व की अभिव्यक्ति है , तब तक ये सभी अवास्तविक हैं . +","jab tak aap yah anubhooti nahin karte hain ki sara world manifestation of divinity hai , jab tak aap apne bhitar yah anubhav nahin karte hain ki yah snsar jise aap apne charon aur dekhte hain , aur yah country , jismen aap rahte hain , manifestation of divinity hai , tab tak ye sabhi avastvik hain +",9,1,negative,neutral,positive +"The answer to this was ready in Satish 's mind. +","'>> इसका जवाब सतीश के मन में तैयार था। +","iska answer satish ke mind men ready tha. +",7,3,neutral,neutral,positive +"a Messenger from Allah, reciting from Purified Scrolls; +","(यानि) ख़ुदा के रसूल जो पाक औराक़ पढ़ते हैं (आए और) +","allah uda ke messenger jo pak aura pate hain scrolls aur +",6,2,neutral,neutral,neutral +"Could not rename partial file% 1. Please check permissions. +","आधा-अधूरा फ़ाइल% 1 का नाम बदल नहीं सकता. कृपया अनुमतियाँ जाँचें. +","partial file 1 ka nam badal nahin sakta check permissions janchen +",8,2,negative,neutral,positive +"There are some reserved parking zones for those car who show the orange badge on their windscreen, or you can sometimes park where generally parking is not permitted. < s > You and Your Body (उपयोगी +","संस्थाओं के पते पृष्ठ ३९ पर हैं) कई स्थानों पर पार्किंग स्थान, विशेषकर, उन कारों के लिये रिज़र्व रखे गये हैं जो अपने विंडस्क्रीन पर ओरेंज बैज का प्रगर्शन करते हैं, और आप सीमित समय के लिये उन स्थानों पर भी रूक सकते हैं, प्रायः जहां पार्क करने की अनुमति नहीं हैं। +","body ke s prishth ३९ par hain kee sthanon par parking sthan , visheshakar , un karon ke liye rizarv rakhe gaye hain jo apne zones par orange badge ka pragarshan karte hain , aur aap simit samay ke liye un sthanon par bhi rook sakte hain , praya jahan park karne ki anumti nahin hain. +",8,1,neutral,neutral,neutral +"Writing the lead - out may take some time. +","लीड-आउट लिखने में कुछ समय लग सकता है. +","lid-aaut likhne men kuchh time lead sakta hai +",6,2,neutral,neutral,neutral +"57. Sam Sand dunes are a gift of nature to man. +","57. सम रेत के टीले मानव को प्रकृति का सर्वोत्तम उपहार है। +","57 sam sand ke tile man ko nature ka sarvottam gift hai. +",8,1,positive,neutral,positive +"As a leading agency in all international initiatives UNESCO Education for All goals is to get the force and unity. +","एक अग्रणी अभिकरण के रूप में यूनेस्को सभी अन्तरराष्ट्रीय पहल को सबके लिए शिक्षा के लक्ष्य को पाने की ओर प्रवृत एवं एकजुट कर रही है। +","ek leading agency ke roop men yoonesko sabhi international initiatives ko sabke lie shiksha ke lakshy ko pane ki or prvrit evn ekjut kar rahi hai. +",7,1,positive,positive,neutral +"du of dx is equal to cosine of x. +","du dx की कोज्या एक्स के लिए बराबर है। +","du dx ki kojya x ke lie barabar hai. +",9,2,neutral,neutral,negative +"In fact, clans or families which succeeded in winning chieftainship were readily admitted into the frame of Hindu polity as Kshatriyas or Rajputs. +","वास्तव में सरदार का पद जीतनेवाले वंशों या परिवारों को हिंदू राजनीतिक व्यवस्था में आसानी से क्षत्रियों या राजपूतों के रूप में स्वीकार कर लिया जाता था। +","fact men sardar ka frame jitnevale vnshon ya families ko hindu rajnitik polity men aasani se kshatriyas ya rajputs ke roop men svikar kar clans jata tha. +",7,3,neutral,neutral,positive +"Among them 13, 74, 283 lives were under subsidised category and 61, 133 lives were under General non - subsidised category. +","इनमें क्रमशः13,74,283 और 61,133 व्यक्ति सब्सिडी पाने वाले वर्ग में थे और 61,135 पूरा प्रीमियम देने वालों में थे। +","inmen kramsha13,74,283 aur 61,133 vyakti subsidised general vale varg men the aur 61,135 poora primiyam lives valon men the. +",8,1,neutral,neutral,neutral +"The British press, condemning this demonstra - tion in strong words, stated that, by allowing Phadke to talk freely at every station, it looked as if he was an honour - able state guest instead of a convict going to Kalapani - LRB - Andamans - RRB -. +","अंग्रेजों के अखबार ने भी इस प्रदर्शन की कटु आलोचना करते हुए लिखा-सभी स्टेशनों पर रेल के डिब्बों से बाहर की ओर मुंह निकालकर उसे लोगों से बातचीत करने की इस प्रकार छूट दी गयी, जैसे कि वह काला पानी जाने वाला कैदी न होकर सरकार का कोई सम्मानित अतिथि है. +","british ke press ne bhi is pradarshan ki strong aalochna karte hue likha-sbhi station par rel ke dibbon se bahar ki or munh nikalakar use honour se able karne ki is prkar chhoot di gayi , jaise ki vah kala pani jane vala convict n hokar state ka koee sammanit guest hai +",8,3,neutral,negative,positive +"There is no state you are in, whether reading from the Qur 'an, or doing something else, but We are watching you as you are engaged in it. There is not the weight of an atom on the earth and in the heavens that is hidden from your Lord, nor is there anything smaller or greater than this but is recorded in the perspicuous Book. +","तुम जिस दशा में भी होते हो और क़ुरआन से जो कुछ भी पढ़ते हो और तुम लोग जो काम भी करते हो हम तुम्हें देख रहे होते है, जब तुम उसमें लगे होते हो। और तुम्हारे रब से कण भर भी कोई चीज़ छिपी नहीं है, न धरती में न आकाश में और न उससे छोटी और न बड़ी कोई त चीज़ ऐसी है जो एक स्पष्ट किताब में मौजूद न हो +","tum jis dasha men bhi hote ho aur uraan se jo kuchh bhi pate ho aur tum log jo kam bhi karte ho ham tumhen dekh rahe hote hai, jab tum usmen lage hote ho. aur tumhare rab se kan bhar bhi koee chiz chhipi nahin hai, n dharti men n aakash men aur n usse chhoti aur n bari koee t chiz aesi hai jo ek perspicuous book men maujood n ho +",6,3,neutral,negative,positive +"Computers which are connected by internet can do exchange of their information through rules of internet. +","अंतरजाल से जुडे हुए संगणक आपस मे अंतरजाल नियमावली () के जरिए सूचना का आदान-प्रदान करते है। +","connected by internet hue snganak aapas me antarjal rules ke jarie soochna ka aadan-prdan karte connected +",8,2,neutral,neutral,neutral +"Mass unemployment in the country is a matter of grave concern. +","देश में व्यापक बरोजगारी एक बडी चिन्ता का विषय है। +","grave concern vyapak barojgari ek badi chinta ka vishay hai. +",7,1,negative,negative,negative +"Why, is he better who founded his building upon the fear of God and His good pleasure, or he who founded his building upon the brink of a crumbling bank that has tumbled with him into the fire of Gehenna? And God guides not the people of the evildoers. +","क्या जिस शख़्स ने ख़ुदा के ख़ौफ और ख़ुशनूदी पर अपनी इमारत की बुनियाद डाली हो वह ज्यादा अच्छा है या वह शख़्स जिसने अपनी इमारत की बुनियाद इस बोदे किनारे के लब पर रखी हो जिसमें दरार पड़ चुकी हो और अगर वह चाहता हो फिर उसे ले दे के जहन्नुम की आग में फट पडे और ख़ुदा ज़ालिम लोगों को मंज़िलें मक़सूद तक नहीं पहुंचाया करता +","kya jis shas ne uda ke auph aur ushnoodi par apni imarat ki buniyad dali ho vah good pleasure hai ya vah shas jisne apni imarat ki buniyad is crumbling bank ke lab par rakhi ho jismen darar par chuki ho aur agar vah chahta ho phir use le de ke jahannum ki aag men phat pade aur uda zalim logon ko mnzilen masood tak nahin pahunchaya karta +",5,3,neutral,negative,positive +"The first gurus were Chunakkara Achutha Varier and Sankara Varier. +","प्रथम गुरु चुनक्करा अच्युत वारियर और शंकर वारियर रहे। +","pratham guru chunakkra achyut variyar aur shnkar variyar rahe. +",6,3,neutral,neutral,neutral +"A tape with a magnetizable layer on which data can be stored. +","चुंबकीय परत वाला एक टेप, जिसपर डेटा संग्रहीत किया जा सकता है. +","chunbkiy parat vala ek tep, jisapar deta sngrhit kiya ja sakta hai +",9,2,neutral,neutral,neutral +"It is also possible that with limited opportunities , there may be a competition amongst the ' old ' themselves not to talk of their conflicts with younger generations . +","यह भी संभव है कि सीमित अवसरों के कारण नौजवान पीढ़ी से प्रतिस्पर्धा की कौन कहे वृद्धों में आपस में ही प्रतिस्पर्धा हो जाए . +","yah bhi snbhav hai ki limited opportunities ke karan younger generations se prtispardha ki kaun kahe vriddhon men aapas men hi prtispardha ho jae +",8,1,neutral,neutral,negative +"that God may distinguish the corrupt from the good, and place the corrupt one upon another, and so heap them up all together, and put them in Gehenna; those are the losers. +","ताकि अल्लाह नापाक को पाक से छाँटकर अलग करे और नापाकों को आपस में एक-दूसरे पर रखकर ढेर बनाए, फिर उसे जहन्नम में डाल दे। यही लोग घाटे में पड़नेवाले है +","good god corrupt ko pak se chhantakar alag kare aur napakon ko aapas men ek-doosre par rakhakar dher banae , phir use gehenna men dal de. yahi log losers men parnevale hai +",7,2,negative,negative,positive +"PARTLY flattered by Mussolini 's courtship and partly curious to see for himself this colourful personality and its impact on an ancient and lively culture, Tagore accepted an invitation from Italy and sailed for Naples on 15 May 1926. +","कुछ तो मुसोलिनी के सम्मान निवेदन से प्रसन्न होकर और कुछ उसके रंगारंग व्यक्तित्व और प्राचीन तथा जीवंत संस्कृति पर उसके प्रभाव को देखने की चाह से रवीन्द्रनाथ ने इटली का आमंत्रण स्वीकार किया. वे 15 मई 1926 को नेपल्स के लिए रवाना हुए. +","kuchh to mussolini ke samman nivedan se prasann hokar aur kuchh uske colourful personality aur ancient tatha lively culture par uske impact ko dekhne ki chah se ravindrnath ne italy ka invitation svikar kiya ve 15 curious 1926 ko naples ke lie ravana hue +",6,3,positive,neutral,positive +"and you take a glass of wine and you put your feet up. +","और आप वाइन के एक गिलास के साथ आराम से अपने पैर ऊपर कर के बैठते हैं. +","aur aap wine ke ek glass ke sath aaram se apne feet oopar kar ke baithte hain +",8,4,neutral,neutral,neutral +"Law is an expression of the urge towards discipline, and self - control that has to be fostered in men and in social institutions. +","कानून उस अनुशासन और आत्म-संयम की प्रेरक अभिव्यक्ति है जिसका अनुपालन व्यक्तियों और सामाजिक संस्थाओं को करना होता है। +","law us discipline aur aatm-snyam ki urge expression hai jiska anupalan towards aur social institutions ko karna hota control +",7,2,neutral,negative,neutral +"Nominee of the insurance has to be a near relative of the subscriber. +","बीमा का नामित व्यक्ति अभिदाता का निकट संबंधी होगा। +","insurance ka nominee vyakti subscriber ka near snbndhi hoga. +",8,1,neutral,neutral,neutral +"And I said, “What do you do?” +","और मैंने कहा, “तुम क्या करते हो” +","aur i kaha , tum kya karte ho +",5,2,neutral,neutral,neutral +"To Ravana's question, Hanuman in his answer introduced himself as Ram's messenger. +","रावण के प्रश्न के उत्तर में हनुमान ने अपना परिचय राम के दूत के रूप में दिया। +","ravan ke prashn ke answer introduced hanuman ne apna parichay ram ke doot ke roop men diya. +",5,2,neutral,neutral,neutral +"LEVEL : NEWS PAPERS IN HINDI LANGUAGE +","श्रेणी:हिन्दी भाषा के समाचार पत्र +","hindi language ke samachar papers +",8,1,neutral,neutral,neutral +"There are probably other things in the world that the sheep can 't teach me, thought the boy as he regarded the old merchant. +","दुनिया में ऐसी कई और भी चीजें हैं, जो भेड़ें नहीं सिखा सकती। +","other men boy kee aur bhi things hain , jo sheep nahin sikha sakti. +",5,0,neutral,neutral,neutral +"(a) the provisions of any existing law; or +","(क) किसी वर्तमान विधि के उपबंधों पर, अथवा +","k kisi existing law ke provisions par, athva +",8,4,neutral,neutral,neutral +"With such modes and conventions ruling the stage, it is plausible to assume further that playwrights started preparing their scripts suitably and incorporated directives for acting and representation. +","मंचन को नियंत्रित करना भी संगत होगा कि नाटककार तदनुसार अपनी पांडुलिपियाँ तेयार करने लगे होंगे तथा अभिनय और प्रस्तुतीकरण के निर्देशों का समावेश करने लगे होंगे। +","mnchan ko niyntrit karna bhi sngat hoga ki natakkar tadnusar apni pandulipiyan teyar karne lage honge tatha abhinay aur prastutikaran ke nirdeshon ka samavesh karne lage honge. +",8,1,neutral,neutral,neutral +"Badi Maa and Dana Pani were written for Hindi films. +","बडी मॉँ और दाणा पाणी हिन्दी फिल्मों के लिए लिखे गए थे। +","badi mn aur dana pani hindi films ke lie likhe ge the. +",9,0,neutral,neutral,neutral +"We want you to rewrite this integral when +","हम आपको इस अभिन्न जब फिर से लिखना करने के लिए चाहता हूँ +","ham aapko is integral jab phir se likhna karne ke lie chahta hoon +",9,0,neutral,neutral,positive +"The degree of blurring from 1 to 127. +","1 से 127 तक धुंधला की डिग्री. +","1 se 127 tak degree of blurring +",8,3,neutral,neutral,neutral +"He said, “Do not fear, I am with you, I hear and I see. +","फ़रमाया तुम डरो नहीं मैं तुम्हारे साथ हूँ (सब कुछ) सुनता और देखता हूँ +","farmaya tum daro nahin i tumhare sath see sab kuchh sunta aur dekhta see +",5,5,positive,neutral,positive +"You can build your relationship together through those sometimes difficult teenage years . +","आप उसकी किशोरावस्था के दौरान , जो कभी-कभी बड़ी कठिन अवस्था होती है , उससे अपना निजी अंतरंग सम्बंध स्थापित कर सकते हैं . +","aap uski difficult teenage years , jo kabhi-kbhi bari kathin avastha hoti hai , usse apna niji antrng sambndh sthapit kar sakte hain +",6,4,positive,neutral,negative +"In India 64. 8% literacy is there, in which 75. 3% men and 53. 7% woman are literate. +","भारत में ६४. ८ प्रतिशत साक्षरता है जिसमे से ७५. ३% पुरुष और ५३. ७% स्त्रियाँ साक्षर है। +","india men ६४ ८ prtishat literacy hai jisme se ७५ ३ men aur ५३ ७ striyan sakshar hai. +",8,2,neutral,neutral,neutral +"The next thing is that, if you want to predict +","दूसरी ये कि, यदि आप पूर्वानुमानित करना चाहें +","doosri ye ki, yadi aap predict karna chahen +",8,1,neutral,neutral,positive +"And whomever We give a long life, We cause him to regress in creation. Then, will they not exercise their reason? +","और हम जिस शख्स को (बहुत) ज्यादा उम्र देते हैं तो उसे ख़िलक़त में उलट (कर बच्चों की तरह मजबूर कर) देते हैं तो क्या वह लोग समझते नहीं +","aur ham jis shakhs ko bahut long umr life hain to use ilat men ulat kar bachchon ki tarah majboor kar life hain to kya vah log reason nahin +",4,4,neutral,neutral,positive +"With momentum of time Marathi literature also became modern. +","मराठी साहित्य भी समय की गति क साथ साथ आधुनिक हो चुका है। +","marathi literature bhi time ki momentum k sath sath modern ho chuka hai. +",9,1,neutral,neutral,neutral +"Mankind were one community, and Allah sent (unto them) prophets as bearers of good tidings and as warners, and revealed therewith the Scripture with the truth that it might judge between mankind concerning that wherein they differed. And only those unto whom (the Scripture) was given differed concerning it, after clear proofs had come unto them, through hatred one of another. And Allah by His Will guided those who believe unto the truth of that concerning which they differed. Allah guideth whom He will unto a straight path. +","(पहले) सब लोग एक ही दीन रखते थे (फिर आपस में झगड़ने लगे तब) ख़ुदा ने नजात से ख़ुश ख़बरी देने वाले और अज़ाब से डराने वाले पैग़म्बरों को भेजा और इन पैग़म्बरों के साथ बरहक़ किताब भी नाज़िल की ताकि जिन बातों में लोग झगड़ते थे किताबे ख़ुदा (उसका) फ़ैसला कर दे और फिर अफ़सोस तो ये है कि इस हुक्म से इख्तेलाफ किया भी तो उन्हीं लोगों ने जिन को किताब दी गयी थी और वह भी जब उन के पास ख़ुदा के साफ एहकाम आ चुके उसके बाद और वह भी आपस की शरारत से तब ख़ुदा ने अपनी मेहरबानी से (ख़ालिस) ईमानदारों को वह राहे हक़ दिखा दी जिस में उन लोगों ने इख्तेलाफ डाल रखा था और ख़ुदा जिस को चाहे राहे रास्त की हिदायत करता है +","pahle sab log ek hi din rakhte the phir aapas men jhagarne lage tab uda ne najat se ush bri dene vale aur azab se darane vale paimbron ko bheja aur in paimbron ke sath baraha kitab bhi nazil ki taki jin baton men log jhagarte the kitabe uda uska faisla kar de aur phir afsos to ye hai ki is hukm se ikhtelaph kiya bhi to unhin logon ne jin ko kitab di gayi thi aur vah bhi jab un ke pas uda ke saph ehkam aa chuke uske bad aur vah bhi aapas ki shararat se tab uda ne apni meharbani se alis eemandaron ko vah rahe ha dikha di jis men un logon ne ikhtelaph dal rakha tha aur uda jis ko chahe rahe rast ki hidayat karta hai +",6,3,neutral,neutral,positive +"What is today 's status of Consolidated Stock? +","समेकित स्टॉक की आज की स्थिति क्या है। +","consolidated stock ki today ki status kya hai. +",8,3,neutral,neutral,neutral +"They are nocturnal animals, sleeping during the day and hunting at night, singly or in pairs. +","दिन में यह सोती रहती है और रात में अकेले या जोड़े में शिकार करती है। +","din men yah soti rahti hai aur rat men akele ya jore men day and hunting +",4,4,neutral,neutral,neutral +"Bridge critical gaps in local infrastructure and other development requirements that are not being adequately met through existing inflows. +","स्थानीय बुनियादी ढांचे और अन्य विकास की महत्वपूर्ण आवश्यकताओं के बीच के अंतर को पाटना, जिसे मौजूदा विकास प्रवाह में भली प्रकार से दूर नहीं किया जा रहा है। +","local infrastructure dhanche aur any vikas ki mahatvpoorn aavashyaktaon ke bich ke gaps in local, jise maujooda vikas prvah men bhali prkar se door nahin kiya ja raha hai. +",6,3,neutral,negative,negative +"Amazed at the strength of her love and at the same time ardently desiring to get rid of herYama granted a series of boons to her, in course of which, in a psychological moment, Savitri made him grant that she would have a hundred sons by Satyavan! +","सावित्री के प्रेम की शक्ति से चकित होकर तथा इसी के साथ उससे पीछा छुड़ाने की उत्कट इच्छा से यम ने उसे कई वरदान दिए और उन्हीं वरदानों के क्रम में सावित्री ने एक मनोवैज्ञानिक क्षण में उनसे यह भी स्वीकार कराया कि उसे सत्यवान से सौ पुत्रों की प्राप्ति हो। +","savitri ke prem ki shakti se chakit hokar tatha isi ke sath usse pichha chhurane ki utkat ichchha se yam ne use kee vardan die aur unhin vardanon ke kram men savitri ne ek manovaijnjanik kshan men unse yah bhi svikar karaya ki use satyvan se sau putron ki prapti ho. +",6,5,positive,negative,positive +"I usually get up at eight o 'clock. +","मैं आमतौर आठ बजे सोकर उठता हूँ। +","i aamtaur aath baje sokar uthta hoon. +",7,4,neutral,neutral,neutral +"And it 's good to always do a reality check after every step. +","और यह हमेशा हर कदम के बाद एक वास्तविकता की जांच करने के लिए अच्छा है। +","aur yah hamesha har step ke bad ek reality ki janch karne ke lie achchha good +",8,1,positive,positive,positive +"Who avoid the deadly sins, immoral acts, and forgive when they are angered, +","जो बड़े-बड़े गुनाहों और अश्लील कर्मों से बचते है और जब उन्हे (किसी पर) क्रोध आता है तो वे क्षमा कर देते हैं; +","jo bare-bare sins aur ashlil avoid the deadly hai aur jab unhe kisi par krodh aata hai to ve kshma kar dete hain +",4,5,neutral,neutral,negative +"Human body consists of head, neck, torso, arms and legs. +","मनुष्य शरीर में शीश, गर्दन, धड़, बाजु तथा टांगें होती हैं +","human body men torso , neck , dhar , baju tatha tangen hoti hain +",9,2,neutral,neutral,neutral +"Child - 3: Tell us now, Grandpa! +","बच्चा 3: फिर सुनाओ, दादा! +","child 3: phir sunao, grandpa! +",10,0,neutral,neutral,neutral +"The requested device could not be initialized (""mounted""). The reported error was:% 1 +","निवेदित उपकरण इनिशियलाइज़ (""माउन्टेड"") नहीं किया जा सकता. रिपोर्ट की गई त्रुटि हैः% 1 +","requested device inishiylaiz maunted nahin kiya ja sakta riport ki gee reported error 1 +",5,7,negative,negative,negative +"The location “% s” does not exist. +","स्थान “% s” मौज़ूद नहीं है. +","location s mauzood nahin hai +",9,0,negative,neutral,neutral +"follow the line all the way from B to E, +","बी से ई तक की रेखा के पीछे पूरे रास्ते चलिए, +","b se ee tak ki line ke way poore raste chalie , +",7,2,neutral,neutral,neutral +"was that it was legal to sell you +","ये कानूनन सही है कि आपको बेचा जाय +","ye legal sahi hai ki aapko becha jay +",7,1,neutral,neutral,positive +"Surely the Day of Judgement has an appointed time; +","निस्संदेह फ़ैसले का दिन एक नियत समय है, +","nissndeh judgement ka day ek niyat time hai , +",9,1,neutral,neutral,positive +"In our own area, we are striving ceaselessly to clear old suspicions, to remove barriers to understanding and to create conditions for an enduring friendship between Bangladesh, Pakistan and ourselves. +","स्वयं अपने क्षेत्र में हम लगातार कोशिश कर रहे है कि पुराने संदेह दूर हो, आपसी समझ की राह खुले और बंगलादेश, पाकिस्तान तथा भारत के बीच स्थायी मित्रता के लिए परिस्थितियां अनुकूल बने। +","own apne area men old lagatar koshish kar rahe hai ki purane suspicions clear ho , aapsi samajh ki barriers khule aur bangladesh , pakistan tatha bharat ke bich sthayi friendship ke lie paristhitiyan anukool bane. +",7,0,positive,neutral,positive +"Jute plants need a temperature ranging from 21 to 38 degrees Celsius and relative humidity of 70 to 80 per cent. +","पटसन के पौधों को 21 से 38 डिग्री सेलसियस तापमान तथा 70 से 80 प्रतिशत सापेक्ष आर्द्रता की जरूरत पड़ती हैं। +","jute ke plants ko 21 se 38 degrees selsiyas temperature tatha 70 se 80 cent relative humidity ki jaroorat parti hain. +",9,0,neutral,neutral,neutral +"In the interview , Bharali has given a blow-by-blow account of what supposedly happened after the “ marriage ” . +","अपने इंटरव्यू में भराली ने ' शादी के बाद ' की हर घटना का क्रमवार यौरा दिया है . +","apne interview men bharali ne marriage ke bad ki har happened ka kramvar yaura diya hai +",7,1,neutral,neutral,neutral +"In the recent past, bilateral cooperation has seen significant acceleration and expansion to include almost all areas of mutual interest. +","पिछले दिनों द्विपक्षीय संबंधों में काफी गति तथा विस्तार हुआ है और उसमें लगभग सभी क्षेत्र शामिल हैं। +","recent dinon bilateral snbndhon men significant acceleration tatha expansion huaa hai aur usmen interest sabhi kshetr shamil hain. +",8,2,positive,neutral,positive +"Example: in the panel [XML:: RSS] (panel) [mygape] (PHP), [rom] (java) etc. +","उदाहरणः सीपैन में [XML:: RSS] (पर्ल) [मैगपी] (पीएचपी) [रोम] (जावा) आदि। +","example sipain men XML : : panel etc xml php rom java aadi. +",7,2,neutral,neutral,neutral +"Sugar Machinery: - domestic manufacturers occupy predominant position in the global scenario and are capable of manufacturing from concept to commissioning stage sugar plants of latest design for a capacity upto 10, 000 TCD (tons crushing per day). +","वर्तमान में संपूर्ण चीनी संयंत्रों के विनिर्माण के लिए संगठित क्षेत्र में 2 इकाइयां हैं और प्रति वर्ष लगभग 200 करोड़ की संस्थापित क्षमता वाले पुर्जे हैं। +","latest men snpoorn sugar domestic ke manufacturers ke lie sngthit kshetr men tons ikaiyan hain aur prti varsh global 200 position ki snsthapit capable vale purje hain. +",7,1,neutral,neutral,neutral +"Unfortunately, some people who have been the victim of crime are more vulnerable, in the short term, to further crime. +","दुर्भाग्यवश , अपराध के शिकार हुए कुछ लोगों में फिर से उसके शिकार बनने की अधिक प्रवृत्ति होती है | +","people , crime ke victim hue kuchh logon men phir se uske victim banne ki further prvritti hoti hai +",7,1,negative,negative,negative +"We're going to go back to the moon ... 50 years later? +","हम चाँद पे फिर से जा रहे हैं - 50 साल बाद - +","ham moon pe phir se ja rahe hain - 50 years bad - +",9,0,neutral,neutral,neutral +"We also sent down blessed water from the heaven, wherewith We caused gardens and harvest - grain to grow, +","और हमने आसमान से बरकत वाला पानी बरसाया तो उससे बाग़ (के दरख्त) उगाए और खेती का अनाज और लम्बी लम्बी खजूरें +","aur hamne aasman se barakat vala pani wherewith we caused ba ke darakht ugae aur kheti ka anaj aur lambi lambi khajooren +",7,2,neutral,negative,positive +"Let all those who care and long for freedom and the independence of India meet this test with strength and confidence, and march together to the free India of our dreams. 1 do not think that the Hindu Mahasabha can get any seat except in Bengal. +","जो लोग भारत की आजादी के लिए चिन्ता करते हैं और उसके इच्छुक हैं, वे सब शान्ति और विश्वास के साथ इस कसौटी का सामना करें और हमारे सपनों के स्वतंत्र भारत की दिशा में कंधे से कंधा मिलाकर आगे बढें। +","jo strength india ki freedom ke lie chinta karte hain aur uske ichchhuk hain , ve mahasabha shanti aur confidence ke sath is test ka meet karen aur hamare dreams ke independence india ki disha men kndhe se kndha milakar aage badhen. +",6,3,positive,neutral,positive +"The Kalam - pattu in the Vaikkom temple is sung inside a big thatched shed in the extensive courtyard on the northern side of the temple. +","वैकोम के मंदिर में कलमपट्ट एक बहुत बड़ी झोपड़ी में बैठकर गाया जाता है जो मंदिर के बहुत बड़े प्रांगण के उत्तरी भाग में स्थित है। +","vaikom ke mndir men kalamapatt ek bahut big thatched shed baithakar gaya jata hai jo mndir ke bahut bare prangan ke uttri bhag inside a big +",7,1,neutral,neutral,neutral +"She was, in the words of Stocqueler, 'for talents and personal attractions without a rival even in England. +","स्टॉक्वेलर के शब्दों में वह प्रतिभा और व्यक्तिगत आकर्षण में इंगलैंड भर में अपना सानी नहीं रखती थी। +","stkvelar ke shabdon men vah talents and personal aakarshan men inglaind bhar men apna sani nahin rakhti thi. +",7,0,neutral,neutral,positive +"I hurried so as not to miss the train. +","मैंने जल्दी करी जिससे कि ट्रेन न छूट जाए। +","mainne jaldi kari jisse ki tren n chhoot jae. +",9,1,neutral,negative,positive +"Provided that the amount of income-tax calculated on the income by way of short-term capital gains referred to in section 111A shall be at the rate of fifteen per cent; +","परंतु धारा 111क में उल्लिखित अल्पकालिक पूंजी अभिलाभों के रूप में आय पर परिकलित आय-कर की रकम पंद्रह प्रतिशत की दर से होगी; +","parntu section 111k men ullikhit alpkalik way abhilabhon ke roop men income par pariklit aay-kar ki amount fifteen prtishat ki rate se hogi +",7,4,neutral,neutral,positive +"As for the landlords, who in many provinces formed the link between the Government and the cultivators, as a class they did not stir a finger to help or encourage their tenants. +","जहां तक मालगुजारों का संबध था, जो कई प्रांतों में Zकिसान और सरकार के बीच संबंध बनाये हुये थे. एक वर्ग के रूप में उन्होने अपने किरायेदारों की सहायता या प्रोत्साहन के लिए उंगली तक नहीं हिलाई. +","jahan tak malgujaron ka snbadh tha, jo kee provinces formed Zkisan aur sarkar ke bich snbndh banaye huye the ek varg ke roop men unhone apne kirayedaron ki sahayta ya protsahan ke lie ungli tak nahin hilaee +",4,7,negative,negative,positive +"Reading is a complex cognitive process of decoding symbols for the purpose of deriving meanings. +","पाठन, अर्थ प्राप्त करने के उद्देश्य से प्रतीकों के विकोडन की एक जटिल संज्ञानात्मक प्रक्रिया है। +","reading , meanings prapt karne ke purpose se symbols ke vikodan ki ek complex cognitive process hai. +",8,4,neutral,neutral,neutral +"This term is used to mention two parts or components usually in pairs. +","सामान्यतः एक वस्तु के दो भाग या उपकरणों की जोड़ियों केलिए इस पद का प्रयोग किया जाता है। +","samanyta ek vastu ke do parts ya upakarnon ki pairs kelie is term ka pryog kiya jata hai. +",9,2,neutral,neutral,neutral +"The sikhara on top also appears to have been square. +","ऊपर शिखर भी वर्गाकार रहा होगा. +","oopar sikhara bhi square raha hoga +",9,1,neutral,neutral,positive +"And all that which they used to earn availed them not. +","फिर जो कुछ वे कमाते रहे, वह उनके कुछ काम न आ सका +","phir jo kuchh ve kamate rahe , vah unke kuchh kam n aa saka +",9,1,neutral,negative,neutral +"The first signs of ill-health are the cessation of rumination , and drop in milk yield . +","बीमारी का पहला लक्षण तो यह है कि जानवर जुगाली करना बंद कर देता है.दूध भी वह कम मात्रा में देने लगता है . +","bimari ka pahla lakshan to yah hai ki janavar jugali karna bnd kar deta haidoodh bhi vah kam matra men dene lagta hai +",9,1,negative,neutral,negative +"and, when reminded, do not remember +","और जब उन्हें याद दिलाया जाता है, तो वे याद नहीं करते, +","aur jab unhen remember dilaya jata hai, to ve remember nahin karte, +",8,1,neutral,neutral,neutral +"Font for text with fixed width, such as code examples. +","कोड उदाहरण के रूप में, फिक्स्ड चौड़ाई के साथ पाठ के लिए फ़ॉन्ट. +","code such ke roop men , fixed chauraee ke sath text ke lie font +",7,2,neutral,neutral,neutral +"The highest amount of money that is required to be paid. +","अधिक से अधिक राशि जो मूल्य रुप मे दी जानी हो। +","highest se highest amount jo mooly rup me di jani ho. +",9,1,neutral,neutral,neutral +"Ladies and Gentlemen,I invite you to please join me in raising a toast: +","देवियो और सज्जनो, आइए हम सब मिलकरः +","ladies aur gentlemen , aaie ham sab milakra +",6,7,neutral,neutral,positive +"The male condom is any of the effective and safe method of contraception. +","पुरुष कंडोम गर्भ-निरोधक का सबसे प्रभावी और सुरक्षित उपाय है। +","male condom garbh-nirodhak ka sabse effective and safe upay effective +",6,1,neutral,neutral,positive +"Welcome to Evolution. The next few screens will allow Evolution to connect to your email accounts, and to import files from other applications. +","एवोल्यूशन में स्वागत है. अगला कुछ स्क्रीन आपके एवोल्यूशन को आपके ईमेल खाते से जुड़ने में सक्षम बनायेगा, और अन्य अनुप्रयोगों से फ़ाइल को आयात करेगा. +","evolution men welcome hai next kuchh screens aapke evolution ko aapke email accounts se jurne men saksham few , aur other applications se fail ko aayat karega +",5,5,positive,neutral,positive +"If I had a dozen of a dozen eggs - - a dozen is twelve. +","अगर मेरे पास 1 दर्ज़न के दर्ज़न अंडे हैं-- एक दर्ज़न 12 के बराबर होता है. +","agar mere pas 1 twelve ke twelve eggs hain-- ek twelve 12 ke barabar hota hai +",3,6,neutral,neutral,neutral +"Now, let 's think about what that is +","तो हम इसके बारे मे सोचते हैं वो क्या है +","to ham iske bare me sochte hain vo kya hai +",9,1,neutral,neutral,neutral +"Her body stiffened as the spur thrust, and slackened again. +","भूख के पंजों की चुम्बन महसूस होते ही उसकी देह ऐंठ जाती और फिर दुबारा ढीली पड़ जाती। +","thrust ke pnjon ki chumban mahsoos hote hi uski body aenth jati aur phir dubara dhili par jati. +",7,1,neutral,neutral,neutral +"Dr Bhanu may have been persuaded to step in because a business partner is close to former chief minister S. Bangarappa, who in turn is related to Rajkumar. +","भानु को भूमिका निभाने के लिए शायद इसलिए तैयार किया गया कि एक व्यावसायिक साज्हीदार के पूर्व मुयमंत्री एस. बंगारप्पा से, जो राजकुमार के रिश्तेदार हैं, निकट संबंध हैं. +","bhanu ko bhoomika nibhane ke lie shayad islie taiyar kiya gaya ki ek business partner ke chief minister es bngarappa se, jo rajkumar ke rishtedar hain, nikat snbndh hain +",7,3,neutral,neutral,neutral +"But he who is given the Record behind his back, +","और रह वह व्यक्ति जिसका कर्म-पत्र (उसके बाएँ हाथ में) उसकी पीठ के पीछे से दिया गया, +","aur record vah vyakti jiska karm-patr uske baen hath men uski back ke pichhe se diya gaya , +",7,1,neutral,neutral,neutral +"So just to remind ourselves, 5 and 5 / 8 is the exact same thing +","तो खुद को याद दिलाने के लिए, 5 और 5/8 बिल्कुल एक ही +","to khud ko yad dilane ke lie , thing aur 58 exact ek hi +",4,2,neutral,neutral,neutral +"Products with factory price are available in show room +","फैक्टरी कीमत पर उत्पाद शो रूम में उपलब्ध है। +","factory price par utpad sho room men upalabdh hai. +",6,5,neutral,neutral,neutral +"Excepting those who thereafter shall repent and make amends. Verily Allah is Forgiving, Merciful. +","सिवाय उन लोगों के जो इसके पश्चात तौबा कर लें और सुधार कर लें। तो निश्चय ही अल्लाह बहुत क्षमाशील, अत्यन्त दयावान है +","sivay un logon ke jo iske merciful amends kar len aur sudhar kar len. to nishchay hi allah bahut kshmashil , atyant dayavan hai +",8,2,positive,neutral,positive +"But any one of these eight million odd different sperms may fertilise any one of the same number of possible ova at the time of conception to form a genotype consisting of 23 pairs of chromosomes. +","इन अस्सी लाख शुक्राणुओं में से कोई भी एक उतनी ही बड़ी संख्या के डिंबों में से किसी एक को संषेचित कर एक नया आनुवंशिक रूप उत्पन्न कर सकता है। +","in assi lakh shukranuon men se koee bhi ek utni hi bari snkhya ke dinbon men se kisi ek ko snshechit kar ek form a genotype utpann kar sakta hai. +",7,1,neutral,neutral,negative +"Something which is dangerous or risky for survival. +","ऐसी वस्तू जो जीवन या उत्पति के लिए संकटजन्य है +","aesi vastoo jo jivan ya utpti ke lie snkatajany hai +",4,7,negative,neutral,negative +"Bharavi was almost a contemporary of Kalidasa. +","भारवि करीब करीब कालिदास के समकालीन थे. +","bharvi karib karib kalidas ke contemporary the +",9,1,neutral,neutral,neutral +"Following problems were found with the data you entered: +","डाटा जो आपने भरा है उसके कारण निम्न समस्याएँ मिलींः +","data you entered bhara hai uske karan nimn samasyaen milina +",6,1,negative,neutral,negative +"This is a case of congenital megalogastria. +","यह जन्मजात उदरविस्फार की स्थिती है. +","yah congenital udarvisphar ki case hai +",8,1,negative,neutral,neutral +"Water resources development and management will have to be planned for a hydrological unit. +","एक हाइड्रोलॉजिकल इकाई के लिए जल संसाधन विकास और प्रबंधन की योजना बनानी होगी। +","ek hydrological unit ke lie water resources development aur management ki yojna banani hogi. +",10,0,neutral,neutral,neutral +"if culture changes us, as indeed it does, +","अगर संस्कृति हमें परिवर्तित करती हो, जो कि वह वाकई करती है - +","agar culture hamen changes karti ho , jo ki vah vakee karti hai - +",7,1,neutral,neutral,neutral +"plus i, and then you pay your monthly payment. +","इसके अलावा i, और फिर आप अपने मासिक भुगतान का भुगतान। +","iske alava i, aur phir aap apne monthly payment ka payment +",8,1,neutral,neutral,negative +"Family Planning Association of India and Branch offices. +","भारतीय परिवार नियोजन संघ और शाखा कार्यालय। +","india family planning association aur shakha karyalay. +",7,1,neutral,neutral,neutral +"Such drafts which are presented for payment not accompanied by the advice from the remitter bank. +","ऐसे ड्राफ्ट जिन्हें भुगतान के लिए बिना प्रेषक बैंक द्वारा जारी सूचना पत्र के प्राप्त हुए प्रस्तुत किया जाए। +","aese drafts jinhen such ke lie bina remitter bank dvara jari advice patr ke prapt hue prastut kiya jae. +",6,3,neutral,neutral,neutral +"Habitat They live near water in open tree - and shrub - grasslands. +","निवास: ये पेड़ और घास वाले खुले मैदानों में रहते हैं। +","habitat : ye tree aur ghas vale khule near men rahte water +",6,1,neutral,neutral,neutral +"If the children have had some experience in play - making before they do this project, the making of the story will go more quickly than if they have not had previous experience. +","यदि बच्चों को, इस परियोजना से पूर्व नाट्य रचना का कुछ अनुभव है, तो परियोजना की कथा को बनाने में उन्हें कम समय लगेगा। +","yadi children ko , is project se previous play rachna ka kuchh experience hai , to project ki story ko banane men unhen kam samay lagega. +",9,2,positive,neutral,positive +"Whether the image gallery pane should be resizable. +","क्या छवि गैलरी फलक बदलने योग्य होना चाहिए. +","kya image gallery pane badalne yogy hona chahie +",8,3,neutral,neutral,neutral +"Do you call on Ba 'lan (the idol Baal) and abandon the Best Creator, +","क्या तुम 'बअत' (देवता) को पुकारते हो और सर्वोत्तम सृष्टा। को छोड़ देते हो; +","kya tum bat ba ko pukarte ho aur best creator ko chhor dete ho +",6,1,negative,positive,positive +"The notion of CSR is not new to India. +","कॉरपोरेट सामाजिक उत्तरदायित्व का विचार भारत के लिए नया नहीं है। +","csr samajik uttardayitv ka notion bharat ke lie new nahin hai. +",9,0,neutral,neutral,neutral +"& Choose which service to edit: +","चुनें कि कौन सी सेवा संपादित करनी हैः (C) +","chunen ki kaun si service snpadit karni haia C +",5,6,neutral,neutral,neutral +"Another intriguing structure at the Imambara is the five - storied baoli (step well), which belongs to the pre - Nawabi era. +","इमामबाड़े की एक और विहित संरचना 5 मंजिला बावड़ी (सीढ़ीदार कुंआ) है, जो पूर्व नवाबी युग की है। +","imambare ki ek aur vihit snrachna 5 mnjila bavari siidar kunaa hai, jo poorv navabi yug ki hai. +",4,7,neutral,neutral,positive +"The Soviet Union shares the Indian view on the maintenance of peace and the elimination of racialism and colonialism. +","शांति बनाए रखने और रंगभेद तथा उपनिवेशवाद को समाप्त करने के बारे मे सोवयत संघ और भारत के विचार एक जैसे हैं। +","indian maintenance rakhne aur racialism soviet colonialism ko elimination karne ke bare me sovayat union aur bharat ke view ek jaise hain. +",7,2,neutral,neutral,positive +"And of His signs is the creation of the heavens and earth and the crawling things He has scattered abroad in them; and He is able to gather them whenever He will. +","और उसी की (क़ुदरत की) निशानियों में से सारे आसमान व ज़मीन का पैदा करना और उन जानदारों का भी जो उसने आसमान व ज़मीन में फैला रखे हैं और जब चाहे उनके जमा कर लेने पर (भी) क़ादिर है +","aur usi ki udarat ki nishaniyon men se sare heavens and earth ka paida karna aur un jandaron ka bhi jo usne heavens and earth men scattered abroad hain aur jab chahe unke jama kar lene par bhi adir hai +",7,2,neutral,neutral,positive +"working together for a common goal +","किसी सामान्य उद्देश्य के लिए मिलकर काम करना +","kisi common goal ke lie milakar kam karna +",8,0,positive,neutral,neutral +"Mangle From: / To: headers in replies to replies +","जवाब के जवाब में द्वाराः/कोः हेडर्स बिगड़े +","replies ke replies men dvaraakoa headers bigare +",6,0,neutral,neutral,neutral +"The Skene 's glands is more commonly known as the G - spot. +","स्कीन ग्रन्थियाँ सामान्यतः जी-स्पॉट के रूप में जानी जाती हैं. +","skin granthiyan samanyta ji-spt ke roop men jani jati hain +",9,2,neutral,neutral,neutral +"In tha Law there are a number of bylaws under one law. +","विधि में एक नियम के अंतर्गत कई उप नियम होते हैं। +","vidhi men ek law ke number kee tha law hote hain. +",6,3,neutral,neutral,positive +"Disable the new tab page menu for accessing tabs on other devices. +","अन्य उपकरणों पर टैब पर पहुंचने के लिए नया टैब पृष्ठ अक्षम करें. +","new devices par tab par menu ke lie naya tab page aksham karen +",8,3,neutral,negative,neutral +"Moreover , even if we resolved the dispute by circumscribing its scope to some particular field of human endeavour and did agree on what is ' excellence ' , there is no knowing that it would be passed on to children . +","और किसी विशिष्ट क्षेत्र के संदर्भ में उत्कृष्टता का अर्थ क़्या होगा , इस बात का निर्णय हम लोगों ने कर भी लिया तब भी आनेवाली पीढ़ी की संतानों में यह गुण दिखाई देगा , इस बात की कोई गारंटी नहीं दी जा सकती . +","aur kisi vishisht kshetr ke sndarbh men utkrishtta ka arth ya hoga , is bat ka nirnay ham logon ne kar bhi liya tab bhi aanevali pii ki sntanon men yah gun dikhaee dega , is bat ki koee garnti nahin di ja sakti +",4,6,neutral,negative,positive +"There is a proposal to renew the outstanding bonds by exercising option. +","विकल्प द्वारा आशोधित बांड के नवीकरण का प्रस्ताव विचाराधीन है। +","option dvara aashodhit band ke navikaran ka prastav vicharadhin hai. +",8,1,neutral,neutral,positive +"Vaccine is available and cannot be given during pregnancy. Women vaccincated against varicella should not try to conceive for at least one month after vaccination. +","टीका उपलब्ध है और गर्भवती स्त्रियों को नहीं दिया जा सकता है. टीका लेने के बाद स्त्रियों को कम से कम एक महीने तक गर्भधारण नहीं करना चाहिये. +","vaccine available hai aur pregnancy women ko nahin diya ja sakta hai vaccine lene ke bad women ko least se least ek month tak garbhdharan nahin karna chahiye +",7,4,negative,neutral,neutral +"going to be aligned at the center of the cell. +","कोशिका के केंद्र में पंक्ति बद्ध होंगे. +","cell ke kendr men pnkti baddh honge +",6,5,neutral,neutral,neutral +"budha 's birthday is still conducted in theravada countries and his mother got death after 7 days of his birth +","बुद्ध का जन्म दिन व्यापक रूप से थएरावदा देशों में मनाया जाता है उनकी माता का उनके जन्म के सात दिन बाद निधन हो गया था। +","buddh ka janm din vyapak roop se theravda deshon men manaya jata hai unki mata ka unke janm ke sat din bad nidhan ho gaya tha. +",9,1,negative,negative,negative +"Then came forward Rajaraja Varma, diffident and nervous. +","इसके बाद भयभीत और आशंका से भरे राजराज वर्मा सामने आए। +","iske bad bhaybhit aur aashnka se bhare rajraj varma samne forward +",7,0,neutral,neutral,negative +"After a few minutes' silence, Gora said, Please don 't involve me in all this. +",">> गोरा ने थोड़ी देर चुप रहकर कहा, देखिए, इन सब मामलों में मुझे न फँसाइये। +","gora ne thori der chup rahakar kaha, dekhie, in sab mamlon men mujhe n phnsaiye. +",5,8,neutral,negative,positive +"Another program on your computer added an extension that may change the way Chrome works. +","आपके कंप्यूटर पर किसी अन्य प्रोग्राम ने एक्सटेंशन जोड़ा है, जो Chrome के काम करने के तरीके को बदल सकता है. +","aapke computer par kisi any program ne extension jora hai , jo Chrome ke works karne ke tarike ko chrome sakta hai +",8,0,neutral,neutral,neutral +"This vagueness persisted in the dynamical equations for the particles. +","यह अस्पष्टता कणों के गतिकीय समीकरणों में चलती रही। +","yah aspashtta kanon ke dynamical equations men chalti rahi. +",7,5,neutral,negative,positive +"In India 64. 8% literacy is there, in which 75. 3% men and 53. 7% woman are literate. +","भारत में ६४. ८ प्रतिशत साक्षरता है जिसमे से ७५. ३% पुरुष और ५३. ७% स्त्रियाँ साक्षर है। +","india men ६४ ८ prtishat literacy hai jisme se ७५ ३ men aur ५३ ७ striyan literate hai. +",9,1,neutral,neutral,neutral +"Don 't bunt. Aim out of the ball park. Aim for the company of immortals. +","गेंद को दो रन के लिए सरकाइए मत। उसे मैदान से बाहर पहुँचाने के लिए निशाना साधिए। अमर व्यक्तियों के साथ का लक्ष्य बनाइए। +","ball ko do ran ke lie don mat. use park se bahar pahunchane ke lie aim sadhie. amar vyaktiyon ke sath ka lakshy company +",5,0,neutral,neutral,neutral +"The festivities last ten days and nights, the first nine nights of which are the 'Navaratri', dedicated to the worship of different aspects of Durga in some areas and also of Lakshmi or Saraswati in others. +","यह उत्सव दस दिनों चल चलता है, जिनमें से पहली नौ रातें कई क्षेत्रों में दुर्गा और कई क्षेत्रों में लक्ष्मी या सरस्वती को समर्पित होती हैं। +","yah festivities ten last first chalta hai , jinmen se pahli others nights kee aspects men durga aur kee aspects men lakshmi ya saraswati ko samarpit hoti hain. +",7,1,neutral,negative,positive +"Hence he came to be called Padmapada. +","इसी से उसका नाम पद्मपाद पड गया। +","isi se uska called padmpad pad gaya. +",6,8,neutral,neutral,neutral +"2. Parliament government is more useful watching the India's variety all category of people can be taken in ministry. +","2. भारत की विविधता को देखते हुए संसदीय शासन ज्यादा उपयोगी है इस मे देश के सभी वर्गों के लोग मंत्रि परिषद मे लिये जा सकते है +","2 bharat ki vividhta ko dekhte hue parliament government jyada upyogi hai is me desh ke sabhi vargon ke log mntri parishad me liye ja sakte hai +",5,6,neutral,negative,positive +"that's been viewed four million times. +","और उसको भी चालीस लाख बार देखा गया है। +","aur usko bhi chalis lakh times dekha gaya hai. +",8,2,neutral,neutral,neutral +"The court said that the words were merely laughable and incapable of producing any effect on the readers. +","न्यायालय ने कहा कि वे शब्द सिर्फ हास्यास्पद थे और पाठकों पर कोई प्रभाव डालने में अक्षम थे। +","nyayalay ne kaha ki ve shabd sirph hasyaspad the aur pathkon par koee prbhav incapable of producing the. +",8,1,negative,negative,negative +"By contrast , one LSD trip might result in psychological damage to somebody with latent mental illness . +","इसके विपरीत एलएसडी का एक ही बार दम लगाने से किसी प्रच्छन्न दिमाग़ी रोग वाले व्यक्ति को मनोवैग्यानिक हानि पहुँचने की संभावना हो सकती है । +","iske viprit elesdi ka ek hi bar dam lagane se kisi latent mental illness vale vyakti ko manovaigyanik hani pahunchne ki snbhavna ho sakti hai . +",6,6,negative,negative,negative +"The violin bow might well have grown out of the act of fire-making by scraping one rod over another . +","बहुत संभव है कि वायलिन का गज भी एक छड़ी को दूसरी छड़ी पर रगड़कर आग जलाने वाली सामान्य जीवन की क्रिया का ही विकसित रूप हो . +","bahut snbhav hai ki violin ka bow bhi ek rod ko doosri rod par act aag jalane vali samany jivan ki kriya ka hi viksit roop ho +",6,5,neutral,neutral,positive +"An error occurred while trying to set up sync. +","सिंक सेट अप करने का प्रयास करते समय एक त्रुटि उत्पन्न हुई. +","sync set ap karne ka pryas karte samay ek error utpann huee +",9,0,negative,negative,negative +"An amount of notes and cashes that the cashier maintain in his cash - box for operations. +","नोटों या सिक्कों की ऐसी राशि जो खजांची दैनिक कार्य व्यवहार के लिए अपने नकदी बॉक्स में रखता हो। +","notes ya sikkon ki aesi amount jo cashes dainik kary vyavhar ke lie apne nakdi box men rakhta ho. +",7,2,neutral,neutral,neutral +"And the plants and the trees prostrate (for Him). +","और बूटियाँ बेलें, और दरख्त (उसी को) सजदा करते हैं +","aur plants belen , aur darakht usi ko sajda karte hain +",7,1,neutral,neutral,neutral +"Speaking on the occasion, the President said India is fortunate to have a large young population to take forward her aspirational agenda of change. +","इस अवसर पर, राष्ट्रपति ने कहा कि, भारत सौभाग्यशाली है कि उसके पास परिवर्तन की आकांक्षापूर्ण कार्यसूची की प्राप्ति के लिए विशाल युवा पीढ़ी है। +","is occasion par , president ne kaha ki , india fortunate hai ki uske pas change ki population agenda ki prapti ke lie large young pii hai. +",7,3,positive,positive,positive +"At 13, Teleza is the chairperson of her school 's anti - HIV / AIDS club as well as president of the local Girl Guides chapter. +","13 वर्ष की तेलेज़ा अपने स्कूल के एचआईवी/एड्स रोकथाम क्लब व स्थानीय गल्स्र गाइड शाखा की अध्यक्ष है। +","girl varsh ki teleza apne school ke echaaeevieds roktham club v local galsr guides chapter ki chairperson hai. +",5,3,neutral,neutral,negative +"Many scholars - and , of course , there are many who dispute the point - are of the opinion that quite possibly the idea of making a harp originated in the twang of the hunting or martial bow and the plectrum in the arrow . +","हालांकि अनेक विद्वान इस मत का विरोध करते हैं , फिर भी बहुत से विद्वानों की यह मान्यता है कि तंत्र-वाद्य के निर्माण का विचार संभवत : शिकारी या युद्ध संबंधी धनुष और बाण के कोण द्वारा उत्पन्न टंकार से दिमाग में आया होगा . +","course many vidvan is point ka virodh karte hain , phir bhi bahut se scholars ki yah manyta hai ki tntr-vady ke nirman ka vichar snbhavat : hunting ya martial snbndhi harp aur arrow ke kon dvara utpann twang se dimag men aaya hoga +",7,1,neutral,neutral,negative +"Corporal punishment should be banished from schools and students should be encouraged to take positive initiatives. +","स्कूलों में बच्चों को शारीरिक दण्ड देने पर रोक होनी चाहिए और विद्यार्थियों को रचनात्मक पहल करने के लिए प्रोत्साहित किया जाना चाहिए। +","schools men students ko corporal punishment dene par rok honi chahie aur vidyarthiyon ko positive initiatives karne ke lie protsahit kiya jana chahie. +",7,5,neutral,neutral,positive +"Suddenly, Uttama spotted a peculiar object lying among the coral. +","अचानक उत्तम को मूंगे की चटटानों के बीच में एक विचित्र सी चीज पडी हुई दिखाई दी। +","achanak uttam ko coral ki chattanon ke bich men ek peculiar si object lying huee dikhaee di. +",8,2,neutral,positive,negative +"Chromium is no longer updating because your operating system is obsolete. +","क्रोमियम अब और अपडेट नहीं कर रहा है क्योंकि आपका ऑपरेटिंग सिस्टम अप्रचलित है. +","chromium ab aur updating nahin kar raha hai kyonki aapka operating system aprachlit hai +",9,0,negative,negative,negative +"An elementary Hindi translation of Srimad Bhagwat Geeta. +","श्रीमद् भगवद्गीता का सरल हिन्दी मे आनुवाद +","shrimad bhagavadgita ka saral elementary hindi translation +",8,1,neutral,neutral,neutral +"Element of cost cannot be ignored while preparing a project. +","किसी परियोजना को बनाने में लागत तत्व की उपेक्षा नहीं की जा सकती। +","kisi project ko banane men cost element ki upeksha nahin ki ja sakti. +",8,3,neutral,negative,positive +"The movement holds in its embrace not only the trees of Shri Bhatt’s beloved Gharwal but all creation across the world. +","आंदोलन में न केवल श्री भट्ट के प्रिय गढ़वाल के वृक्ष बल्कि विश्वभर की सारी सृष्टि भी शामिल हैं। +","movement men n keval shri bhatt ke priy embrace ke trees balki world ki sari creation bhi shamil +",6,1,positive,neutral,positive +"Nematodes are also known as nema. +","सूत्रकृमि सूत्रक या नेमा के रूप में भी जाने जाते हैं +","nematodes sootrak ya nema ke roop men bhi jane jate hain +",9,0,neutral,neutral,neutral +"“I am a fox, ” the fox said.“ +","मैं लोमड़ी हूँ! ” लोमड़ी ने कहा। +","main fox hoon! s fox ne kaha. +",8,3,neutral,neutral,neutral +"Here's a really short text. +","यहाँ एक बहुत छोटा वाक्य है। +","yahan ek bahut short text hai. +",9,1,neutral,neutral,neutral +"Gandhiji claimed the defeat of Sitarmayya as his own defeat and told his colleagues that if they are not satisfied by Subhashbabu's methods, they can leave the Congress. +","गाँधीजी ने पट्टाभी सितारमैय्या की हार को अपनी हार बताकर अपने साथीयों से कह दिया कि अगर वें सुभाषबाबू के तरिकों से सहमत नहीं हैं तो वें कांग्रेस से हट सकतें हैं। +","gandhiji ne gandhiji claimed ki har ko apni har told his colleagues se kah diya ki agar ven leave the congress se sahamat nahin hain to ven kangres se hat sakten hain. +",3,2,negative,negative,negative +"your council's decisions on housing issues are more open and accountable to you; +","रिहाइशी मामलों के बारे में आपकी कौंसिल के फ़ैसलें अधिक सार्वजनिक होंगे और कौंसिल आपके सामने अधिक जवाब देह होगी | +","decisions issues ke bare men aapki council ke open more sarvajnik honge aur council aapke samne more javab deh hogi +",5,0,neutral,neutral,neutral +"Didn 't he conquer Bengal *? +","उसने तो बंगाल को जीत लिया था न? +","usne to bengal ko jit liya tha n +",8,1,neutral,neutral,neutral +"Let 's draw this on the number line. +","चलो यह संख्या लाइन पर आरेखित करें। +","chalo yah number line par aarekhit karen. +",8,3,neutral,neutral,positive +"The decree that the court gave was an appealable decree. +","अदालत ने जो डेक्री दी वह एक अपीलनीय डेक्री थी। +","court ne jo decree di vah ek appealable decree thi. +",9,1,neutral,negative,neutral +"21.Lovhaghat also called Iron Fort,it is one of the greatest attractions of Bharathpur. +","21. लौहागढ़ आयरन फोर्ट के रूप में भी जाना जाता है लौहागढ़ भरतपुर के प्रमुख ऐतिहासिक आकर्षणों में से एक है। +","21 fort aayaran phort ke roop men bhi jana jata hai fort bharatpur ke prmukh aetihasik aakarshnon men se ek it +",6,1,positive,neutral,positive +"Rest house means a building used for shelter by travelers. +","विश्राम गृह का अर्थ उस इमारत से होता है, जिसका प्रयोग यात्रियों द्वारा आश्रय के लिए किया जाता है। +","rest house ka arth us building se hota hai , jiska pryog travelers dvara shelter ke lie kiya jata hai. +",9,1,neutral,neutral,neutral +"For more than four decades, Gurbakhsh Singh prevailed over Punjabi journalism. +","चार दशकों से अधिक, गुरबख्श सिंह पंजाबी पत्रकारिता पर आच्छादित रहे। +","char decades se more , gurbakhsh sinh punjabi journalism par aachchhadit rahe. +",8,4,neutral,neutral,neutral +"The President of India, Shri Pranab Mukherjee has called for changing negative perceptions about women. +","भारत के राष्ट्रपति, श्री प्रणब मुखर्जी ने महिलाओं के बारे में नकारात्मक धारणाओं को बदलने का आग्रह किया। +","india ke president , shri pranab mukharji ne women ke bare men negative perceptions ko badalne ka aagrah kiya. +",9,1,neutral,negative,negative +"Sometimes, the local craftsmen also display their items for sale in this emporium. +","कभी स्थानीय शिल्पकार भी अपनी कलाकृतियों को यहां पर बेचने के लिए रख देते हैं. +","kabhi local craftsmen bhi apni kalakritiyon ko yahan par sale ke lie rakh dete hain +",8,2,neutral,neutral,neutral +"Device does not support FILTER _ SLOT property. +","उपकरण में FILTER _ SLOT गुण समर्थन उपलब्ध नहीं है. +","device men FILTER _ SLOT property samarthan upalabdh nahin hai +",7,2,negative,neutral,negative +"It is the best source of soluble fibre. +","यह घुलनशील रेशे का सर्वश्रेष्ठ स्रोत है। +","yah soluble fibre ka best source hai. +",9,1,positive,positive,positive +"God has sealed their hearts and hearing and their vision is veiled; a great punishment awaits them. +","अल्लाह ने उनके दिलों पर और कानों पर मुहर लगा दी है और उनकी आँखों पर परदा पड़ा है, और उनके लिए बड़ी यातना है +","god ne unke hearts par aur vision par muhar laga di hai aur unki aankhon par parda punishment hai , aur unke lie bari yatna hai +",6,1,negative,negative,positive +"This will be our tribute to Mahatma Gandhi on his 150th birth anniversary to be celebrated in the year 2019. +","ऐसा करना महात्मा गांधी को उनकी 150वीं जयंती पर हमारी श्रद्धांजलि होगी जो वर्ष2019 में मनाई जाएगी।’ +","aesa karna mahatma gandhi ko unki 150birth anniversary par hamari shraddhanjli hogi jo varsh2019 men manaee jaegi. +",7,4,positive,neutral,positive +"And to Thamud We sent their brother Sali 'h. He said:' My people! Serve Allah; you have no god other than Him. He brought you into being out of the earth, and has made you dwell in it. So ask Him to forgive you, and do turn towards Him in repentance. Indeed My Lord is near, responsive to prayers. +","और (हमने) क़ौमे समूद के पास उनके भाई सालेह को (पैग़म्बर बनाकर भेजा) तो उन्होंने (अपनी क़ौम से) कहा ऐ मेरी क़ौम ख़ुदा ही की परसतिश करो उसके सिवा कोई तुम्हारा माबूद नहीं उसी ने तुमको ज़मीन (की मिट्टी) से पैदा किया और तुमको उसमें बसाया तो उससे मग़फिरत की दुआ मॉगों फिर उसकी बारगाह में तौबा करो (बेशक मेरा परवरदिगार (हर शख़्श के) क़रीब और सबकी सुनता और दुआ क़ुबूल करता है +","aur serve aume samood ke pas unke brother saleh ko paimbar banakar bheja to unhonne apni people se kaha h meri people uda hi ki parastish god uske siva koee tumhara mabood nahin usi ne tumko zamin ki earth se paida kiya aur tumko usmen basaya to usse maphirat ki lord mgon phir uski bargah men repentance god responsive mera paravardigar har shash ke rib aur sabki sunta aur lord ubool karta hai +",5,1,positive,neutral,positive +"And do not be chary of pursuing them. If you suffer, they shall also suffer like you. But while you have hope (of success) from God, they have none. Surely God is all - knowing and all - wise. +","और उन लोगों का पीछा करने में सुस्ती न दिखाओ। यदि तुम्हें दुख पहुँचता है; तो उन्हें भी दुख पहुँचता है, जिस तरह तुमको दुख पहुँचता है। और तुम अल्लाह से उस चीज़ की आशा करते हो, जिस चीज़ की वे आशा नहीं करते। अल्लाह तो सब कुछ जाननेवाला, तत्वदर्शी है +","aur un logon ka pichha karne men susti n dikhao. yadi tumhen none god hai to unhen bhi none god hai , jis tarah tumko none god success aur tum knowing se us chiz ki aasha karte ho , jis chiz ki ve aasha nahin karte. knowing to chary kuchh jannevala , tatvadarshi hai +",3,3,neutral,negative,positive +"This is not even 2 feet. +","यह 2 फीट भी नही है. +","yah 2 feet bhi nahi hai +",10,0,negative,neutral,neutral +"Your local social services department will tell you about other local organisations. +","आप की लोकल कौंसिल की सेवाएं वाला विभाग आप को आप के स्थानीय समूहों के बारे में बतायेगा। +","aap ki local social ki sevaen other department aap ko aap ke sthaniy organisations ke bare men batayega. +",6,1,neutral,neutral,neutral +"In most of the Committees, public is directly or indirectly associated when memoranda containing suggestions are received. +","अधिकांश समितियों में जनता प्रत्यक्ष अथवा अप्रत्यक्ष ढ़ंग से तब संबद्ध होती है जब उनसे सुझावों संबंधी ज्ञापन प्राप्त होते हैं। +","adhikansh samitiyon public is directly athva apratyaksh ng se tab snbaddh hoti hai jab memoranda containing suggestions jnjapan prapt hote hain. +",6,0,neutral,neutral,neutral +"When Rano reached Kak at the dead of night, Natar tried to dissuade him from going up to Mumai 's chamber telling him that Mumal had taken another lover. +","जब आधी रात के समय, राणो काकमहल पहुँचा तो नातर ने उसे मूमल के कक्ष में यह कहकर जाने से मना किया कि मुमल अब और किसी से प्रेम करती है। +","jab aadhi dead of night, rano kakamahal pahuncha to natar ne use moomal ke kaksh men yah kahakar jane se mana kiya ki mumal ab aur kisi se prem karti hai. +",7,3,neutral,neutral,neutral +"The unexpected leaders were chosen in polling. +","असंभावित नेताओं को इस मतदान में चुना गया। +","unexpected leaders ko is polling men chuna gaya. +",10,0,neutral,negative,neutral +"The other two members will have knowledge and experience of special educational needs . +","बाकी के दो सदस्यों के पास या तो विशेष शैक्षिक आवश्यकताओं या स्थानीय सरकार या दोनों ही के बारे में ञान तथा अनुभव होगा . +","baki ke do sadasyon ke pas ya to special educational aavashyaktaon ya sthaniy sarkar ya donon hi ke bare knowledge and experience anubhav hoga +",6,6,neutral,neutral,positive +"So the product rules help us. +","तो उत्पाद नियम हमें मदद करते हैं। +","to product rules hamen madad karte hain. +",10,0,positive,neutral,positive +"Search all% {DRIVENAME} +","सभी% {DRIVENAME} खोजें +","sabhi DRIVENAME search +",8,3,neutral,neutral,neutral +"And having thus turned back the clock , We can regenerate the stock , Proceeding to our final goal By race , as well as birth control . +","इस प्रकार घडऋई का उलटी चलाकर , हम अपना मूल वंश पुनर्जीवित कर सकते हैं , हमारा लक्षऋ-ऊण्श्छ्ष्-य हम वांशिक रूप से तथा परिवार नियोजन से प्राप्त कर सकते हैं +","is prkar back the clock chalakar , ham apna mool vnsh punarjivit kar sakte hain , hamara lakshri-oonshchhsh-y ham final goal se tatha parivar niyojan se prapt kar sakte hain +",5,4,neutral,neutral,positive +"There is in this audience and all around us a large number of elders who are making extremely valuable contributions to our country and to our society. +","इस सभा में तथा हमारे आसपास ऐसे बहुत से वयोवृद्ध हैं जो कि हमारे देश तथा समाज के लिए बहुमूल्य सहयोग प्रदान कर रहे हैं। +","is audience men tatha large aaspas aese bahut se elders hain jo ki large country tatha samaj ke lie valuable sahyog prdan kar rahe hain. +",8,2,positive,positive,positive +"So if we get rid of the percent sign, +","इस लिए अगर हम पर्सेंटेज के निशान को हटा देते हैं तो, हम दशमलव को +","is lie agar ham percent ke nishan ko hata dete hain to, ham dashamalav ko +",8,2,neutral,negative,neutral +"Harnessing modern biology in agriculture is the need of the hour. +","कृषि में आधुनिक जीवविज्ञान का उपयोग आज की जरूरत है। +","agriculture men modern biology ka upyog need ki jaroorat hai. +",7,2,neutral,positive,neutral +"Shortly after taking up the job, he was married in 1912 to Shivdayee, with whom he was betrothed since infancy. +","काम पर लगने के शीघ्र बाद ही 1912 मे शिवदाई के साथ उनका विवाह हो गया, जिसके साथ जन्म से ही उनकी मँगनी हो चुकी जीवन 19 थी। +","job par lagne ke shighr bad hi 1912 me shivdaee ke sath unka vivah ho gaya, jiske sath janm se hi unki mngni ho chuki jivan 19 thi. +",6,5,neutral,neutral,neutral +"And in all cases we have to ask - +","और सभी मामलों में हमे पूछना है +","aur sabhi cases men hame poochhna hai +",10,0,neutral,neutral,neutral +"When they are cast into it they will hear it sighing, the while it boils +","जब वे उसमें डाले जाएँगे तो उसकी दहाड़ने की भयानक आवाज़ सुनेंगे और वह प्रकोप से बिफर रही होगी। +","jab ve usmen dale jaenge to uski daharne ki bhayanak aavaz sunenge aur vah prkop se while rahi hogi. +",4,4,neutral,neutral,neutral +"We think doodling is something you do when you lose focus, +","ऐसा माना जाता है कि डूडल करने वाले का ध्यान भंग हो चुका है, +","something mana jata hai ki focus karne vale ka dhyan bhng ho chuka hai , +",5,1,neutral,neutral,negative +"Project Manager Plugin for Anjuta. +","परियोजना प्रबंधक प्लगइन के लिए Anjuta. +","project manager plugin ke lie Anjuta +",8,1,neutral,neutral,neutral +"What quantity should be added to both sides of this equation +","क्या मात्रा इस समीकरण के दोनों पक्षों के लिए शामिल किया जाना चाहिए +","kya quantity is equation ke donon pakshon ke lie shamil kiya jana chahie +",9,2,neutral,neutral,neutral +"A typical exploitation of the horizontal instability is by tampering with regions of higher albedo like the polar ice caps. +","क्षैतिज अस्थिरता के समुपयोजन का एक प्रारुपिक उदाहरण ध्रवीय बर्फ-टोपी जैसे उच्च एल्बडो के क्षेत्र में हस्तक्षेप है। +","horizontal instability ke samupyojan ka ek prarupik udaharan dhrviy barph-topi jaise uchch elbdo ke tampering with regions hai. +",8,2,negative,neutral,positive +"The Government , therefore , decided that an amendment of the Constitution was not necessary . +","अत : सरकार ने निश्चय किया कि संविधान का संशोधन जरूरी नहीं है . +","at : government ne nishchay kiya ki constitution ka amendment necessary nahin hai +",9,0,neutral,negative,neutral +"The e-hospital and e-project programmes taken up by NIMHANS are, therefore, excellent initiatives, worthy of emulation by other institutions. +","इसलिए निमहैन्स द्वारा आरंभ किए गए ई-हास्पिटल और ई-प्रोजेक्ट कार्यक्रम उत्कृष्ट पहल हैं, अन्य संस्थाओं द्वारा अनुकरण किए जाने योग्य है। +","islie nimhains dvara aarnbh kie ge ee-haspital aur ee-projekt karyakram utkrisht pahal hain, any snsthaon dvara anukaran kie jane yogy hai. +",7,2,positive,positive,positive +"In 'Ad (also is a sign), when We sent a blasting wind against them, +","और आद में भी (तुम्हारे लिए निशानी है) जबकि हमने उनपर अशुभ वायु चला दी +","aur blasting men bhi sign lie nishani hai jabki hamne unapar wind vayu chala di +",5,3,neutral,neutral,neutral +"On top of this building there is a big tomb +","इस इमारत के ऊपर एक वृहत गुम्बद सुशोभित है। +","is imarat ke top ek big tomb sushobhit building +",7,3,neutral,neutral,positive +"A type of vein arrangement in leaf where veins run parallel to each other from the poin they strat to the end. +","पत्ती में पाया जाने वाला एक प्रकार का शिरा विन्यास जहां अपने आरंभ होने के स्थान से अंत होने के स्थान तक शिराएं एक दूसरे के समांतर होती हैं +","patti men paya jane vala ek type of vein vinyas jahan apne aarnbh hone ke sthan se ant hone ke sthan tak shiraen ek doosre ke samantar hoti hain +",6,8,neutral,neutral,neutral +"So We took retribution from them, and We drowned them in the sea because they denied Our signs and were heedless of them. +","तब आख़िर हमने उनसे (उनकी शरारत का) बदला लिया तो चूंकि वह लोग हमारी आयतों को झुटलाते थे और उनसे ग़ाफिल रहते थे हमने उन्हें दरिया में डुबो दिया +","tab signs retribution unse unki shararat ka badla liya to choonki vah log hamari aayton ko sea the aur unse heedless rahte the retribution unhen dariya men dubo diya +",4,1,negative,negative,negative +"They felt there wasn 't enough progress +","उन्होंने महसूस किया कि वहाँ पर्याप्त प्रगति नहीं थी +","unhonne wasn kiya ki vahan enough progress nahin thi +",7,2,negative,negative,positive +"Discussions in the assembly were marked by elements of purity, fairness, frankness and freedom. +","सभा में चर्चाएं स्वतंत्र, स्वच्छ एवं निर्बाध हुआ करती थीं. +","assembly men discussions svtntr , svachchh evn nirbadh huaa karti thin +",6,5,positive,neutral,positive +"In March 2010, Vice President Joe Biden, Clinton, and Obama then picked the same fight with Israel all over again, now over Jerusalem specifically. This time, the administration needed only six weeks to retreat from its foolishness, as signaled by James Jones' speech at the Washington Institute and Elie Wiesel 's lunch at the White House. +","मार्च 2010 में उपराष्ट्रपति जोय बिडेन, क्लिंटन और ओबामा ने एक बार फिर इजरायल के साथ वही संघर्ष ठान लिया और इस बार विशेष रूप से जेरुसलम के साथ। इस बार तो प्रशासन को अपनी मूर्खता से कदम वापस खींचने में केवल छह सप्ताह लगे जैसा कि वाशिंगटन इंस्टीट्यूट में जेम्स जोंस के भाषण और व्हाइट हाउस पर एली विसेल के भोजन से संकेत मिला। +","march 2010 men uprashtrapti joy biden, klintan aur obama ne ek bar phir ijrayal ke sath vahi sngharsh than liya aur is bar vishesh roop se jerusalam ke sath. is bar to prshasan ko apni moorkhta se kadam vapas khinchne men keval chhah saptah lage jaisa ki vashingatan instityoot men jems jons ke bhashan aur vhait haus par eli visel ke bhojan se snket mila. +",9,0,neutral,neutral,negative +"Select the number of horizontal video windows in which to split the video +","वीडियो विभाजित करने के लिए क्षैतिज वीडियो विंडोज़ की संख्या का चुनाव करें +","video number karne ke lie horizontal video windows ki select the number karen +",5,1,neutral,neutral,positive +"PRESIDENT OF INDIA TO INAUGURATE AN INTERNATIONAL CONVENTION ON HOMOEOPATHY TOMORROW, Rashtrapati Bhavan : 08.04.2016 +","भारत के राष्ट्रपति कल होमियोपैथी पर एक अंतरराष्ट्रीय अभिसमय का उद्घाटन करेंगे।, राष्ट्रपति भवन : 08.04.2016 +","india ke president tomorrow homoeopathy par ek international convention ka udghatan karenge. , president bhavan : 08042016 +",7,2,neutral,neutral,neutral +"Nobody knows what matter might crop up during this period or what kind of attack might be launched against the government. +","यह कोई नहीं कह सकता कि इस काल के दौरान कौन-सा मामला उठ खड़ा हो या सरकार पर किस तरह का आक्रमण कर दिया जाए. +","yah koee nahin kah sakta ki is kal ke matter might crop uth khara ho ya sarkar par kis tarah ka aakraman kar diya jae +",6,1,negative,negative,negative +"The best thing is to go to doctor to monitor the size of uterus and how much amniotic fluid is in womb. +","चिकीत्सक द्वारा गर्भाशय के आकार व कोख में स्थित उल्वद्रव की मात्रा की निगरानी की जानी चाहिये +","chikitsak dvara size of uterus v kokh men amniotic fluid ki matra ki nigrani ki jani chahiye +",8,1,neutral,neutral,positive +"Somehow or other we want something which we can touch, something which we can see, something before which we can kneel down. +","चाहे जिस कारण भी हो हम कोइ ऐसी वस्तु चाहते हैं जिसका हम स्पर्श कर सकें, जिसें देख सकें और जिसके समक्ष श्रद्धापूर्वक विनत हो सकें। +","chahe jis karan bhi ho other koi aesi vastu chahte hain jiska other sparsh kar something , jisen dekh something aur jiske samaksh shraddhapoorvak vinat ho saken. +",6,1,neutral,neutral,positive +"And their words were not but that they said, ""Our Lord, forgive us our sins and the excess [committed] in our affairs and plant firmly our feet and give us victory over the disbelieving people."" +","उन्होंने कुछ नहीं कहा सिवाय इसके कि ""ऐ हमारे रब! तू हमारे गुनाहों को और हमारे अपने मामले में जो ज़्यादती हमसे हो गई हो, उसे क्षमा कर दे और हमारे क़दम जमाए रख, और इनकार करनेवाले लोगों के मुक़ाबले में हमारी सहायता कर।"" +","unhonne kuchh nahin kaha sivay iske ki ae hamare rab! too hamare gunahon ko aur hamare apne mamle men jo zyadti hamse ho gee ho, use kshma kar de aur firmly our feet rakh, aur inkar karnevale logon ke muable men give us victory +",9,0,neutral,negative,positive +"Publication of Rashtriya Bank Srijana: +","राष्ट्रीय बैंक सृजना का प्रकाशन: +","rashtriy bank srijna ka publication: +",8,3,neutral,neutral,neutral +"Hanafi clan - its followers are in South Asia and Central Asia. +","हनफी पन्थ-इसके अनुयायी दक्षिण एशिया और मध्य एशिया में हैं। +","hanphi panth-iske anuyayi south asia aur madhy eshiya men hain. +",6,4,neutral,neutral,neutral +"In the absence of organised marketing for small agricultural products producers do not get good price realisation. +","लघु कृषि उत्पादों के लिए संगठित विद्यमान व्यवस्था के अभाव में उत्पादकों को उनकी उपज का अच्छा मूल्य नहीं मिल पाता। +","small agricultural products ke lie organised vidyman vyavastha ke absence men producers ko unki upaj ka good price nahin mil pata. +",9,2,negative,negative,negative +"The process of retaining of a rate of exchange in order to stabilise the market (generally by govt. or authority concerned). +","बाजार में स्थायित्व बनाए रखने के लिए विनिमय दरों को बनाए रखना (सामान्यतः यह कार्य सरकार या संबंधित प्राधिकृति द्वारा किया जाता है)। +","stabilise the market banae rakhne ke lie vinimay daron ko banae rakhna samanyta yah kary sarkar ya snbndhit pradhikriti dvara kiya jata hai. +",8,1,neutral,neutral,positive +"Have they not realised that God knows their secrets and their confidential talk, and that God has the knowledge of unknown things? +","क्या उन्हें खबर नहीं कि अल्लाह उनका भेद और उनकी कानाफुसियों को अच्छी तरह जानता है और यह कि अल्लाह परोक्ष की सारी बातों को भली-भाँति जानता है +","talk unhen khabar nahin ki god unka secrets aur unki kanaphusiyon ko achchhi tarah janta hai aur yah ki god unknown ki sari baton ko bhali-bhanti janta hai +",6,6,neutral,neutral,positive +"This option will connect to the server using Kerberos 5 authentication. +","Kerberos 5 सत्यापन के उपयोग से यह विकल्प सर्वर से जोड़ेगा. +","Kerberos 5 authentication ke upyog se yah option server se jorega +",9,1,neutral,neutral,neutral +"Shape actor with alpha channel when picking +","चुनने के दौरान अल्फा चैनल के साथ कर्ता को आकार दें +","chunne ke channel when picking ke sath karta ko aakar den +",6,0,neutral,neutral,neutral +"Eat of the lawful and good things God has provided for you, and be thankful for God’s blessings, if it is Him that you serve. +","फिर अज़ाब (ख़ुदा) ने उन्हें ले डाला और वह ज़ालिम थे ही तो ख़ुदा ने जो कुछ तुम्हें हलाल तय्यब (ताहिर) रोज़ी दी है उसको (शौक़ से) खाओ और अगर तुम खुदा ही की परसतिश (का दावा करते हो) +","phir azab uda ne unhen le dala aur vah zalim the hi to uda ne jo kuchh tumhen halal tayyab tahir rozi di hai good things se khao aur agar tum khuda hi ki parastish ka dava karte ho +",7,1,positive,positive,positive +"When composite tender is invited for various types of works / activities. +","जब विविध प्रकार के कार्यों के लिए एक ही संयुक्त टेन्डर जारी किया जाता हो। +","jab activities types of works ke lie ek hi composite tender jari kiya jata ho. +",7,4,neutral,neutral,neutral +"Nominal check of the attendance is advisable. +","उपस्थिति की नाममात्र जांच उचित है। +","attendance ki nominal check advisable hai. +",9,1,neutral,neutral,neutral +"(b) where the marriage of his parents does not subsist, in the net wealth of that parent who maintains the minor child in the previous year as defined in section 3 of the Income-tax Act, and where any such assets are once included in the net wealth of either parent, any such assets shall not be included in the net wealth of the other parent in any succeeding year unless the Assessing Officer is satisfied, after giving that parent an opportunity of being heard, that it is necessary so to do ; +","(ख) जहां उसके माता या पिता का विवाह अस्तित्व में नहीं है वहां उस माता या पिता के शुद्ध धन में सम्मिलित की जाएंगी जिसने आय-कर अधिनियम की धारा 3 में परिभाषित पूर्ववर्ष में अवयस्क संतान का भरणपोषण किया है, और जहां ऐसी कोर्इ आस्तियां माता या पिता में से किसी एक के शुद्ध धन में एक बार सम्मिलित कर ली जाती हैं वहां ऐसी कोर्इ आस्तियां, किसी उत्तरवर्ती वर्ष में माता या पिता में से किसी अन्य के शुद्ध धन में तब तक सम्मिलित नहीं की जाएंगी जब तक निर्धारण अधिकारी का, उस माता या पिता को सुनवार्इ का अवसर देने के पश्चात्, यह समाधान नहीं हो जाता है कि ऐसा करना आवश्यक है; +","kh jahan uske mata ya pita ka vivah astitv men nahin hai vahan us mata ya pita ke shuddh dhan men sammilit ki jaengi jisne aay-kar adhiniyam ki dhara 3 men paribhashit poorvavarsh men avayask sntan ka bharanposhan kiya hai, aur jahan aesi kori aastiyan mata ya pita men se kisi ek ke shuddh dhan men ek bar sammilit kar li jati hain vahan aesi kori aastiyan, kisi uttaravarti varsh men mata ya pita men se kisi any ke shuddh dhan men tab tak sammilit nahin ki jaengi jab tak nirdharan adhikari ka, us mata ya pita ko sunvari ka avasar dene ke pashchat, yah samadhan nahin ho jata hai ki aesa karna aavashyak hai +",4,6,neutral,negative,positive +"The whole film proceeds with computer graphics and animated figures. +","कंप्यूटर ग्राफिक्स और एनिमेटेड आंकड़े के साथ पूरी फिल्म आय. +","computer graphics aur animated aankare ke sath whole film proceeds +",7,6,neutral,neutral,neutral +"A reward from your Lord, a gift according to a reckoning: +","(ये) तुम्हारे परवरदिगार की तरफ से काफ़ी इनाम और सिला है +","ye tumhare lord ki taraph se kafi reward aur sila hai +",9,0,positive,neutral,positive +"It has been called Chhath because of fast of Suryashashthi. +","मूलतः सूर्य षष्ठी व्रत होनेके कारण इसे छठ कहा गया है। +","moolta soory shashthi vrat honeke karan ise chhath kaha gaya hai. +",9,2,neutral,neutral,neutral +"His life and the lives of those nearest and dearest to him would be forfeit if he refused to do the bidding of his lord. +","अगर अपने राजा की बात को मानने से इन्कार करता है तो उसके तथा उसके निकट संबंधियों की जान जाती है। +","agar apne raja ki bat ko manne se inkar karta hai to uske tatha uske lives snbndhiyon ki life jati lord +",5,5,negative,negative,positive +"He also recalled the insinuation made the other day by Haran about Binoy. +","विनय के बारे में हारान बाबू उस दिन जो इशारा कर गये थे, वह भी उन्हें याद आया। +","vinay ke bare men haran baboo us din jo ishara kar gaye the, vah bhi unhen yad aaya. +",9,1,neutral,neutral,neutral +"Do not be like those who, after they had been given clear evidence, split into factions and differed among themselves: a terrible punishment awaits such people. +","तुम उन लोगों की तरह न हो जाना जो विभेद में पड़ गए, और इसके पश्चात कि उनके पास खुली निशानियाँ आ चुकी थी, वे विभेद में पड़ गए। ये वही लोग है, जिनके लिए बड़ी (घोर) यातना है। (यह यातना उस दिन होगी) +","awaits such people ki tarah n ho jana jo vibhed men par ge, aur iske pashchat ki unke pas clear evidence aa chuki thi, ve vibhed men par ge. ye vahi log hai, jinke lie bari ghor yatna hai. yah yatna us din hogi +",5,4,negative,negative,negative +"This movement was a plan to mobilize the support of the governments of Afghanistan and Turkey in organizing a revolt within India to overthrow the British rule. +","यह आंदोलन वास्तव में, अंग्रेजों के शासन का तख्ता पलटने के लिए भारत के अंदर विद्रोह को आयोजित करने में अफगानिस्तान और तुर्की की सरकारों का समर्थन हासिल करने की एक योजना थी। +","yah movement vastav men , british ke rule ka takhta palatne ke lie india ke andar revolt ko aayojit karne men afghanistan aur turkey ki governments ka support hasil karne ki ek plan thi. +",8,0,neutral,neutral,positive +"Said he, 'My Lord, respite me till the day they shall be raised.' +","उसने कहा, ""ऐ मेरे रब! फिर तू मुझे उस दिन तक के लिए मुहल्लत दे, जबकि लोग (जीवित करके) उठाए जाएँगे।"" +","usne kaha, ae mere rab! phir too mujhe us day tak ke lie muhallat de, jabki log jivit karke uthae till +",8,4,positive,neutral,neutral +"smallest absolute value, at which the normal line can +","छोटी से छोटी निरपेक्ष मूल्य, जिस पर सामान्य लाइन कर सकते हैं +","smallest se smallest absolute value , jis par normal line kar sakte hain +",7,0,neutral,positive,positive +"He was elected president of the Muslim Conference formed in October, 1932. +","उन्हें अक्तूबर 1932 में स्थापित मुस्लिम कांफ्रेस का अध्यक्ष भी बनाया गया। +","unhen october 1932 men sthapit muslim conference ka president bhi banaya gaya. +",9,1,neutral,neutral,neutral +"The Madras High Court was a pioneer in the enrolment of women. +","मद्रास उच्च न्यायालय महिलाओं के प्रवेश में भी अग्रणी रहा। +","madras high court enrolment of women men bhi agrni raha. +",7,3,positive,neutral,neutral +"The chiefs of those who disbelieved among his people said: we behold thee except as a human being like us, and we behold not any follow thee except the meanest of us, by an immature opinion; nor We behold in you any exellency over us; nay! we deem you liars. +","इसपर उसकी क़ौम के सरदार, जिन्होंने इनकार किया था, कहने लगे, ""हमारी दृष्टि में तो तुम हमारे ही जैसे आदमी हो और हम देखते है कि बस कुछ ऐसे लोग ही तुम्हारे अनुयायी है जो पहली स्पष्ट में हमारे यहाँ के नीच है। हम अपने मुक़ाबले में तुममें कोई बड़ाई नहीं देखते, बल्कि हम तो तुम्हें झूठा समझते है।"" +","isapar uski aum ke sardar , jinhonne inkar kiya tha , kahne lage , hamari drishti men to follow hamare hi jaise aadmi ho aur ham thee hai ki bas kuchh aese people hi tumhare anuyayi hai jo pahli spasht men hamare yahan ke opinion chiefs ham apne muable men tummen koee baraee nahin thee , balki ham to tumhen jhootha samajhte chiefs +",8,2,negative,negative,negative +"To some extent , Farooq is nervous about the ongoing secret talks between the Hurriyat and Delhi 's non-official negotiators . +","फारूक ह्र्रियत और दिल्ली के गैर-सरकारी वार्ताकारों के बीच चलती बातचीत से कुछ बेचैन हैं . +","farooq hurriyat aur delhi ke gair-sarkari extent ke bich chalti talks se kuchh nervous hain +",7,5,neutral,neutral,negative +"Goods sent on consignment basis remain in possession and custody of the consignee. +","परेषण-आधार पर भेजा गया माल परेषिती के सुरक्षा व धारिता में रहता है। +","pareshan-aadhar par bheja gaya mal pareshiti ke suraksha v dharita men rahta hai. +",6,6,neutral,neutral,neutral +"he was arrested while aboard on an unregistered ship +","उसे एक अपंजीकृत जहाज के फलक पर गिरफ्तार किया गया +","use ek unregistered ship ke phalak par arrested kiya gaya +",7,2,neutral,negative,negative +"Please enter a float value > =% 1 +","कृपया एक फ्लोट मूल्य भरें> =% 1 +","kripya ek float value bharen 1 +",9,0,neutral,neutral,positive +"they've calculated that Congo may have lost +","उसने यह अनुमान लगाया है कि कोंगों का नुकसान +","usne yah anuman lagaya hai ki congo ka nuksan +",8,0,neutral,negative,negative +"But, with respect to potassic fertilizers, there are no known commercially exploitable reserves of potash in the country and the entire requirement of these fertilizers is met through imports. +","परन्तु पोटाश उर्वरक के संबंध में देश में पोटाश का कोई दोहन करने योग्य ज्ञात भंडार नहीं है और इन उर्वरकों की समस्त आवश्यकताएं आयात के माध्यम से पूरी की जाती हैं। +","parantu potassic entire ke respect men country men potassic ka koee exploitable karne yogy jnjat reserves nahin hai aur in fertilizers ki samast requirement imports ke madhyam se poori ki jati hain. +",8,0,neutral,negative,positive +"1. This does not function within defined time frame. +","1. ये नियमित अंतराल से काम नहीं करती है +","1 ye niymit defined time frame nahin karti hai +",6,2,negative,negative,neutral +"because we can say one hundred will go into seven hundred and twenty - three. +","क्योंकि हम कह सकते हैं एक सौ सात सौ और बीस-तीन में जाना होगा। +","kyonki ham kah sakte hain ek sau sat sau aur bis-tin men jana hoga. +",5,3,neutral,neutral,neutral +"C _ heck for new messages in all folders +","सभी फ़ोल्डर में नये संदेश के लिये जांचें (_ h) +","sabhi folders men naye messages ke liye janchen _ h +",7,1,negative,neutral,neutral +"Among the principal 'infant' industries of this period mention must be made of sugar, paper, and matches. +","छोटे छोटे शिशु उद्योग इस समय के मुखऋ-ऊण्श्छ्ष्-य शिशु उद्योगों में चीनी, कागज और दियासलाऋ की चर्चा की जा सकती है. +","chhote chhote shishu udyog is period ke mukhri-oonshchhsh-y shishu industries men sugar , paper aur principal ki mention ki ja sakti hai +",8,3,neutral,neutral,neutral +"The Congress called the plan 'preposterous'. +","कांग्रेस ने योनजा को ‘असंगत’ कहा। +","congress ne yonja ko asngat called +",8,2,negative,neutral,neutral +"Presence of excess ammount of uric acid in the urine. +","मूत्र में यूरिक एसिड मे उपलब्ध अत्यधिक मात्रा। +","urine men uric presence me upalabdh excess matra. +",7,1,neutral,negative,neutral +"You know, my work is inspired +","आप जानते हैं, मेरा काम प्रभावित है +","aap jante hain , mera work prbhavit hai +",8,2,positive,positive,positive +"So We inspired him: “Build the Ark under Our observation and by Our inspiration. And when Our decree comes to pass, and the oven boils over, load into it two pairs of every kind, together with your family, except those of them against whom the word has already been pronounced. And do not speak to me concerning those who did wrong; for they are to be drowned. ” +","तब हमने उसकी ओर प्रकाशना की कि ""हमारी आँखों के सामने और हमारी प्रकाशना के अनुसार नौका बना और फिर जब हमारा आदेश आ जाए और तूफ़ान उमड़ पड़े तो प्रत्येक प्रजाति में से एक-एक जोड़ा उसमें रख ले और अपने लोगों को भी, सिवाय उनके जिनके विरुद्ध पहले फ़ैसला हो चुका है। और अत्याचारियों के विषय में मुझसे बात न करना। वे तो डूबकर रहेंगे +","tab hamne uski or inspiration ki ki ark aankhon ke kind aur ark inspiration ke anusar nauka family aur phir jab hamara decree aa jae aur toofan umar pare to pairs prjati men se ek-ek jora usmen load le aur apne logon ko bhi , sivay unke jinke viruddh pahle faisla ho chuka hai. aur atyachariyon ke vishay men mujhse word n karna. ve to doobakar rahenge +",6,2,neutral,positive,positive +"They repeated their demand that the nuclear missiles on the earth must be defused and destroyed. +","उन्होने अपनी मांग को दोहराया कि पृथ्वी के नाभिकीय प्रक्षेपणास्त्रों को बेकार और नष्ट कर दिया जाए। +","unhone apni demand ko dohraya ki earth ke nuclear prakshepnastron ko bekar aur nasht kar diya jae. +",9,0,negative,negative,negative +"A preliminary outline of a proposal, speech, book, presentation. +","किसी प्रस्ताव, भाषण, पुस्तक अथवा प्रस्तुतिकरण इत्यादि के लिए तैयार किया गया प्रारम्भिक खाका/प्रारूप। +","kisi proposal, speech, book athva presentation ityadi ke lie taiyar kiya gaya prarambhik khakapraroop. +",8,1,neutral,neutral,neutral +"about the kid who got this paper. +","उस बच्चे के विषय में जिसे यहपत्र मिला. +","us kid ke vishay men jise paper mila +",8,1,neutral,neutral,neutral +"These laboratories have a total annual analyzing capacity of 1. 31 lakh samples. +","इन प्रयोगशालाओं में वर्ष में 1.31 लाख नमूनों की जांच करने की क्षमता है। +","in laboratories men total men 131 lakh samples ki janch karne ki capacity hai. +",8,1,neutral,neutral,neutral +"Late Puranchandra Gupta never allowed any power to force him into restricting his freedom of press. +","स्वर्गीय पूरनचन्द्र गुप्ता कभी भी अपने समाचारपत्र साम्न्त बनने की अपनी इच्छाशक्ति से नहीं डगमगाए। +","svargiy pooranachandr gupta kabhi bhi apne samacharapatr samnt banne ki apni ichchhashakti se nahin dagamgae. +",7,3,neutral,negative,positive +"things that didn 't quite exist physically like insurance, stocks and bonds, enterprise softwares, +","चीजें हैं जो काफी शारीरिक रूप से मौजूद नहीं था बीमा, स्टॉक्स और बांड्स, उद्यम सॉफ्टवेयर की तरह, +","things hain jo kaphi sharirik roop se maujood nahin tha insurance, stks aur bonds, udyam sphtveyar ki tarah, +",6,5,neutral,neutral,positive +"Traditionally, welding has been used as a means of fabrication. +","पारम्परिक रूप से वेल्डिंग को विनिर्माण के साधन के रूप में उपयोग किया गया है। +","paramprik roop se velding ko vinirman ke sadhan ke roop men upyog kiya gaya hai. +",7,3,neutral,neutral,neutral +"We can talk to him as soon as we know that Binoy Babu is willing. +","विनय बाबू-राज है, यह जानकर ही तो उनसे कहूँगी। +","binoy baboo-raj hai , yah janakar hi to unse kahoongi. +",6,3,neutral,neutral,neutral +"He listened to the wind, and felt the stones beneath his feet. +","उसे हवा की आवाज सुनाई दी और पैरों के नीचे पत्थर भी महसूस हुए। +","use wind ki aavaj sunaee di aur feet ke niche stones bhi mahsoos hue. +",10,0,neutral,neutral,neutral +"Have you got your cord with you? +","तुम्हारे पास अपनी डोरी है न। +","tumhare pas apni cord hai n. +",7,1,neutral,neutral,neutral +"Motions, though they cover a variety of proceedings of the House, fall into three principal categories namely, Substantive Motions, Substitute Motions, and Subsidiary Motions. +","यद्यपि प्रस्ताव सदन की विभिन्न कार्यवाहियों से संबंधित होते हैं तथापि उन्हें तीन प्रमुख श्रेणियों में रखा जा सकता है, अर्थात मूल (सब्सटेंटिव) प्रस्ताव, स्थानापन्न (सबस्टीट्यूट) प्रस्ताव और सहायक (सब्सीडियरी) प्रस्ताव. +","yadypi prastav sadan ki vibhinn karyvahiyon se snbndhit hote hain tathapi unhen tin prmukh shreniyon men rakha ja sakta hai, arthat mool sabstentiv prastav, sthanapann sabastityoot prastav aur sahayak sabsidiyri prastav +",4,6,neutral,neutral,neutral +"In our Milky Way alone, there are 40, 000 crore stars. +","केवल हमारी आकाशगंगा में ही 40,000 करोड़ सितारे है। +","keval way milky men hi 40,000 crore stars hai. +",8,3,neutral,neutral,negative +"If you choose to create a new empty project, the file selection will be discarded. +","यदि आप नई रिक्त परियोजना बनाने के लिए चुनते हैं, सभी फ़ाइल चयन नष्ट हो जाएंगे. +","yadi aap nee empty project banane ke lie chunte hain, sabhi file selection nasht ho jaenge +",7,1,negative,neutral,negative +"Failed to get folder properties:% s +","फ़ोल्डर विशेषता पाने में विफलः% s +","folder properties pane men viphla s +",8,0,negative,neutral,negative +"44 year old JNU is well known in India and abroad as a University with a ‘difference’. +","44 वर्ष पुराना जवाहरलाल नेहरू विश्वविद्यालय भारत और विदेश में एक ‘अलग’ तरह के विश्वविद्यालय के रूप में सुविख्यात है। +","44 varsh purana javaharlal nehroo vishvvidyalay bharat aur videsh men ek alag tarah ke vishvvidyalay ke roop men suvikhyat hai. +",8,3,neutral,neutral,positive +"Is Taj Mahal in realty the Temple of Lord Shiva? +","क्या ताजमहल वास्तव में शिव मंदिर है? +","taj mahal vastav realty the temple hai +",7,0,neutral,neutral,neutral +"In last six decades, the poverty ratio has declined from over 60 per cent to less than 30 per cent. +","जबकि निर्मूलन समयबद्ध लक्ष्य। पिछले छह दशकों में गरीबी का अनुपात 60 प्रतिशत से अधिक की पिछली दर से कम होकर30प्रतिशत से नीचे आ चुका है। +","jabki nirmoolan samayabaddh lakshy. pichhle chhah decades men poverty ka ratio 60 cent se adhik ki last dar se less hokar30prtishat se niche aa chuka hai. +",4,5,neutral,negative,negative +"(4A) 59Every person in receipt of income derived from property held under trust or other legal obligation wholly for charitable or religious purposes or in part only for such purposes, or of income being voluntary contributions referred to in sub-clause (iia) of clause (24) of section 2, shall, if the total income in respect of which he is assessable as a representative assessee (the total income for this purpose being computed under this Act without giving effect to the provisions of sections 11 and 12) exceeds the maximum amount which is not chargeable to income-tax, furnish a return of such income of the previous year in the prescribed form and verified in the prescribed manner and setting forth such other particulars as may be prescribed and all the provisions of this Act shall, so far as may be, apply as if it were a return required to be furnished under sub-section (1). +","(4क) पूर्णतः पूर्त या धार्मिक प्रयोजन के लिए या भागतः ऐसे प्रयोजनों के लिए न्यास या अन्य विधिक बाध्यता के अधीन धारित सम्पत्ति से उद्भूत आय, या धारा 2 के खंड (24) के उपखंड (iiक) में निर्दिष्ट स्वैच्छिक अभिदाय के रूप में आय प्राप्त करने वाला हर व्यक्ति, यदि वह सकल आय, जिसकी बाबत वह प्रतिनिधि निर्धारिती के रूप में निर्धारणीय है, (इस प्रयोजन के लिए सकल आय धारा 11 और 12 के उपबंधों को लागू किए बिना इस अधिनियम के अधीन संगणित की जाएगी) उस अधिकतम रकम से अधिक है जो आय-कर से प्रभार्य नहीं है, तो विहित प्ररूप में और विहित रीति में सत्यापित करके और ऐसी अन्य विशिष्टियां देते हुए, जो विहित की जाएं, पूर्ववर्ष की ऐसी आय की विवरणी देगा और इस अधिनियम के सभी उपबंध, यथाशक्य, इस प्रकार लागू होंगे मानो वह उपधारा (1) के अधीन दिए जाने के लिए अपेक्षित विवरणी हो। +","4k poornta poort ya dharmik pryojan ke lie ya bhagta aese pryojnon ke lie nyas ya any vidhik badhyta ke adhin dharit sampatti se udbhoot aay, ya dhara 2 ke khnd 24 ke upkhnd iik men nirdisht svaichchhik abhiday ke roop men aay prapt karne vala har vyakti, yadi vah sakal aay, jiski babat vah prtinidhi nirdhariti ke roop men nirdharniy hai, is pryojan ke lie sakal aay dhara 11 aur 12 ke upbndhon ko lagoo kie bina is adhiniyam ke adhin sngnit ki jaegi us adhikatam rakam se adhik hai jo aay-kar se prbhary nahin hai, to vihit prroop men aur vihit riti men satyapit karke aur aesi any vishishtiyan dete hue, jo vihit ki jaen, poorvavarsh ki aesi aay ki vivarni dega aur is adhiniyam ke sabhi upbndh, yathashaky, is prkar lagoo honge mano vah updhara 1 ke adhin die jane ke lie apekshit vivarni ho. +",7,3,neutral,negative,positive +"There were errors trying to start the X server. +","एक्स सर्वर प्रारंभ करने की कोशिश में त्रुटियाँ हुईं. +","eks sarvar prarnbh karne ki koshish men trutiyan hueen +",8,1,negative,negative,negative +"breast cancer, for the love of Lebanon, for peace, +","स्तन कैंसर, लेबनान के प्यार के लिए, शांति के लिए, +","breast cancer, love of lebanon ke lie, peace ke lie, +",9,0,neutral,neutral,positive +"The sikhara on top also appears to have been square. +","ऊपर शिखर भी वर्गाकार रहा होगा. +","oopar sikhara bhi square raha hoga +",9,1,neutral,neutral,positive +"And most surely of the followers of the Book there are those who believe in Allah and (in) that which has been revealed to you and (in) that which has been revealed to them, being lowly before Allah; they do not take a small price for the communications of Allah; these it is that have their reward with their Lord; surely Allah is quick in reckoning. +","और अहले किताब में से कुछ लोग तो ऐसे ज़रूर हैं जो ख़ुदा पर और जो (किताब) तुम पर नाज़िल हुई और जो (किताब) उनपर नाज़िल हुई (सब पर) ईमान रखते हैं ख़ुदा के आगे सर झुकाए हुए हैं और ख़ुदा की आयतों के बदले थोड़ी सी क़ीमत (दुनियावी फ़ायदे) नहीं लेते ऐसे ही लोगों के वास्ते उनके परवरदिगार के यहॉ अच्छा बदला है बेशक ख़ुदा बहुत जल्द हिसाब करने वाला है +","aur ahle kitab men se kuchh log to aese zaroor hain jo uda par aur jo kitab tum par nazil huee aur jo kitab unapar nazil huee sab par eeman rakhte hain uda ke aage sar jhukae hue hain aur uda ki aayton ke small price si imat duniyavi fayde nahin lete aese hi logon ke vaste unke paravardigar ke yah achchha badla hai beshak uda bahut jald hisab karne vala hai +",5,6,neutral,neutral,positive +"A helicopter has also been provided to Ministry of Home Affairs in the North - East for VIP transportation. +","अतिविशिष्ट व्यक्तियों (वी. आई. पी.) के इस्तेमाल के लिए गृह मंत्रालय को पूर्वोत्तर क्षेत्र हेतु हेलीकॉप्टर उपलब्ध कराया गया है। +","ativishisht vyaktiyon vi aaee pi ke istemal ke lie home ministry ko north kshetr hetu helikptar upalabdh karaya gaya hai. +",7,1,neutral,neutral,positive +"If proper training is made available, however, teachers will have a new and valuable approach to the development of the physical, mental and emotional needs of the child. +","यदि इसे अध्यापकों के प्रशिक्षण का अनिवार्य अंग मान लिया जाए, तो हम बच्चों को शारीरिक, मानसिक तथा भावनात्मक आवश्कयताओं की पूर्ति के लिए, अध्यापकों को एक नया और मूल्यवान साधन दे पाएंगे। +","yadi ise adhyapkon ke training is made ang man liya jae, to ham bachchon ko sharirik, mental and emotional aavashkaytaon ki poorti ke lie, adhyapkon ko ek naya aur moolyvan sadhan de paenge. +",7,0,positive,neutral,positive +"And remember Our servants Ibrahim and Ishaq and Yaqoub, men of power and insight. +","और (ऐ रसूल) हमारे बन्दों में इबराहीम और इसहाक़ और याकूब को याद करो जो कुवत और बसीरत वाले थे +","aur servants rasool hamare bandon men ibrahim aur ishaq aur yakoob ko yad karo jo power aur insight vale the +",8,0,positive,neutral,neutral +"So from A, we look at the neighbors of A. The neighbors of A are B and C. +","इसलिए A से, हम ए के पड़ोसियों में देखो B और c. A के पड़ोसी हैं +","islie A se, ham e ke parosiyon men dekho B aur c A ke parosi hain +",6,4,neutral,neutral,neutral +"Snow leopard hunts blue sheep in the Himalayas. +","हिम तेंदुआ हिमालय में नीली भेड़ का शिकार करता है। +","snow leopard himalayas men blue sheep ka hunts karta hai. +",7,1,neutral,neutral,neutral +"The location “% s” does not exist. +","स्थान “% s” मौज़ूद नहीं है. +","location s exist nahin hai +",8,2,negative,neutral,neutral +"Soon he was seeking terms with the British. +","शीग्र ही मानसिंह अंग्रेजों के साथ सौदे बाजी करने तात्या टोपे लगा। +","shigr hi mansinh british ke sath terms baji karne tatya tope laga. +",7,1,neutral,neutral,neutral +"Could not rename '% s' to% s:% s +","`% s 'का% s यह पुनर्नामकरण नहीं कर सकाः% s +","s ka s yah punarnamakaran nahin kar sakaa s +",4,7,negative,negative,neutral +"""What was it that brought you to Hell?"" +","""तुम्हे क्या चीज़ सकंर (जहन्नम) में ले आई?"" +","tumhe kya chiz saknr jahannam men le aaee +",8,3,neutral,neutral,negative +"You have made changes to this memo, but not yet saved them. +","आपने इस ज्ञापन में परिवर्तन किया है लेकिन अबतक सहेजा नहीं है. +","aapne is memo men changes kiya hai lekin abatak saheja nahin hai +",9,0,negative,neutral,negative +"Didn 't he conquer Bengal *? +","उसने तो बंगाल को जीत लिया था न? +","usne to bengal ko didn liya tha n +",6,6,neutral,neutral,neutral +"Error verifying signature:% s +","हस्ताक्षर प्रमाणित करते समय त्रुटिः% s +","signature prmanit karte samay error s +",9,2,negative,neutral,negative +"Rules for grant of leave to the employees of All India Services due to special disability. +","अखिल भारतीय सेवा के कर्मचारियों को विशेष निशक्तता के कारण छुट्टी देने के लिए नियम। +","india bhartiy services ke employees ko special due ke karan rules grant ke lie niyam. +",7,3,neutral,neutral,positive +"'After this clear explanation, I never referred to the subject again. +","” इतनी स्पष्ट बातचीत होनेके बाद दुबारा मैंने यह विषय डोकके सामने कभी नहीं छेड़ा। +","itni clear batchit honeke bad dubara mainne yah subject dokke samne explanation nahin chhera. +",6,2,neutral,neutral,positive +"Sucharita shut the kitchen door noisily and sank to the floor, bursting into sobs. +",">> सुचरिता ने धड़ाके से रसोई का दरवाज़ा बन्द कर दिया और फर्श पर बैठ गई। +","suchrita ne dharake se shut the kitchen band kar diya aur pharsh par baith gee. +",6,1,negative,neutral,negative +"We've driven from San Francisco to Los Angeles on Highway 1. +","हमने इसे हाईवे 1 पर सैन फ्रांसिस्को से लॉस एंजेलेस तक चलाया है +","hamne ise haeeve 1 par san phransisko se ls enjeles tak chalaya hai +",7,3,neutral,neutral,neutral +"have shown that people who punish cheaters in economic games +","दिखाया है कि जो लोग लेन-देन वाले खेलों में धोखेबाज़ों को सज़ा देते हैं, +","shown hai ki jo people len-den vale economic games people who punish dete hain, +",4,1,neutral,negative,negative +"Somehow or other we want something which we can touch, something which we can see, something before which we can kneel down. +","चाहे जिस कारण भी हो हम कोइ ऐसी वस्तु चाहते हैं जिसका हम स्पर्श कर सकें, जिसें देख सकें और जिसके समक्ष श्रद्धापूर्वक विनत हो सकें। +","chahe jis karan bhi ho ham koi aesi vastu chahte hain jiska ham sparsh kar saken, jisen dekh saken aur jiske samaksh shraddhapoorvak vinat ho saken. +",9,0,neutral,neutral,positive +"learned the correct initial state for the 17 - bit LFSR, we will have also +","सही प्रारंभिक राज्य सीखा 17-बिट LFSR के लिए, हम भी करना होगा +","correct initial state learned 17-bit LFSR ke lie, ham bhi karna hoga +",9,2,neutral,neutral,neutral +"Another revolutionary ' action ' which took place a few months earlier also deserves notice . +","एक और क्रांतिकारी कार्यवाही भी , जो कुद महीनों पहले की गई थी , घ्यानाकर्षक है . +","ek aur revolutionary action bhi , jo months earlier pahle ki gee thi , place hai +",6,2,neutral,neutral,neutral +"1. Not formed by the decided number. +","1. निर्धारित संख्या मे गठन नहीं हुआ +","1 decided number me formed nahin huaa +",8,3,neutral,neutral,positive +"An institution which provides academic education +","ऐसी संस्था जो शात्रीय शिक्षा उपलब्ध कराती है +","aesi institution jo academic education upalabdh karati hai +",8,3,neutral,neutral,neutral +"They taste not death therein, save the first death. And He hath saved them from the doom of hell, +","वहाँ पहली दफ़ा की मौत के सिवा उनको मौत की तलख़ी चख़नी ही न पड़ेगी और ख़ुदा उनको दोज़ख़ के अज़ाब से महफूज़ रखेगा +","vahan first dafa ki death ke hell unko death ki therein chani hi n paregi aur uda unko doza ke azab se mahphooz rakhega +",5,0,neutral,neutral,negative +"Dump texture atlas changes to an image file +","एटलस के संरचना को छवि फाइल में बदल कर डंप करें +","atlas ke texture ko image file men badal kar dump karen +",8,3,neutral,neutral,negative +"Issuer:% s Subject:% s Fingerprint:% s Signature:% s +","निर्गमकः% s विषयः% s फिंगरप्रिंटः% s हस्ताक्षरः% s +","issuer s vishya s fingerprint s signature s +",8,1,neutral,neutral,neutral +"A revelation from the Beneficent, the Merciful Allah: +","यह अवतरण है बड़े कृपाशील, अत्यन्त दयावान की ओर से, +","yah revelation hai bare kripashil, atyant dayavan ki or se, +",9,1,positive,neutral,positive +"he takes a nap in the afternoon, and I got to go. +","वे दोपहर में सोते हैं, और मुझे ज़रूरी जाना है. +","ve afternoon men sote hain, aur mujhe zaroori jana hai +",8,0,neutral,neutral,neutral +"And among them are some that say, “Our Lord! Give us good in the world and good in the Hereafter, and save us from the punishment of fire! ” +","और बाज़ बन्दे ऐसे हैं कि जो दुआ करते हैं कि ऐ मेरे पालने वाले मुझे दुनिया में नेअमत दे और आख़िरत में सवाब दे और दोज़ख़ की बाग से बचा +","aur baz bande aese hain ki jo duaa karte hain ki ae mere palne vale mujhe duniya men neamat de aur aairat men savab de aur punishment of fire se bacha +",5,6,positive,positive,positive +"To some extent , Farooq is nervous about the ongoing secret talks between the Hurriyat and Delhi 's non-official negotiators . +","फारूक ह्र्रियत और दिल्ली के गैर-सरकारी वार्ताकारों के बीच चलती बातचीत से कुछ बेचैन हैं . +","pharook hrriyat aur dilli ke gair-sarkari ongoing secret talks chalti batchit se kuchh bechain hain +",5,5,neutral,neutral,negative +"The movement holds in its embrace not only the trees of Shri Bhatt’s beloved Gharwal but all creation across the world. +","आंदोलन में न केवल श्री भट्ट के प्रिय गढ़वाल के वृक्ष बल्कि विश्वभर की सारी सृष्टि भी शामिल हैं। +","aandolan men n keval shri bhatt ke priy gaval ke vriksh balki vishvabhar ki sari srishti bhi shamil hain. +",5,8,positive,neutral,positive +"(18) ""company in which the public are substantially interested""a company is said to be a company in which the public are substantially interested— +","(18) ''वह कंपनी जिसमें जनता पर्याप्त हितबद्ध है''- किसी कंपनी को ऐसी कंपनी, जिसमें जनता82 पर्याप्त रूप से हितबद्ध है, तब कहा जाता है जब– +","18 vah knpni jismen public are substantially hai- kisi knpni ko aesi knpni, jismen janta82 paryapt roop se hitabaddh hai, tab kaha jata hai jab +",6,4,neutral,neutral,neutral +"Wait until we are told to show the window before executing the command +","कमांड चलाने से पहले इंतजार करें जब तक कि विंडो दिखाने के लिए कहा जाए +","command chalane se pahle wait karen jab tak ki window show ke lie kaha jae +",9,0,neutral,neutral,neutral +"Honestly - I was the same for a long time. +","मैं भी एक ज़माने मैं अनजान था. +","main bhi ek zamane main anjan tha +",5,8,neutral,neutral,positive +"Everything was in motionup and down and sideways and forwards. +","हर चीज हरकत में थी-ऊपर, नीचे, दायें, बायें, सामने। +","everything chij harakat men thi-oopar , niche , dayen , bayen , samne. +",8,0,neutral,neutral,neutral +"But it won 't be as good as Johan. +","लेकिन मम्मी वह जोहान जैसा अच्छा तो नहीं होगा। +","lekin mammi vah johan jaisa good to nahin hoga. +",8,1,negative,positive,positive +"It is today a premier organization for industry, trade and service sectors in Karnataka. +","आज यह कर्नाटक के उद्योग,व्यापार तथा सेवा क्षेत्र का एक प्रमुख संगठन है। +","today yah karnataka ke industry , vyapar tatha service kshetr ka ek premier organization hai. +",7,4,positive,positive,neutral +"Alaukik Laukikata Formality with a Supernatural Touch is one of his most remarkable stories of this period. +","इस दौर में लिखी माणिक की एक अद्वितीय कहानी है अलौकिक लौकिकता। +","is daur men likhi manik ki ek remarkable stories hai alaukik laukikta. +",9,2,positive,positive,positive +"Despite this ugly record, the U. S. government widely accepts CAIR as representing Islam. The White House invites it to functions, the State Department links to its Web page and Democratic senators rely on its research. In New York City, the mayor appoints its general counsel to the Human Rights Commission and the police department hosts its “sensitivity training” seminar. In Florida, public schools invite it to teach “diversity awareness. ” +","इस कुरूप रिकार्ड के बाद भी अमेरिका सरकार सी. ए. आई. आर को व्यापक रूप से इस्लाम को प्रतिनिधि मानती है। व्हाइट हाउस इसे कार्यक्रमों में बुलाता है, राज्य विभाग ने इसके वेब पृष्ठों के लिंक दिये हैं और डेमोक्रेट सीनेटर इसके शोध पर निर्भर करते हैं। न्यूयार्क शहर में इसके सदस्य को मानवाधिकार आयोग में नियुक्त किया जाता है और पुलिस इसके संवेदनशील प्रशिक्षण की निगरानी करती है। +","is sensitivity record ke bad bhi public government cair e aaee aar ko general roop se islam ko prtinidhi manti page white haus ise karyakrmon men bulata hai , rajy department ne iske web prishthon ke links diye hain aur democratic senators iske research par nirbhar karte hain. nyooyark shahar men iske sadasy ko manvadhikar commission men niyukt kiya jata hai aur police iske diversity training ki nigrani karti page +",7,3,neutral,neutral,positive +"If proper training is made available, however, teachers will have a new and valuable approach to the development of the physical, mental and emotional needs of the child. +","यदि इसे अध्यापकों के प्रशिक्षण का अनिवार्य अंग मान लिया जाए, तो हम बच्चों को शारीरिक, मानसिक तथा भावनात्मक आवश्कयताओं की पूर्ति के लिए, अध्यापकों को एक नया और मूल्यवान साधन दे पाएंगे। +","yadi ise teachers ke training ka anivary child man liya needs , to ham bachchon ko physical , mental tatha bhavnatmak aavashkaytaon ki poorti ke lie , teachers ko ek new aur valuable sadhan proper paenge. +",6,3,positive,neutral,positive +"It was difficult not to think about what he had left behind. +","जो कुछ वह पीछे छोड़कर आया है, उसके बारे में एकदम कुछ न सोचना उसके लिए बहुत मुश्किल था। +","jo kuchh vah pichhe chhorakar aaya hai , uske bare men ekadam kuchh n sochna uske lie bahut difficult tha. +",5,6,negative,negative,negative +"The knife was used by the guide as a weapon. +","गाइड द्वारा एक हथियार के रूप में चाकू का इस्तेमाल किया गया था। +","guide dvara ek weapon ke roop men knife ka istemal kiya gaya tha. +",9,2,neutral,neutral,negative +"Elsewhere, he expressed surprise over the ‘symptoms of of utter confusion in its value system’ displayed by the Indian society in a period of change. +","अन्यत्र, उन्होंने भारतीय समाज द्वारा बदलते हुए समय के साथ ""अपनी मूल्य व्यवस्था में नितांत भ्रम के लक्षणों"" के प्रति आश्चर्य प्रकट किया। +","anyatr , indian society dvara badalte hue period ke sath apni value system men utter confusion ke symptoms ke prti surprise prakat kiya. +",8,2,negative,neutral,positive +"You shall not attain righteousness until you spend out of what you love (in the way of Allah). Allah knows whatever you spend. +","तुम नेकी और वफ़ादारी के दर्जे को नहीं पहुँच सकते, जब तक कि उन चीज़ो को (अल्लाह के मार्ग में) ख़र्च न करो, जो तुम्हें प्रिय है। और जो चीज़ भी तुम ख़र्च करोगे, निश्चय ही अल्लाह को उसका ज्ञान होगा +","tum neki aur vafadari ke darje ko nahin pahunch sakte, jab tak ki un chizo ko allah ke marg men rch n karo, jo tumhen priy hai. aur jo chiz bhi tum rch karoge, nishchay hi allah ko uska jnjan hoga +",8,1,neutral,neutral,positive +"But they had not been sent as guardians over them. +","हालाँकि वे उनपर कोई निगरानी करनेवाले बनाकर नहीं भेजे गए थे +","halanki ve unapar koee guardians karnevale banakar nahin bheje ge the +",9,1,neutral,neutral,neutral +"The doctor proscribed smoking in the waiting room of his clinic. +","डॉक्टर ने अपने क्लिनिक के प्रतीक्षा कक्ष में धूम्रपान की सख्त मनाही कर दी। +","doctor ne apne clinic ke prtiksha room men smoking ki sakht manahi kar di. +",9,2,neutral,neutral,neutral +"It was karthik month when the candle was lit +","कार्तिक मास की सघन काली अमावस्या की वह रात्रि दीयों की रोशनी से जगमगा उठी। +","month mas ki saghan kali amavasya ki vah ratri candle was lit se jagamga uthi. +",5,3,neutral,neutral,neutral +"In a Message, the President has said: +","एक संदेश में राष्ट्रपति ने कहा हैः +","ek message men president ne kaha haia +",7,3,neutral,neutral,neutral +"% 1 has left this channel (% 2). +","(% 1)% 2 ने इस चैनल को छोड़ा. (% 3) +","1 2 ne is channel ko chhora 3 +",6,3,neutral,neutral,negative +"So my question is, if it can be done in Europe, +","तो मेरा प्रश्न है, कि यदि ये यूरोप में किया जा सकता है, +","to mera question hai , ki yadi ye europe men kiya ja sakta hai , +",8,3,neutral,neutral,neutral +"In March 2010, Vice President Joe Biden, Clinton, and Obama then picked the same fight with Israel all over again, now over Jerusalem specifically. This time, the administration needed only six weeks to retreat from its foolishness, as signaled by James Jones' speech at the Washington Institute and Elie Wiesel 's lunch at the White House. +","मार्च 2010 में उपराष्ट्रपति जोय बिडेन, क्लिंटन और ओबामा ने एक बार फिर इजरायल के साथ वही संघर्ष ठान लिया और इस बार विशेष रूप से जेरुसलम के साथ। इस बार तो प्रशासन को अपनी मूर्खता से कदम वापस खींचने में केवल छह सप्ताह लगे जैसा कि वाशिंगटन इंस्टीट्यूट में जेम्स जोंस के भाषण और व्हाइट हाउस पर एली विसेल के भोजन से संकेत मिला। +","march 2010 men vice joe biden , clinton aur obama ne ek president phir jerusalem ke sath same fight than weeks aur is president vishesh roop se jerusalam ke sath. is president to administration ko apni foolishness se kadam jones khinchne men keval chhah saptah house jaisa ki washington institute men james jons ke speech aur white haus par elie wiesel ke bhojan se snket mila. +",6,3,neutral,neutral,negative +"Acharya Ramchandra Sukal has written about Surdas- in the field of parental affection so much Surdas has written with close eyes, no other poet has done so much. +","सूरदास के बारे में आचार्य रामचंद्र शुक्ल ने लिखा है- वात्सल्य के क्षेत्र में जितना अधिक उद्धाटन सूर ने अपनी बंद आँखों से किया इतना किसी ओर कवि ने नहीं। +","surdas has written men aachary ramchndr shukl ne likha hai- vatsaly ke kshetr men jitna adhik uddhatan soor ne apni bnd aankhon se kiya itna kisi or kavi ne nahin. +",3,5,neutral,neutral,positive +"The Cyber City is operational since then. +","यह साइबर सिटी तभी से चालू है। +","yah cyber city tabhi se chaloo operational +",6,1,neutral,neutral,neutral +"where the entire revenue of the Afghan state +","जहां अफगान राज्य का पूरा राजस्व +","jahan aphgan state ka poora revenue +",5,9,neutral,neutral,neutral +"This excessive amount of skin cells form the skin lesions of psoriasis. +","यही अधिकाधिक त्वचा कोशिकाओं का झड़ाव त्वचा पर छालरोग के घाव पैदा कर देता है। +","yahi adhikadhik skin cells ka jharav tvcha par lesions of psoriasis paida kar deta hai. +",7,3,negative,negative,neutral +"You may bring up to two witnesses to the hearing . +","आप अधिक से अधिक सुनवाई में दो गवाह ला सकते हैं . +","aap adhik se adhik hearing men do witnesses la sakte hain +",9,2,neutral,neutral,neutral +"Computers which are connected by internet can do exchange of their information through rules of internet. +","अंतरजाल से जुडे हुए संगणक आपस मे अंतरजाल नियमावली () के जरिए सूचना का आदान-प्रदान करते है। +","computers se jude hue snganak exchange me computers rules ke jarie information ka aadan-prdan karte hai. +",6,3,neutral,neutral,neutral +"There were the usual speeches, garlanding and so on. +","उसमें, सामान्यतः जैसा होता है, मालाएं पहनाई गई और भाषण आदि हुए। +","usmen, usual jaisa hota hai, malaen pahnaee gee aur speeches aadi hue. +",7,2,neutral,neutral,neutral +"In France, the news of one deed spreads like a flash and brings some pride to a disillusioned people. +","फ्रांस में इस एक कारनामे की खबर बिजली की तरह फैल जाती है और लोग भ्रम से मुक़्त होकर गर्व महसूस करते हैं. +","phrans men is ek flash and brings bijli ki tarah phail jati hai aur disillusioned people se mut hokar garv mahsoos karte hain +",6,0,neutral,positive,positive +"You will be more likely to give up before the 30 minutes elapse compared to you. +","आप लोगों के छोड़ने की सम्भावना, आप लोगों से ज्यादा है। +","aap logon ke chhorne ki sambhavna, aap logon se jyada hai. +",8,4,negative,neutral,neutral +"Toggle display of the status bar. +","स्थिति पट्टी का प्रदर्शन टॉगल करें. +","status bar ka display toggle karen +",7,3,neutral,neutral,neutral +"An Iranian government - sponsored radio station gleefully predicts that its brand of militant Islam within the United States will “provoke a dangerous and crucial confrontation” with the American authorities. +","ईरानी सरकार द्वारा प्रायोजित एक रेडियो स्टेशन ने अत्यंत प्रसन्नतापूर्वक भविष्यवाणी की कि उसके प्रकार का उग्रवादी इस्लाम अमेरिका में अमेरिकी अधिकारियों के साथ महत्वपूर्ण और खतरनाक संघर्ष को प्रोत्साहित कर देगा। +","iranian government dvara sponsored ek radio station ne crucial prasanntapoorvak bhavishyvani ki ki uske brand ka militant islam united men ameriki authorities ke sath mahatvpoorn aur dangerous confrontation ko protsahit kar dega. +",8,1,negative,negative,negative +"The pumping system draws water from the open well, bore well, stream, pond, canal etc. +","पम्पिंग प्रणाली जल को खुले कुएं, बोरवेल, जल-धारा, तालाब, नहर आदि से खींचती है। +","pumping system water ko open kuen , borvel , jal-dhara , pond , canal aadi se draws hai. +",8,0,neutral,neutral,positive +"(a) expenditure in connection with— +","(क) निम्नलिखित के संबंध में व्यय– +","expenditure nimnlikhit ke connection men vyay +",7,0,neutral,neutral,neutral +"Color to draw the Marcus Bains Line in the Time bar (empty for default). +","Marcus Bains Line को समय पट्टी में दिखाने के लिए रंग (तयशुदा रूप से खाली). +","Marcus Bains Line ko time bar men dikhane ke lie color default roop se marcus +",8,2,neutral,neutral,negative +"These dealt with matters arising during periods of the first and second Emergencies proclaimed in 1962 and 1971. +","इनका संबंध उन मामलों से था जो 1962 और 1971 में उदघोषित आपात उपबंध पहले और दूसरे आपातो के दौरान पैदा हुए। +","inka first un matters se tha jo 1962 aur 1971 men udghoshit emergencies upbndh pahle aur doosre aapato ke dauran periods hue. +",6,0,neutral,neutral,neutral +"It was presented to the Legislative Council in 1856 and was passed in 1860. +","इसे 1856 में विधायी परिषद के समक्ष प्रस्तुत किया गया और1860 में पारित किया गया। +","ise 1856 men legislative council ke samaksh prastut kiya gaya aur1860 men parit kiya gaya. +",8,1,neutral,neutral,neutral +"how where they think the flag had been changes +","कैसे वो सोचते हैं कि कहाँ फ्लैग बदल गया है +","kaise vo sochte hain ki kahan flag badal gaya hai +",9,1,neutral,neutral,neutral +"It is a great pleasure for me to visit the Kofi Annan Centre of Excellence in ICT. +","आईसीटी में कोफी अन्नान सेंटर ऑफ एक्सीलेंस में व्याख्या करना मेरे लिए एक आनंददायक अनुभूति है। +","ict men kofi annan centre ऑph eksilens men vyakhya karna mere lie ek pleasure anubhooti great +",7,2,positive,neutral,positive +"If this option is checked, every new view will display marks for code folding, if code folding is available. +","यदि यह विकल्प चुना जाता है, हर नया दृश्य कोड फोल्डिंग के मार्क्स दिखाएगा, यदि कोड फोल्डिंग उपलब्ध है. +","yadi yah option is checked hai, har naya drishy code folding ke display marks, yadi code folding upalabdh hai +",6,2,neutral,neutral,neutral +"Third, Islamism has historic and philosophic ties to Marxism-Leninism. Sayyid Qutb, the Egyptian Islamist thinker, accepted the Marxist notion of stages of history, only adding an Islamic postscript to them; he predicted that an eternal Islamic era would come after the collapse of capitalism and Communism. Ali Shariati , the key intellectual behind the Iranian revolution of 1978-79, translated Franz Fanon, Che Guevara, and Jean-Paul Sartre into Persian. More broadly, the Iranian analyst Azar Nafisi observes that Islamism “takes its language, goals, and aspirations as much from the crassest forms of Marxism as it does from religion. Its leaders are as influenced by Lenin, Sartre, Stalin, and Fanon as they are by the Prophet.” +","तीसरा, ऐतिहासिक रूप से इस्लामवाद का मार्क्सवाद और लेनिनवाद से ऐतिहासिक और दार्शनिक सम्बन्ध है। मिस्र के इस्लामवादी चिंतक सैयद कुत्ब ने इतिहास के मार्क्सवादी विकास के चरण की अवधारणा को स्वीकार किया था और इसे मात्र इस्लामी स्वरूप दिया और उन्होंने भविष्यवाणी की थी कि पूँजीवाद और कम्युनिज्म के पतन के उपरांत शाश्वत इस्लामी युग आयेगा। 1978-79 की ईरानी क्रांति के पीछे प्रमुख बौद्धिक व्यक्ति अली शरियाती ने चे गुवेरा, फ्रांज फानोन और जीन पाल सार्टर का फारसी में अनुवाद किया था। इससे भी विस्तृत रूप में ईरानी विश्लेषक अजार नफीसी ने पाया कि इस्लामवाद, “ अपनी भाषा, उद्देश्य और प्रेरणा मार्क्सवाद के नाजुक स्वरूप से लेता है जितना कि यह धर्म से। इसके नेता लेनिन, सार्टेर , स्टालिन और फैनोन से भी प्रभावित हैं जैसे पैगम्बर से”। +","third , forms roop se islamism ka marxism aur leninvad se forms aur philosophic ties hai. egyptian ke islamist thinker sayyid kutb ne history ke marxist vikas ke stages ki notion ko svikar kiya tha aur ise matr islamic svroop diya aur unhonne bhavishyvani ki thi ki capitalism aur kamyunijm ke collapse ke leaders eternal islamic era aayega. 1978-79 ki iranian revolution ke pichhe key intellectual vyakti ali shariati ne che qutb , translated sartre aur jin pal sartar ka pharsi men anuvad kiya tha. isse bhi vistrit roop men iranian analyst azar naphisi ne paya ki islamism , apni language , uddeshy aur prerna marxism ke najuk svroop se leta hai jitna ki yah religion se. iske neta lenin , sarter , stalin aur phainon se bhi prbhavit hain jaise prophet se . +",8,0,neutral,negative,positive +"The rate of interest charged on cash credit and overdraft is relatively much higher than the rate of interest on bank deposits +","नकदी ऋण और ओवरड्राफ्ट पर प्रभावित ब्याज दर बैंक जमा की दर से अपेक्षाकृत बहुत अधिक होती है। +","cash rin aur overdraft par prbhavit interest rate bank credit ki rate se apekshakrit bahut much hoti hai. +",5,1,neutral,negative,positive +"Proctosigmoidoscopy is a very important instrument used by the doctor for examining the disease. +","मलाशय-अवग्रहांत्रदर्शन रोगों की जांच के लिए चिकित्सक द्वारा प्रयोग किया जाने वाला एक बहुत ही महत्वपूर्ण उपकरण है. +","malashay-avagrhantradarshan disease ki janch ke lie doctor dvara pryog kiya jane vala ek bahut hi important instrument hai +",6,4,neutral,neutral,positive +"And establish prayer and give zakah and obey the Messenger - that you may receive mercy. +","नमाज़ का आयोजन करो और ज़कात दो और रसूल की आज्ञा का पालन करो, ताकि तुमपर दया की जाए +","namaz ka aayojan prayer aur zakah do aur rasool ki aajnja ka palan prayer , taki tumapar mercy ki jae +",6,2,neutral,neutral,positive +"The Type of Service (TOS) byte on outgoing RTP IP packets. This byte is used by the network to provide some level of Quality of Service (QoS). Default value 184 (0xB8) corresponds to Expedited Forwarding (EF) PHB as defined in RFC 3246. +","आउटगोइंड RTP IP पैकेट पर सेवा प्रकार (TOS). इस बाइट को संजाल के द्वारा समान स्तर की सेवा गुणवत्ता (QoS) देने के लिए प्रयोग की जाती है. तयशुदा मान 184 (0xB8) एक्सपेडीडेट फॉर्रवार्डिंग (EF) PHB के तदनुरूप है जैसा कि RFC 3246 में परिभाषित है. +","tos RTP ef packets par service type TOS is byte ko network ke dvara saman level ki service gunavatta QoS dene ke lie pryog ki jati hai default value 184 0xB8 corresponds forwarding EF PHB ke tadnuroop hai jaisa ki RFC 3246 men paribhashit hai +",7,2,neutral,neutral,positive +"If you smoke you are two and half times more likely to have a heart attack than a non smoker . +","यदि आप सिग्रेट पीते हैं , तो धूम्रपान न करने के वाले के स्थान पर आप को ढाई गुना अधिक दिल का दऔरा पड़ने की सभृभावना है . +","yadi aap smoke pite hain , to dhoomrpan n karne ke vale ke sthan par aap ko half times adhik dil ka daura parne ki sabhribhavna hai +",8,2,negative,neutral,positive +"It is the pivot on which the political system of the country revolves . +","यह वह धुरी है , जो देश के राजनीतिक व्यवस्था की नींव है . +","yah vah pivot hai , jo country ke political system ki ninv hai +",8,1,neutral,negative,neutral +"Common software for accounting has been finalised by NABARD and sent to 20 States for implementation. +","लेखांकन के लिए कॉमन सॉफ्टवेयर को नाबार्ड द्वारा अंतिम रूप दिया गया और इसे कार्यान्वयन के लिए 20 राज्यों को भेज दिया गया है. +","accounting ke lie common software ko nabard dvara antim roop diya gaya aur ise karyanvayan ke lie 20 states ko bhej diya gaya hai +",8,0,neutral,neutral,neutral +"Kalpana was the first Indian born woman to fly into space and she was the second person of Indian origin to go into space. +","कल्पना जी अंतरिक्ष में उड़ने वाली प्रथम भारत में जन्मी महिला थीं और अंतरिक्ष में उड़ाने वाली भारतीय मूल की दूसरी व्यक्ति थीं। +","kalpna ji fly into space vali pratham bharat woman to fly thin aur antriksh men urane vali bhartiy mool ki doosri vyakti thin. +",7,1,neutral,neutral,neutral +"A drainage basin is an extent of land. +","मैले की द्रोणी जमीन के अंत में होती है। +","drainage ki basin land ke ant men hoti extent +",7,1,neutral,neutral,neutral +"Disability and Housing Policy housingpolicy_disability@detr.gov.uk +","अपंग और रिहाइश के बारे में नीति housingpolicy_disability@detr.gov.uk +","apng aur housing ke bare men policy housingpolicy_disabilitydetrgovuk +",7,6,neutral,neutral,neutral +"&Always Open Files of This Type +","इस प्रकार की फ़ाइलें &हमेशा खोलें +","is type ki files open kholen +",6,2,neutral,neutral,neutral +"Checking for installed package '% s' +","संस्थापित संकुल '% s' के लिए जाँच रहा है +","installed package s ke lie checking raha hai +",7,3,neutral,neutral,neutral +"The more mature the clinician , the more expert will be his physical examination . +","डाक़्टर जितना अनुभवी होगा उसके द्वारा की गयी शारीरिक जांच भी उतनी ही सटीक होगी . +","mature jitna anubhvi hoga uske dvara ki gayi physical examination bhi utni hi satik hogi +",6,2,neutral,neutral,positive +"It starts off at i and it just keeps digging itself deeper and deeper +","यह मैं पर बंद शुरू होता है और यह सिर्फ ही गहरी और गहरी खुदाई रहता है +","yah main par bnd starts hota hai aur yah sirph hi deeper aur digging itself deeper hai +",7,1,negative,neutral,neutral +"For example, in Silicon Valley, ethnic Indian technopreneurs form a significant constituency. +","उदाहरण के लिए सिलिकॉन घाटी में पारम्पफरिक भारतीय तकनीकी उद्यमी द्वारा एक महत्वलपूर्ण क्षेत्र रचित किया गया है। +","udaharan ke lie silicon valley men parampaphrik bhartiy takniki udymi dvara ek mahatvalpoorn kshetr rachit kiya gaya hai. +",7,3,neutral,neutral,positive +"Were this true, science as an accurate, dependable and useful branch of knowledge would not have been possible; nature would have been all chaos and confusion; there would have been no permanent laws to discover, no fixed relationship between one fact or event and another; and past experiences would not have been able to give guidance to actions of man. +","यदि यह सच होता तो विज्ञान ज्ञान की एक यथार्थ, विश्वसनीय और उपयोगी शाखा नहीं होती; प्रकृति में चारों तरफ अव्यवस्था और भ्रम व्याप्त होता; खोजने के लिए कोई स्थायी नियम होते और न ही एक दूसरे तथ्यों, एक दूसरी घटनाओं के बीच कोई निश्चित संबंध होते; और न ही पिछले अनुभवों से मनुष्य को अपने कार्यों के लिए कोई मार्गदर्शन मिलता। +","yadi yah true hota to science knowledge ki ek accurate , dependable aur useful branch nahin hoti nature men charon taraph chaos aur confusion vyapt hota khojne ke lie koee permanent laws hote aur n hi ek doosre tathyon , ek doosri event ke possible koee nishchit relationship hote aur n hi past experiences se man ko apne actions ke lie koee guidance milta. +",9,2,negative,neutral,negative +"When it is said to them, ""Believe in that which Allah has sent down,"" they say, ""We believe only in that which has been sent to us"", and reject everything else, though it is the Truth and confirms what is with them. Well, ask them, ""If you sincerely believed in what was sent down to you, why did you kill the Messengers of Allah (who were sent to you from amongst yourselves)? +","और जब उनसे कहा गया कि (जो क़ुरान) खुदा ने नाज़िल किया है उस पर ईमान लाओ तो कहने लगे कि हम तो उसी किताब (तौरेत) पर ईमान लाए हैं जो हम पर नाज़िल की गई थी और उस किताब (कुरान) को जो उसके बाद आई है नहीं मानते हैं हालाँकि वह (क़ुरान) हक़ है और उस किताब (तौरेत) की जो उनके पास है तसदीक़ भी करती है मगर उस किताब कुरान का जो उसके बाद आई है इन्कार करते हैं (ऐ रसूल) उनसे ये तो पूछो कि तुम (तुम्हारे बुर्जुग़) अगर ईमानदार थे तो फिर क्यों खुदा के पैग़म्बरों का साबिक़ क़त्ल करते थे +","aur jab unse kaha gaya ki jo uran khuda ne nazil kiya hai us par eeman lao to kahne lage ki everything to usi allah tauret par eeman lae hain jo everything par nazil ki gee thi aur us allah kuran ko jo uske bad yourselves hai nahin mante hain halanki vah uran ha hai aur us allah tauret ki jo unke pas hai tasdi bhi karti hai magar us allah kuran ka jo uske bad yourselves hai inkar karte hain ae rasool unse ye to poochho ki tum tumhare burju agar eemandar the to phir kyon khuda ke paimbron ka sabi tl karte the +",7,1,neutral,neutral,negative +"Static economy will dislocate all the developmental plans. +","स्थिर अर्थव्यवस्था सभी विकासात्मक योजनाओं को अस्त-व्यस्त कर देगी। +","static economy sabhi developmental plans ko ast-vyast kar degi. +",10,0,negative,negative,neutral +"Please fill in empty pile first. +","कृपया खाली ढेर को पहले भरें. +","please empty pile ko pahle fill +",8,2,neutral,neutral,positive +"Automatic limit for rows in a join when using - safe - updates - safe - updates +","का उपयोग करते समय ज्वाइन में स्वतः पंक्ति-गणना को सीमित करे. +","ka upyog karte samay jvain automatic limit limit for rows kare +",6,0,neutral,neutral,positive +"Under the Act, the Controller - General of Patents, Designs and Trade Marks under Department of Industrial Policy and promotion, Ministry of Commerce and Industry is the Controller of Designs. +","अधिनियम के तहत, महानियंत्रक, पेटेंट, डिज़ाइन और ट्रेड मार्क वाणिज्यय एवं उद्योग मंत्रालय, औद्योगिक नीति एवं प्रवर्तन विभाग के अंतर्गत डिज़ाइनों का नियंत्रक है। +","adhiniyam ke tahat, mahaniyntrak, petent, designs and trade mark vanijyay evn udyog mntralay, audyogik policy and promotion vibhag ke antargat dizainon ka niyntrak hai. +",5,5,neutral,neutral,neutral +"For this reason first he went to Brahma samaaj but his mind was not happy there. +","इस हेतु वे पहले ब्रह्म समाज में गए किंतु वहाँ उनके चित्त को संतोष नहीं हुआ। +","is reason ve pahle brahm samaj men ge kintu vahan unke samaaj ko sntosh nahin huaa. +",7,1,negative,neutral,negative +"Detracter, spreader abroad of slanders, +","कचोके लगाता, चुग़लियाँ खाता फिरता हैं, +","kachoke spreader , chuliyan slanders phirta hain , +",3,4,negative,neutral,neutral +"Indian states ranking by media exposure +","मीडिया की पहुँच के आधार पर भारत के राज्य +","media ki exposure ke ranking par indian states ranking +",7,2,neutral,neutral,neutral +"It enables the company to adopt a stable dividend policy +","इससे कंपनी की लाभांश नीति को स्थिरता मिलती है। +","isse company ki dividend policy ko stable milti hai. +",7,4,positive,neutral,positive +"The following rules have been notified under the Environment Protection Act, 1986: i Manufacture, Storage and Import of Hazardous Chemicals, 1989; ii Hazardous Wasles Management and Handling Rules, 1989; and iii Manufacture, Use, Import, Export and Environment Storage of Hazardous Micro - organisms / Genetically Engineered Organisms or Cell, 1989 and iv Biomedical Waste Rules, 1998. +","इन गतिविधियों को चलाने के लिए पर्यावरण संरक्षण अधिनियम, 1986 के अंतर्गत निम्नलिखित नियम अधिसूचित किए गए हैं: 1 खतरनाक रसायनों का उत्पादन, भंडारण तथा आयात नियम, 1989:2 खतरनाक अपशिष्ट पदार्थ प्रबंध तथा हैंडलिंग नियम-1989:3 खतरनाक सूक्ष्म जीव/आनुवांशिकी इंजीनियरी जन्य जीवों अथवा कोशिकाओं का उत्पादन, उपयोग, निर्यात एवं आयात तथा भंडारण नियम 1989: और 4 जैव-चिकित्सा अपशिष्ट नियम, 1998। +","in gatividhiyon ko chalane ke lie environment protection act, 1986 ke antargat nimnlikhit niyam adhisoochit kie ge hain: 1 khatarnak rasaynon ka utpadan, bhndaran tatha aayat niyam, 1989:2 khatarnak apshisht padarth prbndh tatha haindling niyam-1989:3 khatarnak sookshm jivaanuvanshiki injiniyri jany jivon athva koshikaon ka utpadan, upyog, niryat evn aayat tatha bhndaran niyam 1989: aur 4 jaiv-chikitsa apshisht niyam, 1998. +",6,5,neutral,neutral,negative +"The Budget is presented with a Budget Speech which is , in fact , one of the most important speeches in Parliament . +","बजट पेश करते हुए बजट भाषण दिया जाता है जो वास्तव में संसद में सबसे महत्वपूर्ण भाषणों में से एक होता है . +","budget fact karte hue budget speech diya jata hai jo vastav men parliament men sabse important bhashnon men se ek hota hai +",7,1,positive,neutral,positive +"Click here to restore hidden windows. +","छुपे विंडोज़ पुनर्स्थापित करने हेतु यहां क्लिक करें. +","restore hidden windows karne hetu yahan klik karen +",8,2,neutral,neutral,positive +"Eat of the lawful and good things God has provided for you, and be thankful for God’s blessings, if it is Him that you serve. +","फिर अज़ाब (ख़ुदा) ने उन्हें ले डाला और वह ज़ालिम थे ही तो ख़ुदा ने जो कुछ तुम्हें हलाल तय्यब (ताहिर) रोज़ी दी है उसको (शौक़ से) खाओ और अगर तुम खुदा ही की परसतिश (का दावा करते हो) +","phir azab god ne unhen eat dala aur vah good the hi to god ne jo kuchh tumhen lawful tayyab thankful s di hai usko shau se khao aur agar tum khuda hi ki parastish ka dava karte ho +",6,1,positive,positive,positive +"The blisters break, leaving tender ulcers (sores) that may take two to four weeks to heal the first time they occur. +","फफोले फूट जाते हैं और नरम फुंसिया रह जाती हैं जिन्हें ठीक होने में दो से चार सप्ताह लग जाते हैं। ऐसा पहली बार होता है। +","blisters break jate hain aur naram phunsiya rah jati hain jinhen time they occur do se char saptah lag jate hain. aesa pahli bar hota hai. +",7,2,negative,neutral,neutral +"Accessory products are to be purchased. +","होत्पादन को खरीदा जाने वाला है। +","hotpadan ko products jane accessory hai. +",3,3,neutral,neutral,neutral +"I can't find my provider and I wish to enter it manually: +","मैं अपने प्रदाता नहीं ढूँढ़ सकता हूँ और मैं इसे दस्ती रूप से दाखिल करना चाहता हूँ (m): +","i apne provider nahin dhoon sakta hoon aur i ise dasti roop se dakhil karna chahta hoon m : +",6,4,negative,neutral,positive +"Unable to build an audio track list. +","एक ऑडियो ट्रैक सूची की रचना करने में असमर्थ! +","ek audio track list ki rachna karne men unable! +",9,2,negative,neutral,neutral +"I do not feel unnecessarily elated in a happy situation and do not despair in moments of troubles and tragedies. +","मैं प्रसन्नता वाली स्थिति में असाधारण रूप से उल्लसित नहीं होती और मुसीबतों तथा दुखद परिस्थितियों में निराश नहीं हो जाती। +","i happy vali situation men asadharan roop se ullsit nahin hoti aur troubles tatha moments paristhitiyon men nirash nahin ho jati. +",7,1,neutral,neutral,negative +"As the first woman from India to clinch this Grand Slam title,you have set a new benchmark of success for Tennis players that will inspire the youth of India, especially women. +","इस ग्रांड स्लाम खिताब को जीतने वाली भारत की पहली महिला के रूप में आपने टेनिस के खिलाड़ियों के लिए सफलता का एक नया कीर्तिमान स्थापित कर दिया है जो भारत के युवाओं,खासकर महिलाओं को प्रेरित करेगा। +","is grand slam khitab ko jitne vali india ki first woman ke roop men aapne tennis ke players ke lie success ka ek new kirtiman sthapit kar diya hai jo india ke youth , khasakar women ko prerit karega. +",9,2,positive,positive,positive +"Candytuft is mostly cultivated for ornamental purposes. +","चांदी टफ या कैंडीटफ्ट मुख्यत सजावटी उद्देश्यों के लिए उगाए जाते हैं +","chandi taph ya kainditapht mukhyat ornamental purposes ke lie ugae jate hain +",8,2,neutral,neutral,neutral +"Your local social services department will tell you about other local organisations. +","आप की लोकल कौंसिल की सेवाएं वाला विभाग आप को आप के स्थानीय समूहों के बारे में बतायेगा। +","aap ki lokal local social services vala vibhag aap ko aap ke local organisations ke bare men batayega. +",7,1,neutral,neutral,neutral +"It gives me great pleasure to address this distinguished gathering of business participants. Other than working on business deals, such events are important platforms for deepening mutual engagement and interaction, and providing an opportunity to think creatively about ways to develop the potential of our relationship. +","मुझे व्यापार प्रतिभागियों के इस विशिष्ट समूह को संबोधित करते हुए अत्यंत प्रसन्नता हो रही है। व्यापार सौदों पर कार्य करने के अलावा, ऐसे समारोह परस्पर सम्बन्ध और बातचीत में घनिष्ठता लाने तथा अपने रिश्तों की संभावनाएं पैदा करने के तरीकों के बारे में रचनात्मक ढंग से विचार करने के महत्त्वपूर्ण मंच होते हैं। +","mujhe vyapar prtibhagiyon ke is vishisht samooh ko snbodhit karte hue atynt prasannta ho rahi hai. vyapar saudon par kary karne ke alava, aese samaroh paraspar sambandh aur batchit men ghanishthta lane tatha apne rishton ki snbhavnaen paida karne ke tarikon ke bare men rachnatmak dhng se vichar karne ke mahattvpoorn mnch hote hain. +",7,3,positive,positive,positive +"You can select one or more devices. +","आप एक या अधिक उपकरण चुन सकते हैं. +","aap ek ya more devices chun sakte hain +",9,1,neutral,neutral,neutral +"Can 't pass document URIs to a' Type = Link 'desktop entry +","दस्तावेज़ URI को 'Type = Link' डेस्कटॉप प्रविष्टि में भेज नहीं सकता है +","pass URI ko Type type deskatp entry men uris nahin sakta hai +",5,6,negative,neutral,neutral +"Ardhendu Mustafi 's habit of teaching without discrimination endeared him to his fellow men. +","बिना भेदभाव के सिखाने वाले अपने स्वभाव के कारण अर्धेन्दु मुस्तफी अपने सहकर्मियों में लोकप्रिय थे। +","bina discrimination ke sikhane vale apne habit ke karan ardhendu mustphi apne fellow men lokapriy the. +",8,3,positive,negative,neutral +"But there's another way, and I leave you with this. +","पर एक और तरीका है, और मैं आपको बता कर जा रही हूँ। +","par ek aur tarika hai, aur main aapko bata kar ja rahi hoon. +",9,1,neutral,neutral,negative +"And do not approach the orphan 's property except in a way that is best until he reaches maturity. And give full measure and weight in justice. We do not charge any soul except [with that within] its capacity. And when you testify, be just, even if [it concerns] a near relative. And the covenant of Allah fulfill. This has He instructed you that you may remember. +","""और अनाथ के धन को हाथ न लगाओ, किन्तु ऐसे तरीक़े से जो उत्तम हो, यहाँ तक कि वह अपनी युवावस्था को पहुँच जाए। और इनसाफ़ के साथ पूरा-पूरा नापो और तौलो। हम किसी व्यक्ति पर उसी काम की ज़िम्मेदारी का बोझ डालते हैं जो उसकी सामर्थ्य में हो। और जब बात कहो, तो न्याय की कहो, चाहे मामला अपने नातेदार ही का क्यों न हो, और अल्लाह की प्रतिज्ञा को पूरा करो। ये बातें हैं, जिनकी उसने तुम्हें ताकीद की है। आशा है तुम ध्यान रखोगे +","aur anath ke dhan ko hath n lagao, kintu aese tarie se jo uttam ho, yahan tak ki vah apni yuvavastha ko pahunch jae. aur insaf ke sath poora-poora napo aur taulo. ham kisi vyakti par usi kam ki zimmedari ka bojh dalte hain jo uski samarthy men ho. aur jab bat kaho, to nyay ki kaho, chahe mamla apne natedar hi ka kyon n ho, aur allah ki prtijnja ko poora karo. ye baten hain, jinki usne tumhen takid ki hai. aasha hai tum dhyan rakhoge +",4,7,neutral,neutral,positive +"An effective regulatory and legal framework is indispensable for the proper and sustained growth of the company. +","कंपनी की उचित तथा स्थाथयी संवृद्धि के लिए एक प्रभावपूर्ण विनियामक तथा कानूनी ढांचा अपरिहार्य है। +","effective ki proper tatha sthathyi growth ke lie ek prbhavpoorn regulatory tatha legal framework indispensable hai. +",5,4,positive,positive,positive +"Compete with one another to achieve forgiveness from your Lord and to reach Paradise, which is as vast as the heavens and the earth, and is prepared for those who believe in God and His Messenger. This is the blessing of God and He grants it to whomever He wants. The blessings of God are great. +","तुम अपने परवरदिगार के (सबब) बख़्शिस की और बेहिश्त की तरफ लपक के आगे बढ़ जाओ जिसका अर्ज़ आसमान और ज़मीन के अर्ज़ के बराबर है जो उन लोगों के लिए तैयार की गयी है जो ख़ुदा पर और उसके रसूलों पर ईमान लाए हैं ये ख़ुदा का फज़ल है जिसे चाहे अता करे और ख़ुदा का फज़ल (व क़रम) तो बहुत बड़ा है +","blessing apne paravardigar ke paradise forgiveness ki aur behisht ki taraph messenger ke aage heavens jao jiska arz aasman aur zamin ke arz ke barabar hai jo un logon ke lie taiyar ki gayi hai jo lord par aur uske rasoolon par eeman lae hain ye lord ka great hai jise chahe ata kare aur lord ka great v ram to bahut bara hai +",6,1,positive,negative,positive +"Thus decision to provide following facilities to jail inmates was taken: +","अतः जेल के कारावासियों को निम्नलिखित सुविधाएं प्रदान करने का निर्णय लिया गयाः +","ata jel ke inmates ko nimnlikhit facilities prdan karne ka decision liya gayaa +",8,4,neutral,neutral,neutral +"Two days prior to that, his pains had abated and he told his disciples and others that he was feeling a great calm. +","मृत्यु से दो दिन पूर्व उन्होंने अपने शिष्यों को बताया कि उनका दर्द काफी कम है और वे काफी राहत महसूस कर रहे हैं। +","mrityu se do din poorv unhonne apne disciples ko others ki unka pains days calm hai aur ve days rahat mahsoos kar rahe hain. +",6,4,positive,negative,positive +"He congratulated NIFM for choosing this motto. +","उन्होंने एनआईएफएम को इस सिद्धांत को चुनने के लिए बधाई दी थी। +","unhonne enaaeeephem ko is siddhant ko chunne ke lie badhaee motto thi. +",6,5,positive,positive,neutral +"They accept that they do know each other directly at see. +","वे स्वीकार करते हैं कि वे एक दूसरे पर सीधे देख पता है। +","ve accept karte hain ki ve ek doosre par directly dekh pata hai. +",8,3,neutral,neutral,positive +"Thus there was an inadequate appreciation of the necessity for speedy action in a vital sector. +","इस प्रकार इस महत्वपूर्ण क्षेत्र में तेजी से काम करने की आवश्यकता पर कोई ध्यान नहीं दिया गया. +","is prkar is vital sector men inadequate se action karne ki necessity par koee dhyan nahin diya gaya +",9,0,negative,negative,positive +"K. G. M Khan, a dweeler of lahore, made a pure gold urn. +","का़जि़म खान लाहौर का निवासी ने ठोस सुवर्ण कलश निर्मित किया। +","kjm khan lahaur ka nivasi ne thos suvarn kalash nirmit kiya. +",9,1,neutral,neutral,neutral +"No, it was not there +","नही, वो उधर नही था +","nahi, vo udhar nahi tha +",9,1,neutral,neutral,neutral +"Saponification literally means soap making. +","साबुनीकरण या साबुनीभवन का शाब्दिक अर्थ साबुन निर्माण है. +","sabunikaran ya sabunibhavan ka shabdik arth soap making hai +",8,3,neutral,neutral,neutral +"Flies carry diseases from infected persons to healthy persons. +","मक्खियां संक्रमित व्यक्तियों से स्वस्थ व्यक्तियों में बीमारियाँ फैलाती हैं। +","flies infected persons se healthy persons men diseases phailati hain. +",10,0,negative,negative,negative +"We cannot become what we need to be by remaining what we are +","हम जो हैं वही बने रहकर वह नहीं बन सकते जो कि हम बनना चाहते हैं। +","ham jo hain vahi bane remaining vah nahin ban sakte jo ki ham banna chahte hain. +",8,2,neutral,negative,neutral +"Doppler radar is generally used in police radar systems and also for measuring the velocity of hurricanes. +","डॉपलर रडार का उपयोग आम तौर पर पुलिस रडार प्रणालियों में किया जाता है, इसके साथ ही इसका इस्तेमाल तूफान के वेग को मापने के लिए भी किया जाता है +","doppler radar ka upyog aam taur par police radar systems men kiya jata hai, iske sath hi iska istemal velocity of hurricanes ko mapne ke lie bhi kiya jata hai +",7,3,neutral,neutral,neutral +"Ther are many product, device, or equipment in adaptive technology which include large - key keyboards, alternative input devices, like touch screen displays, speech recognition programs, text reader etc.. +","अनुकूली तकनीक में अनेक उत्पाद, उपकरण या उपस्कर हैं, जिनमें बड़ी कुंजी वाले कुंजीपटल, वैकल्पिक इनपुट उपकरण, जैसे-स्पर्श स्क्रीन प्रदर्श, भाषण पहचान प्रोग्राम, तथा पाठ्यांश वाचक आदि शामिल हैं +","anukooli taknik men anek utpad, upakaran ya upaskar hain, jinmen bari kunji vale kunjipatal, alternative input devices, jaise-sparsh skrin pradarsh, speech recognition programs, tatha text reader etc shamil hain +",8,2,neutral,neutral,positive +"And in this state, he is married and brings home a wife. +","इसी हालत मके उसका विवाह हो जाता है और पत्नी घर में ले आता है। +","isi halat make uska vivah ho jata hai aur patni ghar men le aata married +",5,5,neutral,neutral,neutral +"In such courts, one can expect to get justice. +","ऐसी अदालतों में न्याय पाने की उम्मीद की जा सकती है. +","aesi courts men nyay pane ki ummid ki ja sakti hai +",9,1,neutral,negative,positive +"“ Aren ' t you a tiny bit superstitious ? ” +","“ क्या तुम खुद बिलकुल भी अन्धविश्वासी नहीं हो ? ” +","kya tum khud bilkul bhi superstitious nahin ho +",10,0,neutral,negative,neutral +"The quantitative relation between the targets and the achievement. +","लक्ष्य तथा उनके विरूद्ध कार्य सम्पादन के संदर्भ में संख्यात्मक अनुपात। +","lakshy tatha unke virooddh kary sampadan ke sndarbh men snkhyatmak anupat. +",8,1,neutral,neutral,neutral +"The writer of this monograph met her in October 1972 in Leningrad. +","इस पुस्तक के लेखक की अक्तूबर 1972 में, लेनिनग्राद में, लोला से, उनके घर पर भेंट हुई। +","is pustak ke writer ki october monograph men , leningrad men , lola se , unke ghar par bhent huee. +",7,1,neutral,neutral,neutral +"A sudden state of danger in financial matters. +","वित्तीय मामलों में उपस्थित आकस्मिक आपात स्थिति। +","danger in financial upasthit aakasmik sudden state +",6,2,negative,neutral,negative +"It enables the company to adopt a stable dividend policy +","इससे कंपनी की लाभांश नीति को स्थिरता मिलती है। +","isse company ki dividend policy ko sthirta milti hai. +",10,0,positive,neutral,positive +"Ask your council about anything in the tenancy agreement you do not understand. +","यदि किरायेदारी के समझोते में कोई बात आपको समझ नहीं आती, तो आ कौंसिल को पूँछे। +","yadi council ke samjhote men koee anything aapko samajh nahin aati , to aa kaunsil ko poonchhe. +",5,2,negative,neutral,positive +"“ We have always supported the UDF and have a right to nominate those whom we believe will help us , ” says Monsignor Paul Kakkassery , the diocese 's spokesman . +","उनके प्रवक्ता मॉनसिग्नोर पॉल कक्कास्सेरी ने कहा भी , ' ' हमने हमेशा संलमो का समर्थन किया है.इसलिए हमें ऐसे लगों को मनोनीत करने का अधिकार है जिनके बारे में हमारा मानना है कि वे हमारी मदद करेंगे . ' ' +","unke spokesman monsignor paul kakkassery ne kaha bhi , hamne hamesha udf ka samarthan kiya haiislie hamen aese lagon ko manonit karne ka right hai jinke bare men hamara manna hai ki ve hamari madad karenge +",4,5,positive,positive,positive +"'In exercise of the powers vested in him by Rule 58 1 paragraph b of the Defence of Hyderabad Rules which correspond to the Defence of India Rules, it is hereby ordered that no person shall unfurl in a ceremonial fashion at any public function the flag of any foreign country nor salute it. +","हैदराबाद रक्षा-कानूनों जो भारत रक्षा-कानूनों के जैसे ही है की धारा-58 1 के पैरा ब द्वारा उनमें निजाम में निहित सत्ताओं का अमल करके यह आदेश दिया जाता है कि कोई भी व्यक्ति किसी भी सार्वजनिक समारोह में विधिवत् किसी विदेश के झंडे को न तो फहरायेगा और न उसे सलामी देगा। +","hyderabad raksha-kanoonon jo rule raksha-kanoonon ke jaise hi hai ki dhara-58 1 ke paragraph powers dvara unmen nijam men nihit sattaon ka amal karke yah aadesh diya jata hai ki koee bhi person kisi bhi public defence men vidhivat kisi foreign ke exercise ko n to phahrayega aur n use salute dega. +",8,2,neutral,negative,positive +"Special schemes for SHGs and to empower women folk +","स्वयं सहायता समूह के लिए विशेष योजना और महिलाओं को सशक्त बनाना +","shgs sahayta samooh ke lie special schemes aur women ko sashakt banana +",8,2,positive,neutral,positive +"The process of arbitration that has to be followed compulsorily as per law. +","किसी मामले में पंचनिर्णय की प्रक्रिया जो कानूनन अनिवार्य रूप से पालन करनी होगी। +","kisi mamle men arbitration ki process jo law anivary roop se palan karni hogi. +",7,1,neutral,neutral,neutral +"Let not those grieve thee who rush headlong into Unbelief: Not the least harm will they do to Allah: Allah 's plan is that He will give them no portion in the Hereafter, but a severe punishment. +","और (ऐ रसूल) जो लोग कुफ़्र की (मदद) में पेश क़दमी कर जाते हैं उनकी वजह से तुम रन्ज न करो क्योंकि ये लोग ख़ुदा को कुछ ज़रर नहीं पहुँचा सकते (बल्कि) ख़ुदा तो ये चाहता है कि आख़ेरत में उनका हिस्सा न क़रार दे और उनके लिए बड़ा (सख्त) अज़ाब है +","aur plan rasool jo let unbelief ki madad men pesh dmi kar jate hain unki least se tum grieve n hereafter kyonki ye let uda ko kuchh zarar nahin pahuncha sakte balki uda to ye chahta hai ki aaerat men unka portion n rar de aur unke lie severe sakht azab hai +",4,1,negative,neutral,negative +"Now who will take rebukes on my behalf. +",", अब वहाँ मेरे स्थान पर कौन झिड़किए खायेगा? +",", behalf vahan mere sthan par kaun jhirkie khayega +",8,0,negative,neutral,neutral +"The extant colophons indicate that the art of the parivadini a stringed lute called Vidya - parivadini was enunciated by a Gunasena, and the notations were got inscribed for the benefit of the votaries by a king who was a great Saiva or Paramamahesvara, and a disciple of Rudracharya. +","विद्यमान पुष्पिकाएं संकेत देती है कि परिवादिनी तंत्रीयुक्त वीणा की कला या विद्या परिवादिनी किसी गुणसेन द्वारा प्रतिपादित की गई थी और एक महान शैव या परममाहेश्वर नरेश और रूद्राचार्य के शिष्य द्वारा शौकीनों के लाभ के लिए उत्कीर्ण करवाई गई थी। +","extant colophons snket deti hai ki parivadini tntriyukt lute ki art ya vidya parivadini kisi votaries dvara prtipadit ki gee thi aur ek great saiva ya parammaheshvar king aur notations ke disciple dvara shaukinon ke benefit ke lie utkirn karvaee gee thi. +",8,1,neutral,neutral,positive +"I take this opportunity to convey my best wishes for your Excellency’s well being and for the continued progress and prosperity of the friendly people of Saint Vincent and the Grenadines. +","मैं इस अवसर पर महामहिम की कुशलता तथा सेंट विंसेंट एवं ग्रेनडीन की मित्र जनता की निरंतर प्रगति और समृद्धि के लिए अपनी मेरी शुभकामनाएं देता हूं। +","main is avasar par mahamhim ki kushalta tatha sent vinsent evn grendin ki mitr janta ki nirntar pragti aur samriddhi ke lie apni meri shubhkamnaen deta hoon. +",4,7,positive,positive,positive +"Occurrences when an extension was installed +","एक्सटेंशन इंस्टॉल किए जाने की पुनरावृत्तियां +","extension instl kie jane ki occurrences +",8,1,neutral,neutral,neutral +"Finance Bill 2008 was published on 27th March. +","वित्त विधेयक 29 मार्च 2000 को प्रकाशित किया गया था। +","finance bill 29 march 2000 ko prkashit kiya gaya tha. +",8,1,neutral,neutral,neutral +"Then We destroyed the others. +","फिर हमने बाक़ी लोगों को तबाह व बर्बाद कर दिया +","phir hamne bai logon ko tabah v barbad kar diya +",5,6,negative,negative,negative +"Mountain Biking (External website that opens in a new window) +","माउंटेन बाइकेन (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","mountain baiken external website jo ek new vindon men khulti hain +",6,4,neutral,neutral,neutral +"TRUE if this printer can accept PDF +","सही अगर यह मुद्रक PDF स्वीकार कर सकता है +","true agar yah printer PDF accept kar sakta hai +",10,0,neutral,neutral,positive +"The Ministry of Education may take action: - +","शिक्षा मंत्रालय निम्नलिखित विषय में कार्रवाई करें-- +","education mntralay nimnlikhit vishay men karrvaee karen-- +",9,2,neutral,neutral,neutral +"141. [Omitted by the Taxation Laws (Amendment) Act, 1970, w.e.f. 1-4-1971.] +","141. [कराधान विधि (संशोधन) अधिनियम, 1970 द्वारा 1.4.1971 से लोप किया गया।] +","141 kradhan laws snshodhan act, 1970 dvara 141971 se omitted kiya gaya. +",7,4,neutral,neutral,neutral +"The Reserve Bank has stated that the company has passed resolutions at its Board of Directors’ level and a special resolution by the shareholders, agreeing for enhancing the limit for the purchase of its equity shares and convertible debentures by FIIs / RFPIs. +","रिज़र्व बैंक ने बताया है कि कंपनी ने अपने निदेशक मंडल स्तर पर संकल्प पारित किए हैं और शेयरधारकों द्वारा एक विशेष संकल्प पारित किया गया है जिसमें एफआईआई/आरएफपीआई द्वारा इसके इक्विटी शेयरों और परिवर्तनीय डिबेंचरों की खरीद की सीमा में वृद्धि करने पर सहमति बनी है। +","reserve bank ne bataya hai ki company ne apne board mndal level par resolutions parit fiis hain aur shareholders dvara ek special resolutions parit kiya gaya hai jismen ephaaeeaaeeaarephpiaaee dvara iske equity sheyron aur convertible debentures ki purchase ki limit men vriddhi karne par sahamti bani hai. +",8,1,neutral,neutral,positive +"And in that, we have to look at not only the long - term strength of the country and the society, but also we have to see the short - term needs which we simply cannot ignore. +","और ऐसा करते हुए हमें केवल समाज और देश की दीर्घकालीन मजबूत को ध्यान में रखना है बल्कि अल्पकालिक जरूरतों को भी देखना है जिनकी अनदेखी नहीं की जा सकती। +","aur aesa karte hue hamen keval samaj aur desh ki term strength ko dhyan men rakhna hai balki alpkalik jaroorton ko bhi dekhna hai jinki andekhi nahin ki ja sakti. +",4,6,neutral,negative,positive +"Could not start% 1 application. +","अनुप्रयोग% 1 चला नहीं सका. +","application 1 chala nahin saka +",8,3,negative,neutral,neutral +"This is how We reward the doers of good. +","मुबारक हम नेकोकारों को ऐसा ही बदला दिया करते हैं +","mubarak ham reward the doers hi badla diya karte hain +",6,4,positive,positive,positive +"follow the line all the way from B to E, +","बी से ई तक की रेखा के पीछे पूरे रास्ते चलिए, +","bi se ee tak ki rekha ke follow follow the line, +",6,1,neutral,neutral,neutral +"In short they were now in a mood to send their sons to any school which the Anjuman set up. +","संक्षिप्त में, अब अंजुमन द्वारा स्थापित स्कूल में अपने पुत्रों के भेजने का उनका मन हो गया। +","short men , ab anjuman dvara sthapit school men apne sons ke bhejne ka unka mood ho gaya. +",8,0,neutral,neutral,neutral +"and there go round them youths, their own, as if they were hidden pearls. +","(और ख़िदमत के लिए) नौजवान लड़के उनके आस पास चक्कर लगाया करेंगे वह (हुस्न व जमाल में) गोया एहतियात से रखे हुए मोती हैं +","aur youths ke lie naujvan own unke aas pas chakkar lagaya karenge vah pearls v jamal men goya ehtiyat se rakhe hue moti hain +",4,2,neutral,neutral,neutral +"Even younger women pull the strings from behind. +","कम उम्र की स्त्रियां भी पर्दे के पीछे से सूत्रधार बनी रहती हैं। +","kam younger ki women bhi parde ke pichhe se sootrdhar bani rahti hain. +",7,1,neutral,neutral,neutral +"In fact, someone on Reddit thought, +","बल्कि, रेडिट पे किसी नें सोचा, +","fact , reddit pe kisi nen thought , +",5,1,neutral,neutral,neutral +"Circulation of water from the tank through the collectors and back to the tank continues automatically due to density difference between hot and cold water (thermosyphon effect). +","टंकी से संग्राहक तक पानी की धारा का प्रवाह गर्म और ठंडे पानी के घनत्व में अंतर (थर्मोसाइफन प्रभाव) के कारण हमेशा स्वचालित ढंग से बना रहता है। +","tank se collectors tak water ki dhara ka circulation hot aur thnde water ke ghanatv men difference tharmosaiphan effect ke karan hamesha svchalit dhng se bana rahta hai. +",6,5,neutral,neutral,neutral +"When the eye is bewildered, +","तो जब निगाह चौंधिया जाएगी, +","to jab eye chaundhiya jaegi , +",9,1,neutral,neutral,neutral +"Program module is a file that contains instructions which are either in the form of source code or machine language. +","माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत कोड या मशीन भाषा के रूप में अनुदेश निहित होते हैं। +","madyool, ek snchika hoti hai, jismen ya to srot code or machine bhasha ke roop men anudesh nihit hote hain. +",8,1,neutral,neutral,neutral +"To help minimise the noise pollution caused by necessary construction and demolition works , the local authority has the power under section 60 of the Control of Pollution Act 1974 to specify the way in which the work must be carried out . +","आवश्यक निर्माण व ढहानेसे उत्पन्न शोर -दूषण को कम से कम करने के लिए कंट्रोल अऑफ पॉप्यूलेशन ऐक्ट 1974 के सेक्शन 60 के अंतरगत लोकल अथॉरिटी को अधिकार है कि वह काम किस प्रकार किए जाए इस बारे में विशेष निर्देश दे . +","necessary construction v pollution utpann noise -dooshan ko kam se kam karne ke lie control aऑph ppyooleshan aekt 1974 ke sekshan 60 ke antaragat local athriti ko authority hai ki vah work kis way kie jae is bare men vishesh nirdesh de +",6,3,neutral,neutral,positive +"Since, most of the producer organizations are at nascent stage, their focus is mainly on production and to some extent the aggregation. +","चूंकि अधिकतर उत्पावदक संगठन शुरूआती अवस्थाथ में हैं, अतः उनका मुख्य फोकस उत्पादन और कुछ हद तक संग्रहण पर है. +","choonki most producer sngathan stage nascent men hain , ata unka mukhy focus production aur kuchh extent tak sngrahan par hai +",6,3,neutral,neutral,neutral +"An effective regulatory and legal framework is indispensable for the proper and sustained growth of the company. +","कंपनी की उचित तथा स्थाथयी संवृद्धि के लिए एक प्रभावपूर्ण विनियामक तथा कानूनी ढांचा अपरिहार्य है। +","knpni ki uchit tatha sthathyi snvriddhi ke lie ek prbhavpoorn regulatory and legal framework is indispensable +",6,3,positive,positive,positive +"” I hold the power of life and death for every person I take with me . +","“ जो भी मेरे साथ चलता है उसकी जिंदगी और मौत मेरे हाथों में होती है । +","jo bhi i sath chalta hai uski life aur death i hathon men hoti hai . +",5,3,neutral,negative,negative +"associated or substantially identical trade marks +","सहयुक्त या सारत तदरूप व्यापार चिह्न +","sahyukt ya sarat identical trade marks +",8,2,neutral,neutral,neutral +"It is now our duty to produce from their literature some clear testimonies as to this subject and cognate theories of other nations. +","अब उनके (हिन्दुओं के) साहित्य से इस विषय और अन्य जातियों के सजातीय सिद्धांतों के संबंध में कुछ स्पष्ट साक्ष्य प्रस्तुत करना हमारा कर्तव्य हो जाता है. +","ab unke hinduon ke literature se is subject aur other nations ke testimonies theories ke snbndh men kuchh clear sakshy prastut karna hamara duty ho jata hai +",9,0,neutral,negative,positive +"and that they who have been given knowledge may know that it is the truth from thy Lord and believe in it, and so their hearts be humble unto Him; and assuredly God ever guides those who believe to a straight path. +","और ताकि वे लोग जिन्हें ज्ञान मिला है, जान लें कि यह तुम्हारे रब की ओर से सत्य है। अतः वे इसपर ईमान लाएँ और उसके सामने उनके दिल झुक जाएँ और निश्चय ही अल्लाह ईमान लानेवालों को अवश्य सीधा मार्ग दिखाता है +","aur taki ve log jinhen jnjan mila hai, jan len ki yah tumhare rab ki or se saty hai. ata ve isapar eeman laen aur uske samne unke hearts be humble aur nishchay hi allah eeman lanevalon ko avashy sidha marg dikhata hai +",8,1,positive,neutral,positive +"Or, listen to Basava: The root is the mouth of the tree, pour water there at the bottom, and, look, it sprouts green at the top. +","अथवा बासव की बात सुनें, जड़ पेड़ का मुख है, जड़ को सींचो और देखो वह चोटी पर हरा-भरा हो जाता है। +","athva basav ki look sunen , root per ka mouth hai , root ko sincho aur dekho vah top par hara-bhra ho jata hai. +",7,2,neutral,neutral,positive +"Before the boy could reply, a butterfly appeared and fluttered between him and the old man. +","इससे पहले कि लड़का कुछ जवाब देता एक तितली उन दोनों के बीच आकर अपने पर फड़फड़ाने लगी। +","old pahle ki boy kuchh javab deta ek butterfly un donon ke bich aakar apne par pharapharane lagi. +",7,0,neutral,neutral,neutral +"Color to use for the bottom color - stop of the skydome - fallback gradient +","स्काइडोम फालबैक ढ़ाल के तलवर्ती रंग स्टॉप के लिए प्रयोग का रंग +","skydome fallback bottom ke talavarti color stop ke lie pryog ka color +",6,2,neutral,neutral,negative +"Siyaramsharan Gupta Brotherhood of communities and inter - religious interaction is the very basis of our Indian society. +","जातीय भाईचारा और साम्प्रदायिक मेल मिलाप भारतीय समाज के आधार है। +","jatiy bhaeechara aur samprdayik mel milap indian society ke aadhar hai. +",8,4,neutral,positive,neutral +"Our enemy is thoughtlessness. This is philosophy. ” +","अविचारशीलता हमारी शत्रु है। यह दर्शन है ” +","avicharshilta hamari enemy hai. yah darshan hai +",6,5,negative,neutral,negative +"For more details log on to source link: http: / / www. orissa. gov. in / commerce% 26transport / +","अधिक जानकारी के लिए देखेंः http: / / www. orissa. gov. in / commerce% 26transport / +","more jankari ke lie source http : commerce orissa gov orissa commerce 26transport +",5,3,neutral,neutral,neutral +"There were problems applying the diff% 1 to the file% 2. +","डिफ़% 1 को फ़ाइल% 2 में लागू करने में समस्याएँ हैं. +","problems 1 ko file 2 men lagoo karne men samasyaen hain +",7,2,negative,neutral,negative +"Now, I don't know if she's toying with me, +","अब मुझे नहीं पता कि वो मेरे साथ खिलवाड़ कर रही हैं या नहीं, +","ab i nahin pata ki vo mere sath khilvar kar rahi hain ya nahin , +",7,3,negative,neutral,neutral +"Padhya and Brahmbhatt, who painstakingly gathered facts on the lake, produced satellite pictures that showed the presence of a lake. +","पाध्या और ब्रह्मंभट्टं ने पूरी कोशिश करके तथ्य जुटाए और उपग्रह से खींची गई तस्वीरें पेश की, जिनसे वहां ज्हील होने की पुष्टि होती थी. +","padhya aur brahmbhatt ne poori koshish karke facts lake aur satellite se khinchi gee pictures pesh ki , jinse vahan jhil hone ki pushti hoti thi +",9,1,neutral,neutral,neutral +"He always enjoyed a fund of affection and goodwill from Mr. Ghosh, since the beginning of his political career in the early sixties. +","वह शुरुआती साठ के दशक में आरंभ अपने राजनीतिक जीवनवृत्त से श्री घोष का स्नेह और सद्भावना प्राप्त करते रहे। +","vah early sixties ke dashak men aarnbh apne political career se shri ghosh ka sneh aur sadbhavna prapt karte rahe. +",8,1,positive,neutral,positive +"Later on, the recommendations have also been accepted by the State of Bihar +","बाद में, सिफारिशें भी बिहार राज्य द्वारा स्वीकार कर ली गयी हैं +","bad men , recommendations bhi bihar state dvara svikar kar li gayi hain +",9,1,neutral,neutral,positive +"From the preventive point of view, their offences merit severe punishment. +","अतः निवारक दृष्टिकोण से उनके अपराध कड़ी से कड़ी सजा की मांग करते हैं. +","ata preventive point se unke offences merit se merit punishment ki mang karte hain +",9,0,negative,neutral,negative +"And that is for Allah not difficult. +","और ये कुछ खुदा के वास्ते दुशवार नहीं +","aur ye kuchh khuda ke vaste difficult nahin +",9,2,positive,neutral,positive +"In the twenty first century Maoist 's rebel spread a lot. +","इक्कीसवीं सदी की शुरुआत में नेपाल में माओवादियों का आन्दोलन तेज होता गया। +","twenty century ki shuruaat men nepal men maoist ka aandolan tej hota gaya. +",5,7,neutral,negative,negative +"All that wouldn 't have mattered if Bhasmasura had been a friendly, good demon. +","इन बातों का कोई मतलब न होता अगर भस्मासूर एक अच्छा राक्षस होता और सबसे मित्रता रखता। +","in baton ka koee matalab n hota agar bhasmasoor ek good demon hota aur sabse mitrta rakhta. +",8,3,neutral,neutral,positive +"A dvitala and hence ashtanga, or ashtavarga vimana of the same Nagara order, square from base to apex is illustrated in the incomplete Valaiyankuttai ratha facing east. +","उसी नागर श्रेणी का एक द्वितल और इसलिए अष्टांग या अष्टवर्ग, आधार से शिखर तक वर्गाकार विमान, पूर्वाभिमुख अपूर्ण वलैयांकुट्टई रथ के रूप में देखा जा सकता है। +","usi nagar shreni ka ek dvital aur islie ashtang ya ashtavarg, square from base tak vargakar viman, facing east valaiyankuttee rath ke roop men dekha ja sakta hai. +",7,3,neutral,neutral,neutral +"Some of the accused protested against being treated as common cirminals, and not as political prisoners, who had declared open war against the Crown. +","कुछ अभियोगियों ने, जिन्होंने राज के खिलाफ खुले युद्ध की घोषणा की थी, अपने साथ राजनैतिक बंदियों की जगह पर आम अपराधियों जैसा व्यवहार किये जाने का विरोध किया। +","kuchh abhiyogiyon ne, jinhonne raj ke declared open war ki ghoshna ki thi, apne sath political prisoners ki jagah par aam apradhiyon jaisa vyavhar kiye jane ka virodh kiya. +",6,1,negative,negative,negative +"Rishi Srink is a love story of a Risi (Saint) +","ॠष्य ॠंग एक ॠषि की प्रेमकथा। +","rishi srink ek risi ki love +",8,0,neutral,positive,positive +"Web Server to Predict Hub Proteins +","हब प्रोटीन की भविष्यवाणी हेतु वैब सर्वर +","hab proteins ki predict hetu web server +",9,1,neutral,neutral,neutral +"(4A) 59Every person in receipt of income derived from property held under trust or other legal obligation wholly for charitable or religious purposes or in part only for such purposes, or of income being voluntary contributions referred to in sub-clause (iia) of clause (24) of section 2, shall, if the total income in respect of which he is assessable as a representative assessee (the total income for this purpose being computed under this Act without giving effect to the provisions of sections 11 and 12) exceeds the maximum amount which is not chargeable to income-tax, furnish a return of such income of the previous year in the prescribed form and verified in the prescribed manner and setting forth such other particulars as may be prescribed and all the provisions of this Act shall, so far as may be, apply as if it were a return required to be furnished under sub-section (1). +","(4क) पूर्णतः पूर्त या धार्मिक प्रयोजन के लिए या भागतः ऐसे प्रयोजनों के लिए न्यास या अन्य विधिक बाध्यता के अधीन धारित सम्पत्ति से उद्भूत आय, या धारा 2 के खंड (24) के उपखंड (iiक) में निर्दिष्ट स्वैच्छिक अभिदाय के रूप में आय प्राप्त करने वाला हर व्यक्ति, यदि वह सकल आय, जिसकी बाबत वह प्रतिनिधि निर्धारिती के रूप में निर्धारणीय है, (इस प्रयोजन के लिए सकल आय धारा 11 और 12 के उपबंधों को लागू किए बिना इस अधिनियम के अधीन संगणित की जाएगी) उस अधिकतम रकम से अधिक है जो आय-कर से प्रभार्य नहीं है, तो विहित प्ररूप में और विहित रीति में सत्यापित करके और ऐसी अन्य विशिष्टियां देते हुए, जो विहित की जाएं, पूर्ववर्ष की ऐसी आय की विवरणी देगा और इस अधिनियम के सभी उपबंध, यथाशक्य, इस प्रकार लागू होंगे मानो वह उपधारा (1) के अधीन दिए जाने के लिए अपेक्षित विवरणी हो। +","4k poornta poort ya religious charitable ke lie ya bhagta aese purposes ke lie trust ya other legal badhyta ke sections dharit property se udbhoot receipt , ya clause 2 ke part 24 ke iia iik men nirdisht voluntary contributions ke form men receipt prapt karne vala har person , yadi vah sakal receipt , jiski babat vah representative nirdhariti ke form men assessable hai , is charitable ke lie sakal receipt clause 11 aur 12 ke upbndhon ko year kie bina is act ke sections sngnit ki jaegi us maximum amount se adhik hai jo aay-kar se chargeable nahin hai , to such prroop men aur such manner men satyapit karke aur forth other particulars dete hue , jo such ki jaen , poorvavarsh ki forth receipt ki vivarni dega aur is act ke sabhi upbndh , yathashaky , is prkar year honge mano vah updhara 1 ke sections die jane ke lie apekshit vivarni ho. +",6,2,neutral,negative,positive +"16. Pitchblende and other uranium ores. +","16. पिचब्लेंड और अन्य यूरेनियम अयस्क। +","pitchblende pichablend aur other uranium ores +",4,5,neutral,neutral,neutral +"They are outstanding engineering feats. +","ये परियोजनाएं इंजीनियरों के अनूठे कारनामे हैं। +","ye pariyojnaen injiniyron ke outstanding karname hain. +",8,0,positive,neutral,positive +"Indicates whether any trailing zeroes after the numeric point should be shown in the display value. +","बताता है कि कोई पश्चगामी शून्य जिसके बाद संख्या बिंदु को प्रदर्शन मान में दिखाया जाना चाहिए. +","batata hai ki koee trailing zeroes jiske bad snkhya bindu ko pradarshan man men dikhaya jana chahie +",9,0,neutral,neutral,positive +"Look for ABTA -LRB- Association of British Travel Agents -RRB- or AITO -LRB- Association of Independent Tour Operators -RRB- on brochures or invoices . +","सैर सपाटे की पुस्तकाओं या इंवाईसेज़ में आभ्ठा ( आस्सोचिअटिओन् ओङ् भ्रिटिस्ह् ठ्रवेल् आगेन्ट्स् ) या आईठौ ( आस्सोचिअटिओन् ओङ् ईन्डेपेन्डेन्ट् ठोउर् औपेरटोर्स् ) की तालाश कीजिए . +","tour operators ki pustkaon ya invaeesez men aabhtha aassochiation ong bhritish thrvel aagents ya aaeethau aassochiation ong eendependent thour aupertors ki talash kijie +",5,4,neutral,neutral,neutral +"Drinking the way thirsty camels drink. +","और पियोगे भी तो प्यासे ऊँट का सा (डग डगा के) पीना +","aur piyoge bhi to thirsty camels ka way dag daga ke pina +",7,3,neutral,neutral,neutral +"Apply Rajiv Gandhi Advocate’s Training Scheme +","राजीव गाँधी अधिवक्ता प्रशिक्षण हेतु आवेदन करना +","rajiv gandhi advocate training hetu karna +",9,0,neutral,neutral,neutral +"VIP s shild issue passes for gallery. +","विशिष्ट दर्शक गॅलरी के पास जारी करें। +","vishisht gallery passes for gallery jari karen. +",6,2,neutral,negative,positive +"Ne _ ver Add Such File +","कभी ऐसी फाइल मत जोड़ें (_ v) +","such aesi file mat ne _ ver +",6,2,neutral,neutral,neutral +"The kutas and salas over the mandapa are of a smaller size than those over the aditala as usual. +","मंडप के ऊपर के कूट और शाला आदितल के ऊपर के कूटों और शलाओं से छोटे हैं जो कि सामान्य है। +","mndap ke oopar ke kutas and salas aadital ke oopar ke kooton aur shalaon se chhote hain jo ki samany hai. +",7,3,neutral,neutral,neutral +"The meeting was held that very night at about 11 or 12 p. m. +","रातके लगभग 11 या 12 बजें यह सभा हुई। +","ratke lagabhag night ya 12 bajen yah meeting huee. +",4,4,neutral,neutral,neutral +"It is right that we should put all our strength in the advancement of the cause that we hold dear. +","यह बहुत ठीक है कि जो मकसद हमें प्यारा है, उसको पूरा करने के लिए हम अपनी पूरी ताकत लगा दें। +","yah bahut right hai ki jo cause hamen dear hai , usko poora karne ke lie advancement apni poori strength laga den. +",7,1,positive,neutral,positive +"Polar ice caps may melt further and increase the size of the oceans which may submerge large expanses of land - LRB - China, Egypt, Indonesia, Bangladesh and West Bengal face this threat - RRB -. +","अधिक मात्रा में ध्रुवों की बर्फ पिघलने से सागरों में जल का स्तर बढ़ जाएगा. जिससे पृथ्वी का काफी बड़ा भू-भाग इसमें डूब जाएगा. चीन, मिस्त्र, इन्डोनेशिया, बंग्लादेश और पश्चिम बंगाल के लिए यह खतरा मंडरा रहा है. +","large size men polar ki barph pighalne se oceans men indonesia ka star ba lrb jisse land ka kaphi bara bhoo-bhag ismen doob lrb china , egypt , indoneshiya , bangladesh aur west bengal ke lie yah threat mndra raha hai +",6,4,negative,positive,negative +"It ' s what turns lead into gold , and makes the gold return to the earth . ” +","यही चक्र सीसे को सोना बना देता है , और सोने को धरती में वापिस समावेश करा देता है । ” +","yahi chakr lead into gold bana deta hai , aur sone ko dharti men vapis samavesh kara deta hai . +",7,1,neutral,neutral,neutral +"The President said the North Eastern Hill University (NEHU) has acted as a centre of empowerment of the people in North-Eastern region. He expressed his happiness over gender parity in the student population, with a 1:1 male-female ratio and the fact that women outperform men beyond the ratio. +","राष्ट्रपति ने कहा कि पूर्वोत्तर पर्वतीय विश्वविद्यालय ने पूर्वोत्तर क्षेत्र में लोगों के सशक्तीकरण के केन्द्र के रूप में काम किया है। उन्होंने विद्यार्थियों में 1:1 के पुरुष महिला अनुपात के साथ लैंगिक समानता पर तथा इस बात पर प्रसन्नता व्यक्त की कि महिलाओं ने पुरुषों को औसत से पीछे छोड़ दिया है। +","president ne kaha ki north parvtiy university ne north centre men population ke empowerment ke kendr ke roop men kam kiya people unhonne student men 1:1 ke purush mahila ratio ke sath laingik parity par tatha is bat par happiness vyakt ki ki women ne purushon ko ausat se pichhe chhor diya people +",8,4,positive,negative,positive +"The violin bow might well have grown out of the act of fire-making by scraping one rod over another . +","बहुत संभव है कि वायलिन का गज भी एक छड़ी को दूसरी छड़ी पर रगड़कर आग जलाने वाली सामान्य जीवन की क्रिया का ही विकसित रूप हो . +","bahut snbhav hai ki vaylin ka gaj bhi ek chhari ko doosri chhari par scraping one rod vali samany jivan ki kriya ka hi viksit roop ho +",5,3,neutral,neutral,positive +"In fact, clans or families which succeeded in winning chieftainship were readily admitted into the frame of Hindu polity as Kshatriyas or Rajputs. +","वास्तव में सरदार का पद जीतनेवाले वंशों या परिवारों को हिंदू राजनीतिक व्यवस्था में आसानी से क्षत्रियों या राजपूतों के रूप में स्वीकार कर लिया जाता था। +","vastav men sardar ka pad jitnevale vnshon ya parivaron ko hindoo rajnitik vyavastha men aasani se kshatriyon ya rajpooton ke roop men svikar kar liya jata tha. +",8,4,neutral,neutral,positive +"Late Puranchandra Gupta never allowed any power to force him into restricting his freedom of press. +","स्वर्गीय पूरनचन्द्र गुप्ता कभी भी अपने समाचारपत्र साम्न्त बनने की अपनी इच्छाशक्ति से नहीं डगमगाए। +","late puranchandra gupta kabhi bhi apne press samnt power ki apni ichchhashakti se nahin dagamgae. +",7,4,neutral,negative,positive +"From popular home stays where one can get a firsthand experience of rural Sikkim to endless possibilities for adventure sports. +","यहां के लोकप्रिय घरेलू आश्रय जहां आपको ग्रामीण सिक्किम का प्रत्यक्ष अनुभव होता है और रोमांचक खेलों की असीमित संभावनाएं उपलब्ध हैं। +","yahan ke popular home aashray jahan aapko gramin sikkim ka pratyaksh anubhav hota hai aur romanchak khelon ki asimit snbhavnaen upalabdh hain. +",8,1,positive,neutral,positive +"Compete with one another to achieve forgiveness from your Lord and to reach Paradise, which is as vast as the heavens and the earth, and is prepared for those who believe in God and His Messenger. This is the blessing of God and He grants it to whomever He wants. The blessings of God are great. +","तुम अपने परवरदिगार के (सबब) बख़्शिस की और बेहिश्त की तरफ लपक के आगे बढ़ जाओ जिसका अर्ज़ आसमान और ज़मीन के अर्ज़ के बराबर है जो उन लोगों के लिए तैयार की गयी है जो ख़ुदा पर और उसके रसूलों पर ईमान लाए हैं ये ख़ुदा का फज़ल है जिसे चाहे अता करे और ख़ुदा का फज़ल (व क़रम) तो बहुत बड़ा है +","tum apne paravardigar ke sabab bashis ki aur behisht ki taraph lapak ke aage ba jao jiska arz aasman aur zamin ke arz ke barabar hai jo un logon ke lie taiyar ki gayi hai jo uda par aur uske rasoolon par eeman lae hain ye uda ka phazal hai jise chahe ata kare aur uda ka phazal v ram to bahut bara hai +",3,5,positive,negative,positive +"Legislators must always remember that as representatives of the people and custodians of public interests and rights, they have to be extremely careful in matters of legislation, money and finance. +","विधायकों को सदैव याद रखना चाहिए कि जन प्रतिनिधि और जनहित संरक्षक के रूप में उन्हें विधान, धन और वित्त संबंधी मामलों में अत्यंत सतर्क रहना होगा। +","legislators ko sadaiv yad people chahie ki public representatives aur interests snrakshak ke roop men unhen legislation , rights aur finance snbndhi matters men atynt careful rahna hoga. +",8,1,neutral,negative,positive +"The cap is designed to create an almost air tight seal around the cervical opening. +","कैप को इस तरह बनाया गया है कि यह गर्भाशय के मुख को इस तरह बंद कर देता है कि हवा भी भीतर नहीं जा सकती। +","cap ko is tarah banaya gaya hai ki yah garbhashay ke opening ko is tarah bnd kar deta hai ki air bhi bhitar nahin ja sakti. +",9,2,neutral,neutral,positive +"Deva Devi, the lovely maiden, was the pride of Brahma 's creation. +","सुंदर कन्या देवदेवी ब्रह्मा की सृष्टि की गौरवपूर्ण रचना थी। +","lovely maiden deva brahma ki creation ki pride rachna thi. +",8,0,positive,neutral,positive +"Registration under Shops and Establishment Act +","दुकानें और प्रतिष्ठान अधिनियम के तहत पंजीकरण +","shops aur establishment act ke tahat registration +",10,0,neutral,neutral,neutral +"There is also an international dimension to the problem that has not been addressed except for our having shouted from the rooftops that Pakistan is responsible for cross - border terrorism. +","समस्या का अंतरराष्ट्रीय पहलू भी है जिस पर कभी गौर नहीं किया गया, सिर्फ यही कहा जाता रहा कि सीमा पार से आतंकवाद को बढवा देने के लिए पाकिस्तान दोषी है. +","samasya ka international dimension bhi hai jis par kabhi gaur nahin kiya gaya, sirph yahi kaha jata raha ki sima responsible for cross ko badhva dene ke lie pakistan doshi hai +",5,5,negative,negative,negative +"But the physical love is only a bridge to cross over to the other bank葉he Annihilation of self. +","पर शारीरिक प्रेम दूसरे तट-आत्म-हनन-पर पहुँचने का सेतु मात्र है। +","par physical love doosre tat-aatm-hanan-par pahunchne ka bridge matr self +",6,1,neutral,neutral,positive +"He felt as if the surroundings were embracing him and the sky was within reach. +","उसे ऐसा लग रहा था मानो चारों दिशाएं उसे निविड़ता से घेर रही हों, आकाश मानो उसे छू रहा हो। +","use aesa lag raha tha mano charon dishaen use nivirta se gher rahi hon, sky mano use chhoo raha ho. +",9,2,positive,negative,neutral +"Soon he was seeking terms with the British. +","शीग्र ही मानसिंह अंग्रेजों के साथ सौदे बाजी करने तात्या टोपे लगा। +","shigr hi mansinh angrejon ke sath saude baji karne tatya tope terms +",8,1,neutral,neutral,neutral +"by taking advantage of the fact that someone has given us the K, +","कि इस तथ्य का लाभ लेने के द्वारा किसी ने हमें K दिया है, +","ki is fact ka taking advantage ke dvara kisi ne hamen K diya hai, +",6,3,neutral,neutral,positive +"Language can't math me. +","भाषा मेरा गणित नहीं समेट सकती. +","language mera ganit nahin samet sakti +",9,0,negative,negative,neutral +"We dedicate this sacred day to their memory. +","आज का यह पवित्र दिन हम उनकी स्मृति में समर्पित करते हैं। +","aaj ka yah sacred day ham unki memory men samarpit karte hain. +",9,1,positive,neutral,neutral +"Writing folder permissions, please wait... +","फ़ोल्डर अनुमतियाँ लिख रहा है, कृपया प्रतीक्षा करें... User +","writing folder permissions raha hai, kripya wait karen User +",6,6,neutral,neutral,positive +"I 'll try my best and see if I can be of any help. +","तुम्हे दुख में देखकर मुझे भी दुख हो रहा है, इसलिए तुम लोगों को बचाने की मैं जी-जान से कोशिश करूंगा। +","tumhe dukh men dekhakar mujhe bhi dukh ho raha hai, islie tum logon ko bachane ki main ji-jan se koshish karoonga. +",10,0,positive,neutral,positive +"Technologies that enable efficient use of biomass are becoming prevalent in rural areas. +","जैव ईंधन के प्रभावी उपयोग को सुरक्षित करती प्रौद्योगिकियाँ ग्रामीण क्षेत्रों में फैल रहीं हैं। +","jaiv eendhan ke prbhavi upyog ko surakshit karti praudyogikiyan gramin kshetron men phail rahin hain. +",7,2,positive,positive,positive +"The indo function is installed in all aircrafts of the company. +","कंपनी के सभी विमानों में इंडो फलन संस्थापित किया गया है। +","company ke sabhi aircrafts men indo function snsthapit kiya gaya hai. +",8,2,neutral,neutral,neutral +"And this is what he ended up concluding that he saw. +","और यह वो था जो उन्होंने निष्कर्ष निकाला कि उन्होंने क्या देखा। +","aur yah vo tha jo unhonne nishkarsh nikala ki unhonne kya dekha. +",5,8,neutral,negative,neutral +"Overcrowding and outstanding registrations kept increasing . +","भीड़ भाड़ तथा शेष पंजीकरण की संख़्या में वृद्धि होती गयी . +","bhir outstanding tatha shesh registrations ki snya men vriddhi hoti gayi +",5,3,negative,neutral,positive +"I was born in Mexico, I grew up in Mexico +","मैं मेक्सिको में पैदा हुआ, मेक्सिको में बड़ा हुआ +","i mexico men paida huaa , mexico men bara huaa +",8,0,neutral,negative,neutral +"He said, “Do not fear, I am with you, I hear and I see. +","फ़रमाया तुम डरो नहीं मैं तुम्हारे साथ हूँ (सब कुछ) सुनता और देखता हूँ +","farmaya tum daro nahin main tumhare sath hoon sab kuchh sunta aur dekhta hoon +",8,3,positive,neutral,positive +"These episodes may have insidious onset, may be prolonged and may sometimes recur even after taking some glucose. +","यह अक़्सर धीरे शुरू होती है, काफी लंबी चलती है तथ कभी-कभी ग़्लूकोज का सेवन करने के बाद भी हो सकती है. +","yah asar dhire shuroo hoti hai , kaphi lnbi chalti hai episodes kabhi-kbhi glucose ka sevan karne ke bad bhi ho sakti hai +",7,1,negative,negative,neutral +"A papilionaceous flower has a corolla, usually with five petals that include a large upper petal, the vexillum. +","एक कोरोला का तितली जैसा फूल जिस की पांच पंखुड़ियो में एक सबसे उपरी लंबी पत्ती जो होती है ध्वज। +","ek corolla ka large jaisa flower jis ki panch pnkhuriyo men ek sabse upper lnbi patti jo hoti hai dhvaj. +",7,3,neutral,neutral,neutral +"Nibbles couldn 't find pixmap file:% s Please check your Nibbles installation +","निब्बल्स पिक्समेप फ़ाइल:% s ढूंढ नहीं सका. कृपया अपना निब्बल्स संस्थापना जांचें +","pixmap file fail: s dhoondh nahin couldn kripya apna file snsthapna janchen +",4,1,negative,neutral,positive +"A venture capital fund set up as a company shall be wound up in accordance with the provisions of the Companies Act, 1956 (1 of 1956). +","एक कंपनी के रूप में स्थापपित उद्यम पूंजी निधि को कंपनी अधिनियम 1956 (1956 का 1) के प्रावधानों के अनुसार समाप्त कर दिया जाएगा। +","ek company ke roop men sthappit venture poonji fund ko company act 1956 1956 ka 1 ke provisions ke accordance samapt kar diya jaega. +",7,4,neutral,neutral,neutral +"and it 's not finally, we could keep going - - +","नही, यह फईनल नहीं है हम आगे जा सकते है. +","nahi , yah pheenal nahin hai ham aage ja sakte hai +",8,3,negative,neutral,neutral +"And the earth throws up her burdens (from within), +","और धरती अपने बोझ बाहर निकाल देगी, +","aur earth apne burdens bahar nikal degi, +",8,1,negative,neutral,negative +"have shown that people who punish cheaters in economic games +","दिखाया है कि जो लोग लेन-देन वाले खेलों में धोखेबाज़ों को सज़ा देते हैं, +","dikhaya hai ki jo people len-den vale games men cheaters ko saza dete hain , +",8,2,neutral,negative,negative +"India and Bangladesh are interlinked like no other nations on earth. +","भारत और बांग्लादेश विश्व के किसी भी अन्य देश से, कहीं अधिक पारस्परिक ढंग से जुड़े हुए हैं। +","india aur bangladesh vishv ke kisi bhi other nations se , kahin adhik parasprik earth se jure hue hain. +",7,2,neutral,neutral,positive +"Common software for accounting has been finalised by NABARD and sent to 20 States for implementation. +","लेखांकन के लिए कॉमन सॉफ्टवेयर को नाबार्ड द्वारा अंतिम रूप दिया गया और इसे कार्यान्वयन के लिए 20 राज्यों को भेज दिया गया है. +","accounting ke lie common software ko nabard dvara antim roop diya gaya aur ise implementation ke lie 20 states ko bhej diya gaya hai +",5,5,neutral,neutral,neutral +"Transport Policy which includes fiscal concessions, and policy guidelines for rapid development of the mode and to encourage private sector participation in development of infrastructure and ownership and operation of inland vessels. +","इस नीति में अंतर्देशीय जहाजों के संचालन, स्वा मित्व और ढांचागत विकास में निजी क्षेत्र को बढ़ावा देने के लिए कई वित्तीय रियायतें और मार्ग दर्शन मौजूद हैं। +","is niti men antardeshiy jahajon ke snchalan, sva mitv aur development of infrastructure niji kshetr ko baava dene ke lie kee vittiy riyayten aur marg darshan maujood hain. +",8,1,neutral,neutral,positive +"Particulars to be furnished in respect of gratuity funds. +","उपदान निधियों की बाबत दी जाने वाली विशिष्टियां +","gratuity funds ki furnished in respect vali furnished +",4,5,neutral,neutral,positive +"Rest house means a building used for shelter by travelers. +","विश्राम गृह का अर्थ उस इमारत से होता है, जिसका प्रयोग यात्रियों द्वारा आश्रय के लिए किया जाता है। +","rest house ka arth us imarat se hota hai, jiska pryog shelter by travelers ke lie kiya jata hai. +",6,1,neutral,neutral,neutral +"The first book written by him was Batris Sinhasan on the story of the legendary Vikramaditya as a dispenser of justice. +","उसके द्वारा लिखी गई पहली पुस्तक न्याय की रक्षा करने वाले विक्रमादित्य की लोक-कथा पर आधारित बत्तीस सिंहासन थी। +","uske dvara likhi gee book written nyay ki raksha karne vale vikrmadity ki lok-ktha par aadharit battis sinhasan thi. +",6,5,neutral,neutral,positive +"In tapeworm infestation human are the primary host. +","फीताकृमि ग्रसन में मनुष्य प्राथमिक पोषी या आश्रयी है +","phitakrimi grasan men manushy prathmik poshi ya aashryi hai +",9,2,neutral,negative,neutral +"Some of the accused protested against being treated as common cirminals, and not as political prisoners, who had declared open war against the Crown. +","कुछ अभियोगियों ने, जिन्होंने राज के खिलाफ खुले युद्ध की घोषणा की थी, अपने साथ राजनैतिक बंदियों की जगह पर आम अपराधियों जैसा व्यवहार किये जाने का विरोध किया। +","kuchh abhiyogiyon ne , jinhonne raj ke khilaph open war ki ghoshna ki thi , apne sath political prisoners ki jagah par common apradhiyon jaisa vyavhar kiye jane ka virodh kiya. +",8,1,negative,negative,negative +"The result of the operation is {0: # # 0. # # #}. +","इस गणना का परिणाम है {0: ##0. ###} +","is ganna ka result hai 0: 0 +",7,0,neutral,positive,neutral +"E language technology in the private - public partnerships to promote +","ङ. भाषा प्रौद्योगिकी में निजी-सार्वजनिक भागीदारी को बढ़ावा देना +","e language technology men niji-sarvajnik partnerships ko baava dena +",6,1,neutral,neutral,positive +"Look at the likes of Gandhi who achieved so much through pacifism. +","गांधी जैसे लोगों को देखें जिन्होनें शांतिवाद के माध्यम से महान उपलब्धियां हासिल की हैं. +","gandhi jaise logon ko dekhen jinhonen shantivad ke madhyam se mahan upalabdhiyan hasil ki hain +",8,3,positive,neutral,positive +"Purchasing of commodities in the market is such a way that the buyers are in a position to have control over the price. +","बाजार में निहित स्वार्थों वाले व्यक्तियों द्वारा माल की इस प्रकार खरीद करना जिससे वे बाजार पर मूल्य नियन्त्रण स्थापित करने में सफल हो जाएं। +","bajar men nihit svarthon vale vyaktiyon dvara mal ki is prkar kharid karna jisse ve bajar par mooly niyantran sthapit karne men saphal ho jaen. +",8,4,neutral,neutral,neutral +"Intellectual property and the rule of laws or trait, and trademarks, and IP +","बौद्धिक संपदा और कानून या विशेषता है, और ट्रेडमार्क, और आई पी के नियम +","intellectual property aur kanoon ya trait hai , aur trademarks , aur aaee pi ke rule +",7,0,neutral,neutral,positive +"I am concerned with matters of consequence. +","मैं … मैं गंभीर व्यक्ति हूँ न, मुझे बेकार की बातों से कोई दिलचस्पी नहीं। +","main main gnbhir vyakti hoon n, mujhe concerned with matters se koee dilachaspi nahin. +",5,4,neutral,neutral,neutral +"The President said that Legislative Assembly is the master of Executive in matters of taxation and finance. +","राष्ट्रपति ने कहा कि विधान सभा करारोपण तथा वित्त के मामले में कार्यपालिका की स्वामी है। +","rashtrapti ne kaha ki legislative assembly taxation and finance ke executive in matters ki svami hai. +",7,1,neutral,neutral,neutral +"“If you prick us, do we not bleed, +","“अगर तुम हमें काटते हो, तो क्या हमारा खून नहीं बहता, +","agar tum hamen katte ho , to kya hamara khoon nahin bahta , +",9,2,negative,neutral,negative +"The verses of Hindu poets are also marked by this dawning romanticism. +","हिंदू कवियों को कवितांए भी स्व्च्छंतावाद के इस उदय को प्रकट करती हैं. +","hindu poets ko verses bhi romanticism ke is uday ko prakat karti hain +",9,2,neutral,neutral,positive +"Static economy will dislocate all the developmental plans. +","स्थिर अर्थव्यवस्था सभी विकासात्मक योजनाओं को अस्त-व्यस्त कर देगी। +","static economy sabhi developmental plans ko ast-vyast kar degi. +",9,2,negative,negative,neutral +"Poor labour - management relationship and associated low workers' morale and low productivity, strikes, lockouts, etc. +","खराब श्रम प्रबंधन संबंध और कर्मचारियों का सहबद्ध मनोबल कम होना तथा कम उत्पादकता, हड़तालें, तालाबंदियां इत्या दि। +","poor labour management relationship aur karmchariyon ka sahabaddh manobal kam hona tatha kam utpadakta, hartalen, talabndiyan itya di. +",6,5,negative,neutral,negative +"Adjustment in relation to circumstances. +","परिस्थितियों के अनुरुप ढालने की प्रक्रिया। +","circumstances ke anurup adjustment ki prakriya. +",9,1,neutral,neutral,neutral +"The notion of CSR is not new to India. +","कॉरपोरेट सामाजिक उत्तरदायित्व का विचार भारत के लिए नया नहीं है। +","notion samajik uttardayitv ka vichar bharat ke lie naya nahin hai. +",8,1,neutral,neutral,neutral +"PRESIDENT RELEASES COMMEMORATIVE POSTAGE STAMP ON LATE SHRI RAMGOPAL JI MAHESHWARI, Rashtrapati Bhavan : 20.11.2012 +","राष्ट्रपति ने स्वर्गीय श्री रामगोपाल जी माहेश्वरी पर स्मारक डाक टिकट जारी किया, राष्ट्रपति भवन : 20.11.2012 +","rashtrapti ne svargiy shri ramgopal ji maheshvri par commemorative postage stamp jari kiya, rashtrapti bhavan : 20112012 +",9,0,neutral,neutral,neutral +"Which has been countersigned in a correct / proper manner. +","जो यथोचित ढंग से प्रतिहस्ताक्षरित किए गए हैं। +","jo proper manner se countersigned kie ge hain. +",7,5,neutral,neutral,neutral +"Unless you realise that the world is a manifestation of divinity , as long as you do not realise within yourself that the world you see around you , the country in which you live are manifestations of divinity , then all these are unreal . +","जब तक आप यह अनुभूति नहीं करते हैं कि सारा विश्व ईश्वरत्व की अभिव्यक्ति है , जब तक आप अपने भीतर यह अनुभव नहीं करते हैं कि यह संसार जिसे आप अपने चारों और देखते हैं , और यह देश , जिसमें आप रहते हैं , ईश्वरत्व की अभिव्यक्ति है , तब तक ये सभी अवास्तविक हैं . +","jab tak aap yah anubhooti nahin karte hain ki sara world manifestation ki abhivyakti hai , jab tak aap apne bhitar yah anubhav nahin karte hain ki yah snsar jise aap apne charon aur dekhte hain , aur yah country , jismen aap rahte hain , manifestation ki abhivyakti hai , tab tak ye sabhi unreal hain +",6,5,negative,neutral,positive +"The opponents were waiting for the opportune moment to strike. +","प्रतिद्वंद्वी प्रहार हेतु उपयुक्त समय की प्रतीक्षा कर रहा था। +","prtidvndvi prhar hetu opportune moment ki prtiksha kar raha tha. +",8,0,neutral,neutral,positive +"Questions may be about the treatment itself, for example: +","सवाल वैद्यकिय उपचार के बारे में भी हो सकते हैं, जैसे कि उदाहरण के तौर पर: +","questions vaidykiy treatment ke bare men bhi ho sakte hain , jaise ki udaharan ke taur par : +",8,2,neutral,neutral,neutral +"lesbians enjoy tribadism because they can involve their whole bodies. +","समलैंगिक परस्पर स्त्री मैथुन का आनंद लेते हैं ताकि वे अपने पूरे शरीर को मिला सकें। +","lesbians paraspar stri maithun ka aannd lete hain tribadism ve apne whole bodies ko mila saken. +",6,3,positive,neutral,positive +"Continue or suspend the execution of the program +","जारी रखें या सस्पेंड का प्रोग्राम +","continue rakhen ya suspend the execution +",7,0,neutral,negative,negative +"How to prevent ama in day - to - day life and, perhaps, be magically relieved from all sorts of problems ranging from plain 'not feeling well' to arthritis? +","रोजमर्रा की जिंदगी में आंव की रोकथाम कैसे की जाए और तबीयत ठीक नहीं है से लेकर गठिया तक की सभी प्रकार की समस्याओं से किस प्रकार जादुई ढंग से मुक्ति पाई जाये? +","rojamarra ki jindgi men aanv ki roktham kaise ki jae aur tabiyat thik nahin hai se lekar gathiya tak ki sabhi prkar ki samasyaon se kis prkar jaduee dhng se mukti paee jaye +",4,6,neutral,negative,negative +"If you smoke you are two and half times more likely to have a heart attack than a non smoker . +","यदि आप सिग्रेट पीते हैं , तो धूम्रपान न करने के वाले के स्थान पर आप को ढाई गुना अधिक दिल का दऔरा पड़ने की सभृभावना है . +","yadi aap sigret pite hain , to non n karne ke vale ke sthan par aap ko half times adhik heart ka likely parne ki sabhribhavna hai +",5,3,negative,neutral,positive +"Font for text with fixed width, such as code examples. +","कोड उदाहरण के रूप में, फिक्स्ड चौड़ाई के साथ पाठ के लिए फ़ॉन्ट. +","kod udaharan ke roop men, fixed width ke sath path ke lie font +",8,2,neutral,neutral,neutral +"But the very spirit of Yoga is this, to make the exceptional normal, and to turn that which is above us and greater than our normal selves into our own constant consciousness. +","परन्तु योग की वास्तविक भावना ही यह है कि अपवाद को सामान्य बनाया जाये और जो हमारे ऊपर है, हमारे साधारण स्व से महत्तर है उसे अपनी शाश्वत चेतना बना लिया जाये। +","parantu yoga ki vastvik spirit hi yah hai ki exceptional ko normal banaya jaye aur jo own selves hai , own sadharan constant se greater hai use apni shashvat consciousness bana liya jaye. +",8,3,neutral,positive,positive +"So your left side of the equation is 3 times +","तो आपके समीकरण की उल्टी और 3 गुना है. +","to left equation ki side aur 3 times hai +",7,3,neutral,negative,neutral +"The free reeds are very much more scarce in India and can be seen in the harmonium and the rare instrument , khung or rusem , of the tribal areas of eastern India . +","स्वतंत्र पत्तियों का चलन भारत में बहुत कम है और हारमोनियम तथा पूर्वी भारत के आदिवासी क्षेत्र के दुर्लभ वाद्य खुंग अथवा रूसेम में देखने को मिलती हैं . +","free reeds ka chalan bharat men bahut kam hai aur harmoniyam tatha poorvi bharat ke aadivasi kshetr ke durlabh vady khung or rusem men dekhne ko milti hain +",6,5,neutral,positive,positive +"In his will Vitthal bhai patel named all his billions of property to Subash babu. +","विठ्ठल भाई पटेल ने अपनी वसीयत में अपनी करोडों की संपत्ती सुभाषबाबू के नाम कर दी। +","vitthal bhai patel ne apni vasiyat billions of property ki snpatti property to subash kar di. +",5,0,neutral,neutral,neutral +"The vertical text alignment, from 0 (top) to 1 (bottom). +","लंबबत पाठ समायोजन, 0 (शीर्ष) से 1 (तल) में +","vertical text samayojan, 0 shirsh se 1 tal bottom +",5,6,neutral,neutral,positive +"I convey my special greetings to members of our Armed Forces, Para-military Forces and Internal Security Forces. +","मैं सशस्त्र बलों, अर्द्धसैनिक बलों और आंतरिक सुरक्षा बलों के सदस्यों को अपनी विशेष बधाई देता हूं। +","armed forces balon, para-military forces aur internal security forces ke sadasyon ko apni convey my special hoon. +",7,0,positive,neutral,positive +"Tall table, tall chairs! Well, I haven 't made them yet. +","लंबी मेज, लंबी कुर्सियां! खैर, मैंने इन्हें अभी तक पूरा नहीं किया है. +","tall table , tall kursiyan ! khair , mainne inhen abhi tak poora nahin kiya hai +",8,3,neutral,neutral,positive +"The set that includes all of the elements of concern in a given study. +","प्रदत्त अध्ययन में सभी विषयगत अवयवों को धारण किया हुआ समुच्चय. +","pradatt study concern sabhi vishayagat avayvon ko dharan kiya huaa set +",7,1,neutral,neutral,neutral +"Foot - wear should not be uncomfortable and should not hamper the free movements of the feet. +","जूते को असुविधा-जनक और पैर की सुचारु गति में बाधा पहुंचाने वाला नहीं होना चाहिए। +","wear ko asuvidha-janak aur foot ki sucharu movements men badha pahunchane vala nahin hona chahie. +",5,1,neutral,neutral,negative +"TRUE if this printer can accept PDF +","सही अगर यह मुद्रक PDF स्वीकार कर सकता है +","true agar yah printer pdf svikar kar sakta hai +",10,0,neutral,neutral,positive +"If the opinion so declared is again challenged, the Speaker directs that the votes be recorded either by operating the automatic vote recorder or by using 'Aye' and 'No' slips in the House or by members going into the lobbies. +","यदि इस प्रकार घोषित राय को पुन: चुनौती दी जाती है तो अध्यसक्ष आदेश देता है कि या तो स्वचालित मत अभिलेखन उपकरण को चालू करके या सदन में? हां? या? या? की पर्चियों का प्रयोग करके या सदस्यों द्वारा लाबियों में जाकर मत अभिलिखित किए जाएं. +","yadi is opinion so declared ko pun: chunauti di jati hai to adhyasaksh aadesh deta hai ki ya to svchalit mat abhilekhan upakaran ko chaloo karke ya sadan men han ya ya ki parchiyon ka pryog karke ya sadasyon dvara labiyon men jakar mat abhilikhit kie jaen +",5,4,neutral,neutral,negative +"A sudden involuntary contraction of one or more muscle +","अचानक होने वाला एक या अधिक मांसपेशियों का संकुचन +","sudden hone involuntary ek ya adhik muscle ka contraction +",6,1,neutral,neutral,neutral +"He said that their job is multifarious. He advised them to always remember that their conduct and behaviour is a reflection not only of the police force but is actually a projection of the entire administration before the common people. +","उन्होंने कहा कि उनका कार्य बहुआयामी है। उन्होंने सलाह दी कि उन्हें यह सदैव याद रखना चाहिए कि उनके व्यवहार और आचरण से न केवल पुलिस सेवा के बारे में नजरिया बनाता है वरन् वह वास्तव में आम जनता के सामने पूरे प्रशासन का प्रतिबिंब होता है। +","unhonne kaha ki unka job is multifarious unhonne salah di ki unhen yah sadaiv yad rakhna chahie ki unke vyavhar aur aacharan se n keval pulis seva ke bare men najriya banata hai varan vah vastav men aam janta ke samne poore prshasan ka prtibinb hota hai. +",7,1,neutral,neutral,neutral +"Well an idea is that that strategy, that learning strategy, +","एक आयडिया ये है कि युक्ति लगाना, और इसे सीखना +","ek idea ye hai ki strategy lagana , aur ise sikhna +",8,1,neutral,neutral,positive +"They said, 'Nay, but we found our fathers so doing.' +","उन्होंने कहा, ""नहीं, बल्कि हमने तो अपने बाप-दादा को ऐसा ही करते पाया है।"" +","unhonne kaha, nhin, nay hamne to apne fathers ko aesa hi karte paya hai. +",9,2,neutral,neutral,neutral +"Opens all branches of the file tree +","फ़ाइल ट्री की सभी शाखाओं को खोलता है +","file tree ki sabhi opens all branches hai +",5,4,neutral,neutral,neutral +"% 1 has been idle for% 2 and% 3. +","% 1 निष्क्रिय है% 2 और% 3 से. +","1 idle hai 2 aur 3 se +",7,5,neutral,neutral,neutral +"People of Ahmedia community do not accept Muhammed as the last prophet and also call themselves the followers of Islam. +","अहमदिय्या समुदाय के लोग मुहम्मद साहब को अन्तिम नबी नहीं मानते हैं और स्वयं को इस्लाम का अनुयायी भी कहते हैं। +","ahmedia community ke people muhammad sahab ko last nabi nahin mante hain aur svyn ko islam ka followers bhi kahte hain. +",8,1,negative,negative,negative +"but whoever seeks beyond that—it is they who are the transgressors) +","किन्तु जिस किसी ने इसके अतिरिक्त कुछ और चाहा तो ऐसे ही लोग सीमा का उल्लंघन करनेवाले है।- +","kintu jis kisi ne iske atirikt kuchh aur thatit to aese hi transgressors sima ka ullnghan karnevale hai.- +",7,1,neutral,neutral,neutral +"Radha today these eyes beheld; A maid she is unparalleled. +","राधा को देखा है इन आँखों ने आज, वह बाला है अप्रतिभ। +","radha ko beheld hai in eyes ne aaj, vah bala hai aprtibh. +",7,4,positive,neutral,neutral +"But your Lord does not destroy habitations without having sent an apostle to their metropolis to read out Our commandments to them. We would never have destroyed cities if their inhabitants were not given to wickedness. +","तेरा रब तो बस्तियों को विनष्ट करनेवाला नहीं जब तक कि उनकी केन्द्रीय बस्ती में कोई रसूल न भेज दे, जो हमारी आयतें सुनाए। और हम बस्तियों को विनष्ट करनेवाले नहीं सिवाय इस स्थिति के कि वहाँ के रहनेवाले ज़ालिम हों +","lord commandments to habitations ko vinasht karnevala nahin jab tak ki unki kendriy basti men koee apostle n bhej de , jo hamari aayten sunae. aur ham habitations ko vinasht karnevale nahin sivay is sthiti ke ki vahan ke rahnevale zalim hon +",8,2,neutral,negative,positive +"Why give BCG vaccine only on the left upper arm? +","बीसीजी का टीका केवल बाईं भुजा पर ऊपर क्यों लगाया जाता है? +","bcg ka vaccine give arm upper par oopar kyon lagaya jata hai +",7,2,neutral,neutral,neutral +"Now, let 's think about what that is +","तो हम इसके बारे मे सोचते हैं वो क्या है +","to ham iske bare me sochte hain vo kya hai +",9,1,neutral,neutral,neutral +"No update information available. Please check manually and ask the developer to support OI Update in the future. +","कोई अद्यतन जानकारी उपलब्ध नहीं है. मैन्युअल की जाँच करें और डेवलपर पूछने के लिए भविष्य में पुराना अद्यतन समर्थन. +","koee update information available nahin hai mainyual ki oi karen aur developer poochhne ke lie future men purana update samarthan +",7,0,neutral,neutral,positive +"the simplest way to do it is to tell their story, +","इसका सबसे आसान तरीका है उनकी कहानी कहो, +","iska sabse simplest way hai unki story kaho , +",9,1,neutral,neutral,neutral +"They said: ""We swear by Allah! Indeed Allah has chosen you in preference to us and we were truly guilty."" +","उन्होंने कहा, ""अल्लाह की क़सम! आपको अल्लाह ने हमारे मुक़ाबले में पसन्द किया और निश्चय ही चूक तो हमसे हुई।"" +","unhonne kaha , allah ki guilty ! aapko allah ne hamare preference men pasand kiya aur nishchay hi chook to hamse huee. +",7,3,negative,positive,negative +"This message does not contain the header information required for this action. +","संदेश शीर्षिका सूचना नहीं रखता है इस क्रिया के लिए जरूरी. +","sndesh header information nahin rakhta hai is action ke lie required +",7,3,negative,negative,neutral +"Putting on a stiff expression, he went on. +","चेहरे पर कड़ी-सी भाव-मुद्रा लाकर उसने आगे कहा, +","expression par kari-si bhav-mudra lakar usne aage kaha, +",7,1,neutral,neutral,neutral +"So let 's round each of these numbers. +","चलो इन दोनो संख्या को राउंड ऑफ करते है. +","chalo in dono numbers ko round ऑph karte hai +",7,6,neutral,neutral,neutral +"Connecting to the server, please wait... +","सर्वर से कनेक्ट कर रहा है, कृपया इंतजार करें... +","server se kanekt kar raha hai , wait intjar karen +",5,0,neutral,neutral,positive +"A student can choose to appear in one or more subjects in an examination and earn credits till he / she completes all five subjects for final certification within a stipulated period of five years. +","शिक्षार्थी किसी परीक्षा में एक अथवा अधिक विषयों की परीक्षा में बैठ सकता है और पाँच वर्षों की निर्धारित अवधि में प्रमाणपत्र के लिए सभी पांचों विषयों को पूरा करने तक क्रेडिट अर्जित कर सकता है। +","shiksharthi kisi pariksha men ek athva adhik vishyon ki pariksha men baith sakta hai aur panch varshon ki stipulated period men prmanapatr ke lie sabhi panchon vishyon ko poora karne tak earn credits kar sakta hai. +",8,2,neutral,neutral,positive +"Your upcoming events will be displayed here when you select a date with events. +","आपकी आने वाली घटनाओं को प्रदर्शित किया जाएगा जब आप घटनाओं के साथ एक तिथि का चयन करेंगे. +","aapki aane vali upcoming ko pradarshit kiya jaega jab aap upcoming ke sath ek date ka chayan karenge +",6,3,neutral,neutral,neutral +"Said He, 'This is for Me a straight path: +","ख़ुदा ने फरमाया कि यही राह सीधी है कि मुझ तक (पहुँचती) है +","uda ne pharmaya ki yahi straight path hai ki mujh tak phunchti hai +",9,0,positive,neutral,positive +"What are they waiting for – except the Last Day, that it may suddenly come upon them while they are unaware? +","क्या वे बस उस (क़ियामत की) घड़ी की प्रतीक्षा कर रहे है कि वह सहसा उनपर आ पड़े और उन्हें ख़बर भी न हो +","kya ve bas us iyamat ki ghari ki waiting kar rahe hai ki vah suddenly unapar aa pare aur unhen bar bhi n ho +",8,1,neutral,neutral,negative +"Are you sure you want to permanently delete these files? +","क्या आप इन फ़ाइलों को स्थायी रूप से हटाना चाहते हैं? +","sure aap in files ko sthayi roop se delete chahte hain +",6,1,neutral,neutral,positive +"Process of exercising control over trading in contraband goods. +","विनिषिद्ध/वर्जित वस्तुओं के व्यापार पर नियन्त्रण के लिए स्थापित प्रक्रिया। +","contraband goods ke control over trading ke lie sthapit process +",7,1,neutral,neutral,neutral +"Place the king of hearts next to the queen of hearts. +","लाल पान की बेगम के बगल में लाल पान के वादशाह को रखें. +","lal pan ki queen of hearts men lal place the king ko rakhen +",5,2,neutral,neutral,positive +"Then as for him whose good deeds are preponderant, these are the successful. +","फिर जिनके पलड़े भारी हुए तॊ वही हैं जो सफल। +","phir jinke good bhari hue preponderant vahi hain jo successful +",6,0,positive,positive,positive +"He spread out the earth for the people. +","और उसी ने लोगों के नफे क़े लिए ज़मीन बनायी +","aur usi ne people ke earth e lie zamin banayi +",7,2,positive,neutral,neutral +"When Our revelations are recited to him, he says, “Legends of the ancients. ” +","जब हमारी आयतें उसे सुनाई जाती है तो कहता है, ""ये तो पहले की कहानियाँ है।"" +","jab hamari revelations use sunaee jati hai to kahta hai , ye to pahle ki ancients hai. +",8,4,neutral,neutral,neutral +"Click here to restore hidden windows. +","छुपे विंडोज़ पुनर्स्थापित करने हेतु यहां क्लिक करें. +","hidden windows punarsthapit karne hetu yahan click karen +",8,1,neutral,neutral,positive +"The region was endemic for malaria, Kala - a - zar and leprosy. +","यह क्षेत्र मलेरिया, कालाजार और कुष्ठ रोग से प्रभावित था। +","yah region malaria , kalajar aur leprosy endemic se prbhavit tha. +",9,1,negative,negative,neutral +"The file does not appear to be a playlist +","यह फ़ाइल प्लेलिस्ट नहीं दिखता है +","yah file playlist nahin dikhta hai +",10,0,neutral,neutral,neutral +"Yet they say: ""When will this decree come, if you speak the truth?"" +","वे कहते है कि ""यह फ़ैसला कब होगा, यदि तुम सच्चे हो?"" +","ve kahte hai ki yah decree kab hoga, yadi tum speak ho +",3,2,neutral,neutral,positive +"Remember, when your Lord said to the angels: ""I have to place a trustee on the earth,"" they said: ""Will You place one there who would create disorder and shed blood, while we intone Your litanies and sanctify Your name?"" And God said: ""I know what you do not know."" +","और याद करो जब तुम्हारे रब ने फरिश्तों से कहा कि ""मैं धरती में (मनुष्य को) खलीफ़ा (सत्ताधारी) बनानेवाला हूँ।"" उन्होंने कहा, ""क्या उसमें उसको रखेगा, जो उसमें बिगाड़ पैदा करे और रक्तपात करे और हम तेरा गुणगान करते और तुझे पवित्र कहते हैं?"" उसने कहा, ""मैं जानता हूँ जो तुम नहीं जानते।"" +","aur yad karo jab tumhare rab ne pharishton se kaha ki main dharti men mnushy ko khalifa sattadhari bananevala hoon. unhonne kaha, kya usmen usko rakhega, jo usmen bigar paida kare aur raktpat kare aur ham tera gungan karte aur tujhe pavitr kahte hain usne kaha, main janta hoon jo tum nahin jante. +",4,6,neutral,neutral,positive +"Religions whether Christianity, Buddhism, Hinduism or Theosophy or any other system can only take us to the one point where all religions meet, and no further. +","धर्म-वह चाहे ईसाई, बौद्ध, हिंदू हो या थिसोसॉफी या कोई अन्य पंथ-हमें केवल उस बिंदु तक ले जा सकता है जहां सभी धर्म मिल जाते हैं, उससे आगे नहीं। +","religions whether christianity, bauddh, hindoo ho ya thisosphi ya koee any pnth-hmen keval us bindu tak le ja sakta hai jahan sabhi dharm mil jate hain, usse aage nahin. +",7,4,neutral,neutral,negative +"A market study shows that a male turkey sold at 24 weeks of age weighing 10 to 20 kg with expenditure of Rs. 300 to 450 will give a profit of Rs. 500 to 600. +","एक अध्ययन के अनुसार 24 सप्ताह की आयु और 10-20 किलो ग्राम वजन वाले नर मादा को यदि 300 से 450 रुपये में बेचा जाता है तो इसमें करीब 500 से 600 रुपये का लाभ होता है। +","ek study ke anusar 24 weeks ki age aur 10-20 kg gram vajan vale male mada ko yadi 300 se 450 expenditure men becha jata hai to ismen karib 500 se 600 expenditure ka profit hota market +",8,0,neutral,neutral,positive +"So, I need to decipher what I wrote. +","तो, मुझे समझने की जरुरत है कि मैंने क्या लिखा है। +","to , i samajhne ki jarurat hai ki mainne kya likha hai. +",8,2,neutral,negative,neutral +"Now Sind is completely merged in West Pakistan and the very word 'Sind' seems to have disappeared. +","अब सिंध पूर्ण रूप से पश्चिमी पाकिस्तान में विलय हो गया है तथा सिंध शब्द ही मानो लुप्त प्रायः हो गया है। +","ab sindh poorn roop se west pakistan men vilay ho gaya hai tatha sindh shabd hi mano lupt praya ho gaya hai. +",9,2,negative,negative,negative +"Thank you for your letter dated 24 May 1947 regarding the situation in Lahore. 2. +","ता. 30-5-1947 लाहौर की स्थिति के विषय में लिखे गये आपके 24 मई के पत्र के लिए धन्यवाद। +","ta 30-5-1947 lahaur ki sthiti ke vishay men likhe gaye aapke 24 mee ke patr ke lie dhanyvad. +",9,0,neutral,neutral,positive +"The most familiar representative of the family APODIDAE True Swifts is our House Swift Apus affinis PLATE 11. 55 bottom Hindi: Babila or Batasi. +","ऐपोडिडी परिवार की सबसे अधिक आम चिड़िया हमारी घरेलू बतासी या बबीला ही है Apus affinis-प्लेट 11.55-यह डीलडौल में गौरैया से छोटी धुएं जैसी काली होती है। +","aepodidi family ki sabse true bottom chiriya hamari ghareloo swift ya babila hi hai Apus affinis-plet 1155-yah dildaul men gauraiya se chhoti dhuen jaisi kali hoti familiar +",5,3,neutral,neutral,positive +"In this novel, Kunti, a girl from a lower middle class family, is much more courageous than Nisha, born with a silver spoon in her mouth. +","इस उपन्यास में भी निम्न मध्यवर्गीय कुन्ती, सम्पन्न घर कि निसा से अधिक साहसी प्रमाणित होती है। +","is novel men bhi lower middle kunti , sampann ghar ki girl se adhik courageous prmanit hoti family +",8,0,neutral,positive,positive +"Life is not but our worldly life - we die and live, but we will not be resurrected. +","कि हम मरते भी हैं और जीते भी हैं और हम तो फिर (दुबारा) उठाए नहीं जाएँगे हो न हो ये (सालेह) वह शख्स है जिसने खुदा पर झूठ मूठ बोहतान बाँधा है +","ki ham marte bhi hain aur jite bhi hain aur ham to phir dubara resurrected nahin jaenge ho n ho ye saleh vah shakhs hai jisne khuda par jhooth mooth bohtan bandha hai +",6,4,negative,neutral,negative +"Punctuation level set to most. +","विराम चिह्न स्तर सबसे करने के लिए निर्धारित किया है. +","viram punctuation level sabse karne ke lie set kiya hai +",4,2,neutral,neutral,neutral +"The Ministry of Education may take action: - +","शिक्षा मंत्रालय निम्नलिखित विषय में कार्रवाई करें-- +","education ministry nimnlikhit vishay men action karen -- +",8,1,neutral,neutral,neutral +"Ancient sculptures and murals , as can be expected , abound with illustrations of this instrument . +","प्राचीन चित्रों और मूर्तियों में जैसाकि स्पष्ट है , इस वाद्य को अंकित किया गया है . +","ancient murals aur sculptures men jaisaki spasht hai , is instrument ko ankit kiya gaya hai +",8,1,neutral,negative,neutral +"It is sensible to approach the trader first . +","पहले व्यापारी से संपर्क करना बुद्घिमानी होगी । +","pahle trader se snpark karna sensible hogi . +",8,2,neutral,negative,neutral +"Dalhousie wrote his famous minutes on railways in 1853, envisaging a general system for the whole country, and setting out general principles of management, finance and construction. +","डलहौजी ने अपना प्रसिद्ध रेलवे वक़्तव्य सन् 1853 में जारी किया जिसमें उन्होंने पूरे देश के लिए एक ही सामान्य प्रणाली की सिफारिश की और जिसमें व्यवस्था वित्त और निर्माण के सामान्य सिद्धांत भी प्रतिपादित किये. +","dalhousie ne apna famous railways vatavy minutes 1853 men jari kiya whole unhonne poore country ke lie ek hi general system ki sipharish ki aur whole management finance aur construction ke general siddhant bhi prtipadit kiye +",7,1,neutral,neutral,neutral +"This has been built with seven small lave made island and connected to main land by a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska lave made island sat chhote-chhote dvipon dvara huaa hai evn yah pul dvara prmukh bhoo-khnd ke sath jura huaa hai. +",6,6,neutral,neutral,neutral +"The prevailing colour of this breed is black and white. +","इस नस्ल का सामान्य रंग काला और सफेद होता है. +","is breed ka samany colour black aur white hota hai +",9,1,neutral,neutral,neutral +"Intellectual property and the rule of laws or trait, and trademarks, and IP +","बौद्धिक संपदा और कानून या विशेषता है, और ट्रेडमार्क, और आई पी के नियम +","intellectual property aur laws or trait hai, aur trademarks, aur aaee pi ke niyam +",6,1,neutral,neutral,positive +"In last six decades, the poverty ratio has declined from over 60 per cent to less than 30 per cent. +","जबकि निर्मूलन समयबद्ध लक्ष्य। पिछले छह दशकों में गरीबी का अनुपात 60 प्रतिशत से अधिक की पिछली दर से कम होकर30प्रतिशत से नीचे आ चुका है। +","jabki nirmoolan samayabaddh lakshy. pichhle chhah dashkon men garibi ka anupat 60 prtishat se adhik ki pichhli dar se kam hokar30prtishat se niche aa chuka hai. +",3,5,neutral,negative,negative +"Commercial recovery of germanium has been mainly achieved from zinc and zinc - copper - lead ores, germanite and fly ash from coals. +","जर्मेनियम वाणिज्यक रूप में मुख्यतया जिंक, जिंक-तांबा-सीसा अयस्कों, जर्मेनाइट तथा कोयले की फ्लाई एश से प्राप्त होता है। +","jarmeniyam vanijyak roop men mukhyatya jink, jink-tanba-sisa ayaskon, jarmenait tatha koyle ki phlaee esh se prapt hota hai. +",4,7,neutral,neutral,neutral +"I got up and, taking hold of his bloodstained clothes, pulled his leg out. +","मैं उठी और खून से सने उसके कपडों को पकड़ उसकी टांग ऊपर उठा आयी। +","main uthi aur khoon se sane uske kapdon ko pakar uski tang oopar utha aayi. +",4,7,neutral,neutral,neutral +"When something is routed through the account belonging to oneself. +","जब कोई सौदा या लेन-देन ऐसे खाते के माध्यम से किया जा रहा हो जो स्वयं का हो। +","jab koee sauda ya len-den aese khate ke madhyam se kiya ja raha ho jo oneself ka ho. +",5,4,neutral,neutral,neutral +"% 1 has left this channel (% 2). +","(% 1)% 2 ने इस चैनल को छोड़ा. (% 3) +","1 2 ne is left this channel 3 +",5,2,neutral,neutral,negative +"Saponification literally means soap making. +","साबुनीकरण या साबुनीभवन का शाब्दिक अर्थ साबुन निर्माण है. +","sabunikaran ya sabunibhavan ka literally means soap nirman hai +",9,2,neutral,neutral,neutral +"We will get the job done in anyway. +","हम किसी भी तरह से कार्य पूरा कर लेंगे। +","anyway kisi bhi tarah se job poora kar lenge. +",7,1,positive,neutral,neutral +"The poet is trying to create an image of a woman whose whole body is pining away, every limb is turning and twisting and, as described in a sloka mentioned above, the very bed and bed - sheets have become symbols of anguish and torture. +","कवि यहां एक ऐसी नारी के बिम्ब की उदभावना में लगा है जिसकी देह झुर रही है, अंग-अंग मरोड़ खा रहा है और, जैसा एक अन्य सलोक में कहा गया, बिछौना और चादर भी यन्त्रणा का प्रतिरूप बन उठे हैं। +","poet yahan ek aesi woman ke bimb ki udbhavna men whole hai jiski deh jhur rahi hai , ang-ang maror symbols raha hai aur , jaisa ek any sloka men kaha gaya , bed aur sheets bhi yantrna ka image ban uthe hain. +",8,2,negative,negative,negative +"They said: Swear to each other by Allah that we will certainly make a sudden attack on him and his family by night, then we will say to his heir: We did not witness the destruction of his family, and we are most surely truthful. +","वे आपस में अल्लाह की क़समें खाकर बोले, ""हम अवश्य उसपर और उसके घरवालों पर रात को छापा मारेंगे। फिर उसके वली (परिजन) से कह देंगे कि हम उसके घरवालों के विनाश के अवसर पर मौजूद न थे। और हम बिलकुल सच्चे है।"" +","ve aapas men allah ki smen khakar bole , swear avashy usapar aur uske family par night ko chhapa attack phir uske vali heir se kah denge ki swear uske family ke destruction ke avasar par maujood n the. aur swear bilkul sachche hai. +",6,2,neutral,negative,positive +"And this is what we 're designing for. +","और यह है जिसके लिए हम डिजाइन कर रहे हैं. +","aur yah hai jiske lie ham dijain kar rahe hain +",7,3,neutral,neutral,neutral +"A similar provision exists for the Deputy Chairman Rajya Sabha in article 90. +","अनुच्छेद 90 में राज्य सभा के उपसभापति के लिए ऐसा ही प्रावधान हे. +","anuchchhed 90 men rajy sabha in article ke lie aesa hi pravdhan he +",5,6,neutral,neutral,neutral +"And proclaim His Purity, morning and evening. +","सुबह व शाम उसकी तसबीह करते रहो +","morning v proclaim his purity karte raho +",5,0,positive,positive,neutral +"even if you weren 't given any choices. +","यहां तक कि अगर तुम किसी भी विकल्प को देखते हुए नहीं थे। +","yahan tak ki agar tum kisi bhi choices ko dekhte hue nahin the. +",7,3,neutral,neutral,neutral +"Dhanpat Rai Shreevastav, who wrote with pen name Premchand (31 July 1880 - 8 October 1936) was one of the greatest Indian , Hindi and Urdu writers. +","प्रेमचंद (३१ जुलाई १८८० - ८ अक्तूबर १९३६) के उपनाम से लिखने वाले धनपत राय श्रीवास्तव हिन्दी और उर्दू के महानतम भारतीय लेखकों में से एक हैं। +","premchnd ३१ julaee १८८० - ८ aktoobar १९३६ ke upnam se likhne vale dhanapat ray shrivastav hindi and urdu ke mahanatam bhartiy lekhkon men se ek hain. +",8,4,positive,positive,positive +"which is the flower story. +","जो एक फूल की भी कहानी है. +","jo ek flower ki bhi story hai +",9,1,neutral,neutral,neutral +"then do not put me, my Lord, among the wrongdoing lot. ’ +","तो मेरे रब! मुझे उन अत्याचारी लोगों में सम्मिलित न करना। "" +","to lord ! mujhe un wrongdoing logon men sammilit n karna. +",8,4,neutral,negative,neutral +"The following cookies were blocked (third - party cookies are being blocked without exception): +","निम्न कुकी अवरोधित कर दी गई हैं (तृतीय-पक्ष की कुकी को बिना किसी अपवाद के अवरोधित किया जा रहा है): +","following cookies avrodhit kar party gee hain tritiy-paksh ki cookies ko bina kisi exception ke avrodhit kiya ja raha hai : +",6,2,neutral,neutral,negative +"They get upset at the slightest inconvenience and the government officials have a difficult task to bring them round. +","थोड़ी भी असुविधा से वे विचलित हो उठते हैं और सरकारी कर्मचारियों के लिए उन्हें रास्ते पर लाना एक विकट समस्या बन जाती है. +","thori bhi slightest se ve vichlit ho uthte hain aur government officials ke lie unhen round par lana ek difficult samasya ban jati hai +",8,0,negative,negative,negative +"The average goat requires about 3. 5 kilograms of green fodder a day. +","एक बकरी को प्रतिदिन औसतन 3.5 किलोग्राम हरे चारे की आवश्यकता होती है। +","ek bakri ko prtidin average 35 kilograms hare fodder a day hoti day +",7,2,neutral,neutral,neutral +"If you choose to create a new empty project, all changes will be lost. +","यदि आप नई परियोजना बनाने के लिए चुनते हैं, सभी परिवर्तन नष्ट हो जाएंगे. +","yadi aap new project banane ke lie chunte hain , sabhi changes nasht ho empty +",9,1,negative,neutral,negative +"""And the places of worship are for Allah (alone): So invoke not any one along with Allah; +","और यह कि मस्जिदें अल्लाह के लिए है। अतः अल्लाह के साथ किसी और को न पुकारो +","aur yah ki places allah ke lie hai. ata allah ke sath kisi aur ko n invoke +",7,1,neutral,neutral,positive +"Mr Sasidharan with dignitaries in his Paddy field +","गणमान्य व्यक्तियों के साथ श्री शशिधरन उनके धान के खेत में +","dignitaries vyaktiyon ke sath mr shashidharan unke paddy ke field men +",7,2,neutral,neutral,positive +"Can 't pass document URIs to a' Type = Link 'desktop entry +","दस्तावेज़ URI को 'Type = Link' डेस्कटॉप प्रविष्टि में भेज नहीं सकता है +","pass URI ko Type type deskatp entry men uris nahin sakta hai +",6,1,negative,neutral,neutral +"the fuel is just uranium. It 's no more radioactive than it was when you stuck it in, and it' s +","सिर्फ यूरेनियम ईंधन है. यह कोई रेडियोधर्मी अधिक की तुलना में यह जब आप इसे में अटक गया था, और यह है +","s uranium fuel hai yah koee radioactive adhik ki tulna men yah jab aap ise men atak gaya tha , aur yah hai +",7,2,neutral,neutral,negative +"Oncotomy is a good option for treatment. +","अर्बुदछेदन उपचार का उत्तम विकल्प है +","arbudchhedan treatment ka good option hai +",9,0,positive,neutral,positive +"Men (giver) the odds :):):):). Men (giver) the problem :). Men (giver) enjoy :):):):):) +","· पुरुष (Giver) को सहूलियत ☻☻☻☻ · पुरुष (Giver) को परेशानी ☺ · पुरुष (Giver) को आनंद ☻☻☻☻☺ +","men Giver ko odds enjoy men Giver ko problem men Giver ko aannd +",6,0,neutral,negative,positive +"then makes him to die, and buries him, +","फिर उसे मौत दी फिर उसे कब्र में दफ़न कराया +","phir use maut di phir use kabr men buries karaya +",9,0,negative,neutral,negative +"Please let me see when you 're online. Thanks! +","मुझे देखने के लिए जब आप ऑनलाइन हो. धन्यवाद! +","mujhe dekhne ke lie jab aap online ho thanks ! +",8,2,positive,neutral,positive +"Those who were arrogant said, “We reject what you believe in. ” +","तब जिन लोगों को (अपनी दौलत दुनिया पर) घमन्ड था कहने लगे हम तो जिस पर तुम ईमान लाए हो उसे नहीं मानते +","tab jin logon ko apni daulat duniya par ghamand tha kahne lage ham to jis par tum eeman lae ho use nahin mante +",10,0,negative,neutral,negative +"Your God is the One God. But the hearts of those who do not believe in the Hereafter are steeped in rejection of the Truth, and they are given to arrogance. +","तुम्हारा पूज्य-प्रभु अकेला प्रभु-पूज्य है। किन्तु जो आख़िरत में विश्वास नहीं रखते, उनके दिलों को इनकार है। वे अपने आपको बड़ा समझ रहे है +","tumhara poojy-prbhu akela prbhu-poojy god kintu jo aairat men vishvas nahin rakhte , unke hearts ko rejection god ve apne aapko bara samajh rahe hai +",6,1,neutral,positive,positive +"While interpreting the power of it, Supreme Court also said that it is only a tribunal, which decides the election schedules, and holding election is his work. +","सुप्रीम कोर्ट ने भी उसकी शक्तियों की व्याख्या करते हुए कहा कि वह एकमात्र अधिकरण है जो चुनाव कार्यक्रम निर्धारित करे चुनाव करवाना केवल उसी का कार्य है +","supreme court ne bhi uski interpreting the power karte hue kaha ki vah ekmatr adhikaran hai jo chunav karyakram nirdharit kare chunav karvana keval usi ka kary hai +",6,1,neutral,neutral,positive +"However, in respect of factory building, plant and machinery and self fabricated machinery, vouchers to the extent of Rs. 41, 19, 260 / -, Rs. 1, 66, 64, 271 / and Rs. 1, 66, 64, 271 / respectively, could not be produced by the assessee. +","हालांकि, कारखाने के भवन, संयंत्र और मशीनरी और स्व-विरचित मशीनरी के संबंध में क्रमशः रु. ४१, १९, २६०/-, रु. १, ६६, ६४, २७१/- और रु. १, ६६, ६४, २७१/- तक के वाउचर निर्धारिती द्वारा प्रस्तुत नहीं किए जा सके. +","halanki , factory ke building , snyntr aur plant aur sv-virchit plant ke respect men kramsha rs ४१ , १९ , २६०- , rs १ , ६६ , ६४ , २७१- aur rs १ , ६६ , ६४ , २७१- tak ke vouchers assessee dvara extent nahin kie ja sake +",6,4,neutral,negative,positive +"Everyday, she has to get up at 4 o’clock in the morning to cook for her husband who leaves at 5 o’clock in the morning to work at the industrial unit in neighbouring Gamharia town. Earlier she could barely see what she was grinding on the pestle stone. +","प्रतिदिन, उन्हें अपने पति के लिए भोजन तैयार करने के लिए प्रातः 4 बजे उठना पड़ता है, जो पास के गम्हारिया कस्बे में एक औद्योगिक इकाई में काम करने के लिए प्रातः 5 बजे घर से निकल पड़ते हैं। +","everyday , unhen apne husband ke lie bhojan taiyar karne ke lie morning 4 o parta hai , jo pas ke gamharia town men ek industrial unit men stone karne ke lie morning pestle o ghar se nikal parte hain. +",7,2,neutral,neutral,neutral +"They had grown in self - respect and self - confidence. +","उनमें आत्मसम्मान और आत्मविश्वास का विकास हुआ। +","unmen respect aur confidence ka vikas huaa. +",8,2,positive,neutral,positive +"There are four to five generations in a year and generally the pest overwinters as nymph which develops into adult in early spring. +","वर्ष में चार-पांच पीढ़ियां पूरी हो जाती हैं और यह पीड़क निम्फ के रूप में सर्दियां पार करके बसंत के आरंभ में प्रौढ़ बन जाता है। +","varsh men char-panch piiyan poori ho jati hain aur yah pirak nimph ke roop men sardiyan par karke basnt ke adult in early ban jata hai. +",5,5,neutral,neutral,neutral +"A silly position for a fellow of eighteen ! +","वैसे यह हास्यास्पद स्थिति है , एक अट्ठारह वर्ष के लड़के के लिए ! +","vaise yah hasyaspad position hai , ek silly varsh ke larke ke lie ! +",6,3,negative,positive,positive +"The proofs can be submitted after logging in online under the section “My Applications” or directly contacting a DI office. +","साक्ष्यों के अनुभाग के तहत ऑनलाइन ""मेरे अनुप्रयोग"" में प्रवेश करने या सीधे एक डि कार्यालय से संपर्क करने के बाद प्रस्तुत किया जा सकता है। +","sakshyon ke anubhag ke tahat ऑnlain mere anupryog men prvesh karne ya sidhe ek di karyalay se snpark karne ke bad prastut kiya ja sakta hai. +",6,4,neutral,neutral,neutral +"hoping that your sex cells, your male sex cells, +","इस उम्मीद में कि आपकी सेक्स कोशिकाएं, आपकी पुरुष सेक्स कोशिकाएं, +","is ummid men ki aapki sex cells , aapki male sex cells , +",9,2,neutral,negative,positive +"Through ‘e - FILING’ only Advocate - on Record’ and petitioners - in - person can file cases in the Supreme Court of India +","2. ई-फाइलिंग के माध्यम से सर्वोच्च न्यायालय में केवल पीड़ित व्यक्ति अर्थात् मुकदमा दायर करने के इच्छुक व्यक्ति स्वयं या निबंधित वकील ही मुकदमा दायर कर सकता है। +","2 ee-phailing ke madhyam se sarvochch nyayalay men keval pirit vyakti arthat mukadma dayar karne ke ichchhuk vyakti svyn ya nibndhit vakil hi mukadma dayar kar sakta hai. +",7,2,neutral,neutral,positive +"During the fourth invasion of Durrani in 1757, a detachment was sent to chastise the Sikhs at Amritsar. +","सन् 1747 में दुर्रानी के चौथे हमले के समय सिक्खों को दण्ड देने के लिए सेना का एक खण्ड अमृतसर भेजा गया। +","san 1747 men durrani ke chauthe hamle ke samay chastise the sikhs dene ke lie sena ka ek khand amritasar bheja gaya. +",6,3,neutral,neutral,negative +"Your demand being so reasonable, no impartial person would even suggest that you should moderate it. +","आपकी मांग ऐसी है कि कोई निष्पक्ष मनुष्य उसमें काटछांट करनेकी बात सुझा ही नहीं सकता। +","aapki demand aesi hai ki koee impartial person usmen katchhant karneki bat reasonable hi nahin sakta. +",6,0,negative,negative,negative +"Call them (adopted sons) by (the names of) their fathers, that is more just with Allah. But if you know not their father 's (names, call them) your brothers in faith and Mawalikum (your freed slaves). And there is no sin on you if you make a mistake therein, except in regard to what your hearts deliberately intend. And Allah is Ever OftForgiving, Most Merciful. +","उन्हें उनके बापों का बेटा करकर पुकारो। अल्लाह के यहाँ यही अधिक न्यायसंगत बात है। और यदि तुम उनके बापों को न जानते हो, तो धर्म में वे तुम्हारे भाई तो है ही और तुम्हारे सहचर भी। इस सिलसिले में तुमसे जो ग़लती हुई हो उसमें तुमपर कोई गुनाह नहीं, किन्तु जिसका संकल्प तुम्हारे दिलों ने कर लिया, उसकी बात और है। वास्तव में अल्लाह अत्यन्त क्षमाशील, दयावान है +","unhen unke sons ka beta karakar pukaro. allah ke yahan yahi more nyaysngat bat mistake aur yadi tum unke sons ko n jante ho , to faith men ve brothers freed to hai hi aur brothers mawalikum bhi. is silsile men tumse jo lti huee ho usmen tumapar koee sin nahin , kintu jiska snkalp brothers hearts ne kar liya , uski bat aur mistake vastav men allah atyant kshmashil , dayavan hai +",5,3,neutral,neutral,positive +"If they try to force you to associate with Me that of which you have no knowledge, do not obey them. Live with them honourably in the world, but follow the way of him who turns to Me. Your returning is to Me in the end, when I will tell you what you did. +","और अगर तेरे माँ बाप तुझे इस बात पर मजबूर करें कि तू मेरा शरीक ऐसी चीज़ को क़रार दे जिसका तुझे इल्म भी नहीं तो तू (इसमें) उनकी इताअत न करो (मगर तकलीफ़ न पहुँचाना) और दुनिया (के कामों) में उनका अच्छी तरह साथ दे और उन लोगों के तरीक़े पर चल जो (हर बात में) मेरी (ही) तरफ रुजू करे फिर (तो आख़िर) तुम सबकी रुजू मेरी ही तरफ है तब (दुनिया में) जो कुछ तुम करते थे +","aur agar tere man bap i is knowledge par majboor karen ki too mera sharik aesi chiz ko rar end jiska i ilm bhi nahin to too ismen unki itaat n karo magar taklif n pahunchana aur live ke kamon men unka achchhi tarah sath end aur un logon ke tarie par chal jo har knowledge men meri hi taraph returning kare phir to aair tum sabki returning meri hi taraph hai tab live men jo kuchh tum karte the +",7,3,neutral,neutral,negative +"Kindness, seriousness and restraint were the balance column +","दया विचारशीलता और संयम इसके आधार स्तम्भ थे। +","kindness seriousness and restraint iske aadhar balance column +",8,1,positive,negative,positive +"Add one or more images to the panorama +","परिदृश्य में एक या अधिक छवियाँ जोड़ें +","panorama men ek ya adhik images add +",6,3,neutral,neutral,neutral +"Then he will take a look and sight him in the middle of hell. +","तो क्या तुम लोग भी (मेरे साथ उसे झांक कर देखोगे) ग़रज़ झाँका तो उसे बीच जहन्नुम में (पड़ा हुआ) देखा +","to look tum log bhi mere sath use jhank kar dekhoge raz jhanka to use middle jahannum men para huaa dekha +",6,3,negative,neutral,negative +"And so as these elements come together, +","और इस तरह ये सभी एक साथ होकर, +","aur is tarah ye sabhi ek sath elements , +",7,1,neutral,neutral,neutral +"1. This does not function within defined time frame. +","1. ये नियमित अंतराल से काम नहीं करती है +","1 ye niymit defined se kam nahin karti hai +",8,2,negative,negative,neutral +"according to the Tulsidas at the top there was sri rama 's story where lord shanker was telling the story to mother parvati +","तुलसीदास जी के अनुसार सर्वप्रथम श्री राम की कथा भगवान श्री शंकर ने माता पार्वती जी को सुनाया था। +","tulsidas ji ke anusar sarvapratham sri ram ki story bhagvan sri shnkar ne mata parvati ji ko sunaya tha. +",8,1,neutral,neutral,positive +"Such drafts which are presented for payment not accompanied by the advice from the remitter bank. +","ऐसे ड्राफ्ट जिन्हें भुगतान के लिए बिना प्रेषक बैंक द्वारा जारी सूचना पत्र के प्राप्त हुए प्रस्तुत किया जाए। +","aese drapht jinhen bhugtan ke lie bina preshak baink dvara jari soochna patr ke prapt hue prastut kiya jae. +",7,5,neutral,neutral,neutral +"In many civil service exams that take place in India, questions which test the general knowledge of a candidate are commonplace. +","भारत में कई सरकारी पदों के लिए होने वाली परीक्षाओं में सामान्य ज्ञान के प्रश्न अकसर पूछे जाते हैं। +","bharat men kee sarkari padon ke lie hone vali test the general jnjan ke prashn akasar poochhe jate hain. +",7,1,neutral,neutral,neutral +"Accessory products are to be purchased. +","होत्पादन को खरीदा जाने वाला है। +","hotpadan ko purchased jane vala hai. +",8,2,neutral,neutral,neutral +"The artist in him, too, looked for fresh pastures and newer modes of expression. +","उनमें बैठा कलाकार भी, ताजी दूब वाले चरागाहों में विचरण करता और अभिव्यक्ति के अभिन्न क्षेत्रों की तलाश में रहता था. +","unmen baitha artist bhi , fresh newer vale pastures men vicharan karta aur expression ke abhinn kshetron ki talash men rahta tha +",8,1,neutral,neutral,positive +"Lahore gate is the main entrance +","लाहौर गेट इसका मुख्य प्रवेशद्वार है। +","lahore gate iska main entrance hai. +",9,2,neutral,neutral,neutral +"Color to draw the Marcus Bains Line in the Time bar (empty for default). +","Marcus Bains Line को समय पट्टी में दिखाने के लिए रंग (तयशुदा रूप से खाली). +","Marcus Bains Line ko time bar men dikhane ke lie rng tayshuda roop se khali +",6,5,neutral,neutral,negative +"Their needs come low on the political agenda in countries that lack money and resources. +","धन और साधनों की कमी से जूझते देशों की राजनीतिक प्राथमिकताओं में इन लोगों की जरूरतों का स्थान बहुत नीचे होता है। +","dhan aur sadhnon ki kami se joojhte deshon ki rajnitik prathmiktaon men in logon ki jaroorton ka sthan bahut niche hota hai. +",4,7,negative,neutral,negative +"And the earth that cracks open. +","और फटने वाली (ज़मीन की क़सम) +","aur earth vali zamin ki sam +",5,3,neutral,neutral,neutral +"He said, ""My Lord, indeed I fear that they will deny me +","मूसा ने अर्ज़ कि परवरदिगार मैं डरता हूँ कि (मुबादा) वह लोग मुझे झुठला दे +","moosa ne arz ki paravardigar main darta hoon ki mubada vah log mujhe jhuthla de +",8,1,neutral,negative,negative +"God will say, ""Enter the Fire and join the bands of jinn and men that have gone before you."" Every time a host enters [the fire], it will curse its fellow - host, then, when they are all gathered there, the last of them will say of the first, ""Our Lord, it was they who led us astray: give them double punishment in the Fire,"" - - God will say, ""Every one of you will have double punishment, though you do not know it"" - - +","वह कहेगा, ""जिन्न और इनसान के जो गिरोह तुमसे पहले गुज़रे हैं, उन्हीं के साथ सम्मिलित होकर तुम भी आग में प्रवेश करो।"" जब भी कोई जमाअत प्रवेश करेगी, तो वह अपनी बहन पर लानत करेगी, यहाँ तक कि जब सब उसमें रल-मिल जाएँगे तो उनमें से बाद में आनेवाले अपने से पहलेवाले के विषय में कहेंगे, ""हमारे रब! हमें इन्हीं लोगों ने गुमराह किया था; तो तू इन्हें आग की दोहरी यातना दे।"" वह कहेगा, ""हरेक के लिए दोहरी ही है। किन्तु तुम नहीं जानते।"" +","vah kahega, jinn and men ke jo giroh tumse pahle guzre hain, unhin ke sath sammilit hokar tum bhi aag enter the fire jab bhi koee jamaat prvesh karegi, to vah apni bahan par lanat karegi, yahan tak ki jab sab usmen ral-mil jaenge to unmen se bad men aanevale apne se pahlevale ke vishay men kahenge, hmare rab! hamen inhin logon ne gumrah kiya tha to too inhen aag ki dohri yatna de. vah kahega, hrek ke lie dohri hi hai. kintu tum nahin jante. +",8,0,neutral,negative,negative +"how where they think the flag had been changes +","कैसे वो सोचते हैं कि कहाँ फ्लैग बदल गया है +","kaise vo sochte hain ki kahan flag changes gaya hai +",8,2,neutral,neutral,neutral +"Say: 'I warn you only by the Revelation' But the deaf hear nothing when they are warned. +","(ऐ रसूल) तुम कह दो कि मैं तो बस तुम लोगों को '' वही '' के मुताबिक़ (अज़ाब से) डराता हूँ (मगर तुम लोग गोया बहरे हो) और बहरों को जब डराया जाता है तो वह पुकारने ही को नहीं सुनते (डरें क्या ख़ाक) +","ae rasool say kah do ki i to bas say logon ko vahi ke mutabi azab se darata hoon magar say log goya deaf ho aur bahron ko jab daraya jata hai to vah pukarne hi ko nahin sunte daren kya ak +",6,4,neutral,neutral,negative +"I.—Recovery of tax in respect of non-residents +","झ–अनिवासियों की बाबत कर की वसूली +","jhanivasiyon ki respect kar ki tax +",4,6,neutral,neutral,positive +"He could put up with any and everything but opposition to Urdu and the Anjuman was something he could not bear. +","जो कुछ कमाया वह या तो उर्दू पर निछावर कर दिया या दोस्तों और शार्गिदों पर खर्च कर दिया। +","jo kuchh something vah ya to urdoo par nichhavar kar diya ya doston aur shargidon par kharch kar diya. +",3,5,negative,neutral,neutral +"I 've two more children from my second wife. +","दूसरी पत्नी से दो बच्चे और हैं। +","doosri wife se do children aur hain. +",10,0,neutral,neutral,neutral +"'In exercise of the powers vested in him by Rule 58 1 paragraph b of the Defence of Hyderabad Rules which correspond to the Defence of India Rules, it is hereby ordered that no person shall unfurl in a ceremonial fashion at any public function the flag of any foreign country nor salute it. +","हैदराबाद रक्षा-कानूनों जो भारत रक्षा-कानूनों के जैसे ही है की धारा-58 1 के पैरा ब द्वारा उनमें निजाम में निहित सत्ताओं का अमल करके यह आदेश दिया जाता है कि कोई भी व्यक्ति किसी भी सार्वजनिक समारोह में विधिवत् किसी विदेश के झंडे को न तो फहरायेगा और न उसे सलामी देगा। +","haidrabad raksha-kanoonon jo bharat raksha-kanoonon ke jaise hi hai ki dhara-58 1 ke paira b dvara unmen nijam men powers vested ka amal karke yah aadesh diya jata hai ki koee bhi vyakti kisi bhi function the flag vidhivat kisi videsh ke jhnde ko n to phahrayega aur n use salami dega. +",8,1,neutral,negative,positive +"Her history remains alive and vibrant in the thoughts, actions, customs and rituals of her people. +","इसका इतिहास इसके लोगों के विचारों, कार्यों, रीति-रिवाजों और धार्मिक कृत्यों से परिपूर्ण और सजीव बना रहा। +","iska itihas iske history remains alive, actions, riti-rivajon aur dharmik krityon se alive and vibrant bana raha. +",8,1,neutral,neutral,positive +"Eyes: Spitting cobras can actually eject their venom quite accurately into the eyes of their victims, resulting in direct eye pain and damage. +","आंख-थूकनेवाले कोबरा अक्सर अपने शिकार की आंखों में विष थूक देते हैं, जिससे आंखें क्षतिग्रस्त हो सकती हैं या उनमें दर्द हो सकता है। +","aankh-thooknevale cobras aksar apne eyes ki eye men venom thook dete hain , jisse aankhen damage ho sakti hain ya unmen pain ho sakta hai. +",7,2,negative,negative,negative +"In response, he turned away along with his army and said, “He is a magician or a madman. ” +","तो उसने अपने लशकर के बिरते पर मुँह मोड़ लिया और कहने लगा ये तो (अच्छा ख़ासा) जादूगर या सौदाई है +","to usne apne army ke birte par munh response liya aur kahne laga ye to achchha asa magician ya saudaee hai +",7,0,neutral,neutral,neutral +"Or like abundant rain from the cloud in which is utter darkness and thunder and lightning; they put their fingers into their ears because of the thunder peal, for fear of death, and Allah encompasses the unbelievers. +","या (उनकी मिसाल ऐसी है) जैसे आकाश से वर्षा हो रही हो जिसके साथ अँधेरे हों और गरज और चमक भी हो, वे बिजली की कड़क के कारण मृत्यु के भय से अपने कानों में उँगलियाँ दे ले रहे हों-और अल्लाह ने तो इनकार करनेवालों को घेर रखा हैं +","ya unki unbelievers aesi hai jaise cloud se rain ho rahi ho jiske sath darkness hon aur thunder aur chamak bhi ho , ve lightning ki karak ke karan death ke fear se apne fingers men ungliyan de le rahe hon-aur allah ne to inkar karnevalon ko gher rakha hain +",7,1,negative,neutral,negative +"Set the browser to view only this genre +","ब्राउजर को सिर्फ ये शैल प्रदर्षित करने के लिए निश्चित करें +","browser ko sirph ye shail genre karne ke lie nishchit karen +",8,0,neutral,neutral,neutral +"Server 's certificate cannot be checked. +","सर्वर प्रमाणपत्र की जांच नहीं की जा सकती. +","server certificate ki janch nahin ki ja sakti +",10,0,neutral,negative,neutral +"Casual workers are paid wages per man - day. +","दिहाडी मजदूरों को मजदूरी का भुगतान श्रम-दिन के आधार पर किया जाता है। +","dihadi workers ko wages ka bhugtan shram-din ke aadhar par kiya jata day +",9,0,neutral,neutral,positive +"The increasing adoption of the continuous casting process by the integrated steel plants would mean that they will themselves use most of the scrap generated by them . +","समन्वित इस्पात मिलों द्वारा निरन्तर कास्टिंग प्रक्रिया के अपनाने का अर्थ होगा कि अपने ही संयंत्रों से निकले टुकड़ों ( स्क्रेप ) का वे स्वयं उपयोग करेंगे . +","samanvit steel most dvara continuous casting process ke adoption ka arth hoga ki apne hi snyntron se nikle scrap skrep ka ve svyn upyog karenge +",5,5,neutral,positive,neutral +"And what if there 's no GPS? +","और अगर GPS नहीं है? +","aur agar gps nahin hai +",9,0,neutral,neutral,negative +"There are eighteen thousand verses in the BrahmavaivarthPuran. +","ब्रह्मवैवर्तपुराण में श्लोकों की संख्या अठारह हजार हैं। +","verses men shlokon ki snkhya eighteen thousand verses +",5,1,neutral,neutral,neutral +"You mustn 't deceive yourself in a serious matter like this. +","लेकिन इतने बड़े महत्व के मामले में यों अपनी आँखों में धूल डालने की कोशिश न कर। +","lekin itne bare mahatv ke mamle men yon apni aankhon men dhool dalne ki koshish n kar. +",7,5,negative,negative,negative +"Irrigation of wound with an antiseptic solution was performed. +","घाव का धावन अपूतिक विलयन सें किया गया +","wound ka irrigation apootik solution antiseptic kiya gaya +",6,1,neutral,neutral,positive +"A signal or symbol used for secret communication. +","गुप्त संचार/सम्प्रेषण के लिए प्रयोग में लाया जाने वाला कोई चिन्ह या संकेत। +","secret sncharsampreshan ke lie pryog men laya jane vala koee signal ya snket. +",8,1,neutral,neutral,neutral +"Almost all Political Parties with their representatives contest the election for Counselor. +","पार्षदों के चुनाव हेतु लगभग सभी राजनीतिक पार्टियां अपने प्रत्याशि खड़े करतीं हैं। +","parshdon ke election hetu lagabhag sabhi political partiyan apne representatives khare kartin hain. +",9,1,neutral,neutral,positive +"Construction of Farkka dam has been helpful in production of seed of hilsa fish. +","फरक्का बांध बन जाने से गंगा नदी में हिल्सा मछली के बीजोत्पादन में सहायता मिली है। +","construction dam ban jane se gnga nadi men production fish ke farkka men sahayta mili hai. +",5,3,positive,neutral,positive +"And the earth that cracks open. +","और फटने वाली (ज़मीन की क़सम) +","aur earth that cracks ki earth +",5,0,neutral,neutral,neutral +"“Before I die, I want to ... ” +","“ अपनी मृत्यु से पहले, मैं .... करना चाहता हूँ।” +","apni mrityu se pahle , i karna chahta hoon. +",8,0,neutral,neutral,negative +"And I said, “What do you do?” +","और मैंने कहा, “तुम क्या करते हो” +","aur mainne kaha, tum kya karte ho +",5,8,neutral,neutral,neutral +"India and Togo enjoy warm and friendly relations. +","भारत और टोगो के प्रगाढ़ और मैत्रीपूर्ण संबंध हैं। +","india aur togo ke enjoy aur friendly relations hain. +",7,1,positive,neutral,positive +"My uncle has sent you the vegetables, Mr Vyas, Kapil said. +","मेरे चाचा ने आपके लिए तरकारी भेजी हे, कपिल ने कहा। +","mere uncle ne aapke lie vegetables bheji he , mr ne kaha. +",5,3,neutral,neutral,neutral +"But there are signs of a renaissance and, given that youth organizations provide adolescents' main experience of democracy, their strengthening will be an essential buttress to future human rights in the country. +","युवा संगठन किशोरों को लोकतंत्र का अनुभव प्रदान करते हैं इसलिए उन्हें मजबूत करने से भविष्य में देश में मानव अधिकारों की आवश्यक बुनियाद तैयार होगी। +","youth organizations kishoron ko loktntr ka anubhav prdan karte hain islie unhen majboot karne se experience of democracy men manav adhikaron ki aavashyak buniyad taiyar hogi. +",8,3,positive,neutral,positive +"The poet feels inspired by Parmanand Almast, that aspect of Lord Shiva which symbolises Truth and Beauty. +","कवि को शिव का सत्य और सुन्दर रूप अधिक प्रेरक लगता है। +","poet ko lord ka truth aur beauty aspect adhik prerak feels hai. +",7,2,positive,neutral,positive +"Which has been countersigned in a correct / proper manner. +","जो यथोचित ढंग से प्रतिहस्ताक्षरित किए गए हैं। +","jo proper manner se prtihastakshrit kie correct hain. +",7,0,neutral,neutral,neutral +"Can't copy file over directory +","निर्देशिका पर फ़ाइल की नक़ल नहीं ले सकता है +","file over directory ki copy nahin le sakta hai +",7,0,neutral,neutral,neutral +"Gandhiji’s talisman for the country 's rulers was simple and powerful and I quote: +","देश के शासकों के लिए गांधी जी का मंत्र सरल और शक्तिशाली थाः +","country ke rulers ke lie gandhi ji ka talisman simple and powerful thaa +",8,1,positive,neutral,positive +"He works towards impacting the environment in a positive manner through his own actions as well as by imparting knowledge amongst students to help them achieve their potential. +","वह अपने कार्यों के जरिए तथा विद्यार्थियों को अपनी क्षमता अर्जित करने में मदद करने के लिए ज्ञान प्रदान करके वातावरण को सकारात्मक तरीके से प्रभावित करने का कार्य करता है। +","vah apne actions ke jarie towards students ko apni own arjit karne men madad karne ke lie knowledge prdan karke environment ko positive tarike se prbhavit karne ka kary karta hai. +",8,4,positive,neutral,positive +"There is indeed not a single square centimetre on the Earth 's surface where one or another kind of insect is not found. * * How numerous are insects? +","वस्तुतया पृथ्वी की सतह पर एक वर्ग से. मी. जगह भी ऐसी नहीं है जहां कीट न मिलें। +","vastutya earth ki surface par ek varg se square jagah bhi aesi nahin hai jahan single n kind +",6,0,neutral,neutral,neutral +"When it is legal act by illegal means over act is necessary. +","जब अवैध तरीकों से कानूनी कार्रवाई की गयी है तब यह अधिनियम आवश्यक है. +","jab illegal means se legal karrvaee ki gayi hai tab yah act necessary hai +",9,1,neutral,neutral,negative +"But Nanak was for more knowledgeable than his teachers. +","लेकिन नानक का ज्ञान गुरु से कहीं बढ़-चढ़ कर था। +","lekin teachers ka jnjan guru se kahin ba-cha kar tha. +",5,2,neutral,neutral,neutral +"To change time or date settings, you need to authenticate. +","समय या दिनांक सेटिंग्स को बदलने के लिए, आपको प्रमाणित करने की जरूरत है. +","time or date settings ko change ke lie, aapko authenticate karne ki jaroorat hai +",7,2,neutral,neutral,neutral +"Such is the Garden which We give as an inheritance to those of Our servants who guard against Evil. +","यही वह बेिहश्त है कि हमारे बन्दों में से जो परहेज़गार होगा हम उसे उसका वारिस बनायेगे +","yahi vah garden hai ki servants who guard se jo parhezgar hoga ham use uska varis give +",4,2,neutral,neutral,negative +"In case of accidents: If any labourer gets bodily injury during the course of employment at work site, the person is entitled to free medical treatment from the State Government. +","दुर्घटना की स्थिति में-यदि कोई कामगार कार्यस्थल पर कार्य के दौरान घायल होता है तो राज्य सरकार की ओर से वह निःशुल्क चिकित्सा सुविधा पाने का हकदार होगा। +","case of accidents men-ydi koee work site par kary ke dauran ghayal hota hai to rajy sarkar ki or se vah free medical treatment pane ka free medical +",8,0,neutral,neutral,positive +"Those! theirs shall be a provision known: +","उनके वास्ते (बेहिश्त में) एक मुक़र्रर रोज़ी होगी +","unke provision behisht men ek murrar rozi hogi +",7,3,positive,neutral,neutral +"Never keep in the vicinity of the adult birds +","वयस्क पक्षियों से निकटता न बनाएं। +","adult birds se nikatta n banaen. +",10,0,neutral,neutral,neutral +"Even younger women pull the strings from behind. +","कम उम्र की स्त्रियां भी पर्दे के पीछे से सूत्रधार बनी रहती हैं। +","strings younger ki women bhi parde ke behind se sootrdhar bani rahti hain. +",6,1,neutral,neutral,neutral +"An hour later , he had before him a chest of Spanish gold coins . +","एक घंटे बाद , उसके सामने स्पेनी स्वर्ण मुद्राओं से भरी एक तिजोरी थी । +","ek hour bad , uske samne spanish gold mudraon se bhari ek chest thi . +",9,2,neutral,neutral,neutral +"The Kalam - pattu in the Vaikkom temple is sung inside a big thatched shed in the extensive courtyard on the northern side of the temple. +","वैकोम के मंदिर में कलमपट्ट एक बहुत बड़ी झोपड़ी में बैठकर गाया जाता है जो मंदिर के बहुत बड़े प्रांगण के उत्तरी भाग में स्थित है। +","vaikom ke temple men kalamapatt ek bahut big thatched men baithakar sung jata hai jo temple ke bahut extensive prangan ke northern side men sthit hai. +",7,0,neutral,neutral,neutral +"And He subjected the night and the day for you – and the sun and the moon; and the stars are subjected to His command; indeed in this are signs for people of intellect. +","उसी ने तुम्हारे वास्ते रात को और दिन को और सूरज और चाँद को तुम्हारा ताबेए बना दिया है और सितारे भी उसी के हुक्म से (तुम्हारे) फरमाबरदार हैं कुछ शक़ ही नहीं कि (इसमें) समझदार लोगों के वास्ते यक़ीनन (कुदरत खुदा की) बहुत सी निशानियाँ हैं +","usi ne tumhare vaste rat ko aur din ko aur sooraj aur chand ko tumhara tabee bana diya hai aur sitare bhi usi ke hukm se tumhare pharmabardar hain kuchh sha hi nahin ki ismen samajhdar logon ke vaste yainan kudarat khuda ki bahut si nishaniyan hain +",6,5,positive,neutral,positive +"Continue or suspend the execution of the program +","जारी रखें या सस्पेंड का प्रोग्राम +","continue rakhen ya execution ka program +",7,1,neutral,negative,negative +"Inevitable losses is pushing the profit in unfavourable direction. +","अपरिहार्य हानियाँ लाभ को प्रतिकूल दिशा में धकेल रही हैं। +","inevitable losses profit ko unfavourable direction men dhakel rahi hain. +",7,6,negative,neutral,positive +"And that 's a fun problem, and this is often kind of given as +","और वह एक मजेदार है समस्या है, और यह अक्सर के रूप में दिए गए की तरह है +","aur vah ek fun hai problem hai, aur yah aksar ke roop men die ge ki tarah hai +",6,1,positive,negative,positive +"Inflammation related to the tissues around the larynx. +","स्वरयंत्र के चारों ओर पाए जाने वाले ऊतक से संबंधी प्रदाह +","larynx ke charon or pae jane vale ootak se inflammation related +",6,3,negative,negative,neutral +"{player} is now known as {newname} {player} +","अब {newname} से जाना जाता है +","player newname se jana jata hai +",8,3,neutral,neutral,neutral +"He said, “Our Lord is He who gave everything its existence, then guided it. ” +","मूसा ने कहा हमारा परवरदिगार वह है जिसने हर चीज़ को उसके (मुनासिब) सूरत अता फरमाई +","gave ne kaha hamara lord vah hai jisne har chiz ko uske munasib soorat ata pharmaee +",7,1,positive,neutral,neutral +"Remove the validity tests on this cell +","इस कक्ष पर वैधता जांच हटाएं +","is cell par validity janch hataen +",8,4,negative,neutral,neutral +"Open this bookmark in a new window +","इस पुस्तकचिह्न को नए विंडो में खोलें +","is bookmark ko ne vindo men open +",7,1,neutral,neutral,neutral +"If you believe you can, you probably can. +","यदि आप यह मानते हैं कि आप कर सकते हैं, तो संभवतः आप कर सकते हैं। +","yadi aap yah mante hain ki aap kar sakte hain , to snbhavta aap kar sakte hain. +",9,2,positive,neutral,neutral +"The international community must work together now, with wisdom, to create tolerance and understanding for addressing the complex issues confronting mankind. +","अंतरराष्ट्रीय समुदाय को अब मानव के सम्मुख जटिल मुद्दों के समाधान हेतु सहिष्णुता और सद्भावना पैदा करने के लिए मिलकर बुद्धिमतापूर्वक मिलकर कार्य करना चाहिए। +","international community ko ab issues confronting mankind complex issues ke understanding for addressing aur sadbhavna paida karne ke lie milakar buddhimtapoorvak milakar kary karna chahie. +",6,4,neutral,neutral,positive +"By the time father and son reached the foot of the Himalayas it was April . +","पिता और पुत्र जब हिमालय की घाटी में पहुंचे तब अप्रैल का महीन शुरू हो चुका था . +","father and son jab himalay ki reached the foot tab aprail ka mahin shuroo ho chuka tha +",7,0,neutral,neutral,positive +"Central European (_ MacCE) +","मध्य यूरोपीय (_ MacCE) +","central european _ MacCE +",5,8,neutral,neutral,neutral +"Where the front skin join with the area under the penis. called as joint of front skin (farunulum). +","शिश्न के निचली ओर का वह क्षेत्र जहाँ से अग्रत्वचा जुड़ी रहती है अग्रत्वचा का बंध (फेरुनुलम) कहलाता है। +","penis ke nichli or ka vah area jahan se front juri rahti hai front ka bndh joint kahlata hai. +",6,5,neutral,neutral,positive +"As mentioned at the very beginning of this book, had it not been for these insects we would not have had our vegetation and landscape. +","जैसा कि इस पुस्तक के प्रारंभ में ही बताया जा चुका है अगर ये कीट न होते तो न तो हमारी वनस्पति होती और न हमें भूदृश्य देखने को मिलते. +","jaisa ki is pustak ke prarnbh men hi bataya ja chuka hai agar ye kit n hote to n to hamari vanaspti hoti aur n hamen bhoodrishy dekhne ko milte +",4,7,neutral,neutral,neutral +"A chart / material showing the information on amount disbursed. +","धनराशि के वितरण के बारे में तैयार की गई रूपरेखागत सूचना सामग्री +","amount ke vitaran ke bare men taiyar ki gee chart information material +",8,0,neutral,neutral,neutral +"Bring me sheets of iron ""- until, when he had leveled [them] between the two mountain walls, he said,"" Blow [with bellows], ""until when he had made it [like] fire, he said,"" Bring me, that I may pour over it molten copper. "" +","(अच्छा तो) मुझे (कहीं से) लोहे की सिले ला दो (चुनान्चे वह लोग) लाए और एक बड़ी दीवार बनाई यहाँ तक कि जब दोनो कंगूरो के दरमेयान (दीवार) को बुलन्द करके उनको बराबर कर दिया तो उनको हुक्म दिया कि इसके गिर्द आग लगाकर धौको यहां तक उसको (धौंकते-धौंकते) लाल अंगारा बना दिया +","achchha to i kahin se iron ki sile la do chunanche vah log lae aur ek bari walls banaee yahan tak ki jab dono sheets ke darmeyan walls ko buland karke unko barabar kar diya to unko hukm diya ki iske gird fire lagakar dhauko yahan tak usko dhaunkte-dhaunkte lal angara bana diya +",6,4,neutral,neutral,neutral +"“And if you deny, then many nations have denied before you; and the Noble Messenger is not responsible except to plainly convey (the message). ” +","और यदि तुम झुठलाते हो तो तुमसे पहले कितने ही समुदाय झुठला चुके है। रसूल पर तो बस केवल स्पष्ट रूप से (सत्य संदेश) पहुँचा देने की ज़िम्मेदारी है। "" +","aur yadi tum jhuthlate ho to tumse pahle kitne hi samuday jhuthla chuke hai. rasool par to bas keval spasht roop se saty sndesh pahuncha dene ki zimmedari hai. +",6,6,negative,neutral,negative +"India and Bangladesh are interlinked like no other nations on earth. +","भारत और बांग्लादेश विश्व के किसी भी अन्य देश से, कहीं अधिक पारस्परिक ढंग से जुड़े हुए हैं। +","india and bangladesh vishv ke kisi bhi any desh se, kahin adhik parasprik dhng se jure hue hain. +",8,1,neutral,neutral,positive +"And having thus turned back the clock , We can regenerate the stock , Proceeding to our final goal By race , as well as birth control . +","इस प्रकार घडऋई का उलटी चलाकर , हम अपना मूल वंश पुनर्जीवित कर सकते हैं , हमारा लक्षऋ-ऊण्श्छ्ष्-य हम वांशिक रूप से तथा परिवार नियोजन से प्राप्त कर सकते हैं +","is prkar clock ka ulti chalakar , ham apna mool stock punarjivit kar sakte hain , hamara lakshri-oonshchhsh-y ham final roop se tatha parivar niyojan se prapt kar sakte hain +",7,2,neutral,neutral,positive +"Those who were arrogant said, “We reject what you believe in. ” +","तब जिन लोगों को (अपनी दौलत दुनिया पर) घमन्ड था कहने लगे हम तो जिस पर तुम ईमान लाए हो उसे नहीं मानते +","tab jin logon ko apni daulat duniya par arrogant tha kahne lage ham to jis par tum eeman lae ho use nahin mante +",9,0,negative,neutral,negative +"It is the best source of soluble fibre. +","यह घुलनशील रेशे का सर्वश्रेष्ठ स्रोत है। +","yah soluble fibre ka sarvashreshth srot source +",9,1,positive,positive,positive +"The First Appellate Authority can give either a ""spoken"" order or a written order +","प्रथम अपीलीय अधिकारी मौखिक या लिखित किसी भी रूप में आदेश दे सकते हैं। +","authority can give maukhik ya likhit kisi bhi roop men aadesh de sakte hain. +",7,1,neutral,neutral,positive +"(Charles Tilly),Terror, Terrorism, Terrorist Sociological Theory (2004)22,5-13 (online) +","चार्ल्स तिल्ली (Charles Tilly) आतंक आतंकवाद आतंकवादी समाजशास्त्रीय सिद्धांत (2004) 22 5-13 में ऑनलाइन +","charles tilli Charles Tilly terror terrorism terrorist sociological theory 2004 22 5-13 men online +",5,5,neutral,neutral,negative +"And when it was said to them: Reside in this town and eat from it wherever you wish, and say, Put down from us our heavy burdens: and enter the gate making obeisance, We will forgive you your wrongs: We will give more to those who do good (to others). +","और जब उनसे कहा गया कि उस गाँव में जाकर रहो सहो और उसके मेवों से जहाँ तुम्हारा जी चाहे (शौक़ से) खाओ (पियो) और मुँह से हुतमा कहते और सजदा करते हुए दरवाजे में दाखिल हो तो हम तुम्हारी ख़ताए बख्श देगें और नेकी करने वालों को हम कुछ ज्यादा ही देगें +","aur jab unse kaha gaya ki us town men making heavy reside aur uske mevon se jahan tumhara wrongs chahe eat se khao piyo aur munh se hutma kahte aur obeisance karte hue gate men dakhil ho to ham tumhari burdens bakhsh others aur neki karne valon ko ham kuchh good hi others +",6,3,positive,negative,positive +"Before road transport developed, the principal arteries of communication during those days were the river routes. +","सड़कों के विकास के पहले उन दिनों नदियों के मार्ग ही यातायात के प्रमुख साधन थे। +","road ke vikas ke pahle un dinon nadiyon ke marg hi yatayat ke prmukh sadhan the. +",6,5,neutral,neutral,neutral +"When it is said to them, ""Believe in that which Allah has sent down,"" they say, ""We believe only in that which has been sent to us"", and reject everything else, though it is the Truth and confirms what is with them. Well, ask them, ""If you sincerely believed in what was sent down to you, why did you kill the Messengers of Allah (who were sent to you from amongst yourselves)? +","और जब उनसे कहा गया कि (जो क़ुरान) खुदा ने नाज़िल किया है उस पर ईमान लाओ तो कहने लगे कि हम तो उसी किताब (तौरेत) पर ईमान लाए हैं जो हम पर नाज़िल की गई थी और उस किताब (कुरान) को जो उसके बाद आई है नहीं मानते हैं हालाँकि वह (क़ुरान) हक़ है और उस किताब (तौरेत) की जो उनके पास है तसदीक़ भी करती है मगर उस किताब कुरान का जो उसके बाद आई है इन्कार करते हैं (ऐ रसूल) उनसे ये तो पूछो कि तुम (तुम्हारे बुर्जुग़) अगर ईमानदार थे तो फिर क्यों खुदा के पैग़म्बरों का साबिक़ क़त्ल करते थे +","aur jab unse kaha gaya ki jo uran khuda ne nazil kiya hai us par eeman lao to kahne lage ki ham to usi kitab tauret par eeman lae hain jo ham par nazil ki gee thi aur us kitab kuran ko jo uske bad aaee hai nahin mante hain halanki vah uran ha hai aur us kitab tauret ki jo unke truth and confirms bhi karti hai magar us kitab kuran ka jo uske bad aaee hai inkar karte hain ae rasool unse ye to poochho ki tum tumhare burju agar eemandar the to phir kyon khuda ke paimbron ka sabi tl karte the +",4,6,neutral,neutral,negative +"Questions may be about the treatment itself, for example: +","सवाल वैद्यकिय उपचार के बारे में भी हो सकते हैं, जैसे कि उदाहरण के तौर पर: +","questions vaidykiy treatment ke bare men bhi ho sakte hain, jaise ki udaharan ke taur par: +",8,2,neutral,neutral,neutral +"One consequence of this kind of segregation was that there was usually little mental companionship between husband and wife . +","इस तरह के अलगाव का एक परिणाम यह था कि साधारणतया पति और पत्नी के बीच सहचारिता नहीं थी . +","is tarah ke segregation ka ek consequence yah tha ki sadharanatya husband and wife ke mental companionship nahin thi +",7,3,negative,neutral,neutral +"Unable to send memo information, the memo does not exist +","ज्ञापन सूचना देने में असमर्थ, यह ज्ञापन मौजूद नहीं है +","memo information dene men unable, yah memo maujood nahin hai +",8,3,negative,neutral,neutral +"His duty is scheduled at night shift. +","उसकी ड्यूटी रात की पारी में सूचित है। +","uski dyooti rat ki pari men soochit hai. +",7,5,neutral,neutral,neutral +"So the Government of India had no reason to revise its educational and cultural policy, which had been one of the causes of the Revolt of 1857, but decided to enforce it more systematically and thoroughly with the help of a large section of Indians. +","इसलिए भारत सरकार के पास उनकी शैक्षणिक और सांस्कृतिक नीति को संशोधित करने का कोई कारण नहीं रहा, जो कि 1857 के विद्रोह का एक कारण था, बल्कि बड़ी संख्या में भारतीयों की सहायता से उसे और सुव्वस्थित ढ़ग से अच्छी तरह कार्यान्वित करने का निश्चय किया। +","islie india government ke pas unki educational aur cultural policy ko snshodhit karne ka koee reason nahin raha , jo ki 1857 ke revolt ka ek reason tha , balki large snkhya men bhartiyon ki help se use aur suvvasthit g se achchhi tarah karyanvit karne ka nishchay kiya. +",8,2,neutral,negative,positive +"Shah 's heart was deeply moved and he sent back the following message through the same messenger: Grieve not, for I am not far away; Physically away, yet really I am one with your noble self. +","शाह लतीफ का हृदय विचलित हो उठा और उन्होंने उसी सन्देशवाहक के द्वारा निम्नलिखित सन्देश भेजा: दूखी मत होओ, मैं दूर नहीं हूँ, देखने में दूर, पर दोनों की हद एक है। +","shah latiph ka hriday heart was deeply aur unhonne usi sandeshvahak ke dvara nimnlikhit sandesh bheja: dookhi mat hoo, main door nahin hoon, dekhne men door, par donon ki had ek hai. +",4,6,positive,neutral,positive +"Ne _ ver Add Such File +","कभी ऐसी फाइल मत जोड़ें (_ v) +","kabhi aesi file mat add _ v +",8,1,neutral,neutral,neutral +"Underline color for misspelled words when using inline spelling. +","इनलाइन वर्तनी प्रयोग के दौरान गलत वर्तनी वाले शब्द रंग से रेखांकित करें. +","color for misspelled ke dauran galat vartni vale shabd rng se rekhankit karen +",3,5,neutral,neutral,neutral +"And He subjected the night and the day for you – and the sun and the moon; and the stars are subjected to His command; indeed in this are signs for people of intellect. +","उसी ने तुम्हारे वास्ते रात को और दिन को और सूरज और चाँद को तुम्हारा ताबेए बना दिया है और सितारे भी उसी के हुक्म से (तुम्हारे) फरमाबरदार हैं कुछ शक़ ही नहीं कि (इसमें) समझदार लोगों के वास्ते यक़ीनन (कुदरत खुदा की) बहुत सी निशानियाँ हैं +","usi ne people vaste night ko aur day ko aur sun aur moon ko tumhara tabee bana diya hai aur sitare bhi usi ke hukm se people pharmabardar hain kuchh sha hi nahin ki ismen intellect logon ke vaste yainan kudarat khuda ki bahut si nishaniyan hain +",7,2,positive,neutral,positive +"is another human being saying, “Do you understand this?” +","कोई दूसरा मनुष्य ये कहे, “क्या आपको समझ आया?” +","koee doosra human ye kahe , kya aapko samajh aaya +",8,1,neutral,neutral,neutral +"Amritsar is famous for the Golden Temple. +","अमृतसर स्वर्ण मंदिर के लिए प्रसिद्ध है। +","amritsar golden temple ke lie famous hai. +",10,0,positive,neutral,neutral +"The combined CPU usage of all processes related to% {SHORT _ PRODUCT _ NAME} +","%{SHORT _ PRODUCT _ NAME} से संबंधित सभी प्रक्रियाओं का संयुक्त CPU उपयोग +","SHORT _ PRODUCT _ NAME se snbndhit sabhi processes ka combined cpu usage +",7,0,neutral,neutral,neutral +"The Quran itself states that muslims have the right to read the Quran. +","स्वयं कुरान कहता है और वे इसे पढ़ने के अधिकार ‎के साथ पढ़ते हैं। +","svyn quran kahta hai aur ve ise pane ke right muslims sath pate hain. +",6,5,neutral,neutral,neutral +"Unable to launch %s: %s +","%s लांच करने में असमर्थ: %s +","s lanch karne men unable: s +",7,4,negative,neutral,neutral +"There are probably other things in the world that the sheep can 't teach me, thought the boy as he regarded the old merchant. +","दुनिया में ऐसी कई और भी चीजें हैं, जो भेड़ें नहीं सिखा सकती। +","world men aesi kee aur bhi chijen hain, jo bheren nahin sikha things +",5,2,neutral,neutral,neutral +"Price escalation will increase overall cost of the project. +","कीमत वृद्धि के कारण परियोजना की लागत में वृद्धि हो जायेगी। +","price escalation ke karan pariyojna ki lagat men escalation will increase +",6,2,negative,neutral,positive +"Provided that where in respect of any such consideration, the equalisation levy has been deducted in any subsequent year or has been deducted during the previous year but paid after the due date specified in sub-section (1) of section 139, such sum shall be allowed as a deduction in computing the income of the previous year in which such levy has been paid; +","परंतु जहां ऐसे किसी प्रतिफल के संबंध में किसी पश्चात्वर्ती वर्ष में समकरण उद्ग्रहण की कटौती की गर्इ है या पूर्ववर्ष के दौरान कटौती की गर्इ है किंतु धारा 139 की उपधारा (1) में विनिर्दिष्ट नियत तारीख के पश्चात् संदत्त किया गया है तो ऐसी राशि को पूर्ववर्ष जिसमें ऐसे उद्ग्रहण का संदाय किया गया है कि आय की संगणना में कटौती के रूप में अनुज्ञात किया जाएगा। +","parntu jahan aese kisi prtiphal ke snbndh men kisi pashchatvarti varsh men samakaran udgrahan ki katauti ki gari hai ya poorvavarsh ke dauran katauti ki gari hai kintu dhara 139 ki updhara 1 men vinirdisht niyat tarikh ke pashchat sndatt kiya gaya hai to aesi rashi ko poorvavarsh jismen aese udgrahan ka snday kiya gaya hai ki aay ki deduction in computing ke roop men anujnjat kiya jaega. +",5,5,neutral,negative,positive +"Without bridging the information gap, such disparity will persist. +","सूचना के इस अंतर को पाटे बिना ऐसी असमानता बनी रहेगी। +","information ke is gap ko pate such aesi disparity bani rahegi. +",7,2,negative,neutral,neutral +"They are rather big egoists. +","ऐसे लोग बहुत ही अहमवादी होते हैं। +","aese big bahut hi ahamvadi hote hain. +",8,1,negative,neutral,neutral +"Those before them had denied, then punishment had overtaken them is from a quarter they did not suspect. +","जो लोग उनसे पहले गुज़र गए उन्होंने भी (पैग़म्बरों को) झुठलाया तो उन पर अज़ाब इस तरह आ पहुँचा कि उन्हें ख़बर भी न हुई +","jo log unse pahle guzar quarter unhonne bhi punishment ko jhuthlaya to un par azab is tarah aa pahuncha ki unhen bar bhi n huee +",7,0,neutral,negative,negative +"""(xviib) any compensation or other payment referred to in clause (xi) of sub-section (2) of section 56;""; +","''(xviiख) धारा 56 की उपधारा (2) के खंड (xi) में निर्दिष्ट कोर्इ प्रतिकर या अन्य संदाय;''; +","xviib clause 56 ki updhara 2 ke khnd xi men nirdisht kori compensation ya other payment +",7,3,neutral,neutral,neutral +"We can talk to him as soon as we know that Binoy Babu is willing. +","विनय बाबू-राज है, यह जानकर ही तो उनसे कहूँगी। +","vinay baboo-raj hai, yah janakar hi to unse talk +",4,6,neutral,neutral,neutral +"waxing proud in the land, and devising evil; but evil devising encompasses only those who do it; So do they expect anything but the wont of the ancients? And thou shalt never find any changing the Wont of God, and thou shalt never find any altering the wont of God. +","(उसके आने से) उनकी नफरत को तरक्की ही होती गयी और बुदी तद्बीर (की बुराई) तो बुरी तद्बीर करने वाले ही पर पड़ती है तो (हो न हो) ये लोग बस अगले ही लोगों के बरताव के मुन्तज़िर हैं तो (बेहतर) तुम खुदा के दसतूर में कभी तब्दीली न पाओगे और खुदा की आदत में हरगिज़ कोई तग़य्युर न पाओगे +","uske aane se unki napharat ko tarakki hi hoti gayi aur budi tadbir ki buraee to buri tadbir karne vale hi par parti hai to ho n ho ye log bas agle hi logon ke bartav ke muntazir hain to behatar tum khuda ke dastoor men kabhi tabdili n paoge aur khuda ki aadat men hargiz koee tayyur n paoge +",9,2,negative,negative,negative +"They are rather big egoists. +","ऐसे लोग बहुत ही अहमवादी होते हैं। +","aese log bahut hi ahamvadi hote hain. +",10,0,negative,neutral,neutral +"How many tens of thousands of years does it go back? +","यह कितने दसियों हजारों साल पीछे जाती हैं ? +","yah many tens years sal pichhe jati hain +",6,3,neutral,neutral,neutral +"Until he was eight,there was instability lagging to him for which no arrangement for education could be made. +","जब तक अकबर आठ वर्ष का हुआ जन्म से लेकर अब तक उसके सभी वर्ष भारी अस्थिरता में निकले थे जिसके कारण उसकी शिक्षा-दीक्षा का सही प्रबंध नहीं हो पाया था। +","jab tak akabar education varsh ka huaa janm se lekar ab tak uske sabhi varsh bhari instability men nikle the jiske karan uski shiksha-diksha ka sahi arrangement nahin ho paya tha. +",6,2,negative,neutral,negative +"The main objectives of the Board are to: - +","बोर्ड के मुख्य उद्देश्य हैं: +","board ke main objectives hain: +",8,0,neutral,neutral,neutral +"Let all those who care and long for freedom and the independence of India meet this test with strength and confidence, and march together to the free India of our dreams. 1 do not think that the Hindu Mahasabha can get any seat except in Bengal. +","जो लोग भारत की आजादी के लिए चिन्ता करते हैं और उसके इच्छुक हैं, वे सब शान्ति और विश्वास के साथ इस कसौटी का सामना करें और हमारे सपनों के स्वतंत्र भारत की दिशा में कंधे से कंधा मिलाकर आगे बढें। +","jo log bharat ki aajadi ke lie chinta karte hain aur uske ichchhuk hain, ve sab shanti aur vishvas ke sath is meet this test karen aur hamare sapnon ke svtntr bharat ki disha men kndhe se kndha milakar aage badhen. +",8,4,positive,neutral,positive +"If you choose to create a new empty project, all changes will be lost. +","यदि आप नई परियोजना बनाने के लिए चुनते हैं, सभी परिवर्तन नष्ट हो जाएंगे. +","yadi aap nee project create ke lie choose hain, sabhi parivartan lost ho jaenge +",7,1,negative,neutral,negative +"And do not approach the orphan 's property except in a way that is best until he reaches maturity. And give full measure and weight in justice. We do not charge any soul except [with that within] its capacity. And when you testify, be just, even if [it concerns] a near relative. And the covenant of Allah fulfill. This has He instructed you that you may remember. +","""और अनाथ के धन को हाथ न लगाओ, किन्तु ऐसे तरीक़े से जो उत्तम हो, यहाँ तक कि वह अपनी युवावस्था को पहुँच जाए। और इनसाफ़ के साथ पूरा-पूरा नापो और तौलो। हम किसी व्यक्ति पर उसी काम की ज़िम्मेदारी का बोझ डालते हैं जो उसकी सामर्थ्य में हो। और जब बात कहो, तो न्याय की कहो, चाहे मामला अपने नातेदार ही का क्यों न हो, और अल्लाह की प्रतिज्ञा को पूरा करो। ये बातें हैं, जिनकी उसने तुम्हें ताकीद की है। आशा है तुम ध्यान रखोगे +","aur orphan ke property ko hath n maturity , kintu aese tarie se jo uttam ho , yahan tak ki vah apni full ko pahunch jae. aur measure ke sath poora-poora weight aur taulo. ham kisi soul par usi kam ki zimmedari ka bojh dalte hain jo uski capacity men ho. aur jab bat kaho , to justice ki kaho , chahe mamla apne relative hi ka fulfill n ho , aur allah ki covenant ko poora karo. ye baten hain , jinki usne tumhen takid ki hai. aasha hai tum dhyan rakhoge +",7,0,neutral,neutral,positive +"A material which is gluey, transparent and colloidal present in the cell. +","कोशिका में स्थित एक पदार्थ जो लसीला, पारदर्शी तथा कलॉइडल होता है। +","cell men sthit ek padarth jo lasila, paradarshi tatha kalidal hota hai. +",7,3,neutral,neutral,neutral +"%s You have made no changes, update the editor? +","%s आपने कोई परिवर्तन नहीं किया है, संपादक अद्यतन करें? +","s made koee parivartan nahin kiya hai, editor update karen +",7,1,negative,neutral,negative +"Sustainable Development of Sugarcane - Based Cropping System (SUBACS), and +","गन्ना फसल के सतत विकास के लिए, फसल आधारित प्रणाली +","sugarcane cropping ke sustainable development ke lie , cropping aadharit system +",7,2,neutral,neutral,neutral +"That 's why he stole the salver. +","चांदी की थाली की चोरी इसी कारण की है। +","chandi ki salver ki chori isi karan ki hai. +",9,0,negative,neutral,neutral +"Scientists analyse genes by taking a sample of DNA from an organism and sequencing it . +","वैज्ञानिक , जीव से डीएनए का नमूना लेकर तथा इसे क्रमबद्ध करके जीन का विश्लेषण करते हैं . +","vaijnjanik , jiv se taking a sample lekar tatha ise genes by taking ka vishleshan karte hain +",4,1,neutral,neutral,neutral +"Having nothing worthwhile to do, he organized a society of like - minded persons to divert his mind. +","कुछ खास काम न हाने के कारण उन्होंने अपना ध्यान दूसरी ओर लगााने की दृष्टि से अपने जैसे विचार वाले लोगों की एक सोसायटी बना ली। +","kuchh khas kam n hane ke karan divert his mind doosri or lagaane ki drishti se apne jaise vichar vale logon ki ek sosayti bana li. +",6,2,negative,neutral,positive +"The soup was found out to have very high nutritive value. +","सूप मे बहुत अधिक पोषक मूल्य पाए जाते है। +","soup me bahut high nutritive mooly pae jate hai. +",9,0,negative,neutral,positive +"In this novel, Kunti, a girl from a lower middle class family, is much more courageous than Nisha, born with a silver spoon in her mouth. +","इस उपन्यास में भी निम्न मध्यवर्गीय कुन्ती, सम्पन्न घर कि निसा से अधिक साहसी प्रमाणित होती है। +","is upanyas middle class family middle class, sampann ghar ki nisa se adhik sahsi prmanit hoti hai. +",7,1,neutral,positive,positive +"The default browser is currently %{BROWSERNAME}. +","वर्तमान में डिफ़ॉल्ट ब्राउज़र %{BROWSERNAME} है. +","vartman men default browser BROWSERNAME hai +",9,0,neutral,neutral,neutral +"The third pavilion from south is Khas Mahal. +","दक्षिण से तीसरा मण्डप है खास महल। +","south se third pavilion hai khas mahal. +",9,1,neutral,neutral,neutral +"Import search engines from default browser on first run +","पहली बार चलाने पर डिफ़ॉल्ट ब्राउज़र से खोज इंजन आयात करें +","pahli bar chalane par default browser se import search engines karen +",8,0,neutral,negative,neutral +"The Non - aligned have always been allies of peace. +","गुटनिरपेक्ष देश हमेशा से शांति के मित्र रहे है। +","aligned desh hamesha se allies of peace rahe hai. +",7,0,neutral,neutral,positive +"This is not even 2 feet. +","यह 2 फीट भी नही है. +","yah 2 feet bhi nahi hai +",10,0,negative,neutral,neutral +"It is indeed a happy occasion for me this evening to participate in the inauguration of the International Conference on Natural Fibres, which has been organized to mark the conclusion of the Platinum Jubilee Celebrations of the National Institute of Research on Jute and Allied Fibre Technology (NIR-JAFT). +","अंतरराष्ट्रीय प्राकृतिक रेशा सम्मेलन, जिसे राष्ट्रीय जूट और संबंधित रेशा प्रौद्योगिकी अनुसंधान के प्लेटिनम जुबली समारोह के स्थापना के अवसर पर आयोजित किया गया है, के उद्घाटन में आज की शाम भाग लेना मेरे लिए वास्तव में खुशी का मौका है। +","antarrashtriy conference on natural, jise rashtriy joot aur allied fibre technology anusndhan ke platinum jubilee celebrations ke sthapna ke avasar par aayojit kiya gaya hai, ke udghatan men aaj ki sham bhag lena mere lie vastav men khushi ka international conference +",8,0,positive,positive,positive +"Children between the ages of 3 and 7 have the best prognosis. +","3 से 7 वर्ष की उम्र के बच्चों में रोग का निदान सबसे अच्छे तरीके से हो सकता है. +","3 se prognosis children ki ages ke bachchon men rog ka nidan sabse best tarike se ho sakta hai +",5,3,positive,positive,positive +"We are fortunate in having an adequate number of experts. +","सौभाग्य से हमारे पास इस प्रकार से विशेषज्ञ पर्याप्त संख्या में हैं। +","saubhagy se hamare pas is number of experts adequate number men hain. +",7,1,positive,positive,positive +"Discard the current modified project? +","मौजूदा परिवर्तित परियोजना को छोड़ें? +","current parivartit project ko chhoren +",8,1,neutral,neutral,negative +"President of India Shri Pranab Mukherjee will undertake a day visit to Punjab (Ludhiana) tomorrow (27 November, 2012). +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (27 नवम्बर, 2012) पंजाब (लुधियाना) की एक दिवसीय यात्रा करेंगे। +","india ke president shri pranab mukharji tomorrow 27 navambar , 2012 pnjab ludhiana ki ek divsiy yatra karenge. +",8,1,neutral,neutral,neutral +"Budget allocation under Plan Scheme for 2015 - 16 - Rs. 16. 11 Crores. +","वर्ष 2015-16 के लिए प्लान स्कीम के अंतर्गत बजट आवंटन 16.11 करोड़ रू. है। +","varsh 2015-16 ke lie plan scheme ke allocation under plan 1611 crores roo plan +",6,1,neutral,neutral,neutral +"we need to look at learning +","हम सीखने पर ध्यान देने की जरूरत हैं +","ham sikhne par dhyan dene ki jaroorat hain +",9,2,neutral,neutral,neutral +"Now Sind is completely merged in West Pakistan and the very word 'Sind' seems to have disappeared. +","अब सिंध पूर्ण रूप से पश्चिमी पाकिस्तान में विलय हो गया है तथा सिंध शब्द ही मानो लुप्त प्रायः हो गया है। +","ab sind poorn roop se west pakistan men vilay ho gaya hai tatha sind word hi mano lupt praya ho gaya hai. +",9,1,negative,negative,negative +"One whose either parent is alive must not take food facing north, sitting on the door, nor drink water like a cow, nor eat meat of the tortoise, egg, home - made cakes, plantain on the day of the journey to a distant place, nor see a kite flying overhead, a woodcutter with his load, a beggar woman with a bowl, a tortoise carried by a fisherman, an oilman hawking oil, etc. +","जिसके माता-पिता जीवित हैं उसे उत्तर की और मुंह करके दरवाजे पर बैठ कर भोजन नहीं करना चाहिए, गाय की तरह पानी नहीं पीना चाहिए, कछुए का मांस नहीं खाना चाहिए, अंडे, घर में बने केक, सुदुर यात्रा के समय केले नहीं खने चाहिए, सिर पर उड़ती चील नहीं देखनी चाहिए, लकड़हारे को बोझ उठाए हुए, भिक्षापात्र लिए भिखारिन को, कछुआ लिए पछुआरे को, तेल लिए हुए तेली इत्यदि को नहीं देखना चाहिए। +","jiske mata-pita alive hain use north ki aur munh egg door par baith kar food nahin karna home , cow ki tarah water nahin pina home , kachhue ka mans nahin khana home , ande , ghar men bane cakes , sudur journey ke samay plantain nahin khane home , sir par urti kite nahin dekhni home , woodcutter ko load uthae hue , bowl lie beggar ko , tortoise lie pachhuaare ko , oil lie hue oilman itydi ko nahin dekhna parent +",7,4,neutral,neutral,positive +"Awareness among farmers on practices and techniques of SRI should be generated, as it involves change of practices, compared to conventional method. +","किसानों के बीच श्री की रीतियों एवं तकनीकों के बारे में जागरूकता पैदा की जानी चाहिए, क्योंकि उसमें परम्परागत विधि की तुलना में पद्धतियों में बदलाव हो जाता है, +","farmers ke bich sri ki practices evn techniques ke bare men awareness paida ki jani chahie , kyonki usmen conventional method ki tulna men paddhtiyon men change ho jata hai , +",9,1,neutral,neutral,neutral +"But there's another way, and I leave you with this. +","पर एक और तरीका है, और मैं आपको बता कर जा रही हूँ। +","par ek aur way hai , aur i aapko bata kar ja rahi hoon. +",7,0,neutral,neutral,negative +"Her body stiffened as the spur thrust, and slackened again. +","भूख के पंजों की चुम्बन महसूस होते ही उसकी देह ऐंठ जाती और फिर दुबारा ढीली पड़ जाती। +","bhookh ke pnjon ki chumban mahsoos hote hi uski deh aenth jati aur phir dubara dhili par jati. +",9,2,neutral,neutral,neutral +"Could not save attachment:% s +","% s नहीं बचाया जा सकाः% s +","s nahin save ja sakaa s +",8,1,negative,negative,negative +"Look for ABTA -LRB- Association of British Travel Agents -RRB- or AITO -LRB- Association of Independent Tour Operators -RRB- on brochures or invoices . +","सैर सपाटे की पुस्तकाओं या इंवाईसेज़ में आभ्ठा ( आस्सोचिअटिओन् ओङ् भ्रिटिस्ह् ठ्रवेल् आगेन्ट्स् ) या आईठौ ( आस्सोचिअटिओन् ओङ् ईन्डेपेन्डेन्ट् ठोउर् औपेरटोर्स् ) की तालाश कीजिए . +","travel look ki brochures ya invoices men abta association ong british agents aagents ya aaeethau association ong independent thour aupertors ki talash kijie +",7,0,neutral,neutral,neutral +"Then say to him a gentle saying; haply he may be admonished or he may fear. +","उससे नर्म बात करना, कदाचित वह ध्यान दे या डरे। "" +","usse gentle saying karna , kadachit vah dhyan de ya dare. +",8,1,neutral,negative,negative +"My special congratulations to Shri Shashi Kapoor who has been honoured with the Dadasaheb Phalke Award this year. +","श्री शशि कपूर को मेरी विशेष बधाई जिन्हें इस वर्ष दादा साहेब फाल्के पुरस्कार प्रदान किया गया है। +","shri shashi kapoor ko meri special congratulations jinhen is year dada saheb dadasaheb puraskar prdan kiya gaya hai. +",9,1,positive,positive,positive +"We can 't let him down. +","हम उन्हें नीचा नहीं दिखा सकते। +","ham unhen nicha nahin dikha sakte. +",10,0,positive,neutral,neutral +"Leaving them like chewed - up leaves. +","अन्ततः उन्हें ऐसा कर दिया, जैसे खाने का भूसा हो +","antta unhen aesa kar diya , jaise khane ka leaves ho +",4,4,negative,neutral,positive +"Should the reward of goodness be aught else but goodness? - - +","अच्छाई का बदला अच्छाई के सिवा और क्या हो सकता है? +","reward of goodness goodness ke siva aur kya ho sakta hai +",8,1,neutral,neutral,positive +"It tells us how the data within the file is organized. A programme using the data must be able to recognize and access the data within the file. +","यह बताता है कि फाइल के अन्दर आकडा कैसे संगठित है। आकडा इस्तेमाल करने वाले किसी प्रग्राम को फाइल के अन्दर आकडा पहचानने तथा ऐक्सेस करने में सक्षम होना चाहिए। +","yah batata hai ki phail ke andar aakda kaise sngthit hai. aakda istemal karne vale kisi pragram ko phail ke andar aakda recognize and access karne men saksham hona chahie. +",5,2,neutral,neutral,neutral +"Something like this is happening to Farooq Abdullah. +","कुछ ऐसी ही बात फारूक अदुल्ल के साथ हो रही है. +","kuchh something hi bat abdullah adull ke sath ho rahi hai +",6,1,negative,neutral,positive +"May be, they laughed at something in the concert. +","संगीत के किसी बात पर हँस रही हों। +","concert ke kisi bat par laughed rahi hon. +",8,1,neutral,neutral,positive +"[This is] a promise of Allah: Allah does not break His promise, but most people do not know. +","(ये) ख़ुदा का वायदा है) ख़ुदा अपने वायदे के ख़िलाफ नहीं किया करता मगर अकसर लोग नहीं जानते हैं +","ye uda ka vayda hai uda apne break his promise nahin kiya karta magar akasar log nahin jante hain +",7,0,neutral,neutral,neutral +"Long term loan for agricultural appliances is admissible. +","कृषि उपकरण के लिए दीर्घकालीन ऋण उपलब्ध हैं। +","krishi upakaran ke lie long term loan hain. +",9,0,neutral,neutral,neutral +"which is the flower story. +","जो एक फूल की भी कहानी है. +","jo ek flower ki bhi story hai +",9,1,neutral,neutral,neutral +"Your Lord knows very well what is in your hearts. If you are good, He is forgiving to those who are penitent. +","जो कुछ तुम्हारे जी में है उसे तुम्हारा रब भली-भाँति जानता है। यदि तुम सुयोग्य और अच्छे हुए तो निश्चय ही वह भी ऐसे रुजू करनेवालों के लिए बड़ा क्षमाशील है +","jo kuchh tumhare ji men hai use tumhara rab bhali-bhanti janta hai. yadi tum suyogy aur achchhe hue to nishchay hi vah bhi aese rujoo karnevalon ke lie bara kshmashil hai +",7,3,positive,neutral,positive +"He tried both allopathic and homeopathic medicines. +","उन्होंने एलोपैथी तथा होमियोपैथी दोनों प्रकार के इलाज करवाए। +","unhonne elopaithi tatha homiyopaithi donon prkar ke ilaj karvae. +",6,1,neutral,neutral,neutral +"even if you weren 't given any choices. +","यहां तक कि अगर तुम किसी भी विकल्प को देखते हुए नहीं थे। +","yahan tak ki agar tum kisi bhi choices ko dekhte hue nahin the. +",7,3,neutral,neutral,neutral +"But the fact is half the colliery is reeling under his debt. +","सच पूछो तो आधी कोलियरी उसकी कर्जदार है। +","sach poochho to aadhi koliyri uski karjdar half +",3,5,negative,neutral,negative +"Don 't bunt. Aim out of the ball park. Aim for the company of immortals. +","गेंद को दो रन के लिए सरकाइए मत। उसे मैदान से बाहर पहुँचाने के लिए निशाना साधिए। अमर व्यक्तियों के साथ का लक्ष्य बनाइए। +","gend ko do ran ke lie sarkaie mat. use maidan se bahar pahunchane ke lie ball park amar vyaktiyon ke sath ka lakshy banaie. +",4,6,neutral,neutral,neutral +"Imagine all that comes with it. +","और पूलिस के साथ क्या क्या आ जाता है। +","aur poolis ke sath kya kya aa jata hai. +",9,2,negative,neutral,neutral +"In two phases banyan and in the other two phases hare (rabbit)is seen. +","इसके दो अंशो मे पिप्पल और दो अंशो मे महान शश(खरगोश) दिखायी देता है। +","iske do ansho me pippal aur do ansho me mahan phases rabbit dikhayi deta hai. +",9,0,neutral,neutral,neutral +"They repeated their demand that the nuclear missiles on the earth must be defused and destroyed. +","उन्होने अपनी मांग को दोहराया कि पृथ्वी के नाभिकीय प्रक्षेपणास्त्रों को बेकार और नष्ट कर दिया जाए। +","unhone apni repeated their demand ki prithvi ke nabhikiy prakshepnastron ko bekar aur nasht kar diya jae. +",7,1,negative,negative,negative +"that is why sapta sindhu language (relion language of parsi) has got converted to hafta hindu. +","इसलिये सप्त सिन्धु अवेस्तन भाषा (पारसियों की धर्मभाषा) मे जाकर हफ्त हिन्दु मे परिवर्तित हो गया (अवेस्ता: वेन्दीदाद फ़र्गर्द 1.18)। +","isliye sapta sindhu avestan bhasha parsiyon ki dharmbhasha me jakar hapht hindu me parivartit ho gaya avesta: vendidad fargard 118. +",9,1,neutral,neutral,neutral +"He said, “Stop it – peace be upon you; I shall seek forgiveness for you from my Lord; indeed He is very kind to me. ” +","इबराहीम ने कहा (अच्छा तो) मेरा सलाम लीजिए (मगर इस पर भी) मैं अपने परवरदिगार से आपकी बख्शिश की दुआ करूँगा +","ibrahim ne kaha achchha to mera salam lijie magar is par bhi main apne paravardigar se seek forgiveness ki duaa karoonga +",9,0,positive,neutral,positive +"The President of India, Shri Pranab Mukherjee has called for changing negative perceptions about women. +","भारत के राष्ट्रपति, श्री प्रणब मुखर्जी ने महिलाओं के बारे में नकारात्मक धारणाओं को बदलने का आग्रह किया। +","president of india, shri pranab mukherjee ne mahilaon ke bare men nakaratmak dharnaon ko badalne ka aagrah kiya. +",9,1,neutral,negative,negative +"In Open office 2. 0 (or higher) for adding on Hindi spelling check +","ओपनऑफ़िस 2.0 (या अधिक) में हिन्दी वर्तनी जाँचक शामिल करने के लिए +","open 20 ya higher men hindi vartni janchak shamil karne ke lie +",5,1,neutral,neutral,neutral +"""Peace and salutation to Noah among the nations!"" +","कि ""सलाम है नूह पर सम्पूर्ण संसारवालों में!"" +","ki peace hai nooh par sampoorn nations men ! +",6,5,positive,neutral,positive +"Mr Sasidharan with dignitaries in his Paddy field +","गणमान्य व्यक्तियों के साथ श्री शशिधरन उनके धान के खेत में +","dignitaries vyaktiyon ke sath shri shashidharan unke dhan ke paddy field +",6,1,neutral,neutral,positive +"Northeastern India The area covering the Indian States of Assam, Arunachal Pradesh, Meghalaya, Manipur and Tripura, and neighbouring areas of Bangladesh and Burma are one of the most earthquake - prone regions of the world. +","यह क्षेत्र, भारतीयक राज्यों यथा असम, अरूणाचल प्रदेश, मेघालय, मणिपुर, तथा त्रिपुरा एवं निकटवर्ती बांग्लादेश तथा वर्मा को आच्छादित करता है, जो विश्व का सर्वाधिक भूकंप प्रभावित क्षेत्र है। +","yah area , bhartiyak northeastern yatha assam , arunachal prdesh , meghalay , manipur , indian tripura evn nikatavarti bangladesh indian burma ko aachchhadit karta hai , jo vishv ka sarvadhik earthquake prbhavit area hai. +",7,1,neutral,neutral,neutral +"Amount outstanding under priority sector lending by public sector banks during the period June 1969 to September 2000 increased from Rs 441 crore to Rs 1, 34, 107 crore and accounted for 43. 41 per cent of their net bank credit as on September 2000. +","इस बीच प्राथमिकता प्राप्त क्षेत्र को दी गई बकाया ऋण राशि जून 1969 से सितंबर 2000 के बीच 441 करोड से बढ कर 1,34,107 करोड़ रुपये हो गई, जो सरकारी क्षेत्र के बैंकों के शुद्घ बैंक ऋण का 43.41 प्रतिशत थी। +","is bich priority sector kshetr ko di gee bakaya rin rashi joon 1969 se sitnbar 2000 ke bich 441 karod se badh kar 1,34,107 karor rupye ho gee, jo sarkari kshetr ke bainkon ke shudgh baink rin ka 4341 prtishat thi. +",4,6,neutral,neutral,positive +"The naqara, twenty pairs, more or less. 3. +","2 नक्कारा जिसकी कोई बीस जोड़ियां हैं। +","2 naqara jiski koee twenty pairs hain. +",8,1,neutral,neutral,neutral +"A meeting was convened to finalize the date of launch of the new channel. +","नए चैनल के विमोचन की तारीख तय करने के लिए सभा बुलाई गई। +","ne channel ke vimochan ki date tay karne ke lie meeting was convened +",8,2,neutral,neutral,neutral +"So we should do everything we can, +","तो हमें वो सब करना चाहिए, जो हम कर सकते है +","to hamen vo everything karna chahie , jo ham kar sakte hai +",4,5,neutral,neutral,neutral +"XML parsing error: '%s' at line %d +","एक्सएम एल पदभंजन त्रुटि: '%s' %d पंक्ति पर +","xml s padbhnjan error : d d line par +",4,0,negative,neutral,negative +"Writing the lead - out may take some time. +","लीड-आउट लिखने में कुछ समय लग सकता है. +","writing the lead kuchh samay lag sakta hai +",5,1,neutral,neutral,neutral +"The first level, the weakest level of civil response against violence, +","सबसे पहला हिंसा के खिलाफ प्रतिक्रिया का सबसे कमजोर रूप, +","sabse first violence ke khilaph response ka sabse weakest level , +",8,1,negative,neutral,negative +"As I knew about it I instantly asked with great curiosity, I had an Indian friend. +","जैसे ही मुझकों इसका पता चला, मैंने तुरंत ही बड़ी जिज्ञासा के साथ उनसे पूछा, मेरे एक हिंदुस्तानी मित्र थे। +","jaise hi mujhkon iska pata chala, mainne turnt hi great curiosity ke sath unse poochha, mere ek hindustani mitr the. +",9,2,positive,neutral,positive +"She was, in the words of Stocqueler, 'for talents and personal attractions without a rival even in England. +","स्टॉक्वेलर के शब्दों में वह प्रतिभा और व्यक्तिगत आकर्षण में इंगलैंड भर में अपना सानी नहीं रखती थी। +","stocqueler ke words men vah talents aur personal attractions men england rival men apna sani nahin rakhti thi. +",6,0,neutral,neutral,positive +"It was during the time of the dictatorship of Herod that Jesus was born, when the condition of the rule was dismal. +","ईसु के जन्म के समय निरकुंश राजा हैरोद का शासन था जिसमे प्रजा की स्थिति शोचनीय थी। +","eesu ke janm ke samay nirkunsh raja hairod ka shasan tha jisme prja ki sthiti shochniy thi. +",6,3,negative,neutral,negative +"If you are not happy with the decision, you can take court action, using the conciliator 's findings if you wish. +","अगर आप उसके निर्णय से संतुष्ट नहीं है, तो चाहें तो कंसिलिएटर को पूछ-ताछ के नतीजों को लेकर आप कानूनी कार्यवाही शुरू कर सकते हैं। +","agar aap uske decision se happy nahin hai , to action to conciliator ko poochh-tachh ke natijon ko lekar aap kanooni karyvahi shuroo kar sakte hain. +",6,1,neutral,neutral,negative +"lesbians enjoy tribadism because they can involve their whole bodies. +","समलैंगिक परस्पर स्त्री मैथुन का आनंद लेते हैं ताकि वे अपने पूरे शरीर को मिला सकें। +","samlaingik paraspar stri maithun ka aannd lete hain taki ve apne poore sharir ko mila saken. +",7,5,positive,neutral,positive +"International usages are adopted in international communication by most of the countries of the world. +","विश्व के अधिकांश देशों द्वारा अन्तर्राष्ट्रीय प्रथा/प्रचलन को आपसी पत्राचार में अपना लिया गया है। +","vishv ke adhikansh deshon dvara antarrashtriy prthaprachalan ko aapsi patrachar men apna liya gaya hai. +",9,0,neutral,neutral,neutral +"Your password has been changed. +","आपका शब्दकूट बदला गया है. +","aapka password changed gaya hai +",6,2,neutral,neutral,neutral +"Non - Political Terrorism - Terrorism is not aimed for the political purposes “”designed to create and maintain fear Ssacen Uchcha Sthar force for the purposes of display, but ultimately a political objective the achievement of personal or collective gain rather than“” +","गैर राजनीतिक आतंकवाद-कि आतंकवाद के उद्देश्य से नहीं है राजनीतिक प्रयोजनों पर जो सचेत डिजाइन बनाने और बनाये रखने के डर के उच्च स्तर के लिए प्रदर्शन बलपूर्वक (coercive) प्रयोजनों लेकिन अंत व्यक्तिगत हो या सामूहिक एक राजनीतिक उद्देश्य की प्राप्ति के बजाए लाभ. +","gair rajnitik political terrorism ke uddeshy se nahin hai rajnitik pryojnon par jo designed to create aur banaye rakhne ke dar ke uchch star ke lie pradarshan balpoorvak coercive pryojnon lekin ant vyaktigat ho ya samoohik ek rajnitik uddeshy ki prapti ke bajae labh +",6,0,negative,neutral,negative +"As for the people of the right hand, how happy they will be! +","और दाहिने हाथ वाले (वाह) दाहिने हाथ वालों का क्या कहना है +","aur dahine hath vale vah dahine hath people ka kya kahna hai +",7,3,positive,positive,positive +"This pertains to Panchayats and inter - alia provides that: i In every village, there shall be a Panchayat which will be a constitutional body. +","इस अधिनियम के मुख्य उपबंध इस प्रकार हैं: 1. हर गांव में एक पंचायत होगी जो एक संवैधानिक निकाय होगी। +","is adhiniyam ke mukhy upbndh is prkar hain : 1 i village men ek panchayats hogi jo ek constitutional body hogi. +",7,4,neutral,neutral,neutral +"No parent could be found in the tree for the path ""% s"" +","कोई जनक ""% s"" पथ के लिए तररू में नहीं मिल सका +","koee parent s path ke lie tree men nahin mil saka +",7,2,neutral,neutral,negative +"The pronouncements of the Supreme Court on the validity of certain measures for, protection of these sections of the society amply bear out the need and justification for these exceptions See Yusuf Abdul Aziz v. +","समाज के इन वर्गों के संरक्षण के लिए कतिपय कानूनों की विधिमान्यता के संबंध में उच्चतम न्यायालय की उद्घोषणाएं इन अपवादों की जरूरत तथा औचित्य को प्रचुर रूप में प्रमाणित करती हैं। +","samaj ke in vargon ke snrakshan ke lie katipay kanoonon ki vidhimanyta ke snbndh men uchchatam nyayalay ki udghoshnaen in apvadon ki jaroorat tatha auchity ko prchur roop men prmanit karti hain. +",6,5,neutral,neutral,positive +"There are those who disbelieve in Allah and His Messengers and seek to differentiate between Allah and His Messengers, and say: 'We believe in some and deny others, and seek to strike a way between the two.' +","बेशक जो लोग ख़ुदा और उसके रसूलों से इन्कार करते हैं और ख़ुदा और उसके रसूलों में तफ़रक़ा डालना चाहते हैं और कहते हैं कि हम बाज़ (पैग़म्बरों) पर ईमान लाए हैं और बाज़ का इन्कार करते हैं और चाहते हैं कि इस (कुफ़्र व ईमान) के दरमियान एक दूसरी राह निकलें +","beshak jo log allah aur uske messengers se deny karte hain aur allah aur uske messengers men tafaraa way seek hain aur kahte hain ki ham baz paimbron par eeman lae hain aur baz ka deny karte hain aur seek hain ki is kufr v eeman ke darmiyan ek doosri rah niklen +",6,0,neutral,neutral,negative +"Never keep in the vicinity of the adult birds +","वयस्क पक्षियों से निकटता न बनाएं। +","adult birds se nikatta n banaen. +",9,2,neutral,neutral,neutral +"a lot of young people with a demographic dividend +","एक जनसांख्यिकीय लाभांश के साथ कई युवा लोग +","ek demographic dividend ke sath kee young people +",8,4,neutral,neutral,neutral +"Gandhiji’s talisman for the country 's rulers was simple and powerful and I quote: +","देश के शासकों के लिए गांधी जी का मंत्र सरल और शक्तिशाली थाः +","country ke rulers ke lie gandhiji i ka talisman simple aur powerful quote +",8,2,positive,neutral,positive +"He met hundreds of people from all religions to share in their suffering. +","उन्होंने सभी धर्मों के सैकड़ों लोगों से मिलकर उनके दुःख में अपनी भागीदारी जतायी। +","people sabhi religions ke hundreds logon se share unke suffering men apni bhagidari jatayi. +",7,1,neutral,negative,negative +"Now, what stands in the way of this? +","अब इस सब के मार्ग में क्या अवरोध है ? +","ab is sab ke marg men kya avrodh hai +",5,8,neutral,neutral,neutral +"Whatever you possess is transient and whatever is with God is everlasting. We will recompense those who exercise patience with their due reward and even more. +","तुम्हारे पास जो कुछ है वह तो समाप्त हो जाएगा, किन्तु अल्लाह के पास जो कुछ है वही बाक़ी रहनेवाला है। जिन लोगों ने धैर्य से काम लिया उन्हें तो, जो उत्तम कर्म वे करते रहे उसके बदले में, हम अवश्य उनका प्रतिदान प्रदान करेंगे +","tumhare pas jo kuchh hai vah to samapt ho jaega, kintu allah ke pas jo kuchh hai vahi bai rahnevala hai. jin logon ne dhairy se kam liya unhen to, jo uttam karm ve karte rahe uske badle men, ham avashy unka prtidan prdan karenge +",8,4,positive,neutral,positive +"This momentous decision to go to England to become a barrister took place when Badruddin was fifteen years old, a year after the mutiny. +","बैरिस्टर बनने के लिए इंग़्लैड जाने का यह महत्वपूर्ण निर्णय बगावत के एक वर्ष बाद लिया गया जब बदरूद्दीन पंद्रह वर्ष के थें. +","barrister banne ke lie inlaid jane ka yah momentous decision mutiny ke ek place bad liya gaya jab badrooddin fifteen place ke then +",6,4,neutral,neutral,neutral +"Co - operation should be encouraged inland, industry and in other departments of national activity so that free India may develop into a co - operative commonwealth. +","खेती, उद्योग तथा राष्ट्रीय प्रवृत्ति के अन्य विभागों में सहकारिता की भावना को प्रोत्साहन देना चाहिये, जिससे स्वधीन भारत सहकारी प्रजातंत्र का रूप ग्रहण कर सके। +","inland , industry tatha national activity ke other departments men operation ki bhavna ko protsahan dena chahiye , jisse svdhin india sahkari prjatntr ka roop grahan kar sake. +",7,1,neutral,neutral,positive +"She cut the cake into six pieces and gave one to each of the children. +","उसने केक को छः टुकड़ो में काटकर, हर बच्चे हो एक टुकड़ा दिया। +","gave cake ko chha pieces men katakar, har bachche ho ek tukara diya. +",5,5,neutral,neutral,negative +"Provided that the amount of income-tax calculated on the income by way of short-term capital gains referred to in section 111A shall be at the rate of fifteen per cent; +","परंतु धारा 111क में उल्लिखित अल्पकालिक पूंजी अभिलाभों के रूप में आय पर परिकलित आय-कर की रकम पंद्रह प्रतिशत की दर से होगी; +","parntu dhara 111k men ullikhit short-term capital gains ke roop men aay par income-tax calculated ki fifteen per cent ki dar se hogi +",6,8,neutral,neutral,positive +"1 gallon is 4 quarts. +","1 गॅलन 4 क्वॉर्ट होता है. +","1 gallon 4 quarts hota hai +",10,0,neutral,neutral,neutral +"The financial ill health of the State Electricity Boards is due to excessive cross - subsidization, poor economic efficiency, poor maintenance of network, and poor collection of revenue. +","राज्य बिजली बोर्डो की खस्ता हालत उनकी अत्यधिक सब्सिडी, खराब आर्थिक दक्षता, नेटवर्क का असंतोषजनक रख-रखाव और राजस्व की खराब वसूली के कारण है। +","state health boards ki maintenance halat unki excessive cross , ill financial efficiency , network ka asntoshajanak rakh-rkhav aur revenue ki ill vasooli ke karan hai. +",5,5,negative,negative,negative +"When Our revelations are recited to him, he says, “Legends of the ancients. ” +","जब हमारी आयतें उसे सुनाई जाती है तो कहता है, ""ये तो पहले की कहानियाँ है।"" +","jab hamari revelations are recited jati hai to kahta hai, ye to pahle ki kahaniyan hai. +",6,3,neutral,neutral,neutral +"Some establishments keep their books of accounts / ledgers based on loose leaf system. +","कुछ प्रतिष्ठान अपनी लेखा पुस्तकें खुले पन्नों की प्रणाली के आधार पर रखते हैं। +","kuchh prtishthan apni lekha pustken khule pannon ki prnali ke aadhar par rakhte hain. +",7,1,neutral,neutral,negative +"The living organism and its relationship with the environment. +","जीवित जीव और पर्यावरण के साथ उसके संबंध। +","living organism aur environment ke sath uske relationship +",8,3,neutral,neutral,neutral +"Under the Act, weight and measures also include 'weighing or measuring instrument' which means ""any object, instrument, apparatus or device, or any combination thereof, which is, or is intended to be, used, exclusively or additionally, for the purpose of making any weighment or measurement, and includes any appliance, accessory or part associated with any such object, instrument, apparatus or device"". +","अधिनियम के अंतर्गत, भार तथा माप में ""भार करने का मापन करने वाला उपकरण"" भी शामिल है जिसका अर्थ है ""कोई भी वस्तु उपकरण, यंत्र या युक्ति या उनका कोई भी संयोजक जिसका प्रयोग से अनन्य रूप से या अतिरिक्त रूप से किया जाता है या किया जाना आशयित है तथा इसमे ऐसी किसी वस्तु, उपकरण, उपस्कर या युक्ति से संबद्ध कोई उपकरण, सहायक सामग्री या पुर्जा शामिल है।"" +","adhiniyam ke antargat, weight and measures men bhar karne ka mapan karne vala upakaran bhi shamil hai jiska arth hai koee bhi vastu upakaran, apparatus or device ya unka koee bhi snyojak jiska pryog se anany roop se ya atirikt roop se kiya jata hai ya kiya jana aashyit hai tatha isme aesi kisi vastu, upakaran, upaskar ya yukti se snbaddh koee upakaran, sahayak samagri ya purja shamil hai. +",4,6,neutral,neutral,neutral +"So your left side of the equation is 3 times +","तो आपके समीकरण की उल्टी और 3 गुना है. +","to aapke equation ki left aur 3 times hai +",6,5,neutral,negative,neutral +"Never show the dialog again for all links of this type. +","इस प्रकार के सभी लिंक के लिए संवाद पुनः कभी न दिखाएं. +","is type ke sabhi links ke lie dialog puna kabhi n show +",6,5,negative,neutral,neutral +"The optical photo conductor is no longer functioning +","ऑप्टिकल फोटो कंडक्टर कामकाज नहीं रहा है +","optical photo conductor kamkaj nahin raha hai +",8,3,negative,negative,negative +"There is also an international dimension to the problem that has not been addressed except for our having shouted from the rooftops that Pakistan is responsible for cross - border terrorism. +","समस्या का अंतरराष्ट्रीय पहलू भी है जिस पर कभी गौर नहीं किया गया, सिर्फ यही कहा जाता रहा कि सीमा पार से आतंकवाद को बढवा देने के लिए पाकिस्तान दोषी है. +","problem ka international dimension bhi hai jis par kabhi responsible nahin kiya gaya , sirph yahi kaha jata raha ki border cross se terrorism ko badhva dene ke lie pakistan doshi hai +",8,2,negative,negative,negative +"Family Planning Association of India and Branch offices. +","भारतीय परिवार नियोजन संघ और शाखा कार्यालय। +","india family niyojan association aur branch karyalay. +",7,1,neutral,neutral,neutral +"A helicopter has also been provided to Ministry of Home Affairs in the North - East for VIP transportation. +","अतिविशिष्ट व्यक्तियों (वी. आई. पी.) के इस्तेमाल के लिए गृह मंत्रालय को पूर्वोत्तर क्षेत्र हेतु हेलीकॉप्टर उपलब्ध कराया गया है। +","ativishisht vyaktiyon transportation north pi ke affairs ke lie home ministry ko east kshetr hetu helicopter upalabdh karaya gaya hai. +",8,1,neutral,neutral,positive +"that the world, because of people like Tony Blair and Bono +","कि ये संसार, टोनी ब्लेयर और बोनो और +","ki ye world, toni blair aur people aur +",8,0,negative,neutral,positive +"The future development of the mini steel industry will depend on the availability of sponge iron. +","लघु इस्पात उद्योग का भावी विकास स्पंज आयन की उपलब्धता पर निर्भर करेगा. +","mini steel industry ka future development sponge aayan ki availability par nirbhar karega +",7,6,neutral,neutral,neutral +"Unable to read file: '% 1' +","फ़ाइलः '% 1' को पढ़ने में अक्षम. +","file 1 ko pane men unable +",7,1,negative,neutral,neutral +"Enquiries were constituted with a view to toning up the administration . +","प्रशासन में सुधार लाने की दृष्टि से जांच कमेटियां बिठायी गयीं . +","prshasan men sudhar lane ki drishti se janch kametiyan bithayi gayin +",4,7,neutral,neutral,neutral +"and preached to them in public, and also addressed them in secret. +","""फिर मैंने उनसे खुले तौर पर भी बातें की और उनसे चुपके-चुपके भी बातें की +","phir mainne unse public taur par bhi secret ki aur unse chupke-chupke bhi secret ki +",5,5,neutral,neutral,neutral +"Rishi Srink is a love story of a Risi (Saint) +","ॠष्य ॠंग एक ॠषि की प्रेमकथा। +","ॠshy ॠng ek saint ki love +",7,0,neutral,positive,positive +"It was published as a posthumous work after his death by his son Narayan Chandra Vidyaratna in 1892. +","यह निबन्ध उनकी मृत्युपरान्त उनके पुत्र नारायणचन्द्र विद्यारत्न ने 1892 में प्रकाशित कराया। +","yah nibandh unki mrityuprant unke putr narayanachandr vidyaratn ne 1892 men prkashit karaya. +",10,0,neutral,neutral,negative +"Since, most of the producer organizations are at nascent stage, their focus is mainly on production and to some extent the aggregation. +","चूंकि अधिकतर उत्पावदक संगठन शुरूआती अवस्थाथ में हैं, अतः उनका मुख्य फोकस उत्पादन और कुछ हद तक संग्रहण पर है. +","choonki producer organizations sngathan shurooaati avasthath men hain, ata unka mukhy phokas utpadan aur kuchh had tak sngrahan par hai +",6,5,neutral,neutral,neutral +"Ibne Sina (980 - 237) associated with the medical science to be ahead of many who wrote the book became the basis of modern medical science +","इबने सीना (९८०-१०३७) ने चिकित्सा विज्ञान से संबंधित कई पुस्तकें लिखीं जो कि आगे जा कर आधुनिक चिकित्सा विज्ञान का आधार बनीं। +","ibne many ९८०-१०३७ ne medical science se snbndhit kee pustken likhin jo ki aage ja kar modern medical science ka basis banin. +",8,4,neutral,neutral,neutral +"So 8 is 2 times 2 times 2. +","तो 8 होता है 2 गुना 2 गुना 2 +","to 8 hota hai 2 times 2 times 2 +",10,0,neutral,neutral,neutral +"A venture capital fund set up as a company shall be wound up in accordance with the provisions of the Companies Act, 1956 (1 of 1956). +","एक कंपनी के रूप में स्थापपित उद्यम पूंजी निधि को कंपनी अधिनियम 1956 (1956 का 1) के प्रावधानों के अनुसार समाप्त कर दिया जाएगा। +","ek knpni ke roop fund set venture capital fund ko companies act 1956 1956 ka 1 ke pravdhanon ke anusar samapt kar diya jaega. +",7,1,neutral,neutral,neutral +"Backup Evolution data and settings to an archive file +","एवोल्यूशन डाटा व सेटिंग का बैकअप लें व फिर भंडारित करें +","evolyooshan data and settings ka archive file v phir bhndarit karen +",7,1,neutral,neutral,neutral +"American Lung Association of New England on quality of air +","वायु की गुणवत्ता पर न्यू इंगलैंड का अमेरिकन लंग एसोसिएशन +","quality of air par nyoo inglaind ka amerikan lng association +",7,1,neutral,neutral,neutral +"The pots have to be exposed to sunlight as the spirulina takes 3 to 4 days to mature. +","चूंकि स्पाइरुलिना को बढ़ने में 3-4 दिन लग जाते हैं इसलिए पॉट पर सूर्य की रोशनी अवश्य पड़नी चाहिए। +","choonki spirulina ko bane men 3-4 days lag jate hain islie pots par soory ki roshni avashy parni chahie. +",8,1,neutral,neutral,positive +"Neutrophilic leukocytes with respect to phagocytes, release histolytic enzymes. +","भक्षक कोशिकाओं के संबंध में न्यूट्रोफिलिक श्वेताणु ऊतकीय एंजाइमों को मुक्त करते हैं +","phagocytes koshikaon ke respect men nyootrophilik shvetanu ootkiy enzymes ko release karte hain +",8,1,neutral,neutral,positive +"He told me to go to his room. +","उसने मुझे उसके कमरे में जाने को कहा। +","usne mujhe uske room men jane ko kaha. +",9,1,neutral,neutral,neutral +"My daughter provided me with a well - written chronicle of events in the first year of her elementary school. +","मुझे मेरी बेटी ने उसके प्राथमिक विद्यालय के पहले वर्ष की घटनाओं का अच्छी तरह से लिखा हुआ वृत्तान्त दिया है। +","mujhe daughter provided ne uske elementary school ke pahle varsh ki ghatnaon ka achchhi tarah se likha huaa vrittant diya written +",6,2,positive,neutral,positive +"All perception of unity, similarity, difference, kind, uniqueness arrived at by the supramental reason is consonant with and depends on this order. +","अतिमानसिक बुद्धि एकता, सदृशता, विषमता, जाति और विशिष्टता का जो भी ज्ञान प्राप्त करती है वह सब इस विधान के साथ समस्वर होता है तथा इस पर निर्भर करता है। +","supramental reason ekta, sadrishta, vishamta, jati aur vishishtta ka jo bhi jnjan prapt karti hai vah sab is vidhan ke sath samasvar hota hai tatha is par nirbhar karta hai. +",7,5,neutral,neutral,positive +"The other two members will have knowledge and experience of special educational needs . +","बाकी के दो सदस्यों के पास या तो विशेष शैक्षिक आवश्यकताओं या स्थानीय सरकार या दोनों ही के बारे में ञान तथा अनुभव होगा . +","other ke do members ke pas ya to special educational needs ya knowledge sarkar ya donon hi ke bare men njan tatha experience hoga +",6,6,neutral,neutral,positive +"Well an idea is that that strategy, that learning strategy, +","एक आयडिया ये है कि युक्ति लगाना, और इसे सीखना +","ek aaydiya ye hai ki strategy lagana, aur ise learning +",8,2,neutral,neutral,positive +"These are not available if you rent . +","ये ऋण किराए पर रहने वालों को नहीं मिलते . +","ye rin rent par rahne valon ko nahin milte +",10,0,neutral,neutral,neutral +"and he had recited it to them, they would not have believed in it. +","और वह उन अरबो के सामने उसको पढ़ता तो भी ये लोग उस पर ईमान लाने वाले न थे +","aur vah un recited ke samne usko pata to bhi ye log us par eeman lane vale n the +",3,4,negative,positive,neutral +"The sheet which contains the details of allotment. +","आबंटन संबंधी विवरणों को दर्ज करने वाली शीट। +","allotment snbndhi vivarnon ko darj karne vali sheet +",8,2,neutral,neutral,neutral +"I realized that I was no longer the same runner I used to be, +","मुझे एहसास हुआ कि मैं वो धावक नहीं थी जो मैं हुआ करती थी, +","mujhe ehsas huaa ki i vo same nahin thi jo i huaa karti thi , +",7,1,negative,neutral,negative +"He cannot bring down its greater spiritual nature into this lower triplicity; for here the mental being is the highest expression of the Self. +","वह उसकी महत्तर आध्यात्मिक प्रकृति को नीचे उतारकर इस निम्नतर त्रिविध सत्ता में नहीं ला सकता; क्योंकि यहां तो मनोमय पुरुष ही आत्मा की सर्वोच्च अभिव्यक्ति है। +","vah uski greater spiritual nature ko niche utarakar is nimnatar trividh satta men nahin la sakta kyonki yahan to manomay purush hi aatma ki sarvochch abhivyakti hai. +",7,4,neutral,neutral,neutral +"I am angry with Megan because she did not invite me to her party. +","मैं मेगन से क्रुद्ध हूं क्योंकि उसने अपने पार्टी में मुझे आमंत्रित नहीं किया था। +","main megan se kruddh hoon kyonki usne apne parti men mujhe aamntrit nahin kiya tha. +",9,1,negative,neutral,negative +"and likewise to cherish my mother; He has not made me arrogant, unprosperous. +","और अपनी माँ का हक़ अदा करनेवाला बनाया। और उसने मुझे सरकश और बेनसीब नहीं बनाया +","aur apni cherish my mother ada karnevala banaya. aur made me arrogant aur bensib nahin banaya +",6,2,positive,negative,positive +"115WF. If any person, being an employer— +","115बच.यदि कोर्इ व्यक्ति, जो नियोजक है– +","115bachydi kori person, jo employer hai +",7,1,neutral,neutral,neutral +"There is only one way of acquiring this knowledge contemplation of the beauty and majesty of Man and Nature and reading the Book of Self. +","उस विद्या-प्राप्ति का केवल एक मार्ग है-प्रकृति और मानव की सुन्दरता और महिमा का चिंतन और आत्म-ग्रन्थ प्रकृति और मानव की सुन्दरता और महद् महिमा का चिंतन और आत्म-ग्रन्थ का पठन। +","us vidya-prapti ka keval ek way hai-prkriti aur man ki beauty aur book ka contemplation aur aatm-granth nature aur man ki beauty aur mahad book ka contemplation aur aatm-granth ka pathan. +",6,3,neutral,neutral,positive +"I hurried so as not to miss the train. +","मैंने जल्दी करी जिससे कि ट्रेन न छूट जाए। +","i jaldi kari jisse ki train n chhoot jae. +",8,1,neutral,negative,positive +"Welcome to Evolution. The next few screens will allow Evolution to connect to your email accounts, and to import files from other applications. +","एवोल्यूशन में स्वागत है. अगला कुछ स्क्रीन आपके एवोल्यूशन को आपके ईमेल खाते से जुड़ने में सक्षम बनायेगा, और अन्य अनुप्रयोगों से फ़ाइल को आयात करेगा. +","evolyooshan men svagat hai agla kuchh skrin aapke evolyooshan ko aapke eemel khate se jurne men saksham banayega, aur any anupryogon se fail ko aayat karega +",6,4,positive,neutral,positive +"So let 's round each of these numbers. +","चलो इन दोनो संख्या को राउंड ऑफ करते है. +","chalo in dono numbers ko raund ऑph karte hai +",7,6,neutral,neutral,neutral +"The worth of the security for sale or purchase. +","प्रतिभूति का मूल्य जो खरीद या बिक्री के लिए हो। +","security ka mooly jo sale or purchase ke lie worth +",7,1,neutral,neutral,positive +"They made the boy continue digging, but he found nothing. +","उन्होंने लड़के को और खुदाई करने के लिए मजबूर किया, मगर मिला कुछ नहीं। +","unhonne larke ko aur digging karne ke lie majboor kiya, magar found kuchh nahin. +",8,4,neutral,neutral,neutral +"Are you sure you want to abandon this set of profile changes and exit? +","क्या आप निश्चित हैं कि आप इस सेट के प्रोफाइल के बदलावों को छोड़ना और बाहर निकलना चाहते हैं? +","kya aap set hain ki aap is set of profile ke abandon this set aur bahar nikalna chahte hain +",4,3,neutral,negative,negative +"The poet keeps thinking about the country all the time. +","कवि उठते-बैठते देश चिन्तन में मग्न रहा करता। +","poet uthte-baithte country chintan men time raha karta. +",7,4,neutral,positive,neutral +"Then We destroyed the others. +","फिर हमने बाक़ी लोगों को तबाह व बर्बाद कर दिया +","phir hamne bai others ko tabah v barbad kar diya +",6,3,negative,negative,negative +"I hope you 're here to find out what does it take to go from an idea to a business. +","मुझे आशा है कि आप कर रहे हैं यहाँ यह क्या करता है खोजने के लिए एक विचार से एक व्यवसाय के लिए जाने के लिए ले लो। +","mujhe hope hai ki aap kar rahe hain yahan yah kya karta hai khojne ke lie ek idea se ek business ke lie jane ke lie le lo. +",4,2,neutral,neutral,positive +"Can a spectator 's enjoyment of a performance and the devotion of a devotee in a ritual be equated? +","क्या दर्शक के आनंद और नर्तक भक्त की भक्ति को एक कहा जा सकता है? +","kya spectator ke enjoyment aur nartak bhakt ki bhakti ko ek kaha ja sakta hai +",9,1,neutral,neutral,positive +"Agriculture is mainly done to meet the food requirement of the family and livestock. +","खेती मुख्य रूप से परिवार तथा पशुओं की भोजन आवश्यकताओं के लिए की जाती है। +","agriculture mukhy roop se family tatha livestock ki food requirement ke lie ki jati hai. +",10,0,neutral,neutral,neutral +"He grow up together and remains friends life long. +","ये एक साथ ही पले और बढ़े और आजीवन मित्र रहे। +","ye ek sath hi grow aur bae aur friends life long +",6,4,positive,neutral,positive +"They swear to you that you may be reconciled to them. But even if you are reconciled to them, Allah shall not be reconciled to the transgressing lot. +","वे तुम्हारे सामने क़समें खाएँगे ताकि तुम उनसे राज़ी हो जाओ, किन्तु यदि तुम उनसे राज़ी भी हो गए तो अल्लाह ऐसे लोगो से कदापि राज़ी न होगा, जो अवज्ञाकारी है +","ve tumhare samne smen khaenge taki tum unse razi ho jao, kintu yadi tum unse razi bhi ho ge to allah aese logo se kadapi razi n hoga, jo avajnjakari hai +",8,1,neutral,negative,neutral +"And all that which they used to earn availed them not. +","फिर जो कुछ वे कमाते रहे, वह उनके कुछ काम न आ सका +","phir jo kuchh ve earn rahe, vah unke kuchh kam n aa saka +",8,1,neutral,negative,neutral +"An invoice that has been approved by a seal or stamp by the consul of the importer 's country that has an office in the exporter' s country. +","ऐसा बीजक जिसका अनुमोदन आयातक देश के वाणिज्य दूतावास द्वारा जिसका कार्यालय निर्यातक देश में हों, द्वारा मुहर लगाकर कर दिया गया हो। +","aesa bijak jiska anumodan aayatak desh ke vanijy dootavas dvara jiska karyalay niryatak desh men hon, dvara muhar lagakar kar diya gaya ho. +",5,8,neutral,neutral,positive +"They would, you know, throw it back at you. +","वे इस खेल को आप पर वापस फेंक देंगे. +","ve is khel ko aap par throw it back +",7,2,negative,neutral,neutral +"In response, he turned away along with his army and said, “He is a magician or a madman. ” +","तो उसने अपने लशकर के बिरते पर मुँह मोड़ लिया और कहने लगा ये तो (अच्छा ख़ासा) जादूगर या सौदाई है +","to usne apne lashakar ke birte par munh mor liya aur kahne laga ye to achchha asa jadoogar ya saudaee hai +",8,2,neutral,neutral,neutral +"And the earth throws up her burdens (from within), +","और धरती अपने बोझ बाहर निकाल देगी, +","aur earth apne burdens bahar nikal degi , +",9,1,negative,neutral,negative +"Round them will be passed a cup of pure wine; +","उनके बीच विशुद्ध पेय का पात्र फिराया जाएगा, +","unke bich pure pey ka patr cup jaega , +",6,1,neutral,neutral,neutral +"This will be our tribute to Mahatma Gandhi on his 150th birth anniversary to be celebrated in the year 2019. +","ऐसा करना महात्मा गांधी को उनकी 150वीं जयंती पर हमारी श्रद्धांजलि होगी जो वर्ष2019 में मनाई जाएगी।’ +","aesa karna mahatma gandhi ko unki 150vin birth par hamari tribute hogi jo varsh2019 men manaee jaegi. +",7,0,positive,neutral,positive +"and Our command is but a single [word], like the twinkling of an eye. +","और हमारा आदेश (और काम) तो बस एक दम की बात होती है जैसे आँख का झपकना +","aur hamara aadesh aur single to bas ek dam ki word hoti hai jaise aankh ka twinkling +",7,2,neutral,neutral,positive +"Software and digital video industries have duly recognized forensic watermark. +","साफ्टवेयर तथा डीजिटल वीडियो उद्योग ने विधि वाटरमार्क की विधिवत मान्यता दी है। +","software tatha dijital video industries ne vidhi watermark ki vidhivat manyta digital hai. +",7,0,neutral,neutral,neutral +"There is a proposal to renew the outstanding bonds by exercising option. +","विकल्प द्वारा आशोधित बांड के नवीकरण का प्रस्ताव विचाराधीन है। +","option dvara aashodhit bonds ke navikaran ka proposal vicharadhin hai. +",8,1,neutral,neutral,positive +"She could see a roof covered with cracked tiles , sagging with age as if a giant had pressed it down with an invisible hand . +","सामने एक छत भी दिखाई देती है , मुद्दत पुरानी , इटी - फूटी शहतीरों से ढंकी हुई - मानो किसी विशाल दैत्य ने अपने अदृश्य हाथों से उसे मसोस डाला हो । +","samne ek chhat bhi dikhaee deti hai , muddat purani , iti - phooti shahtiron se dhnki huee - mano kisi vishal daity ne apne invisible hand se use masos dala ho . +",8,1,negative,neutral,positive +"Though Tilak was not a revolutionary and nor did he believe in violent methods, elaborate security arrangements were made to guard him while he was under arrest. +","हालांकि तिलक कोई क्रांतिकारी न थे और हिंसक तरीकों में विश्वास नहीं करते थे, फिर भी उन्हें गिरफ्तार कर कड़ी सुरक्षा-व्यवस्था में रखा गया। +","halanki tilak koee krantikari n the aur violent methods men vishvas nahin karte the, phir bhi unhen giraphtar kar elaborate security arrangements rakha gaya. +",7,4,neutral,negative,negative +"Unable to build an audio track list. +","एक ऑडियो ट्रैक सूची की रचना करने में असमर्थ! +","ek audio track list ki rachna karne men unable ! +",9,1,negative,neutral,neutral +"Dhartnavaram Ramakrishnamacharyulu As mentioned earlier, except for a few, the modern theatrical plays were the result of the influence of English literature, which had then became a fashion. +","जैसे कि पहले कहा जा चुका है कि बहुत कम उदाहरणों को छोडकर आधुनिक रंगमंच के नाटकों की रचना तथा प्रदर्शन अंग्रेजी साहित्य के प्रभाव से ही आरंभ हुए हैं। +","jaise ki pahle kaha ja chuka hai ki bahut kam udaharnon ko chhodakar aadhunik rngmnch ke natkon ki rachna tatha pradarshan angreji sahity ke prbhav se hi aarnbh hue hain. +",7,3,neutral,neutral,positive +"This option will connect to the server using Kerberos 5 authentication. +","Kerberos 5 सत्यापन के उपयोग से यह विकल्प सर्वर से जोड़ेगा. +","Kerberos 5 option will connect se yah vikalp server se jorega +",6,3,neutral,neutral,neutral +"To go to residences to provide some service. +","कोई सेवा प्रदान करने के लिए निजी घरों पर जाने वाला। +","koee service prdan karne ke lie niji residences par jane vala. +",8,1,neutral,neutral,neutral +"They, (the People of the Book), have said that God has taken for Himself a son. He is too glorious to have a son. To Him belongs all that is in the heavens and the earth. All pray in obedience to Him. +","कहते है, अल्लाह औलाद रखता है-महिमावाला है वह! (पूरब और पश्चिम हीं नहीं, बल्कि) आकाशों और धरती में जो कुछ भी है, उसी का है। सभी उसके आज्ञाकारी है +","kahte hai , god son people hai-mhimavala hai vah ! glorious aur pashchim book nahin , heavens aakashon aur earth men jo kuchh bhi hai , usi ka hai. sabhi uske aajnjakari hai +",5,3,positive,positive,positive +"Time after which to automatically increase speed (secs) +","समय जिसके बाद गति को स्वतः बढ़ाना है (सेकेंड) +","time jiske bad speed ko svta baana hai sekend +",8,1,neutral,neutral,positive +"In an irritated voice, they said, +","एक परेशान आवाज़ में, उन्होंने कहा कि, +","ek irritated voice men , unhonne kaha ki , +",9,2,negative,negative,negative +"He instilled the core values of this organization, the three I’s i. e. industry, impartiality and integrity in the organization. +","उन्होंने इस संगठन में तीन प्रमुख मूल्यों परिश्रम, निष्पक्षता और ईमानदारी का समावेश किया। +","s is organization men i core values industry , impartiality aur integrity ka samavesh kiya. +",7,4,positive,positive,positive +"These are not available if you rent . +","ये ऋण किराए पर रहने वालों को नहीं मिलते . +","ye available kirae par rahne valon ko nahin milte +",8,2,neutral,neutral,neutral +"If selected, you will be notified when entering an SSL enabled site +","यदि चुना गया है, जब आप एसएसएल सक्षम साइट पर प्रवेश करते हैं तो आपको सूचित किया जाएगा +","yadi chuna gaya hai , jab aap ssl saksham site par prvesh karte hain to aapko soochit kiya jaega +",6,6,neutral,neutral,neutral +"smallest absolute value, at which the normal line can +","छोटी से छोटी निरपेक्ष मूल्य, जिस पर सामान्य लाइन कर सकते हैं +","smallest se smallest absolute mooly, jis par normal line kar sakte hain +",7,3,neutral,positive,positive +"I congratulate him for winning this coveted award. I am sure he will continue to enrich Hindi literature in the years to come. +","मैं इस प्रतिष्ठित पुरस्कार को जीतने के लिए उन्हें बधाई देता हूं। मुझे विश्वास है कि वह आने वाले वर्षों में हिंदी साहित्य को समृद्ध करते रहेंगे। +","main is coveted award ko jitne ke lie unhen badhaee deta hoon. mujhe vishvas hai ki vah aane vale varshon men hindi sahity ko samriddh karte rahenge. +",8,1,positive,positive,positive +"Bridge critical gaps in local infrastructure and other development requirements that are not being adequately met through existing inflows. +","स्थानीय बुनियादी ढांचे और अन्य विकास की महत्वपूर्ण आवश्यकताओं के बीच के अंतर को पाटना, जिसे मौजूदा विकास प्रवाह में भली प्रकार से दूर नहीं किया जा रहा है। +","local buniyadi dhanche aur critical infrastructure ki mahatvpoorn requirements ke bich ke bridge ko patna , jise maujooda infrastructure inflows men bhali prkar se door nahin kiya ja raha hai. +",7,5,neutral,negative,negative +"When they entered unto him, and said: Salaman (peace)! [Ibrahim (Abraham)] said: ""Indeed! We are afraid of you."" +","कि जब ये इबराहीम के पास आए तो (पहले) उन्होंने सलाम किया इबराहीम ने (जवाब सलाम के बाद) कहा हमको तो तुम से डर मालूम होता है +","ki jab ye ibrahim ke pas aae to pahle unhonne peace kiya ibrahim ne jvab peace ke bad kaha hamko to tum se dar maloom hota hai +",7,4,neutral,negative,positive +"Apart from working out all the sums from prescribed textbooks, Satyen would solve similar sums from subsidiary text - books. +","सत्येन निर्धारित पाठ्य-पुस्तकों में दिये हुए सब प्रश्नों को करने के अतिरिक्त सहायक पाठ्य-पुस्तकों से भी वैसे ही प्रश्नों को हल करते थे। +","satyen prescribed textbooks men diye hue sab prashnon ko karne ke atirikt subsidiary text se bhi vaise hi prashnon ko hal karte the. +",8,2,neutral,neutral,positive +"we need to look at learning +","हम सीखने पर ध्यान देने की जरूरत हैं +","ham learning par dhyan dene ki jaroorat hain +",9,1,neutral,neutral,neutral +"The Ministry has taken several steps to ensure the Scheme is implemented effectively +","मंत्रालय ने इस योजना को प्रभावी ढंग से लागू करने के लिए विभिन्न कदम उठाए हैं। +","ministry ne is yojna ko prbhavi dhng se lagoo karne ke lie vibhinn kadam uthae hain. +",8,4,neutral,neutral,positive +"and encourage them to do the same. +","और उन्हें उत्साहित कीजिये ये करने के लिये। +","aur unhen encourage kijiye ye karne ke liye. +",9,1,neutral,neutral,positive +"They think that the Confederates have not withdrawn; and if the Confederates should come (again), they would wish they were in the deserts (wandering) among the Bedouins, and seeking news about you (from a safe distance); and if they were in your midst, they would fight but little. +","(मदीने का मुहासेरा करने वाले चल भी दिए मगर) ये लोग अभी यही समझ रहे हैं कि (काफ़िरों के) लश्कर अभी नहीं गए और अगर कहीं (कुफ्फार का) लश्कर फिर आ पहुँचे तो ये लोग चाहेंगे कि काश वह जंगलों में गँवारों में जा बसते और (वहीं से बैठे बैठे) तुम्हारे हालात दरयाफ्त करते रहते और अगर उनको तुम लोगों में रहना पड़ता तो फ़क़त (पीछा छुड़ाने को) ज़रा ज़हूर (कहीं) लड़ते +","mdine ka muhasera karne vale chal bhi die magar ye log abhi yahi samajh rahe hain ki kafiron ke lashkar abhi nahin ge aur agar kahin kuphphar ka lashkar phir aa pahunche to ye log chahenge ki kash vah jnglon men gnvaron men ja baste aur vhin se baithe baithe tumhare halat daryapht karte rahte aur agar unko tum logon men rahna parta to fat pichha chhurane ko zara zahoor khin larte +",5,8,neutral,neutral,positive +"I decided to devote my energies towards bridging the gulf between the old leaders and the new socialist group . +","मैंने पुराने नेताओं और नये सोशलिस्ट गुट के बीच खाई खत्म करने में अपनी ताकत का इस्तेमाल करने का फैसला किया . +","i old leaders aur naye energies gut ke bich gulf khatm karne men apni takat ka istemal karne ka phaisla kiya +",7,3,neutral,neutral,positive +"General lien does not give the right to dispose off the articles. +","सामान्य धारणाधिकार ऋणदाता को वस्तुओं को बेचने का अधिकार प्रदान नहीं करता। +","general lien rindata ko vastuon ko bechne ka adhikar prdan nahin karta. +",9,2,negative,negative,neutral +"This Conference, by focusing on water use efficiency, will help to bring this important issue to the forefront of policy discourse. +","इस सम्मलेन के जल उपयोग दक्षता पर केन्द्रित होने से, यह महत्वपूर्ण मुद्दा नीति संबंधी परिचर्चा में शामिल हो पाएगा। +","is sammlen ke jal upyog dakshta par kendrit hone se, yah important issue niti snbndhi paricharcha men shamil ho paega. +",8,2,positive,positive,positive +"If the children have had some experience in play - making before they do this project, the making of the story will go more quickly than if they have not had previous experience. +","यदि बच्चों को, इस परियोजना से पूर्व नाट्य रचना का कुछ अनुभव है, तो परियोजना की कथा को बनाने में उन्हें कम समय लगेगा। +","yadi bachchon ko, is making se poorv naty rachna ka kuchh anubhav hai, to making ki katha ko banane men unhen kam samay lagega. +",7,5,positive,neutral,positive +"One of them, 'Aman da Kafla' Caravan of Peace was then on the lips of almost everybody whether a progressive or not. +","उनमें से एक कविता अमन का काफिला अमन दा काफिला उस समय लगभग हर आदमी की जबान पर थी। +","unmen se ek kavita peace ka caravan peace progressive caravan us samay lagabhag everybody lips ki jaban par thi. +",8,0,neutral,neutral,positive +"Primary center connects toll centers. +","प्राथमिक केंद्र, शुल्क केन्द्रों (टोल केन्द्रों) को जोड़ता है। +","primary center, toll centers tol kendron ko connects toll +",8,0,neutral,neutral,neutral +"Let 's say when x is equal to 2. +","X barabar do sochte hai. +","X equal do sochte hai +",6,3,neutral,neutral,neutral +"Sofree, Giannie, Gandhi and India: A century in the center (1995) ISBN 1 - 900624 - 12 - 5 +","सोफ्री & #44; गियान्नी. गाँधी और भारतः केन्द्र में एक सदी (१९९५) आईएसबीएन १-९००६२४-१२-५ +","sophri isbn giyanni gandhi aur india center men ek century १९९५ aaeeesbien १-९००६२४-१२-५ +",7,0,neutral,neutral,neutral +"There are many particles in air which can harm the health of plans and animals (including humans) or can damage their eyesight. These are produced due to natural process and human activities. The particles not found in the air naturally or or more frequently or different than generic particles are called as pollutants. +","वायु में बहुत से तत्त्व होते हैं जो पौधों और पशुओं (मानव समेत) का स्वास्थ्य कर सकते हैं या नजर ख़राब कर सकते हैं यह प्राकृतिक प्रक्रियाओं तथा मानव गतिविधियों दोनों से उत्पन्न होते हैं. वायु में प्राकृतिक रूप से नहीं पाए जाने वाले तत्व या अधिक सांद्रता के साथ या सामान्य से अलग तत्वों को प्रदूषक कहा जाता है. +","vayu men bahut se tattv hote hain jo paudhon aur pashuon manav samet ka svasthy kar sakte hain ya najar rab kar sakte hain yah prakritik prakriyaon tatha manav gatividhiyon donon se utpann hote hain vayu men prakritik roop se nahin pae jane vale tatv ya adhik sandrta ke sath ya samany se alag tatvon ko prdooshak kaha jata hai +",7,2,negative,negative,negative +"If TRUE, the selected month cannot be changed +","अगर सत्य तो चयनित माह नही बदला जा सकता +","agar true to selected month nahi badla ja sakta +",9,1,neutral,neutral,positive +"These poems lack the sombre grandeur of Prantik, for the memory of the Borderland and the haunting sense of the terror and beauty that Meanwhile he was content to relax and watch and savour what simple delight of sight and sound were still left for him on earth. +","इन कविता संकलनों में? प्रांतिक? की विषादपूर्ण श्रेष्ठता नहीं थी, क्योंकि अब सीमा प्रदेश की स्मृति या संत्रास और सौंदर्य का परिवेश थम चला था और कवि एक बार फिर धरती की नर्म बांहों में था. विस्मयकारी उत्कृष्टता का विवेक बाद में लौटा जब अभिव्यक्ति फिर से विषादपूर्ण उत्प्रेरण की ऊचाइयों को छू लेने को होती. इस समय वे उनके लिए धरती पर बचे सामान्य दृश्य और श्रव्य को देखकर बड़े आराम से आश्वस्त हो रहे थे और उनका आनंद उठाते प्रसन्न थे. +","in kavita snkalnon men prantik ki vishadpoorn shreshthta nahin thi, kyonki ab sima prdesh ki smriti ya sntras aur saundary ka parivesh tham chala tha aur kavi ek bar phir dharti ki narm banhon men tha vismaykari utkrishtta ka vivek bad men lauta jab abhivyakti phir se vishadpoorn utpreran ki oochaiyon ko chhoo lene ko hoti is samay ve unke lie dharti par bache samany drishy aur shravy ko dekhakar bare aaram se aashvast ho rahe the aur unka aannd uthate prasann the +",4,7,neutral,negative,positive +"""% s"" expects the second argument to be a time _ t +","""% s"" दूसरे तर्क की एक time _ t की आशा करता है +","s doosre argument ki ek time _ t ki aasha karta hai +",7,1,neutral,neutral,negative +"He always enjoyed a fund of affection and goodwill from Mr. Ghosh, since the beginning of his political career in the early sixties. +","वह शुरुआती साठ के दशक में आरंभ अपने राजनीतिक जीवनवृत्त से श्री घोष का स्नेह और सद्भावना प्राप्त करते रहे। +","vah career sixties ke dashak men beginning apne political jivanvritt se shri ghosh ka affection aur goodwill prapt karte rahe. +",7,0,positive,neutral,positive +"A Plugin to synchronize pictures' metadata with a GPS device +","जीपीएस उपकरण से छवि मेटाडाटा को सिंक्रोनाइज करने का एक प्लगइन +","jipies device se pictures metadata ko sinkronaij karne ka ek plugin +",8,2,neutral,neutral,neutral +"The poet feels inspired by Parmanand Almast, that aspect of Lord Shiva which symbolises Truth and Beauty. +","कवि को शिव का सत्य और सुन्दर रूप अधिक प्रेरक लगता है। +","kavi ko shiv ka truth and beauty roop adhik poet feels inspired +",6,0,positive,neutral,positive +"Asavari resigned herself to further reading. +","हारकर आसावरी ने आगे पढ़ना शुरू किया। +","harakar asavari ne further pana shuroo kiya. +",8,1,neutral,neutral,negative +"Failed to load remote file. +","दस्तावेज फिर लोड करने में विफल. +","dastavej phir failed to load viphal +",4,1,negative,neutral,negative +"Search all% {DRIVENAME} +","सभी% {DRIVENAME} खोजें +","sabhi DRIVENAME khojen +",8,2,neutral,neutral,neutral +"% 1 has been idle for% 2 and% 3. +","% 1 निष्क्रिय है% 2 और% 3 से. +","1 idle hai 2 aur 3 se +",8,4,neutral,neutral,neutral +"And of His signs is the creation of the heavens and earth and the crawling things He has scattered abroad in them; and He is able to gather them whenever He will. +","और उसी की (क़ुदरत की) निशानियों में से सारे आसमान व ज़मीन का पैदा करना और उन जानदारों का भी जो उसने आसमान व ज़मीन में फैला रखे हैं और जब चाहे उनके जमा कर लेने पर (भी) क़ादिर है +","aur usi ki signs ki nishaniyon men se sare heavens v things ka paida karna aur un crawling ka bhi jo usne heavens v things men phaila rakhe hain aur jab chahe unke jama kar lene par bhi adir hai +",7,2,neutral,neutral,positive +"Inflammation of the portal vein was observed in the examined patient. +","रोगी की जांच में प्रतिहारी शिरा के सूजन का पता चला. +","patient ki examined men portal vein ke inflammation ka pata chala +",6,1,neutral,negative,neutral +"This is a time of great opportunities in India. +","यह भारत के लिए सुनहरे अवसरों का दौर है। +","yah time ke lie great opportunities ka daur hai. +",6,1,positive,positive,positive +"Can 't pass document URIs to a' Type = Link 'desktop entry +","दस्तावेज़ URI को 'Type = Link' डेस्कटॉप प्रविष्टि में भेज नहीं सकता है +","pass URI ko Type Link desktop entry men bhej nahin sakta hai +",7,1,negative,neutral,neutral +"Software and digital video industries have duly recognized forensic watermark. +","साफ्टवेयर तथा डीजिटल वीडियो उद्योग ने विधि वाटरमार्क की विधिवत मान्यता दी है। +","saphtveyar tatha dijital video industries ne forensic watermark ki vidhivat manyta di hai. +",6,6,neutral,neutral,neutral +"He added that he had entirely abandoned himself to the French nation, which called itself the land of fraternity, equality and liberty, and as such, he would not take any part in the trial. +","उन्होंने आगे कहा कि वह खुद को पूरी तरह उस फ्रांस पर छोड़ चुके हैं, जो स्वाधीनता, समानता और बंधुत्व का दम भरता है, इसलिए वह इस मुकदमे में बिलकुल भाग नहीं लेंगे। +","added aage kaha ki vah khud ko poori tarah us phrans par chhor chuke hain, jo liberty, equality and liberty ka dam bharta hai, islie vah is mukadme men bilkul bhag nahin lenge. +",8,2,negative,negative,neutral +"Goods which have not been given a final shape. +","वह माल जिसे अभी अंतिम रूप दिया जाना बाकी है। +","vah goods jise abhi antim roop diya jana final shape +",5,6,negative,neutral,neutral +"The festivities last ten days and nights, the first nine nights of which are the 'Navaratri', dedicated to the worship of different aspects of Durga in some areas and also of Lakshmi or Saraswati in others. +","यह उत्सव दस दिनों चल चलता है, जिनमें से पहली नौ रातें कई क्षेत्रों में दुर्गा और कई क्षेत्रों में लक्ष्मी या सरस्वती को समर्पित होती हैं। +","yah festivities last ten chal chalta hai, jinmen se pahli nau raten kee kshetron men durga aur kee kshetron men lakshmi ya sarasvti ko samarpit hoti hain. +",4,3,neutral,negative,positive +"So fear Allah as much as you are able and listen and obey and spend [in the way of Allah]; it is better for your selves. And whoever is protected from the stinginess of his soul - it is those who will be the successful. +","अतः जहाँ तक तुम्हारे बस में हो अल्लाह का डर रखो और सुनो और आज्ञापालन करो और ख़र्च करो अपनी भलाई के लिए। और जो अपने मन के लोभ एवं कृपणता से सुरक्षित रहा तो ऐसे ही लोग सफल है +","ata jahan tak tumhare bas men ho allah ka fear rakho aur able aur aajnjapalan listen aur rch listen apni bhalaee ke lie. aur jo apne man ke lobh evn selves se surakshit raha to aese hi log successful hai +",5,3,positive,negative,positive +"In Hindi, the word “”America“” is used instead of “”United States of America“”. +","हिन्दी भाषा में संयुक्त राज्य या संयुक्त राज्य अमेरिका के स्थान पर केवल अमेरिका कहने का ही प्रचलन है जो इस देश के लघु नाम के रूप मे उपयोग में लाया जाता है। +","hindi bhasha men united states ya united states amerika ke sthan par keval amerika kahne ka hi prachalan hai jo is desh ke laghu nam ke roop me upyog men laya jata hai. +",7,3,neutral,neutral,neutral +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","track the actor par nazar rakhne ke lie clip region ko set karen +",6,1,neutral,neutral,neutral +"Additionally, 23 post-graduate scholarships for courses in hydel power and water resources management at IIT, Roorkee have been offered to Nepali engineers and experts this year. +","इसके अतिरिक्त नेपाली इंजीनियरी और विशेषज्ञों को इस वर्ष आईआईटी रुड़की में पनबिजली और जल संसाधन प्रबंधन में पाठ्यक्रम के लिए 23 स्नातकोत्तर छात्रवृत्तियां प्रदान की जाएंगी। +","iske atirikt nepali injiniyri aur visheshajnjon ko is varsh aaeeaaeeti rurki men panbijli aur jal snsadhan prbndhan men pathyakram ke lie 23 post-graduate scholarships prdan ki jaengi. +",5,2,neutral,neutral,neutral +"NH - 47 (Walayar – Kaliyikkavila) with a length of 416. 800 km; +","एनएच-47 (वालायार-कलिहीकविला) जिसकी लंबाई 416.800 किलो मीटर है; +","enech-47 valayar-klihikvila jiski length 416800 kilo mitar hai +",8,2,neutral,neutral,positive +"Dusty air coming towards Stratford, Texas. +","स्ट्रेटफोर्ड टेक्सास की और आने वाली धूल भरी आंधी (Stratford Texas). +","dusty texas ki aur aane vali stratford bhari towards Stratford Texas +",5,2,neutral,neutral,neutral +"% s is calling you. Do you want to answer? +","% s आपको बुला कर रहा है. क्या आप जवाब देना चाहते हैं? +","s aapko calling kar raha hai kya aap javab dena chahte hain +",7,1,negative,neutral,positive +"” You lived your life in a loving way , and died with dignity . +","‘ तुमने अपना जीवन बड़े प्यार से जिया और बड़े सम्मान के साथ ही तुमने अपना शरीर छोड़ा । +","tumne apna life way loving se jiya aur way samman ke sath hi tumne apna sharir chhora . +",6,5,positive,neutral,positive +"The use of money to create more money in the form of interest, dividend or profit etc. +","धनराशि से और ज्यादा धनराशि पैदा करने के लिए किया गया कार्य जो ब्याज, लाभांश, मुक्तता इत्यादि प्राप्ति द्वारा हो सकता है। +","money se aur use money form karne ke lie kiya gaya kary jo interest , dividend , muktta ityadi profit dvara ho sakta hai. +",8,4,neutral,neutral,positive +"{player} is now known as {newname} {player} +","अब {newname} से जाना जाता है +","ab newname se jana jata hai +",8,1,neutral,neutral,neutral +"Look after the vitamins and minerals in your food; +","अपने भोजन में विटामिन एवं मिनरल्स के प्रति सजग रहें. +","apne food men vitamins and minerals ke prti sajag rahen +",8,1,positive,neutral,neutral +"If they deny you, so have other messengers been denied before you, who came with clear signs, scriptures and enlightening book. +","फिर यदि वे तुम्हें झुठलाते ही रहें, तो तुमसे पहले भी कितने ही रसूल झुठलाए जा चुके है, जो खुली निशानियाँ, 'ज़बूरें' और प्रकाशमान किताब लेकर आए थे +","phir yadi ve other signs hi rahen , to tumse pahle bhi kitne hi rasool jhuthlae ja chuke hai , jo clear nishaniyan , scriptures aur prkashman book lekar aae the +",7,5,neutral,neutral,positive +"Failed to store mail in temp file% s:% s +","% s अस्थायी फ़ाइल में डाक संग्रहन में असफलः% s +","file temp fail men mail sngrahan men asaphla file +",5,0,negative,neutral,negative +"The company 's new project employed 2500 people, including 300 expatriates and 2200 locals. +","कम्पनी की नई परियोजना में कुल 2500 लोगों में से 300 प्रवासी थे और बाकी 2200 लोग देशी। +","company ki new project men kul 2500 locals men se 300 expatriates the aur baki 2200 people deshi. +",5,2,neutral,neutral,neutral +"And seek ye out strongholds, that haply ye may last for ever? +","और बड़े बड़े महल तामीर करते हो गोया तुम हमेशा (यहीं) रहोगे' +","aur bare bare mahal ye karte ho goya tum hamesha yahin strongholds +",3,5,neutral,negative,positive +"A natural outer covering or coat, such as the skin of an animal or the membrane enclosing an organ. +","प्राकृतिक बाहरी कवर या कोट, जैसे पशुओं की खाल या अंग को ढकने वाली झिल्ली। +","natural outer covering ya kot, jaise pashuon ki khal ya enclosing an organ membrane enclosing +",6,5,neutral,neutral,positive +"Are you sure you want to abandon this set of profile changes and exit? +","क्या आप निश्चित हैं कि आप इस सेट के प्रोफाइल के बदलावों को छोड़ना और बाहर निकलना चाहते हैं? +","kya aap sure hain ki aap is set ke profile ke exit ko chhorna aur bahar nikalna chahte hain +",6,3,neutral,negative,negative +"The production of a play is an exacting experience in planning and organization, hence it should not be done until children are ready to take responsibility and to profit by the work necessary for it. +","नाटक तैयार करने के लिए जिस योजना तथा संगठन की आवश्यकता होती है, उसे जुटा पाना आसान नहीं है; अतः इस कार्य को तभी हाथ में लेना चाहिए जब बच्चे उत्तरदायित्व को निभाने और आवश्यक परिश्रम से पूरा लाभ उठाने के लिए तैयार हों। +","natak taiyar karne ke lie jis planning and organization ki aavashyakta hoti hai, use juta pana aasan nahin hai ata is kary ko tabhi hath men lena chahie jab bachche uttardayitv ko nibhane aur aavashyak parishram se poora labh uthane ke lie taiyar hon. +",8,3,negative,neutral,positive +"One whose either parent is alive must not take food facing north, sitting on the door, nor drink water like a cow, nor eat meat of the tortoise, egg, home - made cakes, plantain on the day of the journey to a distant place, nor see a kite flying overhead, a woodcutter with his load, a beggar woman with a bowl, a tortoise carried by a fisherman, an oilman hawking oil, etc. +","जिसके माता-पिता जीवित हैं उसे उत्तर की और मुंह करके दरवाजे पर बैठ कर भोजन नहीं करना चाहिए, गाय की तरह पानी नहीं पीना चाहिए, कछुए का मांस नहीं खाना चाहिए, अंडे, घर में बने केक, सुदुर यात्रा के समय केले नहीं खने चाहिए, सिर पर उड़ती चील नहीं देखनी चाहिए, लकड़हारे को बोझ उठाए हुए, भिक्षापात्र लिए भिखारिन को, कछुआ लिए पछुआरे को, तेल लिए हुए तेली इत्यदि को नहीं देखना चाहिए। +","jiske mata-pita jivit hain use uttar ki aur munh karke darvaje par baith kar bhojan nahin karna chahie, gay ki tarah pani nahin pina chahie, kachhue ka mans nahin khana chahie, ande, ghar men made cakes, sudur yatra ke samay kele nahin khane chahie, sir par urti chil nahin dekhni chahie, lakarhare ko bojh uthae hue, bhikshapatr lie bhikharin ko, kachhuaa lie pachhuaare ko, tel lie hue teli itydi ko nahin dekhna chahie. +",7,5,neutral,neutral,positive +"The Pandiya King immediately fainted and died. +","पांडिय राजा उसी दम मूर्छित होकर गिर पड़े और मृत्यु ग्रस्त हो गये। +","king immediately usi dam moorchhit hokar gir pare aur mrityu grast ho gaye. +",8,2,negative,negative,negative +"This has happened in India, too. +","ऐसा भारत में भी हुआ है। +","aesa india men bhi huaa hai. +",10,0,neutral,neutral,neutral +"Winds built up to 65 kph and waves broke on the boat, deluging it with water. +","हवा का वेग बढ़कर 65 किलोमीटर प्रति घंटा हो गया और विशालकाय लहरें नौका से टकराने लगीं और उसे पानी से भर दिया। +","winds ka veg bakar 65 kph prti ghnta ho gaya aur vishalkay waves boat se takrane lagin aur use water se bhar diya. +",8,2,negative,neutral,negative +"Irrigation of wound with an antiseptic solution was performed. +","घाव का धावन अपूतिक विलयन सें किया गया +","wound ka dhavan apootik solution sen kiya gaya +",7,1,neutral,neutral,positive +"And we 're going to expand it into two simpler expressions +","और हम दो सरल भाव में विस्तृत करने के लिए जा रहे हैं +","aur ham do simpler expressions men vistrit karne ke lie ja rahe hain +",8,2,neutral,neutral,positive +"A certificate indicating reputation for financial integrity. +","ऐसा प्रमाणपत्र जो वित्तीय मामलों में निष्ठा सम्बन्धी व्यवहार को प्रकट करने वाला हो। +","reputation certificate jo indicating mamlon men integrity sambandhi vyavhar ko prakat karne vala ho. +",8,0,neutral,neutral,positive +"If I add 2, I get 30. If I add 3, I get 31. +","तो मुझे 29 मिलता है, यदि 2 जोड़ता हूँ तो 30,3 जोड़ता हूँ तो 31. +","to mujhe 29 milta hai, yadi 2 add hoon to 30,3 add hoon to 31 +",8,2,neutral,neutral,neutral +"UNICEF with PressWise Training Page 31 The Media and the UN Convention on the Rights of the Child Appendix 1 A journalist 's summary of the United Nations Convention on the Rights of the Child The preamble recalls the basic principles of the United Nations - in particular the spirit of peace, dignity, tolerance, freedom, equality and solidarity - and specific provisions of relevant human rights treaties and proclamations. +","युनिसेफ और प्रेसवाइज ट्रेनिंग 31 मीडिया और संयुक्त राष्ट्र बाल समझौता परिशिष्ट 1 संयुक्त राष्ट्र बाल अधिकार समझौते का पत्रकारों के लिए सारांश प्रस्तवाना में संयुक्त राष्ट्र के बुनियादी सिद्धांतों-विशेषकर शांति, गरिमा, सहनशीलता, स्वतंत्रता, समानता और एकजुटता की भावना-और मानव अधिकार की उपयुक्त संधियों ओर घोषणाओं के विशिष्ट प्रावधानों की याद दिलाई गई है। +","unicef aur presswise training preamble media aur un rashtr child convention parishisht 1 un rashtr child rights spirit ka patrkaron ke lie summary prastvana men un rashtr ke basic siddhanton-visheshakar shanti , dignity , tolerance , freedom , equality aur solidarity ki bhavna-aur human rights ki relevant treaties or proclamations ke particular provisions ki yad dilaee gee journalist +",5,1,neutral,neutral,positive +"A proper medical examination will ensure high standards of health and physical fitness of employees and will reduce the rates of accidents, absenteeism and labour turnover. +","अच्छीट तरह की चिकित्साथ जांच कर्मचारी के उच्च़ स्त. रीय स्वानस्य्कि और शारीरिक फिटनेस सुनिश्चित करेगी और दुर्घटना की दर कम करेगी अनुपस्थिति घटेगी और श्रम उत्पादन बढ़ेगा। +","achchhit tarah ki chikitsath janch karmchari ke uch st riy svanasyki aur sharirik phitnes sunishchit karegi aur durghatna ki dar kam karegi anupasthiti ghategi aur shram utpadan baega. +",8,0,positive,positive,positive +"from the evil of what He has created, +","हर चीज़ की बुराई से जो उसने पैदा की पनाह माँगता हूँ +","har chiz ki evil se jo usne paida ki panah mangta hoon +",7,2,negative,negative,negative +"- Harper Lee, To Kill a Mocking Bird - +","हार्पर ली, टु किल ए मॉकिंग बर्ड +","harpar li, tu kil e mking bird +",8,0,neutral,neutral,negative +"The rising demand for gunny bags , created by increasing food exports to Europe , gave a fresh stimulus to jute cultivation and the handloom industry . +","यूरोप के लिए बढते खाद्य सामग्री के निर्यात के कारण बढ़ी हुई बोरियों की मांग ने जूट की खेती और हथकरघा उद्योग को एक नया प्रोत्साहन दिया . +","yoorop ke lie badhte food samagri ke exports ke karan bai huee gunny ki demand ne joot ki cultivation aur handloom industry ko ek fresh stimulus diya +",6,4,positive,positive,positive +"just for the Carnival and the Knife. +","बस कार्निवल और नैफ के लिए. +","bas carnival aur knife ke lie +",8,1,neutral,neutral,neutral +"“Call Washington! Call Washington! ” “वॉशिंगटन +","से संपर्क करें! वॉशिंगटन से संपर्क करें! ” +","se call karen ! washington se call karen ! +",8,0,neutral,neutral,neutral +"He could earn Rs. 41, 700 from sale of 275 kg. worms (at Rs. 150 / kg.) and Rs. 11, 500 from the sale of 23 q. compost at Rs. 500 / q +","उन्होंने 275 किलो कीटों के विक्रय से (150 रुपये/किलो की दर से) 41,700 रुपये कमाए तथा 500 रुपये/क्विंटल की दर से 23 क्विंटल कम्पोस्ट बेचकर 11,500 रुपये कमाए। +","unhonne 275 kg kiton ke sale se 150 rupyekilo ki dar se 41,700 rs kamae tatha 500 rupyekvintal ki dar se 23 q worms bechakar 11,500 rs kamae. +",8,4,neutral,neutral,neutral +"And it 's the only college where we don' t give a certificate. +","और अकेला ऐसा कॉलेज जहाँ हम सर्टिफ़िकेट नहीं देते हैं। +","aur only aesa college jahan ham certificate nahin dete hain. +",8,0,negative,neutral,neutral +"Leave Me alone with he whom I created +","(ऐ रसूल) मुझे और उस शख़्श को छोड़ दो जिसे मैने अकेला पैदा किया +","ae rasool mujhe aur us shash ko chhor do jise maine akela paida kiya +",7,5,neutral,neutral,negative +"No doubt it was the foremost troupe at the time. +","निस्संदेह यह उस समय की सर्वश्रेष्ठ मंडली थी। +","doubt yah us time ki foremost troupe thi. +",5,3,neutral,neutral,positive +"From the preventive point of view, their offences merit severe punishment. +","अतः निवारक दृष्टिकोण से उनके अपराध कड़ी से कड़ी सजा की मांग करते हैं. +","ata preventive point se unke offences merit se kari point of view karte hain +",8,0,negative,neutral,negative +"Officials from the Ministry of External Affairs and the Ministry of Defence participated. +","इसमें भारतीय रक्षा मंत्रालय के अधिकारियों ने भाग लिया। +","ismen bhartiy defence ministry of defence ne bhag participated +",4,6,neutral,neutral,positive +"As regards Central laws on matters relating to the Concurrent List, such as welfare measures, procedural laws, etc., the Constitution itself provides for the State Legislature to modify or repeal such Central laws after obtaining the President 's assent. +","जहां तक समवर्ती सूची वाले केन्द्रीय कानूनों का सम्बंध है, जैसे कल्याण कार्यों तथा कार्यविधि सम्बंधी कानून आदि, स्वयं संविधान में यह प्रावधान है कि राज्य विधान मंडल राष्ट्रपति की स्वीकृति लेकर ऐसे कानूनों में परिवर्तन कर सकते है या उन्हें निरस्त कर सकते है। +","jahan tak concurrent matters vale central laws ka sambndh hai , jaise welfare such tatha procedural sambndhi kanoon aadi , svyn constitution men yah pravdhan hai ki state legislature regards president ki assent lekar aese laws men parivartan kar sakte hai ya unhen nirast kar sakte hai. +",7,1,neutral,neutral,neutral +"It was a bill to disfranchise Indians. +","यह हिंदुस्तानियों को मताधिकार से वंचित करने का एक विधेयक था। +","yah indians ko matadhikar se vnchit karne ka ek bill tha. +",9,1,negative,neutral,neutral +"Sofree, Giannie, Gandhi and India: A century in the center (1995) ISBN 1 - 900624 - 12 - 5 +","सोफ्री & #44; गियान्नी. गाँधी और भारतः केन्द्र में एक सदी (१९९५) आईएसबीएन १-९००६२४-१२-५ +","sophri 44 giyanni gandhi aur bharta center men ek century १९९५ aaeeesbien १-९००६२४-१२-५ +",7,2,neutral,neutral,neutral +"An hour later , he had before him a chest of Spanish gold coins . +","एक घंटे बाद , उसके सामने स्पेनी स्वर्ण मुद्राओं से भरी एक तिजोरी थी । +","ek hour bad , uske samne spanish gold coins se bhari ek tijori thi . +",7,1,neutral,neutral,neutral +"This is an account of (the fate of) the towns which We relate to you; of them are some that stand and (others) mown down. +","(ऐ रसूल) ये चन्द बस्तियों के हालात हैं जो हम तुम से बयान करते हैं उनमें से बाज़ तो (उस वक्त तक) क़ायम हैं और बाज़ का तहस नहस हो गया +","ae stand ye chand bastiyon ke halat hain jo ham tum se bayan karte hain unmen se baz to us vakt tak ayam hain aur baz ka tahas nahas ho gaya +",7,2,neutral,neutral,neutral +"It was a bill to disfranchise Indians. +","यह हिंदुस्तानियों को मताधिकार से वंचित करने का एक विधेयक था। +","yah hindustaniyon ko matadhikar se vnchit karne ka ek bill tha. +",10,0,negative,neutral,neutral +"Book where objections are recorded. +","पुस्तक जिसमें एतराज अंकित किए जाते हो। +","book jismen etraj ankit objections jate ho. +",8,3,neutral,neutral,neutral +"The Vice - President of India is the ex - officio Chairman of Rajya Sabha. +","भारत का उपराष्ट्रति राज्य सभा का पदेन सभापति होता है। +","india ka uprashtrti rajy sabha ka officio chairman hota president +",7,1,neutral,neutral,neutral +"But unfortunately the way in which the fresh blood of modernism was transfused into the anaemic body of Indian society deprived it of just these vital ingredients and on the whole did more harm than good: In the first place, the modern Western culture which reached India was not the genuine article but an export model of which the parts came from England but were assembled in India mainly by men of mediocre ability, who could be spared after selecting political and intellectual leaders for the home country. +","किंतु दुर्भाग़्य से जिस तरह का ताजा रक़्त भारतीय समाज के रक़्तहीन शरीर में भरा गया, उसने उसे इन महत्वपूर्ण अव्यवों से वंचित कर दिया और कुल मिलाकर अच्छाई के स्थान पर हानि अधिक हुई प्रथम स्थिति में, आधुनिक पश्चिमी संस्कृतिक, जो भारत पहुंची तथा वह वास्तविक रूप में नहीं, बल्कि यह उसका एक निर्यात रूप था, जिसके पुर्जे इंग़्लैड सें आये, किंतु भारत में उन्हे मुख़्य रूप से अति सामान्य योग़्यता वाले व्यक़्तियों के द्वारा जमाया गया, जिन्हें अपने देश के लिए राजनैतिक बुद्धिमान नेता चुनने के बाद अलग किया जा सकता +","kintu durbhay se jis tarah ka fresh blood indian society ke modernism body men bhara gaya , men use in vital ingredients se vnchit kar diya aur kul milakar achchhaee ke place par harm more huee first sthiti men , modern western culture , jo india pahunchi tatha vah vastvik way men nahin , ability yah uska ek export way tha , jiske purje inlaid sen aaye , kintu india men unhe muy way se ati samany yoyta vale vyatiyon ke dvara jamaya gaya , jinhen apne country ke lie political intellectual leaders chunne ke bad alag kiya ja sakta +",8,2,negative,negative,positive +"Surely the pious shall be in bliss, +","निस्संदेह अच्छे लोग नेमतों में होंगे, +","surely achchhe log surely the pious, +",6,2,positive,neutral,positive +"Among the Garo the household is known as the Nok. +","गारो जनजाति में गृहस्थी को नोक कहा जाता है। +","garo janjati men household ko nok kaha jata hai. +",10,0,neutral,neutral,neutral +"Anundoram was a student of the Gauhati School in the late fifties of the nineteenth century, that is, in the early stage of English education in Assam. +","आनन्दराम ने उन्नीसवीं सदी के छठे दशक में, यानी असम में अंग्रेज़ी शिक्षा के आरम्भिक चरण में गुवाहाटी स्कूल में अपनी पढ़ाई पूरी की। +","anundoram ne late century ke chhathe fifties men , yani assam men english student ke early stage men gauhati skool men apni paaee poori ki. +",6,2,neutral,neutral,neutral +"This position is similar to royal position, just the woman to take the other side of your face is the face of men. In a way it 's back to enter the position. The man' s situation stays the same kind of right royal position, but women by men toward the back right in front of his penis is hard bringing up my cunt. Then slowly enter the penis cunt gives. Women in this position quite comfortable lives. It supported him get his feet that put him in the attack is easier. This position is changing dramatically because of it with some other ideas on other furniture can be pursued. +","यह पोजीशन शाही पोजीशन की ही तरह है बस इसमें महिला अपनी चेहरा पुरुष के चेहरे के दूसरी ओर कर लेती है. एक तरह से यह पीछे से प्रवेश की भी पोजीशन है. इसमें पुरुष की स्थिति ठीक शाही पोजीशन की ही तरह रहती है लेकिन महिला पुरुष की ओर पीठ करके ठीक उसके लिंग के सामने अपनी योनि को लाकर खड़ी होती है. फिर धीरे से योनि को लिंग में प्रवेश कराती है. इस पोजीशन में महिला काफी आरामदायक स्थिति में रहती है. इसमें उसे सहारा उसके पैरों से मिलता है जिससे उसे धक्के लगाने में भी आसानी होती है. यह पोजीशन आश्चर्यजनक रूप से परिवर्तनशील है इसलिये इसे कुछ अन्य आइडिया के साथ दूसरे फर्नीचर पर भी अपनाई जा सकती है. +","yah position royal position ki hi tarah hai bas ismen mahila apni chehra men ke chehre ke doosri or kar leti hai ek tarah se yah pichhe se prvesh ki bhi position hai ismen men ki sthiti thik royal position ki hi tarah rahti hai lekin mahila men ki or pith karke thik uske ling ke samne apni yoni ko lakar khari hoti hai phir dhire se yoni ko ling men prvesh karati hai is position is similar kaphi aaramdayak sthiti men rahti hai ismen use sahara uske pairon se milta hai jisse use dhakke lagane men bhi aasani hoti hai yah position aashcharyajanak roop se parivartanshil hai isliye ise kuchh any aaidiya ke sath doosre pharnichar par bhi apnaee ja sakti hai +",7,3,neutral,neutral,negative +"The Vice - President of India is the ex - officio Chairman of Rajya Sabha. +","भारत का उपराष्ट्रति राज्य सभा का पदेन सभापति होता है। +","india ka vice rajya sabha ka ex chairman hota hai. +",7,3,neutral,neutral,neutral +"He stuck to the practices he had learnt during training. +","उन्होंने प्रशिक्षण के दौरान सीखी पद्धतियों का ही पालन किया। +","unhonne training ke dauran sikhi practices ka hi palan kiya. +",8,3,neutral,neutral,negative +"that the amount - - as my best sense of it - - is that the +","मेरे लिए सबसे सही-- यह है +","sense lie sabse amount -- yah hai +",6,2,neutral,neutral,positive +"Convenient to man (giver), inconvenient to man (giver), pleasure to man (giver). +","· पुरुष (Giver) को सहूलियत ☻☻☻☻ · पुरुष (Giver) को परेशानी ☺ · पुरुष (Giver) को आनंद ☻☻☻☻ ☺ +","convenient man Giver ko sahooliyat convenient man Giver ko pareshani inconvenient convenient man Giver ko pleasure inconvenient +",2,3,neutral,neutral,positive +"It is He who is God in heaven, and God on earth. He is the Wise, the Knower. +","वही है जो आकाशों में भी पूज्य है और धरती में भी पूज्य है और वह तत्वदर्शी, सर्वज्ञ है +","vahi hai jo heaven god on earth hai aur dharti god on earth hai aur vah wise, sarvajnj hai +",3,3,positive,neutral,positive +"ganga vally is the biggest in India +","गंगा नदी प्रणाली भारत की सबसे बड़ी नदी प्रणाली है। +","ganga nadi prnali biggest ki sabse bari nadi prnali hai. +",8,2,positive,positive,neutral +"(b) no election to either House of Parliament or to the House or either House of the Legislature of a State shall be called in question except by an election petition presented to such authority and in such manner as may be provided for by or under any law made by the appropriate Legislature. +","(ख) संसद के प्रत्येक सदन या किसी राज्य के विधान-मंडल के सदन या प्रत्येक सदन के लिए कोई निर्वाचन ऐसी निर्वाचन अर्जी पर ही प्रश्नगत किया जाएगा, जो ऐसे प्राधिकारी को और ऐसी रीति से प्रस्तुत की गई है जिसका समुचित विधान-मंडल द्वारा बनाई गई विधि द्वारा या उसके अधीन उपबंध किया जाए, अन्यथा नहीं। +","b parliament ke pratyek house ya kisi state ke vidhan-mndal ke house ya pratyek house ke lie koee election question election petition par hi prashnagat kiya jaega , jo aese authority ko aur question manner se prastut ki gee hai jiska appropriate vidhan-mndal dvara banaee gee law dvara ya uske adhin upbndh kiya jae , anytha nahin. +",7,1,neutral,negative,negative +"This apple tastes sour, doesn 't it? +","यह सेव खट्टा है ना? +","yah apple sour hai na +",8,1,negative,neutral,neutral +"This is because we have excellent faculty members as well as brilliant students and do not lack in merit. +","ऐसा इसलिए है क्योंकि हमारे यहां श्रेष्ठ संकाय सदस्य और प्रतिभावान विद्यार्थी हैं और हमारे यहां गुणवत्ता की कमी नहीं है। +","aesa islie hai kyonki hamare yahan excellent faculty members aur brilliant vidyarthi hain aur hamare yahan merit ki kami nahin hai. +",9,2,positive,neutral,positive +"And when the Garden is brought near; - +","और जब जन्नत निकट कर दी जाएगी, +","aur jab garden nikat kar di jaegi, +",9,0,neutral,neutral,neutral +"Another sensible approach would be to prevent the mast cells from exploding and the subsequent release of histamine. +","दूसरा उपाय यह है कि मास्ट कोशिकाओं से हिस्टामीन निकलने ही न दिया जाये। +","doosra approach yah hai ki mast cells se histamine nikalne hi n diya jaye. +",9,0,neutral,neutral,neutral +"This message is encrypted, with a strong encryption algorithm. It would be very difficult for an outsider to view the content of this message in a practical amount of time. +","यह संदेश गुप्त है, एक मजबूत गोपन एलागरिथम के साथ. किसी बाहरी के लिए प्रायोगिक समय सीमा में संदेश की सामग्री देखना बहुत कठिन होगा. +","yah message gupt hai, ek strong encryption algorithm ke sath kisi bahri ke lie prayogik samay amount of time ki samagri dekhna bahut kathin hoga +",8,2,neutral,negative,positive +"Perhaps, you know by what name the generality of people call extraordinary ideas, uncommon actions, extraordinary high aspirations. +","शायद तुम जानती होगी कि आम लोग असाधारण विचारों, असाधारण कार्यों और असाधारण उच्चाकांक्षाओं को किस नाम से जानते हैं। +","shayad tum janti hogi ki aam call extraordinary ideas, asadharan karyon aur asadharan uchchakankshaon ko kis nam se jante hain. +",6,4,neutral,neutral,neutral +"We can 't let him down. +","हम उन्हें नीचा नहीं दिखा सकते। +","ham unhen nicha nahin dikha sakte. +",10,0,positive,neutral,neutral +"Those are the ones whom Allah has guided, so from their guidance take an example. Say, ""I ask of you for this message no payment. It is not but a reminder for the worlds."" +","वे (पिछले पैग़म्बर) ऐसे लोग थे, जिन्हें अल्लाह ने मार्ग दिखाया था, तो तुम उन्हीं के मार्ग का अनुसरण करो। कह दो, ""मैं तुमसे उसका कोई प्रतिदान नहीं माँगता। वह तो सम्पूर्ण संसार के लिए बस एक प्रबोध है।"" +","ve message paimbar aese log the , jinhen ask ne ones dikhaya tha , to tum unhin ke ones ka anusaran karo. kah do , example tumse reminder koee prtidan nahin payment vah to sampoorn snsar ke lie bas ek prbodh hai. +",4,1,neutral,neutral,negative +"The third pavilion from south is Khas Mahal. +","दक्षिण से तीसरा मण्डप है खास महल। +","south se tisra mahal hai khas mahal. +",7,1,neutral,neutral,neutral +"And most surely of the followers of the Book there are those who believe in Allah and (in) that which has been revealed to you and (in) that which has been revealed to them, being lowly before Allah; they do not take a small price for the communications of Allah; these it is that have their reward with their Lord; surely Allah is quick in reckoning. +","और अहले किताब में से कुछ लोग तो ऐसे ज़रूर हैं जो ख़ुदा पर और जो (किताब) तुम पर नाज़िल हुई और जो (किताब) उनपर नाज़िल हुई (सब पर) ईमान रखते हैं ख़ुदा के आगे सर झुकाए हुए हैं और ख़ुदा की आयतों के बदले थोड़ी सी क़ीमत (दुनियावी फ़ायदे) नहीं लेते ऐसे ही लोगों के वास्ते उनके परवरदिगार के यहॉ अच्छा बदला है बेशक ख़ुदा बहुत जल्द हिसाब करने वाला है +","aur followers book men se kuchh most to aese zaroor hain jo allah par aur jo book tum par nazil huee aur jo book unapar nazil huee sab par eeman rakhte hain allah ke aage sar jhukae hue hain aur allah ki communications ke price small si imat duniyavi fayde nahin lete aese hi logon ke vaste unke paravardigar ke yah achchha badla hai beshak allah bahut quick hisab karne vala hai +",7,1,neutral,neutral,positive +"I got confirmation for this post. +","मेरी इस पोस्ट पर पुष्टि हो गई है। +","i is post par confirmation ho gee hai. +",8,0,neutral,neutral,neutral +"The file ""% s"" is read - only! Edit anyway? +","फ़ाइल से. है पढ़ें संपादन? +","file se hai paen edit +",4,4,neutral,neutral,neutral +"Trap shooter Anwar Sultan 's family complains that he has grown silent and introspective . +","ट्रैप शूटर अनवर सुल्तान के परिवार की शिकायत है कि वे बेहद शांत रहने लगे हैं . +","trap shooter anavar sultan ke parivar ki shikayat hai ki ve behad shant rahne lage hain +",9,1,negative,negative,negative +"I implicitly want to use log and exponential rules to do it. +","मैं संकेत भी यह करने के लिए लॉग इन करें और घातीय नियम उपयोग करना चाहते हैं। +","main implicitly bhi yah karne ke lie log in karen aur exponential rules upyog karna chahte hain. +",5,3,neutral,neutral,positive +"is a lot of material that was already here, +","उसमें लगाई गई बहुत सी सामग्री ऎसी है जो पहले से ही मौजूद थी, +","usmen lot gee bahut si material ऎsi hai jo pahle se hi maujood thi, +",4,7,neutral,neutral,neutral +"He was born in the city of Surat in Gujarat on 24th August, 1833. +","24 अगस्त, 1833 को उसका जन्म गुजरात के सूरत नगर में हुआ। +","24 august , 1833 ko uska janm gujarat ke surat city men huaa. +",9,1,neutral,neutral,neutral +"No update information available. Please check manually and ask the developer to support OI Update in the future. +","कोई अद्यतन जानकारी उपलब्ध नहीं है. मैन्युअल की जाँच करें और डेवलपर पूछने के लिए भविष्य में पुराना अद्यतन समर्थन. +","koee update information upalabdh nahin hai mainyual ki janch karen aur devalapar poochhne ke lie bhavishy men purana update samarthan +",8,0,neutral,neutral,positive +"and We made them a thing of the past, and We made them an example to later people. +","अतः हमने उन्हें अग्रगामी और बादवालों के लिए शिक्षाप्रद उदाहरण बना दिया +","ata people unhen thing aur example ke lie shikshaprad udaharan bana diya +",5,3,neutral,neutral,neutral +"Import HandyShopper store names only as item tags. +","आइटम टैग के रूप में ही HandyShopper के स्टोर नाम आयात करें +","item tags ke roop men hi HandyShopper ke handyshopper names import karen +",8,3,neutral,neutral,neutral +"waxing proud in the land, and devising evil; but evil devising encompasses only those who do it; So do they expect anything but the wont of the ancients? And thou shalt never find any changing the Wont of God, and thou shalt never find any altering the wont of God. +","(उसके आने से) उनकी नफरत को तरक्की ही होती गयी और बुदी तद्बीर (की बुराई) तो बुरी तद्बीर करने वाले ही पर पड़ती है तो (हो न हो) ये लोग बस अगले ही लोगों के बरताव के मुन्तज़िर हैं तो (बेहतर) तुम खुदा के दसतूर में कभी तब्दीली न पाओगे और खुदा की आदत में हरगिज़ कोई तग़य्युर न पाओगे +","uske aane se unki napharat ko tarakki hi hoti gayi aur proud tadbir ki evil to buri tadbir karne vale hi par parti hai to ho n ho ye log bas ancients hi logon ke bartav ke muntazir hain to behatar tum god ke dastoor men kabhi tabdili n thou aur god ki wont men hargiz koee tayyur n thou +",7,1,negative,negative,negative +"To help minimise the noise pollution caused by necessary construction and demolition works , the local authority has the power under section 60 of the Control of Pollution Act 1974 to specify the way in which the work must be carried out . +","आवश्यक निर्माण व ढहानेसे उत्पन्न शोर -दूषण को कम से कम करने के लिए कंट्रोल अऑफ पॉप्यूलेशन ऐक्ट 1974 के सेक्शन 60 के अंतरगत लोकल अथॉरिटी को अधिकार है कि वह काम किस प्रकार किए जाए इस बारे में विशेष निर्देश दे . +","aavashyak nirman v noise pollution caused -dooshan ko kam se kam karne ke lie kntrol aऑph ppyooleshan aekt 1974 ke sekshan 60 ke antaragat lokal athriti ko adhikar hai ki vah kam kis prkar kie jae is bare men vishesh nirdesh de +",6,3,neutral,neutral,positive +"But one important institution - the U.S. government - claims not to know Hadayet's goals. An FBI spokesman has said that “there's nothing to indicate terrorism.” Another FBI official said of Hadayet: “It appears he went there with the intention of killing people. Why he did that we are still trying to determine.” Possible causes named include a work dispute and a hate crime. +","परंतु एक महत्वपूर्ण संस्थान अमेरिकी सरकार का दावा है कि उन्हें हदायत के लक्ष्य का पता नहीं था। एफ बी आई के प्रवक्ता ने कहा, “ कुछ भी नहीं है जो आतंकवाद की ओर संकेत करता हो” । एफ बी आई के एक और अधिकारी ने हदायत के सम्बंध में कहा, “ ऐसा प्रतीत होता है कि वह वहाँ लोगों को मारने के आशय से गया था । हम यह जानने का प्रयास कर रहे हैं कि उसने ऐसा क्यों किया?” सम्भावित कारणों में कार्यक्षेत्र का विवाद और घृणा अपराध बताया गया। +","parntu ek important institution ameriki sarkar ka dava hai ki unhen hadayat ke lakshy ka pata nahin tha. eph bi aaee ke pravakta ne kaha, kuchh bhi nahin hai jo aatnkvad ki or snket karta ho . eph bi aaee ke ek aur adhikari ne hadayat ke sambndh men kaha, aesa prtit hota hai ki vah vahan logon ko marne ke aashay se gaya tha . ham yah janne ka pryas kar rahe hain ki usne aesa kyon kiya sambhavit karnon men karyakshetr ka vivad aur ghrina apradh bataya gaya. +",6,4,negative,negative,negative +"In your provisions Allah has preferred some of you above others. But, those who have been preferred do not give their provisions to those whom their right hand possess so that they might be equal therein. What, do they vainly disbelieve the favor of Allah? +","और ख़ुदा ही ने तुममें से बाज़ को बाज़ पर रिज़क (दौलत में) तरजीह दी है फिर जिन लोगों को रोज़ी ज्यादा दी गई है वह लोग अपनी रोज़ी में से उन लोगों को जिन पर उनका दस्तरस (इख्तेयार) है (लौन्डी ग़ुलाम वग़ैरह) देने वाला नहीं (हालॉकि इस माल में तो सब के सब मालिक गुलाम वग़ैरह) बराबर हैं तो क्या ये लोग ख़ुदा की नेअमत के मुन्किर हैं +","aur allah hi ne tummen se baz ko baz par rizak daulat men tarjih di hai phir jin others ko provisions jyada di gee hai vah hand apni provisions men se un others ko jin par unka dastaras possess hai laundi ulam vaairah dene vala nahin halki is mal men to sab ke sab malik gulam vaairah barabar hain to kya ye hand allah ki neamat ke munkir hain +",6,1,neutral,negative,positive +"Opening image ""% s"" +","""% s"" छवि सहेज रहा है +","s image sahej raha hai +",8,3,neutral,neutral,neutral +"""'And in the End He will return you into the (earth), and raise you forth (again at the Resurrection)? +","फिर तुमको उसी में दोबारा ले जाएगा और (क़यामत में उसी से) निकाल कर खड़ा करेगा +","phir tumko usi earth dobara le jaega aur yamat earth usi se nikal kar khara karega +",4,4,neutral,neutral,neutral +"The blisters break, leaving tender ulcers (sores) that may take two to four weeks to heal the first time they occur. +","फफोले फूट जाते हैं और नरम फुंसिया रह जाती हैं जिन्हें ठीक होने में दो से चार सप्ताह लग जाते हैं। ऐसा पहली बार होता है। +","blisters phoot jate hain aur tender phunsiya sores jati hain jinhen thik hone men do se char saptah lag jate hain. aesa first time hota hai. +",6,1,negative,neutral,neutral +"The kutas and salas over the mandapa are of a smaller size than those over the aditala as usual. +","मंडप के ऊपर के कूट और शाला आदितल के ऊपर के कूटों और शलाओं से छोटे हैं जो कि सामान्य है। +","salas ke oopar ke kutas aur shala aditala ke oopar ke kooton aur shalaon se smaller hain jo ki usual hai. +",8,3,neutral,neutral,neutral +"It will be the Kingdom of God on earth. +","वह इस धरती पर प्रभुका राज्य होगा। +","vah is earth par prbhuka kingdom hoga. +",8,1,positive,neutral,positive +"We have not heard of any such thing in the old religion. This is nothing but a fabrication. +","हम लोगों ने तो ये बात पिछले दीन में कभी सुनी भी नहीं हो न हो ये उसकी मन गढ़ंत है +","old such ne to ye thing pichhle din men kabhi suni bhi nahin ho n ho ye uski man fabrication hai +",4,1,negative,neutral,neutral +"These people , and hundreds of others like them , would remain unrecognised if it was n't for a media organisation that prepares annual reports for corporates . +","ऐसे सैकड़ें लग अनजान रह जाते , अगर कोलकाता स्थित मीड़िया संग न ' त्रिसीज ' न होता , जो कंपनियों की वार्षिक रिपोर्ट तैयार करता है . +","aese hundreds people anjan others jate , agar kolkata sthit media sng n unrecognised n hota , jo knpniyon ki annual reports taiyar karta hai +",7,1,negative,negative,positive +"At its tip it is toothed and sharply hooked. +","इसकी नोक दांतेदार और तीखे हुक वाली होती है. +","iski tip dantedar aur tikhe huk vali hoti hai +",10,0,neutral,neutral,neutral +"This is not the case . +","लेकिन यह बात नही है . +","lekin yah case nahi hai +",9,0,neutral,neutral,neutral +"You can do the number line if you need to. +","आप इसे नंबर लाइन कर सकते हैं यदि आपको ज़रूरत पड़े तो. +","aap ise number line kar sakte hain yadi aapko zaroorat pare to +",7,5,neutral,neutral,positive +"“If you 're not failing every now and again, it' s a sign you 're not doing anything very innovative. ” - Woody Allen +","“यदि आप बार बार नहीं गिर रहे हैं तो इसका अर्थ है कि आप कुछ नया नहीं कर रहे हैं. ”-वुडी एलन +","ydi aap bar bar nahin failing rahe hain to iska arth hai ki aap kuchh naya nahin kar rahe hain -vudi elan +",8,1,neutral,neutral,positive +"The opponents were waiting for the opportune moment to strike. +","प्रतिद्वंद्वी प्रहार हेतु उपयुक्त समय की प्रतीक्षा कर रहा था। +","prtidvndvi prhar hetu opportune moment ki prtiksha kar raha tha. +",8,1,neutral,neutral,positive +"Save changes to image ""% s"" before closing? +","छवि ""% s"" में बंद करने से पहले परिवर्तन सहेजें? +","image save men closing karne se pahle parivartan sahejen +",5,5,neutral,neutral,positive +"It treats of the sacrifices to the fire , and is recited in three different ways . +","इसमें यज्ञों का विवेचन है और इसका पाठ तीन भिन्न प्रकार से किया जाता +","ismen treats ka vivechan hai aur iska path tin bhinn prkar se kiya jata +",8,1,neutral,neutral,negative +"Rotate the image 90 degrees to the right +","छवि को 90 डिग्री पर दाहिने घुमाएँ +","image ko 90 degrees par dahine rotate +",7,1,neutral,neutral,neutral +"In this way We showed Abraham Our kingdom of the heavens and the earth, so that he might have certainty of faith. +","और (जिस तरह हमने इबराहीम को दिखाया था कि बुत क़ाबिले परसतिश (पूजने के क़ाबिल) नहीं) उसी तरह हम इबराहीम को सारे आसमान और ज़मीन की सल्तनत का (इन्तज़ाम) दिखाते रहे ताकि वह (हमारी वहदानियत का) यक़ीन करने वालों से हो जाएं +","aur jis tarah hamne way ko dikhaya tha ki but abile parastish kingdom ke abil nahin usi tarah ham way ko sare heavens aur zamin ki saltanat ka intazam dikhate rahe certainty vah hamari vahdaniyat ka yain karne valon se ho jaen +",5,4,positive,neutral,positive +"The type of navigation triggering this decision +","इस निर्णय को ट्रिगर करने वाले संचरण के प्रकार +","is decision ko trigar karne vale navigation ke type +",7,2,neutral,negative,neutral +"(a) dearness allowance or dearness pay unless it enters into the computation of superannuation or retirement benefits of the employee concerned; +","(क) महंगार्इ भत्ता या महंगार्इ वेतन, जब तक कि वह संबद्ध कर्मचारी के अधिवर्षिता या सेवानिवृत्ति संबंधी फायदों की संगणना करने में हिसाब में नहीं लिया जाता हो; +","k mahngari bhatta ya dearness pay, jab tak ki vah snbaddh superannuation or retirement ya retirement benefits phaydon ki snganna karne men hisab men nahin liya jata ho +",8,1,neutral,neutral,positive +"During 2010 - 11, the production of HINCOL was 159. 39 MT. +","वर्ष 2010-11 के दौरान, हिनकोल का उत्पादन 159.39 लाख टन था। +","varsh 2010-11 ke dauran, hinkol ka production 15939 lakh tan tha. +",7,2,neutral,neutral,neutral +"Occurrences when an extension was installed +","एक्सटेंशन इंस्टॉल किए जाने की पुनरावृत्तियां +","ekstenshan installed kie jane ki punravrittiyan +",5,8,neutral,neutral,neutral +"It gives me great pleasure to address this distinguished gathering of business participants. Other than working on business deals, such events are important platforms for deepening mutual engagement and interaction, and providing an opportunity to think creatively about ways to develop the potential of our relationship. +","मुझे व्यापार प्रतिभागियों के इस विशिष्ट समूह को संबोधित करते हुए अत्यंत प्रसन्नता हो रही है। व्यापार सौदों पर कार्य करने के अलावा, ऐसे समारोह परस्पर सम्बन्ध और बातचीत में घनिष्ठता लाने तथा अपने रिश्तों की संभावनाएं पैदा करने के तरीकों के बारे में रचनात्मक ढंग से विचार करने के महत्त्वपूर्ण मंच होते हैं। +","great business gathering ke is distinguished other ko snbodhit karte hue ways pleasure ho rahi deals business saudon par interaction karne ke alava , aese samaroh mutual engagement aur batchit men ghanishthta lane tatha apne rishton ki opportunity paida karne ke tarikon ke bare men rachnatmak events se vichar karne ke mahattvpoorn platforms hote hain. +",6,0,positive,positive,positive +"But it won 't be as good as Johan. +","लेकिन मम्मी वह जोहान जैसा अच्छा तो नहीं होगा। +","lekin mammi vah johan jaisa good to nahin won +",8,1,negative,positive,positive +"That they said (in boast), ""We killed Christ Jesus the son of Mary, the Messenger of Allah""; - but they killed him not, nor crucified him, but so it was made to appear to them, and those who differ therein are full of doubts, with no (certain) knowledge, but only conjecture to follow, for of a surety they killed him not: - +","और उनके इस कथन के कारण कि हमने मरयम के बेटे ईसा मसीह, अल्लाह के रसूल, को क़त्ल कर डाला-हालाँकि न तो इन्होंने उसे क़त्ल किया और न उसे सूली पर चढाया, बल्कि मामला उनके लिए संदिग्ध हो गया। और जो लोग इसमें विभेद कर रहे है, निश्चय ही वे इस मामले में सन्देह में थे। अटकल पर चलने के अतिरिक्त उनके पास कोई ज्ञान न था। निश्चय ही उन्होंने उसे (ईसा को) क़त्ल नहीं किया, +","aur unke is kathan ke karan ki hamne marayam ke bete christ masih , allah ke rasool , ko tl kar dala-halanki n to inhonne use tl kiya aur n use sooli par doubts , balki mamla unke lie sndigdh ho therein aur jo log ismen vibhed kar rahe hai , full hi ve is mamle men sandeh men the. conjecture par chalne ke atirikt unke pas koee knowledge n tha. full hi unhonne use christ ko tl nahin kiya , +",3,3,negative,negative,negative +"The trained phone operators can fill in your form over the telephone. +","फोन पर प्रशिक्षित आप्रेटरज़ क्लेम फार्म भी भर सकते हैं। +","phone par trained operators klem pharm bhi bhar sakte hain. +",9,2,neutral,neutral,neutral +"The fact, however, is that our region remains amongst the least integrated and developed, underlining the need for greater co-operation and intensification of our trade effort. +","तथापि वास्तविकता यह है कि हमारा क्षेत्र कम एकीकृत और विकसित बना हुआ है, जो हमारे व्यापार प्रयास के अधिकाधिक सहयोग और तेजी की आवश्यकता दर्शाता है। +","tathapi vastvikta yah hai ki region remains kam integrated and developed bana huaa hai, jo hamare trade effort ke adhikadhik sahyog aur teji ki aavashyakta darshata hai. +",7,4,neutral,neutral,positive +"“O sister of Haroon, neither was your father an evil man nor was your mother of poor conduct! ” +","हे हारून की बहन! न तो तेरा बाप ही कोई बुरा आदमी था और न तेरी माँ ही बदचलन थी। "" +","he o ki sister ! n to tera father hi koee evil man tha aur n teri mother hi conduct thi. +",4,0,neutral,neutral,negative +"that everybody in the classroom needs to pay attention, +","ताकि कक्षा में सभी ध्यान दें, +","taki classroom men sabhi pay attention, +",7,1,neutral,neutral,negative +"Netaji received congratulations from Eamon De Velera , President of the Irish Free State . +","नेताजी को आइरिश फ्री स्टेट के अध्यक्ष इमौन डि बलेरा का बधाई संदेश भी मिला . +","netaji ko aairish phri irish free state imaun di balera ka badhaee sndesh bhi mila +",4,4,positive,neutral,positive +"that everybody in the classroom needs to pay attention, +","ताकि कक्षा में सभी ध्यान दें, +","everybody classroom men sabhi attention den , +",6,0,neutral,neutral,negative +"Your Login session is expired now. +","आपका लॉगिन सत्र अब समाप्त होने वाला है। +","aapka login session ab samapt hone vala expired +",7,2,negative,neutral,neutral +"In the interview , Bharali has given a blow-by-blow account of what supposedly happened after the “ marriage ” . +","अपने इंटरव्यू में भराली ने ' शादी के बाद ' की हर घटना का क्रमवार यौरा दिया है . +","apne interview men bharali ne marriage ke bad ki account ghatna ka kramvar yaura diya hai +",7,3,neutral,neutral,neutral +"These episodes may have insidious onset, may be prolonged and may sometimes recur even after taking some glucose. +","यह अक़्सर धीरे शुरू होती है, काफी लंबी चलती है तथ कभी-कभी ग़्लूकोज का सेवन करने के बाद भी हो सकती है. +","yah asar dhire shuroo hoti hai, kaphi lnbi chalti hai tath kabhi-kbhi taking some glucose karne ke bad bhi ho sakti hai +",5,5,negative,negative,neutral +"Special schemes for SHGs and to empower women folk +","स्वयं सहायता समूह के लिए विशेष योजना और महिलाओं को सशक्त बनाना +","svyn sahayta samooh ke lie special schemes aur mahilaon ko sashakt empower +",8,2,positive,neutral,positive +"And if their speed is zero, they 'll maintain that restfulness. +","और यदि उनकी गति शून्य है, तो वे उस restfulness को बनाए रखने देंगे। +","aur yadi unki speed shoony hai , to ve us restfulness ko banae rakhne denge. +",9,0,neutral,neutral,neutral +"Delete CA certificate “% {CERTIFICATENAME} ”? CA +","प्रमाणपत्र “% {CERTIFICATENAME} ” हटाएं? +","prmanapatr CERTIFICATENAME delete +",8,1,negative,neutral,neutral +"For this reason first he went to Brahma samaaj but his mind was not happy there. +","इस हेतु वे पहले ब्रह्म समाज में गए किंतु वहाँ उनके चित्त को संतोष नहीं हुआ। +","is reason ve pahle brahm samaj men ge kintu vahan unke chitt ko sntosh nahin huaa. +",9,0,negative,neutral,negative +"Do not be like those who, after they had been given clear evidence, split into factions and differed among themselves: a terrible punishment awaits such people. +","तुम उन लोगों की तरह न हो जाना जो विभेद में पड़ गए, और इसके पश्चात कि उनके पास खुली निशानियाँ आ चुकी थी, वे विभेद में पड़ गए। ये वही लोग है, जिनके लिए बड़ी (घोर) यातना है। (यह यातना उस दिन होगी) +","tum un logon ki tarah n ho jana jo factions men par evidence , aur iske pashchat ki unke pas clear nishaniyan aa chuki thi , ve factions men par ge. ye vahi people hai , jinke lie bari terrible punishment hai. yah punishment us din hogi +",7,1,negative,negative,negative +"Delirium produced due to the action of a poison is known as toxic delirium. +","विष की क्रिया के कारण उत्पन्न चित्त विपर्यय को विषजन्य चित्त विपर्यय कहा जाता है। +","vish ki kriya ke produced due chitt viparyay ko vishajany chitt viparyay kaha jata hai. +",6,6,negative,neutral,negative +"The parent industry itself being in infancy , the market for machinery was limited and private enterprise was not expected to venture into this field . +","मूल उद्योग भी चूंकि अपनी शैशवावस्था में था , मशीनों के लिए बाजार सीमित था और निजी उद्यमियों से यह आशा नहीं की जा सकती थी कि वे इस क्षेत्र में आगे आयें . +","parent industry bhi choonki apni infancy men tha , machinery ke lie market simit tha aur private udymiyon se yah aasha nahin ki ja sakti thi ki ve is field men aage venture +",7,2,neutral,negative,negative +"No other applications are available to view this file. If you copy this file onto your computer, you may be able to open it. +","इस फाइल को देखने के लिये कोई अन्य अनुप्रयोग उपलब्ध नहीं है. अगर आफ इस फाइल को कंप्यूटर पर कॉपी करते हैं, आप इसे खोलने में सक्षम हो सकते हैं. +","is view this file ke liye koee any applications upalabdh nahin hai agar aaph is file ko knpyootar par kpi karte hain, aap ise kholne men saksham ho sakte hain +",7,1,neutral,neutral,negative +"We can no longer accept many of the ancient beliefs and customs; we have no more faith in them, in Asia or in Europe or America. +","अब हम बहुत-से पुराने आचार-विचारों, पुराने रीति-रिवाजों को बदस्तूर नहीं कबूल करते। +","ab ham bahut-se purane aachar-vicharon, purane riti-rivajon ko badastoor nahin kabool karte. +",9,1,negative,negative,negative +"Cannot save to file ""{0}"". +","""{0}"" फ़ाइल में संग्रहित नहीं कर सकता है. +","0 fail men sngrhit nahin kar sakta hai +",7,1,negative,neutral,negative +"To account for some of the baffling features of the continents and oceans the great British geologist Arthur Holmes 1928, visualised some kind of convection currents in the mantle which caused movement of the crust. +","महाद्वीपीय तथा महासागरों की कुछ चौंका देने वाली विशिष्टताओं की व्याख्या करने के लिए विख्यात ब्रिटिश भूवैज्ञानिक आर्थर 141/भूमंडलीय विवर्तनिकी होम्स 1928 ने यह कल्पना की कि पृथ्वी के प्रावार में कुछ ऐसी संवहन धाराएं उत्पन्न हुईं जो भूपृष्ठ के संचलन का कारण बनीं। +","mahadvipiy tatha mahasagron ki kuchh chaunka dene vali features ki vyakhya karne ke lie great british geologist arthur 141bhoomndliy vivartniki holmes continents ne yah kalpna ki ki prithvi ke mantle men kuchh aesi convection currents utpann hueen jo crust ke movement ka kind banin. +",8,2,neutral,neutral,positive +"He said, ‘Indeed you cannot have patience with me! +","उसने कहा, ""तुम मेरे साथ धैर्य न रख सकोगे, +","usne kaha , tum mere sath patience n sakoge , +",7,4,negative,negative,neutral +"“ The States , ” he says , ” are still so numerous in India that they offer a grave conundrum in evolution to which no solution is at present forthcoming . +","वह लिखतें : हिंदुस्तान में इतनी ज़्यादा रियासतें हैं कि वे यहां की तरक़्की के रास्ते में एक बहुत बड़ी पहेली हैं . +","vah likhten : hindustan men itni zyada riyasten hain ki ve yahan ki taraki ke raste men ek bahut bari paheli hain +",4,7,negative,negative,negative +"Can a spectator 's enjoyment of a performance and the devotion of a devotee in a ritual be equated? +","क्या दर्शक के आनंद और नर्तक भक्त की भक्ति को एक कहा जा सकता है? +","kya spectator ke enjoyment aur ritual devotee ki devotion ko ek kaha ja sakta hai +",9,1,neutral,neutral,positive +"Excepting those who thereafter shall repent and make amends. Verily Allah is Forgiving, Merciful. +","सिवाय उन लोगों के जो इसके पश्चात तौबा कर लें और सुधार कर लें। तो निश्चय ही अल्लाह बहुत क्षमाशील, अत्यन्त दयावान है +","excepting un logon ke jo iske pashchat repent and make aur sudhar kar len. to nishchay hi allah is forgiving, atyant dayavan hai +",5,3,positive,neutral,positive +"and the reason for that is it 's entirely dark in there - +","और उसका कारण है की वहां धुप्प अंधकार है। +","aur uska reason hai ki vahan dhupp andhkar dark +",8,1,negative,neutral,neutral +"the simplest way to do it is to tell their story, +","इसका सबसे आसान तरीका है उनकी कहानी कहो, +","iska sabse simplest tarika hai unki story kaho, +",10,0,neutral,neutral,neutral +"But there are signs of a renaissance and, given that youth organizations provide adolescents' main experience of democracy, their strengthening will be an essential buttress to future human rights in the country. +","युवा संगठन किशोरों को लोकतंत्र का अनुभव प्रदान करते हैं इसलिए उन्हें मजबूत करने से भविष्य में देश में मानव अधिकारों की आवश्यक बुनियाद तैयार होगी। +","youth organizations adolescents ko democracy ka experience prdan karte hain islie unhen strengthening karne se bhavishy men country men human rights ki essential buniyad taiyar hogi. +",8,3,positive,neutral,positive +"There are eighteen thousand verses in the BrahmavaivarthPuran. +","ब्रह्मवैवर्तपुराण में श्लोकों की संख्या अठारह हजार हैं। +","verses men shlokon ki snkhya eighteen hajar hain. +",8,2,neutral,neutral,neutral +"The existing or ongoing projects in the MMP category, being implemented by various Central Ministries, States, and State Departments would be suitably augmented and enhanced to align with the objectives of NeGP. +","एमएमपी श्रेणी में मौजूदा या जारी परियोजनाओं का कार्यान्वायन विभिन्न केंद्रीय मंत्रालयों, राज्यों और राज्यर विभागों द्वारा उचित रूप से बढ़ाया जाएगा तथा इसे एनईजीपी के उद्देश्योंे के साथ मिलने के लिए उन्नात बनाया जाएगा। +","emempi existing or ongoing ya jari pariyojnaon ka karyanvayan vibhinn central ministries, rajyon aur rajyar vibhagon dvara uchit roop se baaya jaega tatha ise eneejipi ke uddeshyone ke sath milne ke lie unnat banaya jaega. +",8,0,neutral,positive,neutral +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","fact men aperture time aesi exposure ko diya gaya vigopan time hai jo kisi optical system aperture ke madhyam se image plane men kisi kendrbindu par aati focus +",5,4,neutral,neutral,neutral +"A skilled or artistic worker or craftsman. +","कोई कुशल या कलात्मक मज़दूर या कारीगर। +","koee craftsman ya artistic worker ya karigar. +",9,1,neutral,neutral,neutral +"And dread the Day when no one shall avail anyone in any way; nor shall any ransom be accepted from anyone; nor shall intercession profit any body; nor shall the offenders be helped from any quarter. +","और उस दिन से डरो जिस दिन कोई शख्स किसी की तरफ से न फिदया हो सकेगा और न उसकी तरफ से कोई मुआवेज़ा क़ुबूल किया जाएगा और न कोई सिफारिश ही फायदा पहुचाँ सकेगी, और न लोग मदद दिए जाएँगे +","aur us din se daro jis din koee shakhs kisi ki taraph se n phidya ho sakega aur n uski taraph se koee muaaveza ubool kiya jaega aur n koee sipharish hi phayda intercession profit, aur n log madad die jaenge +",4,4,negative,neutral,negative +"The main qualification for this is: +","इसके लिए मुख्य योग्यता है :| +","iske lie main qualification hai : +",9,2,neutral,neutral,neutral +"From popular home stays where one can get a firsthand experience of rural Sikkim to endless possibilities for adventure sports. +","यहां के लोकप्रिय घरेलू आश्रय जहां आपको ग्रामीण सिक्किम का प्रत्यक्ष अनुभव होता है और रोमांचक खेलों की असीमित संभावनाएं उपलब्ध हैं। +","yahan ke popular home stays jahan aapko rural sikkim ka firsthand experience hota hai aur romanchak possibilities ki asimit snbhavnaen upalabdh hain. +",9,1,positive,neutral,positive +"Allows to burn files not stored locally +","उन फाइलों को लिखने देता है जो स्थानीय रूप से जमा नहीं किए गए +","un allows ko likhne deta hai jo sthaniy roop se jama nahin kie ge +",8,2,neutral,neutral,neutral +"She 's a woman of mental clarity and administrative purposefulness. +","वे साफ सोच और प्रशासन को उद्देश्यपूर्ण काम में लगाए रखने वाली महिल हैं. +","ve mental soch aur administrative ko uddeshypoorn kam men lagae rakhne vali woman hain +",8,1,positive,neutral,positive +"Issuer:% s Subject:% s Fingerprint:% s Signature:% s +","निर्गमकः% s विषयः% s फिंगरप्रिंटः% s हस्ताक्षरः% s +","nirgamka s vishya s phingaraprinta s hastakshra s +",6,2,neutral,neutral,neutral +"The President said the North Eastern Hill University (NEHU) has acted as a centre of empowerment of the people in North-Eastern region. He expressed his happiness over gender parity in the student population, with a 1:1 male-female ratio and the fact that women outperform men beyond the ratio. +","राष्ट्रपति ने कहा कि पूर्वोत्तर पर्वतीय विश्वविद्यालय ने पूर्वोत्तर क्षेत्र में लोगों के सशक्तीकरण के केन्द्र के रूप में काम किया है। उन्होंने विद्यार्थियों में 1:1 के पुरुष महिला अनुपात के साथ लैंगिक समानता पर तथा इस बात पर प्रसन्नता व्यक्त की कि महिलाओं ने पुरुषों को औसत से पीछे छोड़ दिया है। +","rashtrapti ne kaha ki eastern hill university ne poorvottar kshetr men logon ke centre of empowerment ke roop men kam kiya hai. unhonne vidyarthiyon men 1:1 ke purush mahila anupat ke sath laingik samanta par tatha is bat par prasannta vyakt ki ki mahilaon ne purushon ko ausat se pichhe chhor diya hai. +",8,3,positive,negative,positive +"Have you not seen that they wander distract in every valley, +","क्या तुमने देखा नहीं कि वे हर घाटी में बहके फिरते हैं, +","kya tumne dekha nahin ki ve har ghati men bahke phirte hain, +",9,1,neutral,neutral,negative +"It is also possible that with limited opportunities , there may be a competition amongst the ' old ' themselves not to talk of their conflicts with younger generations . +","यह भी संभव है कि सीमित अवसरों के कारण नौजवान पीढ़ी से प्रतिस्पर्धा की कौन कहे वृद्धों में आपस में ही प्रतिस्पर्धा हो जाए . +","yah bhi possible hai ki limited opportunities ke karan naujvan generations se competition ki kaun kahe old men aapas men hi competition ho jae +",8,1,neutral,neutral,negative +"[country music plays, alarm beeping] +","[देश संगीत नाटकों, अलार्म beeping] +","country music plays , alarm beeping +",8,4,neutral,neutral,negative +"In collaboration with the Small Industries Development Bank of India (SIDBI), financial assistance is provided to set up projects in tiny / small scale industrial sector, service enterprises and also for undertaking expansion, technology upgradation, modernisation and revival of viable sick units in SSI Sector. +","भारतीय लघु उद्योग विकास बैंक (सिडबी) के सहयोग से छोटे/लघु उद्योग और सेवा उद्यम लगाने के साथ ही लघु उद्योगों की रुग्ण इकाइयों के प्रौद्योगिकी उन्नयन, विस्तार और आधुनिकीकरण में वित्तीय सहयोग दिया जाता है +","bhartiy laghu industries development bank sidbi ke sahyog se chhotelghu udyog aur seva udyam lagane ke sath hi laghu udyogon ki rugn ikaiyon ke technology upgradation, vistar aur aadhunikikaran men vittiy sahyog diya jata hai +",7,0,positive,neutral,negative +"For more details log on to source link: http: / / www. orissa. gov. in / commerce% 26transport / +","अधिक जानकारी के लिए देखेंः http: / / www. orissa. gov. in / commerce% 26transport / +","adhik jankari ke lie dekhena http: www orissa gov in commerce 26transport +",6,3,neutral,neutral,neutral +"to run age - old programs on a modern computer. +","एक आधुनिक कंप्यूटर पर उम्र के पुराने कार्यक्रमों को चलाना. +","ek modern computer par age ke purane karyakrmon ko run +",5,6,neutral,neutral,neutral +"But what could they do with a patient who would not listen to them? +","पर जो रोगी उनकी बात माने नहीं, उसके लिए वे क्या कर सकते थे? +","par jo patient unki bat mane nahin , uske lie ve kya kar sakte the +",8,1,negative,negative,neutral +"It shduld be recommended by the Tahsil Committee; 4. +","3. तहसील कमेटी द्वारा उसकी सिफारिश की जानी चाहिये। +","3 tahsil committee dvara uski sipharish ki jani chahiye. +",9,2,neutral,neutral,positive +"The amount of commission paid to the broker. +","दलाल को दी जाने वाली कमीशन की राशि। +","broker ko di jane vali commission ki amount +",9,0,neutral,neutral,neutral +"the light water reactor, the heavy water reactor would be around very long. They were just +","हल्के जल रिएक्टर, भारी जल रिएक्टर के आसपास बहुत लंबी होगी. वे सिर्फ थे +","light water reactor , heavy water reactor ke aaspas bahut lnbi hogi ve sirph the +",9,0,neutral,negative,neutral +"Set the row to use as dynamic column headers when speaking calc cells. +","गतिशील कॉलम हेडर के रूप में प्रयोग के लिए पंक्ति सेट करें जब कैल्क सेल बोला जा रहा हो. +","dynamic column headers ke roop men pryog ke lie pnkti set karen jab speaking calc cells ja raha ho +",9,2,neutral,neutral,positive +"I have one climate crisis; +","मैं पास एक जलवायु संकट है +","main pas ek climate crisis hai +",7,5,neutral,negative,negative +"The type ""% s"" is not a valid type. +","% s नियमित फाइल नहीं है +","s valid type nahin hai +",9,1,negative,negative,neutral +"The unexpected leaders were chosen in polling. +","असंभावित नेताओं को इस मतदान में चुना गया। +","unexpected leaders ko is chosen in polling gaya. +",6,1,neutral,negative,neutral +"into a school. Everybody is wearing jeans, everybody is the same. +","एक स्कूल में, हर कोई जींस पहन रहा है, हर कोई एक सामान है +","ek school men , everybody koee jeans pahan raha hai , everybody koee ek saman hai +",7,2,neutral,neutral,neutral +"A silly position for a fellow of eighteen ! +","वैसे यह हास्यास्पद स्थिति है , एक अट्ठारह वर्ष के लड़के के लिए ! +","vaise yah hasyaspad sthiti hai , ek silly position ke larke ke lie ! +",6,4,negative,positive,positive +"He commenced writing it on August 2, 1888, completed it on September 9, 1888, and released it in December. +","दूसरी अगस्त सन् 1888 को लिखनी शुरु की और 9 सितम्बर सन् 1888 को उसे पूर्ण किया तथा दिसम्बर में प्रकाशित किया। +","doosri august san 1888 ko likhni shuru ki aur 9 september san 1888 ko use poorn kiya tatha december men prkashit kiya. +",9,0,neutral,neutral,neutral +"Modify network connections for all users +","सभी उपयोगकर्ताओं के लिए संजाल कनेक्शन संशोधित करें +","sabhi users ke lie modify network connections karen +",7,1,neutral,neutral,neutral +"Unable to read file: '% 1' +","फ़ाइलः '% 1' को पढ़ने में अक्षम. +","faila 1 ko unable to read +",5,2,negative,neutral,neutral +"We are doing this by testing the blood from some patients, including babies. +","इस काम के लिए हम शिशुओं समेत कुछ रोगियों के खून की जाँच कर रहे हैं। +","is kam ke lie ham babies samet kuchh patients ke blood ki janch kar rahe hain. +",8,1,neutral,neutral,neutral +"Hell shall be their bed, and over them will be coverings of fire, thus shall We reward the wrongdoers. +","और उनके ऊपर से (आग ही का) ओढ़ना भी और हम ज़ालिमों को ऐसी ही सज़ा देते हैं और जिन लोगों ने ईमान कुबुल किया +","aur unke oopar se aag hi ka fire bhi aur ham wrongdoers ko aesi hi reward dete hain aur jin logon ne eeman kubul kiya +",6,2,negative,negative,negative +"Thus, we see how critical the handloom sector is to the simultaneous realization of several seemingly disparate national objectives: employment generation, rural development, social justice and empowerment, women 's welfare, preservation and promotion of artisanry, and checking the migration of rural families to urban areas. +","अतः हम समझ सकते हैं कि रोजगार जुटाने, ग्रामीण विकास, सामाजिक न्याय, महिला कल्याण, कारीगरों और उनकी कला को संरक्षण तथा प्रोत्साहन और ग्रामीण लोगों का शहरों तथा नगरों की तरफ पलायन पर अंकुश लगाने जेसे विभिन्न राष्ट्रीय लक्ष्यों को प्राप्त करने के अभियान में हथकरघा क्षेत्र कितना महत्वपूर्ण है। +","ata ham samajh sakte hain ki rojgar jutane, gramin vikas, social justice, mahila kalyan, karigron aur unki kala ko preservation and promotion aur gramin logon ka shahron tatha nagron ki taraph palayan par ankush lagane jese vibhinn rashtriy lakshyon ko prapt karne ke abhiyan men hathakargha kshetr kitna mahatvpoorn hai. +",8,1,neutral,neutral,positive +"and seek forgiveness from Allah. Surely Allah is All - Forgiving, All - Compassionate. +","अल्लाह से क्षमा की प्रार्थना करो। निस्संदेह अल्लाह बहुत क्षमाशील, दयावान है +","allah se forgiveness ki prarthna karo. nissndeh allah bahut forgiving , dayavan hai +",10,0,positive,neutral,positive +"Ready to create file systems and mount partitions? +","फाइलतंत्र व माउन्ट प्वाइंट्स बनाने के लिए तैयार हैं? +","file v mount partitions banane ke lie ready hain +",8,1,neutral,neutral,positive +"Please add songs to the project. +","कृपया गाने को परियोजना में जोड़ें. +","kripya songs ko project men add +",9,0,neutral,neutral,positive +"Recycled paper uses less natural resources and less toxic chemicals in paper making process. +","कागज बनाते समय पुनः चक्रित कागज कम प्राकृतिक संसाधन और कम विषाक्त रसायन का उपयोग करता है। +","paper making process puna chakrit kagaj kam natural resources aur kam toxic chemicals ka upyog karta hai. +",7,1,neutral,neutral,positive +"And who has a better religion than he who submits himself entirely to Allah? And he is the doer of good (to others) and follows the faith of Ibrahim, the upright one, and Allah took Ibrahim as a friend. +","और दीन (धर्म) की स्पष्ट से उस व्यक्ति से अच्छा कौन हो सकता है, जिसने अपने आपको अल्लाह के आगे झुका दिया और इबराहीम के तरीक़े का अनुसरण करे, जो सबसे कटकर एक का हो गया था? अल्लाह ने इबराहीम को अपना घनिष्ठ मित्र बनाया था +","aur din religion ki spasht se us vyakti se good kaun ho sakta hai , jisne apne aapko better ke aage doer diya aur ibrahim ke tarie ka anusaran kare , jo sabse katakar ek ka ho gaya tha better ne ibrahim ko apna ghanishth friend banaya tha +",7,0,positive,neutral,positive +"Repel evil by what is best; We know best what they describe. +","और बुरी बात के जवाब में ऐसी बात कहो जो निहायत अच्छी हो जो कुछ ये लोग (तुम्हारी निस्बत) बयान करते हैं उससे हम ख़ूब वाक़िफ हैं +","aur buri bat ke javab men aesi bat kaho jo nihayat achchhi ho jo kuchh ye log tumhari nisbat bayan karte hain usse ham oob vaiph hain +",6,5,neutral,neutral,positive +"to run age - old programs on a modern computer. +","एक आधुनिक कंप्यूटर पर उम्र के पुराने कार्यक्रमों को चलाना. +","ek modern computer par age ke purane programs ko chalana +",8,4,neutral,neutral,neutral +"And she conceived him, and she withdrew with him to a far place. +","फिर उसे उस (बच्चे) का गर्भ रह गया और वह उसे लिए हुए एक दूर के स्थान पर अलग चली गई। +","phir use us bachche ka garbh rah gaya aur vah use lie hue ek door ke place par alag chali gee. +",8,4,neutral,neutral,neutral +"Develop Goa as the 'Export / Import Hub' and thus encourage export - oriented industries +","गोवा को ‘आयात/निर्यात हब’ के रूप में विकसित करना और इस प्रकार से निर्यात केंद्रित उद्योगों को बढावा देना। +","gova ko aayatniryat hab ke roop men viksit karna aur is prkar se niryat kendrit udyogon ko badhava dena. +",9,0,neutral,neutral,positive +"How [dreadful] was My punishment and My warning! +","तो (उनको) मेरा अज़ाब और डराना कैसा था +","to unko mera azab aur warning kaisa tha +",7,0,negative,neutral,negative +"Despite this ugly record, the U. S. government widely accepts CAIR as representing Islam. The White House invites it to functions, the State Department links to its Web page and Democratic senators rely on its research. In New York City, the mayor appoints its general counsel to the Human Rights Commission and the police department hosts its “sensitivity training” seminar. In Florida, public schools invite it to teach “diversity awareness. ” +","इस कुरूप रिकार्ड के बाद भी अमेरिका सरकार सी. ए. आई. आर को व्यापक रूप से इस्लाम को प्रतिनिधि मानती है। व्हाइट हाउस इसे कार्यक्रमों में बुलाता है, राज्य विभाग ने इसके वेब पृष्ठों के लिंक दिये हैं और डेमोक्रेट सीनेटर इसके शोध पर निर्भर करते हैं। न्यूयार्क शहर में इसके सदस्य को मानवाधिकार आयोग में नियुक्त किया जाता है और पुलिस इसके संवेदनशील प्रशिक्षण की निगरानी करती है। +","is ugly record ke bad bhi amerika sarkar si e aaee aar ko vyapak roop se islam ko prtinidhi manti hai. vhait haus ise karyakrmon men bulata hai, rajy vibhag ne iske veb prishthon ke link diye hain aur demokret sinetar iske shodh par nirbhar karte hain. nyooyark shahar men iske sadasy ko manvadhikar aayog men niyukt kiya jata hai aur pulis iske snvedanshil prshikshan ki nigrani karti hai. +",8,0,neutral,neutral,positive +"Drinking the way thirsty camels drink. +","और पियोगे भी तो प्यासे ऊँट का सा (डग डगा के) पीना +","aur piyoge bhi to thirsty camels ka sa dag daga ke drinking +",7,1,neutral,neutral,neutral +"Could not decode private key. +","निजी कुंजी को विगोपित नहीं कर सका. +","private key ko vigopit nahin kar saka +",8,1,negative,neutral,neutral +"But the folk writer developed an elaborate story about her. +","किंतु लोक-साहित्यकारों ने उसकी कहानी विस्तार से सुनायी। +","kintu folk ne uski elaborate story se sunayi. +",5,1,neutral,neutral,neutral +"During this period of his stay in London he visited the Houses of Parliament and heard Gladstone and John Bright speak on the Irish Home Rule. +","लंदन में इस प्रवास के दौरान उन्होंने संसद भवन को देखा और आयरिश होम रूल पर ग्लैडस्टोन और जॉन ब्राइट को भाषण देते हुए सुना. +","lndan men is prvas ke dauran unhonne snsad bhavan ko dekha aur irish home rule par glaidaston aur jn brait ko bhashan dete hue suna +",6,6,neutral,neutral,positive +"Set the browser to view only this genre +","ब्राउजर को सिर्फ ये शैल प्रदर्षित करने के लिए निश्चित करें +","set the browser ye shail genre karne ke lie set karen +",6,1,neutral,neutral,neutral +"Shah 's heart was deeply moved and he sent back the following message through the same messenger: Grieve not, for I am not far away; Physically away, yet really I am one with your noble self. +","शाह लतीफ का हृदय विचलित हो उठा और उन्होंने उसी सन्देशवाहक के द्वारा निम्नलिखित सन्देश भेजा: दूखी मत होओ, मैं दूर नहीं हूँ, देखने में दूर, पर दोनों की हद एक है। +","shah latiph ka heart same ho messenger aur unhonne usi sandeshvahak ke dvara following message bheja : dookhi noble hoo , i door nahin self , dekhne men door , par donon ki grieve ek hai. +",4,1,positive,neutral,positive +"The Soviet Union shares the Indian view on the maintenance of peace and the elimination of racialism and colonialism. +","शांति बनाए रखने और रंगभेद तथा उपनिवेशवाद को समाप्त करने के बारे मे सोवयत संघ और भारत के विचार एक जैसे हैं। +","shanti banae rakhne aur racialism and colonialism ko samapt karne ke bare me sovayat sngh aur bharat ke vichar ek jaise hain. +",9,0,neutral,neutral,positive +"The East India Company and the British authorities, however, treated him as a pensioner entitled only to the nominal status of a king whose jurisdiction lay within the walls of the Red Fort and who was entitled to a monthly stipend of Rs one lakh. +","यह अलग बात है कि ईस्ट इंडिया कंपनी और ब्रिटिश सरकार उन्हें सिर्फ एक पेंशनभोगी और नाममात्र का शासक समझती थी, जो हर माह एक लाख रूपए के वजीफे का हकदार था और जिसका अधिकार-क्षेत्र लाल किले की चारदीवारी तक सीमित था. +","yah british bat hai ki east india company aur british sarkar unhen sirph ek pensioner aur nominal ka king samajhti thi , jo authorities monthly ek rs roope ke vajiphe ka hakdar tha aur jiska adhikar-kshetr red fort ki walls tak simit tha +",7,4,neutral,neutral,positive +"Child process stopped by signal %ld +","संतति प्रक्रिया %ld संकेत के द्वारा रोका गया +","child process ld signal ke dvara roka gaya +",8,1,negative,neutral,negative +"Similar to what we have in Buriair Sadhu and Kakadeuta aru Natilora, there is also in it a genuine desire on the part of the author to quit the artificial and the rococo and to be simple, natural and spontaneous. +","‘बुडि आइर साधु’ और ‘कका-देउता आरू नातिलोरा’ की भॉँति इस कृति में भी लेखक कृत्रिमता को त्यागने का प्रयत्न करके सरल, सहज और अन्तःस्फूर्त्त पर बल देता दिखाई पड़ता है। +","budi buriair sadhu aur kaka-deuta aru natilora ki bhnti is part men bhi author kritrimta ko tyagne ka prayatn karke simple , natural aur antasphoortt par artificial desire dikhaee parta similar +",5,2,neutral,neutral,positive +"Mark the selected messages as having been read +","चयनित संदेश पढ़े गए के रूप में चिह्नित करें +","chaynit messages read ge ke roop men mark karen +",8,1,neutral,neutral,neutral +"Failed to copy a task into the task list '{0}' +","किसी कार्य सूची को इस कार्य में पाने में असमर्थ. +","kisi task list ko is task men pane men failed +",7,3,negative,neutral,negative +"“And if you deny, then many nations have denied before you; and the Noble Messenger is not responsible except to plainly convey (the message). ” +","और यदि तुम झुठलाते हो तो तुमसे पहले कितने ही समुदाय झुठला चुके है। रसूल पर तो बस केवल स्पष्ट रूप से (सत्य संदेश) पहुँचा देने की ज़िम्मेदारी है। "" +","aur yadi tum jhuthlate ho to tumse pahle many hi samuday jhuthla chuke nations noble par to bas keval spasht roop se saty message pahuncha dene ki responsible nations +",6,0,negative,neutral,negative +"You must enable remote connections if you want to use Chromoting to access this computer. +","यदि आप इस कंप्यूटर पर पहुंचने के लिए Chromoting का उपयोग करना चाहते हैं, तो आपको दूरस्थ कनेक्शन सक्षम करने होंगे. +","yadi aap is knpyootar par pahunchne ke lie Chromoting ka upyog karna chahte hain, to aapko enable remote connections karne honge +",6,1,neutral,neutral,positive +"Though they had improved upon it in some ways but ' the thing ' had become ' totally different from what it originally was . ' +","यद्यपि उन्होंने उसमें थोड़ा-बहुत संशोधन किया है ? किंतु जो असल बात थी वह बिलकुल बदल गई है . ? +","yadypi unhonne usmen thora-bhut snshodhan kiya hai ways jo asal thing thi vah bilkul badal gee hai +",7,2,neutral,negative,positive +"India and South Africa share a longstanding friendship that is rooted in history and our shared values. +","भारत और दक्षिण अफ्रीका के बीच संबंधों की जड़ें इतिहास और साझे मूल्यों में स्थापित हैं. +","india and south aphrika ke bich snbndhon ki jaren itihas aur sajhe moolyon men sthapit hain +",8,1,positive,neutral,positive +"Without bridging the information gap, such disparity will persist. Of course, thanks to modern communication system, the asymmetry in information access is slowly getting eroded. +","सूचना के इस अंतर को पाटे बिना ऐसी असमानता बनी रहेगी। वास्तव में आधुनिक संचार प्रणाली का धन्यवाद, जिससे सूचना तक पहुंच में यह असंतुलन धीरे-धीरे समाप्त हो रहा है। +","information ke is gap ko pate such aesi disparity bani rahegi. course men aadhunik snchar system ka thanks , jisse information tak access men yah asntulan dhire-dhire samapt ho raha hai. +",6,3,negative,negative,positive +"seeing towards down after the noon, we can see pollution in Los Angeles into the moor of mountains +","नीचे देखने पर सामने की पहाडी के मैदान में दोपहर के बाद वायु प्रदूषण साफ साफ़ लोस अन्जेल्स में दिखता है. +","niche dekhne par samne ki pahadi ke maidan men dopahar ke bad vayu prdooshan saph saf moor of mountains dikhta hai +",5,3,neutral,neutral,neutral +"In 1895 she went to england for higher studies and along with studies she also wrote poetry. +","वे १८९५ में उच्च शिक्षा प्राप्त करने के लिए इंग्लैंड गईं और पढ़ाई के साथ-साथ कविताएँ भी लिखती रहीं। +","ve १८९५ men higher studies prapt karne ke lie inglaind geen aur paaee ke sath-sath poetry bhi likhti rahin. +",8,1,neutral,neutral,neutral +"I told him that the Congress bow was a hefty bow and had many strings to it and many more would be added to it. +","मैंने उसे बतायाZ कि कांग्रेस वैसे ही एक ताकतवर संस्था है, इसकी कई शाखाएं-प्रशाखाएं हैं तथा इसमें कुछ और भी जुड़ेंगी. +","i use batayaZ ki congress more hi ek strings snstha hai , iski kee shakhaen-prshakhaen hain tatha ismen kuchh aur bhi many +",6,0,neutral,negative,neutral +"The result of the operation is {0: # # 0. # # #}. +","इस गणना का परिणाम है {0: ##0. ###} +","is operation ka result hai 0 : 0 +",7,2,neutral,positive,neutral +"We dedicate this sacred day to their memory. +","आज का यह पवित्र दिन हम उनकी स्मृति में समर्पित करते हैं। +","aaj ka yah sacred day ham unki memory men samarpit karte day +",8,1,positive,neutral,neutral +"Evidence of satisfactory completion of institutional arrangements +","संस्थागत व्यवस्था के संतोषजनक पूरा होने की साक्ष्य +","institutional arrangements ke satisfactory poora hone ki evidence +",9,2,positive,neutral,positive +"So black you would not be able to see him in the dark. +","इतना घना काला कि अंधेरे में दिखाई न देता था। +","itna ghana kala ki andhere men dikhaee n deta tha. +",5,9,negative,negative,neutral +"We are fortunate in having an adequate number of experts. +","सौभाग्य से हमारे पास इस प्रकार से विशेषज्ञ पर्याप्त संख्या में हैं। +","fortunate se hamare pas is prkar se experts adequate number men hain. +",7,2,positive,positive,positive +"(c) assessment or reassessment, if any, has been made, before the date of receiving the books of account or documents or assets seized or requisitioned by the Assessing Officer having jurisdiction over such other person, such Assessing Officer shall issue the notice and assess or reassess total income of such other person of such assessment year in the manner provided in section 153A. +","(ग) निर्धारण या पुनर्निर्धारण, यदि कोर्इ हो, किया गया है, वहां ऐसा निर्धारण अधिकारी धारा 153क में उपबंधित रीति में सूचना जारी करेगा और उस निर्धारण वर्ष के लिए ऐसे अन्य व्यक्ति की कुल आय का निर्धारण या पुनर्निर्धारण करेगा। +","g nirdharan ya punarnirdharan, yadi kori ho, kiya gaya hai, vahan aesa nirdharan adhikari dhara 153k men upbndhit riti men soochna jari karega aur us nirdharan varsh ke lie aese any vyakti ki kul aay ka nirdharan ya punarnirdharan karega. +",7,2,neutral,neutral,positive +"The process of retaining of a rate of exchange in order to stabilise the market (generally by govt. or authority concerned). +","बाजार में स्थायित्व बनाए रखने के लिए विनिमय दरों को बनाए रखना (सामान्यतः यह कार्य सरकार या संबंधित प्राधिकृति द्वारा किया जाता है)। +","market men sthayitv retaining order ke lie rate daron ko retaining rakhna samanyta yah kary govt ya snbndhit process dvara kiya jata hai . +",5,0,neutral,neutral,positive +"So black you would not be able to see him in the dark. +","इतना घना काला कि अंधेरे में दिखाई न देता था। +","itna able black ki andhere men dikhaee n deta tha. +",4,4,negative,negative,neutral +"Two rooms inside the fort had been converted into chapels, one for Anglican worship, the other for Roman Catholic. +","किले के अंदर दो कमरों को गिरजाघरों में तब्दील कर दिया गया था, एक एंगलीकन धर्मोपासना के लिए और दूसरा रोमन कैथोलिक उपासना के लिए। +","fort ke andar do rooms ko girjaghron men tabdil kar diya gaya tha , ek englikan dharmopasna ke lie aur other roman catholic worship ke lie. +",9,1,neutral,neutral,positive +"Branch audit is conducted by a firm assigned the job on yearly basis. +","शाखा लेखा परीक्षा बाहरी फर्म द्वारा, जिसे वार्षिक रूप से यह कार्य सौंपा जाता है, की जाती है। +","branch audit pariksha bahri pharm dvara, jise varshik roop se yah kary saunpa jata hai, ki jati hai. +",4,6,neutral,neutral,neutral +"That however, at least as a practical force, comes in at a later stage of high perfection. +","किन्तु यह स्थिति, कम-से-कम एक व्यावहारिक शक्ति के रूप में, उच्च सिद्धि की एक बाद की अवस्था में ही प्राप्त होती है। +","kintu yah later , kam-se-kam ek practical force ke least men , high perfection ki ek bad ki avastha men hi prapt hoti hai. +",6,4,neutral,neutral,positive +"If they try to force you to associate with Me that of which you have no knowledge, do not obey them. Live with them honourably in the world, but follow the way of him who turns to Me. Your returning is to Me in the end, when I will tell you what you did. +","और अगर तेरे माँ बाप तुझे इस बात पर मजबूर करें कि तू मेरा शरीक ऐसी चीज़ को क़रार दे जिसका तुझे इल्म भी नहीं तो तू (इसमें) उनकी इताअत न करो (मगर तकलीफ़ न पहुँचाना) और दुनिया (के कामों) में उनका अच्छी तरह साथ दे और उन लोगों के तरीक़े पर चल जो (हर बात में) मेरी (ही) तरफ रुजू करे फिर (तो आख़िर) तुम सबकी रुजू मेरी ही तरफ है तब (दुनिया में) जो कुछ तुम करते थे +","aur agar tere man bap tujhe is bat par majboor karen ki too mera sharik aesi chiz ko rar de jiska tujhe ilm bhi nahin to too ismen unki itaat n karo magar taklif n pahunchana aur duniya ke kamon men unka achchhi tarah sath de aur un logon ke tarie par chal jo har bat men meri hi taraph rujoo kare phir to aair tum sabki rujoo meri hi taraph hai tab duniya men jo kuchh tum karte the +",4,6,neutral,neutral,negative +"Can't copy file over directory +","निर्देशिका पर फ़ाइल की नक़ल नहीं ले सकता है +","directory par file ki nal nahin le sakta hai +",8,1,neutral,neutral,neutral +"This is a Surah which We have sent down and We have made it mandatory, and We have sent down clear Commandments in it so that you may learn lessons. +","(ये) एक सूरा है जिसे हमने नाज़िल किया है और उस (के एहक़ाम) को फर्ज क़र दिया है और इसमें हमने वाज़ेए व रौशन आयतें नाज़िल की हैं ताकि तुम (ग़ौर करके) नसीहत हासिल करो +","ye ek surah hai jise hamne clear kiya hai aur us ke commandments ko mandatory r diya hai aur ismen hamne vazee v raushan lessons clear ki hain taki tum aur karke nasihat hasil karo +",6,3,neutral,neutral,positive +"Raynaud 's disease is also called as Raynaud' s phenomenon. +","रेनाड रोग को रेनाड की घटना भी कहा जाता है. +","renad disease ko renad ki phenomenon bhi kaha called hai +",6,2,neutral,neutral,neutral +"Ram went to bring the Golden deer (which was actually Maarich) and ordered Lakshman to take care of Sita. +","लक्ष्मण को सीता के रक्षा की आज्ञा दे कर राम स्वर्णमृग रूपी मारीच को मारने के लिये उसके पीछे चले गये। +","lakshman ko care of sita ki aajnja de kar bring the golden marich ko marne ke liye uske pichhe chale gaye. +",6,2,neutral,neutral,positive +"National Rail Museum, New Delhi +","राष्ट्रीय रेल संग्रहालय, नई दिल्ली +","national rail museum, nee delhi +",7,1,neutral,neutral,neutral +"The reward of goodness shall be nothing but goodness. +","अच्छाई का बदला अच्छाई के सिवा और क्या हो सकता है? +","reward ka badla reward ke nothing aur kya ho sakta hai +",5,3,positive,neutral,neutral +"Those of Abraham and Lut; +","और इबराहीम की क़ौम और लूत की क़ौम +","aur abraham ki lut aur loot ki lut +",5,3,neutral,neutral,neutral +"[Commanding him], ""Make full coats of mail and calculate [precisely] the links, and work [all of you] righteousness. Indeed I, of what you do, am Seeing."" +","कि फँराख़ व कुशादा जिरह बनाओ और (कड़ियों के) जोड़ने में अन्दाज़े का ख्याल रखो और तुम सब के सब अच्छे (अच्छे) काम करो वो कुछ तुम लोग करते हो मैं यक़ीनन देख रहा हूँ +","ki coats v kushada jirah banao aur kariyon ke jorne men andaze ka khyal calculate aur tum sab ke sab full full work karo vo kuchh tum log karte ho i yainan dekh raha hoon +",6,4,neutral,neutral,neutral +"Thus the word of your Lord is fulfilled concerning the transgressors that they shall not believe. +","ये तुम्हारे परवरदिगार की बात बदचलन लोगों पर साबित होकर रही कि ये लोग हरगिज़ ईमान न लाएँगें +","ye tumhare paravardigar ki bat badachalan logon par sabit hokar rahi ki ye log hargiz eeman n laengen +",8,2,positive,neutral,positive +"so that he could make coats of mail and properly measure their rings. We told him and his people to act righteously. We are Well - Aware of what you do. +","कि फँराख़ व कुशादा जिरह बनाओ और (कड़ियों के) जोड़ने में अन्दाज़े का ख्याल रखो और तुम सब के सब अच्छे (अच्छे) काम करो वो कुछ तुम लोग करते हो मैं यक़ीनन देख रहा हूँ +","ki coats v kushada jirah banao aur kariyon ke jorne men andaze ka khyal rakho aur tum aware ke aware achchhe achchhe kam karo vo kuchh tum people karte ho main yainan dekh raha hoon +",6,3,neutral,neutral,positive +"11)In sanskrit sentence words can be placed in any order. +","११) संस्कृत वाक्यों में शब्दों को किसी भी क्रम में रखा जा सकता है। +","११ sanskrit sentence words shabdon ko kisi bhi kram men rakha ja sakta words +",5,1,neutral,neutral,positive +"Traditional Indian family values are observed with great honor. +","पारंपरिक भारतीय पारिवारिक मूल्यों को काफी आदर की दृष्टि से देखा जाता है। +","traditional indian family values ko great honor ki drishti se dekha jata hai. +",8,2,positive,neutral,positive +"Hanafi clan - its followers are in South Asia and Central Asia. +","हनफी पन्थ-इसके अनुयायी दक्षिण एशिया और मध्य एशिया में हैं। +","hanafi panth-iske followers south asia aur central asia men hain. +",9,2,neutral,neutral,neutral +"We are now adding a ""digital"" dimension to this connectivity. +","अब हम इन संबंधों में ‘डिजिटल’ पहलू भी जोड़ रहे हैं। +","ab ham in connectivity men digital dimension bhi jor rahe hain. +",8,3,neutral,negative,neutral +"Truth is the same to all nations, he had said, but each nation has its lies which it speaks of as its idealism. +","उन्होंने कहा भी था, सत्य सभी राष्ट्र् के लिए एक समान है, लेकिन हर राष्ट्र के पास अपने अपने झूठ भी होते हैं, जिसे वह अपने आदर्शवाद के तौर पर बघारते हैं। +","unhonne kaha bhi tha, truth sabhi nations ke lie ek saman hai, lekin har rashtr ke pas apne apne jhooth bhi hote hain, jise vah apne aadarshvad ke taur par bagharte hain. +",9,2,neutral,neutral,positive +"is I took all of the interviews +","कि मैंने उन सभी साक्षातकारों को लिया +","ki i un sabhi interviews ko liya +",8,1,neutral,neutral,neutral +"Could not open file:% s:% s +","फ़ाइल को खोल नहीं सकाः% s:% s +","file ko open nahin sakaa s: s +",8,0,negative,neutral,neutral +"Let 's say when x is equal to 2. +","X barabar do sochte hai. +","X equal x sochte hai +",6,4,neutral,neutral,neutral +"The Organisation has three Regional Headquarters i. e. Mumbai, Chennai, and Port Blair. +","इसके तीन क्षेत्रीय मुख्यालय, मुंबई, चेन्नई और पोर्ट ब्लेयर में हैं। +","iske tin regional organisation , mumbai , chennai aur port blair men hain. +",8,2,neutral,neutral,neutral +"When your gums and jawbone have healed , a crown -LRB- artificial tooth -RRB- is constructed , then screwed or cemented to the post . +","जब आपके मसूड़ों और जबड़े की हड्डी के घाव भर जाते हैं तो एक क्राउन ( नकली दाँत ) बनाकर , खंभे पर कस दिया जाता है या सीमेंट द्वारा चिपका दिया जाता है . +","jab aapke gums aur jabare ki haddi ke ghav bhar jate hain to ek crown jawbone tooth banakar , khnbhe par kas diya jata hai ya siment dvara chipka diya jata hai +",7,2,neutral,neutral,negative +"which obeys really strict rules. +","जो वास्तव में कड़े नियमों का अनुसरण करता है। +","jo obeys really strict niymon ka anusaran karta strict +",6,2,neutral,neutral,neutral +"The extant colophons indicate that the art of the parivadini a stringed lute called Vidya - parivadini was enunciated by a Gunasena, and the notations were got inscribed for the benefit of the votaries by a king who was a great Saiva or Paramamahesvara, and a disciple of Rudracharya. +","विद्यमान पुष्पिकाएं संकेत देती है कि परिवादिनी तंत्रीयुक्त वीणा की कला या विद्या परिवादिनी किसी गुणसेन द्वारा प्रतिपादित की गई थी और एक महान शैव या परममाहेश्वर नरेश और रूद्राचार्य के शिष्य द्वारा शौकीनों के लाभ के लिए उत्कीर्ण करवाई गई थी। +","extant colophons snket deti hai ki parivadini tntriyukt stringed lute called ya vidya parivadini kisi gunsen dvara prtipadit ki gee thi aur ek mahan shaiv ya parammaheshvar naresh aur roodrachary ke shishy dvara shaukinon ke labh ke lie utkirn karvaee gee thi. +",6,6,neutral,neutral,positive +"so they all sat around making friends with each other. +","इसलिए सभी एक साथ बैठे और दोस्त बने. +","islie sabhi ek sath other aur friends bane +",7,0,neutral,neutral,positive +"This Weather Underground, by some unlawful intent, sent a terror group to the USA to with an aim to attract attention of the world towards their needs.Some excerpts of the relations of these terror groups were mentioned in some media. +","इस मौसम अंडरग्राउंड (Weather Underground) जो है जबकि कोई हताहत कारण विभिन्न दुनिया राजनीतिक मुद्दों के लिए मीडिया का ध्यान लाने के लिए आतंकवादी वारदातों का प्रदर्शन एक उग्रवादी संगठन अमेरिका गया था.इस मुद्दे से कई संक्षिप्त दिए गए समाचार सेवाओं द्वारा आतंकवादी वारदातों के संबंध में ही उल्लेख है. +","is weather underground Weather Underground jo hai jabki koee hatahat karan vibhinn world rajnitik muddon ke lie aim ka attention lane ke lie terror groups ka pradarshan ek ugrvadi sngathan usa gaya thais mudde se kee snkshipt die intent samachar sevaon dvara terror groups ke relations men hi ullekh hai +",7,1,negative,negative,negative +"Thereafter, some disputes arose between the parties, who started living separately. +","इसके बाद, दलों के बीच कुछ विवाद उठे, जिन्होंने अलग रहना शुरू कर दिया. +","iske bad, parties ke bich kuchh vivad uthe, jinhonne started living separately kar diya +",5,4,neutral,neutral,positive +"We must learn international languages to communicate and widen our horizon. +","हमें अपने क्षितिज का विस्तार करने और व्यापार संचार के लिए अंतर्राष्ट्रीय भाषाएं पढनी ही चाहिए। +","hamen apne horizon ka vistar karne aur vyapar snchar ke lie international languages padhni hi chahie. +",10,0,neutral,neutral,neutral +"Save this, then create another: +","इस सहेजें, तो एक और बनाने के लिए: +","is save, to ek aur create ke lie: +",6,1,neutral,neutral,positive +"The ada bazzar of Indore is full of jewellery and cosmetics. +","इंदौर का अडा बाजार गहनों व सौंदर्य प्रसाधनों से भरा पडा है। +","indore ka ada bajar jewellery v saundary cosmetics se full ada hai. +",7,0,neutral,neutral,neutral +"Starting sequence number (deprecated) +","आरंभिक शृंखला संख्या (पदावनत) +","starting sequence number pdavanat +",5,6,neutral,neutral,positive +"Its programmes earned more than Rs 637 crore during the financial year 2000 - 2001 through commercial advertisements. +","दूरदर्शन ने वित्त वर्ष 2000-2001 के दौरान व्यापरिक विज्ञापनों से लगभग छह अरब 37 करोड़ रुपये अर्जित किए। +","dooradarshan ne financial more 2000-2001 ke dauran vyaprik advertisements se lagabhag chhah arab commercial crore rupye arjit programmes +",5,0,positive,neutral,neutral +"Democracy implies the existence of representative institutions, the expression of the will of the people as to who their representatives would be and the participation of the people in national tasks. +","लोकतंत्र में यह अंतर्निहत है कि प्रतिनिधित्वपूर्ण संस्थाएं काम करें और लोग स्वतंत्र रूप से राय दे सकें कि उनमें प्रतिनिधि कौन होंगे तथा राष्ट्रीय क्रियाकलापों में जनता की भागीदारी रहे। +","loktntr men yah antarnihat hai ki representative institutions kam karen aur log svtntr roop se ray de saken ki unmen prtinidhi kaun honge tatha rashtriy kriyaklapon men janta ki bhagidari rahe. +",5,6,neutral,neutral,neutral +"The ada bazzar of Indore is full of jewellery and cosmetics. +","इंदौर का अडा बाजार गहनों व सौंदर्य प्रसाधनों से भरा पडा है। +","indaur ka ada bajar gahnon v saundary prsadhnon se bhara pada hai. +",4,7,neutral,neutral,neutral +"1. Not formed by the decided number. +","1. निर्धारित संख्या मे गठन नहीं हुआ +","1 decided number me gathan nahin huaa +",8,4,neutral,neutral,positive +"How many tens of thousands of years does it go back? +","यह कितने दसियों हजारों साल पीछे जाती हैं ? +","yah tens of thousands sal pichhe jati hain +",6,1,neutral,neutral,neutral +"One of my predecessors left on my table a framed quotation which reads: +","मेरे एक पूर्ववर्ती ने मेरी मेज पर फ्रेम किया हुआ कथन छोड़ा जो इस प्रकार थाः +","mere ek predecessors ne meri table par phrem kiya huaa kathan chhora jo is prkar thaa +",9,2,neutral,neutral,neutral +"Your Login session is expired now. +","आपका लॉगिन सत्र अब समाप्त होने वाला है। +","aapka login session ab samapt hone vala hai. +",8,1,negative,neutral,neutral +"Plan your work and work your plan. +","अपने कार्य की योजना बनाएं तथा अपनी योजना पर कार्य करें. +","apne work ki plan banaen tatha apni plan par work karen +",9,1,positive,neutral,neutral +"We 'll do the microbiology of it in the future +","हम भविष्य में इस बात का सूक्ष्म जीव विज्ञान है, लेकिन यह +","ham future men is bat ka sookshm jiv vijnjan hai, lekin yah +",5,3,neutral,neutral,neutral +"by taking advantage of the fact that someone has given us the K, +","कि इस तथ्य का लाभ लेने के द्वारा किसी ने हमें K दिया है, +","ki is fact ka advantage lene ke dvara kisi ne hamen k diya hai , +",7,1,neutral,neutral,positive +"Joseph Henry helped to solve the first problem. +","जोज़ेफ हेनरी की मदद से पहली समस्या तो हल हो गयी। +","jozeph henri ki madad se pahli problem to hal ho gayi. +",9,1,neutral,neutral,negative +"God could not care whether you believe in him or not, if he is there. +","ईश्वर यदि है, तो वह यह चिंता नहीं करेगा कि तुम उसके अस्तित्व को स्वीकार करते हो या अस्वीकार। +","god yadi hai, to vah yah care nahin karega ki tum uske astitv ko svikar karte ho ya asvikar. +",10,0,neutral,neutral,negative +"The soup was found out to have very high nutritive value. +","सूप मे बहुत अधिक पोषक मूल्य पाए जाते है। +","soup me bahut high nutritive value pae jate hai. +",10,0,negative,neutral,positive +"For a country of this small size, the geographical variations are astonishing. +","एक छोटे से क्षेत्र के लिए नेपाल की भौगोलिक विविधता बहुत उल्लेखनीय है। +","ek chhote se kshetr ke lie nepal ki geographical variations bahut ullekhniy astonishing +",8,3,neutral,neutral,neutral +"Few, if any of us, can use this highest reason with any purity, but the attempt to do it is the topmost capacity of the inner instrument, the antahkarana. +","यदि हममें से कोई इस उच्चतम बुद्धि का प्रयोग किसी शुद्ध रूप में कर भी पाते हैं तो वे विरले ही होते हैं, किन्तु इसके लिये प्रयत्न करना अन्तःकरण की सबसे ऊंची क्षमता है। +","yadi hammen se koee is highest reason ka pryog kisi purity roop men kar bhi pate hain to ve few hi hote hain , kintu iske liye attempt karna inner ki sabse topmost capacity hai. +",8,0,neutral,neutral,neutral +"And if - - just like when x was equal to 0, this term equaled +","और अगर बस जब एक्स इस अवधि equaled 0 के बराबर था की तरह- +","aur equal bas jab x is term equaled 0 ke barabar tha ki tarah- +",7,2,neutral,neutral,positive +"It was published as a posthumous work after his death by his son Narayan Chandra Vidyaratna in 1892. +","यह निबन्ध उनकी मृत्युपरान्त उनके पुत्र नारायणचन्द्र विद्यारत्न ने 1892 में प्रकाशित कराया। +","yah nibandh unki mrityuprant unke son narayanachandr chandra ne death men prkashit karaya. +",7,2,neutral,neutral,negative +"Putting on a stiff expression, he went on. +","चेहरे पर कड़ी-सी भाव-मुद्रा लाकर उसने आगे कहा, +","expression par kari-si bhav-mudra lakar usne stiff kaha , +",7,0,neutral,neutral,neutral +"May we Work Together with Vigour and Energy +","हम मिलकर उत्साह और ऊर्जा के साथ कार्य करें +","ham milakar vigour and energy ke sath kary karen +",8,1,positive,neutral,positive +"Root node of '% s' must be < evoldap >, not <% s > '% s' +","का रूट नोड जरूर होनी चाहिये, न कि <% s> +","ka root node evoldap jaroor honi chahiye, n ki s +",9,2,neutral,neutral,neutral +"Don 't ever see the face of that big whore! +","अब उस रांड का मुंह मत देखना। +","ab us rand ka face mat dekhna. +",8,1,negative,neutral,negative +"The British press, condemning this demonstra - tion in strong words, stated that, by allowing Phadke to talk freely at every station, it looked as if he was an honour - able state guest instead of a convict going to Kalapani - LRB - Andamans - RRB -. +","अंग्रेजों के अखबार ने भी इस प्रदर्शन की कटु आलोचना करते हुए लिखा-सभी स्टेशनों पर रेल के डिब्बों से बाहर की ओर मुंह निकालकर उसे लोगों से बातचीत करने की इस प्रकार छूट दी गयी, जैसे कि वह काला पानी जाने वाला कैदी न होकर सरकार का कोई सम्मानित अतिथि है. +","angrejon ke akhbar ne bhi is pradarshan ki katu aalochna karte hue likha-sbhi steshnon par rel ke dibbon se bahar ki or munh nikalakar use logon se batchit karne ki is prkar chhoot di gayi, jaise ki vah kala pani jane vala kaidi n hokar sarkar ka koee sammanit atithi hai +",9,0,neutral,negative,positive +"where the entire revenue of the Afghan state +","जहां अफगान राज्य का पूरा राजस्व +","jahan afghan state ka poora revenue +",9,2,neutral,neutral,neutral +"and the guilty shall behold the Fire and know that they are bound to fall into it, and will find no escape from it. +","और गुनेहगार लोग (देखकर समझ जाएँगें कि ये इसमें सोके जाएँगे और उससे गरीज़ (बचने की) की राह न पाएँगें +","aur guilty shall behold samajh jaengen ki ye ismen soke jaenge aur find no escape ki ki rah n paengen +",2,1,negative,negative,negative +"It will be easier if the boxes are fitted with bolts. +","बक्सों को बंद करने के लिए उनमें कब्जे और कुंडे हों तो सुविधा रहती है। +","boxes ko bolts karne ke lie unmen kabje aur kunde hon to suvidha rahti hai. +",7,1,neutral,neutral,positive +"In 1882 , Lord Ripon established local self-government in India with the setting up of district local boards . +","1882 में लार्ड रिपन ने जिला स्थानीय बोर्डों के गठन के साथ भारत में स्थानीय स्वशासन की स्थापना की . +","1882 men lard ripan ne district local boards ke gathan ke sath bharat men sthaniy svshasan ki sthapna ki +",7,1,neutral,neutral,neutral +"This is a case of congenital megalogastria. +","यह जन्मजात उदरविस्फार की स्थिती है. +","yah congenital udarvisphar ki case hai +",8,1,negative,neutral,neutral +"It hissed again, fiercely. +","वह बड़े गुस्से से फिर फुसकारा। +","vah bare gusse se phir phuskara. +",9,1,negative,neutral,neutral +"(1) The validity of any proceedings in Parliament shall not be called in question on the ground of any alleged irregularity of procedure. +","(1) संसद की किसी कार्यवाही की विधिमान्यता को प्रक्रिया की किसी अभिकथित अनियमितता के आधार पर प्रश्नगत नहीं किया जाएगा। +","1 parliament ki kisi karyvahi ki proceedings in parliament ki kisi alleged irregularity ke aadhar par prashnagat nahin kiya jaega. +",8,2,neutral,negative,neutral +"so they all sat around making friends with each other. +","इसलिए सभी एक साथ बैठे और दोस्त बने. +","islie sabhi ek sath sat aur friends bane +",6,1,neutral,neutral,positive +"This treatment is only possible in proved cases of allergic asthma. +","यह उपचार केवल एलर्जी जनित दमा के निश्चित मामलों में ही कारगर है। +","yah upchar keval elarji janit dama ke nishchit mamlon men hi karagar hai. +",9,1,neutral,neutral,negative +"The beaters ran away after injuring the man. +","पीटने वाले आदमी को घायल करके भाग गए। +","pitne vale injuring the man karke bhag ge. +",7,0,negative,neutral,neutral +"Subhashbabu was in jail in year 1930. +","1930 में सुभाषबाबू कारावास में थे। +","1930 men subhashbabu jail men the. +",10,0,neutral,neutral,neutral +"Ans : Twenty-eight (28),11.71% +","उत्तरः अट्ठाईस (28), 11.71% +","ans atthaees 28 , 1171 +",7,2,neutral,neutral,neutral +"An invoice that has been approved by a seal or stamp by the consul of the importer 's country that has an office in the exporter' s country. +","ऐसा बीजक जिसका अनुमोदन आयातक देश के वाणिज्य दूतावास द्वारा जिसका कार्यालय निर्यातक देश में हों, द्वारा मुहर लगाकर कर दिया गया हो। +","aesa invoice jiska anumodan importer country ke vanijy dootavas dvara jiska office exporter country men hon , dvara seal lagakar kar diya gaya ho. +",8,3,neutral,neutral,positive +"So We took retribution from them, and We drowned them in the sea because they denied Our signs and were heedless of them. +","तब आख़िर हमने उनसे (उनकी शरारत का) बदला लिया तो चूंकि वह लोग हमारी आयतों को झुटलाते थे और उनसे ग़ाफिल रहते थे हमने उन्हें दरिया में डुबो दिया +","tab aair hamne unse unki shararat ka badla liya to choonki vah denied our signs ko jhutlate the aur unse aphil rahte the hamne unhen dariya men dubo diya +",6,0,negative,negative,negative +"but believe me, we all share one incredibly powerful thing - +","परंतु विश्वास मानिए, हम सभी में एक अविश्वसनीय शक्तिशाली बात है - +","parntu vishvas manie, ham sabhi men ek incredibly powerful thing hai - +",8,0,positive,positive,positive +"This is an incorrect suggestion to solve this problem. +","यह इस समस्या को सुलझाने का गलत सुझाव है। +","yah is samasya ko suljhane ka solve this problem +",4,3,negative,negative,negative +"An Iranian government - sponsored radio station gleefully predicts that its brand of militant Islam within the United States will “provoke a dangerous and crucial confrontation” with the American authorities. +","ईरानी सरकार द्वारा प्रायोजित एक रेडियो स्टेशन ने अत्यंत प्रसन्नतापूर्वक भविष्यवाणी की कि उसके प्रकार का उग्रवादी इस्लाम अमेरिका में अमेरिकी अधिकारियों के साथ महत्वपूर्ण और खतरनाक संघर्ष को प्रोत्साहित कर देगा। +","iranian government dvara prayojit ek rediyo steshan ne atynt prasanntapoorvak bhavishyvani ki ki uske prkar ka ugrvadi islam amerika men ameriki adhikariyon ke sath mahatvpoorn aur khatarnak sngharsh ko protsahit kar dega. +",4,4,negative,negative,negative +"This helps us to determine the lower time - limit of the period of their compilation. +","इसमें हमें उनके संकलन की निम्नतम समय-सीमा निर्धारित करने में सहायता मिलती है. +","ismen hamen unke snkalan ki lower time nirdharit karne men sahayta milti hai +",8,1,neutral,neutral,positive +"For example, unwanted pregnancies especially amongst the under 16s always have serious personal and social consequences for both the mothers and their children. +","उदाहरणार्थ अनचाहा गर्भ, विशेषकर १६ वर्ष से कम की अवस्था में, माता एवं बच्चे दोनों के लिये अनेक वैयक्तिक एवं सामाजिक समस्याओं को जन्म देता हैं। +","example unwanted serious , visheshakar १६ varsh se kam ki avastha men , mata evn children donon ke liye anek personal evn social samasyaon ko janm deta hain. +",4,3,negative,negative,negative +"that you will be granted whatever you choose? +","कि जो चीज़ पसन्द करोगे तुम को वहाँ ज़रूर मिलेगी +","ki jo chiz pasand karoge tum ko vahan zaroor choose +",8,1,neutral,neutral,positive +"Central Excise, Customs and Service Tax, Patna +","केन्द्रीय उत्पाद शुल्क, सीमा शुल्क और सेवा कर, पटना +","central utpad excise , sima excise aur service kar , patna +",8,0,neutral,neutral,neutral +"The kingdom of Magadha was powerful, so Vishnugupta decided to go to Pataliputra and persuade the Nanda king Dhanananda to attack the Greeks and drive them out of India. +","चूंकि मगध शक्तिशाली राज्य था इसलिए विष्णुगुप्त ने पाटलिपुत्र जाकर नन्द राजा घनानन्द को इस बात के लिए राजी कराने का निश्चय किया कि वह यूनानियों पर आक्रमण करें और उन्हें भारत से मार भगाएं। +","choonki magadh shaktishali rajy tha islie vishnugupt ne patliputr jakar nand raja ghananand ko is bat ke lie raji karane ka nishchay kiya ki vah yoonaniyon par aakraman karen aur unhen bharat se mar bhagaen. +",8,1,neutral,neutral,negative +"When after executing an order of the buyer the amount that remains at his credit. +","क्रेता के खरीद आदेश को सम्पन्न करने के बाद उसके खाते में जो राशि शेष जमा दिख रही है। +","buyer ke kharid order ko sampann karne ke bad uske khate men jo amount shesh credit dikh rahi hai. +",7,2,neutral,neutral,positive +"I had my own doubts of the success of the programme in Bihar. +","मुझे भी इस कार्यक्रम की सफलता में काफी संदेह था। +","mujhe bhi is karyakram ki saphalta men kaphi sndeh tha. +",8,4,negative,positive,positive +"And they will offer (their full) submission to Allah (Alone) on that Day, and their invented false deities [all that they used to invoke besides Allah, e. g. idols, saints, priests, monks, angels, jinns, Jibrael (Gabriel), Messengers, etc.] will vanish from them. +","उस दिन वे अल्लाह के आगे आज्ञाकारी एवं वशीभूत होकर आ पड़ेगे। और जो कुछ वे घड़ा करते थे वह सब उनसे खोकर रह जाएगा +","us day ve allah ke jibrael full evn vashibhoot hokar deities jinns aur jo kuchh ve invented karte the vah sab unse khokar saints jaega +",2,3,negative,neutral,negative +"The Type of Service (TOS) byte on outgoing RTP IP packets. This byte is used by the network to provide some level of Quality of Service (QoS). Default value 184 (0xB8) corresponds to Expedited Forwarding (EF) PHB as defined in RFC 3246. +","आउटगोइंड RTP IP पैकेट पर सेवा प्रकार (TOS). इस बाइट को संजाल के द्वारा समान स्तर की सेवा गुणवत्ता (QoS) देने के लिए प्रयोग की जाती है. तयशुदा मान 184 (0xB8) एक्सपेडीडेट फॉर्रवार्डिंग (EF) PHB के तदनुरूप है जैसा कि RFC 3246 में परिभाषित है. +","aautgoind RTP IP paiket par seva type TOS is bait ko snjal ke dvara saman star ki seva gunavatta QoS dene ke lie pryog ki jati hai tayshuda man 184 0xB8 ekspedidet phrrvarding EF PHB ke tadnuroop hai jaisa ki RFC 3246 men paribhashit hai +",4,7,neutral,neutral,positive +"Choose the version of the Kolab Server you are using. +","कोलाब संस्करण जो आप इस्तेमाल कर रहे हैं उसे चुनें. +","kolab version jo aap istemal kar rahe hain use choose +",7,1,neutral,neutral,neutral +"The most famous ballad is about 'Desingu Rajan', of Gingee in South Arcot district, who built two fortresses and died in the 17th century, fighting against a Muslim prince. +","इस राजा ने दो सुदृढ़ गढ़ बनवाये थे और सत्रहवीं शताब्दी में मुसलमानों के विरूद्ध लड़ते हुए वह मारा गया था। +","is raja ne do sudri ga banvaye the aur satrahvin shatabdi men musalmanon ke virooddh larte hue vah mara gaya tha. +",7,1,neutral,neutral,negative +"Whether accelerated compositing should be enabled +","क्या त्वरित कंपोजिटिंग सक्रिय की जानी चाहिए +","kya accelerated compositing sakriy ki jani chahie +",7,3,neutral,neutral,neutral +"Similar to what we have in Buriair Sadhu and Kakadeuta aru Natilora, there is also in it a genuine desire on the part of the author to quit the artificial and the rococo and to be simple, natural and spontaneous. +","‘बुडि आइर साधु’ और ‘कका-देउता आरू नातिलोरा’ की भॉँति इस कृति में भी लेखक कृत्रिमता को त्यागने का प्रयत्न करके सरल, सहज और अन्तःस्फूर्त्त पर बल देता दिखाई पड़ता है। +","budi aair sadhu aur kka-deuta aaroo natilora ki bhnti is kriti men bhi lekhak kritrimta ko tyagne ka prayatn karke saral, natural and spontaneous par bal deta dikhaee parta hai. +",5,3,neutral,neutral,positive +"The first level, the weakest level of civil response against violence, +","सबसे पहला हिंसा के खिलाफ प्रतिक्रिया का सबसे कमजोर रूप, +","sabse pahla response against violence response ka sabse weakest roop, +",7,0,negative,neutral,negative +"A manual switch on the control panel by means of which a bit may be entered in a processor register. +","कंट्रोल पैनल में मैनुअल स्विच, जिसके द्वारा एक बिट प्रोसेसर रजिस्टर में प्रविष्ट कर सकता है. +","control panel men manual switch, jiske dvara ek bit processor register men prvisht kar sakta hai +",8,3,neutral,neutral,neutral +"Failed to copy a task into the task list '{0}' +","किसी कार्य सूची को इस कार्य में पाने में असमर्थ. +","kisi task list ko is task men pane men asamarth +",8,1,negative,neutral,negative +"federal metropolis washington is situated in the eastern columbia district, in the middle of maryland and virginia. +","संघीय राजधानी वाशिंगटन देश के पूर्वी भाग में कोलंबिया ज़िले में स्थित है मेरिलैंड और वर्जिनिया के मध्य। +","federal metropolis vashingatan desh ke poorvi bhag men kolnbiya zile men sthit hai merilaind aur varjiniya ke madhy. +",7,6,neutral,negative,neutral +"The set that includes all of the elements of concern in a given study. +","प्रदत्त अध्ययन में सभी विषयगत अवयवों को धारण किया हुआ समुच्चय. +","pradatt study men sabhi vishayagat elements ko concern kiya huaa set +",6,1,neutral,neutral,neutral +"The square root of 4, what times itself or what positive +","4 का वर्गमूल, कौन सी संख्या या कौन सी घनात्मक संख्या +","4 ka square, kaun si snkhya ya kaun si positive snkhya +",5,3,neutral,neutral,positive +"The balance sheet reflects the historical strength of an organization, and has long been thought of as a ""snapshot"" of an entity 's financial position. +","तुलन पत्र किसी संगठन की ऐतिहासिक शक्ति को व्यक्त करता है जो लंबे समय से ""आशुचित्र"" के रूप में वित्तीय स्थिति का परिचायक होता है। +","balance patr kisi strength ki historical shakti ko vyakt karta hai jo lnbe samay se snapshot ke roop men financial position ka parichayak hota hai. +",9,2,neutral,neutral,positive +"Don't understand type ‘%s' +","प्रकार समझ नही पाया '%s' +","s samajh nahi paya s +",4,6,negative,neutral,neutral +"And now we want the mean of these two number, which is 108 / 2 or 54. +","और अब हम इन दो संख्या है, जो 108/2 या 54 का मतलब चाहते हैं। +","aur ab ham in do snkhya hai, jo 1082 ya 54 ka matalab chahte number +",6,4,neutral,neutral,positive +"It is also a matter of satisfaction that graduates of the centre have been recognised and valued. +","यह भी संतोष का विषय है कि इस सेंटर के स्नातकों को मान्यता और महत्व प्राप्त है। +","yah bhi satisfaction ka matter hai ki is centre ke snatkon ko manyta aur mahatv prapt hai. +",8,0,positive,positive,positive +"and he had recited it to them, they would not have believed in it. +","और वह उन अरबो के सामने उसको पढ़ता तो भी ये लोग उस पर ईमान लाने वाले न थे +","aur vah un arbo ke samne usko pata to bhi ye log us par eeman lane vale n the +",3,5,negative,positive,neutral +"The reward of goodness shall be nothing but goodness. +","अच्छाई का बदला अच्छाई के सिवा और क्या हो सकता है? +","reward of goodness goodness ke siva aur kya ho sakta hai +",8,2,positive,neutral,neutral +"Now I do call to witness the Lord of all points in the East and the West that We can certainly - +","अतः कुछ नहीं, मैं क़सम खाता हूँ पूर्वों और पश्चिमों के रब की, हमे इसकी सामर्थ्य प्राप्त है +","lord kuchh nahin , main sam khata hoon points aur west ke rab ki , hame iski samarthy prapt hai +",6,1,positive,neutral,positive +"And certainly We gave Musa the Book that they may follow a right direction. +","और हमने मूसा को किताब प्रदान की, ताकि वे लोग मार्ग पा सकें +","aur hamne moosa ko kitab prdan ki, taki ve log marg pa follow +",6,4,positive,neutral,positive +"Then, when He will, He bringeth him again to life. +","फिर जब चाहेगा उसे (जीवित करके) उठा खड़ा करेगा।- +","phir jab bringeth use jivit karke utha khara life +",6,1,positive,neutral,neutral +"An amount of notes and cashes that the cashier maintain in his cash - box for operations. +","नोटों या सिक्कों की ऐसी राशि जो खजांची दैनिक कार्य व्यवहार के लिए अपने नकदी बॉक्स में रखता हो। +","noton ya sikkon ki aesi rashi jo khajanchi dainik kary vyavhar ke lie apne nakdi bks men rakhta ho. +",7,4,neutral,neutral,neutral +"II. Muslims Rejected Or will the door be shut in their face? American columnist Ralph Peters dismisses the first scenario: “Far from enjoying the prospect of taking over Europe by having babies, Europe's Muslims are living on borrowed time. … predictions of a Muslim takeover of Europe … ignore history and Europe's ineradicable viciousness.” Instead, depicting Europe as the place “that perfected genocide and ethnic cleansing,” he predicts its Muslims “will be lucky just to be deported,” and not killed. Claire Berlinski , in Menace in Europe: Why the Continent's Crisis Is America's, Too , implicitly agrees, pointing to the “ancient conflicts and patterns … now shambling out of the mists of European history ” which could well trigger violence. +","संक्षेप में पहला तर्क दर्शाता है कि मुसलमानों की सक्रियता और यूरोप की निष्क्रियता के कारण यूरोप का इस्लामीकरण होगा और अपने धिम्मी स्तर के साथ वह इस्लाम में धर्मान्तरित हो जायेगा। उच्च और निम्न धार्मिकता, उच्च और निम्न जन्म दर तथा उच्च और निम्न सास्कृतिक आत्मविश्वास के कारण यह सम्भव होगा। यूरोप एक खुला द्वार है जिसमें मुसलमान टहल रहे हैं। +","snkshep men pahla tark darshata hai ki musalmanon ki sakriyta aur yoorop ki nishkriyta ke karan yoorop ka islamikaran hoga aur apne dhimmi star ke sath vah islam men dharmantrit ho jayega. uchch aur nimn dharmikta, uchch aur nimn janm dar tatha uchch aur nimn saskritik aatmvishvas ke karan yah sambhav hoga. yoorop ek khula dvar hai jismen musalman tahal rahe hain. +",6,2,negative,negative,negative +"There were errors trying to start the X server. +","एक्स सर्वर प्रारंभ करने की कोशिश में त्रुटियाँ हुईं. +","x server prarnbh karne ki koshish men errors hueen +",9,2,negative,negative,negative +"Gandhiji claimed the defeat of Sitarmayya as his own defeat and told his colleagues that if they are not satisfied by Subhashbabu's methods, they can leave the Congress. +","गाँधीजी ने पट्टाभी सितारमैय्या की हार को अपनी हार बताकर अपने साथीयों से कह दिया कि अगर वें सुभाषबाबू के तरिकों से सहमत नहीं हैं तो वें कांग्रेस से हट सकतें हैं। +","gandhiji ne pattabhi sitarmayya ki defeat ko apni defeat own apne colleagues se kah diya ki agar congress subhashbabu ke methods se sahamat nahin hain to congress kangres se hat sakten hain. +",6,3,negative,negative,negative +"Ram went to bring the Golden deer (which was actually Maarich) and ordered Lakshman to take care of Sita. +","लक्ष्मण को सीता के रक्षा की आज्ञा दे कर राम स्वर्णमृग रूपी मारीच को मारने के लिये उसके पीछे चले गये। +","lakshman ko sita ke care ki aajnja de kar ram golden roopi marich ko marne ke liye uske pichhe chale gaye. +",7,1,neutral,neutral,positive +"Remember, when your Lord said to the angels: ""I have to place a trustee on the earth,"" they said: ""Will You place one there who would create disorder and shed blood, while we intone Your litanies and sanctify Your name?"" And God said: ""I know what you do not know."" +","और याद करो जब तुम्हारे रब ने फरिश्तों से कहा कि ""मैं धरती में (मनुष्य को) खलीफ़ा (सत्ताधारी) बनानेवाला हूँ।"" उन्होंने कहा, ""क्या उसमें उसको रखेगा, जो उसमें बिगाड़ पैदा करे और रक्तपात करे और हम तेरा गुणगान करते और तुझे पवित्र कहते हैं?"" उसने कहा, ""मैं जानता हूँ जो तुम नहीं जानते।"" +","aur yad disorder jab tumhare trustee ne pharishton se kaha ki lord earth men blood ko khalifa sattadhari bananevala hoon. unhonne kaha , kya usmen usko rakhega , jo usmen bigar paida remember aur raktpat remember aur ham tera gungan karte aur tujhe pavitr kahte hain usne kaha , lord janta hoon jo tum nahin jante. +",6,0,neutral,neutral,positive +"The certificate “$1%{CERTIFICATENAME}” represents a Certification Authority. +","प्रमाणपत्र “%{CERTIFICATENAME}” एक प्रमाणन प्राधिकरण का प्रतिनिधित्व करता है. +","prmanapatr CERTIFICATENAME ek certification authority ka represents karta hai +",8,2,neutral,neutral,positive +"For God is sufficient as witness between us and you we were not aware of your worship. "" +","""हमारे और तुम्हारे बीच अल्लाह ही एक गवाह काफ़ी है। हमें तो तुम्हारी बन्दगी की ख़बर तक न थी।"" +","hmare aur tumhare bich allah hi ek sufficient as witness hamen to tumhari bandgi ki bar tak n thi. +",6,1,positive,negative,positive +"But the fact is half the colliery is reeling under his debt. +","सच पूछो तो आधी कोलियरी उसकी कर्जदार है। +","fact poochho to aadhi colliery uski karjdar hai. +",4,4,negative,neutral,negative +"A former Mujahideen commander , Haq 's ties with the CIA went back to the Soviet-Afghan war of the 1980s . +","क 80 के दशक के सोवियत-अफगान युद्ध के समय से ही सीआइए से जुड़ै थे . +","k 80 ke dashak ke ties yuddh ke samay se hi siaaie se jurai the +",4,4,neutral,neutral,negative +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","fact men aperture time aesi exposure ko diya gaya vigopan time hai jo kisi optical system aperture ke madhyam se image plane men kisi kendrbindu par aati focus +",6,1,neutral,neutral,neutral +"It has a green cover of 41 percent and rich mineral deposits of iron ore, aluminium, bauxite, tin and coal. +","इसके 41 प्रतिशत भूभाग जंगलों से आच्छादित हैं तथा यहां लौह अयस्क, एल्यूमिनियम, बॉक्साइट, टिन तथा कोयले जैसे खनिजों की बहुतायत है। +","iske 41 cover bhoobhag jnglon se aachchhadit hain tatha yahan iron deposits , green , bauxite , tin tatha koyle jaise khanijon ki bahutayat hai. +",8,1,neutral,neutral,positive +"Are you sure you want to permanently delete these files? +","क्या आप इन फ़ाइलों को स्थायी रूप से हटाना चाहते हैं? +","kya aap in files ko sthayi roop se permanently delete hain +",6,4,neutral,neutral,positive +"Three public meetings were held in Bombay City to observe this day. +","उस अवसर पर बंबई में तीन सभाएं की गयीं। +","us avasar par bombay meetings were held ki gayin. +",7,1,neutral,neutral,neutral +"Nominee of the insurance has to be a near relative of the subscriber. +","बीमा का नामित व्यक्ति अभिदाता का निकट संबंधी होगा। +","insurance ka namit vyakti abhidata ka nikat snbndhi hoga. +",9,2,neutral,neutral,neutral +"Thus there was an inadequate appreciation of the necessity for speedy action in a vital sector. +","इस प्रकार इस महत्वपूर्ण क्षेत्र में तेजी से काम करने की आवश्यकता पर कोई ध्यान नहीं दिया गया. +","is prkar is vital sector inadequate appreciation se kam karne ki aavashyakta par koee dhyan nahin diya gaya +",9,0,negative,negative,positive +"The Arabs laughed at him , and the alchemist laughed along . +","अरब सैनिक उसकी बात सुनकर हंस पड़े । उनके साथ कीमियागर भी हंसने लगा । +","arab sainik uski bat sunakar hns pare arabs s unke sath alchemist bhi hnsne laga arabs +",8,1,neutral,neutral,positive +"It is free, and borrowing books is free. +","यह सेवा निःशुल्क (मुफ़्त) है और (पढ़ कर लौटा दी जाने वाली) किताबें मुफ़्त में मिलेंगी. +","yah seva niashulk muft hai aur pa kar lauta di jane vali books is free milengi +",8,0,positive,positive,positive +"Say: 'I warn you only by the Revelation' But the deaf hear nothing when they are warned. +","(ऐ रसूल) तुम कह दो कि मैं तो बस तुम लोगों को '' वही '' के मुताबिक़ (अज़ाब से) डराता हूँ (मगर तुम लोग गोया बहरे हो) और बहरों को जब डराया जाता है तो वह पुकारने ही को नहीं सुनते (डरें क्या ख़ाक) +","ae rasool tum kah do ki main to bas tum logon ko vahi ke mutabi azab se darata hoon magar tum log goya bahre ho aur bahron ko jab daraya jata hai to vah pukarne hi ko nahin sunte dren kya ak +",5,5,neutral,neutral,negative +"This is composed of seven small islands that have been formed by volcanic eruptions and is connected to the mainland via a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska gathan lava nirmit sat chhote-chhote small dvara huaa hai evn yah bridge dvara prmukh bhoo-khnd ke sath jura huaa hai. +",7,3,neutral,neutral,neutral +"With the result , our rivers which we consider holy are no longer so but are laden with pollutants , making them unsuitable for providing water for drinking and other purposes . +","इसके परिणामस्वरूप जिन नदियों को हम पूजनीय मानते थे , अब वे वैसी नहीं रही हैं बल्कि प्रदूषकों से भर गयी हैं जिसकी वजह से उनका पानी पीने तथा अन्य दूसरे कार्यों के लिए उपयुक्त नहीं रह गया है . +","iske parinamasvroop jin nadiyon ko ham poojniy mante the , ab ve vaisi nahin rahi hain balki prdooshkon se bhar gayi hain jiski vajah se unka pani pine tatha any doosre karyon ke lie upyukt nahin rah gaya hai +",9,2,negative,neutral,negative +"E language technology in the private - public partnerships to promote +","ङ. भाषा प्रौद्योगिकी में निजी-सार्वजनिक भागीदारी को बढ़ावा देना +","ng language technology men niji-sarvajnik partnerships ko baava dena +",6,1,neutral,neutral,positive +"And I want you to think about why that happens. +","और मैं चाहता हूँ की आप इसके बारे मे सोचे की वैसा क्यूँ होता है +","aur i chahta hoon ki aap iske bare me soche ki vaisa kyoon hota hai +",6,3,neutral,neutral,positive +"'After this clear explanation, I never referred to the subject again. +","” इतनी स्पष्ट बातचीत होनेके बाद दुबारा मैंने यह विषय डोकके सामने कभी नहीं छेड़ा। +","itni spasht batchit honeke bad dubara mainne yah vishay dokke samne kabhi nahin chhera. +",9,2,neutral,neutral,positive +"Madhya Pradesh occupies perhaps the oldest part of the subcontinent – called the Gondwana - the home of the Gonds. +","मध्य प्रदेश संभवतया उप महाद्वीप का संभतया सबसे पुराना स्थान है जिसे गोंडवाना कहते हैं अर्थात गोंड समुदाय का घर। +","pradesh occupies snbhavatya up mahadvip ka snbhatya sabse oldest part hai jise gondvana kahte hain arthat gond samuday ka ghar. +",7,0,neutral,neutral,neutral +"From here the trekkers enter the deep valley and have to cross many small rivulets and huge rocks. +","यहां से ट्रैकर्स गहरी घाटी में प्रवेश करते हैं और उन्हें मार्ग में कई छोटे-छोटे नाले और बड़े-बड़े पत्थर पार करने पड़ते हैं। +","yahan se trekkers deep valley men prvesh karte hain aur unhen marg men kee chhote-chhote rivulets aur bare-bare rocks par karne parte small +",7,0,neutral,neutral,positive +"Action is the foundational key to all success. +","कर्म सफलता का मूल है. +","action success ka key hai +",5,6,positive,neutral,positive +"I do not wish to take any hasty step, nor would you wish to take it. +","मैं जल्दबाजी में कोई कदम नहीं उठाना चाहता, न आप जल्दबाजी में कोई कदम उठाना चाहेंगे। +","main hasty step koee kadam nahin uthana chahta, n aap hasty step koee kadam uthana chahenge. +",5,1,neutral,neutral,negative +"and preached to them in public, and also addressed them in secret. +","""फिर मैंने उनसे खुले तौर पर भी बातें की और उनसे चुपके-चुपके भी बातें की +","phir mainne unse khule taur par bhi secret ki aur unse chupke-chupke bhi secret ki +",5,1,neutral,neutral,neutral +"to pull money out of the air, +","पैसे हवा से बाहर खींचने के लिए, +","money air se bahar khinchne ke lie , +",9,2,neutral,neutral,neutral +"As regards Central laws on matters relating to the Concurrent List, such as welfare measures, procedural laws, etc., the Constitution itself provides for the State Legislature to modify or repeal such Central laws after obtaining the President 's assent. +","जहां तक समवर्ती सूची वाले केन्द्रीय कानूनों का सम्बंध है, जैसे कल्याण कार्यों तथा कार्यविधि सम्बंधी कानून आदि, स्वयं संविधान में यह प्रावधान है कि राज्य विधान मंडल राष्ट्रपति की स्वीकृति लेकर ऐसे कानूनों में परिवर्तन कर सकते है या उन्हें निरस्त कर सकते है। +","jahan tak samavarti soochi vale kendriy kanoonon ka sambndh hai, jaise kalyan karyon tatha karyvidhi sambndhi kanoon aadi, svyn snvidhan men yah pravdhan hai ki rajy vidhan mndal rashtrapti ki svikriti lekar aese modify or repeal kar sakte hai ya unhen nirast kar sakte hai. +",4,7,neutral,neutral,neutral +"I am learning for you. +","मैं आपके लिये ज्ञान/विद्या अर्जित कर रहा हूँ। +","main aapke liye jnjanvidya arjit kar raha hoon. +",8,2,positive,neutral,neutral +"Externally, the quadrangular open court is surrounded by a prakara with a cloister, or malika, locally called nalambalam or chuttambalam. +","बाह्य रूप से चतुर्भुज खुला प्रांगण एक प्राकार से घिरा होता है जिसमें एक विहार, या मालिका होती है जिसे स्थानीय रूप से नलांबलम या चुट्टांबलम कहा जाता हैं. +","bahy roop se quadrangular open prangan ek prakara se ghira hota hai jismen ek cloister , ya malika hoti hai jise sthaniy roop se nalambalam ya chuttambalam kaha jata hain +",9,2,neutral,negative,neutral +"Can be development very quickly of articles of short timed subjects in Wikipedia as articles of Mumbai blasts were present after few minutes of its happening along with reference links in English Wikipedia. +","विकिपिडीया मे काफी तेज़ी से समसामयिक विषयों के बारे में लेखो का विकास हो सकता है जैसे कि मुंबई विस्फोटों के खबर का ज़ाहिर होने के चंद मिनटों में ही उसके बारे में अंग्रेजी विकिपीडिया में प्रासंगिक कड़ियों के साथ लेख मौजूद था। +","vikipidiya me kaphi tezi se samsamyik vishyon ke bare men lekho ka vikas ho sakta hai jaise ki munbee visphoton ke khabar ka zahir hone ke chnd minton men hi uske bare men angreji vikipidiya men prasngik kariyon ke sath lekh maujood tha. +",7,3,neutral,neutral,neutral +"The almost insoluble dilemma is that they benefit not only the ordinary citizen who occasionally finds himself in the coils of the law but the professional criminal who by long experience has learned to take advantage of all its defences. +","एक लगभग उपचारहीन दुविधा यह है कि इनका लाभ केवल उन साधारण नागरिकों को ही नहीं मिलता जो यदाकदा विधि के शिकंजे में फंस जाते हैं बल्कि उन पेशेवर अपराधियों को भी मिलता है जिन्होंने दीर्घ अनुभव से सभी प्रतिरक्षाओं का लाभ उठाने का गुर सीख लिया +","ek lagabhag insoluble dilemma yah hai ki inka advantage keval un ordinary nagrikon ko hi nahin milta jo yadakda law ke shiknje men phns jate hain balki un professional criminal ko bhi milta hai jinhonne long experience se sabhi defences ka advantage uthane ka gur sikh liya +",8,4,neutral,negative,negative +"Failed to remove a persona from store:% s +","भंडार से एक व्यक्तित्व को हटाने में विफलः% s +","store se ek persona ko failed to remove s +",5,4,negative,neutral,negative +"Dak Babu was absorbed in his work. +","डाक बाबू अपने काम में व्यस्त थे। +","dak babu apne work men vyast the. +",9,0,neutral,neutral,neutral +"Much of the work done by Bose were on loose sheets of paper which he never bothered to preserve. +","बोस द्वारा किये गये अधिकतर कार्य बिखरे हुए कागज के पन्नों पर थे जिन्हें सुरक्षित रखने का उन्होंने कभी कष्ट नहीं उठाया। +","bose dvara kiye gaye adhikatar work bikhre hue paper ke loose par the jinhen surakshit rakhne ka unhonne kabhi kasht nahin uthaya. +",9,2,negative,neutral,negative +"in 1998 while in school haris sheild match his co-partner vinod kamble and sachin made 664 runs together +","1988 मे स्कूल के एक हॅरिस शील्ड मॅच के दौरान साथी बल्लेबाज विनोद कांबली के साथ सचिन ने ऐतिहासिक 664 रनो की अविजित साझेदारी की। +","1988 me school ke ek hris haris sheild ke dauran sathi ballebaj vinod kanbli ke sath sachin ne aetihasik 664 kamble ki avijit sajhedari ki. +",8,1,neutral,negative,neutral +"and that they who have been given knowledge may know that it is the truth from thy Lord and believe in it, and so their hearts be humble unto Him; and assuredly God ever guides those who believe to a straight path. +","और ताकि वे लोग जिन्हें ज्ञान मिला है, जान लें कि यह तुम्हारे रब की ओर से सत्य है। अतः वे इसपर ईमान लाएँ और उसके सामने उनके दिल झुक जाएँ और निश्चय ही अल्लाह ईमान लानेवालों को अवश्य सीधा मार्ग दिखाता है +","aur lord ve log jinhen knowledge mila hai , truth thy ki yah tumhare god ki or se saty hai. ata ve isapar unto laen aur uske humble unke hearts jhuk jaen aur nishchay hi allah unto lanevalon ko avashy straight path dikhata hai +",6,0,positive,neutral,positive +"These people , and hundreds of others like them , would remain unrecognised if it was n't for a media organisation that prepares annual reports for corporates . +","ऐसे सैकड़ें लग अनजान रह जाते , अगर कोलकाता स्थित मीड़िया संग न ' त्रिसीज ' न होता , जो कंपनियों की वार्षिक रिपोर्ट तैयार करता है . +","aese saikaren lag anjan rah jate , agar kolkata sthit miriya sng n trisij n hota , jo knpniyon ki prepares annual reports karta hai +",8,1,negative,negative,positive +"and it re-condenses in the other side. +","और वह फिर दूसरे पक्ष में गाढ़ी हो जाती है +","aur vah phir doosre side men gai ho jati hai +",7,3,neutral,neutral,neutral +"Though Tilak was not a revolutionary and nor did he believe in violent methods, elaborate security arrangements were made to guard him while he was under arrest. +","हालांकि तिलक कोई क्रांतिकारी न थे और हिंसक तरीकों में विश्वास नहीं करते थे, फिर भी उन्हें गिरफ्तार कर कड़ी सुरक्षा-व्यवस्था में रखा गया। +","halanki tilak koee revolutionary n the aur violent methods men vishvas nahin karte the , phir bhi unhen arrest kar kari suraksha-vyavastha men security gaya. +",6,2,neutral,negative,negative +"To Ravana's question, Hanuman in his answer introduced himself as Ram's messenger. +","रावण के प्रश्न के उत्तर में हनुमान ने अपना परिचय राम के दूत के रूप में दिया। +","ravan ke question ke answer men hanuman ne apna parichay ram ke messenger ke roop men diya. +",7,3,neutral,neutral,neutral +"Modify network connections for all users +","सभी उपयोगकर्ताओं के लिए संजाल कनेक्शन संशोधित करें +","sabhi users ke lie network connections modify karen +",8,4,neutral,neutral,neutral +"Inevitable losses is pushing the profit in unfavourable direction. +","अपरिहार्य हानियाँ लाभ को प्रतिकूल दिशा में धकेल रही हैं। +","inevitable losses profit in unfavourable disha men dhakel rahi hain. +",7,2,negative,neutral,positive +"The e-hospital and e-project programmes taken up by NIMHANS are, therefore, excellent initiatives, worthy of emulation by other institutions. +","इसलिए निमहैन्स द्वारा आरंभ किए गए ई-हास्पिटल और ई-प्रोजेक्ट कार्यक्रम उत्कृष्ट पहल हैं, अन्य संस्थाओं द्वारा अनुकरण किए जाने योग्य है। +","islie nimhans dvara aarnbh kie emulation ee-haspital aur ee-projekt programmes excellent pahal hain , other institutions dvara anukaran kie jane worthy hai. +",6,3,positive,positive,positive +"Enquiries were constituted with a view to toning up the administration . +","प्रशासन में सुधार लाने की दृष्टि से जांच कमेटियां बिठायी गयीं . +","administration men sudhar lane ki view se janch kametiyan enquiries gayin +",6,2,neutral,neutral,neutral +"And there came a caravan of travellers and they sent their water - drawer to draw water from the well. He let down his bucket into the well and he exclaimed, ""Oh, what a lucky find, here is a boy!"" They hid him like a piece of merchandise, but God knew well what they did. +","एक क़ाफ़िला आया। फिर उसने पनिहारा को भेजा। उसने अपना डोल ज्यों ही डाला तो पुकार उठा, ""अरे! कितनी ख़ुशी की बात है। यह तो एक लड़का है।"" उन्होंने उसे व्यापार का माल समझकर छुपा लिया। किन्तु जो कुछ वे कर रहे थे, अल्लाह तो उसे जानता ही था +","ek caravan aaya. phir water travellers ko bheja. water apna drawer jyon hi dala to pukar utha , merchandise ! kitni ushi ki bat well yah to ek boy well unhonne use vyapar ka mal samajhkar chhupa liya. kintu jo kuchh ve kar rahe the , allah to use janta hi tha +",4,3,positive,neutral,positive +"An elementary Hindi translation of Srimad Bhagwat Geeta. +","श्रीमद् भगवद्गीता का सरल हिन्दी मे आनुवाद +","translation geeta ka saral hindi me elementary +",6,2,neutral,neutral,neutral +"And you probably all have it, and if you haven't, you need to. +","और शायद आप सभी में भी वह होता है, और अगर वह आपके पास नहीं है तो आपको उसकी आवश्यकता है। +","aur shayad aap sabhi men bhi vah hota hai , aur agar vah aapke pas nahin hai to aapko uski aavashyakta hai. +",10,0,neutral,positive,neutral +"Sometimes the Idol of tenderness or affection of Ram makes him think him as his mother and he himself is his son| +","कभी-कभी वह राम को वात्सल्य मूर्ति के रूप में माँ मान लेते हैं और खुद को उनका पुत्र। +","kabhi-kbhi vah ram ko vatsaly moorti ke roop men man man lete hain aur khud ko unka putr. +",9,0,neutral,negative,positive +"You need two numbers or string to do an addition +","जोड़ने के लिए आपको दो संख्या या वाक्यांश चाहिए +","addition ke lie aapko do numbers ya vakyansh chahie +",8,3,neutral,neutral,neutral +"We are a nine through 12 public school, +","हम पब्लिक स्कूल हैं नवीं से बारहवीं तक, +","ham public school hain navin se barahvin tak , +",10,0,neutral,neutral,neutral +"Change sound volume and sound events +","ध्वनि आवाज और ध्वनि घटना बदलें +","sound volume aur change sound volume +",5,2,neutral,neutral,neutral +"It is He who prevails over His creatures, and He is all - wise and aware. +","उसे अपने बन्दों पर पूर्ण अधिकार प्राप्त है। और वह तत्वदर्शी, ख़बर रखनेवाला है +","use apne creatures par poorn adhikar prapt wise aur vah tatvadarshi , bar rakhnevala hai +",7,2,positive,neutral,positive +"Revitalization of cooperative institutions is central to the success of this agenda. +","इस कार्यक्रम की सफलता के लिए सहकारी संस्थाओं को फिर से प्राणवंत बनाना अत्यंत आवश्यक है। +","is agenda ki success ke lie cooperative snsthaon ko phir se pranvnt banana atynt aavashyak central +",6,3,positive,neutral,positive +"It is such a simple thing that everyone can learn it. +","वह इतनी आसान चीज है कि हर एक आदमी को उसे सीख लेना चाहिये। +","vah simple thing chij hai ki har ek aadmi ko use sikh lena chahiye. +",6,1,positive,neutral,neutral +"We are a nine through 12 public school, +","हम पब्लिक स्कूल हैं नवीं से बारहवीं तक, +","ham public school hain navin se barahvin tak, +",10,0,neutral,neutral,neutral +"Equally evident are grounds for introspection. +","समान रूप से स्पष्ट आत्मनिरीक्षण के लिए आधार हैं। +","saman roop se evident introspection ke lie grounds hain. +",8,0,neutral,neutral,neutral +"The damage caused by man - made pollution and its effects on the future of mankind are now being seriously studied by scientists in a number of countries. +","मानव निर्मित प्रदूषण से होने वाली क्षति और भविष्य में मानव जाति पर होने वाले उसके दुष्प्रभावों का अब अनेक देशों में गंभीरतापूर्वक वैज्ञानिकों के द्वारा अध्ययन किया जा रहा है। +","manav made pollution se hone damage caused aur future of mankind jati par hone vale uske dushprbhavon ka ab number of countries gnbhirtapoorvak vaijnjanikon ke dvara adhyayan kiya ja raha hai. +",7,2,negative,negative,negative +"The magicians answered: ""By Him Who has created us, we shall never prefer you to the Truth after manifest Signs have come to us. So decree whatever you will. Your decree will pertain, at the most, to the present life of the world. +","जादूगर बोले कि ऐसे वाजेए व रौशन मौजिज़ात जो हमारे सामने आए उन पर और जिस (खुदा) ने हमको पैदा किया उस पर तो हम तुमको किसी तरह तरजीह नहीं दे सकते तो जो तुझे करना हो कर गुज़र तो बस दुनिया की (इसी ज़रा) ज़िन्दगी पर हुकूमत कर सकता है +","magicians whatever ki aese manifest v raushan maujizat jo hamare present aae un par aur jis decree ne hamko life kiya us par to ham tumko kisi tarah tarjih nahin de sakte to jo tujhe karna ho kar guzar to bas world ki isi zara zindgi par hukoomat kar sakta hai +",7,2,neutral,negative,positive +"8.Volunteers for assisting disabled persons and senior citizens +","8. निःशक्त तथा वरिष्ठ नागरिकों की सहायतार्थ स्वयं सेवक। +","8 disabled tatha senior citizens ki sahaytarth svyn sevak. +",8,0,neutral,neutral,neutral +"He propagated the principles of Hinduism. +","उसने हिन्दुत्व के नियमों का प्रचार किया। +","usne principles of hinduism ka propagated kiya. +",6,4,neutral,neutral,neutral +"On the other hand, Pranayama awakens the coiled - up serpent of the Pranic dynamism in the vital sheath and opens to the Yogin fields of consciousness, ranges of experience, abnormal faculties denied to the ordinary human life while it puissantly intensifies such normal powers and faculties as he already possesses. +","दूसरी ओर, प्राणायाम प्राणकोष में प्राणिक सक्रियता की सर्पाकार कुंडलिनी-शक्ति को जगा देता है तथा योगी के सामने चेतना के ऐसे क्षेत्र, अनुभव की ऐसी शृंखलांए तथा असामान्य शक्तियां खोलकर रख देता है जो सामान्य मानव-जीवन में प्राप्त नहीं होतीं, साथ ही वह उन सामान्य शक्तियों एवं क्षमताओं को भी जो उसके पास पहले से हैं अतिशय सबल बना देता है। +","hand or , pranayama prankosh men pranic dynamism ki sarpakar kundlini-shakti ko jaga other hai tatha yogin ke human consciousness ke aese fields , experience ki aesi shrinkhlane tatha abnormal powers kholakar sheath other hai jo ordinary manav-jivan men prapt nahin hotin , sath hi vah un ordinary faculties evn kshamtaon ko bhi jo uske pas pahle se hain atishay sabal bana other serpent +",6,3,neutral,neutral,positive +"Unable to launch %s: %s +","%s लांच करने में असमर्थ: %s +","s lanch karne men unable : s +",8,1,negative,neutral,neutral +"Preventer of good, aggressor, and doubter, +","जो (वाजिब हुकूक से) माल में बुख्ल करने वाला हद से बढ़ने वाला (दीन में) शक़ करने वाला था +","jo preventer hukook se mal men bukhl karne vala had se bane vala din men sha karne vala tha +",6,1,neutral,neutral,negative +"And now we want the mean of these two number, which is 108 / 2 or 54. +","और अब हम इन दो संख्या है, जो 108/2 या 54 का मतलब चाहते हैं। +","aur ab ham in do number hai , jo 1082 ya 54 ka mean chahte hain. +",7,0,neutral,neutral,positive +"Men (giver) the odds :):):):). Men (giver) the problem :). Men (giver) enjoy :):):):):) +","· पुरुष (Giver) को सहूलियत ☻☻☻☻ · पुरुष (Giver) को परेशानी ☺ · पुरुष (Giver) को आनंद ☻☻☻☻☺ +","purush Giver ko odds purush Giver ko problem purush Giver ko enjoy +",7,3,neutral,negative,positive +"the order of left to right is using to keep close broken words. +","दायें-से-बायें क्रम का उपयोग तुकान्त शब्दों को पास-पास लाने के लिया किया जाता है। +","dayen-se-bayen order ka close broken words ko pas-pas lane ke liya kiya broken words +",4,7,neutral,neutral,negative +"At 13, Teleza is the chairperson of her school 's anti - HIV / AIDS club as well as president of the local Girl Guides chapter. +","13 वर्ष की तेलेज़ा अपने स्कूल के एचआईवी/एड्स रोकथाम क्लब व स्थानीय गल्स्र गाइड शाखा की अध्यक्ष है। +","13 varsh ki teleza apne skool ke echaaeevieds roktham klab v sthaniy galsr gaid shakha ki adhyaksh hai. +",7,2,neutral,neutral,negative +"So at very low frequencies, or very long wavelengths, +","ऐसा बहुत कम आवृत्तियों, या बहुत लंबे तरंग दैर्ध्य पर, +","aesa bahut low frequencies , ya bahut long wavelengths dairdhy par , +",6,3,neutral,neutral,negative +"The person who completes the action of ""behold"" meaning to see someone or something in an impressive manner. +","किसी को प्रभावशाली तरीके से देखने की क्रिया +","kisi ko something manner se person ki action +",6,6,positive,neutral,positive +"In a Message, the President has said: +","एक संदेश में राष्ट्रपति ने कहा हैः +","ek message men president ne kaha haia +",9,1,neutral,neutral,neutral +"as well as to applied science +","साथ ही साथ व्यावहारिक विज्ञानं दोनों को लाभ थे | +","sath hi sath vyavharik science donon ko labh the +",9,1,neutral,neutral,positive +"breast cancer, for the love of Lebanon, for peace, +","स्तन कैंसर, लेबनान के प्यार के लिए, शांति के लिए, +","breast cancer , lebanon ke love ke lie , peace ke lie , +",10,0,neutral,neutral,positive +"Query free / busy information for the attendees +","उपस्थित व्यक्ति के लिए रिक्त/व्यस्त सूचना प्रश्नगत करें +","upasthit vyakti ke lie riktvyast information prashnagat karen +",7,1,neutral,neutral,positive +"Ayurveda teaches us how to age with dignity and grace. +","आयुर्वेद हमें सिखाता है कि हम बूढ़े भी हों तो गरिमा और शालीनता के साथ इस अवस्था में कैसे पहुंचें। +","ayurveda teaches sikhata hai ki ham age bhi hon to dignity aur shalinta ke sath is avastha men kaise pahunchen. +",8,1,positive,neutral,positive +"And that favour wherewith thou didst oblige me was that thou hadst enslaved the Children of Isra 'il? +","और ये भी कोई एहसान हे जिसे आप मुझ पर जता रहे है कि आप ने बनी इसराईल को ग़ुलाम बना रखा है +","aur ye bhi koee ehsan he jise aap mujh par wherewith rahe hai ki aap ne bani children ko ulam bana rakha hai +",4,4,neutral,negative,positive +"Vedant philosophy has strengthened his faith. +","वेदांत-दर्शन से उनका विश्वास और भी दृढ़ हो गया है। +","vedant-darshan se unka faith aur bhi vedant ho gaya philosophy +",5,1,positive,negative,positive +"They are nocturnal animals, sleeping during the day and hunting at night, singly or in pairs. +","दिन में यह सोती रहती है और रात में अकेले या जोड़े में शिकार करती है। +","day men yah nocturnal rahti hai aur night men akele ya animals men hunting karti hai. +",5,3,neutral,neutral,neutral +"Now, fixed price you can decide, well, how do I set that price. +","अब, तुम तय कर सकते हैं, अच्छी तरह से, कीमत तय कैसे मैं उस मूल्य निर्धारित करते हैं। +","ab , tum tay kar sakte hain , achchhi tarah se , price tay kaise main us mooly nirdharit karte hain. +",7,4,neutral,neutral,positive +"But during his father 's gall - bladder operation he admitted him to a paying bed at the Bangur Hospital. +","बाप के गाँल ब्लाडर का ऑपरेशन कराया बाँगुर हास्पीटल के पेइंग बेड भर्ती करा कर। +","father ke ganl bladder ka operation karaya bangur hospital ke peing bed bharti kara kar. +",6,3,neutral,neutral,positive +"The indo function is installed in all aircrafts of the company. +","कंपनी के सभी विमानों में इंडो फलन संस्थापित किया गया है। +","company ke sabhi aircrafts men indo function snsthapit kiya gaya hai. +",8,2,neutral,neutral,neutral +"The adjacent to the foot path all around the garden and the central foot path may be utilised for growing different short duration green vegetables like Coriander, spinach, fenugreek, Alternanthera etc. +","बगीचा के चारों ओर तथा आने-जाने के रास्ते का उपयोग विभिन्न अल्पावधि हरी साग-सब्जी जैसे-धनिया, पालक, मेथी, पुदीना आदि उगाने के लिए किया जा सकता है। +","bagicha ke charon or tatha aane-jane ke raste ka upyog vibhinn alpavdhi hari sag-sabji jaise-dhniya, palak, methi, pudina aadi ugane ke lie kiya ja sakta hai. +",8,1,neutral,neutral,positive +"In such courts, one can expect to get justice. +","ऐसी अदालतों में न्याय पाने की उम्मीद की जा सकती है. +","such courts men justice pane ki ummid ki ja sakti hai +",9,2,neutral,negative,positive +"Mrs de Leeuw then invited her to teach at a new school at London. +","इसके बाद श्रीमती डा. लीयू ने उसे लंदन के एक नए स्कूल में अध्यापन-कार्य के विए आमंत्रित किया। +","iske bad mrs da liyoo ne use london ke ek new school men adhyapan-kary ke vie aamntrit kiya. +",7,3,neutral,neutral,neutral +"So we should do everything we can, +","तो हमें वो सब करना चाहिए, जो हम कर सकते है +","to hamen vo sab karna chahie, jo ham kar sakte hai +",5,9,neutral,neutral,neutral +"Run an application by typing a command or choosing from a list +","कमांड प्रविष्ट कर एक अनुप्रयोग चलाएँ या सूची से चुनकर +","command prvisht kar ek application chalaen ya soochi se choosing +",8,0,neutral,neutral,neutral +"Connecting to the server, please wait... +","सर्वर से कनेक्ट कर रहा है, कृपया इंतजार करें... +","server se connecting kar raha hai, kripya wait karen +",9,0,neutral,neutral,positive +"this order was made applicable to State Governments including the State of Uttar Pradesh. +","इस आदेश को उत्तर प्रदेश राज्य सहित समस्त राज्य सरकारों को लागू किया गया था. +","is order ko uttar pradesh state sahit samast state governments ko applicable kiya gaya tha +",10,0,neutral,neutral,neutral +"Cannot send message: no recipients defined. +","संदेश नहीं भेज सकता हैः कोई प्राप्तकर्ता परिभाषित नहीं है. +","message nahin bhej sakta haia koee recipients paribhashit nahin hai +",8,2,negative,neutral,positive +"User 's $HOME /. dmrc file is being ignored. This prevents the default session and language from being saved. File should be owned by user and have 644 permissions. User' s $HOME directory must be owned by user and not writable by other users. +","उपयोक्ता का $HOME/. dmrc फाइल अनदेखा किया जा रहा है. यह मूलभूत सत्र और भाषा को सहेजे जाने से रोकता है. फाइल को उपयोक्ता के द्वारा स्वामित्व दिया जाना चाहिये और 644 अनुमति रखना चाहिये. उपयोक्ता की $HOME निर्देशिका उपयोक्ता के द्वारा जरूर स्वामित्व में रखनी चाहिये और अन्य उपयोक्ता द्वारा नहीं लिखने योग्य होना चाहिये. +","user ka HOME dmrc file andekha kiya ja raha hai yah default session aur language ko saheje jane se rokta hai file ko user ke dvara svamitv diya jana chahiye aur dmrc permissions rakhna chahiye user ki HOME home user ke dvara jaroor svamitv men rakhni chahiye aur other user dvara nahin writable yogy hona chahiye +",8,2,negative,negative,positive +"As mentioned at the very beginning of this book, had it not been for these insects we would not have had our vegetation and landscape. +","जैसा कि इस पुस्तक के प्रारंभ में ही बताया जा चुका है अगर ये कीट न होते तो न तो हमारी वनस्पति होती और न हमें भूदृश्य देखने को मिलते. +","jaisa ki is book ke beginning men hi bataya ja chuka hai agar ye insects n hote to n to hamari vegetation hoti aur n hamen landscape dekhne ko milte +",8,1,neutral,neutral,neutral +"The period of heat in ewes lasts from 3 to 70 hours , with an average of 27 hours . +","भेड़ें 3 से 70 घण्टे तक गर्मी में रहती हैं.गर्मी की औसत अवधि 27 घण्टे होती है . +","ewes 3 se 70 hours tak garmi men rahti haingarmi ki ausat avdhi 27 hours hoti hai +",7,3,neutral,neutral,neutral +"When such a person comes to Us, he will say [to his comrade], ""If only you had been as far away from me as east is from west. What an evil comrade!"" +","यहाँ तक कि जब (क़यामत में) हमारे पास आएगा तो (अपने साथी शैतान से) कहेगा काश मुझमें और तुममें पूरब पश्चिम का फ़ासला होता ग़रज़ (शैतान भी) क्या ही बुरा रफीक़ है +","yahan tak ki jab yamat men hamare pas aaega to apne sathi shaitan se kahega kash mujhmen aur tummen poorab pashchim ka fasla hota raz shaitan bhi kya hi bura raphi hai +",4,6,negative,negative,negative +"Desai say this story is not suitable to him who frighted and win with died in real life why should i killed him in film. +","देसाई ने इनके बारे में कहा था कि ऐसे आदमी के लिए यह कहना बिल्कुल अनुपयुक्त होगा कि जो असली जीवन में मौत से लड़कर जीता हो उसे परदे पर मौत अपना ग्रास बना ले। +","desai ne inke bare men kaha tha ki aese aadmi ke lie yah kahna bilkul story hoga ki jo suitable life men maut se film jita ho use parde par maut apna gras bana le. +",3,4,negative,neutral,negative +"In 2011 - 12 the share of construction sector in GDP was about 7. 8%. +","2011-12 में निर्माण सेक्टर का सकल घरेलू उत्पाद में लगभग 7.8 प्रतिशत हिस्सा था। +","share of construction sektar ka sakal ghareloo utpad men lagabhag 78 prtishat hissa tha. +",3,2,neutral,neutral,positive +"Benefits of information technology to the common man can only access the software tools and man - machine interface of systems are available in your language. +","सूचना प्रौद्योगिकी के लाभ आम आदमी तक केवल तभी पहुंच सकते हैं जब सॉफ्टवेयर टूल्स और मानव-मशीन इंटरफेस प्रणालियां लोगों की अपनी भाषा में उपलब्ध हों +","soochna benefits of information aam aadmi tak keval tabhi pahunch sakte hain jab sphtveyar tools aur manav-mshin intarphes prnaliyan logon ki apni bhasha men upalabdh hon +",5,4,positive,neutral,positive +"Originally, the reservation was for ten years but it is being extended every time for the next ten years - LRB - articles 330 and 334 - RRB -. +","मूलतया आरक्षण दस वर्षों के लिए था लेकिन उसे हर बार अगले दस वर्षों के लिए बढ़ाया जा रहा है (अनुच्छेद 330 तथा 334). +","originally reservation das years ke lie tha lekin use har bar agle das years ke lie baaya ja raha hai articles 330 tatha 334 +",8,4,neutral,neutral,neutral +"Most of them were religious fanatics who were keen on going to Turkey . +","उनमें से अधिकतर लोग कट्टर धार्मिक थे जो तुर्की जाने के लिए उत्सुक थे . +","most se adhikatar log fanatics religious the jo turki jane ke lie utsuk the +",6,2,neutral,neutral,positive +"it is clear that in vadic era puran and history were kept on the same level +","इनसे यह स्पष्ट है कि वैदिक काल में पुराण तथा इतिहास को समान स्तर पर रखा गया है। +","inse yah spasht hai ki vaidik vadic era puran tatha itihas ko saman star par rakha gaya hai. +",8,1,neutral,neutral,positive +"The first Sthai inhabitants took its from about 1000 years back | +","प्रथम स्थाई बस्तियों ने ९००० वर्ष पूर्व स्वरुप लिया। +","first sthai inhabitants ne years varsh poorv svrup liya. +",5,2,neutral,neutral,neutral +"The whole realm of satire, humour, or fantasy is open to the puppet producer. +","पुतली निर्देशकों के समक्ष व्यग्य, परिहास एवं कल्पना शक्ति का संसार खुला पड़ा है। +","putli nirdeshkon ke samaksh vyagy, parihas evn kalpna shakti ka snsar khula para hai. +",8,1,neutral,neutral,positive +"A new idea with another turn of the logical machine revolts against it and breaks up the machinery, but A new idea with another turn of the logical machine revolts against it and breaks up the machinery, +","तब एक नया विचार इस तर्कसंगत यन्त्र की एक और प्रवृति को लिए हुए उसके विरुद्ध खड़ा हो जाता है और उस यन्त्र को तोड़-फोड़ देता है, किन्तु वह उसे इसलिए तो तोड़ता है कि अन्त में वह उसके स्थान पर एक दूसरी यांत्रिक प्रणाली की, किसी अन्य मत सिद्धान्त या आचार-पद्धति की स्थापना कर सके। +","tab ek new idea is logical machine ki ek aur prvriti ko lie hue uske viruddh khara ho jata hai aur us machine ko tor-phor deta hai , kintu vah use islie to torta hai ki ant men vah uske sthan par ek doosri yantrik prnali ki , kisi any revolts siddhant ya aachar-paddhti ki sthapna kar sake. +",7,4,neutral,neutral,neutral +"And We gave to Abraham, Isaac and Jacob - all [of them] We guided. And Noah, We guided before; and among his descendants, David and Solomon and Job and Joseph and Moses and Aaron. Thus do We reward the doers of good. +","और हमने इबराहीम को इसहाक़ वा याक़ूब (सा बेटा पोता) अता किया हमने सबकी हिदायत की और उनसे पहले नूह को (भी) हम ही ने हिदायत की और उन्हीं (इबराहीम) को औलाद से दाऊद व सुलेमान व अय्यूब व यूसुफ व मूसा व हारुन (सब की हमने हिदायत की) और नेकों कारों को हम ऐसा ही इल्म अता फरमाते हैं +","aur hamne jacob ko isaac va joseph job david pota ata kiya hamne sabki hidayat ki aur unse pahle nooh ko bhi noah hi ne hidayat ki aur unhin jacob ko aulad se daood v suleman v ayyoob v yoosuph v moses v harun sab ki hamne hidayat ki aur nekon doers ko noah aesa hi ilm ata pharmate hain +",7,3,positive,positive,positive +"Parliamentary Forum on Water Conservation and Management; +","जल संरक्षण और प्रबंधन संबंधी संसदीय मंच; +","water conservation aur management snbndhi parliamentary forum +",10,0,neutral,neutral,neutral +"They could not make the company earn a rupee in profit even when its line of credit with the bank was open. +","ये ही वे लोग हैं जो तब भी कंपनी को एक भी पैसे का मुनाफा नहीं कमा कर दे सके जब उसे बैंक से ऋण मिलता था. +","ye hi ve log hain jo tab bhi knpni ko ek bhi rupee in profit nahin earn kar de sake jab use baink se rin open tha +",7,0,negative,neutral,positive +"A group of people who work together for a particular job / purpose. +","व्यक्तियों का ऐसा समूह जो सामूहिक रुप से किसी कार्य/प्रयोजन हेतु कार्यरत हो। +","people ka job group jo samoohik rup se kisi karypryojan purpose karyarat ho. +",6,2,neutral,neutral,neutral +"Exposure time will be shifted forward by% d% s,% d% s,% d% s, and% d% s. +","एक्सपोजर समय आगे बढ़ा दिया जाएगा% d% s,% d% s,% d% s, और% d% s से. +","exposure time aage baa diya jaega d s , d s , d s , aur d s se +",8,0,neutral,neutral,neutral +"I do not bother about any criticism. +","मुझे न निंदा की परवाह हे, न तोहमत की। +","mujhe n ninda ki parvah he, n tohamat ki. +",5,8,neutral,neutral,negative +"Section - 231, Income-tax Act, 1961-2018 +","धारा - 231, आय-कर अधिनियम, 1961-2018 +","section - 231, income-tax act, 1961-2018 +",10,0,neutral,neutral,neutral +"There is a good deal of mixing - up of various Shaiva groups since Basava. +","बसव के पश्चात् विभिन्न शैव सम्प्रदायों में काफी मिश्रण हुआ है। +","basav ke pashchat vibhinn deal of mixing kaphi mishran huaa hai. +",5,4,neutral,positive,positive +"She bent over Mohan and hiccupped. +","वह मोहन पर झुक गयी और हिलक उठी। +","vah mohan par bent gayi aur hilak uthi. +",8,1,neutral,neutral,neutral +"The government official who supervises the matters related to the duty imposed on immovable property. +","वह सरकारी अधिकारी जो अचल संपत्ति पर लगे शुल्क से जुड़े मामलों की देखरेख करता है। +","vah government adhikari jo immovable snpatti par lage duty se jure matters ki dekhrekh karta hai. +",7,1,neutral,neutral,negative +"An organism or individual having a diploid set of chromosomes derived from each parent. +","कोई अवयव या जीव जिस में माता और पिता इन दोनों से ही प्राप्त गुणसुत्र का एक दोहरा गुट है। +","koee avayav ya organism jis men parent aur set in donon se hi prapt diploid ka ek dohra gut hai. +",8,2,neutral,neutral,neutral +"Then We raised up after them another generation. +","फिर हमने उनके बाद एक और क़ौम को (समूद) को पैदा किया +","phir hamne unke bad ek aur aum ko smood ko paida kiya +",7,4,neutral,neutral,neutral +"Raynaud 's disease is also called as Raynaud' s phenomenon. +","रेनाड रोग को रेनाड की घटना भी कहा जाता है. +","raynaud disease ko raynaud ki phenomenon bhi kaha jata hai +",8,3,neutral,neutral,neutral +"He tried both allopathic and homeopathic medicines. +","उन्होंने एलोपैथी तथा होमियोपैथी दोनों प्रकार के इलाज करवाए। +","unhonne allopathic tatha homiyopaithi donon prkar ke medicines karvae. +",7,5,neutral,neutral,neutral +"In 'Ad (also is a sign), when We sent a blasting wind against them, +","और आद में भी (तुम्हारे लिए निशानी है) जबकि हमने उनपर अशुभ वायु चला दी +","aur aad men bhi tumhare lie nishani hai jabki hamne unapar ashubh vayu chala di +",5,8,neutral,neutral,neutral +"Mass unemployment in the country is a matter of grave concern. +","देश में व्यापक बरोजगारी एक बडी चिन्ता का विषय है। +","country men mass barojgari ek grave concern ka matter hai. +",7,3,negative,negative,negative +"This pertains to Panchayats and inter - alia provides that: i In every village, there shall be a Panchayat which will be a constitutional body. +","इस अधिनियम के मुख्य उपबंध इस प्रकार हैं: 1. हर गांव में एक पंचायत होगी जो एक संवैधानिक निकाय होगी। +","is pertains ke body upbndh is prkar hain: 1 har ganv men ek pnchayat hogi jo ek snvaidhanik nikay hogi. +",4,7,neutral,neutral,neutral +"Sustainable Development of Sugarcane - Based Cropping System (SUBACS), and +","गन्ना फसल के सतत विकास के लिए, फसल आधारित प्रणाली +","sugarcane phasal ke sustainable development ke lie, based cropping system +",8,2,neutral,neutral,neutral +"You can see a gleam in their eye. +","और आपको उनकी आँखों में एक चमक दिखेगी। +","aur aapko unki eye men ek chamak gleam +",7,2,neutral,neutral,neutral +"Sucharita said, Does respectful regard always show us the truth? +",">> सुचरिता ने कहा, श्रद्धा के द्वारा हमे क्या सत्य ही मिलता है? +","suchrita ne kaha, regard ke dvara hame kya truth hi milta hai +",7,0,neutral,neutral,positive +"The Overseas Indian community estimated at over 25 million is spread across every major region in the world. +","प्रवासी भारतीय समुदाय अनुमानतः 2.5 करोड़ से अधिक है। जो विश्व के हर बड़े क्षेत्र में फैले हुए हैं। +","overseas indian community anumanta 25 karor se adhik hai. jo world ke har major region men phaile hue hain. +",9,0,neutral,neutral,neutral +"The parent industry itself being in infancy , the market for machinery was limited and private enterprise was not expected to venture into this field . +","मूल उद्योग भी चूंकि अपनी शैशवावस्था में था , मशीनों के लिए बाजार सीमित था और निजी उद्यमियों से यह आशा नहीं की जा सकती थी कि वे इस क्षेत्र में आगे आयें . +","parent industry bhi choonki apni shaishvavastha men tha , mashinon ke lie bajar simit tha aur private enterprise se yah aasha nahin ki ja sakti thi ki ve is kshetr men aage aayen +",8,2,neutral,negative,negative +"His ominous tone echoed Pakistani concerns about the lack of representation of the majority Pashtoon community within the Northern Alliance. +","उनकी तल्खी से एलयंस में भ-संयक पतून समुदाय का प्रतिनिधित्व न होने को लेकर पाकिस्तान की चिंता ज्ह्लकती थी. +","unki talkhi se elyns men bh-snyak patoon samuday ka prtinidhitv n hone ko lekar pakistan ki chinta jhlakti thi +",4,7,negative,neutral,negative +"This has been built with seven small lave made island and connected to main land by a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska gathan lave nirmit sat chhote-chhote small dvara huaa hai evn yah bridge dvara main bhoo-khnd ke sath jura huaa land +",5,3,neutral,neutral,neutral +"And in all cases we have to ask - +","और सभी मामलों में हमे पूछना है +","aur sabhi mamlon men hame poochhna hai +",10,0,neutral,neutral,neutral +"The instinctive nature of man to form into groups and to dance and sing is as old as human existence. +","नृत्य और गायन मानव की आंतरिक प्रकृति है तथा मानव-जीवन के साथ-साथ ही इसका आरंभ हुआ। +","dance and sing manav ki instinctive nature hai tatha form into groups hi iska aarnbh huaa. +",5,7,neutral,neutral,neutral +"Savarkar 's counsel, Mr Baptista, also raised the point that Savarkar' s arrest on French soil was illegal. +","सावरकर के वकील श्री बप्तिस्ता ने भी यह मुद्दा उठाया कि फ्रांसिसी भूमि पर सावरकर की गिफ्तारी गैर-कानूनी है। +","savarkar ke counsel mr baptista ne bhi yah point uthaya ki french soil par savarkar ki arrest gair-kanooni hai. +",9,2,neutral,neutral,negative +"Later on, the recommendations have also been accepted by the State of Bihar +","बाद में, सिफारिशें भी बिहार राज्य द्वारा स्वीकार कर ली गयी हैं +","bad men, recommendations bhi bihar rajy dvara accepted kar li gayi hain +",10,0,neutral,neutral,positive +"Ancient sculptures and murals , as can be expected , abound with illustrations of this instrument . +","प्राचीन चित्रों और मूर्तियों में जैसाकि स्पष्ट है , इस वाद्य को अंकित किया गया है . +","ancient sculptures aur moortiyon men jaisaki spasht hai , is vady ko ankit kiya gaya hai +",8,2,neutral,negative,neutral +"We are doing this by testing the blood from some patients, including babies. +","इस काम के लिए हम शिशुओं समेत कुछ रोगियों के खून की जाँच कर रहे हैं। +","is kam ke lie ham including babies kuchh patients ke testing the blood kar rahe hain. +",7,1,neutral,neutral,neutral +"The average goat requires about 3. 5 kilograms of green fodder a day. +","एक बकरी को प्रतिदिन औसतन 3.5 किलोग्राम हरे चारे की आवश्यकता होती है। +","ek goat ko day average 35 kilograms green fodder ki aavashyakta hoti hai. +",7,0,neutral,neutral,neutral +"And I want you to think about why that happens. +","और मैं चाहता हूँ की आप इसके बारे मे सोचे की वैसा क्यूँ होता है +","aur main chahta hoon ki aap iske bare me soche ki vaisa kyoon hota hai +",8,4,neutral,neutral,positive +"While one is the basic unit of life, the other is that of inanimate matter. +","एक जीवों की इकाई या मूल मात्रक है तो दूसरी जड़ पदार्थों की. +","ek unit of life ya inanimate matter hai to doosri jar padarthon ki +",5,5,neutral,neutral,neutral +"Parallel transfers require multiple bit paths. +","समांतर अंतरण को बहुविध पथ की आवश्यकता होती है। +","parallel transfers ko multiple paths ki aavashyakta hoti hai. +",8,3,neutral,neutral,neutral +"the fuel is just uranium. It 's no more radioactive than it was when you stuck it in, and it' s +","सिर्फ यूरेनियम ईंधन है. यह कोई रेडियोधर्मी अधिक की तुलना में यह जब आप इसे में अटक गया था, और यह है +","sirph uranium fuel hai yah koee rediyodharmi adhik ki tulna men yah jab aap ise men atak gaya tha, aur yah hai +",8,2,neutral,neutral,negative +"Today, the Allahabad High Court has jurisdiction over the largest state in India, covering nearly one-sixth of our total population. +","आज, इलाहाबाद उच्च न्यायालय का भारत के सबसे बड़े राज्य पर न्यायाधिकार है जिसमें हमारी जनसंख्या का लगभग छठा हिस्सा शामिल था। +","today , allahabad high court ka india ke sabse largest state par total hai jismen hamari population ka lagabhag chhatha hissa shamil tha. +",5,1,neutral,negative,neutral +"is I took all of the interviews +","कि मैंने उन सभी साक्षातकारों को लिया +","ki mainne un sabhi interviews ko liya +",10,0,neutral,neutral,neutral +"She could see a roof covered with cracked tiles , sagging with age as if a giant had pressed it down with an invisible hand . +","सामने एक छत भी दिखाई देती है , मुद्दत पुरानी , इटी - फूटी शहतीरों से ढंकी हुई - मानो किसी विशाल दैत्य ने अपने अदृश्य हाथों से उसे मसोस डाला हो । +","hand ek roof bhi dikhaee deti hai , age purani , iti - phooti shahtiron se dhnki huee - mano kisi giant daity ne apne invisible hathon se use masos dala ho . +",6,1,negative,neutral,positive +"Set the directory where to store temporary files +","निर्देशिका सेट करें जहाँ अस्थायी फाइल जमा करना है +","directory set karen jahan temporary phail jama karna hai +",8,2,neutral,neutral,neutral +"Without having tried it and found out all its qualities, how would they prescribe it for rulers, kings and men, low and high? +","बिना परीक्षण किए वे अपने राजा, दरबारियों, सामंतों तथा प्रजा को इसके उपयोग की स्वीकृति कैसे दे सकते हैं। +","bina parikshan kie ve apne raja, darbariyon, samnton tatha prja ko iske upyog ki svikriti kaise de sakte hain. +",5,8,neutral,neutral,negative +"Import search engines from default browser on first run +","पहली बार चलाने पर डिफ़ॉल्ट ब्राउज़र से खोज इंजन आयात करें +","first bar run par default browser se search engines import karen +",7,0,neutral,negative,neutral +"The human and the divine, love of nature and of man, intuition and thought so mingle and interpenetrate in his consciousness that in his poetry, as in actual life, it is difficult to separate one from the other. +","मानवीय और दैवी, नैसर्गिक प्रेम और मानव-प्रेम, आत्म-बोध और विचार परस्पर उनकी चेतना में ठीक उसी प्रकार घुल-मिल जाते हैं जैसे कि उनके निजी जीवन में, और इन्हें एक-दूसरे से विलग करना कठिन हो जाता है। +","manviy aur daivi, naisargik prem aur manav-prem, intuition and thought paraspar unki chetna men thik usi prkar ghul-mil jate hain jaise ki unke niji jivan men, aur inhen ek-doosre se vilag karna kathin ho actual life +",7,6,neutral,negative,positive +"Shimla can be reached by rail, road or air. +","शिमला, रेल, सड़क और वायु मार्ग से पहुंचा जा सकता है। +","shimla , rail , sarak aur air road se pahuncha ja sakta hai. +",7,3,neutral,neutral,positive +"Cement Machinery: - there are 18 units in the organized sector for the manufacture of complete cement plant machinery. +","सीमेंट मशीनरीः-पूर्ण सीमेंट संयंत्र मशीनरी के विनिर्माण के लिए संगठित क्षेत्रक में 18 यूनिट हैं। +","siment mashinria-poorn cement plant machinery ke vinirman ke lie organized sector men 18 yoonit hain. +",6,6,neutral,neutral,neutral +"causing no headiness or intoxication. +","न उसमें कोई ख़ुमार होगा और न वे उससे निढाल और मदहोश होंगे। +","n usmen koee headiness hoga aur n ve usse nidhal aur madhosh honge. +",8,4,neutral,neutral,negative +"And establish prayer and give zakah and obey the Messenger - that you may receive mercy. +","नमाज़ का आयोजन करो और ज़कात दो और रसूल की आज्ञा का पालन करो, ताकि तुमपर दया की जाए +","namaz ka aayojan karo aur zakat do aur obey the messenger ka palan karo, taki receive mercy ki jae +",7,2,neutral,neutral,positive +"The Central Government too, has made assessment of the extent of damage caused to environment by plastic waste in the country by constituting Committees and a Task Force which studied the issue and made recommendations. +","केंद्रीय सरकार ने भी देश भर में प्लास्टिक से पर्यावरण को हो रहे नुकसान को रोकने के लिए एक समिति और टास्क फोर्स बनाई, जिसने अध्येयन किया और सिफारशें तैयार कीं। +","central government ne bhi country assessment men plastic se environment ko ho rahe extent ko rokne ke lie ek committees aur task phors banaee , jisne adhyeyan kiya aur sipharshen taiyar kin. +",7,1,neutral,neutral,negative +"He was elected president of the Muslim Conference formed in October, 1932. +","उन्हें अक्तूबर 1932 में स्थापित मुस्लिम कांफ्रेस का अध्यक्ष भी बनाया गया। +","unhen october 1932 men muslim conference formed ka adhyaksh bhi banaya gaya. +",7,3,neutral,neutral,neutral +"Force Brasero to display the project selection page +","परियोजना चयन पृष्ठ दिखाने के लिए ब्रैसेरो को बाध्य करें +","project selection page dikhane ke lie force ko badhy karen +",6,6,neutral,neutral,neutral +"If such a declaration or public recognition is not made to begin with by the British Government, even so it must be clearly understood that we can only talk on this basis and on no other. 2. +","यदि आरंभ में ब्रिटिश सरकार द्वारा ऐसी धारणा सार्वजनिक स्वीकृति न की जाय, तो भी यह स्पष्ट रूप से समझ लिया जाना चाहिये कि हम केवल इसी आधार पर बातचीत कर सकते हैं, अन्य किसी आधार पर नहीं। +","yadi aarnbh british government sarkar dvara aesi dharna sarvajnik svikriti n ki jay, to bhi yah spasht roop se samajh liya jana chahiye ki ham keval isi aadhar par batchit kar sakte hain, any kisi aadhar par nahin. +",5,5,neutral,neutral,positive +"When it is obvious that the goals cannot be reached, don 't adjust the goals, adjust the action steps. +","जब यह साफ हो कि लक्ष्यों को प्राप्त नहीं किया जा सकता है, तो लक्ष्यों में फेरबदल न करें, बल्कि अपनी प्रयासों में बदलाव करें. +","jab yah obvious ho ki goals ko prapt nahin kiya ja sakta hai , to goals men action n karen , balki apni pryason men badlav karen +",8,1,negative,negative,negative +"They have to be fired by the spirit of patriotism and a sense of social responsibility. +","उनमें देशभक्ति तथा सामाजिक उत्तरदायित्व का ज़ज्बा जगाने की जरूरत है। +","unmen deshabhakti tatha social responsibility ka zajba jagane ki jaroorat hai. +",9,0,negative,neutral,negative +"Have you got your cord with you? +","तुम्हारे पास अपनी डोरी है न। +","tumhare pas apni cord hai n. +",5,8,neutral,neutral,neutral +"(a) expenditure in connection with— +","(क) निम्नलिखित के संबंध में व्यय– +","k nimnlikhit ke connection men vyay +",8,0,neutral,neutral,neutral +"There did Zakariya pray to his Lord; he said: My Lord! grant me from Thee good offspring; surely Thou art the Hearer of prayer. +","(ये माजरा देखते ही) उसी वक्त ज़करिया ने अपने परवरदिगार से दुआ कि और अर्ज क़ी ऐ मेरे पालने वाले तू मुझको (भी) अपनी बारगाह से पाकीज़ा औलाद अता फ़रमा बेशक तू ही दुआ का सुनने वाला है +","ye majra dekhte hi usi vakt zakriya ne apne paravardigar se duaa ki aur arj i ae mere palne vale too mujhko bhi apni bargah se pakiza aulad ata farma beshak too hi duaa ka sunne vala hai +",7,4,positive,positive,positive +"Indian states ranking by media exposure +","मीडिया की पहुँच के आधार पर भारत के राज्य +","media ki exposure ke aadhar par indian ke states +",7,1,neutral,neutral,neutral +"Nor is it the speech of a soothsayer—little do you take heed. +","और न किसी काहिन की (ख्याली) बात है तुम लोग तो बहुत कम ग़ौर करते हो +","aur n kisi soothsayerlittle ki heed speech hai tum log to bahut kam aur karte ho +",7,1,negative,neutral,neutral +"My uncle has sent you the vegetables, Mr Vyas, Kapil said. +","मेरे चाचा ने आपके लिए तरकारी भेजी हे, कपिल ने कहा। +","mere uncle ne aapke lie tarkari bheji he, kapil ne kaha. +",8,1,neutral,neutral,neutral +"No, it was not there +","नही, वो उधर नही था +","nahi , vo udhar nahi tha +",9,1,neutral,neutral,neutral +"They said, ""By Allah, certainly has Allah preferred you over us, and indeed, we have been sinners."" +","उन्होंने कहा, ""अल्लाह की क़सम! आपको अल्लाह ने हमारे मुक़ाबले में पसन्द किया और निश्चय ही चूक तो हमसे हुई।"" +","unhonne kaha, allah ki sinners! aapko allah ne hamare muable men pasand kiya aur nishchay hi chook to hamse preferred +",6,3,neutral,negative,positive +"and there are any disturbances, you know what happens. +","और कुछ गड़बड़ी हो, आप जानते क्या होता है | +","aur kuchh garabari ho, aap jante kya hota hai +",9,2,neutral,negative,negative +"You have no recently reported crashes. Crashes that occurred when crash reporting was disabled will not appear here. +","आपके पास हाल ही में रिपोर्ट किए गए क्रैश नहीं हैं. क्रैश रिपोर्टिंग अक्षम होने के दौरान होने वाले क्रैश यहां दिखाई नहीं देंगे. +","aapke pas hal hi men reporting kie ge crashes nahin hain crashes riporting aksham hone ke dauran hone vale crashes yahan dikhaee nahin denge +",8,1,negative,negative,negative +"The cow is worshipped as a holy animal . +","गाय बड़ी पवित्र तथा पुज़्य मानी जाती है . +","cow bari holy tatha puzy mani jati hai +",8,0,neutral,negative,positive +"The average annual clip is about one kilogram. +","वर्षभर में औसतन लगभग एक किलोग्राम ऊन एक भेड़ से उतरती है। +","annual men average lagabhag ek kilogram oon ek bher se utarti hai. +",8,0,neutral,neutral,neutral +"The three saw a shepherd maid churning curd in front of her house and telling the children playing around her, 'Go away, you kids, lest the curd thumi droplet should spill upon you. +","उन तीनों ने एक ग्वालिन को देखा जो अपने घर के सामने दही मथ रही थी और अपने चारों तरफ खेलते हुए बच्चों से कह रही थी, भाग जाओ, बच्चो, नहीं तो दही की बूँदें थुमि तुम्हारे ऊपर उछलकर गिरेंगी। +","un tinon ne ek gvalin ko children jo apne ghar ke front curd maid rahi thi aur apne charon taraph khelte hue bachchon se kah rahi thi , bhag jao , bachcho , nahin to curd ki boonden thumi tumhare oopar uchhalakar girengi. +",7,2,neutral,neutral,positive +"But we have very special warmth for Nepal and we think that any relationship which we build up or trade relations or economic co - operation will be to our mutual benefit. +","लेकिन हमारे मन में नेपाल के लिए विशेष प्यार है और हम सोचते हैं कि उससे जो भी सम्बंध हम विकसित करेंगे, चाहे व्यापारिक सम्बंध हो या आथिर्क सहयोग वे दोनों ही देशों के लिए लाभदायक होंगे। +","lekin mutual warmth men nepal ke lie special pyar hai aur ham sochte hain ki usse jo bhi relationship ham viksit karenge , chahe trade relationship ho ya aathirk co ve donon hi deshon ke lie benefit honge. +",9,2,positive,positive,positive +"Most of them were religious fanatics who were keen on going to Turkey . +","उनमें से अधिकतर लोग कट्टर धार्मिक थे जो तुर्की जाने के लिए उत्सुक थे . +","unmen se adhikatar log religious fanatics the jo turki jane ke lie utsuk the +",8,2,neutral,neutral,positive +"The requested device could not be initialized (""mounted""). The reported error was:% 1 +","निवेदित उपकरण इनिशियलाइज़ (""माउन्टेड"") नहीं किया जा सकता. रिपोर्ट की गई त्रुटि हैः% 1 +","requested device inishiylaiz maunted nahin kiya ja sakta reported ki gee truti haia 1 +",7,3,negative,negative,negative +"This group traveled in two ships to reach Jeddah in year 1577 and left for Mecca and Madina. +","ये जत्था दो पोतों में सूरत से जेद्दाह बंदरगाह पर १५७७ में पहुंचा और मक्का और मदीना को अग्रसर हुआ। +","ye jattha do group traveled soorat se jeddah bndargah par १५७७ men pahuncha aur makka aur madina ko agrasar huaa. +",7,6,neutral,neutral,neutral +"Ardhendu Mustafi 's habit of teaching without discrimination endeared him to his fellow men. +","बिना भेदभाव के सिखाने वाले अपने स्वभाव के कारण अर्धेन्दु मुस्तफी अपने सहकर्मियों में लोकप्रिय थे। +","bina teaching without discrimination vale apne svbhav ke karan ardhendu mustphi apne sahakarmiyon men lokapriy the. +",4,7,positive,negative,neutral +"Say: “He is Allah, the One and Unique; +","(ऐ रसूल) तुम कह दो कि ख़ुदा एक है +","ae rasool tum kah do ki uda ek hai +",9,2,positive,neutral,neutral +"And send down (to prey) upon them birds in flocks, +","और उन पर झुन्ड की झुन्ड चिड़ियाँ भेज दीं +","aur un par birds ki birds chiriyan bhej din +",8,0,neutral,neutral,neutral +"Simulated papers do not create and legal right or entitlement. +","नकली कागज-पत्र/दस्तावेज कोई कानूनी अधिकार/प्राप्ति हक सृजित नहीं करते। +","simulated kagaj-patrdastavej koee legal adhikarprapti right srijit nahin karte. +",8,2,negative,neutral,negative +"In this way We showed Abraham Our kingdom of the heavens and the earth, so that he might have certainty of faith. +","और (जिस तरह हमने इबराहीम को दिखाया था कि बुत क़ाबिले परसतिश (पूजने के क़ाबिल) नहीं) उसी तरह हम इबराहीम को सारे आसमान और ज़मीन की सल्तनत का (इन्तज़ाम) दिखाते रहे ताकि वह (हमारी वहदानियत का) यक़ीन करने वालों से हो जाएं +","aur jis tarah hamne ibrahim ko dikhaya tha ki but abile parastish poojne ke abil nahin usi tarah ham ibrahim ko sare aasman aur zamin ki saltanat ka intazam dikhate rahe taki vah hmari vahdaniyat ka yain karne valon se ho jaen +",6,5,positive,neutral,positive +"We can no longer accept many of the ancient beliefs and customs; we have no more faith in them, in Asia or in Europe or America. +","अब हम बहुत-से पुराने आचार-विचारों, पुराने रीति-रिवाजों को बदस्तूर नहीं कबूल करते। +","more america bahut-se many aachar-vicharon , many riti-rivajon ko badastoor nahin kabool karte. +",5,3,negative,negative,negative +"If you ask them, ""Who has created the heavens and the earth?"", they will surely answer, ""The Almighty, the All Knowing One has created them."" +","और (ऐ रसूल) अगर तुम उनसे पूछो कि सारे आसमान व ज़मीन को किसने पैदा किया तो वह ज़रूर कह देंगे कि उनको बड़े वाक़िफ़कार ज़बरदस्त (ख़ुदा ने) पैदा किया है +","aur ae rasool agar tum unse poochho ki sare aasman v zamin ko kisne paida kiya to vah zaroor kah denge ki unko bare vaifkar zabaradast uda ne paida kiya hai +",7,1,neutral,neutral,positive +"There is indeed not a single square centimetre on the Earth 's surface where one or another kind of insect is not found. * * How numerous are insects? +","वस्तुतया पृथ्वी की सतह पर एक वर्ग से. मी. जगह भी ऐसी नहीं है जहां कीट न मिलें। +","vastutya earth ki satah par ek varg se mi jagah bhi aesi nahin hai jahan single n kind +",4,2,neutral,neutral,neutral +"Religions whether Christianity, Buddhism, Hinduism or Theosophy or any other system can only take us to the one point where all religions meet, and no further. +","धर्म-वह चाहे ईसाई, बौद्ध, हिंदू हो या थिसोसॉफी या कोई अन्य पंथ-हमें केवल उस बिंदु तक ले जा सकता है जहां सभी धर्म मिल जाते हैं, उससे आगे नहीं। +","dharm-vah chahe religions , buddhism , hindoo ho ya thisosphi ya koee other pnth-hmen keval us point tak system ja sakta hai jahan sabhi dharm mil jate hain , usse aage nahin. +",6,2,neutral,neutral,negative +"and encourage them to do the same. +","और उन्हें उत्साहित कीजिये ये करने के लिये। +","aur unhen utsahit same ye karne ke liye. +",9,0,neutral,neutral,positive +"Could not save attachment:% s +","% s नहीं बचाया जा सकाः% s +","attachment nahin bachaya ja sakaa attachment +",7,0,negative,negative,negative +"Smoking, drinking, stress, chemicals of the environment, high fructose corn syrup, Twinkies..... +","धूम्रपान, मदिरा सेवन, चिंता, प्रदुषण, अधिक मीठा +","smoking, madira sevan, chinta, prdushan, adhik mitha +",7,1,negative,neutral,negative +"and We lay veils upon their hearts lest they understand it, and in their ears heaviness. And when thou mentionest thy Lord only in the Koran, they turn in their traces in aversion. +","और उनके दिलों पर भी परदे डाल देते है कि वे समझ न सकें। और उनके कानों में बोझ (कि वे सुन न सकें)। और जब तुम क़ुरआन के माध्यम से अपने रब का वर्णन उसे अकेला बताते हुए करते हो तो वे नफ़रत से अपनी पीठ फेरकर चल देते है +","aur unke hearts par bhi veils thou lord hai ki ve samajh n saken. aur unke ears men bojh ki ve sun n saken . aur jab thy koran ke madhyam se apne traces ka varnan use akela batate hue karte ho to ve aversion se apni pith pherakar chal lord hai +",7,0,neutral,neutral,positive +"God created the heavens and the earth with the truth; surely in that is a sign to the believers. +","अल्लाह ने आकाशों और धरती को सत्य के साथ पैदा किया। निश्चय ही इसमें ईमानवालों के लिए एक बड़ी निशानी है +","god ne heavens aur earth ko saty ke sath paida kiya. nishchay hi ismen eemanvalon ke lie ek sign nishani hai +",6,2,positive,neutral,positive +"Opening the calendar. Please wait... +","पंचांग खोल रहा है. कृपया प्रतीक्षा करें... +","calendar khol raha hai kripya wait karen +",7,4,neutral,neutral,positive +"Wind speed = %d kilometers/hour +","हवा की गती = %d किलोमीटर/प्रतिघंटा +","wind ki speed d hour +",7,2,neutral,neutral,neutral +"Adjustment in relation to circumstances. +","परिस्थितियों के अनुरुप ढालने की प्रक्रिया। +","relation to circumstances dhalne ki prakriya. +",6,1,neutral,neutral,neutral +"This is a time of great opportunities in India. +","यह भारत के लिए सुनहरे अवसरों का दौर है। +","yah india ke lie sunahre avasron ka great opportunities +",6,3,positive,positive,positive +"The description is required in your bug report. This should not happen with the latest Bug Buddy. +","आपके बग रिपोर्ट में विवरण की जरूरत है. नवीनतम बग बड्डी में ऐसा नहीं होना चाहिए. +","aapke bag description is required ki jaroorat hai navinatam bag baddi men aesa nahin hona chahie +",6,3,negative,neutral,neutral +"A rule that elaborates equality in value. +","ऐसा नियम जो मूल्य में समानता की व्याख्या करता हो। +","aesa rule jo mooly men samanta ki vyakhya karta ho. +",5,5,neutral,neutral,positive +"India and Peru, two ancient civilizations of the world, traditionally enjoy warm and friendly relations. +","विश्व की दो प्राचीन सभ्यताओं, भारत और पेरू के पारंपरिक रूप से हार्दिक और मैत्रीपूर्ण संबंध रहे हैं। +","world ki do ancient civilizations , india aur peru ke parnprik roop se warm aur maitripoorn relations rahe hain. +",8,3,positive,neutral,positive +"No other applications are available to view this file. If you copy this file onto your computer, you may be able to open it. +","इस फाइल को देखने के लिये कोई अन्य अनुप्रयोग उपलब्ध नहीं है. अगर आफ इस फाइल को कंप्यूटर पर कॉपी करते हैं, आप इसे खोलने में सक्षम हो सकते हैं. +","is file ko dekhne ke liye koee other applications available nahin hai agar aaph is file ko computer par kpi karte hain , aap ise kholne men able ho sakte hain +",8,1,neutral,neutral,negative +"They must align their activities with national development goals. +","उन्हें अपने कार्यकलापों को राष्ट्रीय विकास लक्ष्यों के साथ जोड़ देना चाहिए। +","unhen apne activities ko national development goals ke sath jor dena chahie. +",9,1,neutral,neutral,neutral +"To the poor refugees who were driven out of their homes and their possessions, as they sought the favor of God and His approval, and came to the aid of God and His Messenger. These are the sincere. +","(इस माल में) उन मुफलिस मुहाजिरों का हिस्सा भी है जो अपने घरों से और मालों से निकाले (और अलग किए) गए (और) ख़ुदा के फ़ज़ल व ख़ुशनूदी के तलबगार हैं और ख़ुदा की और उसके रसूल की मदद करते हैं यही लोग सच्चे ईमानदार हैं और (उनका भी हिस्सा है) +","is mal men un poor refugees ka hissa bhi hai jo apne gharon se aur malon se nikale aur alag kie ge aur uda ke fazal v ushnoodi ke talabgar hain aur uda ki aur uske aid of god karte hain yahi log sachche eemandar hain aur unka bhi hissa hai +",6,3,neutral,neutral,positive +"He was never to look back again. +","उन्होंने फिर कभी मुड़कर नहीं देखा. +","unhonne phir kabhi back nahin dekha +",7,0,negative,negative,neutral +"Equally important , Tata 's success buried once and for all many misconceptions , fostered mainly by the British , about the Indian people 's ability to venture into the unknown , or about the availability of capital and their readiness to risk it . +","इतना ही महत्वपूर्ण यह तथ्य है कि टाटा की सफलता में सदा के लिए उन गलत अवधारणाओं को समाप्त कर दिया जो मुख़्यत : ब्रिटेनवासियों ने ही , भारतीय लोगों की किसी नये उद्योग को शुरू करने की योग़्यता , पूंजी की उपलब्धता और उसके निवेश के लिए मानसिक तैयारी के बारे में , फैलायी थीं . +","itna hi mahatvpoorn yah tathy hai ki tata ki saphalta men sada ke lie un galat avdharnaon ko samapt kar diya jo muyat : britenvasiyon ne hi , indian people ki kisi naye udyog ko shuroo karne ki yoyta , availability of capital aur uske nivesh ke lie mansik taiyari ke bare men , phailayi thin +",7,6,neutral,neutral,positive +"It is such a simple thing that everyone can learn it. +","वह इतनी आसान चीज है कि हर एक आदमी को उसे सीख लेना चाहिये। +","vah such simple thing hai ki everyone ek aadmi ko use sikh lena chahiye. +",6,1,positive,neutral,neutral +"Legislators must always remember that as representatives of the people and custodians of public interests and rights, they have to be extremely careful in matters of legislation, money and finance. +","विधायकों को सदैव याद रखना चाहिए कि जन प्रतिनिधि और जनहित संरक्षक के रूप में उन्हें विधान, धन और वित्त संबंधी मामलों में अत्यंत सतर्क रहना होगा। +","vidhaykon ko sadaiv yad rakhna chahie ki jan prtinidhi aur janhit snrakshak ke roop men unhen vidhan, dhan aur vitt snbndhi mamlon men atynt satark rahna hoga. +",4,7,neutral,negative,positive +"Pakistani territory of today has been witness to many cultures +","आज का पाकिस्तानी भूभाग कई संस्कृतियों का गवाह रहा है। +","today ka pakistani territory kee cultures ka witness raha many +",6,1,neutral,neutral,neutral +"They, (the People of the Book), have said that God has taken for Himself a son. He is too glorious to have a son. To Him belongs all that is in the heavens and the earth. All pray in obedience to Him. +","कहते है, अल्लाह औलाद रखता है-महिमावाला है वह! (पूरब और पश्चिम हीं नहीं, बल्कि) आकाशों और धरती में जो कुछ भी है, उसी का है। सभी उसके आज्ञाकारी है +","kahte hai, allah aulad rakhta hai-mhimavala hai vah! poorab aur pashchim hin nahin, balki aakashon aur dharti men jo kuchh bhi hai, usi ka hai. sabhi uske aajnjakari hai +",5,8,positive,positive,positive +"He listened to the wind, and felt the stones beneath his feet. +","उसे हवा की आवाज सुनाई दी और पैरों के नीचे पत्थर भी महसूस हुए। +","use wind ki aavaj sunaee di aur feet ke niche stones bhi mahsoos hue. +",9,1,neutral,neutral,neutral +"The President of India, Shri Pranab Mukherjee will visit Uttar Pradesh (Vrindavan, Mathura) tomorrow (November 18, 2015) where he will inaugurate the 500thyear celebrations of Sri Chaitanya Mahaprabhu’s advent in Vrindavan. He will also visit the Shri Radha Raman Temple. +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (18 नवम्बर, 2015) उत्तर प्रदेश (वृंदावन, मथुरा) की यात्रा करेंगे जहां वह श्री चैतन्य महाप्रभु के वृंदावन आगमन के 500वें वर्ष समारोह का उद्घाटन करेंगे। वह श्री राधा-रमण मंदिर के दर्शन करने भी जाएंगे। +","india ke president shri pranab mukharji tomorrow 18 november , 2015 uttar prdesh pradesh , mathura ki yatra karenge jahan vah shri chaitany mahaprabhu ke pradesh advent ke 500ven varsh celebrations ka udghatan karenge. vah shri radha-raman temple ke darshan karne bhi jaenge. +",9,0,neutral,neutral,neutral +"So today We will save you in body that you may be to those who succeed you a sign. And indeed, many among the people, of Our signs, are heedless +","तो हम आज तेरी रुह को तो नहीं (मगर) तेरे बदन को (तह नशीन होने से) ब +","to ham aaj teri ruh ko to nahin magar tere badan ko tah save hone se b +",7,2,neutral,negative,positive +"The Indian National Congress reacted sharply to the appointment of the Simon Commission . +","इंडियन नेशनल कांग्रेस ने साइमन कमीशन के गठन पर तीखी प्रतिक्रिया व्यक्त की . +","indiyan national congress ne saiman kamishan ke gathan par reacted sharply vyakt ki +",6,0,neutral,neutral,neutral +"K. G. M Khan, a dweeler of lahore, made a pure gold urn. +","का़जि़म खान लाहौर का निवासी ने ठोस सुवर्ण कलश निर्मित किया। +","khan khan lahore ka nivasi ne thos gold urn nirmit kiya. +",6,3,neutral,neutral,neutral +"started speaking to us in the 20th century, +","से हमारी बातचीत 20 वीं सदी में शुरू हुई, +","se hamari speaking 20 started sadi men shuroo huee, +",7,1,neutral,neutral,neutral +"Unto this, then, summon (O Muhammad). And be thou upright as thou art commanded, and follow not their lusts, but say: I believe in whatever scripture Allah hath sent down, and I am commanded to be just among you. Allah is our Lord and your Lord. Unto us our works and unto you your works; no argument between us and you. Allah will bring us together, and unto Him is the journeying. +","अतः इसी लिए (उन्हें सत्य की ओर) बुलाओ, और जैसा कि तुम्हें हुक्म दिया गया है स्वयं क़ायम रहो, और उनकी इच्छाओं का पालन न करना और कह दो, ""अल्लाह ने जो किताब अवतरित की है, मैं उसपर ईमान लाया। मुझे तो आदेश हुआ है कि मैं तुम्हारे बीच न्याय करूँ। अल्लाह ही हमारा भी रब है और तुम्हारा भी। हमारे लिए हमारे कर्म है और तुम्हारे लिए तुम्हारे कर्म। हममें और तुममें कोई झगड़ा नहीं। अल्लाह हम सबको इकट्ठा करेगा और अन्ततः उसी की ओर जाना है।"" +","ata isi lie unhen saty ki or summon , aur jaisa ki tumhen hukm diya gaya hai svyn ayam raho , aur unki lusts ka palan n karna aur kah do , o ne jo scripture avatrit ki hai , i usapar eeman laya. mujhe to aadesh huaa hai ki i muhammad bich nyay karoon. o hi hamara bhi rab hai aur tumhara bhi. hamare lie hamare karm hai aur muhammad lie muhammad karm. hammen aur tummen koee argument nahin. o ham journeying ikattha karega aur antta usi ki or jana hai. +",5,2,neutral,neutral,positive +"The sheet which contains the details of allotment. +","आबंटन संबंधी विवरणों को दर्ज करने वाली शीट। +","allotment snbndhi details ko darj karne vali sheet +",10,0,neutral,neutral,neutral +"You can search residential telephone numbers and local address from the directory listing. +","आप निर्देशिका लिस्टिंग से आवासीय टेलीफोन नम्बर और स्थानीय पता ढूँढ सकते हैं। +","aap directory listing se residential telephone numbers aur local address dhoondh sakte hain. +",10,0,neutral,neutral,neutral +"The person who carries out survey or a profession engaged in survey work. +","वह व्यक्ति जो सर्वेक्षण करता हो अथवा जो सर्वेक्षण के व्यवसाय में संलग्न हो। +","vah person jo survey karta ho athva jo survey ke profession men work ho. +",7,2,neutral,neutral,positive +"Push it so as to cover the full length of the nozzle of the stove and the regulator. +","ट्यूब को अच्छी तरह लगाएं जिससे कि स्टोव और रेग्यू लेटर के नॉजल को पूरी तरह ढंका जा सके। +","tyoob ko achchhi tarah lagaen jisse ki stov aur regyoo letar ke njal ko poori tarah dhnka ja sake. +",7,2,neutral,neutral,neutral +"but whoever goes beyond this is a transgressor; +","तो जो लोग उनके सिवा और के ख़ास्तगार हों तो यही लोग हद से बढ़ जाने वाले हैं +","to jo log unke siva aur ke astgar hon to yahi log had se ba jane vale hain +",4,7,negative,neutral,neutral +"I do not feel unnecessarily elated in a happy situation and do not despair in moments of troubles and tragedies. +","मैं प्रसन्नता वाली स्थिति में असाधारण रूप से उल्लसित नहीं होती और मुसीबतों तथा दुखद परिस्थितियों में निराश नहीं हो जाती। +","main prasannta vali sthiti men asadharan roop se ullsit nahin hoti aur musibton tatha dukhad paristhitiyon men nirash nahin ho jati. +",9,0,neutral,neutral,negative +"Premium rates depend on the ‘expected loss’, which in turn depends on the patterns of weather parameters of historical period of about 25 to 100 years in the context of ideal weather requirements of a crop. +","प्रीमियम दरें ‘अनुमानित नुकसान’ पर निर्भर करती हैं, जो कि एक फसल की आदर्श मौसम आवश्यकताओं के सन्दर्भ में लगभग 25-100 वर्षों के ऐतिहासिक काल के मौसम मानदण्ड़ के स्वपरूपों पर निर्भर करती हैं। +","premium rates anumanit loss par depends karti hain , jo ki ek years ki ideal weather parameters ke context men lagabhag 25-100 varshon ke historical period ke weather manadanr ke svaproopon par depends karti hain. +",7,6,neutral,neutral,positive +"A new computer center will come up for the poor children. +","गरीब बच्चों के लिए एक नया कंप्यूटर केन्द्र चालू होने वाला है। +","poor children ke lie ek naya computer center chaloo hone vala children +",7,3,negative,neutral,negative +"Equally important , Tata 's success buried once and for all many misconceptions , fostered mainly by the British , about the Indian people 's ability to venture into the unknown , or about the availability of capital and their readiness to risk it . +","इतना ही महत्वपूर्ण यह तथ्य है कि टाटा की सफलता में सदा के लिए उन गलत अवधारणाओं को समाप्त कर दिया जो मुख़्यत : ब्रिटेनवासियों ने ही , भारतीय लोगों की किसी नये उद्योग को शुरू करने की योग़्यता , पूंजी की उपलब्धता और उसके निवेश के लिए मानसिक तैयारी के बारे में , फैलायी थीं . +","people hi important yah tathy hai ki tata ki success men sada ke lie un galat avdharnaon ko samapt kar diya jo muyat : many ne hi , indian logon ki kisi naye udyog ko shuroo karne ki ability , poonji ki availability aur uske nivesh ke lie mansik readiness ke bare men , phailayi thin +",6,5,neutral,neutral,positive +"Element of cost cannot be ignored while preparing a project. +","किसी परियोजना को बनाने में लागत तत्व की उपेक्षा नहीं की जा सकती। +","kisi preparing a project element of cost ki upeksha nahin ki ja sakti. +",6,1,neutral,negative,positive +"Proceed to a shadow rising in three columns: +","(धुएँ के) साये की तरफ़ चलो जिसके तीन हिस्से हैं +","proceed ke saye ki taraf chalo jiske tin hisse hain +",6,3,neutral,neutral,neutral +"Public meetings of sympathy for me and of protest against the judgment of the High Court, were held in almost every considerable town. +","हर शहर में मेरे समर्थन में और उच्च न्यायालय के फैसले के विरोध में सार्वजनिक सभाएं हुईं. +","har town men judgment sympathy men aur high court ke phaisle ke meetings men public considerable hueen +",6,2,neutral,negative,positive +"The resource base of the Union government today is an ocean compared to that drop. +","आज केन्द्र सरकार के संसाधन उस बूंद की तुलना में एक महासागर के समान हैं। +","today base government ke resource us drop ki tulna men ek ocean ke saman hain. +",8,2,neutral,neutral,negative +"who are true to their trusts and their covenants, +","और जो अपनी अमानतों और अपने एहद का लिहाज़ रखते हैं +","aur jo apni trusts aur apne ehad ka lihaz rakhte hain +",9,0,neutral,neutral,positive +"The eastern regions of Salsette Island contain many quagmires (or is marshy), they are also biologically, very diverse. +","सैलसेट द्वीप की पूर्वी ओर दलदली इलाका है जो जैवभिन्नताओं से परिपूर्ण है। +","regions island ki eastern or marshy ilaka hai jo many se paripoorn hai. +",6,3,neutral,positive,neutral +"(1) The validity of any proceedings in Parliament shall not be called in question on the ground of any alleged irregularity of procedure. +","(1) संसद की किसी कार्यवाही की विधिमान्यता को प्रक्रिया की किसी अभिकथित अनियमितता के आधार पर प्रश्नगत नहीं किया जाएगा। +","1 parliament ki kisi proceedings ki validity ko procedure ki kisi alleged irregularity ke ground par question nahin kiya jaega. +",7,1,neutral,negative,neutral +"Place the ten of spades next to the nine of spades. +","हुकुम की दहला के बगल में हुकुम के नहला को रखें. +","place ki ten ke bagal men place ke nahla ko rakhen +",4,1,neutral,neutral,neutral +"Who avoid the deadly sins, immoral acts, and forgive when they are angered, +","जो बड़े-बड़े गुनाहों और अश्लील कर्मों से बचते है और जब उन्हे (किसी पर) क्रोध आता है तो वे क्षमा कर देते हैं; +","jo bare-bare sins aur acts karmon se deadly hai aur jab unhe kisi par krodh immoral hai to ve kshma kar dete hain +",6,6,neutral,neutral,negative +"Then which of the favours of your Lord will ye deny? - +","अतः तुम दोनों अपने रब की अनुकम्पाओं में से किस-किस को झुठलाओगे? +","lord tum donon apne rab ki favours men se kis-kis ko jhuthlaoge +",8,0,neutral,neutral,positive +"In the recent past, bilateral cooperation has seen significant acceleration and expansion to include almost all areas of mutual interest. +","पिछले दिनों द्विपक्षीय संबंधों में काफी गति तथा विस्तार हुआ है और उसमें लगभग सभी क्षेत्र शामिल हैं। +","recent past dvipakshiy snbndhon men kaphi acceleration and expansion huaa hai aur usmen lagabhag sabhi kshetr shamil hain. +",9,2,positive,neutral,positive +"and what will make you understand what the 'Illiyyin is? - - +","और तुमको क्या मालूम कि इल्लीयीन क्या है वह एक लिखा हुआ दफ़तर है +","aur tumko kya maloom ki illiyin kya hai vah ek likha huaa dafatar hai +",9,1,neutral,negative,neutral +"Indicates whether any trailing zeroes after the numeric point should be shown in the display value. +","बताता है कि कोई पश्चगामी शून्य जिसके बाद संख्या बिंदु को प्रदर्शन मान में दिखाया जाना चाहिए. +","batata hai ki koee trailing shoony jiske bad snkhya point ko display value men dikhaya jana chahie +",8,1,neutral,neutral,positive +"refuse him / her the permission to see your presence +","आपकी उपस्थिति को देखने के लिए उन्हें अनुमति मत दें +","aapki refuse ko dekhne ke lie unhen permission mat den +",7,3,neutral,neutral,negative +"In Uttarapatha there is a mention of a golden stupa at Mathura. +","उत्तरापथ में मथुरा में सुवर्णस्तूप होने का उल्लेख मिलता है। +","uttrapath men mathura men suvarnastoop hone ka ullekh milta hai. +",9,2,neutral,neutral,neutral +"And Thamood—those who carved the rocks in the valley. +","और समूद के साथ (क्या किया) जो वादी (क़रा) में पत्थर तराश कर घर बनाते थे +","aur samood ke sath kya kiya jo valley rocks men patthar tarash kar ghar banate the +",9,0,neutral,neutral,neutral +"Apart from working out all the sums from prescribed textbooks, Satyen would solve similar sums from subsidiary text - books. +","सत्येन निर्धारित पाठ्य-पुस्तकों में दिये हुए सब प्रश्नों को करने के अतिरिक्त सहायक पाठ्य-पुस्तकों से भी वैसे ही प्रश्नों को हल करते थे। +","satyen prescribed pathy-pustkon men diye hue sab prashnon ko karne ke atirikt subsidiary pathy-pustkon se bhi similar hi prashnon ko sums karte the. +",7,2,neutral,neutral,positive +"243W. Powers, authority and responsibilities of Municipalities, etc.- +","243ब. नगरपालिकाओं, आदि की शक्तियाँ, प्राधिकार और उत्तरदायित्व- +","243b municipalities, aadi ki powers, authority aur uttardayitv- +",6,5,neutral,neutral,positive +"They embrace the infinite coastline of the sea at their mouths. +","वे अपने मुहानों पर असीम समुद्रतट का आलिंगन करती हैं। +","ve apne coastline par infinite sea ka aalingan karti hain. +",7,5,positive,positive,positive +"Guard against the disgrace and misery of the day when you shall return to Allah: there everyone shall be paid in full, for the good or evil one has earned and none shall be wronged. +","और उस दिन का डर रखो जबकि तुम अल्लाह की ओर लौटोगे, फिर प्रत्येक व्यक्ति को जो कुछ उसने कमाया पूरा-पूरा मिल जाएगा और उनके साथ कदापि कोई अन्याय न होगा +","aur us day ka guard everyone jabki tum allah ki or lautoge , phir full vyakti ko jo kuchh usne kamaya poora-poora mil jaega aur unke sath kadapi koee anyay n hoga +",8,0,positive,negative,negative +"A staff of GUARD then brought 2 kg. of earthworms which costed Chandranna Rs. 300. +","के स्टाफ के एक सदस्य ने उसके बाद 2 किलोग्राम केंचुए लाकर दिए, जिसकी कीमत चन्द्रण्णा को 300 रुपये देनी पड़ी। +","ke staph ke ek sadasy ne uske bad 2 kilogram kenchue lakar die, jiski kimat chandranna ko 300 rupye deni pari. +",5,8,neutral,neutral,neutral +"Our media can play a major role in creating awareness and projecting positive stories in this respect. +","इस संबंध में हमारा मीडिया जागरूकता पैदा करने और सकारात्मक जागरूकता प्रस्तुत करने में एक महत्वपूर्ण भूमिका निभा सकता है। +","is snbndh men hamara media awareness paida karne aur positive awareness prastut karne men ek major role stories sakta hai. +",7,2,positive,positive,positive +"God is the most exalted King and the Supreme Truth. He is the only God and the Lord of the Gracious Throne. +","तो ख़ुदा जो सच्चा बादशाह (हर चीज़ से) बरतर व आला है उसके सिवा कोई माबूद नहीं (वहीं) अर्श बुर्जुग़ का मालिक है +","to god jo truth exalted har chiz se baratar v supreme hai uske siva koee mabood nahin vahin throne burju ka lord hai +",5,1,positive,neutral,positive +"Cannot authenticate MAPI accounts in offline mode +","ऑफलाइन मोड में MAPI खाता सत्यापित नहीं कर सकता है +","offline mode men MAPI khata satyapit nahin kar sakta hai +",8,1,negative,neutral,negative +"You do not have the permissions necessary to save the file. +","फ़ाइल सहेजने के लिए आपके पास आवश्यक अनुमति नहीं है. +","file save ke lie aapke pas aavashyak anumti nahin hai +",7,0,neutral,neutral,positive +"And they used to persist in the great violation, +","और बड़े गुनाह पर अड़े रहते थे +","aur bare gunah par persist rahte the +",9,1,negative,negative,positive +"With these words, I have great pleasure to inaugurate this Congress. +","इन शब्दों के साथ मुझे इस सम्मेलन का उदघाटन करते हुए प्रसन्नता हो रही है। +","in shabdon ke sath mujhe is sammelan ka inaugurate karte hue pleasure ho rahi words +",8,2,positive,neutral,positive +"The amount of space between two consecutive rows +","दो लगातार पंक्तियों के बीच की दूरी +","do consecutive amount ke bich ki space +",8,1,neutral,neutral,neutral +"DLA for children under age 16 < s > You can claim DLA for a child with a severe physical or mental disability if they need much more help or looking after than other children of the same age because of their illness or disability +","जिन बच्चोंको गंभीर शारीरीक और मानसिक विकलांगता है जिस के कारण उनको उनकी विकलांगता और बीमारी की वजह से उन्हीं की आयु के बच्चों से अधिकतर मदद या फिर देखभाल की जरुरत लगती है तो आपको DLA के लिए अर्जी भर सकते है। +","jin bachchonko gnbhir physical or mental viklangta hai jis ke karan unko unki viklangta aur bimari ki vajah se unhin ki aayu ke bachchon se adhikatar madad ya phir dekhbhal ki jarurat lagti hai to aapko DLA ke lie arji bhar sakte hai. +",4,5,neutral,neutral,negative +"and who will be told, ""This is what you had called a lie"". +","फिर कहा जाएगा, ""यह वही है जिस तुम झुठलाते थे"" +","phir kaha lie , yah vahi hai jis tum jhuthlate the +",8,0,negative,negative,neutral +"We will get the job done in anyway. +","हम किसी भी तरह से कार्य पूरा कर लेंगे। +","ham kisi bhi tarah se job poora kar lenge. +",9,2,positive,neutral,neutral +"Premium rates depend on the ‘expected loss’, which in turn depends on the patterns of weather parameters of historical period of about 25 to 100 years in the context of ideal weather requirements of a crop. +","प्रीमियम दरें ‘अनुमानित नुकसान’ पर निर्भर करती हैं, जो कि एक फसल की आदर्श मौसम आवश्यकताओं के सन्दर्भ में लगभग 25-100 वर्षों के ऐतिहासिक काल के मौसम मानदण्ड़ के स्वपरूपों पर निर्भर करती हैं। +","premium rates anumanit nuksan par nirbhar karti hain, jo ki ek phasal ki ideal weather requirements ke sandarbh men lagabhag 25-100 varshon ke aetihasik kal ke mausam manadanr ke svaproopon par nirbhar karti hain. +",9,0,neutral,neutral,positive +"While one is the basic unit of life, the other is that of inanimate matter. +","एक जीवों की इकाई या मूल मात्रक है तो दूसरी जड़ पदार्थों की. +","ek life ki unit ya basic inanimate hai to other jar padarthon ki +",6,4,neutral,neutral,neutral +"Just write your query on this postcard and send it to Google office via Snail Mail. +","आप अपनी पृच्छा इस पोस्टकार्ड पर लिखकर स्नेल मेल के द्वारा गूगल कार्यालय को भेज दें। +","aap apni query is postkard par likhakar snel mel ke dvara google office ko bhej den. +",9,1,neutral,neutral,neutral +"It could be that, other than fiscally, he is not a conservative but a moderate. It could be ego: the governor is just more brilliant than the rest of us. Or, as several analysts suggest, it could be cynical double pandering: Muslims get what they want most and Zionists what they want most, with each party ignoring what Christie does for the other. Interestingly, Senator Joseph Lieberman of Connecticut pursued this double track policy (soft on Islamism, staunch on Israel) and became the Democrats' VP candidate in 2000. < s > Whatever the reason, we conclude that Chris Christie lacks the moral compass, gravitas, and integrity needed to serve as vice - president of the United States. +","हो सकता है कि बजट घाटे के अतिरिक्त वे परम्परावादी न होकर नरमपंथी हों। या फिर अहंकार हो कि राज्यपाल से मेधावी कौन हो सकता है? या फिर जैसा कि अनेक विश्लेषक सुझाव देते हैं कि यह दोहरे तुष्टीकरण की नीति हो सकती हैः मुसलमानों को अधिक से अधिक वह मिले जो वह चाहते हैं और इजरायलवादियों को वह जो वह चाहते हैं और इस मामले में दोनों ही इस बात की परवाह नहीं करते कि क्रिस्टी दूसरों के लिये क्या कर रहे हैं? रोचक बात है कि कानेक्टीकट के सीनेटर जोसेफ लिबरमैन ने इस दोहरी नीति को अपनाया था (इस्लामवाद के प्रति नरम, इजरायल के प्रति रवैया) और 2000 मे डेमोक्रेट की ओर से उपराष्ट्रपति पद के प्रत्याशी बने थे। +","ho sakta hai ki bajat ghate ke atirikt ve parampravadi n hokar narampnthi hon. ya phir ahnkar ho ki rajypal se medhavi kaun ho sakta hai ya phir jaisa ki anek vishleshak sujhav dete hain ki yah dohre tushtikaran ki niti ho sakti haia musalmanon ko adhik se adhik vah mile jo vah chahte hain aur ijrayalvadiyon ko vah jo vah chahte hain aur is mamle men donon hi is bat ki parvah nahin karte ki kristi doosron ke liye kya kar rahe hain rochak bat hai ki kanektikat ke sinetar joseph libarmain ne is dohri niti ko apnaya tha islamvad ke prti naram, ijrayal ke prti ravaiya aur 2000 me demokret ki or se uprashtrapti pad ke pratyashi bane the. +",4,7,neutral,negative,positive +"A book in which the business transactions of an agent are posted in the form of debits and credits. +","एक बही जिसमें किसी अभिकर्ता के व्यावसायिक लेन-देन लेनदारी व देनदारी के रूप में दर्ज़ होते हैं। +","ek bahi jismen kisi abhikarta ke business transactions lendari v dendari ke roop men darz hote hain. +",9,2,neutral,neutral,positive +"The Arabs laughed at him , and the alchemist laughed along . +","अरब सैनिक उसकी बात सुनकर हंस पड़े । उनके साथ कीमियागर भी हंसने लगा । +","arab sainik uski bat sunakar hns pare . s unke sath kimiyagar bhi hnsne laga . +",9,0,neutral,neutral,positive +"Example: in the panel [XML:: RSS] (panel) [mygape] (PHP), [rom] (java) etc. +","उदाहरणः सीपैन में [XML:: RSS] (पर्ल) [मैगपी] (पीएचपी) [रोम] (जावा) आदि। +","udaharna sipain men XML:: RSS parl maigpi piechpi rom java aadi. +",4,7,neutral,neutral,neutral +"Could not rename partial file% 1. Please check permissions. +","आधा-अधूरा फ़ाइल% 1 का नाम बदल नहीं सकता. कृपया अनुमतियाँ जाँचें. +","aadha-adhoora file partial ka nam badal nahin sakta please permissions janchen +",8,2,negative,neutral,positive +"The poet keeps thinking about the country all the time. +","कवि उठते-बैठते देश चिन्तन में मग्न रहा करता। +","kavi uthte-baithte desh chintan men magn raha karta. +",8,3,neutral,positive,neutral +"What actually happened was the impulses were reduced. +","असलियत में ये हुआ कि गतियाँ कम हो गयीं. +","asliyat men ye huaa ki gatiyan kam ho gayin +",9,1,neutral,negative,neutral +"(x) And do not even go near the property of the orphan - except that it be in the best manner - till he attains his maturity. (xi) And fulfil the covenant, for you will be called to account regarding the covenant. +","और अनाथ के माल को हाथ में लगाओ सिवाय उत्तम रीति के, यहाँ तक कि वह अपनी युवा अवस्था को पहुँच जाए, और प्रतिज्ञा पूरी करो। प्रतिज्ञा के विषय में अवश्य पूछा जाएगा +","aur anath ke mal ko attains his maturity sivay uttam riti ke, yahan tak ki vah apni yuva avastha ko pahunch jae, aur prtijnja poori karo. prtijnja ke vishay men avashy poochha jaega +",6,4,neutral,neutral,positive +"Can be development very quickly of articles of short timed subjects in Wikipedia as articles of Mumbai blasts were present after few minutes of its happening along with reference links in English Wikipedia. +","विकिपिडीया मे काफी तेज़ी से समसामयिक विषयों के बारे में लेखो का विकास हो सकता है जैसे कि मुंबई विस्फोटों के खबर का ज़ाहिर होने के चंद मिनटों में ही उसके बारे में अंग्रेजी विकिपीडिया में प्रासंगिक कड़ियों के साथ लेख मौजूद था। +","vikipidiya me few tezi se reference articles ke bare men lekho ka development ho sakta hai jaise ki mumbai blasts ke khabar ka zahir hone ke short minutes men hi uske bare men english wikipedia men prasngik links ke sath lekh present tha. +",7,4,neutral,neutral,neutral +"This is an incorrect suggestion to solve this problem. +","यह इस समस्या को सुलझाने का गलत सुझाव है। +","yah is problem ko suljhane ka incorrect suggestion hai. +",9,1,negative,negative,negative +"So fear Allah as much as you are able and listen and obey and spend [in the way of Allah]; it is better for your selves. And whoever is protected from the stinginess of his soul - it is those who will be the successful. +","अतः जहाँ तक तुम्हारे बस में हो अल्लाह का डर रखो और सुनो और आज्ञापालन करो और ख़र्च करो अपनी भलाई के लिए। और जो अपने मन के लोभ एवं कृपणता से सुरक्षित रहा तो ऐसे ही लोग सफल है +","ata jahan tak tumhare bas men ho allah ka dar listen and obey aur aajnjapalan karo aur rch karo apni bhalaee ke lie. aur jo apne man ke lobh evn kripanta se surakshit raha to aese hi log saphal hai +",7,2,positive,negative,positive +"Electricity from these grids can be distributed to residential houses, community buildings and business centers through these equipments. +","इन संयंत्रों से ग्रिड स्तर की बिजली व्यक्तिगत आवासों सामुदायिक भवनों व व्यापारिक केन्द्रों को प्रदान की जा सकती है। +","in snyntron se grid star ki bijli residential houses samudayik bhavnon v vyaparik kendron ko prdan ki ja sakti hai. +",9,0,neutral,neutral,neutral +"very small change in time, we have a roughly constant +","बहुत छोटे परिवर्तन के समय में, हम एक मोटे तौर पर निरंतर है +","bahut small change ke time men , ham ek mote taur par constant hai +",7,1,neutral,neutral,neutral +"However, the suit was filed immediately thereafter, without waiting for two months +","हालाँकि मुकदमा तुरंत ही दायर कर दिया गया था बिना दो महीने इंतज़ार करे ही. +","halanki suit suit was filed kar diya gaya tha bina do mahine intazar kare hi +",5,1,neutral,neutral,neutral +"In truth, when its desires are fulfilled, it returns to its own place and enjoys the happiness that is the Self. +","वस्तुतः जब उसकी इच्छाएँ पूरी हो जाती है तो वह अपने स्थान पर वापस आ जाता है, और आनंद का, आत्मा का उपयोग करता है। +","vastuta jab own desires poori ho jati hai to vah apne place par vapas truth jata hai , aur happiness ka , self ka upyog karta hai. +",7,3,positive,neutral,positive +"And leave them desolate waste. +","और धरती को एक समतल चटियल मैदान बनाकर छोड़ेगा +","aur dharti ko ek samatal chatiyal leave them desolate +",6,2,negative,negative,negative +"It was Senator Obama when they created it. They changed the name later. +","जब उन्होंने इसे बनाया तो वह सेनेटर ऒबामा था. बाद में उन्होंने नाम बदल दिया. +","jab unhonne ise created to vah senator ऒbama tha bad men unhonne nam badal diya +",6,4,neutral,neutral,positive +"Shahjahan arrange to built it in memory of his wife Mumtaz Mahal. +","यह मुगल बादशाह शाहजहां ने अपनी बेगम मुमताज महल की याद में बनवाया था। +","yah mugal badshah shahjahan ne apni wife mumtaz mahal ki memory men banvaya tha. +",9,1,neutral,neutral,neutral +"(4) Where the net tonnage of ships chartered in exceeds the limit under sub-section (1) during any previous year, the total income of such company in relation to that previous year shall be computed as if the option for tonnage tax scheme does not have effect for that previous year. +","(4) जहां भाड़े पर लिए गए पोतों का शुद्ध टनभार, किसी पूर्ववर्ष के दौरान उपधारा (1) के अधीन वर्णित सीमा से अधिक हो जाता है, वहां ऐसी कंपनी की, उस पूर्ववर्ष के संबंध में कुल आय की संगणना इस प्रकार की जाएगी मानो उस पूर्ववर्ष के लिए टनभार कर स्कीम संबंधी विकल्प का कोर्इ प्रभाव नहीं था। +","4 jahan bhare par lie ge ships ka net tonnage , kisi previous ke dauran updhara 1 ke adhin varnit limit se exceeds ho jata hai , vahan aesi company ki , us previous ke relation men kul income ki snganna is prkar ki jaegi mano us previous ke lie tonnage kar skim snbndhi option ka kori effect nahin tha. +",8,2,neutral,negative,neutral +"refer to teachings and examples of our prophet, +","हमारे पैगम्बर की शिक्षाओं और उदाहरणों को उद्धृत करते हैं, +","hamare prophet ki refer aur examples ko uddhrit karte hain , +",6,5,neutral,neutral,neutral +"Whether to use the ""- - driver generic - mmc - raw"" flag with cdrdao +","क्या ""-- driver generic-mmc-raw"" का प्रयोग cdrdao के साथ करना है +","kya -- mmc generic-mmc-raw ka pryog cdrdao ke sath karna hai +",6,5,neutral,neutral,neutral +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","actor ka allocation par nazar rakhne ke lie clip region ko sets karen +",8,1,neutral,neutral,neutral +"She said, “My Lord, how can I have a child, when no man has touched me? ” He said, “It will be so. God creates whatever He wills. To have anything done, He only says to it, ‘Be, ’ and it is. ” +","वह बोली, ""मेरे रब! मेरे यहाँ लड़का कहाँ से होगा, जबकि मुझे किसी आदमी ने छुआ तक नहीं?"" कहा, ""ऐसा ही होगा, अल्लाह जो चाहता है, पैदा करता है। जब वह किसी कार्य का निर्णय करता है तो उसको बस यही कहता है 'हो जा' तो वह हो जाता है +","vah boli, man rab! mere yahan larka kahan se hoga, jabki mujhe kisi man has touched tak nahin kaha, aesa hi hoga, allah jo chahta hai, paida karta hai. jab vah kisi kary ka nirnay karta hai to usko bas yahi kahta hai ho ja to vah ho jata hai +",8,1,neutral,neutral,positive +"you won the TED Prize 2011. +","तुम्हें २०११ का टेड प्राइज़ मिल गया है. +","tumhen २०११ ka ted praiz mil gaya hai +",9,1,positive,positive,positive +"Iraqi maltreatment of Iranian dissidents both raises humanitarian concerns and points to the MeK's larger importance as a mechanism to thwart the U.S. goal of minimizing Tehran's influence in Iraq. +","ईरान के विद्रोहियों के साथ इराक द्वारा किये जा रहे दुर्व्यवहार से जो प्रश्न खडे होते हैं उनमें मानवता के आधार पर चिन्ता तो है ही यह इराक में तेहारान के प्रभाव को बढने से रोकने में मुजाहिदीने खल्क की महती भूमिका को भी अवरुद्ध करता है। +","iranian ke dissidents ke sath iraqi dvara kiye ja rahe maltreatment se jo raises us hote hain concerns manavta ke aadhar par chinta to hai hi yah iraqi men humanitarian ke influence ko badhne se rokne men mek khalk ki mahti bhoomika ko bhi avruddh karta goal +",7,4,negative,neutral,positive +"Should the reward of goodness be aught else but goodness? - - +","अच्छाई का बदला अच्छाई के सिवा और क्या हो सकता है? +","reward ka badla reward ke siva aur kya ho sakta hai +",4,7,neutral,neutral,positive +"Delete CA certificate “% {CERTIFICATENAME} ”? CA +","प्रमाणपत्र “% {CERTIFICATENAME} ” हटाएं? +","certificate CERTIFICATENAME hataen +",8,1,negative,neutral,neutral +"A large number of water birds visit this area. +","इस क्षेत्र में अनेकों पक्षी आते है। +","is area men large birds water hai. +",6,1,neutral,neutral,positive +"It is a great pleasure for me to visit the Kofi Annan Centre of Excellence in ICT. +","आईसीटी में कोफी अन्नान सेंटर ऑफ एक्सीलेंस में व्याख्या करना मेरे लिए एक आनंददायक अनुभूति है। +","aaeesiti men kophi annan sentar ऑph eksilens men vyakhya karna mere lie ek aannddayak anubhooti hai. +",6,3,positive,neutral,positive +"Law is an expression of the urge towards discipline, and self - control that has to be fostered in men and in social institutions. +","कानून उस अनुशासन और आत्म-संयम की प्रेरक अभिव्यक्ति है जिसका अनुपालन व्यक्तियों और सामाजिक संस्थाओं को करना होता है। +","kanoon us anushasan aur aatm-snyam ki prerak abhivyakti hai jiska anupalan vyaktiyon aur social institutions ko karna hota hai. +",8,2,neutral,negative,neutral +"Allows to burn files not stored locally +","उन फाइलों को लिखने देता है जो स्थानीय रूप से जमा नहीं किए गए +","un files not stored deta hai jo locally roop se jama nahin kie ge +",7,2,neutral,neutral,neutral +"The balance sheet reflects the historical strength of an organization, and has long been thought of as a ""snapshot"" of an entity 's financial position. +","तुलन पत्र किसी संगठन की ऐतिहासिक शक्ति को व्यक्त करता है जो लंबे समय से ""आशुचित्र"" के रूप में वित्तीय स्थिति का परिचायक होता है। +","balance sheet kisi sngathan ki aetihasik long been thought karta hai jo lnbe samay se aashuchitr ke roop men vittiy sthiti ka parichayak hota hai. +",4,4,neutral,neutral,positive +"Root node of '% s' must be < evoldap >, not <% s > '% s' +","का रूट नोड जरूर होनी चाहिये, न कि <% s> +","ka root nod evoldap s honi chahiye , n ki s +",8,2,neutral,neutral,neutral +"Flies carry diseases from infected persons to healthy persons. +","मक्खियां संक्रमित व्यक्तियों से स्वस्थ व्यक्तियों में बीमारियाँ फैलाती हैं। +","flies carry vyaktiyon se persons to healthy bimariyan phailati hain. +",4,1,negative,negative,negative +"Such is the Garden which We give as an inheritance to those of Our servants who guard against Evil. +","यही वह बेिहश्त है कि हमारे बन्दों में से जो परहेज़गार होगा हम उसे उसका वारिस बनायेगे +","yahi vah garden hai ki such servants men se jo evil hoga ham use uska inheritance banayege +",6,2,neutral,neutral,negative +"A signal or symbol used for secret communication. +","गुप्त संचार/सम्प्रेषण के लिए प्रयोग में लाया जाने वाला कोई चिन्ह या संकेत। +","secret communication ke lie pryog men laya jane vala koee signal or symbol +",8,2,neutral,neutral,neutral +"It 's better to die that way than live like this . ” +","इस तरह जीने से बेहतर है उस तरह मर जाना . ' ' +","is tarah jine se better hai us tarah mar jana +",10,0,negative,neutral,positive +"(x) And do not even go near the property of the orphan - except that it be in the best manner - till he attains his maturity. (xi) And fulfil the covenant, for you will be called to account regarding the covenant. +","और अनाथ के माल को हाथ में लगाओ सिवाय उत्तम रीति के, यहाँ तक कि वह अपनी युवा अवस्था को पहुँच जाए, और प्रतिज्ञा पूरी करो। प्रतिज्ञा के विषय में अवश्य पूछा जाएगा +","aur orphan ke property ko hath men best sivay uttam manner ke , yahan tak ki vah apni yuva avastha ko pahunch jae , aur covenant poori karo. covenant ke vishay men avashy poochha jaega +",8,0,neutral,neutral,positive +"I think we have a problem in Mexico. +","मैं सोचता हूँ कि हमारे पास मेक्सिको में समस्या है | +","main sochta hoon ki hamare pas meksiko men samasya hai +",8,1,negative,negative,negative +"You need to restart the application. +","आपको अनुप्रयोग को फिर आरंभ करने की जरूरत है. +","aapko application ko phir aarnbh karne ki jaroorat hai +",8,2,neutral,neutral,neutral +"I mean, I think that looks like some sort of flying animal or beast. +","शायद यह एक उड़ने वाले जानवर जैसा दिखता है. +","i yah ek sort vale animal jaisa dikhta hai +",6,4,neutral,neutral,positive +"I 've two more children from my second wife. +","दूसरी पत्नी से दो बच्चे और हैं। +","second more se do i aur hain. +",4,1,neutral,neutral,neutral +"They both grew up in more or less the same atmosphere. +","दोनों कमोबेश एक ही वातावरण में पालित-पोषित हुए थे। +","donon same ek hi atmosphere men palit-poshit hue the. +",7,5,neutral,neutral,neutral +"So be patient with gracious patience. +","अतः धैर्य से काम लो, उत्तम धैर्य +","ata patient with gracious lo, uttam patience +",4,4,positive,neutral,positive +"He was friendly and helpful, charming and soft - spoken. +","वह मैत्रीपूर्ण, सहायताशील, आकर्षक और मृदुभाषी था. +","vah helpful , soft , aakarshak aur mridubhashi tha +",7,2,positive,neutral,positive +"Items of export which are other than the crude oil. +","कच्चे तेल के अलावा निर्यात किया जाने वाला अन्य माल/सामान। +","crude oil ke alava export kiya jane vala other malsaman. +",8,2,neutral,neutral,negative +"Certain persons were proceeded against under the Orissa Maintenance of Public Order Act, 1948, and it appears that,Certain persons were proceeded against under the Orissa Maintenance of Public Order Act, 1948, and it appears that, +","कुछ व्यक्तियों के विरूद्ध 'उडिसा मैंटेन्स आँफ पब्लिक आँर्डर एक्ट-1948 के अधीन कानूनी कार्रवाई की गई थी, और ऐसा लगता है कि इन भूतपूर्व राजाओं के, खास तौर पर कालाहांडी के राजा के, प्रोत्साहन और आर्थिक सहायता से ये लोग उस करार की कसौटी करने के लिए हाईकोर्ट तक गये हैं, जो आगे की कानूनी कार्रवाई के मूल में हैं। +","kuchh persons ke virooddh udisa maintens aanph pablik aanrdar ekt-1948 ke adhin kanooni order ki maintenance thi , aur aesa lagta hai ki in bhootpoorv rajaon ke , certain taur par kalahandi ke raja ke , protsahan aur aarthik sahayta se ye public us karar ki kasauti karne ke lie haeekort tak gaye hain , jo aage ki kanooni order ke mool men hain. +",7,2,neutral,negative,positive +"In kwick cricket the bowlers don't wait for the batsmen to be ready. This one has been designed for youngsters as it is more tiring and is usually presented during P.E. classes in English schools. Another change has been made to the games to make it faster, which is 'tip and run'. 'Tipty' run, 'Tipsy' run or 'Tippy-Go' rule. In this when the ball touches the bat, the batsman has to take a run even if he has not touched the ball deliberately. This rule can only be observed during instant play. In this instead of the batsman slowing the ball by his touch increases the speed. +","क्विक क्रिकेट (Kwik cricket)में गेंदबाज बल्लेबाज के तैयार होने का इन्तजार नहीं करता है यह अधिक थका देने वाला खेल बच्चों के लिए डिज़ाइन किया गया है. यह अक्सर अंग्रेजी स्कूलों में पी ई पाठ के लिए प्रयुक्त किया जाता है. इस खेल की गति बढ़ाने के लिए इसमें एक और संशोधन किया गया है ये हैं टिप और रन “टिप्टी” रन” टिप्सी रन या टिप्पी- गो नियम.इसमें जब गेंद बल्ले को छूती है तो बल्लेबाज को भागना ही होता है चाहे यह स्पर्श जान बूझ कर न किया गया हो या बहुत ही कम हो. यह नियम तत्काल खेल में ही देखा जा सकता है इसमें बल्लेबाज के द्वारा गेंद को रोकने के अधिकार को हटा कर इसकी गति को बढ़ने की कोशिश की गई है. +","kvik cricket Kwik cricket men bowlers batsmen ke ready hone ka youngsters nahin karta hai yah adhik tiring dene vala games bachchon ke lie dizain kiya gaya hai yah aksar english classes men pi ee path ke lie pryukt kiya bat hai is games ki change baane ke lie ismen ek aur snshodhan kiya gaya hai ye hain tip aur run faster run tipsi run ya tippi- go niyamismen jab ball balle ko chhooti hai to batsmen ko bhagna hi hota hai chahe yah touch jan boojh kar n kiya gaya ho ya bahut hi kam ho yah rule instant games men hi dekha ja sakta hai ismen batsmen ke dvara ball ko rokne ke adhikar ko hata kar iski change ko bane ki koshish ki gee hai +",6,2,neutral,neutral,positive +"Fluctuations in the production of raw jute, low yield, cost inflation, labour unrest, uncertain demand and obsolete machinery are some of its major problems. +","कच्चे जूट के उत्पादन में उतार-चढ़ाव, कम पैदावार, लागत स्फीती, श्रम असंतोष, अनिश्चित मांग, पुरानी मशीनें, कुछ इसकी प्रमुख समस्याऍं हैं. +","raw jute ke utpadan men utar-chaav, kam paidavar, cost inflation, labour unrest, uncertain demand, obsolete machinery, kuchh iski major problems hain +",8,1,negative,negative,negative +"This is true even if the larval stage has been artificially fed on capsularis diet. +","यह उस स्थिति में भी सत्य है जब लार्वा कैपसुलैरिस आहार ग्रहण करे। +","yah us sthiti men bhi saty hai jab larva capsularis diet grahan kare. +",6,5,neutral,neutral,positive +"Please enter a float value > =% 1 +","कृपया एक फ्लोट मूल्य भरें> =% 1 +","enter a float mooly enter 1 +",4,2,neutral,neutral,positive +"India and Peru, two ancient civilizations of the world, traditionally enjoy warm and friendly relations. +","विश्व की दो प्राचीन सभ्यताओं, भारत और पेरू के पारंपरिक रूप से हार्दिक और मैत्रीपूर्ण संबंध रहे हैं। +","world ki do ancient civilizations, bharat aur peroo ke parnprik roop se traditionally enjoy warm snbndh rahe hain. +",7,0,positive,neutral,positive +"In this too, their situation was fundamentally different from mine. +","इस प्रश्न को लेकर भी मेरे और उनके दृष्टिकोण में भारी अन्तर था। +","is different ko lekar bhi mine aur unke drishtikon men bhari antar situation +",3,1,neutral,neutral,neutral +"_ Apply filters to new messages in Inbox on this server +","इस सर्वर पर इनबाक्स में नए संदेश के लिए फिल्टर चलाएँ (_ A) +","is server par inbox men new messages ke lie filters chalaen _ A +",9,2,neutral,neutral,neutral +"Really move all photos and videos to the trash? +","क्या आप वाकई रद्दी में सारे फोटो और वीडियो खिसकाना चाहते हैं? +","kya aap vakee trash men sare photos aur videos khiskana chahte hain +",9,0,negative,neutral,neutral +"""So we led you astray because we were ourselves astray."" +","हम खुद गुमराह थे तो तुम को भी गुमराह किया +","ham khud astray the to tum ko bhi astray kiya +",8,2,neutral,neutral,neutral +"The cumulative size of all web databases in the security origin +","सुरक्षा उद्गम में सभी वेब डेटाबेस के संचयी आकार +","security origin men sabhi web databases ke cumulative size +",8,4,neutral,neutral,positive +"Nobody knows what matter might crop up during this period or what kind of attack might be launched against the government. +","यह कोई नहीं कह सकता कि इस काल के दौरान कौन-सा मामला उठ खड़ा हो या सरकार पर किस तरह का आक्रमण कर दिया जाए. +","yah koee nahin kah sakta ki is period ke dauran kaun-sa matter kind khara ho ya government par kis tarah ka attack kar diya jae +",8,0,negative,negative,negative +"They must align their activities with national development goals. +","उन्हें अपने कार्यकलापों को राष्ट्रीय विकास लक्ष्यों के साथ जोड़ देना चाहिए। +","unhen apne activities ko national development goals ke sath jor dena national +",7,3,neutral,neutral,neutral +"The financial ill health of the State Electricity Boards is due to excessive cross - subsidization, poor economic efficiency, poor maintenance of network, and poor collection of revenue. +","राज्य बिजली बोर्डो की खस्ता हालत उनकी अत्यधिक सब्सिडी, खराब आर्थिक दक्षता, नेटवर्क का असंतोषजनक रख-रखाव और राजस्व की खराब वसूली के कारण है। +","state electricity boards ki khasta halat unki atydhik sabsidi, poor economic efficiency, netavark ka asntoshajanak rakh-rkhav aur rajasv ki kharab vasooli ke karan hai. +",8,0,negative,negative,negative +"It starts off at i and it just keeps digging itself deeper and deeper +","यह मैं पर बंद शुरू होता है और यह सिर्फ ही गहरी और गहरी खुदाई रहता है +","yah i par bnd shuroo hota hai aur yah sirph hi deeper aur deeper khudaee rahta hai +",7,3,negative,neutral,neutral +"The combined CPU usage of all processes related to% {SHORT _ PRODUCT _ NAME} +","%{SHORT _ PRODUCT _ NAME} से संबंधित सभी प्रक्रियाओं का संयुक्त CPU उपयोग +","SHORT _ PRODUCT _ NAME se snbndhit sabhi prakriyaon ka snyukt CPU usage +",9,0,neutral,neutral,neutral +"And if - - just like when x was equal to 0, this term equaled +","और अगर बस जब एक्स इस अवधि equaled 0 के बराबर था की तरह- +","aur agar bas jab eks is term equaled 0 ke equal tha ki tarah- +",6,1,neutral,neutral,positive +"The number of columns that a child spans +","स्तंभों की संख्या जो संतति तक फैला है +","columns ki number jo child tak phaila hai +",6,3,neutral,neutral,positive +"A preliminary outline of a proposal, speech, book, presentation. +","किसी प्रस्ताव, भाषण, पुस्तक अथवा प्रस्तुतिकरण इत्यादि के लिए तैयार किया गया प्रारम्भिक खाका/प्रारूप। +","kisi proposal , speech , preliminary athva presentation ityadi ke lie taiyar kiya gaya prarambhik khakapraroop. +",7,2,neutral,neutral,neutral +"They say: 'You to whom the Remembrance is sent down, you are indeed mad. +","वे कहते है, ""ऐ व्यक्ति, जिसपर अनुस्मरण अवतरित हुआ, तुम निश्चय ही दीवाने हो! +","ve kahte hai, ae vyakti, jisapar remembrance avatrit huaa, tum nishchay hi divane ho! +",8,1,negative,neutral,negative +"get our egotism out of the way. +","अपने अहंकरवाद रास्ते से हटा देना है. +","apne egotism raste se hata dena hai +",9,0,negative,neutral,negative +"If you ask them, ""Who has created the heavens and the earth?"", they will surely answer, ""The Almighty, the All Knowing One has created them."" +","और (ऐ रसूल) अगर तुम उनसे पूछो कि सारे आसमान व ज़मीन को किसने पैदा किया तो वह ज़रूर कह देंगे कि उनको बड़े वाक़िफ़कार ज़बरदस्त (ख़ुदा ने) पैदा किया है +","aur earth rasool agar tum unse poochho ki sare aasman v zamin ko kisne heavens kiya to vah zaroor kah denge ki unko bare almighty zabaradast uda ne heavens kiya hai +",6,1,neutral,neutral,positive +"Now, what stands in the way of this? +","अब इस सब के मार्ग में क्या अवरोध है ? +","ab is sab ke way men kya avrodh hai +",8,2,neutral,neutral,neutral +"A reward from your Lord, a gift according to a reckoning: +","(ये) तुम्हारे परवरदिगार की तरफ से काफ़ी इनाम और सिला है +","ye lord paravardigar ki taraph se kafi reward aur sila hai +",7,2,positive,neutral,positive +"Which (that Book with Allah) none can touch but the purified (i. e. the angels). +","इसको बस वही लोग छूते हैं जो पाक हैं +","isko allah vahi book purified hain jo angels hain +",5,4,neutral,neutral,neutral +"computing will actually merge with the physical world. +","कम्प्यूटिंग यथार्थ में भौतिक संसार के साथ मिल जाएगी। +","kampyooting yatharth men physical world ke sath mil jaegi. +",7,1,neutral,negative,neutral +"The East India Company and the British authorities, however, treated him as a pensioner entitled only to the nominal status of a king whose jurisdiction lay within the walls of the Red Fort and who was entitled to a monthly stipend of Rs one lakh. +","यह अलग बात है कि ईस्ट इंडिया कंपनी और ब्रिटिश सरकार उन्हें सिर्फ एक पेंशनभोगी और नाममात्र का शासक समझती थी, जो हर माह एक लाख रूपए के वजीफे का हकदार था और जिसका अधिकार-क्षेत्र लाल किले की चारदीवारी तक सीमित था. +","yah alag bat hai ki east india company aur british sarkar unhen sirph ek penshanbhogi aur nammatr ka shasak samajhti thi, jo har mah ek lakh roope ke vajiphe ka hakdar tha aur jiska adhikar-kshetr lal kile ki chardivari tak simit tha +",8,1,neutral,neutral,positive +"National integration is essential for the idea of India to grow. +","भारत के विकास के विचार के लिए राष्ट्रीय अखंडता अत्यावश्यक है। +","india to grow ke vichar ke lie rashtriy integration is essential +",8,0,positive,neutral,neutral +"Detracter, spreader abroad of slanders, +","कचोके लगाता, चुग़लियाँ खाता फिरता हैं, +","kachoke lagata, spreader abroad phirta hain, +",4,5,negative,neutral,neutral +"Or you may be unable to work because of a serious illness or disability. +","या फिर आप किसी गंभीर बीमारी या फिर विकलांगता के कारण काम नही कर सकेंगे । +","ya phir aap kisi gnbhir illness ya phir illness or disability kam unable to work . +",4,1,negative,negative,negative +"ANF 8 for Claiming Duty Drawback on All Industry Rates / Fixation of Drawback Rates / Refund of Terminal Excise Duty +","एएनएफ 8 सभी उद्योग किराये पर ड्यूटी ड्राबैक/शुल्क वापसी का निर्धारण/टर्मिनल उत्पाद शुल्क की वापसी का दावा करने के लिए +","eeneph 8 sabhi udyog kiraye par dyooti drabaikshulk vapsi ka terminal excise duty ki vapsi ka dava karne ke lie +",7,0,neutral,neutral,neutral +"They are allowed to accept / renew public deposits for a minimum period of 12 months and maximum period of 60 months. +","उनके लिए कम से कम 12 माह की अवधि के लिए और अधिकतम 60 माह की अवधि के लिए सार्वजनिक जमाओं को स्वीककार/नवीकरण करने की अनुमति है। +","unke lie minimum se minimum 12 months ki period ke lie aur maximum renew months ki period ke lie public deposits ko svikkarnvikaran karne ki anumti hai. +",8,1,neutral,neutral,positive +"Whether menu items should have accelerators +","क्या मेन्यू मद में त्वरक होने चाहिए +","kya menyoo mad men accelerators hone chahie +",8,3,neutral,neutral,neutral +"As for the people of the right hand, how happy they will be! +","और दाहिने हाथ वाले (वाह) दाहिने हाथ वालों का क्या कहना है +","aur people hand vale happy people hand valon ka kya kahna hai +",6,2,positive,positive,positive +"to beam a representation of our loved ones into our living rooms - +","हमारे चाहने वालों के प्रतिनिधित्व को बीम करने में- +","hamare loved valon ke beam a representation karne men- +",6,1,positive,neutral,positive +"Budget allocation under Plan Scheme for 2015 - 16 - Rs. 16. 11 Crores. +","वर्ष 2015-16 के लिए प्लान स्कीम के अंतर्गत बजट आवंटन 16.11 करोड़ रू. है। +","varsh 2015-16 ke lie plan scheme ke rs budget allocation 1611 crores roo hai. +",7,2,neutral,neutral,neutral +"You need to restart the application. +","आपको अनुप्रयोग को फिर आरंभ करने की जरूरत है. +","aapko application ko phir restart karne ki jaroorat hai +",8,4,neutral,neutral,neutral +"A structure above the surface. +","पृष्ठ या सतह से ऊपर संरचना. +","surface ya satah se oopar structure +",9,2,neutral,neutral,neutral +"Rural electrification (Ekal Electric House) +","ग्रामीण विद्युतीकरण (एकल बिजली घर) +","rural electrification ekal electric ghar +",7,1,neutral,neutral,neutral +"And that is for Allah not difficult. +","और ये कुछ खुदा के वास्ते दुशवार नहीं +","aur ye kuchh allah ke vaste difficult nahin +",8,3,positive,neutral,positive +"He covered the vacuum tube with black paper and with card - board through which no visible light could pass. +","उन्होंने निर्यात ट्यूब को काले कागज और कार्डबोर्ड से ढंक दिया, जिससे होकर कोई दृश्य प्रकाश एक और से दूसरी और नहीं गुजर सकता था। +","unhonne niryat tube with black kagaj aur covered the vacuum diya, jisse hokar koee drishy prkash ek aur se doosri aur nahin gujar sakta tha. +",6,3,neutral,neutral,negative +"The Overseas Indian community estimated at over 25 million is spread across every major region in the world. +","प्रवासी भारतीय समुदाय अनुमानतः 2.5 करोड़ से अधिक है। जो विश्व के हर बड़े क्षेत्र में फैले हुए हैं। +","overseas indian community anumanta 25 karor se adhik hai. jo vishv ke har bare kshetr men phaile hue hain. +",7,1,neutral,neutral,neutral +"Decisions in a proprietary concern are easy and prompt. +","स्वामित्व प्रतिष्ठान में निर्णय सुगमता से और त्वरित रूप में लिए जा सकते हैं। +","proprietary concern men decisions easy se aur prompt roop men lie ja sakte hain. +",8,1,positive,neutral,positive +"Said He, 'This is for Me a straight path: +","ख़ुदा ने फरमाया कि यही राह सीधी है कि मुझ तक (पहुँचती) है +","uda ne pharmaya ki yahi path straight hai ki mujh tak pahunchti hai +",7,3,positive,neutral,positive +"I am a trustworthy messenger to you: +","मै तो यक़ीनन तुम्हारा अमानतदार पैग़म्बर हूँ तो ख़ुदा से डरो +","mai to yainan trustworthy messenger paimbar hoon to uda se daro +",8,1,positive,neutral,positive +"Delhi fort is also called as red fort since it is red in color. +","दिल्ली के किले को लाल-किला भी कहते हैं क्योंकि यह लाल रंग का है। +","called as red ko called bhi kahte hain kyonki yah lal red in color +",4,2,neutral,neutral,neutral +"and while training, I was hit by a bus. +","अपने अभ्यास के दौरान, एक बस ने मुझे टक्कर मार दी। +","apne training ke dauran , ek bus ne i takkar mar di. +",8,1,negative,neutral,neutral +"We must now utilize our enlarged capacities to raise the general standards of living. +","हमें अब अपनी बढ़ी हुई क्षमता का उपयोग जीवन के आम स्तर को ऊंचा उठाने के लिए करना होगा। +","hamen ab apni bai huee capacities ka upyog living ke general standards ko ooncha uthane ke lie karna hoga. +",8,0,positive,neutral,neutral +"The type of navigation triggering this decision +","इस निर्णय को ट्रिगर करने वाले संचरण के प्रकार +","is triggering this decision karne vale type of navigation +",6,1,neutral,negative,neutral +"PRESIDENT OF INDIA’S MESSAGE ON THE EVE OF NATIONAL DAY OF SEYCHELLES, Rashtrapati Bhavan : 28.06.2017 +","सेशल्स के राष्ट्रीय दिवस की पूर्व संध्या पर भारत के राष्ट्रपति का संदेश, राष्ट्रपति भवन : 28.06.2017 +","seychelles ke national day ki poorv eve par india ke president ka message , president : 28062017 +",6,4,neutral,neutral,neutral +"The Indo-Japanese forces advanced rapidly on all the three sectors of the wide front . +","भारतीय जापानी सेनाएं दीर्घ सीमांत के तीनों सेक़्टरों में तेजी से आगे बढ़ रही थीं . +","bhartiy japani forces dirgh simant ke tinon sectors men teji se front ba rahi thin +",7,2,neutral,neutral,positive +"A material which is gluey, transparent and colloidal present in the cell. +","कोशिका में स्थित एक पदार्थ जो लसीला, पारदर्शी तथा कलॉइडल होता है। +","cell men present ek material jo lasila , transparent colloidal kalidal hota hai. +",7,2,neutral,neutral,neutral +"But those who deny Our messages will be seized by nemesis for being disobedient. +","रहे वे लोग, जिन्होंने हमारी आयतों को झुठलाया, उन्हें यातना पहुँचकर रहेगी, क्योंकि वे अवज्ञा करते रहे है +","rahe ve log, deny our messages ko jhuthlaya, unhen yatna pahunchakar rahegi, kyonki ve avajnja karte rahe hai +",7,1,neutral,neutral,negative +"His mother was darning a torn sock over a wooden mushroom. +","उसकी माँ लकड़ी के बने कुकुरमुत्ते पर कोई फटा मोज़ा सी रही थी। +","uski mother wooden ke bane mushroom par koee phata torn si rahi thi. +",7,4,negative,neutral,negative +"He raised the heavens and set up everything in balance, +","उसने आकाश को ऊँचा किया और संतुलन स्थापित किया- +","usne raised the heavens kiya aur balance sthapit raised +",6,1,positive,neutral,positive +"In most countries in the world, there are approximately 105 female births for every 100 males. +","विश्व के अधिकतर देशों में, प्रति 100 पुरुषों के पीछे लगभग 105 स्त्रियों का जन्म होता है, +","world ke adhikatar deshon men, prti 100 purushon ke pichhe lagabhag 105 striyon ka janm hota hai, +",8,3,neutral,neutral,neutral +"Recycled paper uses less natural resources and less toxic chemicals in paper making process. +","कागज बनाते समय पुनः चक्रित कागज कम प्राकृतिक संसाधन और कम विषाक्त रसायन का उपयोग करता है। +","paper banate process recycled chakrit paper less natural resources aur less toxic chemicals ka upyog karta hai. +",7,2,neutral,neutral,positive +"You can expect to receive a visit from your health visitor: +","आप अपेक्षा कर सकते है कि आपका आरोग्य अधिकारी आपको मिलने के लिए आये ः | +","aap apeksha kar sakte hai ki aapka visit adhikari aapko milne ke lie aaye a +",6,1,neutral,neutral,neutral +"This term is used to mention two parts or components usually in pairs. +","सामान्यतः एक वस्तु के दो भाग या उपकरणों की जोड़ियों केलिए इस पद का प्रयोग किया जाता है। +","term ek vastu ke do parts or components ki joriyon kelie is pad ka pryog kiya jata hai. +",6,4,neutral,neutral,neutral +"In their case, it is included in the capitation fee upto a distance of 5 km. between the Clinic of IMP and IP 's residence. +","उनके मामले में, इसे बीमा चिकित्सा व्यवसायी के क्लीनिक और बीमाकृत व्यक्ति के आवास के बीच 5 कि. मी. की दूरी तक प्रति व्यक्ति शुल्क में शामिल किया जाता है। +","unke case men, ise bima chikitsa vyavsayi ke klinik aur bimakrit vyakti ke aavas ke bich 5 ki mi ki doori tak prti vyakti shulk men shamil kiya jata hai. +",8,4,neutral,neutral,neutral +"Which (that Book with Allah) none can touch but the purified (i. e. the angels). +","इसको बस वही लोग छूते हैं जो पाक हैं +","isko bas vahi log chhoote hain jo pak hain +",8,4,neutral,neutral,neutral +"Nor is it the speech of a soothsayer—little do you take heed. +","और न किसी काहिन की (ख्याली) बात है तुम लोग तो बहुत कम ग़ौर करते हो +","aur n kisi soothsayer ki khyali bat hai tum log to bahut kam aur karte ho +",7,4,negative,neutral,neutral +"The Council has 28 members - 20 from the newspaper world, five are Members of Parliament three nominated by the Speaker of the Lok Sabha and two by the Chairman of the Rajya Sabha and remaining three are nominated by the Sahitya Akademi, the Bar Council of India and the University Grants Commission. +","परिषद में 28 सदस्य होते है-20 समाचार जगत से, पॉँच संसद-सदस्य तीन को लोकसभा के अध्यक्ष और दो को राज्यसभा के सभापति नामजद करते है और शेष तीन का नामांकन साहित्य अकादमी, भारत के बार कौसिल और विश्विलय अनुदान आयोग द्वारा किया ताजा है। +","parishad men 28 sadasy hote hai-20 newspaper world se, pnch snsad-sadasy tin ko lokasbha ke adhyaksh aur do ko rajyasbha ke sabhapti namajad karte hai aur shesh tin ka namankan sahity akadmi, bharat ke bar kausil aur vishvilay anudan aayog dvara kiya taja hai. +",7,3,neutral,neutral,positive +"Auto Generate Assoc Accessors (Java) +","एसॉक एक्सेसर्स स्वचालित जनरेट करें (जावा) +","auto accessors svchalit janret karen java +",7,2,neutral,neutral,neutral +"India is grateful for Tanzania’s support to India’s claim for permanent membership of the UN Security Council. +","भारत, संयुक्त राष्ट्र सुरक्षा परिषद की स्थायी सदस्यता की हमारी दावेदारी के प्रति तंजानिया के समर्थन के॒ लिए आभारी है। +","bharat, snyukt rashtr suraksha claim for permanent sadasyta ki hamari davedari ke prti tnjaniya ke samarthan ke lie aabhari hai. +",8,1,positive,positive,positive +"and there go round them youths, their own, as if they were hidden pearls. +","(और ख़िदमत के लिए) नौजवान लड़के उनके आस पास चक्कर लगाया करेंगे वह (हुस्न व जमाल में) गोया एहतियात से रखे हुए मोती हैं +","aur idamat ke lie naujvan larke unke aas pas chakkar lagaya karenge vah husn v jamal men goya ehtiyat se rakhe hue moti hain +",5,8,neutral,neutral,neutral +"He said, “This is my staff; I support myself on it, and I knock down leaves for my sheep with it, and there are other uses for me in it. ” +","उसने कहा, ""यह मेरी लाठी है। मैं इसपर टेक लगाता हूँ और इससे अपनी बकरियों के लिए पत्ते झाड़ता हूँ और इससे मेरी दूसरी ज़रूरतें भी पूरी होती है।"" +","usne kaha, yah meri lathi hai. main isapar tek lagata hoon aur isse apni bakriyon ke lie patte jharta hoon aur isse meri doosri zaroorten bhi poori hoti hai. +",10,0,neutral,neutral,positive +"57. Sam Sand dunes are a gift of nature to man. +","57. सम रेत के टीले मानव को प्रकृति का सर्वोत्तम उपहार है। +","57 sam ret ke dunes man ko prkriti ka sarvottam uphar nature +",5,5,positive,neutral,positive +"Pro tempore appointment means an appointment carrying a definite rate of pay sanctioned for a limited time only. +","अल्पकालीन नियुक्ति का अर्थ उस नियुक्ति से होता है, जिसमें मात्र एक निश्चित समयावधि के लिए ही निश्चित दर से वेतन स्वीकृत होता है। +","pro rate of pay us niyukti se hota hai, jismen matr ek definite rate ke lie hi nishchit dar se pay sanctioned hota hai. +",6,3,neutral,neutral,negative +"Together, we shall take India into the 21st century as a strong, self - confident, and prosperous nation. +","हम सब मिलकर सशक्त, आत्मविश्वास और समृद्ध राष्ट्र के रुप में भारत का 21वीं शताब्दि में पदार्पण कराएंगे। +","ham sab milakar strong , confident aur prosperous nation ke rup men india ka 21vin century men padarpan karaenge. +",9,2,positive,negative,positive +"Proceed to a shadow rising in three columns: +","(धुएँ के) साये की तरफ़ चलो जिसके तीन हिस्से हैं +","proceed ke saye ki taraf chalo jiske tin hisse hain +",6,2,neutral,neutral,neutral +"When Rano reached Kak at the dead of night, Natar tried to dissuade him from going up to Mumai 's chamber telling him that Mumal had taken another lover. +","जब आधी रात के समय, राणो काकमहल पहुँचा तो नातर ने उसे मूमल के कक्ष में यह कहकर जाने से मना किया कि मुमल अब और किसी से प्रेम करती है। +","jab aadhi night ke samay , rano kak pahuncha to natar ne use moomal ke chamber men yah kahakar jane se mana kiya ki mumal ab aur kisi se lover karti dead +",5,4,neutral,neutral,neutral +"In order to measure blood pressure the cuff is wound round the upper arm and the stethoscope is put below the cuff, over the artery, to hear the pulsation of blood passing through it. +","रक्तदाब या रक्तचाप मापने के लिए कफ को ऊपरी बाजू पर लपेट दिया जाता है और स्टैथोस्कोप उसके नीचे, धमनी के ऊपर रखा जाता है जिससे, उससे होकर गुजरने वाले रक्त के स्पंदन को सुना जा सके। +","pressure ya raktchap mapne ke lie cuff ko upper arm par lapet diya jata hai aur staithoskop uske niche , artery ke oopar rakha jata hai order , usse hokar passing vale blood ke pulsation ko suna ja sake. +",7,1,neutral,neutral,negative +"- Leonardo da Vinci (1452 - 1519), Italian Artist, Composer and Scientist - +","लेओनार्दो दा विंची (१४५२-१५१९), इतालवी कलाकार, संगीतकार एवं वैज्ञानिक +","leonardo da vinchi १४५२-१५१९, italian artist, composer and scientist +",8,4,neutral,neutral,neutral +"But man wishes to do wrong (even) in the time in front of him. +","बल्कि मनुष्य चाहता है कि अपने आगे ढिठाई करता रहे +","balki man wishes hai ki apne front dhithaee karta rahe +",6,2,neutral,negative,negative +"Setting up of EIL - R & D Centre to support National Laboratories +","राष्ट्रीय प्रयोगशालाओं के सहयोग के लिए र्इ. आर्इ. एल.-आर. एण्ड डी. सेन्टर की स्थापना। +","national laboratories ke centre ke lie ri aari el-aar end r sentar ki sthapna. +",4,3,neutral,neutral,positive +"And now we can just unwind this. +","और अब हम सिर्फ यह खोलना कर सकते हैं। +","aur ab ham sirph yah kholna kar sakte hain. +",5,8,positive,neutral,neutral +"Indeed in that are signs, and indeed, We are ever testing [Our servants]. +","इसमें शक नहीं कि हसमें (हमारी क़ुदरत की) बहुत सी निशानियाँ हैं और हमको तो बस उनका इम्तिहान लेना मंज़ूर था +","ismen shak nahin ki hasmen hmari udarat ki bahut si signs hain aur hamko to bas unka imtihan lena mnzoor tha +",7,1,neutral,neutral,neutral +"I implicitly want to use log and exponential rules to do it. +","मैं संकेत भी यह करने के लिए लॉग इन करें और घातीय नियम उपयोग करना चाहते हैं। +","i snket bhi yah karne ke lie log in karen aur exponential rules upyog karna chahte hain. +",5,5,neutral,neutral,positive +"And most of them believe not in Allah without associating (other as partners) with Him! +","इनमें अधिकतर लोग अल्लाह को मानते भी है तो इस तरह कि वे साझी भी ठहराते है +","inmen adhikatar log allah ko mante bhi hai to is tarah ki ve sajhi bhi thahrate hai +",9,1,negative,neutral,neutral +"It provides the fundamental physics basis of nuclear energy development. +","यह मौलिक भौतिकी को न्यूक्लीय ऊर्जा विकास का आधार प्रदान करता है। +","yah fundamental physics ko nuclear energy development ka aadhar prdan karta hai. +",8,3,neutral,neutral,positive +"Please circulate deposit book to new members. +","जमा हुंडी नये लोगों को वितरित कर दो। +","deposit hundi naye logon ko vitrit kar do. +",8,1,neutral,neutral,positive +"On the passage from the Gate to the Central Hall from where the procession passes, red baize cloth is spread. +","जहाँ से शोभायात्रा गुजरती है अर्थात् मुख्य द्वार से केन्द्रीय कक्ष तक लाल कालीन बिछाया जाता है। +","jahan se procession passes hai arthat mukhy dvar se kendriy kaksh tak lal kalin bichhaya jata hai. +",8,1,neutral,neutral,neutral +"But we know we're not perfect , and if you're not happy with what Social Services has done , you've got the right to complain about it . +","लेकिन हमें पता है हम परिपक्व नही हैं , और अगर आप सामाजिक सेवाएं के काम से नाराज हैं तो आपको शिकायत करने का अधिकार है | +","lekin hamen pata hai ham perfect nahi hain , aur agar aap social services ke kam se naraj hain to aapko shikayat karne ka adhikar hai +",10,0,negative,positive,negative +"A culture of prevention rather than a culture of reaction is required in the mining industry as a value-driven commitment towards zero tolerance to such incidents. +","ऐसी दुर्घटनाओं को बिलकुल सहन न करने की मूल्य प्रेरित प्रतिबद्धता के रूप में,खनन उद्योग में प्रतिक्रिया की संस्कृति के बजाय बचाव की संस्कृति की आवश्यकता है। +","aesi durghatnaon ko bilkul sahan n karne ki mooly prerit prtibaddhta ke roop men,mining industry men culture of reaction ke bajay culture of prevention ki aavashyakta hai. +",7,2,neutral,neutral,positive +"ODD (2) returns 3 +","ODD (2) का परिणाम होगा 3 +","ODD 2 ka returns hoga odd +",5,3,neutral,neutral,negative +"The tax paid by companies on their profits / capital gains. +","कंपनियों द्वारा उनके द्वारा कमाए गए लाभ/पूंजी लाभ पर दिया जाने वाला कर। +","tax dvara unke dvara kamae ge labhpoonji profits par diya jane vala kar. +",7,4,neutral,neutral,positive +"And We have not created the heaven and the earth and all that is between them without purpose; this is what the disbelievers assume; therefore ruin is for the disbelievers, by the fire. +","हमने आकाश और धरती को और जो कुछ उनके बीच है, व्यर्थ नहीं पैदा किया। यह तो उन लोगों का गुमान है जिन्होंने इनकार किया। अतः आग में झोंके जाने के कारण इनकार करनेवालों की बड़ी दुर्गति है +","hamne heaven aur earth ko aur jo kuchh unke bich hai , vyarth nahin paida purpose yah to un logon ka guman hai jinhonne disbelievers purpose ata fire men jhonke jane ke karan disbelievers karnevalon ki bari durgti hai +",7,0,negative,neutral,negative +"There is no state you are in, whether reading from the Qur 'an, or doing something else, but We are watching you as you are engaged in it. There is not the weight of an atom on the earth and in the heavens that is hidden from your Lord, nor is there anything smaller or greater than this but is recorded in the perspicuous Book. +","तुम जिस दशा में भी होते हो और क़ुरआन से जो कुछ भी पढ़ते हो और तुम लोग जो काम भी करते हो हम तुम्हें देख रहे होते है, जब तुम उसमें लगे होते हो। और तुम्हारे रब से कण भर भी कोई चीज़ छिपी नहीं है, न धरती में न आकाश में और न उससे छोटी और न बड़ी कोई त चीज़ ऐसी है जो एक स्पष्ट किताब में मौजूद न हो +","lord jis state men bhi hote ho aur qur se jo kuchh bhi pate ho aur lord log jo kam bhi karte ho ham tumhen dekh rahe hote hai , jab lord usmen lage hote ho. aur tumhare rab se atom bhar bhi koee something chhipi nahin hai , n earth men n aakash men aur n usse chhoti aur n bari koee weight something aesi hai jo ek perspicuous book men maujood n ho +",8,0,neutral,negative,positive +"The chiefs of those who disbelieved among his people said: we behold thee except as a human being like us, and we behold not any follow thee except the meanest of us, by an immature opinion; nor We behold in you any exellency over us; nay! we deem you liars. +","इसपर उसकी क़ौम के सरदार, जिन्होंने इनकार किया था, कहने लगे, ""हमारी दृष्टि में तो तुम हमारे ही जैसे आदमी हो और हम देखते है कि बस कुछ ऐसे लोग ही तुम्हारे अनुयायी है जो पहली स्पष्ट में हमारे यहाँ के नीच है। हम अपने मुक़ाबले में तुममें कोई बड़ाई नहीं देखते, बल्कि हम तो तुम्हें झूठा समझते है।"" +","isapar uski aum ke sardar, jinhonne inkar kiya tha, kahne lage, hmari drishti men to tum hamare hi jaise aadmi ho aur ham dekhte hai ki bas kuchh aese log hi tumhare anuyayi hai jo pahli spasht men hamare yahan ke nich hai. ham apne muable men tummen koee baraee nahin dekhte, balki ham to deem you liars hai. +",3,5,negative,negative,negative +"Your God is the One God. But the hearts of those who do not believe in the Hereafter are steeped in rejection of the Truth, and they are given to arrogance. +","तुम्हारा पूज्य-प्रभु अकेला प्रभु-पूज्य है। किन्तु जो आख़िरत में विश्वास नहीं रखते, उनके दिलों को इनकार है। वे अपने आपको बड़ा समझ रहे है +","tumhara poojy-prbhu akela prbhu-poojy hai. kintu jo aairat men vishvas nahin rakhte, unke dilon ko inkar hai. ve apne aapko bara samajh rahe hai +",7,6,neutral,positive,positive +"Thus a binary series of numbers would be transmitted. +","इस प्रकार दिवचर श्रेणी की संख्याओं को प्रेषित किया जा सकता हैं। +","is prkar binary series ki numbers ko preshit kiya ja sakta hain. +",9,0,neutral,neutral,neutral +"Lahore gate is the main entrance +","लाहौर गेट इसका मुख्य प्रवेशद्वार है। +","lahaur get iska mukhy main entrance +",6,2,neutral,neutral,neutral +"One of my predecessors left on my table a framed quotation which reads: +","मेरे एक पूर्ववर्ती ने मेरी मेज पर फ्रेम किया हुआ कथन छोड़ा जो इस प्रकार थाः +","mere ek predecessors ne meri mej par phrem kiya huaa kathan chhora jo is prkar thaa +",8,3,neutral,neutral,neutral +"For 5to 6days Suddodhana arranged a programme for naming ceremony and appointed 8 brahmin pandits to tell about the future. +","सुधोधना ने पांचवें दिन एक नामकरण समारोह आयोजित किया और आठ ब्राह्मण विद्वानों को भविष्य पढ़ने के लिए आमंत्रित किया। +","suddodhana ne panchven din ek namakaran ceremony aayojit kiya aur aath brahmin vidvanon ko future pane ke lie aamntrit kiya. +",7,3,neutral,neutral,neutral +"Handa is charged with using his connections in the Congress to influence the Delhi government . +","हांड़ा पर दिल्ली सरकार को प्रभावित करने के लिए कांग्रेस में अपने संबंधों के इस्तेमाल का आरोप है . +","handa par delhi government ko prbhavit karne ke lie congress men apne snbndhon ke istemal ka aarop hai +",9,1,neutral,neutral,negative +"So too the world picture is perceived only in the reflected light of the Self through the darkness of avidya ignorance. +","इसी तरह विश्व-चित्र भी केवल अविद्या अज्ञान के अंधकार के बीच आत्मा के प्रतिबंबित प्रकाश में ही दिखाई पड़ता है। +","isi tarah vishv-chitr bhi avidya ignorance ajnjan ke andhkar ke bich aatma ke prtibnbit prkash men hi dikhaee parta hai. +",6,7,neutral,negative,negative +"While the US urged India to begin a process of negotiation with the Kashmiri leadership, Clinton made it clear to General Pervez Musharraf that the US expected him to rein in the terrorists Pakistan was arming and training. +","जहां अमेरिका ने भारत से कश्मीरी नेतृत्व के साथ बातचीत की प्रक्रिया शुरू करने का अनुरोध किया, वहीं इंक्लटन ने परवेज़ मुशर्रफ से साफ कहा कि वे उन आतंकवादियों पर लगाम लगाएं, जिन्हें पाकिस्तान हथियार और प्रशिक्षण दे रहा है. +","jahan general ne india se kashmiri leadership ke sath negotiation ki process shuroo karne ka anurodh kiya , vahin clinton ne pervez musharraph se clear kaha ki ve un terrorists par lagam lagaen , jinhen pakistan hathiyar aur training de raha hai +",8,3,neutral,neutral,negative +"virtual tor of Taj mahal in Internet. +","ताजमहल का इंटरनेट पर वर्चुअल टूर +","taj ka internet par virtual tor +",9,0,neutral,neutral,neutral +"Ripe plantains, some sweets and other ingredients of worship are also put in the donga filled with rice. +","जिस डोंगे में चावल भरा होता है, उसमें पके केले, कुछ मिष्ठान और पूजा-सामग्री भी रख दी जाती है। +","jis donge filled with rice hota hai, usmen pake kele, kuchh mishthan aur pooja-samagri bhi rakh di jati hai. +",8,0,neutral,neutral,positive +"They could not make the company earn a rupee in profit even when its line of credit with the bank was open. +","ये ही वे लोग हैं जो तब भी कंपनी को एक भी पैसे का मुनाफा नहीं कमा कर दे सके जब उसे बैंक से ऋण मिलता था. +","ye hi ve log hain jo tab bhi company ko ek bhi rupee ka profit nahin line kar de sake jab use credit se rin open tha +",7,3,negative,neutral,positive +"I shall not , however , attempt to infer that these murders must have been previously sanctioned by the prisoner ; mere inference on such a point cannot be accepted in a court of justice . +","बहरहाल , मैं यह अनुमान नहीं लगाना चाहता था कि बंदी ने पहले ही इन हत्याओं को मंजूरी दी थी या नहीं , क्योंकि न्याय की अदालत में सिर्फ ऐसे अनुमान को स्वीकार नहीं किया +","baharhal , main yah inference nahin lagana chahta tha ki prisoner ne pahle hi in attempt ko mnjoori di thi ya nahin , kyonki justice ki court men sirph aese inference ko svikar nahin kiya +",8,1,negative,negative,negative +"that God may distinguish the corrupt from the good, and place the corrupt one upon another, and so heap them up all together, and put them in Gehenna; those are the losers. +","ताकि अल्लाह नापाक को पाक से छाँटकर अलग करे और नापाकों को आपस में एक-दूसरे पर रखकर ढेर बनाए, फिर उसे जहन्नम में डाल दे। यही लोग घाटे में पड़नेवाले है +","taki allah napak ko pak se chhantakar alag kare aur napakon ko aapas men ek-doosre par rakhakar dher banae, phir use jahannam men dal de. yahi log ghate men parnevale hai +",4,7,negative,negative,positive +"No such interface ‘% s' +","कोई अंतरफलक ‘% s 'नहीं +","koee interface s nhin +",8,0,neutral,neutral,negative +"Saccus endolymphaticus is also known as endolymphatic sac. +","अन्तरुदक कोश को अन्तः कर्णोदक कोश के रूप में भी जाना जाता है. +","antrudak sac ko anta endolymphatic sac ke roop men bhi jana jata hai +",7,1,neutral,neutral,neutral +"Retrieving quota information for folder '% s' +","% s फ़ोल्डर के लिए के लिए कोटा प्राप्त कर रहा है +","s folder ke lie ke lie quota information kar raha hai +",4,5,neutral,neutral,neutral +"The answer to this was ready in Satish 's mind. +","'>> इसका जवाब सतीश के मन में तैयार था। +","iska answer satish ke man men ready mind +",7,1,neutral,neutral,positive diff --git a/Dataset making/same_sentiment_rows.csv b/Dataset making/same_sentiment_rows.csv new file mode 100644 index 0000000..fd2fc45 --- /dev/null +++ b/Dataset making/same_sentiment_rows.csv @@ -0,0 +1,6649 @@ +English,Hindi,Hinglish,twitter_roberta,beto_sentiment,vader_sentiment +"Program module is a file that contains instructions which are either in the form of source code or machine language. +","माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत कोड या मशीन भाषा के रूप में अनुदेश निहित होते हैं। +","module , ek program hoti hai , jismen ya to source code ya machine language ke form men instructions nihit hote hain. +",neutral,neutral,neutral +"and, when reminded, do not remember +","और जब उन्हें याद दिलाया जाता है, तो वे याद नहीं करते, +","aur jab unhen yad dilaya jata hai , to ve yad nahin karte , +",neutral,neutral,neutral +"you won the TED Prize 2011. +","तुम्हें २०११ का टेड प्राइज़ मिल गया है. +","tumhen २०११ ka ted prize mil gaya hai +",positive,positive,positive +"He gone to Kerodemal College of Delhi University, where he taken Science Graduate Degree. +","उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्वविद्यालय के किरोड़ीमल कॉलेज चले गए जहां इन्होंने विज्ञान स्नातक की उपाधि प्राप्त की। +","unhonne bad science karne ke lie ye delhi university ke kirorimal college chale ge jahan inhonne vijnjan graduate ki degree prapt ki. +",neutral,neutral,neutral +"Excavations made in Malabar have proved the existence of chambers in which massive earthenware urns had been kept. +","मालाबार में खुदाई के कमरों में रखे हुए बड़े-बड़े बर्तन मिले हैं जिनमे शव रखे जाते थे। +","malabar men khudaee ke kamron men rakhe hue bare-bare bartan mile hain jinme shav rakhe jate the. +",neutral,neutral,neutral +"And leave them desolate waste. +","और धरती को एक समतल चटियल मैदान बनाकर छोड़ेगा +","aur dharti ko ek samatal desolate maidan banakar chhorega +",negative,negative,negative +"It belongs to the seventh century if not earlier , and was perhaps intended originally for the Buddhist creed , but was adopted later for a Vishnu temple , the principal deity being a recumbent Vishnu , or Anantasayin . +","यदि यह और पहले का नहीं , तो भी सातवीं शताब्दी का बना है और शायद मूल रूप से बौद्ध मत के लिए था , किंतु बाद में विष्णु मंदिर में रूपांतरित कर दिया गया जिसमें प्रमुख देवता लेटे हुए विष्णु या अनंतशायी हैं . +","yadi yah aur pahle ka nahin , to bhi seventh century ka bana hai aur earlier mool roop se buddhist creed ke lie tha , kintu bad men vishnu temple men roopantrit kar diya gaya jismen principal deity recumbent hue vishnu ya anantasayin hain +",neutral,neutral,neutral +"You be there at 10 A. M. sharp. +","आप प्रात 10 बजे वहाँ हो तेज. +","aap prat 10 baje vahan ho tej +",neutral,neutral,neutral +"An organism or individual having a diploid set of chromosomes derived from each parent. +","कोई अवयव या जीव जिस में माता और पिता इन दोनों से ही प्राप्त गुणसुत्र का एक दोहरा गुट है। +","koee organism or individual jis men mata aur pita in donon se hi prapt gunsutr ka ek dohra gut individual +",neutral,neutral,neutral +"Every soul shall have a taste of death: And only on the Day of Judgment shall you be paid your full recompense. Only he who is saved far from the Fire and admitted to the Garden will have attained the object (of Life): For the life of this world is but goods and chattels of deception. +","प्रत्येक जीव मृत्यु का मज़ा चखनेवाला है, और तुम्हें तो क़ियामत के दिन पूरा-पूरा बदला दे दिया जाएगा। अतः जिसे आग (जहन्नम) से हटाकर जन्नत में दाख़िल कर दिया गया, वह सफल रहा। रहा सांसारिक जीवन, तो वह माया-सामग्री के सिवा कुछ भी नहीं +","pratyek jiv taste of death chakhnevala hai, aur tumhen to iyamat ke din poora-poora badla de diya jaega. ata jise aag jahannam se hatakar jannat men dail kar diya gaya, vah saphal raha. raha sansarik jivan, to vah maya-samagri ke siva kuchh bhi nahin +",negative,negative,negative +"Fluctuations in the production of raw jute, low yield, cost inflation, labour unrest, uncertain demand and obsolete machinery are some of its major problems. +","कच्चे जूट के उत्पादन में उतार-चढ़ाव, कम पैदावार, लागत स्फीती, श्रम असंतोष, अनिश्चित मांग, पुरानी मशीनें, कुछ इसकी प्रमुख समस्याऍं हैं. +","fluctuations jute ke production men utar-chaav , low yield , cost sphiti , labour unrest , uncertain demand , obsolete machinery , kuchh iski major problems hain +",negative,negative,negative +"a lot of young people with a demographic dividend +","एक जनसांख्यिकीय लाभांश के साथ कई युवा लोग +","ek demographic dividend ke sath kee young lot +",neutral,neutral,neutral +"into a school. Everybody is wearing jeans, everybody is the same. +","एक स्कूल में, हर कोई जींस पहन रहा है, हर कोई एक सामान है +","ek school men, har koee wearing jeans raha hai, har koee ek saman hai +",neutral,neutral,neutral +"Later a public meeting was called which was addressed by Hakim Ajmal Khan and Pandit Malaviya. +","पीछे एक बड़ी सभी हुई जिसमें हकीम साहब और पंडित मालवीयजी के भाषण हुए। +","pichhe ek bari sabhi huee jismen hakim sahab aur pndit meeting was called hue. +",neutral,neutral,neutral +"The highest amount of money that is required to be paid. +","अधिक से अधिक राशि जो मूल्य रुप मे दी जानी हो। +","highest se highest amount jo mooly rup me di jani amount +",neutral,neutral,neutral +"These were the ushnisa or turban, a pair of flywhisks, umbrella, sword, sandals, and the royal standard. +","ये थे; पगड़ी, चंवरों की जोड़ी, छतरी, खड़ग, चप्पल तथा राजसी ठाट-बाट से रहना। +","ye the turban , chnvron ki pair , umbrella , sword , sandals tatha royal that-bat se rahna. +",neutral,neutral,neutral +"Place the ten of spades next to the nine of spades. +","हुकुम की दहला के बगल में हुकुम के नहला को रखें. +","spades ki place the ten place spades ke nahla ko rakhen +",neutral,neutral,neutral +"Backup Evolution data and settings to an archive file +","एवोल्यूशन डाटा व सेटिंग का बैकअप लें व फिर भंडारित करें +","evolution data v settings ka backup len v phir bhndarit karen +",neutral,neutral,neutral +"They distribute agricultural machinery; undertake wholesale, retail and foreign trade. +","यह कृषि यंत्रों, थोक तथा खुदरा बाजार एवं विदेशी व्यापार को भी वितरित एवं नियंत्रित करता है। +","yah agricultural machinery , wholesale tatha retail bajar evn foreign trade ko bhi vitrit evn niyntrit karta hai. +",neutral,neutral,neutral +"Rotate the image 90 degrees to the right +","छवि को 90 डिग्री पर दाहिने घुमाएँ +","image ko 90 degrees par right ghumaen +",neutral,neutral,neutral +"American Lung Association of New England on quality of air +","वायु की गुणवत्ता पर न्यू इंगलैंड का अमेरिकन लंग एसोसिएशन +","air ki quality par new england ka american lung association +",neutral,neutral,neutral +"He cannot bring down its greater spiritual nature into this lower triplicity; for here the mental being is the highest expression of the Self. +","वह उसकी महत्तर आध्यात्मिक प्रकृति को नीचे उतारकर इस निम्नतर त्रिविध सत्ता में नहीं ला सकता; क्योंकि यहां तो मनोमय पुरुष ही आत्मा की सर्वोच्च अभिव्यक्ति है। +","vah uski greater spiritual nature ko niche utarakar is lower trividh satta men nahin triplicity sakta kyonki yahan to manomay purush hi aatma ki sarvochch expression hai. +",neutral,neutral,neutral +"by 5, so 1 times 5 is 5. +","तो 1 गुना 5 बराबर है 5के. +","to 1 times 5 barabar hai 5ke +",neutral,neutral,neutral +"Candytuft is mostly cultivated for ornamental purposes. +","चांदी टफ या कैंडीटफ्ट मुख्यत सजावटी उद्देश्यों के लिए उगाए जाते हैं +","chandi taph ya kainditapht mukhyat ornamental purposes ke lie ugae jate hain +",neutral,neutral,neutral +"They said, ‘O Moses! Will you throw first, or shall we? ’ +","वे बोले, ""ऐ मूसा! या तो तुम फेंको या फिर हम पहले फेंकते हैं।"" +","ve bole, ae moses! ya to tum phenko ya phir ham pahle phenkte hain. +",neutral,neutral,neutral +"Move% s onto% s. +","% s खिसकाएँ% s पर. +","move khiskaen move par +",neutral,neutral,neutral +"Let's see, let's do minus 5 / 7 divided by 10 / 3. +","देखे, करे नकारात्मक 5/7 विभाजित है 10/3 से +","dekhe, kare minus 57 divided hai 103 se +",neutral,neutral,neutral +"Import HandyShopper store names only as item tags. +","आइटम टैग के रूप में ही HandyShopper के स्टोर नाम आयात करें +","item tags ke roop men hi HandyShopper ke stor nam aayat karen +",neutral,neutral,neutral +"Among the principal 'infant' industries of this period mention must be made of sugar, paper, and matches. +","छोटे छोटे शिशु उद्योग इस समय के मुखऋ-ऊण्श्छ्ष्-य शिशु उद्योगों में चीनी, कागज और दियासलाऋ की चर्चा की जा सकती है. +","chhote chhote shishu udyog is samay ke mukhri-oonshchhsh-y shishu udyogon men chini, kagaj aur diyaslari ki charcha ki ja sakti hai +",neutral,neutral,neutral +"This is an account of (the fate of) the towns which We relate to you; of them are some that stand and (others) mown down. +","(ऐ रसूल) ये चन्द बस्तियों के हालात हैं जो हम तुम से बयान करते हैं उनमें से बाज़ तो (उस वक्त तक) क़ायम हैं और बाज़ का तहस नहस हो गया +","fate account ye chand towns ke halat hain jo ham tum se bayan karte hain unmen se others to us vakt tak ayam hain aur others ka tahas nahas ho gaya +",neutral,neutral,neutral +"Purchase of machinery and implements / equipment +","मशीनों एवं उपकरणों/औजारों की खरीद। आवधिक ऋण: +","machinery and implements ki purchase aavdhik rin: +",neutral,neutral,neutral +"OPV can be given to children till 5 years of age. +","बच्चों को ओपीवी 5 वर्ष की आयु तक दिया जा सकता है +","children ko opivi 5 years of age tak diya ja sakta hai +",neutral,neutral,neutral +"Info to be shown for this item +","इस मद के लिए दिखाए जाने के लिए जानकारी +","is item ke lie dikhae jane ke lie info +",neutral,neutral,neutral +"Wind speed = %d kilometers/hour +","हवा की गती = %d किलोमीटर/प्रतिघंटा +","wind ki speed d kilomitarprtighnta +",neutral,neutral,neutral +"If selected, you will be notified when entering an SSL enabled site +","यदि चुना गया है, जब आप एसएसएल सक्षम साइट पर प्रवेश करते हैं तो आपको सूचित किया जाएगा +","yadi selected gaya hai, jab aap esesel enabled site par prvesh karte hain to aapko soochit kiya jaega +",neutral,neutral,neutral +"Each vertex has a label, and these labels must have the following property. +","प्रत्येक वर्टेक्स एक लेबल है, और इन लेबल निम्न गुण होना आवश्यक है। +","pratyek varteks ek label hai, aur in label nimn gun hona aavashyak hai. +",neutral,neutral,neutral +"(ii) the Minister for Tuensang affairs shall deal with, and have direct access to the Governor on, all matters relating to the Tuensang district but he shall keep the Chief Minister informed about the same; +","(ii) त्युएनसांग कार्य मंत्री त्युएनसांग जिले से संबंधित सभी विषयों की बाबत कार्य करेगा और उनके संबंध में राज्यपाल के पास उसकी सीधी पहुँच होगी किंतु वह उनके संबंध में मुख्यमंत्री को जानकारी देता रहेगा; +","ii tuensang affairs minister tuensang district se snbndhit sabhi matters ki babat affairs karega aur unke snbndh men governor ke pas uski direct access hogi kintu vah unke snbndh men mukhymntri ko jankari deta rahega +",neutral,neutral,neutral +"He said, “O my son, do not relate your vision to your brothers, lest they plot and scheme against you. Satan is man 's sworn enemy. +","याक़ूब ने कहा ऐ बेटा (देखो ख़बरदार) कहीं अपना ख्वाब अपने भाईयों से न दोहराना (वरना) वह लोग तुम्हारे लिए मक्कारी की तदबीर करने लगेगें इसमें तो शक़ ही नहीं कि शैतान आदमी का खुला हुआ दुश्मन है +","yaoob ne kaha ae son dekho bardar lest apna vision apne brothers se n dohrana varna vah log tumhare lie scheme ki tadbir karne lagegen ismen to sha hi nahin ki shaitan man ka sworn huaa enemy hai +",negative,negative,negative +"A skilled or artistic worker or craftsman. +","कोई कुशल या कलात्मक मज़दूर या कारीगर। +","koee skilled or artistic worker ya karigar. +",neutral,neutral,neutral +"&Always Open Files of This Type +","इस प्रकार की फ़ाइलें &हमेशा खोलें +","is type ki open files open +",neutral,neutral,neutral +"""(xviib) any compensation or other payment referred to in clause (xi) of sub-section (2) of section 56;""; +","''(xviiख) धारा 56 की उपधारा (2) के खंड (xi) में निर्दिष्ट कोर्इ प्रतिकर या अन्य संदाय;''; +","xviikh clause 56 ki upclause 2 ke khnd xi men nirdisht kori prtikar ya any snday +",neutral,neutral,neutral +"We have tried to correct them. +","हमने उन्हें सुधारने की कोशिश की है। +","hamne unhen sudharne ki koshish ki hai. +",neutral,neutral,neutral +"It assists the government in formulating and implementing policies for national development. +","यह राष्ट्रीय विकास के लिए नीतियों के निर्माण और कार्यान्वयन में सरकार की मदद करती है। +","yah formulating development ke lie policies ke nirman aur karyanvayan men government ki madad karti hai. +",neutral,neutral,neutral +"In his will Vitthal bhai patel named all his billions of property to Subash babu. +","विठ्ठल भाई पटेल ने अपनी वसीयत में अपनी करोडों की संपत्ती सुभाषबाबू के नाम कर दी। +","bhai bhaee patel ne apni property men apni billions ki babu subhashbaboo ke nam kar di. +",neutral,neutral,neutral +"He was born in the city of Surat in Gujarat on 24th August, 1833. +","24 अगस्त, 1833 को उसका जन्म गुजरात के सूरत नगर में हुआ। +","24 august, 1833 ko uska janm gujrat ke soorat nagar men huaa. +",neutral,neutral,neutral +"A structure above the surface. +","पृष्ठ या सतह से ऊपर संरचना. +","prishth ya satah se oopar structure +",neutral,neutral,neutral +"and when the Koran is recited to them they do not bow? +","और जब उन्हें कुरआन पढ़कर सुनाया जाता है तो सजदे में नहीं गिर पड़ते? +","aur jab unhen koran pakar sunaya jata hai to sajde men nahin gir parte +",neutral,neutral,neutral +"""'And in the End He will return you into the (earth), and raise you forth (again at the Resurrection)? +","फिर तुमको उसी में दोबारा ले जाएगा और (क़यामत में उसी से) निकाल कर खड़ा करेगा +","phir tumko usi men resurrection le end aur earth men usi se nikal kar khara karega +",neutral,neutral,neutral +"In 1882 , Lord Ripon established local self-government in India with the setting up of district local boards . +","1882 में लार्ड रिपन ने जिला स्थानीय बोर्डों के गठन के साथ भारत में स्थानीय स्वशासन की स्थापना की . +","1882 men lord ripon ne district local boards ke gathan ke sath india men local self-government ki sthapna ki +",neutral,neutral,neutral +"Open the selected bookmark in a new tab +","चयनित पसंद को नए टैब में खोलें +","chaynit bookmark ko new tab men kholen +",neutral,neutral,neutral +"He said that their job is multifarious. He advised them to always remember that their conduct and behaviour is a reflection not only of the police force but is actually a projection of the entire administration before the common people. +","उन्होंने कहा कि उनका कार्य बहुआयामी है। उन्होंने सलाह दी कि उन्हें यह सदैव याद रखना चाहिए कि उनके व्यवहार और आचरण से न केवल पुलिस सेवा के बारे में नजरिया बनाता है वरन् वह वास्तव में आम जनता के सामने पूरे प्रशासन का प्रतिबिंब होता है। +","unhonne kaha ki unka job multifarious force unhonne salah projection ki unhen yah sadaiv yad people chahie ki unke behaviour aur conduct se n keval police seva ke bare men najriya banata hai varan vah vastav men common janta ke samne entire administration ka reflection hota force +",neutral,neutral,neutral +"Rural electrification (Ekal Electric House) +","ग्रामीण विद्युतीकरण (एकल बिजली घर) +","rural electrification ekal electric ghar +",neutral,neutral,neutral +"The Indian National Congress reacted sharply to the appointment of the Simon Commission . +","इंडियन नेशनल कांग्रेस ने साइमन कमीशन के गठन पर तीखी प्रतिक्रिया व्यक्त की . +","indian national congress ne simon commission ke gathan par appointment prtikriya vyakt ki +",neutral,neutral,neutral +"Snow leopard hunts blue sheep in the Himalayas. +","हिम तेंदुआ हिमालय में नीली भेड़ का शिकार करता है। +","snow leopard himalay men blue sheep ka shikar karta hai. +",neutral,neutral,neutral +"Water resources development and management will have to be planned for a hydrological unit. +","एक हाइड्रोलॉजिकल इकाई के लिए जल संसाधन विकास और प्रबंधन की योजना बनानी होगी। +","ek hydrological unit ke lie jal snsadhan development and management ki yojna banani hogi. +",neutral,neutral,neutral +"Bharavi was almost a contemporary of Kalidasa. +","भारवि करीब करीब कालिदास के समकालीन थे. +","bharavi karib karib kalidas ke contemporary the +",neutral,neutral,neutral +"Recognizing this mantra of statecraft, Karnataka pursues the deepening of bond between the government and the governed. +","शासनकला के इस मंत्र को पहचानते हुए, कर्नाटक द्वारा शासन और शासित के बीच संबंधों को घनिष्ठ बनाने का प्रयास किया जा रहा है। +","statecraft ke is mantra ko pahchante hue , karnataka dvara government aur shasit ke bich snbndhon ko ghanishth banane ka pryas kiya ja raha hai. +",neutral,neutral,neutral +"The birth of Urdu itself is due to this fact. +","उर्दू भी हिन्दी की इस शक्ति से ही पैदा हुई हैं। +","urdu bhi hindi ki is shakti se hi birth huee fact +",neutral,neutral,neutral +"Disability and Housing Policy housingpolicy_disability@detr.gov.uk +","अपंग और रिहाइश के बारे में नीति housingpolicy_disability@detr.gov.uk +","disability aur housing ke bare men policy housingpolicy_disability detrgovuk +",neutral,neutral,neutral +"Observe the fly land on the ceiling of your zoom after its flight. +","घरेलू मक्खी को उड़ान के बाद अपने कमने की छत पर बैठते हुए देखिए। +","ghareloo observe the fly ke bad apne kamne ki chhat par baithte hue dekhie. +",neutral,neutral,neutral +"Electricity from these grids can be distributed to residential houses, community buildings and business centers through these equipments. +","इन संयंत्रों से ग्रिड स्तर की बिजली व्यक्तिगत आवासों सामुदायिक भवनों व व्यापारिक केन्द्रों को प्रदान की जा सकती है। +","in equipments se grids star ki electricity business residential community buildings v vyaparik centers ko prdan ki ja sakti hai. +",neutral,neutral,neutral +"The proofs can be submitted after logging in online under the section “My Applications” or directly contacting a DI office. +","साक्ष्यों के अनुभाग के तहत ऑनलाइन ""मेरे अनुप्रयोग"" में प्रवेश करने या सीधे एक डि कार्यालय से संपर्क करने के बाद प्रस्तुत किया जा सकता है। +","proofs ke section ke tahat online mere anupryog men prvesh karne ya sidhe ek di office se snpark karne ke bad prastut kiya ja sakta hai. +",neutral,neutral,neutral +"The certificate has already been imported. +","प्रमाणपत्र पहले ही आयातित किया जा चुका है. +","certificate pahle hi aayatit kiya ja chuka hai +",neutral,neutral,neutral +"Thereafter, We utterly destroyed the rest, +","(और हलाक हो गयी) फिर हमने उन लोगों को हलाक कर डाला +","aur destroyed the rest phir hamne un logon ko utterly kar dala +",negative,negative,negative +"Sardar Bhagat Singh was the leader of the youth movement in Punjab carried on under the banner of Nawjawan Bharat Sabha with which Subhas Chandra associated himself closely at a later stage . +","सरदार भत सिंह पंजाब की ? नौजवान भारत सभा ? नाम से विख़्यात युवा आंदोलन के नेता थे , जिससे बाद में सुभाष चन्द्र का भी अंतरंग साहचर्य स्थापित हुआ . +","sardar bhat sinh pnjab ki naujvan bharat sabha nam se viyat yuva aandolan ke neta the , jisse bad men subhash chandr ka bhi antrng sahachary sthapit huaa +",neutral,neutral,neutral +"India is grateful for Tanzania’s support to India’s claim for permanent membership of the UN Security Council. +","भारत, संयुक्त राष्ट्र सुरक्षा परिषद की स्थायी सदस्यता की हमारी दावेदारी के प्रति तंजानिया के समर्थन के॒ लिए आभारी है। +","india , un rashtr security council ki permanent membership ki claim ke prti tanzania ke support ke lie grateful hai. +",positive,positive,positive +"At the back of Pratibimbal Lake there is a walking path +","प्रतिबिम्बित झील के पीछे पैदल पथ +","prtibimbit lake ke back walking path +",neutral,neutral,neutral +"she 's standing, those Rockports slightly apart, but grounded. +","वो खड़ी हैं, उनके रौकपोर्ट जूते एक-दूसरे से थोड़े दूर, पर ज़मीन पर अच्छी तरह जमे हुए. +","vo standing hain, unke slightly joote ek-doosre se thore door, par zamin par achchhi tarah jame hue +",neutral,neutral,neutral +"you can have a pack. +","आप एक बस्ता ले सकते हैं. +","aap ek pack le sakte hain +",neutral,neutral,neutral +"Section - 231, Income-tax Act, 1961-2018 +","धारा - 231, आय-कर अधिनियम, 1961-2018 +","section - 231 , aay-kar act , 1961-2018 +",neutral,neutral,neutral +"The body of humans are prone to destruction but destruction never occurs to the soul. +","मनुष्य का शरीर विनाशशील है किंतु आत्मा का कभी नाश नहीं होता। +","body of humans humans are prone aatma ka kabhi nash nahin hota. +",negative,negative,negative +"Parallel transfers require multiple bit paths. +","समांतर अंतरण को बहुविध पथ की आवश्यकता होती है। +","parallel transfers ko bahuvidh path ki aavashyakta hoti hai. +",neutral,neutral,neutral +"that's been viewed four million times. +","और उसको भी चालीस लाख बार देखा गया है। +","aur usko bhi chalis million times viewed four million +",neutral,neutral,neutral +"Retrieving quota information for folder '% s' +","% s फ़ोल्डर के लिए के लिए कोटा प्राप्त कर रहा है +","s folder ke lie ke lie quota prapt kar raha hai +",neutral,neutral,neutral +"Push it so as to cover the full length of the nozzle of the stove and the regulator. +","ट्यूब को अच्छी तरह लगाएं जिससे कि स्टोव और रेग्यू लेटर के नॉजल को पूरी तरह ढंका जा सके। +","tyoob ko achchhi tarah lagaen jisse ki stove aur regulator push ke nozzle ko full tarah dhnka ja sake. +",neutral,neutral,neutral +"Enable audible notifications when new messages arrive. +","नए संदेश आने पर श्रव्य सूचनाएं सक्षम करें. +","ne messages arrive par enable audible notifications karen +",neutral,neutral,neutral +"Later a public meeting was called which was addressed by Hakim Ajmal Khan and Pandit Malaviya. +","पीछे एक बड़ी सभी हुई जिसमें हकीम साहब और पंडित मालवीयजी के भाषण हुए। +","pichhe ek bari sabhi huee jismen hakim sahab aur pandit hakim ke public hue. +",neutral,neutral,neutral +"Paraumbilical is also known as paraomphalic. +","परानाभिक को नाभि के पास स्थित जाना जाता है +","paranabhik ko nabhi ke pas sthit jana jata hai +",neutral,neutral,neutral +"And when the Garden is brought near; - +","और जब जन्नत निकट कर दी जाएगी, +","aur jab garden nikat kar di jaegi , +",neutral,neutral,neutral +"All these forms have their own specialised areas of operating and organising business activities. +","इन सभी रूपों का परिचालन एवं व्यापार कार्यकलाप आयोजित करने के विशिष्टा क्षेत्र हैं। +","in sabhi forms ka areas evn business activities aayojit karne ke vishishta kshetr own +",neutral,neutral,neutral +"A group of people who work together for a particular job / purpose. +","व्यक्तियों का ऐसा समूह जो सामूहिक रुप से किसी कार्य/प्रयोजन हेतु कार्यरत हो। +","group of people samooh jo samoohik rup se kisi karypryojan people who work +",neutral,neutral,neutral +"Crowding also brings about other factors of destruction such as disease and malnutrition. +","भीड़-भाड़ भी विनाश के अन्य कारणों को जन्म देती है, जैसे बीमारी और अपर्याप्त पोषण। +","crowding bhi destruction ke any karnon ko janm deti hai, jaise bimari aur aparyapt poshan. +",negative,negative,negative +"SECTION 4 OF INDIAN PARTNERSHIP ACT, 1932 +","भारतीय भागीदारी अधिनियम, 1932 की धारा 4 +","indian partnership act , 1932 ki section 4 +",neutral,neutral,neutral +"Please accept, Excellency, my good wishes for your personal health and well-being, as well as for the progress and prosperity of the friendly people of the Republic of Equatorial Guinea. +","कृपया अपने व्यक्तिगत स्वास्थ्य तथा कुशलता और भूमध्यवर्ती गिनी गणराज्य की मैत्रीपूर्ण जनता की प्रगति और समृद्धि के लिए मेरी शुभकामनाएं स्वीकार करें। +","kripya apne vyaktigat health and well-being aur republic of equatorial ki maitripoorn janta ki pragti aur samriddhi ke lie meri shubhkamnaen svikar karen. +",positive,positive,positive +"Open the selected bookmark in a new tab +","चयनित पसंद को नए टैब में खोलें +","selected bookmark ko ne tab men open +",neutral,neutral,neutral +"They were the products of the revolution. +","वे क्रान्ति की सन्तानें थीं. +","ve revolution ki products thin +",neutral,neutral,neutral +"SECTION 4 OF INDIAN PARTNERSHIP ACT, 1932 +","भारतीय भागीदारी अधिनियम, 1932 की धारा 4 +","indian partnership act, 1932 ki section 4 +",neutral,neutral,neutral +"♫ from the edge of the observable universe ♫ +","♫ देखे जाने वाले ब्रह्मांड के किनारे से ♫ +","observable jane vale universe ke edge se +",neutral,neutral,neutral +"Parliamentary Forum on Water Conservation and Management; +","जल संरक्षण और प्रबंधन संबंधी संसदीय मंच; +","jal conservation and management snbndhi parliamentary forum +",neutral,neutral,neutral +"Specify the size and location of the main window +","आकार और स्थान का मुख्य विंडो +","size aur location ka main window +",neutral,neutral,neutral +"And Thamood—those who carved the rocks in the valley. +","और समूद के साथ (क्या किया) जो वादी (क़रा) में पत्थर तराश कर घर बनाते थे +","aur samood ke sath kya kiya jo valley ra carved the rocks kar ghar banate the +",neutral,neutral,neutral +"A meeting was convened to finalize the date of launch of the new channel. +","नए चैनल के विमोचन की तारीख तय करने के लिए सभा बुलाई गई। +","new channel ke vimochan ki date tay karne ke lie meeting bulaee gee. +",neutral,neutral,neutral +"There were the usual speeches, garlanding and so on. +","उसमें, सामान्यतः जैसा होता है, मालाएं पहनाई गई और भाषण आदि हुए। +","usmen , usual jaisa hota hai , malaen pahnaee gee aur speeches aadi hue. +",neutral,neutral,neutral +"A similar provision exists for the Deputy Chairman Rajya Sabha in article 90. +","अनुच्छेद 90 में राज्य सभा के उपसभापति के लिए ऐसा ही प्रावधान हे. +","article 90 men rajya sabha ke exists ke lie similar hi provision he +",neutral,neutral,neutral +"Leaflets with more detailed informaiton on these sevices are available. +","इन सेवाओं के बारें में विस्तृत जानकारी के लिए पत्रिका उपलब्ध है। +","in sevices ke leaflets men detailed informaiton ke lie patrika available hai. +",neutral,neutral,neutral +"It has been called Chhath because of fast of Suryashashthi. +","मूलतः सूर्य षष्ठी व्रत होनेके कारण इसे छठ कहा गया है। +","moolta soory shashthi fast suryashashthi karan ise chhath kaha gaya hai. +",neutral,neutral,neutral +"Swelling of the rectum and the colon. +","मलाशय और बृहदान्त्र का सूजन. +","rectum aur brihdantr ka swelling +",neutral,neutral,neutral +"Change sound volume and sound events +","ध्वनि आवाज और ध्वनि घटना बदलें +","sound aavaj aur sound events change +",neutral,neutral,neutral +"On GRETIL thousands of Sanskrit text in various encoding. GRETIL +","पर सहस्रों संस्कृत ग्रन्थ अनेक स्रोतों से अनेक इनकोडिंग में +","par sahasron sanskrit text anek sroton se anek inkoding men +",neutral,neutral,neutral +"And [Yusuf (Joseph)] told his servants to put their money (with which they had bought the corn) into their bags, so that they might know it when they go back to their people, in order that they might come back. +","और हम ज़रुर इस काम को पूरा करेंगें और यूसुफ ने अपने मुलाज़िमों (नौकरों) को हुक्म दिया कि उनकी (जमा) पूंजी उनके बोरो में (चूपके से) रख दो ताकि जब ये लोग अपने एहलो (अयाल) के पास लौट कर जाएं तो अपनी पूंजी को पहचान ले. +","aur ham zarur is kam ko poora karengen aur yoosuph ne apne mulazimon naukron ko hukm diya ki unki jma poonji unke boro men choopke se rakh do taki jab ye log apne ehlo ayal ke pas laut kar jaen to apni put their money le +",neutral,neutral,neutral +"In two phases banyan and in the other two phases hare (rabbit)is seen. +","इसके दो अंशो मे पिप्पल और दो अंशो मे महान शश(खरगोश) दिखायी देता है। +","iske do ansho me pippal aur do ansho me mahan shashkhargosh dikhayi deta hai. +",neutral,neutral,neutral +"Shape actor with alpha channel when picking +","चुनने के दौरान अल्फा चैनल के साथ कर्ता को आकार दें +","chunne ke dauran alpha channel ke sath actor ko shape den +",neutral,neutral,neutral +"This Weather Underground, by some unlawful intent, sent a terror group to the USA to with an aim to attract attention of the world towards their needs.Some excerpts of the relations of these terror groups were mentioned in some media. +","इस मौसम अंडरग्राउंड (Weather Underground) जो है जबकि कोई हताहत कारण विभिन्न दुनिया राजनीतिक मुद्दों के लिए मीडिया का ध्यान लाने के लिए आतंकवादी वारदातों का प्रदर्शन एक उग्रवादी संगठन अमेरिका गया था.इस मुद्दे से कई संक्षिप्त दिए गए समाचार सेवाओं द्वारा आतंकवादी वारदातों के संबंध में ही उल्लेख है. +","is weather underground Weather Underground jo hai jabki koee hatahat karan vibhinn duniya rajnitik muddon ke lie midiya ka dhyan lane ke lie terror group ka pradarshan ek ugrvadi sngathan amerika gaya thais mudde se kee snkshipt die ge samachar sevaon dvara terror group ke snbndh men hi ullekh hai +",negative,negative,negative +"Whether the image gallery pane should be resizable. +","क्या छवि गैलरी फलक बदलने योग्य होना चाहिए. +","kya image gallery pane badalne yogy hona chahie +",neutral,neutral,neutral +"Total Disbursements went upto `2, 629 Mn +","कुल संवितरण बढ़कर 2,629 मिलियन रुपए होना +","kul disbursements bakar 2,629 total mn hona +",neutral,neutral,neutral +"In their case, it is included in the capitation fee upto a distance of 5 km. between the Clinic of IMP and IP 's residence. +","उनके मामले में, इसे बीमा चिकित्सा व्यवसायी के क्लीनिक और बीमाकृत व्यक्ति के आवास के बीच 5 कि. मी. की दूरी तक प्रति व्यक्ति शुल्क में शामिल किया जाता है। +","unke mamle men , ise bima chikitsa vyavsayi ke clinic aur ip case ke residence ke bich 5 ki km ki distance tak prti case fee men shamil kiya jata hai. +",neutral,neutral,neutral +"“Call Washington! Call Washington! ” “वॉशिंगटन +","से संपर्क करें! वॉशिंगटन से संपर्क करें! ” +","se call karen! vshingatan se call karen! +",neutral,neutral,neutral +"is another human being saying, “Do you understand this?” +","कोई दूसरा मनुष्य ये कहे, “क्या आपको समझ आया?” +","koee doosra manushy ye kahe, kya aapko samajh understand +",neutral,neutral,neutral +"When the eye is bewildered, +","तो जब निगाह चौंधिया जाएगी, +","to jab eye chaundhiya jaegi, +",neutral,neutral,neutral +"Uncus is any hook - shaped process or part +","अंकुश एक हुक आकारीय प्रक्रिया अथवा भाग है। +","ankush ek huk aakariy process or part hai. +",neutral,neutral,neutral +"Goods sent on consignment basis remain in possession and custody of the consignee. +","परेषण-आधार पर भेजा गया माल परेषिती के सुरक्षा व धारिता में रहता है। +","pareshan-aadhar par bheja gaya goods consignee ke suraksha v dharita men remain basis +",neutral,neutral,neutral +"Nikzad Nojoumi 's illustrations have been used for a variety of children' s books. +","निकज़द नौजूमी के चित्र अनेकों बाल पुस्तकों में लिये गये है। +","nikazad naujoomi ke chitr anekon bal pustkon men liye gaye hai. +",neutral,neutral,neutral +"They get upset at the slightest inconvenience and the government officials have a difficult task to bring them round. +","थोड़ी भी असुविधा से वे विचलित हो उठते हैं और सरकारी कर्मचारियों के लिए उन्हें रास्ते पर लाना एक विकट समस्या बन जाती है. +","thori bhi asuvidha se ve upset ho uthte hain aur government officials ke lie unhen raste par task to bring samasya ban jati hai +",negative,negative,negative +"Therefore listen not to the Unbelievers, but strive against them with the utmost strenuousness, with the (Qur 'an). +","अतः इनकार करनेवालों की बात न मानता और इस (क़ुरआन) के द्वारा उनसे जिहाद करो, बड़ा जिहाद! (जी तोड़ कोशिश) +","ata inkar karnevalon ki bat n manta aur is qur ke dvara unse unbelievers karo , bara unbelievers ! ji tor koshish +",neutral,neutral,neutral +"Checking for installed package '% s' +","संस्थापित संकुल '% s' के लिए जाँच रहा है +","installed package s ke lie janch raha hai +",neutral,neutral,neutral +"""As to these folk, - the cult they are in is (but) a fragment of a ruin, and vain is the (worship) which they practise."" +","“निश्चय ही वह लोग लगे हुए है, बरबाद होकर रहेगा। और जो कुछ ये कर रहे है सर्वथा व्यर्थ है। "" +","worship hi vah folk fragment hue hai , ruin hokar rahega. aur jo kuchh ye kar rahe hai sarvtha vain hai. +",negative,negative,negative +"The naqara, twenty pairs, more or less. 3. +","2 नक्कारा जिसकी कोई बीस जोड़ियां हैं। +","2 naqara jiski koee twenty pairs hain. +",neutral,neutral,neutral +"Whether the label widget should fill all available horizontal space +","क्या लेबल विजेट सभी उपलब्ध क्षैतिज स्थान को भरना चहिए +","kya label widget sabhi upalabdh horizontal space ko bharna chahie +",neutral,neutral,neutral +"Before the boy could reply, a butterfly appeared and fluttered between him and the old man. +","इससे पहले कि लड़का कुछ जवाब देता एक तितली उन दोनों के बीच आकर अपने पर फड़फड़ाने लगी। +","isse pahle ki boy kuchh javab deta ek titli un donon ke bich aakar apne par pharapharane lagi. +",neutral,neutral,neutral +"And their eyes spoke of death. +","उनकी आंखें मौत का संदेश दे रही थीं। +","unki eyes spoke of death de rahi thin. +",negative,negative,negative +"A measurement of change in prices. +","कीमतों में परिवर्तन को आंकने का एक पैमाना। +","prices men change ko measurement ka ek paimana. +",neutral,neutral,neutral +"Under the Act, the Controller - General of Patents, Designs and Trade Marks under Department of Industrial Policy and promotion, Ministry of Commerce and Industry is the Controller of Designs. +","अधिनियम के तहत, महानियंत्रक, पेटेंट, डिज़ाइन और ट्रेड मार्क वाणिज्यय एवं उद्योग मंत्रालय, औद्योगिक नीति एवं प्रवर्तन विभाग के अंतर्गत डिज़ाइनों का नियंत्रक है। +","act ke tahat , general , patents , dizain aur tred mark commerce evn trade ministry , industrial policy evn pravartan department ke antargat dizainon ka controller hai. +",neutral,neutral,neutral +"Process of exercising control over trading in contraband goods. +","विनिषिद्ध/वर्जित वस्तुओं के व्यापार पर नियन्त्रण के लिए स्थापित प्रक्रिया। +","vinishiddhvarjit goods ke trading par control ke lie process prakriya. +",neutral,neutral,neutral +"Every time you take a full and deep breath, or when you cachinnate well, you get extra energy instantly. +","हर बार जब भी आप पूरी और गहरी सांस लेते हैं, अथवा जोर से अट्टहास लगाते हैं, तो आपको तुरंत अतिरिक्त उर्जा प्राप्त होती है. +","har bar jab bhi aap full and deep sans lete hain, athva jor se atthas lagate hain, to aapko extra energy instantly prapt hoti hai +",positive,positive,positive +"You have to be in this range. +","आपको इसी रेंग मे रहना है +","aapko isi reng me range hai +",neutral,neutral,neutral +"And this is what we 're designing for. +","और यह है जिसके लिए हम डिजाइन कर रहे हैं. +","aur yah hai jiske lie ham designing kar rahe hain +",neutral,neutral,neutral +"Radhakrishnan returned to the Madras Presidency College in 1911. +","मद्रास प्रेसीडेंसी कॉलेज में राधाकृष्णन 1911 में लौटे। +","madras presidency college men radhakrishnan 1911 men laute. +",neutral,neutral,neutral +"Total Disbursements went upto `2, 629 Mn +","कुल संवितरण बढ़कर 2,629 मिलियन रुपए होना +","kul disbursements bakar 2,629 total rupe hona +",neutral,neutral,neutral +"It tells us how the data within the file is organized. A programme using the data must be able to recognize and access the data within the file. +","यह बताता है कि फाइल के अन्दर आकडा कैसे संगठित है। आकडा इस्तेमाल करने वाले किसी प्रग्राम को फाइल के अन्दर आकडा पहचानने तथा ऐक्सेस करने में सक्षम होना चाहिए। +","yah batata hai ki file ke andar data kaise sngthit hai. data istemal karne vale kisi pragram ko file ke andar data pahchanne tatha access karne men able hona programme +",neutral,neutral,neutral +"Unfortunately, some people who have been the victim of crime are more vulnerable, in the short term, to further crime. +","दुर्भाग्यवश , अपराध के शिकार हुए कुछ लोगों में फिर से उसके शिकार बनने की अधिक प्रवृत्ति होती है | +","vulnerable , victim of crime hue kuchh logon men phir se uske victim banne ki adhik prvritti hoti hai +",negative,negative,negative +"The birth of Urdu itself is due to this fact. +","उर्दू भी हिन्दी की इस शक्ति से ही पैदा हुई हैं। +","urdu bhi hindi ki is shakti se hi paida huee hain. +",neutral,neutral,neutral +"How to claim see page 15. +","यह कैसे अर्जी भर के मिल सकता है इस के लिए पान क्रमांक 15 देखें । +","yah kaise arji bhar ke mil sakta hai is ke lie pan krmank 15 dekhen . +",neutral,neutral,neutral +"Leaflets with more detailed informaiton on these sevices are available. +","इन सेवाओं के बारें में विस्तृत जानकारी के लिए पत्रिका उपलब्ध है। +","in sevaon ke baren men detailed informaiton ke lie patrika upalabdh hai. +",neutral,neutral,neutral +"you can have a pack. +","आप एक बस्ता ले सकते हैं. +","aap ek basta le sakte hain +",neutral,neutral,neutral +"Toggle display of the status bar. +","स्थिति पट्टी का प्रदर्शन टॉगल करें. +","status bar ka toggle display karen +",neutral,neutral,neutral +"Loan amount up to Rs. 7. 50 lacs: 10 years. +","रु. 7.50 तक की ऋण के लिए: 10 वर्ष +","ru 750 tak ki rin ke lie: 10 years +",neutral,neutral,neutral +"Ans : Twenty-eight (28),11.71% +","उत्तरः अट्ठाईस (28), 11.71% +","uttra twenty-eight 28, 1171 +",neutral,neutral,neutral +"International usages are adopted in international communication by most of the countries of the world. +","विश्व के अधिकांश देशों द्वारा अन्तर्राष्ट्रीय प्रथा/प्रचलन को आपसी पत्राचार में अपना लिया गया है। +","most ke adhikansh countries dvara international prthaprachalan ko usages communication men apna liya gaya hai. +",neutral,neutral,neutral +"Video output for Windows 7/Windows Vista with Platform update +","प्लेटफार्म अद्यतन के साथ Windows 7/Windows Vista के लिए वीडियो आउटपुट +","platform update ke sath Windows 7Windows Vista ke lie video output +",neutral,neutral,neutral +"Publication of Rashtriya Bank Srijana: +","राष्ट्रीय बैंक सृजना का प्रकाशन: +","rashtriya bank srijana ka publication : +",neutral,neutral,neutral +"You have to put your tremendous expertise and experience to good use. +","आपको अपने वृहद् कौशल तथा अनुभव का उपयुक्त उपयोग करना होगा। +","aapko apne vrihad expertise and experience ka upyukt upyog karna hoga. +",positive,positive,positive +"A muscle that retracts an organ. +","एक पेशी जो किसी अंग का आकुंचन करती है. +","ek muscle jo kisi organ ka aakunchan karti hai +",neutral,neutral,neutral +"Whether to use the ""- - driver generic - mmc - raw"" flag with cdrdao +","क्या ""-- driver generic-mmc-raw"" का प्रयोग cdrdao के साथ करना है +","kya -- driver generic-mmc-raw ka pryog cdrdao ke sath karna hai +",neutral,neutral,neutral +"Use as desktop background '% s' +","डेस्कटॉप पृष्ठ भूमि '% s' के रूप में उपयोग करें +","desktop background bhoomi s ke roop men use karen +",neutral,neutral,neutral +"A bone which forms the front part of the skull housing the brain. +","एक अस्थि जो कपाल का अग्र भाग निर्मित करती है जिसमें मस्तिष्क होता है +","ek bone jo skull ka front part nirmit karti hai housing brain hota hai +",neutral,neutral,neutral +"% s,% d%% done,% s remaining +","% s,% d%% संपन्न,% s शेषशेष +","s , d snpann , s sheshshesh +",neutral,neutral,neutral +"“I am a fox, ” the fox said.“ +","मैं लोमड़ी हूँ! ” लोमड़ी ने कहा। +","i fox hoon ! s fox ne kaha. +",neutral,neutral,neutral +"The construction of this temple was taken place in 4 century. +","मूल रूप से इस मंदिर का निर्माण चौथी शताब्दी के आस-पास हुआ था। +","mool roop se is mndir ka nirman chauthi shatabdi ke aas-pas huaa century +",neutral,neutral,neutral +"Madhya Pradesh occupies perhaps the oldest part of the subcontinent – called the Gondwana - the home of the Gonds. +","मध्य प्रदेश संभवतया उप महाद्वीप का संभतया सबसे पुराना स्थान है जिसे गोंडवाना कहते हैं अर्थात गोंड समुदाय का घर। +","madhya pradesh snbhavatya subcontinent mahadvip ka snbhatya sabse oldest sthan hai jise gondwana kahte hain gonds samuday ka ghar. +",neutral,neutral,neutral +"The muscle present below the perineum in both females and males. +","पुरूषों तथा स्त्रियों दोनों में मूलाधार से नीचे विद्यमान पेशियां +","males present females donon men perineum se niche vidyman muscle +",neutral,neutral,neutral +"Apply the given geometry to the main window +","मुख्य विंडो के लिए दिए गए ज्यामिति को लागू करें +","main window ke lie die ge geometry ko apply karen +",neutral,neutral,neutral +"That they said (in boast), ""We killed Christ Jesus the son of Mary, the Messenger of Allah""; - but they killed him not, nor crucified him, but so it was made to appear to them, and those who differ therein are full of doubts, with no (certain) knowledge, but only conjecture to follow, for of a surety they killed him not: - +","और उनके इस कथन के कारण कि हमने मरयम के बेटे ईसा मसीह, अल्लाह के रसूल, को क़त्ल कर डाला-हालाँकि न तो इन्होंने उसे क़त्ल किया और न उसे सूली पर चढाया, बल्कि मामला उनके लिए संदिग्ध हो गया। और जो लोग इसमें विभेद कर रहे है, निश्चय ही वे इस मामले में सन्देह में थे। अटकल पर चलने के अतिरिक्त उनके पास कोई ज्ञान न था। निश्चय ही उन्होंने उसे (ईसा को) क़त्ल नहीं किया, +","aur unke is kathan ke karan ki hamne marayam ke bete christ jesus, messenger of allah, ko tl kar dala-halanki n to inhonne use tl kiya aur n use sooli par chadhaya, balki mamla unke lie sndigdh ho gaya. aur jo log ismen vibhed kar rahe hai, nishchay hi ve is full of doubts conjecture to follow par chalne ke atirikt unke pas koee jnjan n tha. nishchay hi unhonne use eesa ko tl nahin kiya, +",negative,negative,negative +"all powered on that coal. +","साब कोयले की ताकत पे खड़े हुए +","sab coal ki takat pe khare hue +",neutral,neutral,neutral +"Windows that should be use alpha blur by default +","विंडोज़ जिसे मूलभूत रूप से अल्फा धुंधला का प्रयोग करना चाहिए +","windows jise default roop se alpha blur ka pryog karna chahie +",neutral,neutral,neutral +"One of the historical structures in Mumbai used to be Governor 's residence. +","मुंबई में ऐतिहासिक संरचना जहां राज्यपाल निवास करते थे। +","munbee men historical structures jahan rajypal nivas karte the. +",neutral,neutral,neutral +"""Adjournment of the sitting of the House""- Termination of the sitting of the House which meets again at the time appointed for the next sitting. +","""सभाकी बैठक का स्थगन"" -- स्थगन होने पर सभा की बैठक समाप्त हो जाती है और सभा अगली बैठक के लिए नियत समय पर पुनः समवेत होती है। +","sbhaki baithak ka sthagan -- sthagan hone par sabha ki baithak samapt ho jati hai aur sabha agli baithak ke lie time appointed par puna samvet hoti hai. +",neutral,neutral,neutral +"Label comet names in the sky map? +","आकाश नक्शे पर धूमकेतुओं पर लेबल लगाएँ? +","label map par dhoomketuon par comet names +",neutral,neutral,neutral +"refer to teachings and examples of our prophet, +","हमारे पैगम्बर की शिक्षाओं और उदाहरणों को उद्धृत करते हैं, +","hamare refer to teachings aur udaharnon ko uddhrit karte hain, +",neutral,neutral,neutral +"Is Taj Mahal in realty the Temple of Lord Shiva? +","क्या ताजमहल वास्तव में शिव मंदिर है? +","lord taj vastav men realty temple hai +",neutral,neutral,neutral +"These are gross and obvious examples but there are infinite and subtle gradations in the misunderstandings which can arise between people and the ways in which the law can tangle with traditional ways. +","यह सकल और स्पष्ट उदाहरण है, परंतु लोगों के बीच असंख्य और सूक्ष्म कारणों से अनेक गलत फहमियां पैदा हो सकती हैं और कानून कई तरह से परंपरागत रास्तों में उलझ सकता है। +","yah gross aur obvious examples hai , parntu logon ke bich asnkhy aur subtle ways se anek galat infinite paida ho sakti hain aur law kee tarah se traditional raston men ulajh sakta hai. +",negative,negative,negative +"Wherever you see the x, you just substitute it with the +","जहा भी आप जे देखे, आप इसे प्रतियस्थापित करे साथ +","jaha bhi aap je dekhe, aap ise substitute kare sath +",neutral,neutral,neutral +"The damage caused by man - made pollution and its effects on the future of mankind are now being seriously studied by scientists in a number of countries. +","मानव निर्मित प्रदूषण से होने वाली क्षति और भविष्य में मानव जाति पर होने वाले उसके दुष्प्रभावों का अब अनेक देशों में गंभीरतापूर्वक वैज्ञानिकों के द्वारा अध्ययन किया जा रहा है। +","man nirmit pollution se hone vali damage aur future men man jati par hone vale uske effects ka ab number countries men gnbhirtapoorvak scientists ke dvara adhyayan kiya ja raha hai. +",negative,negative,negative +"Such an institution is no good for building the nation. +","यह संस्था राष्ट्र के नव निर्माण की दृष्टि से उपयोगी नहीं है। +","yah institution nation ke nav nirman ki drishti se upyogi nahin good +",negative,negative,negative +"Do they seek to hasten Our chastisement? +","तो क्या ये लोग हमारे अज़ाब की जल्दी कर रहे हैं +","to kya ye log chastisement azab ki jaldi kar rahe hain +",neutral,neutral,neutral +"If you are already a widow or widower, you can get up to 100% of your late husband 's or wife' s Additional Pension. +","अगर आप पहले से ही विधवा है या फिर विधुर है तो आप को आप के गुजरे हुए पती या फिर पत्नी का अतिरिक्त निवृत्ती वेतन 100% तक मिल सकता है। +","agar aap pahle se hi widow hai ya phir vidhur hai to aap ko aap ke gujre hue pati ya phir patni ka additional pension pension 100 tak mil sakta husband +",neutral,neutral,neutral +"A proper medical examination will ensure high standards of health and physical fitness of employees and will reduce the rates of accidents, absenteeism and labour turnover. +","अच्छीट तरह की चिकित्साथ जांच कर्मचारी के उच्च़ स्त. रीय स्वानस्य्कि और शारीरिक फिटनेस सुनिश्चित करेगी और दुर्घटना की दर कम करेगी अनुपस्थिति घटेगी और श्रम उत्पादन बढ़ेगा। +","achchhit tarah ki chikitsath medical employees ke uch st riy svanasyki aur physical fitness sunishchit karegi aur accidents ki high kam karegi absenteeism ghategi aur labour utpadan standards +",positive,positive,positive +"Apply Rajiv Gandhi Advocate’s Training Scheme +","राजीव गाँधी अधिवक्ता प्रशिक्षण हेतु आवेदन करना +","rajiv gandhi advocate prshikshan hetu aavedan karna +",neutral,neutral,neutral +"Finance Bill 2008 was published on 27th March. +","वित्त विधेयक 29 मार्च 2000 को प्रकाशित किया गया था। +","finance bill 29 march 2000 ko published kiya gaya tha. +",neutral,neutral,neutral +"And among them are some that say, “Our Lord! Give us good in the world and good in the Hereafter, and save us from the punishment of fire! ” +","और बाज़ बन्दे ऐसे हैं कि जो दुआ करते हैं कि ऐ मेरे पालने वाले मुझे दुनिया में नेअमत दे और आख़िरत में सवाब दे और दोज़ख़ की बाग से बचा +","aur baz bande aese hain ki jo duaa karte hain ki ae mere palne vale mujhe world men neamat lord aur aairat men savab lord aur doza ki bag se bacha +",positive,positive,positive +"Show disk view 'Type' column on startup +","'प्रकार' स्तंभ को आरंभन पर डिस्क दृश्य दिखाएँ +","prkar column on startup par show disk view +",neutral,neutral,neutral +"It cannot be said that the product was unknown in India. +","ऐसा नहीं कहा जा सकता है कि यह उत्पाद भारत में अनजान था +","aesa nahin kaha ja sakta hai ki yah product india men unknown tha +",neutral,neutral,neutral +"Tansen fell ill and it was two months before he could return to the court. +","लगातार दो महिने तक वह बीमार रहा। +","lagatar do months tak vah fell ill +",negative,negative,negative +"Equally evident are grounds for introspection. +","समान रूप से स्पष्ट आत्मनिरीक्षण के लिए आधार हैं। +","saman roop se evident introspection ke lie grounds hain. +",neutral,neutral,neutral +"The Government of India had no adequate plans and arrangements for the country 's defence. +","भारत सरकार के पास देश की रक्षा के लिए पर्याप्त योजनाएं व इंतजाम न थे. +","india government ke pas country ki defence ke lie adequate plans v intjam n the +",negative,negative,negative +"just for the Carnival and the Knife. +","बस कार्निवल और नैफ के लिए. +","bas karnival aur naiph ke lie +",neutral,neutral,neutral +"115AB. (1) Where the total income of an assessee, being an overseas financial organisation (hereinafter referred to as Offshore Fund) includes— +","115कख. (1) जहां किसी निर्धारिती की, जो विदेशी वित्तीय संगठन है (जिसे इसमें इसके पश्चात् ''अपतट निधि'' कहा गया है) कुल आय में,– +","115kakh 1 jahan kisi assessee ki, jo overseas financial sngathan hai jise isfund iske pashchat apatat nidhi kaha gaya hai kul aay fund, +",neutral,neutral,neutral +"The Krishna temple, Pattabhirama temple, Hazara Ramachandra and Chandrasekhara temple as also the Jain temples, are other examples. +","यहां स्थित कृष्ण मंदिर, पट्टाभिराम मंदिर, हजारा राम चंद्र और चंद्र शेखर मंदिर भी यहां के जैन मंदिर हैं जो अन्य उदाहरण हैं। +","yahan sthit krishna temple , pattabhiram temple , hazara ram chndr aur chndr shekhar temple bhi yahan ke jain temple hain jo other examples hain. +",neutral,neutral,neutral +"A time of acute difficulty in financial matters. +","वित्तीय मामलों में संकट की घडी। +","financial matters men time ki ghadi. +",negative,negative,negative +"When composite tender is invited for various types of works / activities. +","जब विविध प्रकार के कार्यों के लिए एक ही संयुक्त टेन्डर जारी किया जाता हो। +","jab various types ke works ke lie ek hi composite tender jari kiya jata ho. +",neutral,neutral,neutral +"You be there at 10 A. M. sharp. +","आप प्रात 10 बजे वहाँ हो तेज. +","aap prat 10 sharp vahan ho tej +",neutral,neutral,neutral +"I have complete knowledge of debenture bond. +","डिबेंचर बांड के बारे में मुझे समस्त जानकारी है। +","debenture bond ke bare men i samast complete hai. +",neutral,neutral,neutral +"about the kid who got this paper. +","उस बच्चे के विषय में जिसे यहपत्र मिला. +","us kid ke vishay paper jise yahapatr mila +",neutral,neutral,neutral +"They were as good as the babies in Taiwan +","वो ताइवान वाले शिशुओं जीतने अच्छे थे +","vo taiwan vale babies jitne good the +",positive,positive,positive +"The premature death a day earlier of her fourth son Bhupendranath at the age of thirteen, must have precipi - tated her own. +","इससे एक दिन पहले उनके चौथे पुत्र भूपेन्द्रनाथ की तेरह वर्ष की आयु में अकाल मृत्यु ने भी जल्द ही उनकी जीवनलीला समाप्त करने में मदद की होगी। +","earlier ek day pahle unke fourth son bhupendranath ki thirteen varsh ki age men premature death ne bhi jald hi unki jivanlila samapt karne men madad ki hogi. +",negative,negative,negative +"In many civil service exams that take place in India, questions which test the general knowledge of a candidate are commonplace. +","भारत में कई सरकारी पदों के लिए होने वाली परीक्षाओं में सामान्य ज्ञान के प्रश्न अकसर पूछे जाते हैं। +","many men kee service candidate ke lie hone vali parikshaon men general knowledge ke civil akasar poochhe jate hain. +",neutral,neutral,neutral +"but believe me, we all share one incredibly powerful thing - +","परंतु विश्वास मानिए, हम सभी में एक अविश्वसनीय शक्तिशाली बात है - +","parntu vishvas share , ham sabhi men ek avishvasniy powerful thing hai - +",positive,positive,positive +"very small change in time, we have a roughly constant +","बहुत छोटे परिवर्तन के समय में, हम एक मोटे तौर पर निरंतर है +","bahut chhote change in time men, ham ek roughly taur par nirntar hai +",neutral,neutral,neutral +"A chart / material showing the information on amount disbursed. +","धनराशि के वितरण के बारे में तैयार की गई रूपरेखागत सूचना सामग्री +","amount ke vitaran ke bare men taiyar ki gee information on amount +",neutral,neutral,neutral +"The label used for menu items and buttons that activate this action. +","मेनू मद व बटन के लिये लेबल जो इस क्रिया को सक्रिय करता है. +","menu mad v items ke liye label jo is activate this action karta hai +",neutral,neutral,neutral +"Then we can make this same statement again. +","तो हम इस एक ही बयान पुनः बना सकते हैं। +","to ham is ek hi statement puna bana sakte hain. +",neutral,neutral,neutral +"Because over here, on this line, let 's take +","क्योंकि अधिक यहाँ, इस पंक्ति पर, चलो ले +","kyonki adhik yahan , is line par , chalo le +",neutral,neutral,neutral +"Use as desktop background '% s' +","डेस्कटॉप पृष्ठ भूमि '% s' के रूप में उपयोग करें +","desktop background bhoomi s ke roop men upyog karen +",neutral,neutral,neutral +"India exchanges mail with more than 217 countries by air and surface. +","भारत 217 से भी अधिक देशों के साथ स्थलीय और विमान सेवा द्वारा पत्रो का आदान-प्रदान करता है। +","india surface se bhi more countries ke sath sthliy aur air exchanges dvara patro ka aadan-prdan karta hai. +",neutral,neutral,neutral +"and the guilty shall behold the Fire and know that they are bound to fall into it, and will find no escape from it. +","और गुनेहगार लोग (देखकर समझ जाएँगें कि ये इसमें सोके जाएँगे और उससे गरीज़ (बचने की) की राह न पाएँगें +","aur guilty log fire samajh jaengen ki ye ismen soke escape aur usse gariz bachne ki ki rah n paengen +",negative,negative,negative +"She answered, This is their home. +","उत्तर था, यह उनका घर है। +","uttar tha , yah unka ghar home +",neutral,neutral,neutral +"You need two numbers or string to do an addition +","जोड़ने के लिए आपको दो संख्या या वाक्यांश चाहिए +","addition ke lie aapko do numbers or string chahie +",neutral,neutral,neutral +"In Hindi, the word “”America“” is used instead of “”United States of America“”. +","हिन्दी भाषा में संयुक्त राज्य या संयुक्त राज्य अमेरिका के स्थान पर केवल अमेरिका कहने का ही प्रचलन है जो इस देश के लघु नाम के रूप मे उपयोग में लाया जाता है। +","hindi bhasha men united rajy ya united rajy america ke sthan par keval america kahne ka hi prachalan hai jo is desh ke laghu nam ke roop me upyog men laya jata hai. +",neutral,neutral,neutral +"Chromium is no longer updating because your operating system is obsolete. +","क्रोमियम अब और अपडेट नहीं कर रहा है क्योंकि आपका ऑपरेटिंग सिस्टम अप्रचलित है. +","chromium ab aur apdet nahin kar raha hai kyonki aapka operating system obsolete hai +",negative,negative,negative +"It ' s what turns lead into gold , and makes the gold return to the earth . ” +","यही चक्र सीसे को सोना बना देता है , और सोने को धरती में वापिस समावेश करा देता है । ” +","yahi chakr lead ko gold return deta hai , aur sone ko earth men vapis samavesh kara deta hai . +",neutral,neutral,neutral +"Deposits of stock is governed by prescribed rules. +","माल जमा की प्रक्रिया निर्धारित नियमों के अनुसार होगी। +","stock deposits ki prakriya prescribed rules ke anusar hogi. +",neutral,neutral,neutral +"than about capturing a moment really. +","बजाय सच में एक पल को खींचने के | +","bajay sach men ek pal ko capturing ke +",neutral,neutral,neutral +"Mountain Biking (External website that opens in a new window) +","माउंटेन बाइकेन (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","maunten baiken bahri vebsait jo ek nee vindon website that opens +",neutral,neutral,neutral +"Those of Abraham and Lut; +","और इबराहीम की क़ौम और लूत की क़ौम +","aur ibrahim ki aum aur loot ki aum +",neutral,neutral,neutral +"Paraumbilical is also known as paraomphalic. +","परानाभिक को नाभि के पास स्थित जाना जाता है +","paranabhik ko nabhi ke pas sthit jana jata hai +",neutral,neutral,neutral +"But in this plot he followed the SRI method of nursery preparation. +","लेकिन इस प्लॉट में उन्होंने नर्सरी तैयार करने के लिए श्री पद्धति का अनुसरण किया। +","lekin is plt men unhonne nursery preparation karne ke lie shri method of nursery kiya. +",neutral,neutral,neutral +"“ Could he see you ? ” +","“ क्या उसने तुम्हें देख लिया ? ” +","kya usne tumhen dekh liya +",neutral,neutral,neutral +"Besides the above, there are other symbols of the village gods. +","इनके अतिरिक्त, ग्रामीण देवताओं के अन्य प्रतीक भी हैं। +","inke atirikt, village gods ke any prtik bhi hain. +",neutral,neutral,neutral +"141. [Omitted by the Taxation Laws (Amendment) Act, 1970, w.e.f. 1-4-1971.] +","141. [कराधान विधि (संशोधन) अधिनियम, 1970 द्वारा 1.4.1971 से लोप किया गया।] +","141 taxation laws amendment act , 1970 dvara 141971 se lop kiya gaya. +",neutral,neutral,neutral +"Every time you take a full and deep breath, or when you cachinnate well, you get extra energy instantly. +","हर बार जब भी आप पूरी और गहरी सांस लेते हैं, अथवा जोर से अट्टहास लगाते हैं, तो आपको तुरंत अतिरिक्त उर्जा प्राप्त होती है. +","har time jab bhi aap full aur deep breath lete hain , athva jor se atthas energy hain , to aapko turnt extra urja prapt hoti hai +",positive,positive,positive +"Nearest - neighbor interpolation is an algorithm is used to map a screen pixel to the corresponding point on the texture map. +","निकटतम पड़ोसी-प्रक्षेप, एक कलन विधि (एल्गोरिथ्म) होती है, जो स्क्रीन के पिक्सेल को प्रतिचित्रण पर बिंदु के अनुरूप प्रतिचित्रतित करती है। +","nikatatam parosi-prakshep, ek kalan vidhi elgorithm hoti hai, jo skrin ke piksel ko prtichitran par bindu ke anuroop prtichitrtit karti hai. +",neutral,neutral,neutral +"Your password has been changed. +","आपका शब्दकूट बदला गया है. +","aapka password badla gaya hai +",neutral,neutral,neutral +"Thus the word ' costs ' included costs incidental to the suit . +","इस प्रकार खर्च शब्द में वाद के सभी अनुषंगी खर्च शामिल हैं . +","is prkar costs word men suit ke sabhi anushngi costs included hain +",neutral,neutral,neutral +"Notification area applet for managing your network devices and connections. +","आपके संजाल युक्तियां और कनेक्शन को प्रबंधित करने के लिए अधिसूचना क्षेत्र एप्लेट. +","aapke network devices aur connections ko prbndhit karne ke lie notification area applet +",neutral,neutral,neutral +"National Population Policy (File referring to external site opens in a new window) +","राष्ट्रीय जनसंख्या नीति (पीडीएफ फाइल जो नई विंडों में खुलती है) +","national population policy file referring jo nee external site opens hai +",neutral,neutral,neutral +"Book where objections are recorded. +","पुस्तक जिसमें एतराज अंकित किए जाते हो। +","pustak jismen etraj ankit kie jate ho. +",neutral,neutral,neutral +"Three public meetings were held in Bombay City to observe this day. +","उस अवसर पर बंबई में तीन सभाएं की गयीं। +","us avasar par bombay men tin meetings ki gayin. +",neutral,neutral,neutral +"[Commanding him], ""Make full coats of mail and calculate [precisely] the links, and work [all of you] righteousness. Indeed I, of what you do, am Seeing."" +","कि फँराख़ व कुशादा जिरह बनाओ और (कड़ियों के) जोड़ने में अन्दाज़े का ख्याल रखो और तुम सब के सब अच्छे (अच्छे) काम करो वो कुछ तुम लोग करते हो मैं यक़ीनन देख रहा हूँ +","ki make full coats jirah banao aur kariyon ke jorne men andaze ka khyal rakho aur tum sab ke sab achchhe achchhe make full vo kuchh tum log karte ho main yainan dekh raha hoon +",neutral,neutral,neutral +"A fruit of subfamily Maloideae of the family Rosaceae. +","रोसकशया वंश के मेलोडिया उपवंश का एक फल. +","rosakashya family ke melodiya upvnsh ka ek fruit +",neutral,neutral,neutral +"Opens all branches of the file tree +","फ़ाइल ट्री की सभी शाखाओं को खोलता है +","file tree ki sabhi branches ko kholta hai +",neutral,neutral,neutral +"Blend File / Folder with diff Output +","डिफ़ आउटपुट के साथ फ़ाइल/फ़ोल्डर ब्लैंड करें +","diff output ke sath file blaind karen +",neutral,neutral,neutral +"More recently, it appears that none of the millions of antiwar demonstrators have a bad word to say about Saddam Hussein nor an iota of sympathy for those oppressed, tortured and murdered by his regime. Instead, they vent fury against the American president and British prime minister. +","अभी हाल में यह देखने में आया है कि लाखों युद्ध विरोधी प्रदर्शनकारियों ने सद्दाम हुसैन के विरूद्ध एक भी शब्द नहीं कहा और न ही उनके शासन में पीड़ित हत्या के शिकार हुए लोगों के प्रति एक भी सहानुभूति का शब्द निकाला। इसके बजाय उन्होंने अमेरिकी राष्ट्रपति और व्रिटेन के प्रधानमंत्री के विरूद्ध आक्रोश प्रदर्शित किया। +","abhi hal men yah dekhne men aaya hai ki lakhon yuddh virodhi pradarshankariyon ne saddam husain ke virooddh ek bhi shabd nahin kaha aur n hi unke shasan men pirit hatya ke shikar hue logon ke prti ek bhi sahanubhooti ka shabd nikala. iske bajay unhonne ameriki rashtrapti aur vriten ke prdhanmntri ke virooddh aakrosh pradarshit kiya. +",negative,negative,negative +"Doubt that anyone charged with and tried for the 7/7 attacks would receive a fair trial: 44 percent. +","44 प्रतिशत मुसलमानों को इस बात में संशय है कि 7 जुलाई के विस्फोटों के आरोपियों पर निष्पक्ष मुकदमा चल सकेगा. +","44 percent musalmanon ko is bat men snshay hai ki 7 attacks would receive ke aaropiyon par fair trial chal sakega +",negative,negative,negative +"Thus the word ' costs ' included costs incidental to the suit . +","इस प्रकार खर्च शब्द में वाद के सभी अनुषंगी खर्च शामिल हैं . +","is prkar kharch shabd men vad ke sabhi included costs incidental hain +",neutral,neutral,neutral +"Average feed consumption upto marketable age +","बेचने योग्य होने की आयु तक पहुँचने तक भोजन की औसत खपत +","upto marketable hone ki aayu tak pahunchne tak average feed consumption khapat +",neutral,neutral,neutral +"Among them 13, 74, 283 lives were under subsidised category and 61, 133 lives were under General non - subsidised category. +","इनमें क्रमशः13,74,283 और 61,133 व्यक्ति सब्सिडी पाने वाले वर्ग में थे और 61,135 पूरा प्रीमियम देने वालों में थे। +","inmen kramsha13,74,283 aur 61,133 vyakti sabsidi pane vale varg men the aur 61,135 poora primiyam dene valon men the. +",neutral,neutral,neutral +"PROVISIONS AS TO THE COMPTROLLER AND AUDITOR-GENERAL OF INDIA +","भारत के नियंत्रक-महालेखापरीक्षक के बारे में उपबंध +","india ke niyntrak-mhalekhaprikshak ke bare men provisions +",neutral,neutral,neutral +"Dr. Ambedkar was at pains to emphasise that the new republic would be a ""Union” of States, as opposed to a"" Federation” of States. The States would have no right to secede. +","डॉ. अंबेडकर ने बहुत परिश्रम से यह बताने का प्रयास किया था कि नया गणतंत्र राज्यों के ‘परिसंघ’के बजाय राज्यों का ‘संघ’ होगा। राज्यों को अलग होने का अधिकार नहीं होगा। +","d anbedakar ne bahut parishram se yah batane ka pryas kiya tha ki naya gantntr federation ke prisnghke bajay federation ka sngh hoga. federation ko alag hone ka adhikar nahin hoga. +",negative,negative,negative +"So sometimes you 'll say morula, +","तो कभी कभी आप morula कहता हूँ, +","to kabhi kabhi aap morula kahta hoon , +",neutral,neutral,neutral +"Force Brasero to display the project selection page +","परियोजना चयन पृष्ठ दिखाने के लिए ब्रैसेरो को बाध्य करें +","project selection page display ke lie braisero ko badhy karen +",neutral,neutral,neutral +"Whether accelerated compositing should be enabled +","क्या त्वरित कंपोजिटिंग सक्रिय की जानी चाहिए +","kya tvrit compositing sakriy ki jani chahie +",neutral,neutral,neutral +"Anundoram was a student of the Gauhati School in the late fifties of the nineteenth century, that is, in the early stage of English education in Assam. +","आनन्दराम ने उन्नीसवीं सदी के छठे दशक में, यानी असम में अंग्रेज़ी शिक्षा के आरम्भिक चरण में गुवाहाटी स्कूल में अपनी पढ़ाई पूरी की। +","aanandram ne unnisvin sadi ke chhathe dashak men, yani asam men angrezi shiksha ke aarambhik charan men guvahati skool men apni paaee poori ki. +",neutral,neutral,neutral +"The living organism and its relationship with the environment. +","जीवित जीव और पर्यावरण के साथ उसके संबंध। +","living organism aur environment ke sath uske relationship +",neutral,neutral,neutral +"The time remaining when action is taken +","बचा समय जब क्रिया की जाती है +","time remaining jab action ki jati hai +",neutral,neutral,neutral +"The Quran itself states that muslims have the right to read the Quran. +","स्वयं कुरान कहता है और वे इसे पढ़ने के अधिकार ‎के साथ पढ़ते हैं। +","quran itself states hai aur ve ise pane ke adhikar ke sath pate read +",neutral,neutral,neutral +"Image format (default RGB) +","छवि प्रारूप (डिफ़ॉल्ट RGB) +","image format diflt RGB +",neutral,neutral,neutral +"For example, unwanted pregnancies especially amongst the under 16s always have serious personal and social consequences for both the mothers and their children. +","उदाहरणार्थ अनचाहा गर्भ, विशेषकर १६ वर्ष से कम की अवस्था में, माता एवं बच्चे दोनों के लिये अनेक वैयक्तिक एवं सामाजिक समस्याओं को जन्म देता हैं। +","unwanted pregnancies garbh, visheshakar १६ varsh se kam ki avastha men, mata evn bachche donon ke liye anek personal and social samasyaon ko janm deta hain. +",negative,negative,negative +"In Mumbai average annual temperature, and the average annual precipitation table +","मुंबई में औसत तापमान एवं वर्षण (प्रैसिपिटेशन) की सारणी +","mumbai average annual tapman evn varshan praisipiteshan ki sarni +",neutral,neutral,neutral +"President of India Shri Pranab Mukherjee will undertake a day visit to Punjab (Ludhiana) tomorrow (27 November, 2012). +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (27 नवम्बर, 2012) पंजाब (लुधियाना) की एक दिवसीय यात्रा करेंगे। +","bharat ke shri pranab mukherjee mukharji kal 27 november, 2012 pnjab ludhiyana ki ek divsiy yatra karenge. +",neutral,neutral,neutral +"Check that the spelling is correct and that your proxy settings are correct. +","जांच लें कि वर्तनी सही है और आपके प्रॉक्सी विन्यास सही हैं. +","check len ki spelling correct hai aur aapke proxy settings correct hain +",neutral,neutral,neutral +"Sonabadra District in Uttar Pradesh is the one and only place whose borders touches four other districts | +","उत्तर प्रदेश का सोनभद्र जिला देश का एक मात्र ऐसा जिला है जिसकी सीमाएँ सर्व चार प्रदेशों को छूती है। +","uttar prdesh ka place whose borders ka ek matr aesa jila hai jiski simaen sarv char prdeshon ko borders touches +",neutral,neutral,neutral +"I am extremely happy that Raipur Airport has been named after the saint / philosopher and visionary Swami Vivekananda. After Kolkata, Raipur is the place Swamiji spent the largest number of years of his life. +","मुझे यह जानकर बहुत खुशी हुई है कि रायपुर हवाई अड्डे का नाम संत/दार्शनिक तथा स्वपनद्रष्टा स्वामी विवेकानंद के नाम पर रखा गया है। +","mujhe yah janakar bahut khushi huee hai ki raipur airport adde ka nam sntdarshnik tatha svapanadrashta svami vivekannd ke nam par rakha gaya hai. +",positive,positive,positive +"associated or substantially identical trade marks +","सहयुक्त या सारत तदरूप व्यापार चिह्न +","sahyukt ya sarat identical trade chihn +",neutral,neutral,neutral +"1 gallon is 4 quarts. +","1 गॅलन 4 क्वॉर्ट होता है. +","1 gallon 4 quarts hota hai +",neutral,neutral,neutral +"The rising demand for gunny bags , created by increasing food exports to Europe , gave a fresh stimulus to jute cultivation and the handloom industry . +","यूरोप के लिए बढते खाद्य सामग्री के निर्यात के कारण बढ़ी हुई बोरियों की मांग ने जूट की खेती और हथकरघा उद्योग को एक नया प्रोत्साहन दिया . +","yoorop ke lie increasing food samagri ke niryat ke karan created by increasing ki mang ne joot ki kheti aur hathakargha udyog ko ek naya protsahan diya +",positive,positive,positive +"He made the Subhashbabu the Chief Working Officer of the corporation. +","उन्होंने सुभाषबाबू को महापालिका का प्रमुख कार्यकारी अधिकारी बनाया। +","unhonne made the subhashbabu ka prmukh chief working officer +",neutral,neutral,neutral +"Build but do not install the target. +","बिल्ड नहीं अधिष्ठापित करें लक्ष्य. +","bild nahin install the target +",neutral,neutral,neutral +"The process by which ammonia is converted to nitrites and then to nitrates. +","वह प्रक्रिया जिसके द्वारा अमोनिया को नाइट्राइटिस एवं तत्पश्चात नाइट्रेट्स में परिवर्तित किया जाता है +","vah process jiske dvara ammonia ko naitraitis evn tatpashchat nitrates men parivartit kiya jata hai +",neutral,neutral,neutral +"Registration under Shops and Establishment Act +","दुकानें और प्रतिष्ठान अधिनियम के तहत पंजीकरण +","shops and establishment act ke tahat registration +",neutral,neutral,neutral +"of what there is to fear and to hate. +","हमे किससे डरना चाहिये और बचना चाहिये. +","hame kisse darna chahiye aur bachna chahiye +",negative,negative,negative +"Subhashbabu was in jail in year 1930. +","1930 में सुभाषबाबू कारावास में थे। +","1930 year subhashbabu jail in year +",neutral,neutral,neutral +"Sales costs: Product inventory, raw materials, manufacturing equipment +","बिक्री लागतः उत्पाद सूची, कच्चा माल, निर्माण उपकरण +","sales costs product inventory , raw mal , manufacturing equipment +",neutral,neutral,neutral +"in that we have way more data that we know what to do with, +","में है कि हम रास्ता अधिक डेटा है कि हम जानते हैं के साथ क्या करना है, +","men hai ki ham rasta adhik data hai ki ham jante hain ke sath kya karna hai, +",neutral,neutral,neutral +"They made the boy continue digging, but he found nothing. +","उन्होंने लड़के को और खुदाई करने के लिए मजबूर किया, मगर मिला कुछ नहीं। +","unhonne boy ko aur digging karne ke lie majboor kiya , magar mila kuchh nahin. +",neutral,neutral,neutral +"But the folk writer developed an elaborate story about her. +","किंतु लोक-साहित्यकारों ने उसकी कहानी विस्तार से सुनायी। +","kintu lok-sahitykaron ne uski writer elaborate se sunayi. +",neutral,neutral,neutral +"But one important institution - the U.S. government - claims not to know Hadayet's goals. An FBI spokesman has said that “there's nothing to indicate terrorism.” Another FBI official said of Hadayet: “It appears he went there with the intention of killing people. Why he did that we are still trying to determine.” Possible causes named include a work dispute and a hate crime. +","परंतु एक महत्वपूर्ण संस्थान अमेरिकी सरकार का दावा है कि उन्हें हदायत के लक्ष्य का पता नहीं था। एफ बी आई के प्रवक्ता ने कहा, “ कुछ भी नहीं है जो आतंकवाद की ओर संकेत करता हो” । एफ बी आई के एक और अधिकारी ने हदायत के सम्बंध में कहा, “ ऐसा प्रतीत होता है कि वह वहाँ लोगों को मारने के आशय से गया था । हम यह जानने का प्रयास कर रहे हैं कि उसने ऐसा क्यों किया?” सम्भावित कारणों में कार्यक्षेत्र का विवाद और घृणा अपराध बताया गया। +","parntu ek important institution ameriki government ka claims hai ki unhen hadayet ke intention ka pata nahin tha. work bi people ke spokesman ne kaha , kuchh bhi nahin hai jo aatnkvad ki or snket karta ho nothing work bi people ke ek aur official ne hadayet ke sambndh men kaha , aesa prtit hota hai ki vah vahan logon ko marne ke aashay se gaya tha nothing ham yah janne ka pryas kar rahe hain ki usne aesa kyon kiya sambhavit causes men karyakshetr ka dispute aur hate crime bataya gaya. +",negative,negative,negative +"Renicapsule refers to the capsule in the kidney. +","अधिवृक्क-पिण्ड वृक्क में संपुटक को निर्दिष्ट करता है. +","adhivrikk-pind refers men capsule ko nirdisht karta hai +",neutral,neutral,neutral +"Nanalal was not merely a new signature but a new voice in modern Gujarati poetry. +","नानालाल गुजराती आधुनिक काव्य में एक नये हस्ताक्षर ही नहीं, एक नये स्वर भी थे। +","nanalal gujarati new poetry men ek naye signature hi nahin , ek naye voice bhi the. +",neutral,neutral,neutral +"Branch audit is conducted by a firm assigned the job on yearly basis. +","शाखा लेखा परीक्षा बाहरी फर्म द्वारा, जिसे वार्षिक रूप से यह कार्य सौंपा जाता है, की जाती है। +","branch audit pariksha basis firm dvara , jise yearly roop se yah job saunpa jata hai , ki jati hai. +",neutral,neutral,neutral +"Additionally, 23 post-graduate scholarships for courses in hydel power and water resources management at IIT, Roorkee have been offered to Nepali engineers and experts this year. +","इसके अतिरिक्त नेपाली इंजीनियरी और विशेषज्ञों को इस वर्ष आईआईटी रुड़की में पनबिजली और जल संसाधन प्रबंधन में पाठ्यक्रम के लिए 23 स्नातकोत्तर छात्रवृत्तियां प्रदान की जाएंगी। +","iske atirikt nepali injiniyri aur experts ko is hydel iit roorkee men power aur water resources management men courses ke lie 23 snatkottar scholarships prdan ki jaengi. +",neutral,neutral,neutral +"The Department of Agriculture organizes Pre - Kharif and Pre - Rabi Programme Planning Workshops that are attended by department officers, field level functionaries, university of agricultural sciences scientists, officers of line departments and related input agencies. +","कृषि विभाग खरीफ पूर्व और रबी पूर्व कार्यक्रम आयोजना कार्यशालाओं का आयोजन करता है जिसमें विभाग के अधिकारी, क्षेत्रीय स्तर के कार्यकर्ता, कृषि विज्ञान वैज्ञानिक विश्वविद्यालय इसी तरह के विभागों के अधिकारी और संबंधित निवेश एजेंसियों के अधिकारी भाग लेते हैं। +","krishi vibhag khariph poorv aur rabi poorv programme planning workshops ka aayojan karta hai jismen vibhag ke adhikari, kshetriy star ke karyakarta, agricultural sciences scientists vishvvidyalay isi tarah ke vibhagon ke adhikari aur related input agencies ke adhikari bhag lete hain. +",neutral,neutral,neutral +"Wherever you see the x, you just substitute it with the +","जहा भी आप जे देखे, आप इसे प्रतियस्थापित करे साथ +","wherever bhi aap x dekhe , aap ise prtiyasthapit kare sath +",neutral,neutral,neutral +"Circulation of water from the tank through the collectors and back to the tank continues automatically due to density difference between hot and cold water (thermosyphon effect). +","टंकी से संग्राहक तक पानी की धारा का प्रवाह गर्म और ठंडे पानी के घनत्व में अंतर (थर्मोसाइफन प्रभाव) के कारण हमेशा स्वचालित ढंग से बना रहता है। +","hot and cold tak pani ki dhara ka prvah garm aur thnde pani ke ghanatv men antar tharmosaiphan prbhav ke karan hamesha svchalit dhng se bana rahta hai. +",neutral,neutral,neutral +"At the back of Pratibimbal Lake there is a walking path +","प्रतिबिम्बित झील के पीछे पैदल पथ +","prtibimbit lake ke back walking path +",neutral,neutral,neutral +"Danaus Umniace is another common butterfly of the plains, with black wings, marked with bluish - white streaks. +","मैदानों की दूसरी सामान्य तितली डेनॉस लिम्निएस है जिसके काले पंखों पर नीलाभ-सफेद रेखाएं होती हैं। +","plains ki doosri common butterfly danaus umniace hai jiske black wings par nilabh-sphed rekhaen hoti hain. +",neutral,neutral,neutral +"(i) it begins to manufacture or produce articles after the 30th day of September, 1977 but before the 1st day of April, 1990, in any rural area ; +","(i) यह किसी ग्रामीण क्षेत्र में वस्तुओं का विनिर्माण या उत्पादन 30 दिसम्बर, 1977 के पश्चात् किंतु 1 अप्रैल, 1990 के पूर्व प्रारंभ करता है; +","i yah kisi rural area men vastuon ka manufacture or produce 30 disambar, 1977 ke pashchat kintu 1 aprail, 1990 ke poorv prarnbh karta hai +",neutral,neutral,neutral +"He was with Washington University, St. Louis, Mo., USA from 1961 to 1971. +","वह 1961 से 1971तक अमेरिका के वाशिंगटन विश्वविद्यालय के साथ जुड़े रहे। +","vah louis se 1971tak amerika ke washington university ke sath jure rahe. +",neutral,neutral,neutral +"to pull money out of the air, +","पैसे हवा से बाहर खींचने के लिए, +","money air se bahar pull ke lie, +",neutral,neutral,neutral +"Children between the ages of 3 and 7 have the best prognosis. +","3 से 7 वर्ष की उम्र के बच्चों में रोग का निदान सबसे अच्छे तरीके से हो सकता है. +","3 se 7 varsh ki ages ke bachchon men rog ka nidan sabse achchhe tarike se ho sakta hai +",positive,positive,positive +"This is essentially necessary in the evolution of laws and norms regarding the resources of the sea and of new technology involving outer space. +","यह बात विशेषतः समुद्र सम्बंधी तथा बाह्य अंतरिक्ष विषयक टेक्नोलाजी के विकास से सम्बद्ध कानूनों और मानदंडों के बारे में लागू होनी चाहिए। +","yah bat visheshta samudr sambndhi tatha bahy antriksh vishayak teknolaji ke vikas se sambaddh kanoonon aur mandndon ke bare men lagoo honi chahie. +",neutral,neutral,neutral +"if culture changes us, as indeed it does, +","अगर संस्कृति हमें परिवर्तित करती हो, जो कि वह वाकई करती है - +","agar snskriti hamen parivartit karti ho, jo ki vah vakee karti hai - +",neutral,neutral,neutral +"Commercial recovery of germanium has been mainly achieved from zinc and zinc - copper - lead ores, germanite and fly ash from coals. +","जर्मेनियम वाणिज्यक रूप में मुख्यतया जिंक, जिंक-तांबा-सीसा अयस्कों, जर्मेनाइट तथा कोयले की फ्लाई एश से प्राप्त होता है। +","germanium commercial roop men mukhyatya zinc , jink-tanba-sisa copper , jarmenait tatha coals ki ash lead se prapt hota recovery +",neutral,neutral,neutral +"A fruit of subfamily Maloideae of the family Rosaceae. +","रोसकशया वंश के मेलोडिया उपवंश का एक फल. +","rosakashya family ke melodiya upfamily ka ek phal +",neutral,neutral,neutral +"We 'll do the microbiology of it in the future +","हम भविष्य में इस बात का सूक्ष्म जीव विज्ञान है, लेकिन यह +","microbiology future men is bat ka sookshm jiv vijnjan hai , lekin yah +",neutral,neutral,neutral +"Padhya and Brahmbhatt, who painstakingly gathered facts on the lake, produced satellite pictures that showed the presence of a lake. +","पाध्या और ब्रह्मंभट्टं ने पूरी कोशिश करके तथ्य जुटाए और उपग्रह से खींची गई तस्वीरें पेश की, जिनसे वहां ज्हील होने की पुष्टि होती थी. +","padhya aur showed the presence koshish painstakingly gathered facts aur upagrah se khinchi gee tasviren pesh ki, jinse vahan jhil hone ki pushti hoti thi +",neutral,neutral,neutral +"So it tasted the evil result of its conduct, and the end of its affair was perdition. +","तो उन्होने अपने काम की सज़ा का मज़ा चख लिया और उनके काम का अन्जाम घाटा ही था +","to unhone apne affair ki evil ka maza conduct liya aur unke affair ka anjam ghata hi tha +",negative,negative,negative +"Opposition politicians such as those of the rightist Jamaat - e - Islami are already criticising the General 's alleged gullibility in putting his faith on the US. +","दक्षिणपंथी जमाते-इस्लमी जैसी विपक्षी पार्टियां अमेरिका पर भरोसा करने की जनरल की कथित मूर्खता की आलचना कर रही हैं. +","dakshinpnthi putting his faith partiyan amerika par bharosa karne ki janaral ki kathit moorkhta ki aalachna kar rahi hain +",negative,negative,negative +"Error sending ""% s"" to% s +","""% s"" को% s में भेजने में त्रुटि +","error ko error men bhejne men truti +",negative,negative,negative +"Windows that should be use alpha blur by default +","विंडोज़ जिसे मूलभूत रूप से अल्फा धुंधला का प्रयोग करना चाहिए +","windows jise default roop se alpha blur ka use karna chahie +",neutral,neutral,neutral +"Dr Bhanu may have been persuaded to step in because a business partner is close to former chief minister S. Bangarappa, who in turn is related to Rajkumar. +","भानु को भूमिका निभाने के लिए शायद इसलिए तैयार किया गया कि एक व्यावसायिक साज्हीदार के पूर्व मुयमंत्री एस. बंगारप्पा से, जो राजकुमार के रिश्तेदार हैं, निकट संबंध हैं. +","dr ko minister nibhane ke lie turn islie taiyar kiya gaya ki ek vyavsayik partner ke former chief es bngarappa se , jo rajkumar ke rishtedar hain , nikat business hain +",neutral,neutral,neutral +"He would search for sure - fire devices of making bombs. +","बम बनाने के नुस्ख़े तलाश करता। +","bombs banane ke nuse talash sure +",neutral,neutral,neutral +"Excavations made in Malabar have proved the existence of chambers in which massive earthenware urns had been kept. +","मालाबार में खुदाई के कमरों में रखे हुए बड़े-बड़े बर्तन मिले हैं जिनमे शव रखे जाते थे। +","malabar men excavations ke kamron men rakhe hue bare-bare earthenware mile hain jinme massive rakhe jate the. +",neutral,neutral,neutral +"Crowding also brings about other factors of destruction such as disease and malnutrition. +","भीड़-भाड़ भी विनाश के अन्य कारणों को जन्म देती है, जैसे बीमारी और अपर्याप्त पोषण। +","bhir-bhar bhi destruction ke other factors ko janm deti hai , jaise disease aur aparyapt poshan. +",negative,negative,negative +"that's right, a $1 billion - +","जी हाँ, 10 करोड़ डॉलर्ज़ - +","ji han, 10 billion dlarz - +",neutral,neutral,neutral +"Of the people there are some who say: ""We believe in Allah and the Last Day;"" but they do not (really) believe. +","कुछ लोग ऐसे हैं जो कहते हैं कि हम अल्लाह और अन्तिम दिन पर ईमान रखते हैं, हालाँकि वे ईमान नहीं रखते +","kuchh people aese hain jo kahte hain ki ham allah aur antim din par eeman rakhte hain, halanki ve eeman nahin rakhte +",neutral,neutral,neutral +"But we have very special warmth for Nepal and we think that any relationship which we build up or trade relations or economic co - operation will be to our mutual benefit. +","लेकिन हमारे मन में नेपाल के लिए विशेष प्यार है और हम सोचते हैं कि उससे जो भी सम्बंध हम विकसित करेंगे, चाहे व्यापारिक सम्बंध हो या आथिर्क सहयोग वे दोनों ही देशों के लिए लाभदायक होंगे। +","lekin hamare man men nepal ke lie vishesh pyar hai aur ham sochte hain ki usse jo bhi sambndh ham viksit karenge, chahe vyaparik sambndh ho ya aathirk sahyog ve relations or economic ke lie labhdayak honge. +",positive,positive,positive +"It is indeed a happy occasion for me this evening to participate in the inauguration of the International Conference on Natural Fibres, which has been organized to mark the conclusion of the Platinum Jubilee Celebrations of the National Institute of Research on Jute and Allied Fibre Technology (NIR-JAFT). +","अंतरराष्ट्रीय प्राकृतिक रेशा सम्मेलन, जिसे राष्ट्रीय जूट और संबंधित रेशा प्रौद्योगिकी अनुसंधान के प्लेटिनम जुबली समारोह के स्थापना के अवसर पर आयोजित किया गया है, के उद्घाटन में आज की शाम भाग लेना मेरे लिए वास्तव में खुशी का मौका है। +","antarrashtriy natural international conference , jise national joot aur snbndhit international technology research ke platinum conclusion samaroh ke sthapna ke occasion par aayojit kiya gaya hai , ke inauguration men aaj ki sham bhag lena mere lie vastav men happy ka mauka hai. +",positive,positive,positive +"Another program on your computer added an extension that may change the way Chrome works. +","आपके कंप्यूटर पर किसी अन्य प्रोग्राम ने एक्सटेंशन जोड़ा है, जो Chrome के काम करने के तरीके को बदल सकता है. +","aapke computer par kisi any added an extension jora hai, jo Chrome ke kam karne ke tarike ko badal sakta hai +",neutral,neutral,neutral +"The label used for menu items and buttons that activate this action. +","मेनू मद व बटन के लिये लेबल जो इस क्रिया को सक्रिय करता है. +","menu items v buttons ke liye label jo is action ko sakriy karta hai +",neutral,neutral,neutral +"In this too, their situation was fundamentally different from mine. +","इस प्रश्न को लेकर भी मेरे और उनके दृष्टिकोण में भारी अन्तर था। +","is prashn ko lekar bhi mere aur unke drishtikon men bhari antar tha. +",neutral,neutral,neutral +"Or you may be unable to work because of a serious illness or disability. +","या फिर आप किसी गंभीर बीमारी या फिर विकलांगता के कारण काम नही कर सकेंगे । +","ya phir aap kisi serious illness ya phir disability ke karan unable nahi kar sakenge . +",negative,negative,negative +"Shares of best companies which have very important effect on the share market. +","श्रेष्ठ कंपनियों के शेयर्स जो शेयर बाजार को बहुत प्रभावित करने वाले हों। +","shreshth companies ke effect jo share market ko bahut prbhavit karne vale hon. +",positive,positive,positive +"On the passage from the Gate to the Central Hall from where the procession passes, red baize cloth is spread. +","जहाँ से शोभायात्रा गुजरती है अर्थात् मुख्य द्वार से केन्द्रीय कक्ष तक लाल कालीन बिछाया जाता है। +","jahan se procession passage hai arthat central gate se kendriy hall tak red kalin bichhaya jata hai. +",neutral,neutral,neutral +"He was appreciated a lot for his role opposite Rajesh Khanna and Rekha and he also got Filmfare award for best supporting actor. +","राजेश खन्ना और रेखा के विपरीत इनकी सहायक भूमिका में इन्हें बेहद सराहा गया और इन्हें सर्वश्रेष्ठ सहायक कलाकार का फिल्मफेयर पुरस्कार दिया गया। +","rajesh khanna aur rekha ke viprit inki sahayak role men inhen behad lot gaya aur inhen best sahayak actor ka filmfare award diya gaya. +",positive,positive,positive +"(18) ""company in which the public are substantially interested""a company is said to be a company in which the public are substantially interested— +","(18) ''वह कंपनी जिसमें जनता पर्याप्त हितबद्ध है''- किसी कंपनी को ऐसी कंपनी, जिसमें जनता82 पर्याप्त रूप से हितबद्ध है, तब कहा जाता है जब– +","18 vah company jismen public paryapt interested hai - kisi company ko aesi company , jismen janta82 paryapt roop se interested hai , tab kaha jata hai jab +",neutral,neutral,neutral +"And we know how to write that in decimal form. +","और हम जानते हैं की इसे कैसे दसमलव के रूप में लिखते. +","aur ham jante hain ki ise kaise decimal ke form men likhte +",neutral,neutral,neutral +"Ladies and Gentlemen, manpower and technology are the prime drivers of industrial progress. +","देवियो और सज्जनो, जनशक्ति और प्रौद्योगिकी, औद्योगिक प्रगति के प्रमुख प्रेरक हैं। +","ladies aur sajjno, manpower and technology, industrial progress ke prime drivers hain. +",positive,positive,positive +"These dealt with matters arising during periods of the first and second Emergencies proclaimed in 1962 and 1971. +","इनका संबंध उन मामलों से था जो 1962 और 1971 में उदघोषित आपात उपबंध पहले और दूसरे आपातो के दौरान पैदा हुए। +","inka snbndh un mamlon se tha jo 1962 aur 1971 men udghoshit aapat upbndh pahle aur doosre aapato ke dauran paida hue. +",neutral,neutral,neutral +"But he who is given the Record behind his back, +","और रह वह व्यक्ति जिसका कर्म-पत्र (उसके बाएँ हाथ में) उसकी पीठ के पीछे से दिया गया, +","aur rah vah vyakti jiska karm-patr uske baen hath men uski pith ke pichhe se diya gaya, +",neutral,neutral,neutral +"because we can say one hundred will go into seven hundred and twenty - three. +","क्योंकि हम कह सकते हैं एक सौ सात सौ और बीस-तीन में जाना होगा। +","kyonki ham kah sakte hain ek sau sat sau aur twenty men jana hoga. +",neutral,neutral,neutral +"Everything was in motionup and down and sideways and forwards. +","हर चीज हरकत में थी-ऊपर, नीचे, दायें, बायें, सामने। +","har chij harakat men thi-oopar, niche, dayen, bayen, samne. +",neutral,neutral,neutral +"Your demand being so reasonable, no impartial person would even suggest that you should moderate it. +","आपकी मांग ऐसी है कि कोई निष्पक्ष मनुष्य उसमें काटछांट करनेकी बात सुझा ही नहीं सकता। +","aapki mang aesi hai ki koee impartial person usmen katchhant karneki bat sujha hi nahin sakta. +",negative,negative,negative +"What quantity should be added to both sides of this equation +","क्या मात्रा इस समीकरण के दोनों पक्षों के लिए शामिल किया जाना चाहिए +","kya quantity is equation ke sides pakshon ke lie shamil kiya jana chahie +",neutral,neutral,neutral +"I throw a ball and it 's going to go up in the air. +","मैं एक गेंद फेंक और इसे हवा में ऊपर जाना जा रहा है। +","i ek ball phenk aur ise air men oopar jana ja raha hai. +",neutral,neutral,neutral +"Somebody sang before him a song which goes thus: ” I feel I am a poor man when people do n 't ask gifts of me. +","किसी ने उसके सामने इसक प्रकार का गीत गाया: ” जब लोग मुझसे दान नहीं मांगते तो जान पड़ता है कि दरिद्र व्यक़्ति हूं. +","kisi ne uske i somebody prkar ka song gifts : jab people ask dan nahin mangte to jan parta hai ki poor man hoon +",negative,negative,negative +"Sacred place of Hindus located in the district of Faizabad in the state of Uttar Pradesh. +","उत्तर प्रदेश राज्य में फैज़ाबाद जिले में स्थित हिन्दूओं की एक पवित्र जगह। +","uttar prdesh rajy men phaizabad jile men sthit hindooon ki ek sacred place +",neutral,neutral,neutral +"In old Tamil literature also one comes across the murasu quite often . +","प्राचीन तमिल साहित्य में मुरसु का भी कई जगह उल्लेख हुआ है . +","old tamil literature men murasu ka bhi kee jagah ullekh huaa hai +",neutral,neutral,neutral +"Once your decisions are known, money can be obtained. +","एक बार आपके निर्णय ज्ञान हो जाने के बाद पैसा प्राप्त किया जा सकेगा। +","ek bar aapke decisions jnjan ho jane ke bad money prapt kiya ja sakega. +",neutral,neutral,neutral +"You can select one or more devices. +","आप एक या अधिक उपकरण चुन सकते हैं. +","aap ek ya adhik devices select sakte hain +",neutral,neutral,neutral +"It belongs to the seventh century if not earlier , and was perhaps intended originally for the Buddhist creed , but was adopted later for a Vishnu temple , the principal deity being a recumbent Vishnu , or Anantasayin . +","यदि यह और पहले का नहीं , तो भी सातवीं शताब्दी का बना है और शायद मूल रूप से बौद्ध मत के लिए था , किंतु बाद में विष्णु मंदिर में रूपांतरित कर दिया गया जिसमें प्रमुख देवता लेटे हुए विष्णु या अनंतशायी हैं . +","yadi yah aur pahle ka nahin , to bhi seventh century ka bana hai aur shayad mool roop se bauddh mat ke lie tha , kintu bad men vishnu mndir men roopantrit kar diya gaya jismen prmukh devta lete hue vishnu ya anntshayi hain +",neutral,neutral,neutral +"Belonging to a particular denomination, he had his own customs. +","एक विशिष्ट संप्रदाय का होने के नाते उसकी अपनी कुछ प्रथाएं थीं। +","ek particular denomination ka hone ke nate uski apni kuchh customs thin. +",neutral,neutral,neutral +"Sudhir, run and call Panu Babu. +","सुधीर, तुम दौड़कर जाओ, पानू बाबू को फौरन बुला लाओ। +","sudhir , tum daurakar jao , panu babu ko phauran bula lao. +",neutral,neutral,neutral +"You can see a gleam in their eye. +","और आपको उनकी आँखों में एक चमक दिखेगी। +","aur aapko unki eye men ek gleam dikhegi. +",neutral,neutral,neutral +"There are cases in which the constituencies are more than 200 miles away from Lucknow. +","ऐसे भी निर्वाचन-क्षेत्र हैं, जो लखनऊसे दो सौ मीलसे भी ज्यादा दूर हैं। +","aese bhi nirvachan-kshetr hain , jo lakhnoose do more milse bhi jyada door cases +",neutral,neutral,neutral +"When it is obvious that the goals cannot be reached, don 't adjust the goals, adjust the action steps. +","जब यह साफ हो कि लक्ष्यों को प्राप्त नहीं किया जा सकता है, तो लक्ष्यों में फेरबदल न करें, बल्कि अपनी प्रयासों में बदलाव करें. +","jab yah saph ho ki goals ko prapt nahin kiya ja sakta hai, to adjust the action n karen, balki apni action steps badlav karen +",negative,negative,negative +"two into forty is twenty times. +","चालीस में दो बीस गुना है। +","forty men do twenty times hai. +",neutral,neutral,neutral +"And here you'll see Daniel throw this hoop into the air, +","और यहाँ आप देखेंगे डानिएल हूप को ऊपर उड़ाते हुए, +","aur yahan aap throw this hoop ko oopar urate hue, +",neutral,neutral,neutral +"But there was music in the family. +","लेकिन परिवार का वातावरण संगीतमय था। +","lekin family ka vatavaran sngitamay tha. +",neutral,neutral,neutral +"“ Could he see you ? ” +","“ क्या उसने तुम्हें देख लिया ? ” +","kya usne tumhen dekh liya +",neutral,neutral,neutral +"Choose the version of the Kolab Server you are using. +","कोलाब संस्करण जो आप इस्तेमाल कर रहे हैं उसे चुनें. +","kolab version jo aap istemal kar rahe hain use server +",neutral,neutral,neutral +"this expression, it 's the derivative of y. +","इस अभिव्यक्ति, यह व्युत्पन्न y का है। +","is expression, yah derivative y ka hai. +",neutral,neutral,neutral +"Round them will be passed a cup of pure wine; +","उनके बीच विशुद्ध पेय का पात्र फिराया जाएगा, +","unke bich pure pey ka passed a cup, +",neutral,neutral,neutral +"Indeed in that are signs, and indeed, We are ever testing [Our servants]. +","इसमें शक नहीं कि हसमें (हमारी क़ुदरत की) बहुत सी निशानियाँ हैं और हमको तो बस उनका इम्तिहान लेना मंज़ूर था +","ismen servants nahin ki signs hamari udarat ki bahut si nishaniyan hain aur hamko to bas unka imtihan lena mnzoor tha +",neutral,neutral,neutral +"Enable audible notifications when new messages arrive. +","नए संदेश आने पर श्रव्य सूचनाएं सक्षम करें. +","new messages enable par audible notifications saksham karen +",neutral,neutral,neutral +"Show disk view 'Type' column on startup +","'प्रकार' स्तंभ को आरंभन पर डिस्क दृश्य दिखाएँ +","column stnbh ko startup par disk show dikhaen +",neutral,neutral,neutral +"A muscle that retracts an organ. +","एक पेशी जो किसी अंग का आकुंचन करती है. +","ek peshi jo kisi organ ka aakunchan karti hai +",neutral,neutral,neutral +"The Skene 's glands is more commonly known as the G - spot. +","स्कीन ग्रन्थियाँ सामान्यतः जी-स्पॉट के रूप में जानी जाती हैं. +","skin granthiyan samanyta ji-spt ke roop men g more hain +",neutral,neutral,neutral +"The males die and are absorbed. +","नर कृमि नष्ट होकर अवशोषित कर लिए जाते हैं। +","males krimi nasht hokar avshoshit kar lie jate hain. +",negative,negative,negative +"The pre-poll phase (registration of voters) and +","मतदान-पूर्व चरण (मतदाताओं का रजिस्ट्रीकरण) तथा +","matdan-poorv phase matdataon ka rajistrikaran tatha +",neutral,neutral,neutral +"People of Ahmedia community do not accept Muhammed as the last prophet and also call themselves the followers of Islam. +","अहमदिय्या समुदाय के लोग मुहम्मद साहब को अन्तिम नबी नहीं मानते हैं और स्वयं को इस्लाम का अनुयायी भी कहते हैं। +","ahamdiyya samuday ke log muhammad sahab ko antim nabi nahin mante hain aur svyn ko followers of islam bhi kahte hain. +",negative,negative,negative +"Mrs de Leeuw then invited her to teach at a new school at London. +","इसके बाद श्रीमती डा. लीयू ने उसे लंदन के एक नए स्कूल में अध्यापन-कार्य के विए आमंत्रित किया। +","iske bad mrs da liyoo ne use lndan ke ek ne skool men adhyapan-kary ke vie aamntrit kiya. +",neutral,neutral,neutral +"The President of India, Shri Pranab Mukherjee will visit Uttar Pradesh (Vrindavan, Mathura) tomorrow (November 18, 2015) where he will inaugurate the 500thyear celebrations of Sri Chaitanya Mahaprabhu’s advent in Vrindavan. He will also visit the Shri Radha Raman Temple. +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (18 नवम्बर, 2015) उत्तर प्रदेश (वृंदावन, मथुरा) की यात्रा करेंगे जहां वह श्री चैतन्य महाप्रभु के वृंदावन आगमन के 500वें वर्ष समारोह का उद्घाटन करेंगे। वह श्री राधा-रमण मंदिर के दर्शन करने भी जाएंगे। +","bharat ke shri pranab mukherjee mukharji kal 18 navambar, 2015 uttar prdesh vrindavan, mathura ki yatra karenge jahan vah shri chaitany mahaprbhu ke vrindavan aagaman ke 500ven varsh samaroh ka udghatan karenge. vah shri radha-raman mndir ke darshan karne bhi jaenge. +",neutral,neutral,neutral +"The house around them was settling down into unquiet sleep, but they were both wide awake. +","चारों ओर से उन्हें घेरता हुआ मकान अशान्त निद्रा में सो रहा था, किन्तु वे दोनों जाग रहे थे। +","charon or se unhen gherta huaa makan unquiet sleep men so raha tha, kintu ve wide awake rahe the. +",neutral,neutral,neutral +"It assists the government in formulating and implementing policies for national development. +","यह राष्ट्रीय विकास के लिए नीतियों के निर्माण और कार्यान्वयन में सरकार की मदद करती है। +","yah national development ke lie nitiyon ke formulating and implementing men assists the government karti hai. +",neutral,neutral,neutral +"They said, 'Nay, but we found our fathers so doing.' +","उन्होंने कहा, ""नहीं, बल्कि हमने तो अपने बाप-दादा को ऐसा ही करते पाया है।"" +","unhonne kaha , nahin , balki hamne to apne bap-dada ko fathers hi karte paya hai. +",neutral,neutral,neutral +"There are some reserved parking zones for those car who show the orange badge on their windscreen, or you can sometimes park where generally parking is not permitted. < s > You and Your Body (उपयोगी +","संस्थाओं के पते पृष्ठ ३९ पर हैं) कई स्थानों पर पार्किंग स्थान, विशेषकर, उन कारों के लिये रिज़र्व रखे गये हैं जो अपने विंडस्क्रीन पर ओरेंज बैज का प्रगर्शन करते हैं, और आप सीमित समय के लिये उन स्थानों पर भी रूक सकते हैं, प्रायः जहां पार्क करने की अनुमति नहीं हैं। +","snsthaon ke pate prishth ३९ par hain kee sthanon par parking sthan, visheshakar, un karon ke liye rizarv rakhe gaye hain jo apne vindaskrin par orenj baij ka pragarshan karte hain, aur aap simit samay ke liye un sthanon par bhi rook sakte hain, park where generally karne ki anumti nahin hain. +",neutral,neutral,neutral +"Payment of property tax, electricity bills and water bills of colonies and office premises bills of vendors +","कालोनियों और कार्यालय परिसरों और प्रधान कार्यालय का संपत्ति कर, बिजली के बिलों, पानी के बिलों और विक्रताओं के बिलों का भुगतान +","colonies aur office premises aur prdhan office ka property kar , electricity ke bills , water ke bills aur vikrtaon ke bills ka payment +",neutral,neutral,neutral +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","vastav men eparchar kal exposure time ko diya gaya vigopan kal hai jo kisi optical system eparchar ke madhyam se chitr satah men kisi kendrbindu par aati hai. +",neutral,neutral,neutral +"Badi Maa and Dana Pani were written for Hindi films. +","बडी मॉँ और दाणा पाणी हिन्दी फिल्मों के लिए लिखे गए थे। +","badi mn aur dana pani hindi films ke lie likhe dana the. +",neutral,neutral,neutral +"List of Governors of Tamil Nadu +","तमिल नाडु के राज्यपालों की सूची +","tamil nadu ke governors ki list +",neutral,neutral,neutral +"Once your decisions are known, money can be obtained. +","एक बार आपके निर्णय ज्ञान हो जाने के बाद पैसा प्राप्त किया जा सकेगा। +","ek bar aapke nirnay jnjan ho jane ke bad paisa prapt kiya ja sakega. +",neutral,neutral,neutral +"This is how We reward the doers of good. +","मुबारक हम नेकोकारों को ऐसा ही बदला दिया करते हैं +","good ham doers ko aesa hi badla diya karte hain +",positive,positive,positive +"A measurement of change in prices. +","कीमतों में परिवर्तन को आंकने का एक पैमाना। +","change in prices ko aankne ka ek paimana. +",neutral,neutral,neutral +"This bushy plant is a host in a plant pathosystem. +","यह झाड़ीदार पौधा पादप रोग-तंत्र में एक परपोषी है। +","yah bushy plant padap rog-tntr men ek host hai. +",neutral,neutral,neutral +"They distribute agricultural machinery; undertake wholesale, retail and foreign trade. +","यह कृषि यंत्रों, थोक तथा खुदरा बाजार एवं विदेशी व्यापार को भी वितरित एवं नियंत्रित करता है। +","yah agricultural machinery, thok tatha khudra bajar evn foreign trade ko bhi vitrit evn niyntrit karta hai. +",neutral,neutral,neutral +"We should view the going of such a person not so much with sorrow, but with gratitude that we had the privilege of knowing her, that we had the privilege of her affection, that we had the privilege of being within her circle of radiance. +","ऐसी विभूति के प्रयाण पर हमें दुखी न होकर कृतज्ञता महसूस करनी चाहिए कि हमने उन्हें जाना, उनका प्यार पाया, उनके व्यक्तित्व के प्रभामंडल में रहने का गौरव प्राप्त किया। +","aesi vibhooti ke pryan par hamen dukhi n hokar kritajnjta mahsoos karni chahie ki hamne unhen jana, unka pyar paya, unke vyaktitv ke prbhamndal men rahne ka gaurav prapt kiya. +",positive,positive,positive +"Doppler radar is generally used in police radar systems and also for measuring the velocity of hurricanes. +","डॉपलर रडार का उपयोग आम तौर पर पुलिस रडार प्रणालियों में किया जाता है, इसके साथ ही इसका इस्तेमाल तूफान के वेग को मापने के लिए भी किया जाता है +","doppler radar ka upyog aam taur par police radar systems men kiya jata hai , iske sath hi iska istemal hurricanes ke velocity ko mapne ke lie bhi kiya jata hai +",neutral,neutral,neutral +"In a condolence message, the President has said, ""It was with profound sorrow that I learnt of the passing away ofShri Justice V.R. Krishna Iyer. +","राष्ट्रपति ने एक शोक संदेश में कहा है , "" मुझे न्यायमूर्तिश्रीवी आर कृष्ण अय्यर के निधन के बारे में जानकर अत्यंत दुःख हुआ है। +","president ne ek condolence message men kaha hai , i justice profound krishn ayyar ke nidhan ke bare men janakar atynt duakh huaa hai. +",neutral,neutral,neutral +"Therefore listen not to the Unbelievers, but strive against them with the utmost strenuousness, with the (Qur 'an). +","अतः इनकार करनेवालों की बात न मानता और इस (क़ुरआन) के द्वारा उनसे जिहाद करो, बड़ा जिहाद! (जी तोड़ कोशिश) +","ata inkar karnevalon ki bat n manta aur is uraan ke dvara unse jihad karo, bara jihad! ji tor koshish +",neutral,neutral,neutral +"The amount of commission paid to the broker. +","दलाल को दी जाने वाली कमीशन की राशि। +","broker ko di jane vali amount of commission +",neutral,neutral,neutral +"in that we have way more data that we know what to do with, +","में है कि हम रास्ता अधिक डेटा है कि हम जानते हैं के साथ क्या करना है, +","men hai ki ham way more data hai ki ham jante hain ke sath kya karna hai , +",neutral,neutral,neutral +"Under the Act, weight and measures also include 'weighing or measuring instrument' which means ""any object, instrument, apparatus or device, or any combination thereof, which is, or is intended to be, used, exclusively or additionally, for the purpose of making any weighment or measurement, and includes any appliance, accessory or part associated with any such object, instrument, apparatus or device"". +","अधिनियम के अंतर्गत, भार तथा माप में ""भार करने का मापन करने वाला उपकरण"" भी शामिल है जिसका अर्थ है ""कोई भी वस्तु उपकरण, यंत्र या युक्ति या उनका कोई भी संयोजक जिसका प्रयोग से अनन्य रूप से या अतिरिक्त रूप से किया जाता है या किया जाना आशयित है तथा इसमे ऐसी किसी वस्तु, उपकरण, उपस्कर या युक्ति से संबद्ध कोई उपकरण, सहायक सामग्री या पुर्जा शामिल है।"" +","act ke antargat , weight thereof combination men weight karne ka measurement karne vala measures bhi shamil hai jiska arth hai koee bhi object measures , yntr ya yukti ya unka koee bhi snyojak jiska pryog se anany roop se ya atirikt roop se kiya jata hai ya kiya jana aashyit hai thereof isme aesi kisi object , measures , upaskar ya yukti se snbaddh koee measures , accessory samagri ya part shamil hai. +",neutral,neutral,neutral +"And if their speed is zero, they 'll maintain that restfulness. +","और यदि उनकी गति शून्य है, तो वे उस restfulness को बनाए रखने देंगे। +","aur yadi unki speed shoony hai, to ve us restfulness ko maintain rakhne denge. +",neutral,neutral,neutral +"install the standard and TSC pumps +","मानक और टीएससी पंप स्थापित करें +","standard aur tiessi pumps install karen +",neutral,neutral,neutral +"two into forty is twenty times. +","चालीस में दो बीस गुना है। +","chalis men do forty is twenty +",neutral,neutral,neutral +"The midrib which is present in the leaves of small leafy plants. +","पत्ती के केन्द्र जिसके छोटे पत्तेदार पौधों की पत्तियों में मौजूद है। +","leaves ke kendr jiske small leafy plants ki pattiyon men present hai. +",neutral,neutral,neutral +"Open this bookmark in a new window +","इस पुस्तकचिह्न को नए विंडो में खोलें +","is bookmark ko new window men kholen +",neutral,neutral,neutral +"National Rail Museum, New Delhi +","राष्ट्रीय रेल संग्रहालय, नई दिल्ली +","national rail museum , new delhi +",neutral,neutral,neutral +"Bring me sheets of iron ""- until, when he had leveled [them] between the two mountain walls, he said,"" Blow [with bellows], ""until when he had made it [like] fire, he said,"" Bring me, that I may pour over it molten copper. "" +","(अच्छा तो) मुझे (कहीं से) लोहे की सिले ला दो (चुनान्चे वह लोग) लाए और एक बड़ी दीवार बनाई यहाँ तक कि जब दोनो कंगूरो के दरमेयान (दीवार) को बुलन्द करके उनको बराबर कर दिया तो उनको हुक्म दिया कि इसके गिर्द आग लगाकर धौको यहां तक उसको (धौंकते-धौंकते) लाल अंगारा बना दिया +","achchha to mujhe khin se lohe ki sile la do chunanche vah log lae aur ek bari divar banaee yahan tak ki jab dono sheets of iron divar ko buland karke unko barabar kar diya to unko hukm diya ki iske gird aag lagakar dhauko yahan tak usko dhaunkte-dhaunkte lal angara bana diya +",neutral,neutral,neutral +"For 5to 6days Suddodhana arranged a programme for naming ceremony and appointed 8 brahmin pandits to tell about the future. +","सुधोधना ने पांचवें दिन एक नामकरण समारोह आयोजित किया और आठ ब्राह्मण विद्वानों को भविष्य पढ़ने के लिए आमंत्रित किया। +","sudhodhna ne panchven din ek naming ceremony aayojit kiya aur aath brahmin pandits ko bhavishy pane ke lie aamntrit kiya. +",neutral,neutral,neutral +"Jute plants need a temperature ranging from 21 to 38 degrees Celsius and relative humidity of 70 to 80 per cent. +","पटसन के पौधों को 21 से 38 डिग्री सेलसियस तापमान तथा 70 से 80 प्रतिशत सापेक्ष आर्द्रता की जरूरत पड़ती हैं। +","patasan ke paudhon ko 21 se 38 digri selsiyas tapman tatha 70 se 80 prtishat sapeksh aardrta ki jaroorat parti hain. +",neutral,neutral,neutral +"16. Pitchblende and other uranium ores. +","16. पिचब्लेंड और अन्य यूरेनियम अयस्क। +","16 pichablend aur any uranium ayask. +",neutral,neutral,neutral +"By contrast , one LSD trip might result in psychological damage to somebody with latent mental illness . +","इसके विपरीत एलएसडी का एक ही बार दम लगाने से किसी प्रच्छन्न दिमाग़ी रोग वाले व्यक्ति को मनोवैग्यानिक हानि पहुँचने की संभावना हो सकती है । +","iske contrast lsd ka ek hi bar dam lagane se kisi latent trip illness vale vyakti ko manovaigyanik damage pahunchne ki snbhavna ho sakti hai . +",negative,negative,negative +"Committee on Health and Family Welfare: +","स्वास्थ्य और परिवार कल्याण संबंधी समितिः +","health aur family welfare committee samitia +",neutral,neutral,neutral +"(a) the provisions of any existing law; or +","(क) किसी वर्तमान विधि के उपबंधों पर, अथवा +","provisions kisi vartman law ke upbndhon par , athva +",neutral,neutral,neutral +"Agriculture is mainly done to meet the food requirement of the family and livestock. +","खेती मुख्य रूप से परिवार तथा पशुओं की भोजन आवश्यकताओं के लिए की जाती है। +","kheti mukhy roop se family and livestock ki food requirement ke lie ki jati hai. +",neutral,neutral,neutral +"The midrib which is present in the leaves of small leafy plants. +","पत्ती के केन्द्र जिसके छोटे पत्तेदार पौधों की पत्तियों में मौजूद है। +","patti ke kendr jiske small leafy plants ki pattiyon leaves of small +",neutral,neutral,neutral +"The period of heat in ewes lasts from 3 to 70 hours , with an average of 27 hours . +","भेड़ें 3 से 70 घण्टे तक गर्मी में रहती हैं.गर्मी की औसत अवधि 27 घण्टे होती है . +","ewes 3 se 70 lasts tak heat men rahti haingarmi ki average period 27 lasts hoti hai +",neutral,neutral,neutral +"And in this state, he is married and brings home a wife. +","इसी हालत मके उसका विवाह हो जाता है और पत्नी घर में ले आता है। +","isi state make uska married ho jata hai aur wife ghar men le aata hai. +",neutral,neutral,neutral +"This group traveled in two ships to reach Jeddah in year 1577 and left for Mecca and Madina. +","ये जत्था दो पोतों में सूरत से जेद्दाह बंदरगाह पर १५७७ में पहुंचा और मक्का और मदीना को अग्रसर हुआ। +","ye group do ships men soorat se jeddah bndargah par year men pahuncha aur mecca aur madina ko agrasar huaa. +",neutral,neutral,neutral +"I think it starts household by household, under the same roof. +","मैं सोचती हूँ यह घर से शुरू होती है, एक ही छत के नीचे। +","i household same yah ghar se shuroo hoti hai , ek hi roof ke niche. +",neutral,neutral,neutral +"when the earth shall be rocked +","जब धरती थरथराकर काँप उठेगी; +","jab earth tharathrakar kanp uthegi +",neutral,neutral,neutral +"Eyes: Spitting cobras can actually eject their venom quite accurately into the eyes of their victims, resulting in direct eye pain and damage. +","आंख-थूकनेवाले कोबरा अक्सर अपने शिकार की आंखों में विष थूक देते हैं, जिससे आंखें क्षतिग्रस्त हो सकती हैं या उनमें दर्द हो सकता है। +","venom quite accurately apne direct eye pain men vish thook dete hain, jisse aankhen kshtigrast ho sakti hain ya unmen dard ho sakta hai. +",negative,negative,negative +"Another sensible approach would be to prevent the mast cells from exploding and the subsequent release of histamine. +","दूसरा उपाय यह है कि मास्ट कोशिकाओं से हिस्टामीन निकलने ही न दिया जाये। +","doosra approach yah hai ki mast cells se histamin nikalne hi n diya jaye. +",neutral,neutral,neutral +"He was appreciated a lot for his role opposite Rajesh Khanna and Rekha and he also got Filmfare award for best supporting actor. +","राजेश खन्ना और रेखा के विपरीत इनकी सहायक भूमिका में इन्हें बेहद सराहा गया और इन्हें सर्वश्रेष्ठ सहायक कलाकार का फिल्मफेयर पुरस्कार दिया गया। +","supporting actor aur rekha ke viprit inki sahayak bhoomika men inhen behad saraha gaya aur inhen sarvashreshth sahayak kalakar ka philmpheyar puraskar diya gaya. +",positive,positive,positive +"My devotees! no fear shall be on you that Day, nor shall ye grieve, - +","""ऐ मेरे बन्दों! आज न तुम्हें कोई भय है और न तुम शोकाकुल होगे।""- +","ae mere bandon! aaj n tumhen koee bhay hai aur n tum grieve hoge.- +",positive,positive,positive +"All his reviews are based on this criterion and hence do not go further than assessing the thought and discussing the language. +","उनकी समीक्षायें इन्हीं मापदण्डों पर आधारित होती हैं, अतः वह विचारों के मूल्यांकन और भाषा की चर्चा से आगे नहीं बढ़ पाते। +","unki samikshayen inhin mapadandon par aadharit hoti hain, ata vah assessing the thought aur discussing the language se aage nahin ba pate. +",neutral,neutral,neutral +"A sliding Vicryl noose is used in postoperative suture adjustment of extraocular muscles. +","खिसकने वाली विक्राइल फंदे का प्रयोग शल्यक्रिया के बाद नेत्रेतर मांसपेशियों की सीवन के समन्वयन हेतु किया जाता है। +","khisakne vali vikrail phnde ka pryog shalyakriya ke bad netretar manspeshiyon ki sivan ke samanvayan hetu kiya jata hai. +",neutral,neutral,neutral +"“ Look ! ” he said . +","“ देखो ! ” उसने कहा । +","look ! s usne kaha . +",neutral,neutral,neutral +"and it re-condenses in the other side. +","और वह फिर दूसरे पक्ष में गाढ़ी हो जाती है +","aur vah phir doosre side men gai ho other hai +",neutral,neutral,neutral +"Yet his novel could not attain perfect fusion of content and form. +","फिर भी उनके उपन्यास में विषय वस्तु और रूपविधान की दृष्टि से तालमेल नहीं रह सका। +","phir bhi unke upanyas men vishay content and form ki drishti se talmel nahin rah saka. +",negative,negative,negative +"for example, in this case, +","उदाहरण के तौर पर, यहाँ, +","example ke taur par , yahan , +",neutral,neutral,neutral +"Beside these, the Peepal tree, Banana tree and Bilva have been also placed in appropriate locations in the Vatika bringing the total to 51 trees/plants. +","इनके अलावा, पीपल वृक्ष, केला वृक्ष तथा बिल्व भी वाटिका के उपयुक्त स्थलों पर लगाए गए हैं जिससे कुल 51 वृक्ष/पौधे हो गए हैं। +","inke alava , peepal tree , banana tree tatha bilva bhi vatika ke appropriate sthlon par lagae ge hain jisse kul total vrikshpaudhe ho ge hain. +",neutral,neutral,neutral +"A drainage basin is an extent of land. +","मैले की द्रोणी जमीन के अंत में होती है। +","maile ki basin extent of land men hoti hai. +",neutral,neutral,neutral +"The centrally governed parts of land are called union territories +","केन्द्रीय प्रशासित भू-भागों को संघराज्य क्षेत्र कहा जाता है। +","union governed bhoo-bhagon ko territories land kaha jata parts +",neutral,neutral,neutral +"Application of mud to all part of the body. +","शरीर के सभी हिस्सों पर कीचड़ का आलेपन +","body ke sabhi part par application ka aalepan +",neutral,neutral,neutral +"Before an action or occurrence took place. +","एक क्रिया या घटना होने के पहले +","ek occurrence took place hone ke pahle +",neutral,neutral,neutral +"Set the directory where to store temporary files +","निर्देशिका सेट करें जहाँ अस्थायी फाइल जमा करना है +","directory set karen jahan store temporary files karna hai +",neutral,neutral,neutral +"They were compelled to pay many illegal dues and cesses and were often required to perform forced labour or begar . +","उन्हें न केवल बहुत से गैरकानूनी कर और महसूल देने को मजबूर किया जाता बल्कि उनसे बेगार भी करायी जाती थी . +","unhen n keval bahut se illegal kar aur many dene ko majboor kiya jata balki unse begar bhi karayi jati thi +",negative,negative,negative +"Label comet names in the sky map? +","आकाश नक्शे पर धूमकेतुओं पर लेबल लगाएँ? +","sky map par dhoomketuon par label lagaen +",neutral,neutral,neutral +"Awareness among farmers on practices and techniques of SRI should be generated, as it involves change of practices, compared to conventional method. +","किसानों के बीच श्री की रीतियों एवं तकनीकों के बारे में जागरूकता पैदा की जानी चाहिए, क्योंकि उसमें परम्परागत विधि की तुलना में पद्धतियों में बदलाव हो जाता है, +","awareness among farmers shri ki ritiyon evn taknikon ke bare men jagrookta paida ki jani chahie, kyonki usmen parampragat vidhi ki tulna men change of practices ho jata hai, +",neutral,neutral,neutral +"Dalhousie wrote his famous minutes on railways in 1853, envisaging a general system for the whole country, and setting out general principles of management, finance and construction. +","डलहौजी ने अपना प्रसिद्ध रेलवे वक़्तव्य सन् 1853 में जारी किया जिसमें उन्होंने पूरे देश के लिए एक ही सामान्य प्रणाली की सिफारिश की और जिसमें व्यवस्था वित्त और निर्माण के सामान्य सिद्धांत भी प्रतिपादित किये. +","dalhauji ne apna prsiddh relve vatavy san 1853 men jari kiya jismen unhonne poore desh ke lie ek hi samany prnali ki sipharish ki aur jismen vyavastha vitt aur nirman ke samany siddhant bhi prtipadit kiye +",neutral,neutral,neutral +"And their eyes spoke of death. +","उनकी आंखें मौत का संदेश दे रही थीं। +","unki eyes death ka sndesh de rahi thin. +",negative,negative,negative +"A manual switch on the control panel by means of which a bit may be entered in a processor register. +","कंट्रोल पैनल में मैनुअल स्विच, जिसके द्वारा एक बिट प्रोसेसर रजिस्टर में प्रविष्ट कर सकता है. +","control panel men manual switch , means dvara ek bit processor register men prvisht kar sakta hai +",neutral,neutral,neutral +"He needed to authenticate the documents with signature. +","उसे दस्तावेज़ों को हस्ताक्षर द्वारा अधिप्रमाणित करने की आवश्यकता थी। +","use documents with signature dvara authenticate karne ki aavashyakta thi. +",neutral,neutral,neutral +"We must learn international languages to communicate and widen our horizon. +","हमें अपने क्षितिज का विस्तार करने और व्यापार संचार के लिए अंतर्राष्ट्रीय भाषाएं पढनी ही चाहिए। +","widen our horizon ka vistar karne aur vyapar snchar ke lie international languages padhni hi chahie. +",neutral,neutral,neutral +"The pre-poll phase (registration of voters) and +","मतदान-पूर्व चरण (मतदाताओं का रजिस्ट्रीकरण) तथा +","matdan-poorv phase voters ka registration tatha +",neutral,neutral,neutral +"In old Tamil literature also one comes across the murasu quite often . +","प्राचीन तमिल साहित्य में मुरसु का भी कई जगह उल्लेख हुआ है . +","prachin tamil literature men mursu ka bhi kee jagah ullekh huaa hai +",neutral,neutral,neutral +"'. After the 25th, Prem Chand did not have good sleep. +","25 की रात के बाद ठीक से कभी सो न सके। +","sleep ki good ke bad thik se kabhi so n sake. +",negative,negative,negative +"He also recalled the insinuation made the other day by Haran about Binoy. +","विनय के बारे में हारान बाबू उस दिन जो इशारा कर गये थे, वह भी उन्हें याद आया। +","binoy ke bare men haran baboo us day jo insinuation kar gaye the , vah bhi unhen other aaya. +",neutral,neutral,neutral +"And never [O Muhammad] pray for one of them who dies, nor stand by his grave. For they denied God and His Messenger, and died rebellious. +","औऱ उनमें से जिस किसी व्यक्ति की मृत्यु हो उसकी जनाज़े की नमाज़ कभी न पढ़ना और न कभी उसकी क़ब्र पर खड़े होना। उन्होंने तो अल्लाह और उसके रसूल के साथ कुफ़्र किया और मरे इस दशा में कि अवज्ञाकारी थे +","au unmen se jis kisi vyakti ki pray ho god janaze ki stand kabhi n pana aur n kabhi god br par khare hona. unhonne to messenger aur uske rasool ke sath kufr kiya aur mare is dasha men ki rebellious the +",negative,negative,negative +"Why welding and why not computers? +","झाल लगाना की क्यों, कंप्यूटर क्यों नहीं? +","welding lagana ki kyon , computers kyon nahin +",neutral,neutral,neutral +"""So we led you astray because we were ourselves astray."" +","हम खुद गुमराह थे तो तुम को भी गुमराह किया +","ham khud astray the to tum ko bhi astray kiya +",neutral,neutral,neutral +"LEVEL : NEWS PAPERS IN HINDI LANGUAGE +","श्रेणी:हिन्दी भाषा के समाचार पत्र +","level : hindi language ke news papers +",neutral,neutral,neutral +"The main objectives of the Board are to: - +","बोर्ड के मुख्य उद्देश्य हैं: +","board ke main objectives hain : +",neutral,neutral,neutral +"You have to be in this range. +","आपको इसी रेंग मे रहना है +","aapko isi range me rahna hai +",neutral,neutral,neutral +"Will you sing me a Beatles' song? +","तुम मेरे लिए एक बीटल्स का गाना गा सकते हो क्या? +","tum mere lie ek beatles ka song ga sakte ho kya +",neutral,neutral,neutral +"A type of reproduction without fertilization. +","निषेचन रहित प्रजनन का एक प्रकार +","reproduction without fertilization ka ek type +",neutral,neutral,neutral +"In the moulded type a full human or animal figure is fashioned. +","ढलाई में मानव और पशुओं की पूरी आकृति बनायी जाती है। +","moulded men full aur animal ki poori figure banayi jati hai. +",neutral,neutral,neutral +"In fact, someone on Reddit thought, +","बल्कि, रेडिट पे किसी नें सोचा, +","fact, redit pe kisi nen thought, +",neutral,neutral,neutral +"And then you know what we do? We negotiate. +","और फ़िर हम क्या करते है? हम सौदा तय करते हैं। +","aur fir ham kya karte hai ham sauda tay karte hain. +",neutral,neutral,neutral +"They embrace the infinite coastline of the sea at their mouths. +","वे अपने मुहानों पर असीम समुद्रतट का आलिंगन करती हैं। +","ve apne muhanon par infinite sea ka aalingan karti hain. +",positive,positive,positive +"When such a person comes to Us, he will say [to his comrade], ""If only you had been as far away from me as east is from west. What an evil comrade!"" +","यहाँ तक कि जब (क़यामत में) हमारे पास आएगा तो (अपने साथी शैतान से) कहेगा काश मुझमें और तुममें पूरब पश्चिम का फ़ासला होता ग़रज़ (शैतान भी) क्या ही बुरा रफीक़ है +","yahan tak ki jab yamat men hamare pas aaega to apne comrade shaitan se kahega kash mujhmen aur person east west ka fasla hota raz shaitan bhi kya hi evil raphi hai +",negative,negative,negative +"seeing towards down after the noon, we can see pollution in Los Angeles into the moor of mountains +","नीचे देखने पर सामने की पहाडी के मैदान में दोपहर के बाद वायु प्रदूषण साफ साफ़ लोस अन्जेल्स में दिखता है. +","niche dekhne par samne ki pahadi ke maidan men noon ke bad vayu pollution towards saf los moor men dikhta hai +",neutral,neutral,neutral +"Image format (default RGB) +","छवि प्रारूप (डिफ़ॉल्ट RGB) +","image format default rgb +",neutral,neutral,neutral +"The future development of the mini steel industry will depend on the availability of sponge iron. +","लघु इस्पात उद्योग का भावी विकास स्पंज आयन की उपलब्धता पर निर्भर करेगा. +","mini steel industry ka bhavi sponge iron aayan ki upalabdhta par nirbhar karega +",neutral,neutral,neutral +"The default browser is currently %{BROWSERNAME}. +","वर्तमान में डिफ़ॉल्ट ब्राउज़र %{BROWSERNAME} है. +","vartman men default browser BROWSERNAME hai +",neutral,neutral,neutral +"Nikzad Nojoumi 's illustrations have been used for a variety of children' s books. +","निकज़द नौजूमी के चित्र अनेकों बाल पुस्तकों में लिये गये है। +","nikazad naujoomi ke s anekon children illustrations men liye gaye hai. +",neutral,neutral,neutral +"It contains seven vertical strokes followed by this fish-like sign. +","समें सात ऊर्ध्वाधर रेखाओं के पीछे एक मछली का चिन्ह है। +","strokes sat oordhvadhar rekhaon ke pichhe ek machhli ka fish-like sign +",neutral,neutral,neutral +"They both grew up in more or less the same atmosphere. +","दोनों कमोबेश एक ही वातावरण में पालित-पोषित हुए थे। +","donon kamobesh ek hi atmosphere men palit-poshit hue the. +",neutral,neutral,neutral +"writing in the 1850s about how the railroad, the steam ship, +","कैसे रेल, स्टीमर के बारे में 1850 के दशक में लेखन, +","kaise rel, stimar ke bare men 1850 ke dashak men writing, +",neutral,neutral,neutral +"(Unbelievers) whose eyes had been under a veil from remembrance of Me, and who had been unable even to hear. +","जिनके नेत्र मेरी अनुस्मृति की ओर से परदे में थे और जो कुछ सुन भी नहीं सकते थे +","jinke eyes meri remembrance ki or se parde men the aur jo kuchh sun bhi nahin sakte the +",neutral,neutral,neutral +"They roam about widely in search of food . +","इस जाति के पक्षी भोजन की खोज में दूर दूर तक घूमते हैं . +","is jati ke pakshi search of food men widely roam about widely hain +",neutral,neutral,neutral +"As long as they continue to mix up caste and race , they can go about their business , ” he says. +","जब तक वे जाति और नस्ल को मिलते रहैंगे तब तक उनका धंधा चलता रहेगा . ' ' +","jab tak ve caste aur nasl ko milte rahainge tab tak unka business chalta rahega +",neutral,neutral,neutral +"The market rates are going down. +","बाजार दर जल्दी नीचे जा रहे हैं। +","market dar jaldi niche ja rahe hain. +",neutral,neutral,neutral +"As long as they continue to mix up caste and race , they can go about their business , ” he says. +","जब तक वे जाति और नस्ल को मिलते रहैंगे तब तक उनका धंधा चलता रहेगा . ' ' +","jab tak ve caste and race ko milte rahainge tab tak unka dhndha chalta continue +",neutral,neutral,neutral +"The doctor proscribed smoking in the waiting room of his clinic. +","डॉक्टर ने अपने क्लिनिक के प्रतीक्षा कक्ष में धूम्रपान की सख्त मनाही कर दी। +","doctor ne apne klinik ke waiting room men dhoomrpan ki sakht manahi kar di. +",neutral,neutral,neutral +"He made the Subhashbabu the Chief Working Officer of the corporation. +","उन्होंने सुभाषबाबू को महापालिका का प्रमुख कार्यकारी अधिकारी बनाया। +","unhonne subhashbabu ko corporation ka chief working officer banaya. +",neutral,neutral,neutral +"In Uttarapatha there is a mention of a golden stupa at Mathura. +","उत्तरापथ में मथुरा में सुवर्णस्तूप होने का उल्लेख मिलता है। +","uttrapath men mention men suvarnastoop hone ka ullekh milta hai. +",neutral,neutral,neutral +"A type of reproduction without fertilization. +","निषेचन रहित प्रजनन का एक प्रकार +","fertilization rahit reproduction ka ek type +",neutral,neutral,neutral +"In most countries in the world, there are approximately 105 female births for every 100 males. +","विश्व के अधिकतर देशों में, प्रति 100 पुरुषों के पीछे लगभग 105 स्त्रियों का जन्म होता है, +","world ke adhikatar countries men , prti 100 males ke pichhe most 105 female ka births hota hai , +",neutral,neutral,neutral +"Ibne Sina (980 - 237) associated with the medical science to be ahead of many who wrote the book became the basis of modern medical science +","इबने सीना (९८०-१०३७) ने चिकित्सा विज्ञान से संबंधित कई पुस्तकें लिखीं जो कि आगे जा कर आधुनिक चिकित्सा विज्ञान का आधार बनीं। +","ibne sina ९८०-१०३७ ne medical science se snbndhit kee pustken likhin jo ki aage ja kar modern medical science ka aadhar banin. +",neutral,neutral,neutral +"The instinctive nature of man to form into groups and to dance and sing is as old as human existence. +","नृत्य और गायन मानव की आंतरिक प्रकृति है तथा मानव-जीवन के साथ-साथ ही इसका आरंभ हुआ। +","nrity aur groups man ki aantrik instinctive hai tatha manav-jivan ke sath-sath hi iska aarnbh existence +",neutral,neutral,neutral +"for example, in this case, +","उदाहरण के तौर पर, यहाँ, +","udaharan ke taur par, yahan, +",neutral,neutral,neutral +"But they say, “We found our parents on a course, and we are guided in their footsteps. ” +","बल्कि ये लोग तो ये कहते हैं कि हमने अपने बाप दादाओं को एक तरीके पर पाया और हम उनको क़दम ब क़दम ठीक रास्ते पर चले जा रहें हैं +","balki ye log to ye kahte hain ki hamne apne bap dadaon ko ek tarike par paya aur ham unko dam b dam thik raste par chale ja rahen hain +",neutral,neutral,neutral +"He told me to go to his room. +","उसने मुझे उसके कमरे में जाने को कहा। +","told mujhe uske room men jane ko kaha. +",neutral,neutral,neutral +"They roam about widely in search of food . +","इस जाति के पक्षी भोजन की खोज में दूर दूर तक घूमते हैं . +","is jati ke pakshi food ki search men door door tak ghoomte hain +",neutral,neutral,neutral +"Reading is a complex cognitive process of decoding symbols for the purpose of deriving meanings. +","पाठन, अर्थ प्राप्त करने के उद्देश्य से प्रतीकों के विकोडन की एक जटिल संज्ञानात्मक प्रक्रिया है। +","reading, meanings prapt karne ke uddeshy se process of decoding ki ek complex cognitive process hai. +",neutral,neutral,neutral +"Water is major constituents of all living matters. +","पानी सभी जीवित पदार्थों का मुख्य घटक है. +","water sabhi living padarthon ka major constituents hai +",neutral,neutral,neutral +"Deposits of stock is governed by prescribed rules. +","माल जमा की प्रक्रिया निर्धारित नियमों के अनुसार होगी। +","stock deposits ki prakriya prescribed rules ke anusar hogi. +",neutral,neutral,neutral +"My special congratulations to Shri Shashi Kapoor who has been honoured with the Dadasaheb Phalke Award this year. +","श्री शशि कपूर को मेरी विशेष बधाई जिन्हें इस वर्ष दादा साहेब फाल्के पुरस्कार प्रदान किया गया है। +","shri shashi kapoor ko meri vishesh badhaee jinhen is varsh dada award this year prdan kiya gaya hai. +",positive,positive,positive +"I throw a ball and it 's going to go up in the air. +","मैं एक गेंद फेंक और इसे हवा में ऊपर जाना जा रहा है। +","air ek ball phenk aur ise hava men oopar jana ja raha hai. +",neutral,neutral,neutral +"When you go in these developing societies, +","जब आप इन विकासशील इलाकों में जाते हैं, +","jab aap in developing ilakon men jate hain, +",neutral,neutral,neutral +"Few, if any of us, can use this highest reason with any purity, but the attempt to do it is the topmost capacity of the inner instrument, the antahkarana. +","यदि हममें से कोई इस उच्चतम बुद्धि का प्रयोग किसी शुद्ध रूप में कर भी पाते हैं तो वे विरले ही होते हैं, किन्तु इसके लिये प्रयत्न करना अन्तःकरण की सबसे ऊंची क्षमता है। +","yadi hammen se koee is highest reason ka pryog kisi shuddh roop men kar bhi pate hain to ve virle hi hote hain, kintu iske liye prayatn karna antakaran ki sabse topmost capacity hai. +",neutral,neutral,neutral +"You know, my work is inspired +","आप जानते हैं, मेरा काम प्रभावित है +","aap jante hain, mera work inspired hai +",positive,positive,positive +"started speaking to us in the 20th century, +","से हमारी बातचीत 20 वीं सदी में शुरू हुई, +","se hamari batchit 20th vin century men shuroo huee , +",neutral,neutral,neutral +"learned the correct initial state for the 17 - bit LFSR, we will have also +","सही प्रारंभिक राज्य सीखा 17-बिट LFSR के लिए, हम भी करना होगा +","correct initial state sikha 17-bit LFSR ke lie , lfsr bhi karna bit +",neutral,neutral,neutral +"Child - 3: Tell us now, Grandpa! +","बच्चा 3: फिर सुनाओ, दादा! +","child 3 : phir sunao , grandpa ! +",neutral,neutral,neutral +"Sardar Bhagat Singh was the leader of the youth movement in Punjab carried on under the banner of Nawjawan Bharat Sabha with which Subhas Chandra associated himself closely at a later stage . +","सरदार भत सिंह पंजाब की ? नौजवान भारत सभा ? नाम से विख़्यात युवा आंदोलन के नेता थे , जिससे बाद में सुभाष चन्द्र का भी अंतरंग साहचर्य स्थापित हुआ . +","sardar bhagat singh punjab ki bharat movement banner nam se viyat youth aandolan ke leader the , jisse bad men chandra chandr ka bhi later sahachary sthapit huaa +",neutral,neutral,neutral +"Committee on Health and Family Welfare: +","स्वास्थ्य और परिवार कल्याण संबंधी समितिः +","health and family welfare snbndhi samitia +",neutral,neutral,neutral +"Speaking on the occasion, the President said India is fortunate to have a large young population to take forward her aspirational agenda of change. +","इस अवसर पर, राष्ट्रपति ने कहा कि, भारत सौभाग्यशाली है कि उसके पास परिवर्तन की आकांक्षापूर्ण कार्यसूची की प्राप्ति के लिए विशाल युवा पीढ़ी है। +","is avasar par, rashtrapti ne kaha ki, bharat saubhagyshali hai ki uske pas forward her aspirational karysoochi ki prapti ke lie large young pii hai. +",positive,positive,positive +"If this option is checked, every new view will display marks for code folding, if code folding is available. +","यदि यह विकल्प चुना जाता है, हर नया दृश्य कोड फोल्डिंग के मार्क्स दिखाएगा, यदि कोड फोल्डिंग उपलब्ध है. +","yadi yah option chuna jata hai , har new view code folding ke marks dikhaega , yadi code folding available hai +",neutral,neutral,neutral +"We gave the four a row and we gave the eight a row. +","हम 4 को एक पंक्ति देते है और 8 को एक पंक्ति देते हैं. +","ham 4 ko ek row dete hai aur 8 ko ek row dete hain +",neutral,neutral,neutral +"In the year 1985-86, the erstwhile Ministry of Welfare was bifurcated into the Department of Women and Child Development and the Department of Welfare. +","वर्ष 1985-86 में पूर्ववर्ती कल्याण मंत्रालय को महिला एवं बाल विकास विभाग तथा कल्याण विभाग में विभक्त किया गया था। +","year 1985-86 men poorvavarti welfare ministry ko women evn erstwhile development department tatha welfare department men vibhakt kiya gaya tha. +",neutral,neutral,neutral +"A pangolin 's territory is around 3 square miles 8 sq km. +","पैंगोलिन का क्षेत्र लगभग आठ वर्ग किलोमीटर का होता है। +","pangolin ka territory lagabhag square varg miles ka hota hai. +",neutral,neutral,neutral +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","vastav men eparchar kal exposure time ko diya gaya vigopan kal hai jo kisi optical system eparchar ke madhyam se chitr satah men kisi kendrbindu par aati hai. +",neutral,neutral,neutral +"Dhanpat Rai Shreevastav, who wrote with pen name Premchand (31 July 1880 - 8 October 1936) was one of the greatest Indian , Hindi and Urdu writers. +","प्रेमचंद (३१ जुलाई १८८० - ८ अक्तूबर १९३६) के उपनाम से लिखने वाले धनपत राय श्रीवास्तव हिन्दी और उर्दू के महानतम भारतीय लेखकों में से एक हैं। +","name dhanpat july १८८० - ८ aktoobar pen ke upnam se likhne vale dhanapat ray shrivastav hindi aur urdu ke greatest indian writers men se ek hain. +",positive,positive,positive +"Of the people there are some who say: ""We believe in Allah and the Last Day;"" but they do not (really) believe. +","कुछ लोग ऐसे हैं जो कहते हैं कि हम अल्लाह और अन्तिम दिन पर ईमान रखते हैं, हालाँकि वे ईमान नहीं रखते +","kuchh people aese hain jo kahte hain ki ham allah aur last day par eeman rakhte hain , halanki ve eeman nahin rakhte +",neutral,neutral,neutral +"this expression, it 's the derivative of y. +","इस अभिव्यक्ति, यह व्युत्पन्न y का है। +","is expression , yah derivative y ka hai. +",neutral,neutral,neutral +"Thereafter, We utterly destroyed the rest, +","(और हलाक हो गयी) फिर हमने उन लोगों को हलाक कर डाला +","aur halak ho rest phir hamne un logon ko halak kar dala +",negative,negative,negative +"Exposure time will be shifted forward by% d% s,% d% s,% d% s, and% d% s. +","एक्सपोजर समय आगे बढ़ा दिया जाएगा% d% s,% d% s,% d% s, और% d% s से. +","exposure time forward baa diya jaega d s, d s, d s, aur d s se +",neutral,neutral,neutral +"Cement Machinery: - there are 18 units in the organized sector for the manufacture of complete cement plant machinery. +","सीमेंट मशीनरीः-पूर्ण सीमेंट संयंत्र मशीनरी के विनिर्माण के लिए संगठित क्षेत्रक में 18 यूनिट हैं। +","cement mashinria-poorn cement machinery units ke vinirman ke lie sngthit sector men 18 yoonit complete +",neutral,neutral,neutral +"Do they seek to hasten Our chastisement? +","तो क्या ये लोग हमारे अज़ाब की जल्दी कर रहे हैं +","to kya ye log hamare seek to hasten kar rahe hain +",neutral,neutral,neutral +"Show the properties and metadata of the selected image +","चयनित छवि की मेटाडेटा व गुण दिखाएँ +","selected properties and metadata v gun show +",neutral,neutral,neutral +"They were the products of the revolution. +","वे क्रान्ति की सन्तानें थीं. +","ve revolution ki products thin +",neutral,neutral,neutral +"Observe the fly land on the ceiling of your zoom after its flight. +","घरेलू मक्खी को उड़ान के बाद अपने कमने की छत पर बैठते हुए देखिए। +","ghareloo fly ko zoom ke bad apne kamne ki ceiling par baithte hue dekhie. +",neutral,neutral,neutral +"We need really to see it. And instead of looking at this, +","हमें वास्तव में इसे देखने की ज़रूरत है और इसे देखने की अपेक्षा +","hamen vastav men ise dekhne ki zaroorat hai aur ise dekhne ki apeksha +",neutral,neutral,neutral +"I congratulate him for winning this coveted award. I am sure he will continue to enrich Hindi literature in the years to come. +","मैं इस प्रतिष्ठित पुरस्कार को जीतने के लिए उन्हें बधाई देता हूं। मुझे विश्वास है कि वह आने वाले वर्षों में हिंदी साहित्य को समृद्ध करते रहेंगे। +","i is prtishthit award ko jitne ke lie unhen badhaee deta years mujhe sure hai ki vah aane vale varshon men hindi literature ko samriddh karte rahenge. +",positive,positive,positive +"Microscope was used to observe the tissue. +","ऊतकों को देखने के लिए सूक्ष्मदर्शी प्रयोग किया गया +","observe the tissue ke lie microscope pryog kiya gaya +",neutral,neutral,neutral +"ATAL BIHARI VAJPAYEE: SELECTED SPEECHES Firstly, it helps correct a grave distortion that has taken place in public consciousness. +","पहला, इससे जन-चेतना में आने वाली एक गंभीर विकृति को दूर करने में मदद मिलती है। +","pahla, isse jan-chetna men aane vali ek gnbhir vikriti ko door karne men madad milti hai.1 +",neutral,neutral,neutral +"Ladies and Gentlemen, manpower and technology are the prime drivers of industrial progress. +","देवियो और सज्जनो, जनशक्ति और प्रौद्योगिकी, औद्योगिक प्रगति के प्रमुख प्रेरक हैं। +","ladies aur gentlemen , manpower aur technology , industrial progress ke prime drivers hain. +",positive,positive,positive +"Display options for Brasero - burn library +","ब्रैसेरो बर्न लाइब्रेरी के लिए प्रदर्शक विकल्प +","brasero barn library ke lie display options +",neutral,neutral,neutral +"♫ from the edge of the observable universe ♫ +","♫ देखे जाने वाले ब्रह्मांड के किनारे से ♫ +","dekhe jane vale universe ke kinare se +",neutral,neutral,neutral +"Traditionally, welding has been used as a means of fabrication. +","पारम्परिक रूप से वेल्डिंग को विनिर्माण के साधन के रूप में उपयोग किया गया है। +","paramprik roop se fabrication ko vinirman ke means ke roop men upyog kiya gaya hai. +",neutral,neutral,neutral +"Then we can sit down and discuss all aspects of the matter. +","उस हालत में हम मिल बैठकर सभी पक्षों पर विचार कर सकते हैं। +","us matter men ham mil baithakar sabhi aspects par vichar kar sakte hain. +",neutral,neutral,neutral +"In those days i. e. before 1947 Urdu was the State language of the Punjab, and Punjabi was grossly neglected by the intellectuals, most of who behaved like 'Sahibs' in their speech, mannerisms, etc. +","उन दिनों 1947 से पूर्व उर्दू पंजाब की राजभाषा थी और बुद्धिजीवी जिनमें से अधिकांश तो अपनी बातचीत व व्यवहार में साहिबों जैसा व्यवहार करते थे तछा पंजाबी की पूरी तरह उपेक्षा करते थे। +","un days mannerisms se poorv urdu punjab ki most thi aur intellectuals jinmen se adhikansh to apni speech v state men sahibon jaisa state karte the tachha punjabi ki poori tarah upeksha karte the. +",negative,negative,negative +"At the end of second act dialogue between Raja Sruthoson and the music composer Nanda mentions the name of Brahmadutt. +","दूसरे अंक के अंत मे राजा सुतसोम और गाथाकार नन्द की बातचीत है जिसमे भी ब्रह्रादत का उल्लेख होता है। +","doosre ank ke ant me raja sutsom aur gathakar nand ki batchit hai jisme bhi brahradat ka ullekh hota hai. +",neutral,neutral,neutral +"Language model adapts as you write. +","भाषा मॉडल अनुकूलित करता है जैसे आप लिखते हैं +","language model adapts karta hai jaise aap write hain +",neutral,neutral,neutral +"Since Bala himself will be speaking at TED +","क्योंकि बाला खुद बाद में TED में बोल रहे हैं +","kyonki bala khud bad men TED men bol rahe hain +",neutral,neutral,neutral +"Opening image ""% s"" +","""% s"" छवि सहेज रहा है +","s image sahej raha hai +",neutral,neutral,neutral +"So my question is, if it can be done in Europe, +","तो मेरा प्रश्न है, कि यदि ये यूरोप में किया जा सकता है, +","to mera question hai, ki yadi ye europe men kiya ja sakta hai, +",neutral,neutral,neutral +"Scientists analyse genes by taking a sample of DNA from an organism and sequencing it . +","वैज्ञानिक , जीव से डीएनए का नमूना लेकर तथा इसे क्रमबद्ध करके जीन का विश्लेषण करते हैं . +","scientists , organism se dna ka sample lekar tatha ise kramabaddh karke genes ka vishleshan karte hain +",neutral,neutral,neutral +"Run an application by typing a command or choosing from a list +","कमांड प्रविष्ट कर एक अनुप्रयोग चलाएँ या सूची से चुनकर +","command prvisht kar ek application chalaen ya list se chunakar +",neutral,neutral,neutral +"Besides the above, there are other symbols of the village gods. +","इनके अतिरिक्त, ग्रामीण देवताओं के अन्य प्रतीक भी हैं। +","inke above , village gods ke other symbols bhi hain. +",neutral,neutral,neutral +"All his reviews are based on this criterion and hence do not go further than assessing the thought and discussing the language. +","उनकी समीक्षायें इन्हीं मापदण्डों पर आधारित होती हैं, अतः वह विचारों के मूल्यांकन और भाषा की चर्चा से आगे नहीं बढ़ पाते। +","unki reviews inhin mapadandon par aadharit hoti hain , ata vah thought ke moolyankan aur language ki charcha se criterion nahin ba pate. +",neutral,neutral,neutral +"Many of them are likely to return to India, but while they live abroad, all of them are vulnerable in many ways owing to the fact that they do not enjoy the privileges of citizenship in their host country. +","उनमें से बहुतों के भारत लौटने की संभावना है परंतु विदेश में रहने पर वे सभी इस सच्चाई की वजह से असुरक्षित हैं कि उन्हें अपने मेजबान देश की नागरिकता के लाभ नहीं मिलते हैं। +","unmen se bahuton ke bharat lautne ki snbhavna hai parntu videsh men rahne par ve sabhi is sachchaee ki vajah se asurakshit hain ki unhen apne mejban desh ki nagrikta ke labh nahin milte hain. +",negative,negative,negative +"The amount of space between two consecutive rows +","दो लगातार पंक्तियों के बीच की दूरी +","do consecutive amount of space ki doori +",neutral,neutral,neutral +"If 20gms of the magaj is soaked in one cup of lukewarm water, a brown coloured colour of Burgundy wine, mildly aromatic drink is obtained. +","यदि 20 ग्राम मगज एक कप गुनगुने पानी में अवशोषित किया जाये तो भूरे रंग बर्गंडी वाइन का रंग का हल्का सुंगधित पेय तैयार हो जायेगा। +","yadi 20 gram magaj ek cup lukewarm water men avshoshit kiya jaye to brown colour bargndi wine ka colour ka halka sungdhit drink taiyar ho jayega. +",neutral,neutral,neutral +"A time of acute difficulty in financial matters. +","वित्तीय मामलों में संकट की घडी। +","financial time of acute ki ghadi. +",negative,negative,negative +"All data is encrypted with your sync passphrase +","सभी डेटा आपके समन्वयन पासफ़्रेज़ के साथ एन्क्रिप्ट किया जाएगा +","sabhi data aapke sync passphrase ke sath enkript kiya jaega +",neutral,neutral,neutral +"Ever since Mamata broke away to form the Trinamool in 1997 , there has been a string of desertions from the Congress . +","ममता ने 1997 में पार्टी से अलग होकर तृकां बनाई थी तबसे पार्टी से नेताओं के जाने का सिलसिल जारी है . +","mamta ne 1997 men parti se alag hokar trikan banaee thi tabse parti se netaon ke string of desertions jari hai +",negative,negative,negative +"yet there are over you watchers +","जबकि तुमपर निगरानी करनेवाले नियुक्त हैं +","jabki tumapar watchers karnevale niyukt hain +",neutral,neutral,neutral +"WHAT WILL I EARN? 20 +","मेरी आमदनी क्या होगी? 25। +","meri aamadni kya hogi 25. +",neutral,neutral,neutral +"Sudhir, run and call Panu Babu. +","सुधीर, तुम दौड़कर जाओ, पानू बाबू को फौरन बुला लाओ। +","sudhir, tum daurakar jao, panoo baboo ko phauran bula lao. +",neutral,neutral,neutral +"What is today 's status of Consolidated Stock? +","समेकित स्टॉक की आज की स्थिति क्या है। +","consolidated stock ki aaj ki status kya stock +",neutral,neutral,neutral +"For services in Wales contact: Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. +","वेल्स में सेवाओं के लिए सम्पर्क:-Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. टेलीफ़ोन नम्बर ०२२२ ८२५१११ +","wales men services ke lie contact : -Welsh Office Drugs Unit , Welsh Office , Cathays office , Cardiff CF1 3NQ telifon nambar ०२२२ ८२५१११ +",neutral,neutral,neutral +"The tribals also depend on the bamboo to augment their incomes . +","आदिवासी अपनी आय बढने के लिए भी बांस पर निर्भर रहते हैं . +","tribals apni incomes badhne ke lie bhi bamboo par nirbhar rahte hain +",neutral,neutral,neutral +"organs superficially appear to be similar and perform the same function. +","बाहरी दिखावे में अंग एक जैसे दिखें और एक ही प्रकार का कार्य कर रहे हों। +","bahri function perform ang ek jaise dikhen aur ek hi prkar ka kary kar rahe hon. +",neutral,neutral,neutral +"to the focus points and saying it 's a constant. +","यह एक निरंतर ध्यान केंद्रित अंक और कह रही करने के लिए है। +","yah ek constant focus kendrit points aur kah rahi karne ke lie hai. +",neutral,neutral,neutral +"View the output produced by the last executed command +","अंतिम कार्यान्वित कमांड द्वारा उत्पादित आउटपुट देखेंFile +","antim executed command dvara output produced dekhenFile +",neutral,neutral,neutral +"So from A, we look at the neighbors of A. The neighbors of A are B and C. +","इसलिए A से, हम ए के पड़ोसियों में देखो B और c. A के पड़ोसी हैं +","islie A se , ham b ke neighbors men dekho B aur c A ke parosi hain +",neutral,neutral,neutral +"Will you sing me a Beatles' song? +","तुम मेरे लिए एक बीटल्स का गाना गा सकते हो क्या? +","tum mere lie ek bitals ka song ga sakte ho kya +",neutral,neutral,neutral +"A tape with a magnetizable layer on which data can be stored. +","चुंबकीय परत वाला एक टेप, जिसपर डेटा संग्रहीत किया जा सकता है. +","chunbkiy layer vala ek tape , jisapar data sngrhit kiya ja sakta hai +",neutral,neutral,neutral +"When Manohar was transferred to Amudalavalasa , the couple put their through the weight-training regimen at the Ammi Naidu gym in the district headquarters town of Srikakulam . +","मनोहर का तबादल अमूदलवलसा हा तो वहां दोनों ने श्रीकाकुलम जिल मुयालय स्थित अमी नायड़ू जिम में अयास जारी रखा . +","manohar ka town couple ha to vahan donon ne shrikakulam district headquarters sthit ammi naidu gym men ayas jari rakha +",neutral,neutral,neutral +"And if terrorist is impolite, adjectives such as Islamist, Islamic, and Muslim become unmentionable. My blog titled “Not Calling Islamism the Enemy ” provides copious examples of this avoidance, along with its motives. In short, those who would replace War on Terror with A Global Struggle for Security and Progress imagine this linguistic gambit will win over Muslim hearts and minds. +","और यदि आतंकवादी असभ्य हैं तो इस्लामवादी, इस्लामी और मुस्लिम का उल्लेख करने से परहेज किया जाता है। मेरे ब्लाग Not calling Islamism the Enemy में इस बात के उदाहरण दिये गये हैं कि इससे परहेज क्यों किया जाता है और इसका उद्देश्य क्या है? संक्षेप में जो लोग आतंक के विरुद्ध युद्ध को सुरक्षा और विकास के लिये वैश्विक संघर्ष के रूप में नया नाम देना चाहते हैं उन्हें कल्पना है कि इस प्रकार भाषा बदल कर वे मुस्लिम ह्रदय और मस्तिष्क को विजित कर सकेंगे। +","aur yadi aatnkvadi asabhy hain to islamvadi, islami aur muslim ka ullekh karne se parhej kiya jata hai. mere blag Not calling Islamism the Enemy men is bat ke udaharan diye gaye hain ki isse parhej kyon kiya jata hai aur iska uddeshy kya hai snkshep men jo log aatnk ke viruddh yuddh ko suraksha aur vikas ke liye vaishvik sngharsh ke roop men naya nam dena chahte hain unhen kalpna hai ki is prkar bhasha badal kar ve muslim hraday aur mastishk ko vijit kar sakenge. +",negative,negative,negative +"To go to residences to provide some service. +","कोई सेवा प्रदान करने के लिए निजी घरों पर जाने वाला। +","koee service provide karne ke lie niji residences par jane vala. +",neutral,neutral,neutral +"Update the files in the archive “%s”? +","फ़ाइलों “%s” अभिलेख में अद्यतन करें? +","files s archive men adyatan karen +",neutral,neutral,neutral +"It cannot be said that the product was unknown in India. +","ऐसा नहीं कहा जा सकता है कि यह उत्पाद भारत में अनजान था +","aesa nahin kaha ja sakta hai ki yah product unknown in india tha +",neutral,neutral,neutral +"But in this plot he followed the SRI method of nursery preparation. +","लेकिन इस प्लॉट में उन्होंने नर्सरी तैयार करने के लिए श्री पद्धति का अनुसरण किया। +","lekin is plot men unhonne narsri preparation karne ke lie sri method ka anusaran kiya. +",neutral,neutral,neutral +"Since Bala himself will be speaking at TED +","क्योंकि बाला खुद बाद में TED में बोल रहे हैं +","kyonki bala khud bad men TED men bala rahe hain +",neutral,neutral,neutral +"“ The States , ” he says , ” are still so numerous in India that they offer a grave conundrum in evolution to which no solution is at present forthcoming . +","वह लिखतें : हिंदुस्तान में इतनी ज़्यादा रियासतें हैं कि वे यहां की तरक़्की के रास्ते में एक बहुत बड़ी पहेली हैं . +","vah states : india men itni zyada riyasten hain ki ve yahan ki taraki ke raste men ek bahut bari conundrum hain +",negative,negative,negative +"This momentous decision to go to England to become a barrister took place when Badruddin was fifteen years old, a year after the mutiny. +","बैरिस्टर बनने के लिए इंग़्लैड जाने का यह महत्वपूर्ण निर्णय बगावत के एक वर्ष बाद लिया गया जब बदरूद्दीन पंद्रह वर्ष के थें. +","bairistar banne ke lie inlaid jane ka yah momentous decision bagavat ke ek varsh bad liya gaya jab badrooddin fifteen years ke then +",neutral,neutral,neutral +"Among the Garo the household is known as the Nok. +","गारो जनजाति में गृहस्थी को नोक कहा जाता है। +","garo janjati men grihasthi ko nok kaha jata hai. +",neutral,neutral,neutral +"The time remaining when action is taken +","बचा समय जब क्रिया की जाती है +","bacha time jab action ki jati hai +",neutral,neutral,neutral +"Sacred place of Hindus located in the district of Faizabad in the state of Uttar Pradesh. +","उत्तर प्रदेश राज्य में फैज़ाबाद जिले में स्थित हिन्दूओं की एक पवित्र जगह। +","district pradesh state men faizabad jile men sthit hindus ki ek sacred place +",neutral,neutral,neutral +"You can search residential telephone numbers and local address from the directory listing. +","आप निर्देशिका लिस्टिंग से आवासीय टेलीफोन नम्बर और स्थानीय पता ढूँढ सकते हैं। +","aap directory listing se residential telephone numbers aur local address dhoondh sakte hain. +",neutral,neutral,neutral +"Belonging to a particular denomination, he had his own customs. +","एक विशिष्ट संप्रदाय का होने के नाते उसकी अपनी कुछ प्रथाएं थीं। +","ek vishisht belonging ka hone ke nate uski apni kuchh customs thin. +",neutral,neutral,neutral +"Singan, the husband of the Kuratti, now comes in search of her. +","अब कुरत्ती का पति सिंगन उसे ढुंढता हुआ आता है। +","kuratti kuratti ka husband singan use dhundhta huaa aata hai. +",neutral,neutral,neutral +"As the first woman from India to clinch this Grand Slam title,you have set a new benchmark of success for Tennis players that will inspire the youth of India, especially women. +","इस ग्रांड स्लाम खिताब को जीतने वाली भारत की पहली महिला के रूप में आपने टेनिस के खिलाड़ियों के लिए सफलता का एक नया कीर्तिमान स्थापित कर दिया है जो भारत के युवाओं,खासकर महिलाओं को प्रेरित करेगा। +","is grand slam khitab ko jitne vali bharat ki pahli mahila ke roop men aapne tenis ke khilariyon ke lie saphalta ka ek naya kirtiman sthapit kar diya hai jo bharat ke yuvaon,khasakar mahilaon ko prerit karega. +",positive,positive,positive +"It contains seven vertical strokes followed by this fish-like sign. +","समें सात ऊर्ध्वाधर रेखाओं के पीछे एक मछली का चिन्ह है। +","strokes sat vertical rekhaon ke pichhe ek machhli ka sign hai. +",neutral,neutral,neutral +"Our media can play a major role in creating awareness and projecting positive stories in this respect. +","इस संबंध में हमारा मीडिया जागरूकता पैदा करने और सकारात्मक जागरूकता प्रस्तुत करने में एक महत्वपूर्ण भूमिका निभा सकता है। +","is snbndh men hamara midiya jagrookta paida karne aur sakaratmak jagrookta prastut karne men ek major role media can play +",positive,positive,positive +"Let's see, let's do minus 5 / 7 divided by 10 / 3. +","देखे, करे नकारात्मक 5/7 विभाजित है 10/3 से +","let , kare nakaratmak 57 vibhajit hai 103 se +",neutral,neutral,neutral +"The main qualification for this is: +","इसके लिए मुख्य योग्यता है :| +","iske lie main qualification hai : +",neutral,neutral,neutral +"We gave the four a row and we gave the eight a row. +","हम 4 को एक पंक्ति देते है और 8 को एक पंक्ति देते हैं. +","ham 4 ko ek row gave hai aur 8 ko ek row gave hain +",neutral,neutral,neutral +"A papilionaceous flower has a corolla, usually with five petals that include a large upper petal, the vexillum. +","एक कोरोला का तितली जैसा फूल जिस की पांच पंखुड़ियो में एक सबसे उपरी लंबी पत्ती जो होती है ध्वज। +","ek corolla ka titli jaisa phool jis ki panch pnkhuriyo men ek sabse upri lnbi patti jo hoti hai dhvaj. +",neutral,neutral,neutral +"You have to put your tremendous expertise and experience to good use. +","आपको अपने वृहद् कौशल तथा अनुभव का उपयुक्त उपयोग करना होगा। +","aapko apne tremendous expertise tatha experience ka good use karna hoga. +",positive,positive,positive +"In summer he spends most of his time in the verandah and in winter he basks in the early sun bare - bodied. +","वे अकसर गमीँ के दिनों में बरामदे में और सर्दियों में सुबह की धूप में नंगे बदन बैठे मिल जाएंगे। +","ve most gamin ke time men verandah men aur winter men subah ki sun men bare summer baithe mil jaenge. +",neutral,neutral,neutral +"How to claim see page 15. +","यह कैसे अर्जी भर के मिल सकता है इस के लिए पान क्रमांक 15 देखें । +","yah kaise page bhar ke mil sakta hai is ke lie pan krmank 15 dekhen . +",neutral,neutral,neutral +"National Population Policy (File referring to external site opens in a new window) +","राष्ट्रीय जनसंख्या नीति (पीडीएफ फाइल जो नई विंडों में खुलती है) +","national population policy external file jo new vindon men khulti hai +",neutral,neutral,neutral +"PRESIDENT OF INDIA’S MESSAGE ON THE EVE OF NATIONAL DAY OF SEYCHELLES, Rashtrapati Bhavan : 28.06.2017 +","सेशल्स के राष्ट्रीय दिवस की पूर्व संध्या पर भारत के राष्ट्रपति का संदेश, राष्ट्रपति भवन : 28.06.2017 +","seshals ke national day ki poorv sndhya par president of indias ka sndesh, rashtrapti bhavan : 28062017 +",neutral,neutral,neutral +"This is composed of seven small islands that have been formed by volcanic eruptions and is connected to the mainland via a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska gathan lava nirmit sat small islands dvara huaa hai evn yah pul dvara prmukh bhoo-khnd ke sath jura huaa hai. +",neutral,neutral,neutral +"Amount of wage paid for a day. +","दिनभर के लिए दी जाने वाली मजदूरी की राशि। +","day ke lie di jane vali amount ki rashi. +",neutral,neutral,neutral +"This Conference, by focusing on water use efficiency, will help to bring this important issue to the forefront of policy discourse. +","इस सम्मलेन के जल उपयोग दक्षता पर केन्द्रित होने से, यह महत्वपूर्ण मुद्दा नीति संबंधी परिचर्चा में शामिल हो पाएगा। +","is conference ke water use efficiency par kendrit hone se , yah important issue policy snbndhi discourse men shamil ho paega. +",positive,positive,positive +"If you are already a widow or widower, you can get up to 100% of your late husband 's or wife' s Additional Pension. +","अगर आप पहले से ही विधवा है या फिर विधुर है तो आप को आप के गुजरे हुए पती या फिर पत्नी का अतिरिक्त निवृत्ती वेतन 100% तक मिल सकता है। +","s aap pahle se hi widow hai ya phir widower hai to aap ko aap ke gujre hue late ya phir wife ka additional pension vetan 100 tak mil sakta hai. +",neutral,neutral,neutral +"Another revolutionary ' action ' which took place a few months earlier also deserves notice . +","एक और क्रांतिकारी कार्यवाही भी , जो कुद महीनों पहले की गई थी , घ्यानाकर्षक है . +","ek aur revolutionary action bhi , jo kud months pahle ki place thi , ghyanakarshak hai +",neutral,neutral,neutral +"City Civic Centre Locations (External website that opens in a new window) +","शहर नागरिक केंद्र स्थान (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","city civic centre locations external website jo ek new vindon men khulti hain +",neutral,neutral,neutral +"All the sadhaks are one in the Mother; all meditate in the presence of the Mother. +","सभी श्री मां की उपस्थिति में ध्यान करते हैं। +","sabhi shri mother ki presence men dhyan karte hain. +",neutral,neutral,neutral +"Dusty air coming towards Stratford, Texas. +","स्ट्रेटफोर्ड टेक्सास की और आने वाली धूल भरी आंधी (Stratford Texas). +","air coming ki aur aane vali dhool bhari aandhi Stratford Texas +",neutral,neutral,neutral +"PRESIDENT RELEASES COMMEMORATIVE POSTAGE STAMP ON LATE SHRI RAMGOPAL JI MAHESHWARI, Rashtrapati Bhavan : 20.11.2012 +","राष्ट्रपति ने स्वर्गीय श्री रामगोपाल जी माहेश्वरी पर स्मारक डाक टिकट जारी किया, राष्ट्रपति भवन : 20.11.2012 +","president ne late shri ramgopal ji maheshvri par commemorative postage stamp jari kiya , president bhavan : 20112012 +",neutral,neutral,neutral +"Now We have sent down to you a Book wherein is your Remembrance; will you not understand? +","हमने तो तुम लोगों के पास वह किताब (कुरान) नाज़िल की है जिसमें तुम्हारा (भी) ज़िक्रे (ख़ैर) है तो क्या तुम लोग (इतना भी) समझते +","hamne to tum logon ke pas vah book remembrance nazil ki hai wherein tumhara bhi zikre air hai to kya tum log itna bhi samajhte +",neutral,neutral,neutral +"During 2010 - 11, the production of HINCOL was 159. 39 MT. +","वर्ष 2010-11 के दौरान, हिनकोल का उत्पादन 159.39 लाख टन था। +","varsh 2010-11 ke dauran , hincol ka production 15939 lakh mt tha. +",neutral,neutral,neutral +"You have no recently reported crashes. Crashes that occurred when crash reporting was disabled will not appear here. +","आपके पास हाल ही में रिपोर्ट किए गए क्रैश नहीं हैं. क्रैश रिपोर्टिंग अक्षम होने के दौरान होने वाले क्रैश यहां दिखाई नहीं देंगे. +","aapke recently reported hi men riport kie ge crashes nahin hain occurred when crash hone ke dauran hone vale crashes yahan dikhaee nahin denge +",negative,negative,negative +"Rate / water charges applicable as well as the common storage facility. +","दर/पानी प्रभार लागू और समान्य एकत्र करने की सुविधा। +","darpani charges applicable aur samany ekatr karne ki facility +",neutral,neutral,neutral +"It is more important to do right thing than to do things right. +","काम को सही करने से अधिक महत्वपूर्ण यह है कि सही काम ही किये जावें। +","thing ko right karne se adhik important yah hai ki right thing hi kiye javen. +",positive,positive,positive +"The degree of blurring from 1 to 127. +","1 से 127 तक धुंधला की डिग्री. +","1 se 127 tak dhundhla ki degree +",neutral,neutral,neutral +"They all < s > are major causes of serious illness or early death; +","गंभीर एवं जानलेवा बीमारियों के प्रमुख कारण हैं। +","illness or early bimariyon ke prmukh karan hain. +",negative,negative,negative +"The main plateaus are the Baghelkhand and the Chota Nagpur. +","इस क्षेत्र के प्रमुख पठार बघेलखंड तथा छोटा नागपुर हैं। +","is kshetr ke main plateaus baghelkhnd tatha chhota nagpur hain. +",neutral,neutral,neutral +"He needed to authenticate the documents with signature. +","उसे दस्तावेज़ों को हस्ताक्षर द्वारा अधिप्रमाणित करने की आवश्यकता थी। +","use documents ko signature dvara adhiprmanit karne ki aavashyakta thi. +",neutral,neutral,neutral +"Sometimes, the local craftsmen also display their items for sale in this emporium. +","कभी स्थानीय शिल्पकार भी अपनी कलाकृतियों को यहां पर बेचने के लिए रख देते हैं. +","kabhi local craftsmen bhi apni kalakritiyon ko yahan par bechne ke lie rakh dete hain +",neutral,neutral,neutral +"Rate / water charges applicable as well as the common storage facility. +","दर/पानी प्रभार लागू और समान्य एकत्र करने की सुविधा। +","darpani water applicable aur common rate karne ki facility +",neutral,neutral,neutral +"It is more important to do right thing than to do things right. +","काम को सही करने से अधिक महत्वपूर्ण यह है कि सही काम ही किये जावें। +","kam ko sahi karne se adhik mahatvpoorn yah hai ki sahi kam hi kiye thing +",positive,positive,positive +"virtual tor of Taj mahal in Internet. +","ताजमहल का इंटरनेट पर वर्चुअल टूर +","mahal in internet par virtual tor +",neutral,neutral,neutral +"""Adjournment of the sitting of the House""- Termination of the sitting of the House which meets again at the time appointed for the next sitting. +","""सभाकी बैठक का स्थगन"" -- स्थगन होने पर सभा की बैठक समाप्त हो जाती है और सभा अगली बैठक के लिए नियत समय पर पुनः समवेत होती है। +","sabhaki sitting ka adjournment -- adjournment hone par house ki sitting samapt ho jati hai aur house next sitting ke lie niyat time par puna samvet hoti hai. +",neutral,neutral,neutral +"When Manohar was transferred to Amudalavalasa , the couple put their through the weight-training regimen at the Ammi Naidu gym in the district headquarters town of Srikakulam . +","मनोहर का तबादल अमूदलवलसा हा तो वहां दोनों ने श्रीकाकुलम जिल मुयालय स्थित अमी नायड़ू जिम में अयास जारी रखा . +","manohar ka tabadal amoodalavalsa ha to vahan donon ne shrikakulam jil muyalay sthit ami nayaroo jim men ayas jari rakha +",neutral,neutral,neutral +"The Krishna temple, Pattabhirama temple, Hazara Ramachandra and Chandrasekhara temple as also the Jain temples, are other examples. +","यहां स्थित कृष्ण मंदिर, पट्टाभिराम मंदिर, हजारा राम चंद्र और चंद्र शेखर मंदिर भी यहां के जैन मंदिर हैं जो अन्य उदाहरण हैं। +","yahan sthit krishn mndir, pattabhiram mndir, hajara ram chndr aur chndr shekhar mndir bhi yahan ke jain mndir hain jo any udaharan hain. +",neutral,neutral,neutral +"And what can make you know what is the Striking Calamity? +","और तुम्हें क्या मालूम कि क्या है वह खड़खड़ानेवाली? +","aur tumhen kya maloom ki kya hai vah striking +",neutral,neutral,neutral +"An organism in the early stages of development. +","विकास की प्रारम्भिक अवस्था में एक जीव +","early ki stages avastha men ek organism +",neutral,neutral,neutral +"The place you go while you are staring at a computer that is processing something very slowly. +","वह स्थान जहाँ आप एक कंप्यूटर को घूर रहे हैं जबकि वह कंप्यूटर बहुत धीरे-धीरे कुछ प्रोसेसिंग कर रहा है। +","vah place jahan aap ek computer ko staring rahe hain jabki vah computer bahut slowly kuchh prosesing kar raha hai. +",neutral,neutral,neutral +"Project Manager Plugin for Anjuta. +","परियोजना प्रबंधक प्लगइन के लिए Anjuta. +","project manager plugin ke lie Anjuta +",neutral,neutral,neutral +"WHAT WILL I EARN? 20 +","मेरी आमदनी क्या होगी? 25। +","meri aamadni kya hogi 25. +",neutral,neutral,neutral +"he takes a nap in the afternoon, and I got to go. +","वे दोपहर में सोते हैं, और मुझे ज़रूरी जाना है. +","ve nap men sote hain , aur i zaroori jana hai +",neutral,neutral,neutral +"It is also a matter of satisfaction that graduates of the centre have been recognised and valued. +","यह भी संतोष का विषय है कि इस सेंटर के स्नातकों को मान्यता और महत्व प्राप्त है। +","yah bhi matter of satisfaction hai ki is sentar ke snatkon ko recognised and valued prapt hai. +",positive,positive,positive +"Generating tissues of predictable density and behavior +","उम्मीद के मुताबिक घनत्व और व्यवहार के ऊतक बनाना +","ummid ke mutabik predictable aur behavior ke tissues banana +",neutral,neutral,neutral +"Purchase of machinery and implements / equipment +","मशीनों एवं उपकरणों/औजारों की खरीद। आवधिक ऋण: +","machinery evn upakarnonaujaron ki purchase aavdhik rin : +",neutral,neutral,neutral +"Only Lolita acted as a bridge between these two households. +","इन दोनों के बीच अकेली ललिता ही सेतु-सी बनी रह गई। +","in donon ke bich akeli lalita hi setu-si bani households gee. +",neutral,neutral,neutral +"Move% s onto% s. +","% s खिसकाएँ% s पर. +","s khiskaen s par +",neutral,neutral,neutral +"(i) it begins to manufacture or produce articles after the 30th day of September, 1977 but before the 1st day of April, 1990, in any rural area ; +","(i) यह किसी ग्रामीण क्षेत्र में वस्तुओं का विनिर्माण या उत्पादन 30 दिसम्बर, 1977 के पश्चात् किंतु 1 अप्रैल, 1990 के पूर्व प्रारंभ करता है; +","i yah kisi rural area men articles ka vinirman ya utpadan 30 september , 1977 ke pashchat kintu 1 april , 1990 ke poorv prarnbh karta hai +",neutral,neutral,neutral +"The Chairman to the right and the Speaker to the left of the President who occupies the middle seat. +","बीच के आसन पर राष्ट्रपति बैठता है, उसके दायें राज्य सभा का सभापति और बायें लोक सभा का अध्यक्ष। +","bich ke aasan par rashtrapti baithta hai, uske dayen rajy sabha ka sabhapti aur bayen lok sabha ka adhyaksh. +",neutral,neutral,neutral +"you have to learn to do that for your digital self. +","हमें यही सब अपने डिजिटल जीवन में भी करना सीखना पड़ता है. +","hamen yahi sab apne digital jivan men bhi karna learn parta hai +",neutral,neutral,neutral +"Update the files in the archive “%s”? +","फ़ाइलों “%s” अभिलेख में अद्यतन करें? +","files s archive men update karen +",neutral,neutral,neutral +"The writer of this monograph met her in October 1972 in Leningrad. +","इस पुस्तक के लेखक की अक्तूबर 1972 में, लेनिनग्राद में, लोला से, उनके घर पर भेंट हुई। +","is pustak ke lekhak ki october 1972 men, leninagrad men, lola se, unke ghar par bhent huee. +",neutral,neutral,neutral +"They said, ‘O Moses! Will you throw first, or shall we? ’ +","वे बोले, ""ऐ मूसा! या तो तुम फेंको या फिर हम पहले फेंकते हैं।"" +","ve bole , moses ! ya to tum phenko ya phir ham pahle phenkte hain. +",neutral,neutral,neutral +"If 20gms of the magaj is soaked in one cup of lukewarm water, a brown coloured colour of Burgundy wine, mildly aromatic drink is obtained. +","यदि 20 ग्राम मगज एक कप गुनगुने पानी में अवशोषित किया जाये तो भूरे रंग बर्गंडी वाइन का रंग का हल्का सुंगधित पेय तैयार हो जायेगा। +","yadi 20 gram magaj ek kap lukewarm water men avshoshit kiya jaye to brown coloured colour vain ka rng ka halka sungdhit pey taiyar ho jayega. +",neutral,neutral,neutral +"Each vertex has a label, and these labels must have the following property. +","प्रत्येक वर्टेक्स एक लेबल है, और इन लेबल निम्न गुण होना आवश्यक है। +","pratyek vertex ek label hai , aur in label following property hona aavashyak hai. +",neutral,neutral,neutral +"Language model adapts as you write. +","भाषा मॉडल अनुकूलित करता है जैसे आप लिखते हैं +","language model adapts karta hai jaise aap likhte hain +",neutral,neutral,neutral +"The Department of Agriculture organizes Pre - Kharif and Pre - Rabi Programme Planning Workshops that are attended by department officers, field level functionaries, university of agricultural sciences scientists, officers of line departments and related input agencies. +","कृषि विभाग खरीफ पूर्व और रबी पूर्व कार्यक्रम आयोजना कार्यशालाओं का आयोजन करता है जिसमें विभाग के अधिकारी, क्षेत्रीय स्तर के कार्यकर्ता, कृषि विज्ञान वैज्ञानिक विश्वविद्यालय इसी तरह के विभागों के अधिकारी और संबंधित निवेश एजेंसियों के अधिकारी भाग लेते हैं। +","agriculture department kharif pre aur rabi pre programme aayojna workshops ka planning karta hai jismen department ke officers , kshetriy level ke karyakarta , agriculture sciences scientists university isi tarah ke departments ke officers aur related input agencies ke officers bhag lete hain. +",neutral,neutral,neutral +"The optical photo conductor is no longer functioning +","ऑप्टिकल फोटो कंडक्टर कामकाज नहीं रहा है +","optical photo conductor functioning nahin raha hai +",negative,negative,negative +"Error sending ""% s"" to% s +","""% s"" को% s में भेजने में त्रुटि +","s ko s men sending men error +",negative,negative,negative +"The Indian Council of Cultural Relations carried on its role of acting as a cultural ambassador for the country. +","सांस्कृतिक सम्बन्ध भारतीय सांस्कृतिक सम्बन्ध परिषद देश के सांस्कृतिक दूत की भूमिका निभा रही है। +","cultural relations indian cultural relations council country ke cultural ambassador ki role nibha rahi hai. +",neutral,neutral,neutral +"He propagated the principles of Hinduism. +","उसने हिन्दुत्व के नियमों का प्रचार किया। +","usne hinduism ke principles ka prchar kiya. +",neutral,neutral,neutral +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","track the actor par nazar rakhne ke lie clip region ko set karen +",neutral,neutral,neutral +"The tribals also depend on the bamboo to augment their incomes . +","आदिवासी अपनी आय बढने के लिए भी बांस पर निर्भर रहते हैं . +","tribals apni aay augment ke lie bhi bamboo par depend rahte hain +",neutral,neutral,neutral +"His duty is scheduled at night shift. +","उसकी ड्यूटी रात की पारी में सूचित है। +","uski duty night ki shift men soochit hai. +",neutral,neutral,neutral +"A type of vein arrangement in leaf where veins run parallel to each other from the poin they strat to the end. +","पत्ती में पाया जाने वाला एक प्रकार का शिरा विन्यास जहां अपने आरंभ होने के स्थान से अंत होने के स्थान तक शिराएं एक दूसरे के समांतर होती हैं +","leaf men paya jane vala ek type ka vein arrangement jahan apne aarnbh hone ke other se end hone ke other tak shiraen ek doosre ke samantar hoti hain +",neutral,neutral,neutral +"Our immediate aim should be to eradicate communicable diseases and control the non-communicable ones. +","हमारा तात्कालिक लक्ष्य संचारी बीमारियों का उन्मूलन तथा गैर-संचारी बीमारियों पर नियंत्रण होना चाहिए। +","hamara tatkalik lakshy snchari bimariyon ka unmoolan eradicate communicable diseases par niyntran hona chahie. +",neutral,neutral,neutral +"The Cyber City is operational since then. +","यह साइबर सिटी तभी से चालू है। +","yah cyber city tabhi se operational hai. +",neutral,neutral,neutral +"And then you know what we do? We negotiate. +","और फ़िर हम क्या करते है? हम सौदा तय करते हैं। +","aur fir ham kya karte hai ham negotiate tay karte hain. +",neutral,neutral,neutral +"Motions, though they cover a variety of proceedings of the House, fall into three principal categories namely, Substantive Motions, Substitute Motions, and Subsidiary Motions. +","यद्यपि प्रस्ताव सदन की विभिन्न कार्यवाहियों से संबंधित होते हैं तथापि उन्हें तीन प्रमुख श्रेणियों में रखा जा सकता है, अर्थात मूल (सब्सटेंटिव) प्रस्ताव, स्थानापन्न (सबस्टीट्यूट) प्रस्ताव और सहायक (सब्सीडियरी) प्रस्ताव. +","yadypi motions house ki variety proceedings se snbndhit hote hain tathapi unhen tin principal fall men rakha ja sakta hai , arthat mool sabstentiv motions , substitute sabastityoot motions aur subsidiary sabsidiyri motions +",neutral,neutral,neutral +"And that 's the same thing as 0. 75x. +","जैसे 1X माइनस 0.25X के जैसे लिखा और वह समान चीज़ है जैसे 0.75X +","jaise 1X mainas 025X ke jaise likha aur vah saman chiz hai jaise 075X +",neutral,neutral,neutral +"unusual trapping or confinement of a part in the body +","यारीर में किसी अंग का असामान्य रूप से फंसना या सीमित हो जाना +","yarir part kisi ang ka asamany roop se phnsna ya simit ho jana +",neutral,neutral,neutral +"The meeting was held that very night at about 11 or 12 p. m. +","रातके लगभग 11 या 12 बजें यह सभा हुई। +","meeting lagabhag 11 ya 12 meeting was held huee. +",neutral,neutral,neutral +"Blend File / Folder with diff Output +","डिफ़ आउटपुट के साथ फ़ाइल/फ़ोल्डर ब्लैंड करें +","diff output ke sath failfoldar blend karen +",neutral,neutral,neutral +"The premature death a day earlier of her fourth son Bhupendranath at the age of thirteen, must have precipi - tated her own. +","इससे एक दिन पहले उनके चौथे पुत्र भूपेन्द्रनाथ की तेरह वर्ष की आयु में अकाल मृत्यु ने भी जल्द ही उनकी जीवनलीला समाप्त करने में मदद की होगी। +","isse ek din pahle unke fourth son age of thirteen varsh ki aayu men akal mrityu ne bhi jald hi unki jivanlila samapt karne men madad ki hogi. +",negative,negative,negative +"The males die and are absorbed. +","नर कृमि नष्ट होकर अवशोषित कर लिए जाते हैं। +","nar males nasht hokar avshoshit kar lie jate hain. +",negative,negative,negative +"Whether the label widget should fill all available horizontal space +","क्या लेबल विजेट सभी उपलब्ध क्षैतिज स्थान को भरना चहिए +","kya label widget sabhi available horizontal space ko bharna chahie +",neutral,neutral,neutral +"Specify the size and location of the main window +","आकार और स्थान का मुख्य विंडो +","size and location ka main window +",neutral,neutral,neutral +"The result was discord and loss of peace in the family. +","इससे घर में कलह मच गया। +","result ghar family kalah mach gaya. +",negative,negative,negative +"The Government of India had no adequate plans and arrangements for the country 's defence. +","भारत सरकार के पास देश की रक्षा के लिए पर्याप्त योजनाएं व इंतजाम न थे. +","india government ke pas desh ki raksha ke lie paryapt plans and arrangements n the +",negative,negative,negative +"that's right, a $1 billion - +","जी हाँ, 10 करोड़ डॉलर्ज़ - +","ji right , 10 karor dlarz - +",neutral,neutral,neutral +"The court said that the words were merely laughable and incapable of producing any effect on the readers. +","न्यायालय ने कहा कि वे शब्द सिर्फ हास्यास्पद थे और पाठकों पर कोई प्रभाव डालने में अक्षम थे। +","court ne kaha ki ve words sirph laughable the aur readers par koee effect dalne men incapable the. +",negative,negative,negative +"My devotees! no fear shall be on you that Day, nor shall ye grieve, - +","""ऐ मेरे बन्दों! आज न तुम्हें कोई भय है और न तुम शोकाकुल होगे।""- +","ae mere devotees ! aaj n tumhen koee fear hai aur n tum shokakul hoge. - +",positive,positive,positive +"Somebody sang before him a song which goes thus: ” I feel I am a poor man when people do n 't ask gifts of me. +","किसी ने उसके सामने इसक प्रकार का गीत गाया: ” जब लोग मुझसे दान नहीं मांगते तो जान पड़ता है कि दरिद्र व्यक़्ति हूं. +","kisi ne uske samne isak prkar ka git gaya: jab log mujhse dan nahin mangte to jan parta hai ki daridr vyati hoon +",negative,negative,negative +"Opposition politicians such as those of the rightist Jamaat - e - Islami are already criticising the General 's alleged gullibility in putting his faith on the US. +","दक्षिणपंथी जमाते-इस्लमी जैसी विपक्षी पार्टियां अमेरिका पर भरोसा करने की जनरल की कथित मूर्खता की आलचना कर रही हैं. +","rightist jamate-islmi such opposition partiyan amerika par faith karne ki general ki alleged moorkhta ki aalachna kar e hain +",negative,negative,negative +"Yet his novel could not attain perfect fusion of content and form. +","फिर भी उनके उपन्यास में विषय वस्तु और रूपविधान की दृष्टि से तालमेल नहीं रह सका। +","phir bhi unke novel men content vastu aur form ki drishti se talmel nahin perfect saka. +",negative,negative,negative +"We have a fully autonomous vehicle +","हमारे पास पूरी तरह से स्वचालित वाहन है +","hamare pas fully tarah se autonomous vehicle hai +",neutral,neutral,neutral +"that is why sapta sindhu language (relion language of parsi) has got converted to hafta hindu. +","इसलिये सप्त सिन्धु अवेस्तन भाषा (पारसियों की धर्मभाषा) मे जाकर हफ्त हिन्दु मे परिवर्तित हो गया (अवेस्ता: वेन्दीदाद फ़र्गर्द 1.18)। +","isliye sapta sindhu hindu language relion ki dharmbhasha me jakar hapht hindu me parivartit ho gaya avesta : vendidad fargard 118 . +",neutral,neutral,neutral +"Thus did a frustrated, enraged, and powerless people overwhelm their authorities and target close-by innocents. +","इस प्रकार शक्तिहीन, कुण्ठित, क्रोधित लोगों ने अपने अधिकारियों पर गुस्सा दिखाया तथा अपने निकट के निर्दोष लोगों को निशाना बनाया. +","is prkar powerless , innocents , krodhit people ne apne authorities par gussa dikhaya tatha apne nikat ke nirdosh people ko nishana banaya +",negative,negative,negative +"We've driven from San Francisco to Los Angeles on Highway 1. +","हमने इसे हाईवे 1 पर सैन फ्रांसिस्को से लॉस एंजेलेस तक चलाया है +","hamne ise highway 1 par san francisco se angeles enjeles tak chalaya hai +",neutral,neutral,neutral +"A staff of GUARD then brought 2 kg. of earthworms which costed Chandranna Rs. 300. +","के स्टाफ के एक सदस्य ने उसके बाद 2 किलोग्राम केंचुए लाकर दिए, जिसकी कीमत चन्द्रण्णा को 300 रुपये देनी पड़ी। +","ke staff ke ek sadasy ne uske bad guard kg earthworms lakar die , jiski kimat chandranna ko 300 rupye deni pari. +",neutral,neutral,neutral +"The construction of this temple was taken place in 4 century. +","मूल रूप से इस मंदिर का निर्माण चौथी शताब्दी के आस-पास हुआ था। +","mool roop se is temple ka construction place century ke aas-pas huaa tha. +",neutral,neutral,neutral +"There is in this audience and all around us a large number of elders who are making extremely valuable contributions to our country and to our society. +","इस सभा में तथा हमारे आसपास ऐसे बहुत से वयोवृद्ध हैं जो कि हमारे देश तथा समाज के लिए बहुमूल्य सहयोग प्रदान कर रहे हैं। +","is large number tatha hamare aaspas aese bahut se vayovriddh hain jo ki hamare desh tatha samaj ke lie bahumooly sahyog prdan kar rahe hain. +",positive,positive,positive +"of what there is to fear and to hate. +","हमे किससे डरना चाहिये और बचना चाहिये. +","hame kisse darna chahiye aur bachna chahiye +",negative,negative,negative +"For services in Wales contact: Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. +","वेल्स में सेवाओं के लिए सम्पर्क:-Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. टेलीफ़ोन नम्बर ०२२२ ८२५१११ +","services in wales ke lie sampark:-Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ telifon nambar ०२२२ ८२५१११ +",neutral,neutral,neutral +"For a country of this small size, the geographical variations are astonishing. +","एक छोटे से क्षेत्र के लिए नेपाल की भौगोलिक विविधता बहुत उल्लेखनीय है। +","ek small se country ke lie nepal ki geographical vividhta bahut ullekhniy hai. +",neutral,neutral,neutral +"I have complete knowledge of debenture bond. +","डिबेंचर बांड के बारे में मुझे समस्त जानकारी है। +","debenture bond ke bare men mujhe samast complete knowledge +",neutral,neutral,neutral +"A component of a chemical compound which is essential. +","किसी रासायनिक यौगिक का घटक जो आवश्यक होता है. +","kisi chemical compound ka component jo aavashyak hota hai +",neutral,neutral,neutral +"And it 's good to always do a reality check after every step. +","और यह हमेशा हर कदम के बाद एक वास्तविकता की जांच करने के लिए अच्छा है। +","aur yah hamesha har step ke bad ek reality ki janch karne ke lie good hai. +",positive,positive,positive +"And send down (to prey) upon them birds in flocks, +","और उन पर झुन्ड की झुन्ड चिड़ियाँ भेज दीं +","aur un par flocks ki flocks birds send din +",neutral,neutral,neutral +"and We made them a thing of the past, and We made them an example to later people. +","अतः हमने उन्हें अग्रगामी और बादवालों के लिए शिक्षाप्रद उदाहरण बना दिया +","ata hamne unhen thing aur past ke lie shikshaprad udaharan bana diya +",neutral,neutral,neutral +"Every soul shall have a taste of death: And only on the Day of Judgment shall you be paid your full recompense. Only he who is saved far from the Fire and admitted to the Garden will have attained the object (of Life): For the life of this world is but goods and chattels of deception. +","प्रत्येक जीव मृत्यु का मज़ा चखनेवाला है, और तुम्हें तो क़ियामत के दिन पूरा-पूरा बदला दे दिया जाएगा। अतः जिसे आग (जहन्नम) से हटाकर जन्नत में दाख़िल कर दिया गया, वह सफल रहा। रहा सांसारिक जीवन, तो वह माया-सामग्री के सिवा कुछ भी नहीं +","full object death ka taste chakhnevala hai , aur tumhen to judgment ke day poora-poora badla de diya jaega. ata jise fire jahannam se hatakar garden men dail kar diya gaya , vah saphal raha. raha sansarik soul , to vah maya-samagri ke siva kuchh bhi nahin +",negative,negative,negative +"The Englishman ' s eyes lit up . +","अंग्रेज की आंखों में चमक आ गई , +","englishman ki eyes men chamak aa gee , +",neutral,neutral,neutral +"In most of the Committees, public is directly or indirectly associated when memoranda containing suggestions are received. +","अधिकांश समितियों में जनता प्रत्यक्ष अथवा अप्रत्यक्ष ढ़ंग से तब संबद्ध होती है जब उनसे सुझावों संबंधी ज्ञापन प्राप्त होते हैं। +","most committees men public pratyaksh athva apratyaksh ng se tab snbaddh hoti hai jab unse memoranda snbndhi jnjapan prapt hote hain. +",neutral,neutral,neutral +"But Nanak was for more knowledgeable than his teachers. +","लेकिन नानक का ज्ञान गुरु से कहीं बढ़-चढ़ कर था। +","lekin nanak ka jnjan guru se kahin ba-cha kar tha. +",neutral,neutral,neutral +"you have to learn to do that for your digital self. +","हमें यही सब अपने डिजिटल जीवन में भी करना सीखना पड़ता है. +","hamen yahi sab apne digital jivan men bhi karna sikhna parta hai +",neutral,neutral,neutral +"Notification area applet for managing your network devices and connections. +","आपके संजाल युक्तियां और कनेक्शन को प्रबंधित करने के लिए अधिसूचना क्षेत्र एप्लेट. +","aapke snjal devices and connections ko prbndhit karne ke lie notification area applet +",neutral,neutral,neutral +"The following clusters have been chosen for intervention: +","इस मदद हेतु निम्नांकित समूहों को चुना गया है +","is madad hetu nimnankit samoohon ko chuna gaya hai +",neutral,neutral,neutral +"115AB. (1) Where the total income of an assessee, being an overseas financial organisation (hereinafter referred to as Offshore Fund) includes— +","115कख. (1) जहां किसी निर्धारिती की, जो विदेशी वित्तीय संगठन है (जिसे इसमें इसके पश्चात् ''अपतट निधि'' कहा गया है) कुल आय में,– +","115kakh 1 jahan kisi assessee ki , jo overseas financial organisation hai jise ismen iske hereinafter apatat fund kaha gaya hai kul total men , +",neutral,neutral,neutral +"In a condolence message, the President has said, ""It was with profound sorrow that I learnt of the passing away ofShri Justice V.R. Krishna Iyer. +","राष्ट्रपति ने एक शोक संदेश में कहा है , "" मुझे न्यायमूर्तिश्रीवी आर कृष्ण अय्यर के निधन के बारे में जानकर अत्यंत दुःख हुआ है। +","rashtrapti ne ek condolence message men kaha hai , mujhe nyaymoortishrivi aar krishn ayyar ke nidhan ke bare men janakar atynt duakh huaa hai. +",neutral,neutral,neutral +"While primay matter and the Universals are eternal, it is the individuals which are produced and are perishable. +","जहां मूल द्रव्य और सामान्य शाश्वत होते है, वही व्यक्तियो की उत्पति होती है और नश्वर होते है। +","jahan mool dravy aur samany shashvat hote hai, vahi vyaktiyo ki utpti hoti hai aur nashvar hote hai. +",neutral,neutral,neutral +"but whoever seeks beyond that—it is they who are the transgressors) +","किन्तु जिस किसी ने इसके अतिरिक्त कुछ और चाहा तो ऐसे ही लोग सीमा का उल्लंघन करनेवाले है।- +","kintu jis kisi ne iske atirikt kuchh aur chaha to aese hi log sima ka ullnghan karnevale transgressors +",neutral,neutral,neutral +"The body of humans are prone to destruction but destruction never occurs to the soul. +","मनुष्य का शरीर विनाशशील है किंतु आत्मा का कभी नाश नहीं होता। +","humans ka body prone hai kintu soul ka kabhi destruction nahin hota. +",negative,negative,negative +"But, so this is the first quadrant intersection. +","लेकिन, तो यह पहली वृत्त का चतुर्थ भाग मिलन बिंदु है। +","lekin , to yah first quadrant ka intersection bhag milan bindu hai. +",neutral,neutral,neutral +"Whether menu items should have accelerators +","क्या मेन्यू मद में त्वरक होने चाहिए +","kya menu items men accelerators hone chahie +",neutral,neutral,neutral +"And the plants and the trees prostrate (for Him). +","और बूटियाँ बेलें, और दरख्त (उसी को) सजदा करते हैं +","aur plants belen, aur trees prostrate ko sajda karte hain +",neutral,neutral,neutral +"The complement of any maxterm is a minterm. +","किसी भी योगपद का पूरक एक गुणद होता है। +","kisi bhi maxterm ka complement ek gunad hota hai. +",neutral,neutral,neutral +"And here you'll see Daniel throw this hoop into the air, +","और यहाँ आप देखेंगे डानिएल हूप को ऊपर उड़ाते हुए, +","aur yahan aap dekhenge daniel hoop ko oopar urate hue , +",neutral,neutral,neutral +"Average feed consumption upto marketable age +","बेचने योग्य होने की आयु तक पहुँचने तक भोजन की औसत खपत +","upto yogy hone ki age tak pahunchne tak feed ki average consumption +",neutral,neutral,neutral +"Then We raised up after them another generation. +","फिर हमने उनके बाद एक और क़ौम को (समूद) को पैदा किया +","phir hamne unke bad ek aur aum ko generation ko paida kiya +",neutral,neutral,neutral +"This is essentially necessary in the evolution of laws and norms regarding the resources of the sea and of new technology involving outer space. +","यह बात विशेषतः समुद्र सम्बंधी तथा बाह्य अंतरिक्ष विषयक टेक्नोलाजी के विकास से सम्बद्ध कानूनों और मानदंडों के बारे में लागू होनी चाहिए। +","yah new visheshta sea sambndhi tatha outer space vishayak technology ke evolution se sambaddh laws aur norms ke bare men lagoo resources chahie. +",neutral,neutral,neutral +"unusual trapping or confinement of a part in the body +","यारीर में किसी अंग का असामान्य रूप से फंसना या सीमित हो जाना +","body men kisi part ka unusual roop se trapping ya simit ho jana +",neutral,neutral,neutral +"Democracy implies the existence of representative institutions, the expression of the will of the people as to who their representatives would be and the participation of the people in national tasks. +","लोकतंत्र में यह अंतर्निहत है कि प्रतिनिधित्वपूर्ण संस्थाएं काम करें और लोग स्वतंत्र रूप से राय दे सकें कि उनमें प्रतिनिधि कौन होंगे तथा राष्ट्रीय क्रियाकलापों में जनता की भागीदारी रहे। +","democracy men yah antarnihat hai ki prtinidhitvpoorn institutions tasks karen aur people svtntr participation se ray expression saken ki existence representative kaun honge tatha national kriyaklapon men janta ki bhagidari rahe. +",neutral,neutral,neutral +"The first Sthai inhabitants took its from about 1000 years back | +","प्रथम स्थाई बस्तियों ने ९००० वर्ष पूर्व स्वरुप लिया। +","pratham sthaee bastiyon ne ९००० years back svrup liya. +",neutral,neutral,neutral +"Shahjahan arrange to built it in memory of his wife Mumtaz Mahal. +","यह मुगल बादशाह शाहजहां ने अपनी बेगम मुमताज महल की याद में बनवाया था। +","yah mugal badshah shahajhan ne apni begam mumtaj mahal ki yad men banvaya tha. +",neutral,neutral,neutral +"Info to be shown for this item +","इस मद के लिए दिखाए जाने के लिए जानकारी +","is mad ke lie shown jane ke lie info +",neutral,neutral,neutral +"Then we can sit down and discuss all aspects of the matter. +","उस हालत में हम मिल बैठकर सभी पक्षों पर विचार कर सकते हैं। +","us halat men ham mil sit sabhi pakshon par vichar kar sakte hain. +",neutral,neutral,neutral +"There are four to five generations in a year and generally the pest overwinters as nymph which develops into adult in early spring. +","वर्ष में चार-पांच पीढ़ियां पूरी हो जाती हैं और यह पीड़क निम्फ के रूप में सर्दियां पार करके बसंत के आरंभ में प्रौढ़ बन जाता है। +","year men char-panch generations poori ho jati hain aur yah pirak nimph ke roop men sardiyan par karke spring ke aarnbh men adult nymph jata hai. +",neutral,neutral,neutral +"(9) The person from whose custody any books of account or other documents are seized under sub-section (1) or sub-section (1A) may make copies thereof, or take extracts therefrom, in the presence of the authorised officer or any other person empowered by him in this behalf, at such place and time as the authorised officer may appoint in this behalf. +","(9) वह व्यक्ति, जिसकी अभिरक्षा से कोर्इ लेखा बहियां या अन्य दस्तावेज उपधारा (1) या उपधारा (1क) के अधीन अभिगृहीत किए जाते हैं, उनकी नकलें या उनसे उद्धरण प्राधिकृत अधिकारी या उस निमित्त उसके द्वारा सशक्त किसी अन्य व्यक्ति की उपस्थिति में ऐसे स्थान और समय पर जो प्राधिकृत अधिकारी इस निमित्त नियत करें ले सकेगा। +","9 vah vyakti, jiski abhiraksha se kori lekha bahiyan ya any dastavej updhara 1 ya updhara 1k ke adhin abhigrihit kie jate hain, unki naklen ya unse uddharan authorised officer ya us nimitt uske dvara sashakt kisi any vyakti ki upasthiti men aese sthan aur samay par jo authorised officer is nimitt niyat karen le sakega. +",neutral,neutral,neutral +"Water is major constituents of all living matters. +","पानी सभी जीवित पदार्थों का मुख्य घटक है. +","water sabhi living padarthon ka major ghatak hai +",neutral,neutral,neutral +"For more than four decades, Gurbakhsh Singh prevailed over Punjabi journalism. +","चार दशकों से अधिक, गुरबख्श सिंह पंजाबी पत्रकारिता पर आच्छादित रहे। +","char dashkon se adhik, gurabakhsh sinh punjabi journalism par aachchhadit rahe. +",neutral,neutral,neutral +"I wonder if I could rightly call it a meeting. +","पर इसको सभा कहा भी जाए या नहीं? +","par i meeting kaha bhi jae ya nahin +",neutral,neutral,neutral +"It is free, and borrowing books is free. +","यह सेवा निःशुल्क (मुफ़्त) है और (पढ़ कर लौटा दी जाने वाली) किताबें मुफ़्त में मिलेंगी. +","yah seva free muft hai aur books kar lauta di jane vali kitaben muft men milengi +",positive,positive,positive +"Hell shall be their bed, and over them will be coverings of fire, thus shall We reward the wrongdoers. +","और उनके ऊपर से (आग ही का) ओढ़ना भी और हम ज़ालिमों को ऐसी ही सज़ा देते हैं और जिन लोगों ने ईमान कुबुल किया +","aur unke wrongdoers se hell hi ka bed bhi aur ham zalimon ko aesi hi saza dete hain aur jin logon ne eeman kubul kiya +",negative,negative,negative +"Notify when remote emails are queued +","जब रिमोट ई-मेल क़तारबद्ध हों तो सूचित करें +","jab remote ee-mel tarabaddh emails to soochit karen +",neutral,neutral,neutral +"We should view the going of such a person not so much with sorrow, but with gratitude that we had the privilege of knowing her, that we had the privilege of her affection, that we had the privilege of being within her circle of radiance. +","ऐसी विभूति के प्रयाण पर हमें दुखी न होकर कृतज्ञता महसूस करनी चाहिए कि हमने उन्हें जाना, उनका प्यार पाया, उनके व्यक्तित्व के प्रभामंडल में रहने का गौरव प्राप्त किया। +","aesi vibhooti ke pryan par much sorrow n hokar gratitude affection person chahie ki hamne unhen jana , unka pyar paya , unke vyaktitv ke prbhamndal men rahne ka privilege prapt kiya. +",positive,positive,positive +"So it tasted the evil result of its conduct, and the end of its affair was perdition. +","तो उन्होने अपने काम की सज़ा का मज़ा चख लिया और उनके काम का अन्जाम घाटा ही था +","to unhone apne affair ki evil ka maza chakh liya aur unke affair ka anjam ghata hi tha +",negative,negative,negative +"I take this opportunity to convey my best wishes for your Excellency’s well being and for the continued progress and prosperity of the friendly people of Saint Vincent and the Grenadines. +","मैं इस अवसर पर महामहिम की कुशलता तथा सेंट विंसेंट एवं ग्रेनडीन की मित्र जनता की निरंतर प्रगति और समृद्धि के लिए अपनी मेरी शुभकामनाएं देता हूं। +","i is opportunity par excellency ki kushalta tatha saint vincent evn friendly ki mitr people ki continued progress aur prosperity ke lie apni best wishes deta hoon. +",positive,positive,positive +"An error occurred while trying to set up sync. +","सिंक सेट अप करने का प्रयास करते समय एक त्रुटि उत्पन्न हुई. +","sync set ap karne ka pryas karte samay ek error occurred huee +",negative,negative,negative +"She bent over Mohan and hiccupped. +","वह मोहन पर झुक गयी और हिलक उठी। +","vah mohan par jhuk gayi aur hilak uthi. +",neutral,neutral,neutral +"The result was discord and loss of peace in the family. +","इससे घर में कलह मच गया। +","result ghar men discord family gaya. +",negative,negative,negative +"Only Lolita acted as a bridge between these two households. +","इन दोनों के बीच अकेली ललिता ही सेतु-सी बनी रह गई। +","in donon ke bich akeli acted hi setu-si bani rah gee. +",neutral,neutral,neutral +"Before an action or occurrence took place. +","एक क्रिया या घटना होने के पहले +","ek action ya occurrence hone ke pahle +",neutral,neutral,neutral +"Human body consists of head, neck, torso, arms and legs. +","मनुष्य शरीर में शीश, गर्दन, धड़, बाजु तथा टांगें होती हैं +","human body consists shish, neck, torso, baju tatha tangen hoti hain +",neutral,neutral,neutral +"Display options for Brasero - burn library +","ब्रैसेरो बर्न लाइब्रेरी के लिए प्रदर्शक विकल्प +","brasero burn library ke lie display options +",neutral,neutral,neutral +"install the standard and TSC pumps +","मानक और टीएससी पंप स्थापित करें +","standard aur tsc pumps sthapit karen +",neutral,neutral,neutral +"The average annual clip is about one kilogram. +","वर्षभर में औसतन लगभग एक किलोग्राम ऊन एक भेड़ से उतरती है। +","average annual clip lagabhag ek kilogram oon ek bher se utarti hai. +",neutral,neutral,neutral +"But there was music in the family. +","लेकिन परिवार का वातावरण संगीतमय था। +","lekin family ka vatavaran music tha. +",neutral,neutral,neutral +"Drayage from port to warehouse is borne by the importer. +","बन्दरगाह से गोदाम तक माल की ढुलाई का व्यय आयातक द्वारा वहन किया जाता है। +","port se godam tak mal ki dhulaee ka vyay importer dvara vahan kiya jata hai. +",neutral,neutral,neutral +"It was difficult not to think about what he had left behind. +","जो कुछ वह पीछे छोड़कर आया है, उसके बारे में एकदम कुछ न सोचना उसके लिए बहुत मुश्किल था। +","jo kuchh vah pichhe chhorakar aaya hai, uske bare men ekadam kuchh n sochna uske lie bahut mushkil tha. +",negative,negative,negative +"Here's a really short text. +","यहाँ एक बहुत छोटा वाक्य है। +","yahan ek bahut short text text +",neutral,neutral,neutral +"Swelling of the rectum and the colon. +","मलाशय और बृहदान्त्र का सूजन. +","rectum aur brihdantr ka swelling +",neutral,neutral,neutral +"In the absence of organised marketing for small agricultural products producers do not get good price realisation. +","लघु कृषि उत्पादों के लिए संगठित विद्यमान व्यवस्था के अभाव में उत्पादकों को उनकी उपज का अच्छा मूल्य नहीं मिल पाता। +","small agricultural products ke lie sngthit vidyman vyavastha ke abhav men utpadkon ko unki upaj ka achchha mooly nahin mil pata. +",negative,negative,negative +"We have a fully autonomous vehicle +","हमारे पास पूरी तरह से स्वचालित वाहन है +","hamare pas poori tarah se autonomous vehicle hai +",neutral,neutral,neutral +"The famous 'Chauri Chaura' and 'Meerut conspiracy' case are few cases wherein this Court delivered memorable judgments upholding the concept of liberty. +","प्रसिद्ध चौरी-चौरा तथा मेरठ षडयंत्र कुछ ऐसे मामले हैं जिनमें न्यायालय ने स्वतंत्रता की अवधारणा बनाए रखते हुए स्मरणीय निर्णय दिए। +","famous chauri-chaura few chaura conspiracy kuchh aese case hain jinmen court ne liberty ki concept banae rakhte hue memorable judgments die. +",neutral,neutral,neutral +"(iii) ""contract"" shall include sub-contract; +","(iii) ""संविदा"" के अंतर्गत उपसंविदा भी है; +","iii contract ke antargat upsnvida bhi hai +",neutral,neutral,neutral +"Hence he came to be called Padmapada. +","इसी से उसका नाम पद्मपाद पड गया। +","isi se uska nam padmpad hence gaya. +",neutral,neutral,neutral +"The centrally governed parts of land are called union territories +","केन्द्रीय प्रशासित भू-भागों को संघराज्य क्षेत्र कहा जाता है। +","kendriy prshasit called union territories kshetr kaha jata hai. +",neutral,neutral,neutral +"Originally, the reservation was for ten years but it is being extended every time for the next ten years - LRB - articles 330 and 334 - RRB -. +","मूलतया आरक्षण दस वर्षों के लिए था लेकिन उसे हर बार अगले दस वर्षों के लिए बढ़ाया जा रहा है (अनुच्छेद 330 तथा 334). +","lrb reservation ten years ke lie tha lekin use har time agle ten years ke lie baaya ja raha hai anuchchhed 330 tatha 334 +",neutral,neutral,neutral +"Delhi fort is also called as red fort since it is red in color. +","दिल्ली के किले को लाल-किला भी कहते हैं क्योंकि यह लाल रंग का है। +","delhi ke fort ko lal-kila bhi kahte hain kyonki yah red color ka hai. +",neutral,neutral,neutral +"Those who have gone before them belied, yet they did not reach a tenth of what We gave them; yet they belied My Messengers. And how was (My) rejection (their destruction)! +","और झूठलाया उन लोगों ने भी जो उनसे पहले थे। और जो कुछ हमने उन्हें दिया था ये तो उसके दसवें भाग को भी नहीं पहुँचे है। तो उन्होंने मेरे रसूलों को झुठलाया। तो फिर कैसी रही मेरी यातना! +","aur messengers un destruction ne bhi jo unse pahle the. aur jo kuchh hamne unhen diya tha ye to uske tenth bhag ko bhi nahin pahunche hai. to unhonne mere rasoolon ko jhuthlaya. to phir kaisi rahi meri rejection ! +",negative,negative,negative +"But, so this is the first quadrant intersection. +","लेकिन, तो यह पहली वृत्त का चतुर्थ भाग मिलन बिंदु है। +","lekin, to yah pahli vritt ka quadrant intersection milan bindu hai. +",neutral,neutral,neutral +"Video output for Windows 7/Windows Vista with Platform update +","प्लेटफार्म अद्यतन के साथ Windows 7/Windows Vista के लिए वीडियो आउटपुट +","platform update ke sath Windows 7Windows vista ke lie video output +",neutral,neutral,neutral +"Beside these, the Peepal tree, Banana tree and Bilva have been also placed in appropriate locations in the Vatika bringing the total to 51 trees/plants. +","इनके अलावा, पीपल वृक्ष, केला वृक्ष तथा बिल्व भी वाटिका के उपयुक्त स्थलों पर लगाए गए हैं जिससे कुल 51 वृक्ष/पौधे हो गए हैं। +","inke alava, peepal tree, banana tree tatha bilv bhi vatika ke upyukt sthlon par lagae ge hain jisse kul 51 vrikshpaudhe ho ge hain. +",neutral,neutral,neutral +"from the evil of what He has created, +","हर चीज़ की बुराई से जो उसने पैदा की पनाह माँगता हूँ +","har created ki evil se jo usne paida ki panah mangta hoon +",negative,negative,negative +"which obeys really strict rules. +","जो वास्तव में कड़े नियमों का अनुसरण करता है। +","jo vastav men strict rules ka anusaran karta hai. +",neutral,neutral,neutral +"115WF. If any person, being an employer— +","115बच.यदि कोर्इ व्यक्ति, जो नियोजक है– +","115bachydi kori person , jo niyojak hai +",neutral,neutral,neutral +"The poet is trying to create an image of a woman whose whole body is pining away, every limb is turning and twisting and, as described in a sloka mentioned above, the very bed and bed - sheets have become symbols of anguish and torture. +","कवि यहां एक ऐसी नारी के बिम्ब की उदभावना में लगा है जिसकी देह झुर रही है, अंग-अंग मरोड़ खा रहा है और, जैसा एक अन्य सलोक में कहा गया, बिछौना और चादर भी यन्त्रणा का प्रतिरूप बन उठे हैं। +","kavi yahan ek aesi nari ke bimb ki udbhavna men laga hai jiski deh jhur rahi hai, ang-ang maror kha raha hai aur, jaisa ek any salok men kaha gaya, bed and bed bhi yantrna ka prtiroop ban uthe hain. +",negative,negative,negative +"Sugar Machinery: - domestic manufacturers occupy predominant position in the global scenario and are capable of manufacturing from concept to commissioning stage sugar plants of latest design for a capacity upto 10, 000 TCD (tons crushing per day). +","वर्तमान में संपूर्ण चीनी संयंत्रों के विनिर्माण के लिए संगठित क्षेत्र में 2 इकाइयां हैं और प्रति वर्ष लगभग 200 करोड़ की संस्थापित क्षमता वाले पुर्जे हैं। +","vartman men snpoorn chini snyntron ke vinirman ke lie sngthit kshetr men 2 ikaiyan hain aur prti varsh lagabhag 200 karor ki snsthapit kshamta vale purje hain. +",neutral,neutral,neutral +"and on the mountains, how they are firmly set up, +","और पहाड़ो की ओर कि कैसे खड़े किए गए? +","aur mountains ki or ki kaise khare kie ge +",neutral,neutral,neutral +"But they had not been sent as guardians over them. +","हालाँकि वे उनपर कोई निगरानी करनेवाले बनाकर नहीं भेजे गए थे +","halanki ve unapar koee guardians karnevale banakar nahin bheje ge the +",neutral,neutral,neutral +"Before road transport developed, the principal arteries of communication during those days were the river routes. +","सड़कों के विकास के पहले उन दिनों नदियों के मार्ग ही यातायात के प्रमुख साधन थे। +","sarkon ke vikas ke pahle un days river ke road hi transport ke principal communication the. +",neutral,neutral,neutral +"To change time or date settings, you need to authenticate. +","समय या दिनांक सेटिंग्स को बदलने के लिए, आपको प्रमाणित करने की जरूरत है. +","time ya dinank settings ko badalne ke lie , aapko prmanit karne ki jaroorat hai +",neutral,neutral,neutral +"this order was made applicable to State Governments including the State of Uttar Pradesh. +","इस आदेश को उत्तर प्रदेश राज्य सहित समस्त राज्य सरकारों को लागू किया गया था. +","is aadesh ko uttar prdesh rajy sahit samast rajy order was made kiya gaya tha +",neutral,neutral,neutral +"[This is] a promise of Allah: Allah does not break His promise, but most people do not know. +","(ये) ख़ुदा का वायदा है) ख़ुदा अपने वायदे के ख़िलाफ नहीं किया करता मगर अकसर लोग नहीं जानते हैं +","ye allah ka promise hai allah apne vayde ke ilaph nahin kiya karta magar most people nahin jante hain +",neutral,neutral,neutral +"Your upcoming events will be displayed here when you select a date with events. +","आपकी आने वाली घटनाओं को प्रदर्शित किया जाएगा जब आप घटनाओं के साथ एक तिथि का चयन करेंगे. +","aapki aane vali date with events kiya jaega jab aap ghatnaon ke sath ek select a date karenge +",neutral,neutral,neutral +"In short they were now in a mood to send their sons to any school which the Anjuman set up. +","संक्षिप्त में, अब अंजुमन द्वारा स्थापित स्कूल में अपने पुत्रों के भेजने का उनका मन हो गया। +","short men, ab anjuman dvara sthapit skool men apne send their sons ka unka man ho gaya. +",neutral,neutral,neutral +"There did Zakariya pray to his Lord; he said: My Lord! grant me from Thee good offspring; surely Thou art the Hearer of prayer. +","(ये माजरा देखते ही) उसी वक्त ज़करिया ने अपने परवरदिगार से दुआ कि और अर्ज क़ी ऐ मेरे पालने वाले तू मुझको (भी) अपनी बारगाह से पाकीज़ा औलाद अता फ़रमा बेशक तू ही दुआ का सुनने वाला है +","ye offspring dekhte hi usi vakt zakriya ne apne paravardigar se pray ki aur arj i ae mere palne vale too mujhko bhi apni bargah se pakiza aulad ata farma beshak too hi pray ka sunne vala hai +",positive,positive,positive +"This bushy plant is a host in a plant pathosystem. +","यह झाड़ीदार पौधा पादप रोग-तंत्र में एक परपोषी है। +","yah jharidar paudha padap rog-tntr men ek parposhi hai. +",neutral,neutral,neutral +"by 5, so 1 times 5 is 5. +","तो 1 गुना 5 बराबर है 5के. +","to 1 times 5 barabar hai 5ke +",neutral,neutral,neutral +"And never [O Muhammad] pray for one of them who dies, nor stand by his grave. For they denied God and His Messenger, and died rebellious. +","औऱ उनमें से जिस किसी व्यक्ति की मृत्यु हो उसकी जनाज़े की नमाज़ कभी न पढ़ना और न कभी उसकी क़ब्र पर खड़े होना। उन्होंने तो अल्लाह और उसके रसूल के साथ कुफ़्र किया और मरे इस दशा में कि अवज्ञाकारी थे +","au unmen se jis kisi vyakti ki mrityu ho uski janaze ki namaz kabhi n pana aur n kabhi uski br par khare hona. unhonne to allah aur uske rasool ke sath kufr kiya aur mare is dasha men ki avajnjakari the +",negative,negative,negative +"Primary center connects toll centers. +","प्राथमिक केंद्र, शुल्क केन्द्रों (टोल केन्द्रों) को जोड़ता है। +","primary center , shulk centers toll centers ko jorta hai. +",neutral,neutral,neutral +"And [Yusuf (Joseph)] told his servants to put their money (with which they had bought the corn) into their bags, so that they might know it when they go back to their people, in order that they might come back. +","और हम ज़रुर इस काम को पूरा करेंगें और यूसुफ ने अपने मुलाज़िमों (नौकरों) को हुक्म दिया कि उनकी (जमा) पूंजी उनके बोरो में (चूपके से) रख दो ताकि जब ये लोग अपने एहलो (अयाल) के पास लौट कर जाएं तो अपनी पूंजी को पहचान ले. +","aur ham zarur is kam ko poora karengen aur yusuf ne apne mulazimon servants ko order diya ki unki bags money unke boro men choopke se rakh do taki jab ye people apne ehlo ayal ke pas laut kar jaen to apni money ko pahchan le +",neutral,neutral,neutral +"While primay matter and the Universals are eternal, it is the individuals which are produced and are perishable. +","जहां मूल द्रव्य और सामान्य शाश्वत होते है, वही व्यक्तियो की उत्पति होती है और नश्वर होते है। +","jahan individuals matter aur samany eternal hote hai , vahi vyaktiyo ki utpti hoti hai aur perishable hote hai. +",neutral,neutral,neutral +"Saccus endolymphaticus is also known as endolymphatic sac. +","अन्तरुदक कोश को अन्तः कर्णोदक कोश के रूप में भी जाना जाता है. +","antrudak kosh ko anta endolymphatic sac ke roop men bhi jana jata hai +",neutral,neutral,neutral +"A sliding Vicryl noose is used in postoperative suture adjustment of extraocular muscles. +","खिसकने वाली विक्राइल फंदे का प्रयोग शल्यक्रिया के बाद नेत्रेतर मांसपेशियों की सीवन के समन्वयन हेतु किया जाता है। +","khisakne vali vikrail adjustment ka pryog shalyakriya ke bad netretar muscles ki suture ke samanvayan hetu kiya jata hai. +",neutral,neutral,neutral +"Shares of best companies which have very important effect on the share market. +","श्रेष्ठ कंपनियों के शेयर्स जो शेयर बाजार को बहुत प्रभावित करने वाले हों। +","best companies ke effect jo shares bajar ko bahut prbhavit karne vale hon. +",positive,positive,positive +"With momentum of time Marathi literature also became modern. +","मराठी साहित्य भी समय की गति क साथ साथ आधुनिक हो चुका है। +","marathi literature bhi momentum of time k sath sath aadhunik ho chuka hai. +",neutral,neutral,neutral +"When something is routed through the account belonging to oneself. +","जब कोई सौदा या लेन-देन ऐसे खाते के माध्यम से किया जा रहा हो जो स्वयं का हो। +","jab koee account ya len-den aese khate ke madhyam se kiya ja raha ho jo svyn ka something +",neutral,neutral,neutral +"When you go in these developing societies, +","जब आप इन विकासशील इलाकों में जाते हैं, +","jab aap in societies ilakon men jate hain , +",neutral,neutral,neutral +"She answered, This is their home. +","उत्तर था, यह उनका घर है। +","answered tha, yah unka ghar hai. +",neutral,neutral,neutral +"Many of them are likely to return to India, but while they live abroad, all of them are vulnerable in many ways owing to the fact that they do not enjoy the privileges of citizenship in their host country. +","उनमें से बहुतों के भारत लौटने की संभावना है परंतु विदेश में रहने पर वे सभी इस सच्चाई की वजह से असुरक्षित हैं कि उन्हें अपने मेजबान देश की नागरिकता के लाभ नहीं मिलते हैं। +","many se bahuton ke bharat lautne ki likely hai parntu videsh men rahne par ve sabhi is fact ki vajah se vulnerable hain ki unhen apne host country ki citizenship ke privileges nahin milte hain. +",negative,negative,negative +"A plugin sending events to Zeitgeist +","जेटगीइस्ट में कार्यक्रम भेजने के लिए प्लगइन +","events men karyakram bhejne ke lie plugin +",neutral,neutral,neutral +"And we know how to write that in decimal form. +","और हम जानते हैं की इसे कैसे दसमलव के रूप में लिखते. +","aur ham jante hain ki ise kaise decimal ke form men write +",neutral,neutral,neutral +"Products with factory price are available in show room +","फैक्टरी कीमत पर उत्पाद शो रूम में उपलब्ध है। +","factory price par products show room men available hai. +",neutral,neutral,neutral +"Apply the given geometry to the main window +","मुख्य विंडो के लिए दिए गए ज्यामिति को लागू करें +","main window ke lie die ge geometry ko lagoo karen +",neutral,neutral,neutral +"The certificate has already been imported. +","प्रमाणपत्र पहले ही आयातित किया जा चुका है. +","certificate pahle hi imported kiya ja chuka hai +",neutral,neutral,neutral +"and when the Koran is recited to them they do not bow? +","और जब उन्हें कुरआन पढ़कर सुनाया जाता है तो सजदे में नहीं गिर पड़ते? +","aur jab unhen koran pakar sunaya jata hai to sajde men nahin gir parte +",neutral,neutral,neutral +"The house around them was settling down into unquiet sleep, but they were both wide awake. +","चारों ओर से उन्हें घेरता हुआ मकान अशान्त निद्रा में सो रहा था, किन्तु वे दोनों जाग रहे थे। +","charon or se unhen gherta huaa house unquiet sleep men so raha tha , kintu ve donon wide rahe the. +",neutral,neutral,neutral +"In those days i. e. before 1947 Urdu was the State language of the Punjab, and Punjabi was grossly neglected by the intellectuals, most of who behaved like 'Sahibs' in their speech, mannerisms, etc. +","उन दिनों 1947 से पूर्व उर्दू पंजाब की राजभाषा थी और बुद्धिजीवी जिनमें से अधिकांश तो अपनी बातचीत व व्यवहार में साहिबों जैसा व्यवहार करते थे तछा पंजाबी की पूरी तरह उपेक्षा करते थे। +","un dinon 1947 se poorv state language ki rajbhasha thi aur buddhijivi jinmen se adhikansh to apni batchit v vyavhar men sahibon jaisa vyavhar karte the tachha pnjabi ki poori tarah upeksha karte the. +",negative,negative,negative +"And that 's probably the key lesson to my short talk here, is that +","और मेरे छोटे व्याख्यान का शायद महत्वपूर्ण सबक है, +","aur mere short talk ka shayad key lesson hai , +",neutral,neutral,neutral +"(iii) ""contract"" shall include sub-contract; +","(iii) ""संविदा"" के अंतर्गत उपसंविदा भी है; +","iii snvida ke include contract bhi hai +",neutral,neutral,neutral +"Sonabadra District in Uttar Pradesh is the one and only place whose borders touches four other districts | +","उत्तर प्रदेश का सोनभद्र जिला देश का एक मात्र ऐसा जिला है जिसकी सीमाएँ सर्व चार प्रदेशों को छूती है। +","uttar pradesh ka sonabadra district one ka ek only aesa district hai jiski simaen sarv char prdeshon ko chhooti hai. +",neutral,neutral,neutral +"However, the suit was filed immediately thereafter, without waiting for two months +","हालाँकि मुकदमा तुरंत ही दायर कर दिया गया था बिना दो महीने इंतज़ार करे ही. +","halanki suit turnt hi dayar kar diya gaya tha bina do months intazar kare hi +",neutral,neutral,neutral +"Dr. Ambedkar was at pains to emphasise that the new republic would be a ""Union” of States, as opposed to a"" Federation” of States. The States would have no right to secede. +","डॉ. अंबेडकर ने बहुत परिश्रम से यह बताने का प्रयास किया था कि नया गणतंत्र राज्यों के ‘परिसंघ’के बजाय राज्यों का ‘संघ’ होगा। राज्यों को अलग होने का अधिकार नहीं होगा। +","pains ambedkar ne bahut parishram se yah batane ka pryas kiya tha ki new republic states ke parisngh ke bajay states ka union hoga. states ko alag hone ka right nahin hoga. +",negative,negative,negative +"Please accept, Excellency, my good wishes for your personal health and well-being, as well as for the progress and prosperity of the friendly people of the Republic of Equatorial Guinea. +","कृपया अपने व्यक्तिगत स्वास्थ्य तथा कुशलता और भूमध्यवर्ती गिनी गणराज्य की मैत्रीपूर्ण जनता की प्रगति और समृद्धि के लिए मेरी शुभकामनाएं स्वीकार करें। +","please apne good health tatha kushalta aur equatorial guinea republic ki friendly people ki progress aur prosperity ke lie meri wishes svikar karen. +",positive,positive,positive +"With such modes and conventions ruling the stage, it is plausible to assume further that playwrights started preparing their scripts suitably and incorporated directives for acting and representation. +","मंचन को नियंत्रित करना भी संगत होगा कि नाटककार तदनुसार अपनी पांडुलिपियाँ तेयार करने लगे होंगे तथा अभिनय और प्रस्तुतीकरण के निर्देशों का समावेश करने लगे होंगे। +","scripts ko niyntrit karna bhi sngat further ki playwrights tadnusar apni pandulipiyan teyar karne such honge tatha stage aur representation ke directives ka incorporated karne such honge. +",neutral,neutral,neutral +"He commenced writing it on August 2, 1888, completed it on September 9, 1888, and released it in December. +","दूसरी अगस्त सन् 1888 को लिखनी शुरु की और 9 सितम्बर सन् 1888 को उसे पूर्ण किया तथा दिसम्बर में प्रकाशित किया। +","doosri agast san 1888 ko commenced writing ki aur 9 sitambar san 1888 ko use poorn kiya tatha disambar men prkashit kiya. +",neutral,neutral,neutral +"and on the mountains, how they are firmly set up, +","और पहाड़ो की ओर कि कैसे खड़े किए गए? +","aur mountains ki or ki firmly set kie ge +",neutral,neutral,neutral +"Technologies that enable efficient use of biomass are becoming prevalent in rural areas. +","जैव ईंधन के प्रभावी उपयोग को सुरक्षित करती प्रौद्योगिकियाँ ग्रामीण क्षेत्रों में फैल रहीं हैं। +","technologies eendhan ke efficient use ko surakshit karti praudyogikiyan rural areas men phail rahin hain. +",positive,positive,positive +"The file does not appear to be a playlist +","यह फ़ाइल प्लेलिस्ट नहीं दिखता है +","yah file playlist nahin dikhta hai +",neutral,neutral,neutral +"Pakistani territory of today has been witness to many cultures +","आज का पाकिस्तानी भूभाग कई संस्कृतियों का गवाह रहा है। +","aaj ka pakistani territory kee cultures ka witness raha today +",neutral,neutral,neutral +"On GRETIL thousands of Sanskrit text in various encoding. GRETIL +","पर सहस्रों संस्कृत ग्रन्थ अनेक स्रोतों से अनेक इनकोडिंग में +","par gretil sanskrit text various sroton se various inkoding men +",neutral,neutral,neutral +"He instilled the core values of this organization, the three I’s i. e. industry, impartiality and integrity in the organization. +","उन्होंने इस संगठन में तीन प्रमुख मूल्यों परिश्रम, निष्पक्षता और ईमानदारी का समावेश किया। +","unhonne is sngathan men tin prmukh moolyon parishram, impartiality and integrity ka samavesh kiya. +",positive,positive,positive +"This has happened in India, too. +","ऐसा भारत में भी हुआ है। +","happened in india bhi huaa hai. +",neutral,neutral,neutral +"Because over here, on this line, let 's take +","क्योंकि अधिक यहाँ, इस पंक्ति पर, चलो ले +","kyonki adhik yahan, is line par, chalo le +",neutral,neutral,neutral +"The first gurus were Chunakkara Achutha Varier and Sankara Varier. +","प्रथम गुरु चुनक्करा अच्युत वारियर और शंकर वारियर रहे। +","first gurus chunakkra achyut variyar aur sankara variyar rahe. +",neutral,neutral,neutral +"Northeastern India The area covering the Indian States of Assam, Arunachal Pradesh, Meghalaya, Manipur and Tripura, and neighbouring areas of Bangladesh and Burma are one of the most earthquake - prone regions of the world. +","यह क्षेत्र, भारतीयक राज्यों यथा असम, अरूणाचल प्रदेश, मेघालय, मणिपुर, तथा त्रिपुरा एवं निकटवर्ती बांग्लादेश तथा वर्मा को आच्छादित करता है, जो विश्व का सर्वाधिक भूकंप प्रभावित क्षेत्र है। +","yah kshetr, bhartiyak rajyon yatha asam, aroonachal prdesh, meghalay, manipur, tatha tripura evn nikatavarti bangladesh tatha varma ko aachchhadit karta hai, jo vishv ka sarvadhik bhooknp prbhavit kshetr hai. +",neutral,neutral,neutral +"You are now connected to the WiMAX network. +","आप अभी WiMAX संजाल से कनेक्टेड हैं. +","aap abhi WiMAX network se connected hain +",neutral,neutral,neutral +"Loan amount up to Rs. 7. 50 lacs: 10 years. +","रु. 7.50 तक की ऋण के लिए: 10 वर्ष +","amount 750 tak ki loan ke lie : 10 years +",neutral,neutral,neutral +"The magicians said: ""Moses, will you throw down or shall we be the first to throw?"" +","ग़रज़ जादूगरों ने कहा (ऐ मूसा) या तो तुम ही (अपने जादू) फेंको और या ये कि पहले जो जादू फेंके वह हम ही हों +","raz magicians ne kaha ae moses ya to tum hi apne first phenko aur ya ye ki pahle jo first phenke vah ham hi hon +",neutral,neutral,neutral +"ATAL BIHARI VAJPAYEE: SELECTED SPEECHES Firstly, it helps correct a grave distortion that has taken place in public consciousness. +","पहला, इससे जन-चेतना में आने वाली एक गंभीर विकृति को दूर करने में मदद मिलती है। +","pahla , isse jan-chetna men aane place ek grave distortion ko door karne men public milti atal +",neutral,neutral,neutral +"View the output produced by the last executed command +","अंतिम कार्यान्वित कमांड द्वारा उत्पादित आउटपुट देखेंFile +","last executed command dvara utpadit output dekhenFile +",neutral,neutral,neutral +"It is divided into six parts , five of which deal with cosmic matters . +","यह छह भागों में विभक़्त है जिनमें से पांच में ब्रह्मांड से संबंधित विषयों पर चर्चा की गई है . +","yah chhah bhagon men vibhat hai jinmen se deal with cosmic se snbndhit vishyon par charcha ki gee hai +",neutral,neutral,neutral +"Split Mode (Equal Split) +","स्प्लिट मोड (बराबर स्प्लिट) +","split mode equal split +",neutral,neutral,neutral +"Why give BCG vaccine only on the left upper arm? +","बीसीजी का टीका केवल बाईं भुजा पर ऊपर क्यों लगाया जाता है? +","bisiji ka tika left upper arm par oopar kyon lagaya jata hai +",neutral,neutral,neutral +"It was karthik month when the candle was lit +","कार्तिक मास की सघन काली अमावस्या की वह रात्रि दीयों की रोशनी से जगमगा उठी। +","kartik month ki saghan kali amavasya ki vah ratri candle ki roshni se jagamga uthi. +",neutral,neutral,neutral +"And if terrorist is impolite, adjectives such as Islamist, Islamic, and Muslim become unmentionable. My blog titled “Not Calling Islamism the Enemy ” provides copious examples of this avoidance, along with its motives. In short, those who would replace War on Terror with A Global Struggle for Security and Progress imagine this linguistic gambit will win over Muslim hearts and minds. +","और यदि आतंकवादी असभ्य हैं तो इस्लामवादी, इस्लामी और मुस्लिम का उल्लेख करने से परहेज किया जाता है। मेरे ब्लाग Not calling Islamism the Enemy में इस बात के उदाहरण दिये गये हैं कि इससे परहेज क्यों किया जाता है और इसका उद्देश्य क्या है? संक्षेप में जो लोग आतंक के विरुद्ध युद्ध को सुरक्षा और विकास के लिये वैश्विक संघर्ष के रूप में नया नाम देना चाहते हैं उन्हें कल्पना है कि इस प्रकार भाषा बदल कर वे मुस्लिम ह्रदय और मस्तिष्क को विजित कर सकेंगे। +","aur yadi terrorist asabhy hain to islamist , islamic aur muslim ka short karne se avoidance kiya jata islamism mere blog gambit calling Islamism the Enemy men is bat ke udaharan diye gaye hain ki isse avoidance kyon kiya jata hai aur iska uddeshy kya hai snkshep men jo log terror ke viruddh war ko security aur progress ke liye vaishvik struggle ke roop men naya nam dena chahte hain unhen kalpna hai ki is prkar linguistic badal kar ve muslim hearts aur minds ko vijit kar sakenge. +",negative,negative,negative +"Then as for him whose good deeds are preponderant, these are the successful. +","फिर जिनके पलड़े भारी हुए तॊ वही हैं जो सफल। +","phir good deeds bhari hue t vahi hain jo good +",positive,positive,positive +"budha 's birthday is still conducted in theravada countries and his mother got death after 7 days of his birth +","बुद्ध का जन्म दिन व्यापक रूप से थएरावदा देशों में मनाया जाता है उनकी माता का उनके जन्म के सात दिन बाद निधन हो गया था। +","buddh ka birthday death vyapak roop se theravada countries men manaya jata hai unki mother ka unke birthday ke sat death bad budha ho gaya tha. +",negative,negative,negative +"Drayage from port to warehouse is borne by the importer. +","बन्दरगाह से गोदाम तक माल की ढुलाई का व्यय आयातक द्वारा वहन किया जाता है। +","port to warehouse tak mal ki dhulaee ka vyay aayatak dvara vahan kiya jata hai. +",neutral,neutral,neutral +"Central European (_ MacCE) +","मध्य यूरोपीय (_ MacCE) +","central european _ MacCE +",neutral,neutral,neutral +"Thus did a frustrated, enraged, and powerless people overwhelm their authorities and target close-by innocents. +","इस प्रकार शक्तिहीन, कुण्ठित, क्रोधित लोगों ने अपने अधिकारियों पर गुस्सा दिखाया तथा अपने निकट के निर्दोष लोगों को निशाना बनाया. +","is prkar shaktihin, kunthit, krodhit logon ne apne adhikariyon par gussa dikhaya tatha apne nikat ke nirdosh logon ko nishana banaya +",negative,negative,negative +"to the focus points and saying it 's a constant. +","यह एक निरंतर ध्यान केंद्रित अंक और कह रही करने के लिए है। +","yah ek constant dhyan focus points aur kah rahi karne ke lie focus +",neutral,neutral,neutral +"all powered on that coal. +","साब कोयले की ताकत पे खड़े हुए +","powered coal ki takat pe khare hue +",neutral,neutral,neutral +"The Weights and Measures unit in the Ministry of Consumer Affairs, Food and Public Distribution is the nodal agency for all activities relating to the subject. +","नागरिक आपूर्ति और उपभोक्ता मामले तथा सार्वजनिक वितरण मंञालय में माप-तोल निदेशालय इस विषय से संबंधित सभी गतिविधियों को देखने वाली प्रमुख एजेंसी हैं। +","nagrik aapoorti aur upbhokta mamle tatha sarvajnik vitaran weights and measures nideshalay is vishay se snbndhit sabhi gatividhiyon ko dekhne vali prmukh ejensi hain. +",neutral,neutral,neutral +"Recognizing this mantra of statecraft, Karnataka pursues the deepening of bond between the government and the governed. +","शासनकला के इस मंत्र को पहचानते हुए, कर्नाटक द्वारा शासन और शासित के बीच संबंधों को घनिष्ठ बनाने का प्रयास किया जा रहा है। +","shasanakla ke is mntr ko pahchante hue, karnatak dvara shasan aur shasit ke bich snbndhon ko ghanishth banane ka pryas kiya ja raha hai. +",neutral,neutral,neutral +"So 8 is 2 times 2 times 2. +","तो 8 होता है 2 गुना 2 गुना 2 +","to 8 hota hai 2 times 2 times 2 +",neutral,neutral,neutral +"Ever since Mamata broke away to form the Trinamool in 1997 , there has been a string of desertions from the Congress . +","ममता ने 1997 में पार्टी से अलग होकर तृकां बनाई थी तबसे पार्टी से नेताओं के जाने का सिलसिल जारी है . +","mamata ne 1997 men parti se alag hokar trinamool banaee thi tabse parti se congress ke jane ka string jari hai +",negative,negative,negative +"The Indian Council of Cultural Relations carried on its role of acting as a cultural ambassador for the country. +","सांस्कृतिक सम्बन्ध भारतीय सांस्कृतिक सम्बन्ध परिषद देश के सांस्कृतिक दूत की भूमिका निभा रही है। +","cultural relations bhartiy cultural relations parishad desh ke sanskritik doot ki bhoomika nibha rahi hai. +",neutral,neutral,neutral +"They were compelled to pay many illegal dues and cesses and were often required to perform forced labour or begar . +","उन्हें न केवल बहुत से गैरकानूनी कर और महसूल देने को मजबूर किया जाता बल्कि उनसे बेगार भी करायी जाती थी . +","unhen n keval bahut se gairkanooni kar aur mahsool compelled to pay kiya jata perform forced labour bhi karayi jati thi +",negative,negative,negative +"SLR investments amounted to 49938 crore where as non - SLR investments stood at 60746 crore. +","एक ओर जहाँ सांविधिक चलनिधि अनुपात (एसएलआर) में निवेश की राशि 49938 करोड़ थी वहीं दूसरी ओर गैर-सांविधिक चलनिधि अनुपात में निवेश की राशि 60746 करोड़ रही. हाल +","ek or jahan sanvidhik chalnidhi anupat eselaar men nivesh ki rashi 49938 karor thi vahin doosri or gair-sanvidhik chalnidhi anupat men nivesh ki rashi 60746 karor rahi hal +",neutral,neutral,neutral +"In an irritated voice, they said, +","एक परेशान आवाज़ में, उन्होंने कहा कि, +","ek irritated voice men, unhonne kaha ki, +",negative,negative,negative +"I shall not , however , attempt to infer that these murders must have been previously sanctioned by the prisoner ; mere inference on such a point cannot be accepted in a court of justice . +","बहरहाल , मैं यह अनुमान नहीं लगाना चाहता था कि बंदी ने पहले ही इन हत्याओं को मंजूरी दी थी या नहीं , क्योंकि न्याय की अदालत में सिर्फ ऐसे अनुमान को स्वीकार नहीं किया +","baharhal , main yah anuman nahin lagana chahta tha ki bndi ne pahle hi in attempt to infer di thi ya nahin , kyonki court of justice men sirph aese anuman ko svikar nahin kiya +",negative,negative,negative +"Could not transfer data to window +","डाटा को खिड़की पर स्थानान्तरित किया जा सका +","data to window par transfer kiya ja saka +",neutral,neutral,neutral +"Mark the selected messages as having been read +","चयनित संदेश पढ़े गए के रूप में चिह्नित करें +","selected messages pae ge ke roop men chihnit karen +",neutral,neutral,neutral +"User for login if not current user. +","उपभोक्ता का नाम बताएं अगर आप वर्तमान उपभोक्ता नही है +","user ka nam bataen agar aap current user nahi hai +",neutral,neutral,neutral +"Microscope was used to observe the tissue. +","ऊतकों को देखने के लिए सूक्ष्मदर्शी प्रयोग किया गया +","tissue ko dekhne ke lie microscope pryog kiya gaya +",neutral,neutral,neutral +"Habitat They live near water in open tree - and shrub - grasslands. +","निवास: ये पेड़ और घास वाले खुले मैदानों में रहते हैं। +","live: ye per aur ghas vale khule maidanon live near water +",neutral,neutral,neutral +"The magicians said: ""Moses, will you throw down or shall we be the first to throw?"" +","ग़रज़ जादूगरों ने कहा (ऐ मूसा) या तो तुम ही (अपने जादू) फेंको और या ये कि पहले जो जादू फेंके वह हम ही हों +","raz magicians ne kaha ae moosa ya to tum hi apne jadoo phenko aur ya ye ki pahle jo jadoo phenke vah ham hi hon +",neutral,neutral,neutral +"Now We have sent down to you a Book wherein is your Remembrance; will you not understand? +","हमने तो तुम लोगों के पास वह किताब (कुरान) नाज़िल की है जिसमें तुम्हारा (भी) ज़िक्रे (ख़ैर) है तो क्या तुम लोग (इतना भी) समझते +","hamne to tum logon ke pas vah kitab kuran nazil ki hai jismen tumhara bhi zikre air hai to kya tum log itna bhi samajhte +",neutral,neutral,neutral +"that 's the same thing as multiplying by +","कि से गुणा करने के रूप में एक ही बात है +","ki se multiplying karne ke roop men ek hi thing hai +",neutral,neutral,neutral +"Trap shooter Anwar Sultan 's family complains that he has grown silent and introspective . +","ट्रैप शूटर अनवर सुल्तान के परिवार की शिकायत है कि वे बेहद शांत रहने लगे हैं . +","trap shooter anavar sultan ke family ki shikayat hai ki ve behad silent rahne lage hain +",negative,negative,negative +"And We gave to Abraham, Isaac and Jacob - all [of them] We guided. And Noah, We guided before; and among his descendants, David and Solomon and Job and Joseph and Moses and Aaron. Thus do We reward the doers of good. +","और हमने इबराहीम को इसहाक़ वा याक़ूब (सा बेटा पोता) अता किया हमने सबकी हिदायत की और उनसे पहले नूह को (भी) हम ही ने हिदायत की और उन्हीं (इबराहीम) को औलाद से दाऊद व सुलेमान व अय्यूब व यूसुफ व मूसा व हारुन (सब की हमने हिदायत की) और नेकों कारों को हम ऐसा ही इल्म अता फरमाते हैं +","aur hamne ibrahim ko isha va yaoob sa beta pota ata kiya hamne sabki hidayat ki aur unse pahle nooh ko bhi ham hi ne hidayat ki aur unhin ibrahim ko aulad se daood v suleman v ayyoob v yoosuph v moosa v harun sab ki hamne hidayat ki aur nekon karon ko ham aesa hi ilm ata pharmate hain +",positive,positive,positive +"""As to these folk, - the cult they are in is (but) a fragment of a ruin, and vain is the (worship) which they practise."" +","“निश्चय ही वह लोग लगे हुए है, बरबाद होकर रहेगा। और जो कुछ ये कर रहे है सर्वथा व्यर्थ है। "" +","worship hi vah log lage hue hai, ruin hokar rahega. aur jo kuchh ye kar rahe hai sarvtha vyarth hai. +",negative,negative,negative +"Purchasing of commodities in the market is such a way that the buyers are in a position to have control over the price. +","बाजार में निहित स्वार्थों वाले व्यक्तियों द्वारा माल की इस प्रकार खरीद करना जिससे वे बाजार पर मूल्य नियन्त्रण स्थापित करने में सफल हो जाएं। +","market men nihit svarthon vale vyaktiyon dvara commodities ki is way purchasing karna jisse ve market par price control sthapit karne men saphal ho jaen. +",neutral,neutral,neutral +"Uncus is any hook - shaped process or part +","अंकुश एक हुक आकारीय प्रक्रिया अथवा भाग है। +","hook ek uncus shaped process athva part hai. +",neutral,neutral,neutral +"Nematodes are also known as nema. +","सूत्रकृमि सूत्रक या नेमा के रूप में भी जाने जाते हैं +","nematodes sootrak ya nema ke roop men bhi jane jate hain +",neutral,neutral,neutral +"he is linking up something very creative. +","ये कुछ बेहद रचनात्मक कर रहे हैं । +","ye kuchh linking creative kar rahe hain . +",positive,positive,positive +"I think it starts household by household, under the same roof. +","मैं सोचती हूँ यह घर से शुरू होती है, एक ही छत के नीचे। +","household by household yah ghar se shuroo hoti hai, ek hi chhat ke niche. +",neutral,neutral,neutral +"I usually get up at eight o 'clock. +","मैं आमतौर आठ बजे सोकर उठता हूँ। +","main aamtaur aath baje sokar uthta hoon. +",neutral,neutral,neutral +"Our immediate aim should be to eradicate communicable diseases and control the non-communicable ones. +","हमारा तात्कालिक लक्ष्य संचारी बीमारियों का उन्मूलन तथा गैर-संचारी बीमारियों पर नियंत्रण होना चाहिए। +","ones immediate aim communicable diseases ka unmoolan tatha gair-snchari diseases par niyntran hona chahie. +",neutral,neutral,neutral +"A plugin sending events to Zeitgeist +","जेटगीइस्ट में कार्यक्रम भेजने के लिए प्लगइन +","sending events karyakram bhejne ke lie plugin +",neutral,neutral,neutral +"- Leonardo da Vinci (1452 - 1519), Italian Artist, Composer and Scientist - +","लेओनार्दो दा विंची (१४५२-१५१९), इतालवी कलाकार, संगीतकार एवं वैज्ञानिक +","leonardo da vinci १४५२-१५१९ , italian artist , composer evn scientist +",neutral,neutral,neutral +"Split Mode (Equal Split) +","स्प्लिट मोड (बराबर स्प्लिट) +","split mode brabar split +",neutral,neutral,neutral +"Singan, the husband of the Kuratti, now comes in search of her. +","अब कुरत्ती का पति सिंगन उसे ढुंढता हुआ आता है। +","ab kuratti ka pati singan use dhundhta huaa aata husband +",neutral,neutral,neutral +"If I add 2, I get 30. If I add 3, I get 31. +","तो मुझे 29 मिलता है, यदि 2 जोड़ता हूँ तो 30,3 जोड़ता हूँ तो 31. +","to i 29 milta hai , yadi 2 jorta hoon to 30,3 jorta hoon to 31 +",neutral,neutral,neutral +"All these forms have their own specialised areas of operating and organising business activities. +","इन सभी रूपों का परिचालन एवं व्यापार कार्यकलाप आयोजित करने के विशिष्टा क्षेत्र हैं। +","in sabhi areas of operating evn organising business activities karne ke vishishta business activities +",neutral,neutral,neutral +"He gone to Kerodemal College of Delhi University, where he taken Science Graduate Degree. +","उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्वविद्यालय के किरोड़ीमल कॉलेज चले गए जहां इन्होंने विज्ञान स्नातक की उपाधि प्राप्त की। +","unhonne bad adhyayan karne ke lie ye delhi university ke kirorimal klej chale ge jahan science graduate degree ki upadhi prapt ki. +",neutral,neutral,neutral +"The famous 'Chauri Chaura' and 'Meerut conspiracy' case are few cases wherein this Court delivered memorable judgments upholding the concept of liberty. +","प्रसिद्ध चौरी-चौरा तथा मेरठ षडयंत्र कुछ ऐसे मामले हैं जिनमें न्यायालय ने स्वतंत्रता की अवधारणा बनाए रखते हुए स्मरणीय निर्णय दिए। +","prsiddh chauri-chaura tatha merath shadyntr kuchh aese mamle hain jinmen nyayalay ne svtntrta ki avdharna banae rakhte hue delivered memorable judgments +",neutral,neutral,neutral +"Wait until we are told to show the window before executing the command +","कमांड चलाने से पहले इंतजार करें जब तक कि विंडो दिखाने के लिए कहा जाए +","command chalane se pahle wait karen jab tak ki window dikhane ke lie kaha jae +",neutral,neutral,neutral +"You may bring up to two witnesses to the hearing . +","आप अधिक से अधिक सुनवाई में दो गवाह ला सकते हैं . +","aap adhik se adhik hearing men do witnesses la sakte hain +",neutral,neutral,neutral +"And so as these elements come together, +","और इस तरह ये सभी एक साथ होकर, +","aur is tarah ye sabhi ek sath hokar, +",neutral,neutral,neutral +"You can expect to receive a visit from your health visitor: +","आप अपेक्षा कर सकते है कि आपका आरोग्य अधिकारी आपको मिलने के लिए आये ः | +","aap expect kar sakte hai ki health visitor expect to receive ke lie visit a +",neutral,neutral,neutral +"I got confirmation for this post. +","मेरी इस पोस्ट पर पुष्टि हो गई है। +","meri is post par confirmation ho gee hai. +",neutral,neutral,neutral +"I wonder if I could rightly call it a meeting. +","पर इसको सभा कहा भी जाए या नहीं? +","par isko meeting kaha bhi jae ya nahin +",neutral,neutral,neutral +"is an extension of the distance formula, which is really just +","दूरी फार्मूला है, जो वास्तव में सिर्फ है का विस्तार है +","distance formula hai, jo vastav men sirph hai ka extension hai +",neutral,neutral,neutral +"Payment of property tax, electricity bills and water bills of colonies and office premises bills of vendors +","कालोनियों और कार्यालय परिसरों और प्रधान कार्यालय का संपत्ति कर, बिजली के बिलों, पानी के बिलों और विक्रताओं के बिलों का भुगतान +","colonies and office parisron aur prdhan karyalay ka snpatti kar, payment of property, pani ke bilon aur vikrtaon ke bilon ka bhugtan +",neutral,neutral,neutral +"You mustn 't deceive yourself in a serious matter like this. +","लेकिन इतने बड़े महत्व के मामले में यों अपनी आँखों में धूल डालने की कोशिश न कर। +","lekin itne bare matter ke mamle men yon apni aankhon men deceive dalne ki koshish n kar. +",negative,negative,negative +"There are many particles in air which can harm the health of plans and animals (including humans) or can damage their eyesight. These are produced due to natural process and human activities. The particles not found in the air naturally or or more frequently or different than generic particles are called as pollutants. +","वायु में बहुत से तत्त्व होते हैं जो पौधों और पशुओं (मानव समेत) का स्वास्थ्य कर सकते हैं या नजर ख़राब कर सकते हैं यह प्राकृतिक प्रक्रियाओं तथा मानव गतिविधियों दोनों से उत्पन्न होते हैं. वायु में प्राकृतिक रूप से नहीं पाए जाने वाले तत्व या अधिक सांद्रता के साथ या सामान्य से अलग तत्वों को प्रदूषक कहा जाता है. +","air men bahut se tattv hote hain jo paudhon aur plans many particles ka health kar sakte hain ya najar rab kar sakte hain yah natural prakriyaon tatha many activities donon se utpann hote hain air men natural roop se nahin pae jane vale tatv ya adhik sandrta ke sath ya generic se different tatvon ko prdooshak kaha jata hai +",negative,negative,negative +"Danaus Umniace is another common butterfly of the plains, with black wings, marked with bluish - white streaks. +","मैदानों की दूसरी सामान्य तितली डेनॉस लिम्निएस है जिसके काले पंखों पर नीलाभ-सफेद रेखाएं होती हैं। +","maidanon ki doosri common butterfly dens limnies hai jiske kale pnkhon par nilabh-sphed rekhaen hoti hain. +",neutral,neutral,neutral +"This called for an additional capacity of about 18 million tonnes, raising the total capacity to 43 million tonnes in 1980 - 85. +","इसका अर्थ था लगभग 180 लाख टन की अतिरिकत क्षमता इससे सन् 1980-85 में कुल क्षमता बढ़ाकर 430 लाख हो जायेगी. +","iska arth tha tonnes 180 total tan ki atirikat additional isse san 1980-85 men kul additional baakar 430 total ho jayegi +",neutral,neutral,neutral +"Thus decision to provide following facilities to jail inmates was taken: +","अतः जेल के कारावासियों को निम्नलिखित सुविधाएं प्रदान करने का निर्णय लिया गयाः +","ata facilities to jail ko provide following facilities karne ka nirnay liya gayaa +",neutral,neutral,neutral +"I am extremely happy that Raipur Airport has been named after the saint / philosopher and visionary Swami Vivekananda. After Kolkata, Raipur is the place Swamiji spent the largest number of years of his life. +","मुझे यह जानकर बहुत खुशी हुई है कि रायपुर हवाई अड्डे का नाम संत/दार्शनिक तथा स्वपनद्रष्टा स्वामी विवेकानंद के नाम पर रखा गया है। +","i yah janakar bahut khushi huee hai ki raipur airport adde ka nam sntdarshnik swamiji svapanadrashta swami vivekananda ke nam par place gaya number +",positive,positive,positive +"Underline color for misspelled words when using inline spelling. +","इनलाइन वर्तनी प्रयोग के दौरान गलत वर्तनी वाले शब्द रंग से रेखांकित करें. +","underline spelling pryog ke dauran galat spelling vale words color se rekhankit karen +",neutral,neutral,neutral +"% s,% d%% done,% s remaining +","% s,% d%% संपन्न,% s शेषशेष +","s, d snpann, s remaining +",neutral,neutral,neutral +"The trained phone operators can fill in your form over the telephone. +","फोन पर प्रशिक्षित आप्रेटरज़ क्लेम फार्म भी भर सकते हैं। +","telephone par trained phone operators pharm bhi bhar sakte hain. +",neutral,neutral,neutral +"He could earn Rs. 41, 700 from sale of 275 kg. worms (at Rs. 150 / kg.) and Rs. 11, 500 from the sale of 23 q. compost at Rs. 500 / q +","उन्होंने 275 किलो कीटों के विक्रय से (150 रुपये/किलो की दर से) 41,700 रुपये कमाए तथा 500 रुपये/क्विंटल की दर से 23 क्विंटल कम्पोस्ट बेचकर 11,500 रुपये कमाए। +","unhonne 275 kilo kiton ke vikray se 150 rupyekilo ki dar se 41,700 rupye kamae tatha 500 rupyekvintal ki dar se 23 kvintal kampost bechakar 11,500 rupye kamae. +",neutral,neutral,neutral +"going to be aligned at the center of the cell. +","कोशिका के केंद्र में पंक्ति बद्ध होंगे. +","cell ke center men pnkti baddh honge +",neutral,neutral,neutral +"Show the properties and metadata of the selected image +","चयनित छवि की मेटाडेटा व गुण दिखाएँ +","chaynit image ki properties v gun dikhaen +",neutral,neutral,neutral +"An institution which provides academic education +","ऐसी संस्था जो शात्रीय शिक्षा उपलब्ध कराती है +","aesi institution jo academic education upalabdh karati hai +",neutral,neutral,neutral +"I got up and, taking hold of his bloodstained clothes, pulled his leg out. +","मैं उठी और खून से सने उसके कपडों को पकड़ उसकी टांग ऊपर उठा आयी। +","i uthi aur khoon se bloodstained uske clothes ko pakar uski leg oopar utha aayi. +",neutral,neutral,neutral +"It was presented to the Legislative Council in 1856 and was passed in 1860. +","इसे 1856 में विधायी परिषद के समक्ष प्रस्तुत किया गया और1860 में पारित किया गया। +","ise 1856 men legislative council ke samaksh prastut kiya gaya aur1860 men parit kiya gaya. +",neutral,neutral,neutral +"Web Server to Predict Hub Proteins +","हब प्रोटीन की भविष्यवाणी हेतु वैब सर्वर +","hub proteins ki bhavishyvani hetu web server +",neutral,neutral,neutral +"In summer he spends most of his time in the verandah and in winter he basks in the early sun bare - bodied. +","वे अकसर गमीँ के दिनों में बरामदे में और सर्दियों में सुबह की धूप में नंगे बदन बैठे मिल जाएंगे। +","ve akasar gamin ke dinon men baramde men aur sardiyon men subah ki dhoop men nnge badan baithe mil jaenge. +",neutral,neutral,neutral +"These laboratories have a total annual analyzing capacity of 1. 31 lakh samples. +","इन प्रयोगशालाओं में वर्ष में 1.31 लाख नमूनों की जांच करने की क्षमता है। +","in pryogshalaon men varsh men 131 lakh samples ki janch karne ki kshamta total +",neutral,neutral,neutral +"yet there are over you watchers +","जबकि तुमपर निगरानी करनेवाले नियुक्त हैं +","jabki tumapar watchers karnevale niyukt hain +",neutral,neutral,neutral +"The Weights and Measures unit in the Ministry of Consumer Affairs, Food and Public Distribution is the nodal agency for all activities relating to the subject. +","नागरिक आपूर्ति और उपभोक्ता मामले तथा सार्वजनिक वितरण मंञालय में माप-तोल निदेशालय इस विषय से संबंधित सभी गतिविधियों को देखने वाली प्रमुख एजेंसी हैं। +","nagrik food aur weights mamle tatha public distribution ministry men map-tol measures is subject se snbndhit sabhi gatividhiyon ko dekhne vali prmukh nodal hain. +",neutral,neutral,neutral +"India exchanges mail with more than 217 countries by air and surface. +","भारत 217 से भी अधिक देशों के साथ स्थलीय और विमान सेवा द्वारा पत्रो का आदान-प्रदान करता है। +","india 217 se bhi adhik countries ke sath sthliy aur viman seva dvara patro ka aadan-prdan karta hai. +",neutral,neutral,neutral +"SLR investments amounted to 49938 crore where as non - SLR investments stood at 60746 crore. +","एक ओर जहाँ सांविधिक चलनिधि अनुपात (एसएलआर) में निवेश की राशि 49938 करोड़ थी वहीं दूसरी ओर गैर-सांविधिक चलनिधि अनुपात में निवेश की राशि 60746 करोड़ रही. हाल +","ek or jahan sanvidhik slr non eselaar men investments ki rashi 49938 crore thi vahin doosri or gair-sanvidhik slr non men investments ki rashi 60746 crore rahi hal +",neutral,neutral,neutral +"Harishchandra, however, submitted that if he be given half an hour, he could do it. +","परन्तु हरिश्चन्द्र का आग्रह था कि यदि उन्हें आध घण्टा का भी समय दिया जाए तो वह उसे याद कर लेंगे। +","parantu harishchandr ka aagrah tha ki yadi unhen aadh ghanta ka bhi samay diya jae to vah use yad kar lenge. +",neutral,neutral,neutral +"One of the historical structures in Mumbai used to be Governor 's residence. +","मुंबई में ऐतिहासिक संरचना जहां राज्यपाल निवास करते थे। +","mumbai men historical structures jahan governor residence karte the. +",neutral,neutral,neutral +"The whole film proceeds with computer graphics and animated figures. +","कंप्यूटर ग्राफिक्स और एनिमेटेड आंकड़े के साथ पूरी फिल्म आय. +","computer graphics and animated figures ke sath poori film aay +",neutral,neutral,neutral +"The prevailing colour of this breed is black and white. +","इस नस्ल का सामान्य रंग काला और सफेद होता है. +","is breed is black colour black and white hota hai +",neutral,neutral,neutral +"Auto Generate Assoc Accessors (Java) +","एसॉक एक्सेसर्स स्वचालित जनरेट करें (जावा) +","esk accessors auto generate karen java +",neutral,neutral,neutral +"Thus a binary series of numbers would be transmitted. +","इस प्रकार दिवचर श्रेणी की संख्याओं को प्रेषित किया जा सकता हैं। +","is prkar binary series of numbers ko preshit kiya ja sakta hain. +",neutral,neutral,neutral +"is an extension of the distance formula, which is really just +","दूरी फार्मूला है, जो वास्तव में सिर्फ है का विस्तार है +","distance formula hai , jo vastav men sirph hai ka extension hai +",neutral,neutral,neutral +"The process of arbitration that has to be followed compulsorily as per law. +","किसी मामले में पंचनिर्णय की प्रक्रिया जो कानूनन अनिवार्य रूप से पालन करनी होगी। +","kisi mamle men process of arbitration jo kanoonan anivary roop se palan karni hogi. +",neutral,neutral,neutral +"“ We have always supported the UDF and have a right to nominate those whom we believe will help us , ” says Monsignor Paul Kakkassery , the diocese 's spokesman . +","उनके प्रवक्ता मॉनसिग्नोर पॉल कक्कास्सेरी ने कहा भी , ' ' हमने हमेशा संलमो का समर्थन किया है.इसलिए हमें ऐसे लगों को मनोनीत करने का अधिकार है जिनके बारे में हमारा मानना है कि वे हमारी मदद करेंगे . ' ' +","unke pravakta mnsignor pl kakkasseri ne kaha bhi , hamne hamesha snlmo ka samarthan kiya haiislie hamen aese lagon ko manonit karne ka adhikar hai jinke bare men hamara manna hai ki ve hamari madad karenge +",positive,positive,positive +"In the year 1985-86, the erstwhile Ministry of Welfare was bifurcated into the Department of Women and Child Development and the Department of Welfare. +","वर्ष 1985-86 में पूर्ववर्ती कल्याण मंत्रालय को महिला एवं बाल विकास विभाग तथा कल्याण विभाग में विभक्त किया गया था। +","year 1985-86 men poorvavarti kalyan mntralay ko mahila evn bal vikas vibhag tatha kalyan vibhag men vibhakt kiya gaya tha. +",neutral,neutral,neutral +"The Pandiya King immediately fainted and died. +","पांडिय राजा उसी दम मूर्छित होकर गिर पड़े और मृत्यु ग्रस्त हो गये। +","pandiya raja usi dam moorchhit hokar gir pare aur mrityu grast ho gaye. +",negative,negative,negative +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","actor ka allocation par nazar rakhne ke lie clip region ko sets karen +",neutral,neutral,neutral +"He was with Washington University, St. Louis, Mo., USA from 1961 to 1971. +","वह 1961 से 1971तक अमेरिका के वाशिंगटन विश्वविद्यालय के साथ जुड़े रहे। +","vah 1961 se 1971tak amerika ke vashingatan university ke sath jure rahe. +",neutral,neutral,neutral +"The following clusters have been chosen for intervention: +","इस मदद हेतु निम्नांकित समूहों को चुना गया है +","is madad hetu intervention clusters ko chuna gaya hai +",neutral,neutral,neutral +"In Mumbai average annual temperature, and the average annual precipitation table +","मुंबई में औसत तापमान एवं वर्षण (प्रैसिपिटेशन) की सारणी +","mumbai men average temperature evn precipitation table ki sarni +",neutral,neutral,neutral +"II. Muslims Rejected Or will the door be shut in their face? American columnist Ralph Peters dismisses the first scenario: “Far from enjoying the prospect of taking over Europe by having babies, Europe's Muslims are living on borrowed time. … predictions of a Muslim takeover of Europe … ignore history and Europe's ineradicable viciousness.” Instead, depicting Europe as the place “that perfected genocide and ethnic cleansing,” he predicts its Muslims “will be lucky just to be deported,” and not killed. Claire Berlinski , in Menace in Europe: Why the Continent's Crisis Is America's, Too , implicitly agrees, pointing to the “ancient conflicts and patterns … now shambling out of the mists of European history ” which could well trigger violence. +","संक्षेप में पहला तर्क दर्शाता है कि मुसलमानों की सक्रियता और यूरोप की निष्क्रियता के कारण यूरोप का इस्लामीकरण होगा और अपने धिम्मी स्तर के साथ वह इस्लाम में धर्मान्तरित हो जायेगा। उच्च और निम्न धार्मिकता, उच्च और निम्न जन्म दर तथा उच्च और निम्न सास्कृतिक आत्मविश्वास के कारण यह सम्भव होगा। यूरोप एक खुला द्वार है जिसमें मुसलमान टहल रहे हैं। +","ii men first tark darshata hai ki muslims ki sakriyta aur s ki nishkriyta ke karan s ka columnist hoga aur apne dhimmi star ke sath vah history men dharmantrit ho jayega. uchch aur prospect , uchch aur janm ignore tatha uchch aur borrowed aatmvishvas ke karan yah crisis patterns s ek khula door hai jismen muslim genocide rahe takeover +",negative,negative,negative +"Just write your query on this postcard and send it to Google office via Snail Mail. +","आप अपनी पृच्छा इस पोस्टकार्ड पर लिखकर स्नेल मेल के द्वारा गूगल कार्यालय को भेज दें। +","aap apni query is postcard par likhakar snel snail ke dvara googal office ko bhej den. +",neutral,neutral,neutral +"They all < s > are major causes of serious illness or early death; +","गंभीर एवं जानलेवा बीमारियों के प्रमुख कारण हैं। +","serious evn s bimariyon ke major karan hain. +",negative,negative,negative +"And that 's the same thing as 0. 75x. +","जैसे 1X माइनस 0.25X के जैसे लिखा और वह समान चीज़ है जैसे 0.75X +","jaise 1X mainas 025X ke jaise likha aur vah same chiz hai jaise 075X +",neutral,neutral,neutral +"(ii) the Minister for Tuensang affairs shall deal with, and have direct access to the Governor on, all matters relating to the Tuensang district but he shall keep the Chief Minister informed about the same; +","(ii) त्युएनसांग कार्य मंत्री त्युएनसांग जिले से संबंधित सभी विषयों की बाबत कार्य करेगा और उनके संबंध में राज्यपाल के पास उसकी सीधी पहुँच होगी किंतु वह उनके संबंध में मुख्यमंत्री को जानकारी देता रहेगा; +","ii tyuensang kary mntri tyuensang jile se snbndhit sabhi vishyon ki babat kary karega aur unke snbndh men rajypal ke pas uski sidhi pahunch hogi kintu vah unke snbndh men mukhymntri ko jankari deta rahega +",neutral,neutral,neutral +"At the end of second act dialogue between Raja Sruthoson and the music composer Nanda mentions the name of Brahmadutt. +","दूसरे अंक के अंत मे राजा सुतसोम और गाथाकार नन्द की बातचीत है जिसमे भी ब्रह्रादत का उल्लेख होता है। +","doosre act ke end me raja brahmadutt aur gathakar nanda ki dialogue hai jisme bhi brahradat ka name hota second +",neutral,neutral,neutral +"8.Volunteers for assisting disabled persons and senior citizens +","8. निःशक्त तथा वरिष्ठ नागरिकों की सहायतार्थ स्वयं सेवक। +","8 disabled tatha senior citizens ki sahaytarth svyn sevak. +",neutral,neutral,neutral +"A bone which forms the front part of the skull housing the brain. +","एक अस्थि जो कपाल का अग्र भाग निर्मित करती है जिसमें मस्तिष्क होता है +","ek bone jo kapal ka agr forms the front hai jismen mastishk hota hai +",neutral,neutral,neutral +"All the sadhaks are one in the Mother; all meditate in the presence of the Mother. +","सभी श्री मां की उपस्थिति में ध्यान करते हैं। +","sabhi shri mother ki presence men meditate karte hain. +",neutral,neutral,neutral +"PRESIDENT OF INDIA TO INAUGURATE AN INTERNATIONAL CONVENTION ON HOMOEOPATHY TOMORROW, Rashtrapati Bhavan : 08.04.2016 +","भारत के राष्ट्रपति कल होमियोपैथी पर एक अंतरराष्ट्रीय अभिसमय का उद्घाटन करेंगे।, राष्ट्रपति भवन : 08.04.2016 +","president of india kal homiyopaithi par ek international convention ka udghatan karenge., president bhavan : 08042016 +",neutral,neutral,neutral +"Sales costs: Product inventory, raw materials, manufacturing equipment +","बिक्री लागतः उत्पाद सूची, कच्चा माल, निर्माण उपकरण +","product lagta product inventory, raw materials, manufacturing equipment +",neutral,neutral,neutral +"The place you go while you are staring at a computer that is processing something very slowly. +","वह स्थान जहाँ आप एक कंप्यूटर को घूर रहे हैं जबकि वह कंप्यूटर बहुत धीरे-धीरे कुछ प्रोसेसिंग कर रहा है। +","vah place jahan aap ek computer ko ghoor rahe hain jabki vah computer bahut dhire-dhire kuchh prosesing kar raha something +",neutral,neutral,neutral +"The complement of any maxterm is a minterm. +","किसी भी योगपद का पूरक एक गुणद होता है। +","kisi bhi minterm ka complement ek gunad hota hai. +",neutral,neutral,neutral +"Could not transfer data to window +","डाटा को खिड़की पर स्थानान्तरित किया जा सका +","data ko khirki par sthanantrit kiya ja saka +",neutral,neutral,neutral +"a Messenger from Allah, reciting from Purified Scrolls; +","(यानि) ख़ुदा के रसूल जो पाक औराक़ पढ़ते हैं (आए और) +","yani uda ke messenger jo reciting from purified hain aae aur +",neutral,neutral,neutral +"that 's the same thing as multiplying by +","कि से गुणा करने के रूप में एक ही बात है +","ki se multiplying karne ke roop men ek hi same hai +",neutral,neutral,neutral +"Nominal check of the attendance is advisable. +","उपस्थिति की नाममात्र जांच उचित है। +","attendance ki nominal check uchit check +",neutral,neutral,neutral +"So just to remind ourselves, 5 and 5 / 8 is the exact same thing +","तो खुद को याद दिलाने के लिए, 5 और 5/8 बिल्कुल एक ही +","to khud ko yad dilane ke lie, 5 aur 58 exact ek hi +",neutral,neutral,neutral +"when the earth shall be rocked +","जब धरती थरथराकर काँप उठेगी; +","jab earth tharathrakar kanp uthegi +",neutral,neutral,neutral +"There are cases in which the constituencies are more than 200 miles away from Lucknow. +","ऐसे भी निर्वाचन-क्षेत्र हैं, जो लखनऊसे दो सौ मीलसे भी ज्यादा दूर हैं। +","aese bhi constituencies hain, jo lakhnoose do sau milse bhi jyada door cases +",neutral,neutral,neutral +"Nearest - neighbor interpolation is an algorithm is used to map a screen pixel to the corresponding point on the texture map. +","निकटतम पड़ोसी-प्रक्षेप, एक कलन विधि (एल्गोरिथ्म) होती है, जो स्क्रीन के पिक्सेल को प्रतिचित्रण पर बिंदु के अनुरूप प्रतिचित्रतित करती है। +","nearest parosi-prakshep , ek algorithm vidhi map hoti hai , jo screen ke pixel ko prtichitran par point ke corresponding texture karti hai. +",neutral,neutral,neutral +"Why welding and why not computers? +","झाल लगाना की क्यों, कंप्यूटर क्यों नहीं? +","welding lagana ki kyon, computers kyon nahin +",neutral,neutral,neutral +"The President said that Legislative Assembly is the master of Executive in matters of taxation and finance. +","राष्ट्रपति ने कहा कि विधान सभा करारोपण तथा वित्त के मामले में कार्यपालिका की स्वामी है। +","president ne kaha ki legislative assembly taxation tatha finance ke mamle men executive ki master hai. +",neutral,neutral,neutral +"_ Apply filters to new messages in Inbox on this server +","इस सर्वर पर इनबाक्स में नए संदेश के लिए फिल्टर चलाएँ (_ A) +","is server par inbox apply ne messages ke lie filters chalaen _ A +",neutral,neutral,neutral +"It is divided into six parts , five of which deal with cosmic matters . +","यह छह भागों में विभक़्त है जिनमें से पांच में ब्रह्मांड से संबंधित विषयों पर चर्चा की गई है . +","yah chhah parts men deal hai jinmen se panch men cosmic se snbndhit matters par charcha ki gee hai +",neutral,neutral,neutral +"than about capturing a moment really. +","बजाय सच में एक पल को खींचने के | +","bajay sach men ek moment ko khinchne ke +",neutral,neutral,neutral +"And she conceived him, and she withdrew with him to a far place. +","फिर उसे उस (बच्चे) का गर्भ रह गया और वह उसे लिए हुए एक दूर के स्थान पर अलग चली गई। +","phir use us bachche ka garbh rah gaya aur vah use lie hue ek door ke place par alag chali gee. +",neutral,neutral,neutral +"A pangolin 's territory is around 3 square miles 8 sq km. +","पैंगोलिन का क्षेत्र लगभग आठ वर्ग किलोमीटर का होता है। +","paingolin ka kshetr lagabhag aath varg miles ka hota hai. +",neutral,neutral,neutral +"And what can make you know what is the Striking Calamity? +","और तुम्हें क्या मालूम कि क्या है वह खड़खड़ानेवाली? +","aur tumhen kya maloom ki kya hai vah kharakharanevali +",neutral,neutral,neutral +"A component of a chemical compound which is essential. +","किसी रासायनिक यौगिक का घटक जो आवश्यक होता है. +","kisi chemical compound ka component jo essential hota hai +",neutral,neutral,neutral +"(Unbelievers) whose eyes had been under a veil from remembrance of Me, and who had been unable even to hear. +","जिनके नेत्र मेरी अनुस्मृति की ओर से परदे में थे और जो कुछ सुन भी नहीं सकते थे +","jinke eyes meri remembrance ki or se veil men the aur jo kuchh unable bhi nahin sakte the +",neutral,neutral,neutral +"Central Excise, Customs and Service Tax, Patna +","केन्द्रीय उत्पाद शुल्क, सीमा शुल्क और सेवा कर, पटना +","central excise tax, sima customs and service kar, patna +",neutral,neutral,neutral +"City Civic Centre Locations (External website that opens in a new window) +","शहर नागरिक केंद्र स्थान (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","shahar civic centre locations bahri vebsait jo ek nee vindon website that opens +",neutral,neutral,neutral +"writing in the 1850s about how the railroad, the steam ship, +","कैसे रेल, स्टीमर के बारे में 1850 के दशक में लेखन, +","kaise rel , stimar ke bare men 1850 ke dashak men railroad , +",neutral,neutral,neutral +"In the moulded type a full human or animal figure is fashioned. +","ढलाई में मानव और पशुओं की पूरी आकृति बनायी जाती है। +","dhalaee men human or animal ki poori aakriti banayi jati hai. +",neutral,neutral,neutral +"Radhakrishnan returned to the Madras Presidency College in 1911. +","मद्रास प्रेसीडेंसी कॉलेज में राधाकृष्णन 1911 में लौटे। +","madras presidency college men radhakrishnan 1911 men laute. +",neutral,neutral,neutral +"“ Look ! ” he said . +","“ देखो ! ” उसने कहा । +","dekho ! s usne kaha . +",neutral,neutral,neutral +"A new idea with another turn of the logical machine revolts against it and breaks up the machinery, but A new idea with another turn of the logical machine revolts against it and breaks up the machinery, +","तब एक नया विचार इस तर्कसंगत यन्त्र की एक और प्रवृति को लिए हुए उसके विरुद्ध खड़ा हो जाता है और उस यन्त्र को तोड़-फोड़ देता है, किन्तु वह उसे इसलिए तो तोड़ता है कि अन्त में वह उसके स्थान पर एक दूसरी यांत्रिक प्रणाली की, किसी अन्य मत सिद्धान्त या आचार-पद्धति की स्थापना कर सके। +","tab ek naya vichar is tarksngat yantr ki ek aur prvriti ko lie hue uske viruddh khara ho jata hai aur us yantr ko tor-phor deta hai, kintu vah use islie to torta hai ki ant men vah uske sthan par ek doosri yantrik prnali ki, kisi any mat siddhant ya aachar-paddhti ki sthapna kar sake. +",neutral,neutral,neutral +"he is linking up something very creative. +","ये कुछ बेहद रचनात्मक कर रहे हैं । +","ye kuchh behad creative kar rahe hain something +",positive,positive,positive +"Mangle From: / To: headers in replies to replies +","जवाब के जवाब में द्वाराः/कोः हेडर्स बिगड़े +","replies ke replies men headers in replies +",neutral,neutral,neutral +"We have tried to correct them. +","हमने उन्हें सुधारने की कोशिश की है। +","hamne unhen correct ki koshish ki hai. +",neutral,neutral,neutral +"I think we have a problem in Mexico. +","मैं सोचता हूँ कि हमारे पास मेक्सिको में समस्या है | +","i sochta hoon ki hamare pas mexico men problem hai +",negative,negative,negative +"Long term loan for agricultural appliances is admissible. +","कृषि उपकरण के लिए दीर्घकालीन ऋण उपलब्ध हैं। +","agricultural appliances ke lie long loan upalabdh hain. +",neutral,neutral,neutral +"Renicapsule refers to the capsule in the kidney. +","अधिवृक्क-पिण्ड वृक्क में संपुटक को निर्दिष्ट करता है. +","adhikidney-pind kidney men capsule ko nirdisht karta hai +",neutral,neutral,neutral +"This is not the case . +","लेकिन यह बात नही है . +","lekin yah bat nahi hai +",neutral,neutral,neutral +"Doubt that anyone charged with and tried for the 7/7 attacks would receive a fair trial: 44 percent. +","44 प्रतिशत मुसलमानों को इस बात में संशय है कि 7 जुलाई के विस्फोटों के आरोपियों पर निष्पक्ष मुकदमा चल सकेगा. +","44 percent musalmanon ko is anyone men doubt hai ki 7 julaee ke attacks ke trial par fair mukadma chal sakega +",negative,negative,negative +"Tansen fell ill and it was two months before he could return to the court. +","लगातार दो महिने तक वह बीमार रहा। +","lagatar do months tak vah bimar raha. +",negative,negative,negative +"Nanalal was not merely a new signature but a new voice in modern Gujarati poetry. +","नानालाल गुजराती आधुनिक काव्य में एक नये हस्ताक्षर ही नहीं, एक नये स्वर भी थे। +","modern gujarati poetry kavy men ek naye hastakshar hi nahin, ek naye svar bhi the. +",neutral,neutral,neutral +"I am concerned with matters of consequence. +","मैं … मैं गंभीर व्यक्ति हूँ न, मुझे बेकार की बातों से कोई दिलचस्पी नहीं। +","i i matters vyakti hoon n , mujhe bekar ki baton se koee consequence nahin. +",neutral,neutral,neutral +"We need really to see it. And instead of looking at this, +","हमें वास्तव में इसे देखने की ज़रूरत है और इसे देखने की अपेक्षा +","hamen vastav men ise dekhne ki zaroorat hai aur ise dekhne ki apeksha +",neutral,neutral,neutral +"This was essentially Earth. Obviously, Earth got changed +","यह अनिवार्य रूप से पृथ्वी था। जाहिर है, पृथ्वी बदला मिल गया +","yah anivary roop se earth tha. jahir hai , earth badla mil gaya +",neutral,neutral,neutral +"User for login if not current user. +","उपभोक्ता का नाम बताएं अगर आप वर्तमान उपभोक्ता नही है +","user ka nam login agar aap current user nahi hai +",neutral,neutral,neutral +"He said, “O my son, do not relate your vision to your brothers, lest they plot and scheme against you. Satan is man 's sworn enemy. +","याक़ूब ने कहा ऐ बेटा (देखो ख़बरदार) कहीं अपना ख्वाब अपने भाईयों से न दोहराना (वरना) वह लोग तुम्हारे लिए मक्कारी की तदबीर करने लगेगें इसमें तो शक़ ही नहीं कि शैतान आदमी का खुला हुआ दुश्मन है +","yaoob ne kaha ae beta dekho bardar kahin apna khvab apne bhaeeyon se n dohrana varna vah log plot and scheme ki tadbir karne lagegen ismen to sha hi nahin ki shaitan aadmi ka khula huaa dushman hai +",negative,negative,negative +"The main plateaus are the Baghelkhand and the Chota Nagpur. +","इस क्षेत्र के प्रमुख पठार बघेलखंड तथा छोटा नागपुर हैं। +","is kshetr ke main plateaus baghelkhand tatha chhota nagpur hain. +",neutral,neutral,neutral +"Shortly after taking up the job, he was married in 1912 to Shivdayee, with whom he was betrothed since infancy. +","काम पर लगने के शीघ्र बाद ही 1912 मे शिवदाई के साथ उनका विवाह हो गया, जिसके साथ जन्म से ही उनकी मँगनी हो चुकी जीवन 19 थी। +","job par lagne ke shighr bad hi 1912 me shivdaee ke sath unka vivah ho gaya , jiske sath janm se hi unki mngni ho chuki jivan infancy thi. +",neutral,neutral,neutral +"A sudden involuntary contraction of one or more muscle +","अचानक होने वाला एक या अधिक मांसपेशियों का संकुचन +","sudden hone vala ek ya more muscle ka involuntary +",neutral,neutral,neutral +"We're going to go back to the moon ... 50 years later? +","हम चाँद पे फिर से जा रहे हैं - 50 साल बाद - +","ham moon pe phir se ja rahe hain - 50 years bad - +",neutral,neutral,neutral +"Everyday, she has to get up at 4 o’clock in the morning to cook for her husband who leaves at 5 o’clock in the morning to work at the industrial unit in neighbouring Gamharia town. Earlier she could barely see what she was grinding on the pestle stone. +","प्रतिदिन, उन्हें अपने पति के लिए भोजन तैयार करने के लिए प्रातः 4 बजे उठना पड़ता है, जो पास के गम्हारिया कस्बे में एक औद्योगिक इकाई में काम करने के लिए प्रातः 5 बजे घर से निकल पड़ते हैं। +","prtidin, unhen apne pati ke lie bhojan taiyar karne ke lie prata 4 baje uthna parta hai, jo pas ke gamhariya kasbe men ek audyogik ikaee men kam karne ke lie prata 5 baje ghar se nikal parte hain. +",neutral,neutral,neutral +"Dak Babu was absorbed in his work. +","डाक बाबू अपने काम में व्यस्त थे। +","dak babu apne kam men vyast the. +",neutral,neutral,neutral +"When they are cast into it they will hear it sighing, the while it boils +","जब वे उसमें डाले जाएँगे तो उसकी दहाड़ने की भयानक आवाज़ सुनेंगे और वह प्रकोप से बिफर रही होगी। +","jab ve usmen dale jaenge to uski daharne ki bhayanak aavaz sunenge aur vah prkop se biphar rahi hogi. +",neutral,neutral,neutral +"These were the ushnisa or turban, a pair of flywhisks, umbrella, sword, sandals, and the royal standard. +","ये थे; पगड़ी, चंवरों की जोड़ी, छतरी, खड़ग, चप्पल तथा राजसी ठाट-बाट से रहना। +","ye the turban, chnvron ki jori, umbrella, sword, chappal tatha rajsi that-bat se rahna. +",neutral,neutral,neutral +"The company 's new project employed 2500 people, including 300 expatriates and 2200 locals. +","कम्पनी की नई परियोजना में कुल 2500 लोगों में से 300 प्रवासी थे और बाकी 2200 लोग देशी। +","company ki nee pariyojna men kul 2500 locals men se 300 expatriates the aur baki 2200 log including +",neutral,neutral,neutral +"Notify when remote emails are queued +","जब रिमोट ई-मेल क़तारबद्ध हों तो सूचित करें +","jab remote emails are queued to soochit karen +",neutral,neutral,neutral +"A dvitala and hence ashtanga, or ashtavarga vimana of the same Nagara order, square from base to apex is illustrated in the incomplete Valaiyankuttai ratha facing east. +","उसी नागर श्रेणी का एक द्वितल और इसलिए अष्टांग या अष्टवर्ग, आधार से शिखर तक वर्गाकार विमान, पूर्वाभिमुख अपूर्ण वलैयांकुट्टई रथ के रूप में देखा जा सकता है। +","usi nagara shreni ka ek dvitala aur hence ashtanga ya ashtavarga , base se shikhar tak square viman , east incomplete valaiyankuttai ratha ke roop men dekha ja sakta hai. +",neutral,neutral,neutral +"Those who have gone before them belied, yet they did not reach a tenth of what We gave them; yet they belied My Messengers. And how was (My) rejection (their destruction)! +","और झूठलाया उन लोगों ने भी जो उनसे पहले थे। और जो कुछ हमने उन्हें दिया था ये तो उसके दसवें भाग को भी नहीं पहुँचे है। तो उन्होंने मेरे रसूलों को झुठलाया। तो फिर कैसी रही मेरी यातना! +","aur jhoothlaya un logon ne bhi jo unse pahle the. aur jo kuchh hamne unhen diya tha ye to uske dasven bhag ko bhi nahin pahunche hai. to unhonne mere rasoolon ko jhuthlaya. to phir kaisi rahi meri yatna! +",negative,negative,negative +"This called for an additional capacity of about 18 million tonnes, raising the total capacity to 43 million tonnes in 1980 - 85. +","इसका अर्थ था लगभग 180 लाख टन की अतिरिकत क्षमता इससे सन् 1980-85 में कुल क्षमता बढ़ाकर 430 लाख हो जायेगी. +","iska arth tha lagabhag 180 lakh tan ki atirikat kshamta isse san 1980-85 men kul additional capacity 430 lakh ho jayegi +",neutral,neutral,neutral +"your council's decisions on housing issues are more open and accountable to you; +","रिहाइशी मामलों के बारे में आपकी कौंसिल के फ़ैसलें अधिक सार्वजनिक होंगे और कौंसिल आपके सामने अधिक जवाब देह होगी | +","housing issues ke bare men aapki kaunsil ke decisions on housing honge aur kaunsil aapke samne adhik javab deh hogi +",neutral,neutral,neutral +"The Organisation has three Regional Headquarters i. e. Mumbai, Chennai, and Port Blair. +","इसके तीन क्षेत्रीय मुख्यालय, मुंबई, चेन्नई और पोर्ट ब्लेयर में हैं। +","iske tin regional headquarters, mumbai, chennee aur port blair men hain. +",neutral,neutral,neutral +"In 1895 she went to england for higher studies and along with studies she also wrote poetry. +","वे १८९५ में उच्च शिक्षा प्राप्त करने के लिए इंग्लैंड गईं और पढ़ाई के साथ-साथ कविताएँ भी लिखती रहीं। +","ve १८९५ men higher studies prapt karne ke lie inglaind geen aur paaee ke wrote poetry bhi likhti rahin. +",neutral,neutral,neutral +"They were as good as the babies in Taiwan +","वो ताइवान वाले शिशुओं जीतने अच्छे थे +","vo taiwan vale babies jitne good the +",positive,positive,positive +"she 's standing, those Rockports slightly apart, but grounded. +","वो खड़ी हैं, उनके रौकपोर्ट जूते एक-दूसरे से थोड़े दूर, पर ज़मीन पर अच्छी तरह जमे हुए. +","vo standing hain , unke rockports joote ek-doosre se thore door , par zamin par achchhi tarah jame hue +",neutral,neutral,neutral +"All data is encrypted with your sync passphrase +","सभी डेटा आपके समन्वयन पासफ़्रेज़ के साथ एन्क्रिप्ट किया जाएगा +","sabhi data aapke sync passphrase ke sath enkript kiya jaega +",neutral,neutral,neutral +"So sometimes you 'll say morula, +","तो कभी कभी आप morula कहता हूँ, +","to kabhi kabhi aap morula kahta hoon, +",neutral,neutral,neutral +"organs superficially appear to be similar and perform the same function. +","बाहरी दिखावे में अंग एक जैसे दिखें और एक ही प्रकार का कार्य कर रहे हों। +","bahri dikhave men organs ek jaise dikhen aur ek hi similar ka function kar rahe hon. +",neutral,neutral,neutral +"A Plugin to synchronize pictures' metadata with a GPS device +","जीपीएस उपकरण से छवि मेटाडाटा को सिंक्रोनाइज करने का एक प्लगइन +","pictures device se chhavi metadata ko sinkronaij karne ka ek plugin +",neutral,neutral,neutral +"These are gross and obvious examples but there are infinite and subtle gradations in the misunderstandings which can arise between people and the ways in which the law can tangle with traditional ways. +","यह सकल और स्पष्ट उदाहरण है, परंतु लोगों के बीच असंख्य और सूक्ष्म कारणों से अनेक गलत फहमियां पैदा हो सकती हैं और कानून कई तरह से परंपरागत रास्तों में उलझ सकता है। +","yah gross and obvious udaharan hai, parntu logon ke bich asnkhy aur sookshm karnon se anek galat phahmiyan paida ho sakti hain aur kanoon kee tarah se parnpragat raston men law can tangle +",negative,negative,negative +"The file ""% s"" is read - only! Edit anyway? +","फ़ाइल से. है पढ़ें संपादन? +","file se hai read edit +",neutral,neutral,neutral +"List of Governors of Tamil Nadu +","तमिल नाडु के राज्यपालों की सूची +","tamil governors of tamil ki list +",neutral,neutral,neutral +"And that 's probably the key lesson to my short talk here, is that +","और मेरे छोटे व्याख्यान का शायद महत्वपूर्ण सबक है, +","aur mere short talk ka shayad key lesson hai, +",neutral,neutral,neutral +"Generating tissues of predictable density and behavior +","उम्मीद के मुताबिक घनत्व और व्यवहार के ऊतक बनाना +","ummid ke mutabik density and behavior ke ootak banana +",neutral,neutral,neutral +"If I had a dozen of a dozen eggs - - a dozen is twelve. +","अगर मेरे पास 1 दर्ज़न के दर्ज़न अंडे हैं-- एक दर्ज़न 12 के बराबर होता है. +","agar mere pas dozen darzan ke darzan ande hain -- ek darzan 12 ke barabar hota hai +",neutral,neutral,neutral +"Alaukik Laukikata Formality with a Supernatural Touch is one of his most remarkable stories of this period. +","इस दौर में लिखी माणिक की एक अद्वितीय कहानी है अलौकिक लौकिकता। +","is period men likhi remarkable ki ek advitiy stories hai supernatural laukikta. +",positive,positive,positive +"The quantitative relation between the targets and the achievement. +","लक्ष्य तथा उनके विरूद्ध कार्य सम्पादन के संदर्भ में संख्यात्मक अनुपात। +","targets tatha unke virooddh kary quantitative ke relation men snkhyatmak anupat. +",neutral,neutral,neutral +"The Englishman ' s eyes lit up . +","अंग्रेज की आंखों में चमक आ गई , +","angrej ki aankhon eyes lit aa gee , +",neutral,neutral,neutral +"In Open office 2. 0 (or higher) for adding on Hindi spelling check +","ओपनऑफ़िस 2.0 (या अधिक) में हिन्दी वर्तनी जाँचक शामिल करने के लिए +","open 20 ya adhik hindi spelling check janchak shamil karne ke lie +",neutral,neutral,neutral +"Perhaps, you know by what name the generality of people call extraordinary ideas, uncommon actions, extraordinary high aspirations. +","शायद तुम जानती होगी कि आम लोग असाधारण विचारों, असाधारण कार्यों और असाधारण उच्चाकांक्षाओं को किस नाम से जानते हैं। +","shayad tum janti hogi ki generality people extraordinary ideas , extraordinary actions aur extraordinary high ko kis name se jante hain. +",neutral,neutral,neutral +"The process by which ammonia is converted to nitrites and then to nitrates. +","वह प्रक्रिया जिसके द्वारा अमोनिया को नाइट्राइटिस एवं तत्पश्चात नाइट्रेट्स में परिवर्तित किया जाता है +","vah prakriya jiske dvara amoniya ko naitraitis evn tatpashchat naitrets men parivartit kiya jata hai +",neutral,neutral,neutral +"More recently, it appears that none of the millions of antiwar demonstrators have a bad word to say about Saddam Hussein nor an iota of sympathy for those oppressed, tortured and murdered by his regime. Instead, they vent fury against the American president and British prime minister. +","अभी हाल में यह देखने में आया है कि लाखों युद्ध विरोधी प्रदर्शनकारियों ने सद्दाम हुसैन के विरूद्ध एक भी शब्द नहीं कहा और न ही उनके शासन में पीड़ित हत्या के शिकार हुए लोगों के प्रति एक भी सहानुभूति का शब्द निकाला। इसके बजाय उन्होंने अमेरिकी राष्ट्रपति और व्रिटेन के प्रधानमंत्री के विरूद्ध आक्रोश प्रदर्शित किया। +","abhi hal men yah fury men none hai ki millions yuddh virodhi antiwar ne saddam husain ke virooddh ek bhi word nahin kaha aur n hi unke regime men pirit hatya ke shikar hue logon ke prti ek bhi sympathy ka word nikala. iske bajay unhonne ameriki president aur iota ke minister ke virooddh aakrosh pradarshit kiya. +",negative,negative,negative +"& Choose which service to edit: +","चुनें कि कौन सी सेवा संपादित करनी हैः (C) +","choose ki kaun si service to edit haia C +",neutral,neutral,neutral +"If we start translating, we can only say the sun 's colour was slightly reddish. +","अगर हमें अनुवाद करना हो तो हम कहेंगे कि सूर्य का रंग लोहित था। +","agar hamen anuvad karna ho to ham kahenge ki soory ka rng lohit tha. +",neutral,neutral,neutral +"An organism in the early stages of development. +","विकास की प्रारम्भिक अवस्था में एक जीव +","stages of development avastha men ek organism +",neutral,neutral,neutral +"'. After the 25th, Prem Chand did not have good sleep. +","25 की रात के बाद ठीक से कभी सो न सके। +","25 ki rat ke bad good se kabhi so n sake. +",negative,negative,negative +"Punctuation level set to most. +","विराम चिह्न स्तर सबसे करने के लिए निर्धारित किया है. +","punctuation chihn level sabse karne ke lie nirdharit kiya hai +",neutral,neutral,neutral +"The market rates are going down. +","बाजार दर जल्दी नीचे जा रहे हैं। +","market dar jaldi niche ja rahe hain. +",neutral,neutral,neutral +"and you take a glass of wine and you put your feet up. +","और आप वाइन के एक गिलास के साथ आराम से अपने पैर ऊपर कर के बैठते हैं. +","aur aap vain ke ek glass ke sath aaram se apne feet oopar kar ke baithte hain +",neutral,neutral,neutral +"Amount of wage paid for a day. +","दिनभर के लिए दी जाने वाली मजदूरी की राशि। +","dinabhar ke lie di jane vali amount of wage +",neutral,neutral,neutral +"Harishchandra, however, submitted that if he be given half an hour, he could do it. +","परन्तु हरिश्चन्द्र का आग्रह था कि यदि उन्हें आध घण्टा का भी समय दिया जाए तो वह उसे याद कर लेंगे। +","parantu harishchandra ka aagrah tha ki yadi unhen aadh hour ka bhi samay diya jae to vah use yad kar lenge. +",neutral,neutral,neutral +"Kalpana was the first Indian born woman to fly into space and she was the second person of Indian origin to go into space. +","कल्पना जी अंतरिक्ष में उड़ने वाली प्रथम भारत में जन्मी महिला थीं और अंतरिक्ष में उड़ाने वाली भारतीय मूल की दूसरी व्यक्ति थीं। +","kalpana ji space men urne vali first bharat men janmi woman thin aur space men urane vali indian origin ki doosri person thin. +",neutral,neutral,neutral +"The Chairman to the right and the Speaker to the left of the President who occupies the middle seat. +","बीच के आसन पर राष्ट्रपति बैठता है, उसके दायें राज्य सभा का सभापति और बायें लोक सभा का अध्यक्ष। +","right ke seat par president baithta hai , uske dayen speaker sabha ka chairman aur left lok sabha ka adhyaksh. +",neutral,neutral,neutral +"The muscle present below the perineum in both females and males. +","पुरूषों तथा स्त्रियों दोनों में मूलाधार से नीचे विद्यमान पेशियां +","females and males donon men mooladhar se niche muscle present +",neutral,neutral,neutral +"is a lot of material that was already here, +","उसमें लगाई गई बहुत सी सामग्री ऎसी है जो पहले से ही मौजूद थी, +","usmen lot gee bahut si material ऎsi hai jo pahle se hi maujood thi , +",neutral,neutral,neutral +"PROVISIONS AS TO THE COMPTROLLER AND AUDITOR-GENERAL OF INDIA +","भारत के नियंत्रक-महालेखापरीक्षक के बारे में उपबंध +","india ke niyntrak-mhalekhaprikshak ke bare men provisions +",neutral,neutral,neutral +"You are now connected to the WiMAX network. +","आप अभी WiMAX संजाल से कनेक्टेड हैं. +","aap abhi WiMAX network se kanekted hain +",neutral,neutral,neutral +"At its tip it is toothed and sharply hooked. +","इसकी नोक दांतेदार और तीखे हुक वाली होती है. +","iski tip toothed and sharply huk vali hoti hai +",neutral,neutral,neutral +"Application of mud to all part of the body. +","शरीर के सभी हिस्सों पर कीचड़ का आलेपन +","body ke sabhi part par application of mud +",neutral,neutral,neutral +"Then we can make this same statement again. +","तो हम इस एक ही बयान पुनः बना सकते हैं। +","to same is ek hi statement puna bana sakte hain. +",neutral,neutral,neutral +"Partially ordered set is the intuitive concept of an ordering and sequencing, or arrangement of the elements of a set. +","अंशतः क्रमित समुच्चय, समुच्चय के तत्वों के अनुक्रमण तथा प्रबंधन का एक सहजज्ञ सिद्धांत होता है। +","anshta krmit set , set ke elements ke sequencing tatha prbndhan ka ek intuitive siddhant hota hai. +",neutral,neutral,neutral +"ANF 8 for Claiming Duty Drawback on All Industry Rates / Fixation of Drawback Rates / Refund of Terminal Excise Duty +","एएनएफ 8 सभी उद्योग किराये पर ड्यूटी ड्राबैक/शुल्क वापसी का निर्धारण/टर्मिनल उत्पाद शुल्क की वापसी का दावा करने के लिए +","eeneph fixation sabhi industry rates par duty drabaikshulk drawback ka nirdharantarminal excise shulk ki drawback ka dava karne ke lie +",neutral,neutral,neutral +"This was essentially Earth. Obviously, Earth got changed +","यह अनिवार्य रूप से पृथ्वी था। जाहिर है, पृथ्वी बदला मिल गया +","yah essentially roop se earth tha. jahir hai, earth got changed gaya +",neutral,neutral,neutral +"He would search for sure - fire devices of making bombs. +","बम बनाने के नुस्ख़े तलाश करता। +","bam making ke nuse search karta. +",neutral,neutral,neutral +"But they say, “We found our parents on a course, and we are guided in their footsteps. ” +","बल्कि ये लोग तो ये कहते हैं कि हमने अपने बाप दादाओं को एक तरीके पर पाया और हम उनको क़दम ब क़दम ठीक रास्ते पर चले जा रहें हैं +","balki ye course to ye kahte hain ki hamne apne parents dadaon ko ek tarike par paya aur ham unko footsteps b footsteps thik raste par chale ja rahen hain +",neutral,neutral,neutral +"Build but do not install the target. +","बिल्ड नहीं अधिष्ठापित करें लक्ष्य. +","build nahin adhishthapit karen target +",neutral,neutral,neutral +"If we start translating, we can only say the sun 's colour was slightly reddish. +","अगर हमें अनुवाद करना हो तो हम कहेंगे कि सूर्य का रंग लोहित था। +","agar hamen anuvad karna ho to reddish kahenge ki sun ka colour lohit tha. +",neutral,neutral,neutral +"Check that the spelling is correct and that your proxy settings are correct. +","जांच लें कि वर्तनी सही है और आपके प्रॉक्सी विन्यास सही हैं. +","janch len ki vartni correct hai aur aapke proxy settings correct hain +",neutral,neutral,neutral +"Such an institution is no good for building the nation. +","यह संस्था राष्ट्र के नव निर्माण की दृष्टि से उपयोगी नहीं है। +","yah such nation ke nav nirman ki drishti se good nahin hai. +",negative,negative,negative +"(9) The person from whose custody any books of account or other documents are seized under sub-section (1) or sub-section (1A) may make copies thereof, or take extracts therefrom, in the presence of the authorised officer or any other person empowered by him in this behalf, at such place and time as the authorised officer may appoint in this behalf. +","(9) वह व्यक्ति, जिसकी अभिरक्षा से कोर्इ लेखा बहियां या अन्य दस्तावेज उपधारा (1) या उपधारा (1क) के अधीन अभिगृहीत किए जाते हैं, उनकी नकलें या उनसे उद्धरण प्राधिकृत अधिकारी या उस निमित्त उसके द्वारा सशक्त किसी अन्य व्यक्ति की उपस्थिति में ऐसे स्थान और समय पर जो प्राधिकृत अधिकारी इस निमित्त नियत करें ले सकेगा। +","9 vah person , jiski custody se kori account books ya other documents updhara 1 ya updhara 1k ke adhin abhigrihit kie jate hain , unki copies ya unse uddharan authorised officer ya us nimitt uske dvara sashakt kisi other person ki presence men aese place aur time par jo authorised officer is nimitt niyat karen le sakega. +",neutral,neutral,neutral +"Partially ordered set is the intuitive concept of an ordering and sequencing, or arrangement of the elements of a set. +","अंशतः क्रमित समुच्चय, समुच्चय के तत्वों के अनुक्रमण तथा प्रबंधन का एक सहजज्ञ सिद्धांत होता है। +","partially ordered set, samuchchay ke tatvon ke anukraman tatha prbndhan ka ek intuitive concept hota hai. +",neutral,neutral,neutral +"OPV can be given to children till 5 years of age. +","बच्चों को ओपीवी 5 वर्ष की आयु तक दिया जा सकता है +","children ko opv 5 years ki age tak diya ja sakta hai +",neutral,neutral,neutral +"A person who attends a service to another. +","एक व्यक्ति जो दूसरों को सेवा प्रदान करता है। +","ek person jo doosron ko service prdan karta hai. +",neutral,neutral,neutral +"Add one or more images to the panorama +","परिदृश्य में एक या अधिक छवियाँ जोड़ें +","panorama men ek ya more images joren +",neutral,neutral,neutral +"A person who attends a service to another. +","एक व्यक्ति जो दूसरों को सेवा प्रदान करता है। +","ek vyakti jo doosron ko service prdan karta hai. +",neutral,neutral,neutral +"a Messenger from Allah, reciting from Purified Scrolls; +","(यानि) ख़ुदा के रसूल जो पाक औराक़ पढ़ते हैं (आए और) +","allah uda ke messenger jo pak aura pate hain scrolls aur +",neutral,neutral,neutral +"There are some reserved parking zones for those car who show the orange badge on their windscreen, or you can sometimes park where generally parking is not permitted. < s > You and Your Body (उपयोगी +","संस्थाओं के पते पृष्ठ ३९ पर हैं) कई स्थानों पर पार्किंग स्थान, विशेषकर, उन कारों के लिये रिज़र्व रखे गये हैं जो अपने विंडस्क्रीन पर ओरेंज बैज का प्रगर्शन करते हैं, और आप सीमित समय के लिये उन स्थानों पर भी रूक सकते हैं, प्रायः जहां पार्क करने की अनुमति नहीं हैं। +","body ke s prishth ३९ par hain kee sthanon par parking sthan , visheshakar , un karon ke liye rizarv rakhe gaye hain jo apne zones par orange badge ka pragarshan karte hain , aur aap simit samay ke liye un sthanon par bhi rook sakte hain , praya jahan park karne ki anumti nahin hain. +",neutral,neutral,neutral +"Writing the lead - out may take some time. +","लीड-आउट लिखने में कुछ समय लग सकता है. +","lid-aaut likhne men kuchh time lead sakta hai +",neutral,neutral,neutral +"Among them 13, 74, 283 lives were under subsidised category and 61, 133 lives were under General non - subsidised category. +","इनमें क्रमशः13,74,283 और 61,133 व्यक्ति सब्सिडी पाने वाले वर्ग में थे और 61,135 पूरा प्रीमियम देने वालों में थे। +","inmen kramsha13,74,283 aur 61,133 vyakti subsidised general vale varg men the aur 61,135 poora primiyam lives valon men the. +",neutral,neutral,neutral +"Computers which are connected by internet can do exchange of their information through rules of internet. +","अंतरजाल से जुडे हुए संगणक आपस मे अंतरजाल नियमावली () के जरिए सूचना का आदान-प्रदान करते है। +","connected by internet hue snganak aapas me antarjal rules ke jarie soochna ka aadan-prdan karte connected +",neutral,neutral,neutral +"Mass unemployment in the country is a matter of grave concern. +","देश में व्यापक बरोजगारी एक बडी चिन्ता का विषय है। +","grave concern vyapak barojgari ek badi chinta ka vishay hai. +",negative,negative,negative +"The first gurus were Chunakkara Achutha Varier and Sankara Varier. +","प्रथम गुरु चुनक्करा अच्युत वारियर और शंकर वारियर रहे। +","pratham guru chunakkra achyut variyar aur shnkar variyar rahe. +",neutral,neutral,neutral +"A tape with a magnetizable layer on which data can be stored. +","चुंबकीय परत वाला एक टेप, जिसपर डेटा संग्रहीत किया जा सकता है. +","chunbkiy parat vala ek tep, jisapar deta sngrhit kiya ja sakta hai +",neutral,neutral,neutral +"and you take a glass of wine and you put your feet up. +","और आप वाइन के एक गिलास के साथ आराम से अपने पैर ऊपर कर के बैठते हैं. +","aur aap wine ke ek glass ke sath aaram se apne feet oopar kar ke baithte hain +",neutral,neutral,neutral +"Nominee of the insurance has to be a near relative of the subscriber. +","बीमा का नामित व्यक्ति अभिदाता का निकट संबंधी होगा। +","insurance ka nominee vyakti subscriber ka near snbndhi hoga. +",neutral,neutral,neutral +"And I said, “What do you do?” +","और मैंने कहा, “तुम क्या करते हो” +","aur i kaha , tum kya karte ho +",neutral,neutral,neutral +"To Ravana's question, Hanuman in his answer introduced himself as Ram's messenger. +","रावण के प्रश्न के उत्तर में हनुमान ने अपना परिचय राम के दूत के रूप में दिया। +","ravan ke prashn ke answer introduced hanuman ne apna parichay ram ke doot ke roop men diya. +",neutral,neutral,neutral +"LEVEL : NEWS PAPERS IN HINDI LANGUAGE +","श्रेणी:हिन्दी भाषा के समाचार पत्र +","hindi language ke samachar papers +",neutral,neutral,neutral +"There are probably other things in the world that the sheep can 't teach me, thought the boy as he regarded the old merchant. +","दुनिया में ऐसी कई और भी चीजें हैं, जो भेड़ें नहीं सिखा सकती। +","other men boy kee aur bhi things hain , jo sheep nahin sikha sakti. +",neutral,neutral,neutral +"(a) the provisions of any existing law; or +","(क) किसी वर्तमान विधि के उपबंधों पर, अथवा +","k kisi existing law ke provisions par, athva +",neutral,neutral,neutral +"With such modes and conventions ruling the stage, it is plausible to assume further that playwrights started preparing their scripts suitably and incorporated directives for acting and representation. +","मंचन को नियंत्रित करना भी संगत होगा कि नाटककार तदनुसार अपनी पांडुलिपियाँ तेयार करने लगे होंगे तथा अभिनय और प्रस्तुतीकरण के निर्देशों का समावेश करने लगे होंगे। +","mnchan ko niyntrit karna bhi sngat hoga ki natakkar tadnusar apni pandulipiyan teyar karne lage honge tatha abhinay aur prastutikaran ke nirdeshon ka samavesh karne lage honge. +",neutral,neutral,neutral +"Badi Maa and Dana Pani were written for Hindi films. +","बडी मॉँ और दाणा पाणी हिन्दी फिल्मों के लिए लिखे गए थे। +","badi mn aur dana pani hindi films ke lie likhe ge the. +",neutral,neutral,neutral +"The degree of blurring from 1 to 127. +","1 से 127 तक धुंधला की डिग्री. +","1 se 127 tak degree of blurring +",neutral,neutral,neutral +"In India 64. 8% literacy is there, in which 75. 3% men and 53. 7% woman are literate. +","भारत में ६४. ८ प्रतिशत साक्षरता है जिसमे से ७५. ३% पुरुष और ५३. ७% स्त्रियाँ साक्षर है। +","india men ६४ ८ prtishat literacy hai jisme se ७५ ३ men aur ५३ ७ striyan sakshar hai. +",neutral,neutral,neutral +"With momentum of time Marathi literature also became modern. +","मराठी साहित्य भी समय की गति क साथ साथ आधुनिक हो चुका है। +","marathi literature bhi time ki momentum k sath sath modern ho chuka hai. +",neutral,neutral,neutral +"What is today 's status of Consolidated Stock? +","समेकित स्टॉक की आज की स्थिति क्या है। +","consolidated stock ki today ki status kya hai. +",neutral,neutral,neutral +"They are nocturnal animals, sleeping during the day and hunting at night, singly or in pairs. +","दिन में यह सोती रहती है और रात में अकेले या जोड़े में शिकार करती है। +","din men yah soti rahti hai aur rat men akele ya jore men day and hunting +",neutral,neutral,neutral +"I usually get up at eight o 'clock. +","मैं आमतौर आठ बजे सोकर उठता हूँ। +","i aamtaur aath baje sokar uthta hoon. +",neutral,neutral,neutral +"And it 's good to always do a reality check after every step. +","और यह हमेशा हर कदम के बाद एक वास्तविकता की जांच करने के लिए अच्छा है। +","aur yah hamesha har step ke bad ek reality ki janch karne ke lie achchha good +",positive,positive,positive +"Human body consists of head, neck, torso, arms and legs. +","मनुष्य शरीर में शीश, गर्दन, धड़, बाजु तथा टांगें होती हैं +","human body men torso , neck , dhar , baju tatha tangen hoti hain +",neutral,neutral,neutral +"Child - 3: Tell us now, Grandpa! +","बच्चा 3: फिर सुनाओ, दादा! +","child 3: phir sunao, grandpa! +",neutral,neutral,neutral +"The requested device could not be initialized (""mounted""). The reported error was:% 1 +","निवेदित उपकरण इनिशियलाइज़ (""माउन्टेड"") नहीं किया जा सकता. रिपोर्ट की गई त्रुटि हैः% 1 +","requested device inishiylaiz maunted nahin kiya ja sakta riport ki gee reported error 1 +",negative,negative,negative +"follow the line all the way from B to E, +","बी से ई तक की रेखा के पीछे पूरे रास्ते चलिए, +","b se ee tak ki line ke way poore raste chalie , +",neutral,neutral,neutral +"Jute plants need a temperature ranging from 21 to 38 degrees Celsius and relative humidity of 70 to 80 per cent. +","पटसन के पौधों को 21 से 38 डिग्री सेलसियस तापमान तथा 70 से 80 प्रतिशत सापेक्ष आर्द्रता की जरूरत पड़ती हैं। +","jute ke plants ko 21 se 38 degrees selsiyas temperature tatha 70 se 80 cent relative humidity ki jaroorat parti hain. +",neutral,neutral,neutral +"In the interview , Bharali has given a blow-by-blow account of what supposedly happened after the “ marriage ” . +","अपने इंटरव्यू में भराली ने ' शादी के बाद ' की हर घटना का क्रमवार यौरा दिया है . +","apne interview men bharali ne marriage ke bad ki har happened ka kramvar yaura diya hai +",neutral,neutral,neutral +"Example: in the panel [XML:: RSS] (panel) [mygape] (PHP), [rom] (java) etc. +","उदाहरणः सीपैन में [XML:: RSS] (पर्ल) [मैगपी] (पीएचपी) [रोम] (जावा) आदि। +","example sipain men XML : : panel etc xml php rom java aadi. +",neutral,neutral,neutral +"Sugar Machinery: - domestic manufacturers occupy predominant position in the global scenario and are capable of manufacturing from concept to commissioning stage sugar plants of latest design for a capacity upto 10, 000 TCD (tons crushing per day). +","वर्तमान में संपूर्ण चीनी संयंत्रों के विनिर्माण के लिए संगठित क्षेत्र में 2 इकाइयां हैं और प्रति वर्ष लगभग 200 करोड़ की संस्थापित क्षमता वाले पुर्जे हैं। +","latest men snpoorn sugar domestic ke manufacturers ke lie sngthit kshetr men tons ikaiyan hain aur prti varsh global 200 position ki snsthapit capable vale purje hain. +",neutral,neutral,neutral +"Unfortunately, some people who have been the victim of crime are more vulnerable, in the short term, to further crime. +","दुर्भाग्यवश , अपराध के शिकार हुए कुछ लोगों में फिर से उसके शिकार बनने की अधिक प्रवृत्ति होती है | +","people , crime ke victim hue kuchh logon men phir se uske victim banne ki further prvritti hoti hai +",negative,negative,negative +"We're going to go back to the moon ... 50 years later? +","हम चाँद पे फिर से जा रहे हैं - 50 साल बाद - +","ham moon pe phir se ja rahe hain - 50 years bad - +",neutral,neutral,neutral +"The Kalam - pattu in the Vaikkom temple is sung inside a big thatched shed in the extensive courtyard on the northern side of the temple. +","वैकोम के मंदिर में कलमपट्ट एक बहुत बड़ी झोपड़ी में बैठकर गाया जाता है जो मंदिर के बहुत बड़े प्रांगण के उत्तरी भाग में स्थित है। +","vaikom ke mndir men kalamapatt ek bahut big thatched shed baithakar gaya jata hai jo mndir ke bahut bare prangan ke uttri bhag inside a big +",neutral,neutral,neutral +"Reading is a complex cognitive process of decoding symbols for the purpose of deriving meanings. +","पाठन, अर्थ प्राप्त करने के उद्देश्य से प्रतीकों के विकोडन की एक जटिल संज्ञानात्मक प्रक्रिया है। +","reading , meanings prapt karne ke purpose se symbols ke vikodan ki ek complex cognitive process hai. +",neutral,neutral,neutral +"This term is used to mention two parts or components usually in pairs. +","सामान्यतः एक वस्तु के दो भाग या उपकरणों की जोड़ियों केलिए इस पद का प्रयोग किया जाता है। +","samanyta ek vastu ke do parts ya upakarnon ki pairs kelie is term ka pryog kiya jata hai. +",neutral,neutral,neutral +"and, when reminded, do not remember +","और जब उन्हें याद दिलाया जाता है, तो वे याद नहीं करते, +","aur jab unhen remember dilaya jata hai, to ve remember nahin karte, +",neutral,neutral,neutral +"Font for text with fixed width, such as code examples. +","कोड उदाहरण के रूप में, फिक्स्ड चौड़ाई के साथ पाठ के लिए फ़ॉन्ट. +","code such ke roop men , fixed chauraee ke sath text ke lie font +",neutral,neutral,neutral +"The highest amount of money that is required to be paid. +","अधिक से अधिक राशि जो मूल्य रुप मे दी जानी हो। +","highest se highest amount jo mooly rup me di jani ho. +",neutral,neutral,neutral +"If I had a dozen of a dozen eggs - - a dozen is twelve. +","अगर मेरे पास 1 दर्ज़न के दर्ज़न अंडे हैं-- एक दर्ज़न 12 के बराबर होता है. +","agar mere pas 1 twelve ke twelve eggs hain-- ek twelve 12 ke barabar hota hai +",neutral,neutral,neutral +"Now, let 's think about what that is +","तो हम इसके बारे मे सोचते हैं वो क्या है +","to ham iske bare me sochte hain vo kya hai +",neutral,neutral,neutral +"Her body stiffened as the spur thrust, and slackened again. +","भूख के पंजों की चुम्बन महसूस होते ही उसकी देह ऐंठ जाती और फिर दुबारा ढीली पड़ जाती। +","thrust ke pnjon ki chumban mahsoos hote hi uski body aenth jati aur phir dubara dhili par jati. +",neutral,neutral,neutral +"Dr Bhanu may have been persuaded to step in because a business partner is close to former chief minister S. Bangarappa, who in turn is related to Rajkumar. +","भानु को भूमिका निभाने के लिए शायद इसलिए तैयार किया गया कि एक व्यावसायिक साज्हीदार के पूर्व मुयमंत्री एस. बंगारप्पा से, जो राजकुमार के रिश्तेदार हैं, निकट संबंध हैं. +","bhanu ko bhoomika nibhane ke lie shayad islie taiyar kiya gaya ki ek business partner ke chief minister es bngarappa se, jo rajkumar ke rishtedar hain, nikat snbndh hain +",neutral,neutral,neutral +"But he who is given the Record behind his back, +","और रह वह व्यक्ति जिसका कर्म-पत्र (उसके बाएँ हाथ में) उसकी पीठ के पीछे से दिया गया, +","aur record vah vyakti jiska karm-patr uske baen hath men uski back ke pichhe se diya gaya , +",neutral,neutral,neutral +"So just to remind ourselves, 5 and 5 / 8 is the exact same thing +","तो खुद को याद दिलाने के लिए, 5 और 5/8 बिल्कुल एक ही +","to khud ko yad dilane ke lie , thing aur 58 exact ek hi +",neutral,neutral,neutral +"Products with factory price are available in show room +","फैक्टरी कीमत पर उत्पाद शो रूम में उपलब्ध है। +","factory price par utpad sho room men upalabdh hai. +",neutral,neutral,neutral +"Bharavi was almost a contemporary of Kalidasa. +","भारवि करीब करीब कालिदास के समकालीन थे. +","bharvi karib karib kalidas ke contemporary the +",neutral,neutral,neutral +"Water resources development and management will have to be planned for a hydrological unit. +","एक हाइड्रोलॉजिकल इकाई के लिए जल संसाधन विकास और प्रबंधन की योजना बनानी होगी। +","ek hydrological unit ke lie water resources development aur management ki yojna banani hogi. +",neutral,neutral,neutral +"if culture changes us, as indeed it does, +","अगर संस्कृति हमें परिवर्तित करती हो, जो कि वह वाकई करती है - +","agar culture hamen changes karti ho , jo ki vah vakee karti hai - +",neutral,neutral,neutral +"Family Planning Association of India and Branch offices. +","भारतीय परिवार नियोजन संघ और शाखा कार्यालय। +","india family planning association aur shakha karyalay. +",neutral,neutral,neutral +"Such drafts which are presented for payment not accompanied by the advice from the remitter bank. +","ऐसे ड्राफ्ट जिन्हें भुगतान के लिए बिना प्रेषक बैंक द्वारा जारी सूचना पत्र के प्राप्त हुए प्रस्तुत किया जाए। +","aese drafts jinhen such ke lie bina remitter bank dvara jari advice patr ke prapt hue prastut kiya jae. +",neutral,neutral,neutral +"Habitat They live near water in open tree - and shrub - grasslands. +","निवास: ये पेड़ और घास वाले खुले मैदानों में रहते हैं। +","habitat : ye tree aur ghas vale khule near men rahte water +",neutral,neutral,neutral +"Whether the image gallery pane should be resizable. +","क्या छवि गैलरी फलक बदलने योग्य होना चाहिए. +","kya image gallery pane badalne yogy hona chahie +",neutral,neutral,neutral +"The notion of CSR is not new to India. +","कॉरपोरेट सामाजिक उत्तरदायित्व का विचार भारत के लिए नया नहीं है। +","csr samajik uttardayitv ka notion bharat ke lie new nahin hai. +",neutral,neutral,neutral +"& Choose which service to edit: +","चुनें कि कौन सी सेवा संपादित करनी हैः (C) +","chunen ki kaun si service snpadit karni haia C +",neutral,neutral,neutral +"Mangle From: / To: headers in replies to replies +","जवाब के जवाब में द्वाराः/कोः हेडर्स बिगड़े +","replies ke replies men dvaraakoa headers bigare +",neutral,neutral,neutral +"The Skene 's glands is more commonly known as the G - spot. +","स्कीन ग्रन्थियाँ सामान्यतः जी-स्पॉट के रूप में जानी जाती हैं. +","skin granthiyan samanyta ji-spt ke roop men jani jati hain +",neutral,neutral,neutral +"going to be aligned at the center of the cell. +","कोशिका के केंद्र में पंक्ति बद्ध होंगे. +","cell ke kendr men pnkti baddh honge +",neutral,neutral,neutral +"budha 's birthday is still conducted in theravada countries and his mother got death after 7 days of his birth +","बुद्ध का जन्म दिन व्यापक रूप से थएरावदा देशों में मनाया जाता है उनकी माता का उनके जन्म के सात दिन बाद निधन हो गया था। +","buddh ka janm din vyapak roop se theravda deshon men manaya jata hai unki mata ka unke janm ke sat din bad nidhan ho gaya tha. +",negative,negative,negative +"Another program on your computer added an extension that may change the way Chrome works. +","आपके कंप्यूटर पर किसी अन्य प्रोग्राम ने एक्सटेंशन जोड़ा है, जो Chrome के काम करने के तरीके को बदल सकता है. +","aapke computer par kisi any program ne extension jora hai , jo Chrome ke works karne ke tarike ko chrome sakta hai +",neutral,neutral,neutral +"In India 64. 8% literacy is there, in which 75. 3% men and 53. 7% woman are literate. +","भारत में ६४. ८ प्रतिशत साक्षरता है जिसमे से ७५. ३% पुरुष और ५३. ७% स्त्रियाँ साक्षर है। +","india men ६४ ८ prtishat literacy hai jisme se ७५ ३ men aur ५३ ७ striyan literate hai. +",neutral,neutral,neutral +"Don 't bunt. Aim out of the ball park. Aim for the company of immortals. +","गेंद को दो रन के लिए सरकाइए मत। उसे मैदान से बाहर पहुँचाने के लिए निशाना साधिए। अमर व्यक्तियों के साथ का लक्ष्य बनाइए। +","ball ko do ran ke lie don mat. use park se bahar pahunchane ke lie aim sadhie. amar vyaktiyon ke sath ka lakshy company +",neutral,neutral,neutral +"Hence he came to be called Padmapada. +","इसी से उसका नाम पद्मपाद पड गया। +","isi se uska called padmpad pad gaya. +",neutral,neutral,neutral +"that's been viewed four million times. +","और उसको भी चालीस लाख बार देखा गया है। +","aur usko bhi chalis lakh times dekha gaya hai. +",neutral,neutral,neutral +"The court said that the words were merely laughable and incapable of producing any effect on the readers. +","न्यायालय ने कहा कि वे शब्द सिर्फ हास्यास्पद थे और पाठकों पर कोई प्रभाव डालने में अक्षम थे। +","nyayalay ne kaha ki ve shabd sirph hasyaspad the aur pathkon par koee prbhav incapable of producing the. +",negative,negative,negative +"By contrast , one LSD trip might result in psychological damage to somebody with latent mental illness . +","इसके विपरीत एलएसडी का एक ही बार दम लगाने से किसी प्रच्छन्न दिमाग़ी रोग वाले व्यक्ति को मनोवैग्यानिक हानि पहुँचने की संभावना हो सकती है । +","iske viprit elesdi ka ek hi bar dam lagane se kisi latent mental illness vale vyakti ko manovaigyanik hani pahunchne ki snbhavna ho sakti hai . +",negative,negative,negative +"An error occurred while trying to set up sync. +","सिंक सेट अप करने का प्रयास करते समय एक त्रुटि उत्पन्न हुई. +","sync set ap karne ka pryas karte samay ek error utpann huee +",negative,negative,negative +"An amount of notes and cashes that the cashier maintain in his cash - box for operations. +","नोटों या सिक्कों की ऐसी राशि जो खजांची दैनिक कार्य व्यवहार के लिए अपने नकदी बॉक्स में रखता हो। +","notes ya sikkon ki aesi amount jo cashes dainik kary vyavhar ke lie apne nakdi box men rakhta ho. +",neutral,neutral,neutral +"And the plants and the trees prostrate (for Him). +","और बूटियाँ बेलें, और दरख्त (उसी को) सजदा करते हैं +","aur plants belen , aur darakht usi ko sajda karte hain +",neutral,neutral,neutral +"Speaking on the occasion, the President said India is fortunate to have a large young population to take forward her aspirational agenda of change. +","इस अवसर पर, राष्ट्रपति ने कहा कि, भारत सौभाग्यशाली है कि उसके पास परिवर्तन की आकांक्षापूर्ण कार्यसूची की प्राप्ति के लिए विशाल युवा पीढ़ी है। +","is occasion par , president ne kaha ki , india fortunate hai ki uske pas change ki population agenda ki prapti ke lie large young pii hai. +",positive,positive,positive +"Chromium is no longer updating because your operating system is obsolete. +","क्रोमियम अब और अपडेट नहीं कर रहा है क्योंकि आपका ऑपरेटिंग सिस्टम अप्रचलित है. +","chromium ab aur updating nahin kar raha hai kyonki aapka operating system aprachlit hai +",negative,negative,negative +"An elementary Hindi translation of Srimad Bhagwat Geeta. +","श्रीमद् भगवद्गीता का सरल हिन्दी मे आनुवाद +","shrimad bhagavadgita ka saral elementary hindi translation +",neutral,neutral,neutral +"Nematodes are also known as nema. +","सूत्रकृमि सूत्रक या नेमा के रूप में भी जाने जाते हैं +","nematodes sootrak ya nema ke roop men bhi jane jate hain +",neutral,neutral,neutral +"“I am a fox, ” the fox said.“ +","मैं लोमड़ी हूँ! ” लोमड़ी ने कहा। +","main fox hoon! s fox ne kaha. +",neutral,neutral,neutral +"Here's a really short text. +","यहाँ एक बहुत छोटा वाक्य है। +","yahan ek bahut short text hai. +",neutral,neutral,neutral +"Gandhiji claimed the defeat of Sitarmayya as his own defeat and told his colleagues that if they are not satisfied by Subhashbabu's methods, they can leave the Congress. +","गाँधीजी ने पट्टाभी सितारमैय्या की हार को अपनी हार बताकर अपने साथीयों से कह दिया कि अगर वें सुभाषबाबू के तरिकों से सहमत नहीं हैं तो वें कांग्रेस से हट सकतें हैं। +","gandhiji ne gandhiji claimed ki har ko apni har told his colleagues se kah diya ki agar ven leave the congress se sahamat nahin hain to ven kangres se hat sakten hain. +",negative,negative,negative +"your council's decisions on housing issues are more open and accountable to you; +","रिहाइशी मामलों के बारे में आपकी कौंसिल के फ़ैसलें अधिक सार्वजनिक होंगे और कौंसिल आपके सामने अधिक जवाब देह होगी | +","decisions issues ke bare men aapki council ke open more sarvajnik honge aur council aapke samne more javab deh hogi +",neutral,neutral,neutral +"Didn 't he conquer Bengal *? +","उसने तो बंगाल को जीत लिया था न? +","usne to bengal ko jit liya tha n +",neutral,neutral,neutral +"Rest house means a building used for shelter by travelers. +","विश्राम गृह का अर्थ उस इमारत से होता है, जिसका प्रयोग यात्रियों द्वारा आश्रय के लिए किया जाता है। +","rest house ka arth us building se hota hai , jiska pryog travelers dvara shelter ke lie kiya jata hai. +",neutral,neutral,neutral +"For more than four decades, Gurbakhsh Singh prevailed over Punjabi journalism. +","चार दशकों से अधिक, गुरबख्श सिंह पंजाबी पत्रकारिता पर आच्छादित रहे। +","char decades se more , gurbakhsh sinh punjabi journalism par aachchhadit rahe. +",neutral,neutral,neutral +"Sometimes, the local craftsmen also display their items for sale in this emporium. +","कभी स्थानीय शिल्पकार भी अपनी कलाकृतियों को यहां पर बेचने के लिए रख देते हैं. +","kabhi local craftsmen bhi apni kalakritiyon ko yahan par sale ke lie rakh dete hain +",neutral,neutral,neutral +"It is the best source of soluble fibre. +","यह घुलनशील रेशे का सर्वश्रेष्ठ स्रोत है। +","yah soluble fibre ka best source hai. +",positive,positive,positive +"Your local social services department will tell you about other local organisations. +","आप की लोकल कौंसिल की सेवाएं वाला विभाग आप को आप के स्थानीय समूहों के बारे में बतायेगा। +","aap ki local social ki sevaen other department aap ko aap ke sthaniy organisations ke bare men batayega. +",neutral,neutral,neutral +"In most of the Committees, public is directly or indirectly associated when memoranda containing suggestions are received. +","अधिकांश समितियों में जनता प्रत्यक्ष अथवा अप्रत्यक्ष ढ़ंग से तब संबद्ध होती है जब उनसे सुझावों संबंधी ज्ञापन प्राप्त होते हैं। +","adhikansh samitiyon public is directly athva apratyaksh ng se tab snbaddh hoti hai jab memoranda containing suggestions jnjapan prapt hote hain. +",neutral,neutral,neutral +"When Rano reached Kak at the dead of night, Natar tried to dissuade him from going up to Mumai 's chamber telling him that Mumal had taken another lover. +","जब आधी रात के समय, राणो काकमहल पहुँचा तो नातर ने उसे मूमल के कक्ष में यह कहकर जाने से मना किया कि मुमल अब और किसी से प्रेम करती है। +","jab aadhi dead of night, rano kakamahal pahuncha to natar ne use moomal ke kaksh men yah kahakar jane se mana kiya ki mumal ab aur kisi se prem karti hai. +",neutral,neutral,neutral +"Search all% {DRIVENAME} +","सभी% {DRIVENAME} खोजें +","sabhi DRIVENAME search +",neutral,neutral,neutral +"There is in this audience and all around us a large number of elders who are making extremely valuable contributions to our country and to our society. +","इस सभा में तथा हमारे आसपास ऐसे बहुत से वयोवृद्ध हैं जो कि हमारे देश तथा समाज के लिए बहुमूल्य सहयोग प्रदान कर रहे हैं। +","is audience men tatha large aaspas aese bahut se elders hain jo ki large country tatha samaj ke lie valuable sahyog prdan kar rahe hain. +",positive,positive,positive +"Shortly after taking up the job, he was married in 1912 to Shivdayee, with whom he was betrothed since infancy. +","काम पर लगने के शीघ्र बाद ही 1912 मे शिवदाई के साथ उनका विवाह हो गया, जिसके साथ जन्म से ही उनकी मँगनी हो चुकी जीवन 19 थी। +","job par lagne ke shighr bad hi 1912 me shivdaee ke sath unka vivah ho gaya, jiske sath janm se hi unki mngni ho chuki jivan 19 thi. +",neutral,neutral,neutral +"And in all cases we have to ask - +","और सभी मामलों में हमे पूछना है +","aur sabhi cases men hame poochhna hai +",neutral,neutral,neutral +"When they are cast into it they will hear it sighing, the while it boils +","जब वे उसमें डाले जाएँगे तो उसकी दहाड़ने की भयानक आवाज़ सुनेंगे और वह प्रकोप से बिफर रही होगी। +","jab ve usmen dale jaenge to uski daharne ki bhayanak aavaz sunenge aur vah prkop se while rahi hogi. +",neutral,neutral,neutral +"Project Manager Plugin for Anjuta. +","परियोजना प्रबंधक प्लगइन के लिए Anjuta. +","project manager plugin ke lie Anjuta +",neutral,neutral,neutral +"What quantity should be added to both sides of this equation +","क्या मात्रा इस समीकरण के दोनों पक्षों के लिए शामिल किया जाना चाहिए +","kya quantity is equation ke donon pakshon ke lie shamil kiya jana chahie +",neutral,neutral,neutral +"The e-hospital and e-project programmes taken up by NIMHANS are, therefore, excellent initiatives, worthy of emulation by other institutions. +","इसलिए निमहैन्स द्वारा आरंभ किए गए ई-हास्पिटल और ई-प्रोजेक्ट कार्यक्रम उत्कृष्ट पहल हैं, अन्य संस्थाओं द्वारा अनुकरण किए जाने योग्य है। +","islie nimhains dvara aarnbh kie ge ee-haspital aur ee-projekt karyakram utkrisht pahal hain, any snsthaon dvara anukaran kie jane yogy hai. +",positive,positive,positive +"In 'Ad (also is a sign), when We sent a blasting wind against them, +","और आद में भी (तुम्हारे लिए निशानी है) जबकि हमने उनपर अशुभ वायु चला दी +","aur blasting men bhi sign lie nishani hai jabki hamne unapar wind vayu chala di +",neutral,neutral,neutral +"A type of vein arrangement in leaf where veins run parallel to each other from the poin they strat to the end. +","पत्ती में पाया जाने वाला एक प्रकार का शिरा विन्यास जहां अपने आरंभ होने के स्थान से अंत होने के स्थान तक शिराएं एक दूसरे के समांतर होती हैं +","patti men paya jane vala ek type of vein vinyas jahan apne aarnbh hone ke sthan se ant hone ke sthan tak shiraen ek doosre ke samantar hoti hain +",neutral,neutral,neutral +"So We took retribution from them, and We drowned them in the sea because they denied Our signs and were heedless of them. +","तब आख़िर हमने उनसे (उनकी शरारत का) बदला लिया तो चूंकि वह लोग हमारी आयतों को झुटलाते थे और उनसे ग़ाफिल रहते थे हमने उन्हें दरिया में डुबो दिया +","tab signs retribution unse unki shararat ka badla liya to choonki vah log hamari aayton ko sea the aur unse heedless rahte the retribution unhen dariya men dubo diya +",negative,negative,negative +"PRESIDENT OF INDIA TO INAUGURATE AN INTERNATIONAL CONVENTION ON HOMOEOPATHY TOMORROW, Rashtrapati Bhavan : 08.04.2016 +","भारत के राष्ट्रपति कल होमियोपैथी पर एक अंतरराष्ट्रीय अभिसमय का उद्घाटन करेंगे।, राष्ट्रपति भवन : 08.04.2016 +","india ke president tomorrow homoeopathy par ek international convention ka udghatan karenge. , president bhavan : 08042016 +",neutral,neutral,neutral +"Nobody knows what matter might crop up during this period or what kind of attack might be launched against the government. +","यह कोई नहीं कह सकता कि इस काल के दौरान कौन-सा मामला उठ खड़ा हो या सरकार पर किस तरह का आक्रमण कर दिया जाए. +","yah koee nahin kah sakta ki is kal ke matter might crop uth khara ho ya sarkar par kis tarah ka aakraman kar diya jae +",negative,negative,negative +"Publication of Rashtriya Bank Srijana: +","राष्ट्रीय बैंक सृजना का प्रकाशन: +","rashtriy bank srijna ka publication: +",neutral,neutral,neutral +"Hanafi clan - its followers are in South Asia and Central Asia. +","हनफी पन्थ-इसके अनुयायी दक्षिण एशिया और मध्य एशिया में हैं। +","hanphi panth-iske anuyayi south asia aur madhy eshiya men hain. +",neutral,neutral,neutral +"In the absence of organised marketing for small agricultural products producers do not get good price realisation. +","लघु कृषि उत्पादों के लिए संगठित विद्यमान व्यवस्था के अभाव में उत्पादकों को उनकी उपज का अच्छा मूल्य नहीं मिल पाता। +","small agricultural products ke lie organised vidyman vyavastha ke absence men producers ko unki upaj ka good price nahin mil pata. +",negative,negative,negative +"This option will connect to the server using Kerberos 5 authentication. +","Kerberos 5 सत्यापन के उपयोग से यह विकल्प सर्वर से जोड़ेगा. +","Kerberos 5 authentication ke upyog se yah option server se jorega +",neutral,neutral,neutral +"Shape actor with alpha channel when picking +","चुनने के दौरान अल्फा चैनल के साथ कर्ता को आकार दें +","chunne ke channel when picking ke sath karta ko aakar den +",neutral,neutral,neutral +"Eat of the lawful and good things God has provided for you, and be thankful for God’s blessings, if it is Him that you serve. +","फिर अज़ाब (ख़ुदा) ने उन्हें ले डाला और वह ज़ालिम थे ही तो ख़ुदा ने जो कुछ तुम्हें हलाल तय्यब (ताहिर) रोज़ी दी है उसको (शौक़ से) खाओ और अगर तुम खुदा ही की परसतिश (का दावा करते हो) +","phir azab uda ne unhen le dala aur vah zalim the hi to uda ne jo kuchh tumhen halal tayyab tahir rozi di hai good things se khao aur agar tum khuda hi ki parastish ka dava karte ho +",positive,positive,positive +"When composite tender is invited for various types of works / activities. +","जब विविध प्रकार के कार्यों के लिए एक ही संयुक्त टेन्डर जारी किया जाता हो। +","jab activities types of works ke lie ek hi composite tender jari kiya jata ho. +",neutral,neutral,neutral +"Nominal check of the attendance is advisable. +","उपस्थिति की नाममात्र जांच उचित है। +","attendance ki nominal check advisable hai. +",neutral,neutral,neutral +"The whole film proceeds with computer graphics and animated figures. +","कंप्यूटर ग्राफिक्स और एनिमेटेड आंकड़े के साथ पूरी फिल्म आय. +","computer graphics aur animated aankare ke sath whole film proceeds +",neutral,neutral,neutral +"It has been called Chhath because of fast of Suryashashthi. +","मूलतः सूर्य षष्ठी व्रत होनेके कारण इसे छठ कहा गया है। +","moolta soory shashthi vrat honeke karan ise chhath kaha gaya hai. +",neutral,neutral,neutral +"He also recalled the insinuation made the other day by Haran about Binoy. +","विनय के बारे में हारान बाबू उस दिन जो इशारा कर गये थे, वह भी उन्हें याद आया। +","vinay ke bare men haran baboo us din jo ishara kar gaye the, vah bhi unhen yad aaya. +",neutral,neutral,neutral +"Do not be like those who, after they had been given clear evidence, split into factions and differed among themselves: a terrible punishment awaits such people. +","तुम उन लोगों की तरह न हो जाना जो विभेद में पड़ गए, और इसके पश्चात कि उनके पास खुली निशानियाँ आ चुकी थी, वे विभेद में पड़ गए। ये वही लोग है, जिनके लिए बड़ी (घोर) यातना है। (यह यातना उस दिन होगी) +","awaits such people ki tarah n ho jana jo vibhed men par ge, aur iske pashchat ki unke pas clear evidence aa chuki thi, ve vibhed men par ge. ye vahi log hai, jinke lie bari ghor yatna hai. yah yatna us din hogi +",negative,negative,negative +"He was elected president of the Muslim Conference formed in October, 1932. +","उन्हें अक्तूबर 1932 में स्थापित मुस्लिम कांफ्रेस का अध्यक्ष भी बनाया गया। +","unhen october 1932 men sthapit muslim conference ka president bhi banaya gaya. +",neutral,neutral,neutral +"The chiefs of those who disbelieved among his people said: we behold thee except as a human being like us, and we behold not any follow thee except the meanest of us, by an immature opinion; nor We behold in you any exellency over us; nay! we deem you liars. +","इसपर उसकी क़ौम के सरदार, जिन्होंने इनकार किया था, कहने लगे, ""हमारी दृष्टि में तो तुम हमारे ही जैसे आदमी हो और हम देखते है कि बस कुछ ऐसे लोग ही तुम्हारे अनुयायी है जो पहली स्पष्ट में हमारे यहाँ के नीच है। हम अपने मुक़ाबले में तुममें कोई बड़ाई नहीं देखते, बल्कि हम तो तुम्हें झूठा समझते है।"" +","isapar uski aum ke sardar , jinhonne inkar kiya tha , kahne lage , hamari drishti men to follow hamare hi jaise aadmi ho aur ham thee hai ki bas kuchh aese people hi tumhare anuyayi hai jo pahli spasht men hamare yahan ke opinion chiefs ham apne muable men tummen koee baraee nahin thee , balki ham to tumhen jhootha samajhte chiefs +",negative,negative,negative +"Goods sent on consignment basis remain in possession and custody of the consignee. +","परेषण-आधार पर भेजा गया माल परेषिती के सुरक्षा व धारिता में रहता है। +","pareshan-aadhar par bheja gaya mal pareshiti ke suraksha v dharita men rahta hai. +",neutral,neutral,neutral +"because we can say one hundred will go into seven hundred and twenty - three. +","क्योंकि हम कह सकते हैं एक सौ सात सौ और बीस-तीन में जाना होगा। +","kyonki ham kah sakte hain ek sau sat sau aur bis-tin men jana hoga. +",neutral,neutral,neutral +"Among the principal 'infant' industries of this period mention must be made of sugar, paper, and matches. +","छोटे छोटे शिशु उद्योग इस समय के मुखऋ-ऊण्श्छ्ष्-य शिशु उद्योगों में चीनी, कागज और दियासलाऋ की चर्चा की जा सकती है. +","chhote chhote shishu udyog is period ke mukhri-oonshchhsh-y shishu industries men sugar , paper aur principal ki mention ki ja sakti hai +",neutral,neutral,neutral +"You know, my work is inspired +","आप जानते हैं, मेरा काम प्रभावित है +","aap jante hain , mera work prbhavit hai +",positive,positive,positive +"They repeated their demand that the nuclear missiles on the earth must be defused and destroyed. +","उन्होने अपनी मांग को दोहराया कि पृथ्वी के नाभिकीय प्रक्षेपणास्त्रों को बेकार और नष्ट कर दिया जाए। +","unhone apni demand ko dohraya ki earth ke nuclear prakshepnastron ko bekar aur nasht kar diya jae. +",negative,negative,negative +"A preliminary outline of a proposal, speech, book, presentation. +","किसी प्रस्ताव, भाषण, पुस्तक अथवा प्रस्तुतिकरण इत्यादि के लिए तैयार किया गया प्रारम्भिक खाका/प्रारूप। +","kisi proposal, speech, book athva presentation ityadi ke lie taiyar kiya gaya prarambhik khakapraroop. +",neutral,neutral,neutral +"about the kid who got this paper. +","उस बच्चे के विषय में जिसे यहपत्र मिला. +","us kid ke vishay men jise paper mila +",neutral,neutral,neutral +"These laboratories have a total annual analyzing capacity of 1. 31 lakh samples. +","इन प्रयोगशालाओं में वर्ष में 1.31 लाख नमूनों की जांच करने की क्षमता है। +","in laboratories men total men 131 lakh samples ki janch karne ki capacity hai. +",neutral,neutral,neutral +"Traditionally, welding has been used as a means of fabrication. +","पारम्परिक रूप से वेल्डिंग को विनिर्माण के साधन के रूप में उपयोग किया गया है। +","paramprik roop se velding ko vinirman ke sadhan ke roop men upyog kiya gaya hai. +",neutral,neutral,neutral +"We can talk to him as soon as we know that Binoy Babu is willing. +","विनय बाबू-राज है, यह जानकर ही तो उनसे कहूँगी। +","binoy baboo-raj hai , yah janakar hi to unse kahoongi. +",neutral,neutral,neutral +"He listened to the wind, and felt the stones beneath his feet. +","उसे हवा की आवाज सुनाई दी और पैरों के नीचे पत्थर भी महसूस हुए। +","use wind ki aavaj sunaee di aur feet ke niche stones bhi mahsoos hue. +",neutral,neutral,neutral +"Have you got your cord with you? +","तुम्हारे पास अपनी डोरी है न। +","tumhare pas apni cord hai n. +",neutral,neutral,neutral +"Motions, though they cover a variety of proceedings of the House, fall into three principal categories namely, Substantive Motions, Substitute Motions, and Subsidiary Motions. +","यद्यपि प्रस्ताव सदन की विभिन्न कार्यवाहियों से संबंधित होते हैं तथापि उन्हें तीन प्रमुख श्रेणियों में रखा जा सकता है, अर्थात मूल (सब्सटेंटिव) प्रस्ताव, स्थानापन्न (सबस्टीट्यूट) प्रस्ताव और सहायक (सब्सीडियरी) प्रस्ताव. +","yadypi prastav sadan ki vibhinn karyvahiyon se snbndhit hote hain tathapi unhen tin prmukh shreniyon men rakha ja sakta hai, arthat mool sabstentiv prastav, sthanapann sabastityoot prastav aur sahayak sabsidiyri prastav +",neutral,neutral,neutral +"Is Taj Mahal in realty the Temple of Lord Shiva? +","क्या ताजमहल वास्तव में शिव मंदिर है? +","taj mahal vastav realty the temple hai +",neutral,neutral,neutral +"There were errors trying to start the X server. +","एक्स सर्वर प्रारंभ करने की कोशिश में त्रुटियाँ हुईं. +","eks sarvar prarnbh karne ki koshish men trutiyan hueen +",negative,negative,negative +"So from A, we look at the neighbors of A. The neighbors of A are B and C. +","इसलिए A से, हम ए के पड़ोसियों में देखो B और c. A के पड़ोसी हैं +","islie A se, ham e ke parosiyon men dekho B aur c A ke parosi hain +",neutral,neutral,neutral +"Snow leopard hunts blue sheep in the Himalayas. +","हिम तेंदुआ हिमालय में नीली भेड़ का शिकार करता है। +","snow leopard himalayas men blue sheep ka hunts karta hai. +",neutral,neutral,neutral +"Soon he was seeking terms with the British. +","शीग्र ही मानसिंह अंग्रेजों के साथ सौदे बाजी करने तात्या टोपे लगा। +","shigr hi mansinh british ke sath terms baji karne tatya tope laga. +",neutral,neutral,neutral +"Didn 't he conquer Bengal *? +","उसने तो बंगाल को जीत लिया था न? +","usne to bengal ko didn liya tha n +",neutral,neutral,neutral +"We've driven from San Francisco to Los Angeles on Highway 1. +","हमने इसे हाईवे 1 पर सैन फ्रांसिस्को से लॉस एंजेलेस तक चलाया है +","hamne ise haeeve 1 par san phransisko se ls enjeles tak chalaya hai +",neutral,neutral,neutral +"learned the correct initial state for the 17 - bit LFSR, we will have also +","सही प्रारंभिक राज्य सीखा 17-बिट LFSR के लिए, हम भी करना होगा +","correct initial state learned 17-bit LFSR ke lie, ham bhi karna hoga +",neutral,neutral,neutral +"Another revolutionary ' action ' which took place a few months earlier also deserves notice . +","एक और क्रांतिकारी कार्यवाही भी , जो कुद महीनों पहले की गई थी , घ्यानाकर्षक है . +","ek aur revolutionary action bhi , jo months earlier pahle ki gee thi , place hai +",neutral,neutral,neutral +"An institution which provides academic education +","ऐसी संस्था जो शात्रीय शिक्षा उपलब्ध कराती है +","aesi institution jo academic education upalabdh karati hai +",neutral,neutral,neutral +"Issuer:% s Subject:% s Fingerprint:% s Signature:% s +","निर्गमकः% s विषयः% s फिंगरप्रिंटः% s हस्ताक्षरः% s +","issuer s vishya s fingerprint s signature s +",neutral,neutral,neutral +"he takes a nap in the afternoon, and I got to go. +","वे दोपहर में सोते हैं, और मुझे ज़रूरी जाना है. +","ve afternoon men sote hain, aur mujhe zaroori jana hai +",neutral,neutral,neutral +"And among them are some that say, “Our Lord! Give us good in the world and good in the Hereafter, and save us from the punishment of fire! ” +","और बाज़ बन्दे ऐसे हैं कि जो दुआ करते हैं कि ऐ मेरे पालने वाले मुझे दुनिया में नेअमत दे और आख़िरत में सवाब दे और दोज़ख़ की बाग से बचा +","aur baz bande aese hain ki jo duaa karte hain ki ae mere palne vale mujhe duniya men neamat de aur aairat men savab de aur punishment of fire se bacha +",positive,positive,positive +"(18) ""company in which the public are substantially interested""a company is said to be a company in which the public are substantially interested— +","(18) ''वह कंपनी जिसमें जनता पर्याप्त हितबद्ध है''- किसी कंपनी को ऐसी कंपनी, जिसमें जनता82 पर्याप्त रूप से हितबद्ध है, तब कहा जाता है जब– +","18 vah knpni jismen public are substantially hai- kisi knpni ko aesi knpni, jismen janta82 paryapt roop se hitabaddh hai, tab kaha jata hai jab +",neutral,neutral,neutral +"Wait until we are told to show the window before executing the command +","कमांड चलाने से पहले इंतजार करें जब तक कि विंडो दिखाने के लिए कहा जाए +","command chalane se pahle wait karen jab tak ki window show ke lie kaha jae +",neutral,neutral,neutral +"Everything was in motionup and down and sideways and forwards. +","हर चीज हरकत में थी-ऊपर, नीचे, दायें, बायें, सामने। +","everything chij harakat men thi-oopar , niche , dayen , bayen , samne. +",neutral,neutral,neutral +"Alaukik Laukikata Formality with a Supernatural Touch is one of his most remarkable stories of this period. +","इस दौर में लिखी माणिक की एक अद्वितीय कहानी है अलौकिक लौकिकता। +","is daur men likhi manik ki ek remarkable stories hai alaukik laukikta. +",positive,positive,positive +"It was difficult not to think about what he had left behind. +","जो कुछ वह पीछे छोड़कर आया है, उसके बारे में एकदम कुछ न सोचना उसके लिए बहुत मुश्किल था। +","jo kuchh vah pichhe chhorakar aaya hai , uske bare men ekadam kuchh n sochna uske lie bahut difficult tha. +",negative,negative,negative +"But they had not been sent as guardians over them. +","हालाँकि वे उनपर कोई निगरानी करनेवाले बनाकर नहीं भेजे गए थे +","halanki ve unapar koee guardians karnevale banakar nahin bheje ge the +",neutral,neutral,neutral +"The doctor proscribed smoking in the waiting room of his clinic. +","डॉक्टर ने अपने क्लिनिक के प्रतीक्षा कक्ष में धूम्रपान की सख्त मनाही कर दी। +","doctor ne apne clinic ke prtiksha room men smoking ki sakht manahi kar di. +",neutral,neutral,neutral +"It was karthik month when the candle was lit +","कार्तिक मास की सघन काली अमावस्या की वह रात्रि दीयों की रोशनी से जगमगा उठी। +","month mas ki saghan kali amavasya ki vah ratri candle was lit se jagamga uthi. +",neutral,neutral,neutral +"In a Message, the President has said: +","एक संदेश में राष्ट्रपति ने कहा हैः +","ek message men president ne kaha haia +",neutral,neutral,neutral +"So my question is, if it can be done in Europe, +","तो मेरा प्रश्न है, कि यदि ये यूरोप में किया जा सकता है, +","to mera question hai , ki yadi ye europe men kiya ja sakta hai , +",neutral,neutral,neutral +"The Cyber City is operational since then. +","यह साइबर सिटी तभी से चालू है। +","yah cyber city tabhi se chaloo operational +",neutral,neutral,neutral +"where the entire revenue of the Afghan state +","जहां अफगान राज्य का पूरा राजस्व +","jahan aphgan state ka poora revenue +",neutral,neutral,neutral +"You may bring up to two witnesses to the hearing . +","आप अधिक से अधिक सुनवाई में दो गवाह ला सकते हैं . +","aap adhik se adhik hearing men do witnesses la sakte hain +",neutral,neutral,neutral +"Computers which are connected by internet can do exchange of their information through rules of internet. +","अंतरजाल से जुडे हुए संगणक आपस मे अंतरजाल नियमावली () के जरिए सूचना का आदान-प्रदान करते है। +","computers se jude hue snganak exchange me computers rules ke jarie information ka aadan-prdan karte hai. +",neutral,neutral,neutral +"There were the usual speeches, garlanding and so on. +","उसमें, सामान्यतः जैसा होता है, मालाएं पहनाई गई और भाषण आदि हुए। +","usmen, usual jaisa hota hai, malaen pahnaee gee aur speeches aadi hue. +",neutral,neutral,neutral +"Toggle display of the status bar. +","स्थिति पट्टी का प्रदर्शन टॉगल करें. +","status bar ka display toggle karen +",neutral,neutral,neutral +"An Iranian government - sponsored radio station gleefully predicts that its brand of militant Islam within the United States will “provoke a dangerous and crucial confrontation” with the American authorities. +","ईरानी सरकार द्वारा प्रायोजित एक रेडियो स्टेशन ने अत्यंत प्रसन्नतापूर्वक भविष्यवाणी की कि उसके प्रकार का उग्रवादी इस्लाम अमेरिका में अमेरिकी अधिकारियों के साथ महत्वपूर्ण और खतरनाक संघर्ष को प्रोत्साहित कर देगा। +","iranian government dvara sponsored ek radio station ne crucial prasanntapoorvak bhavishyvani ki ki uske brand ka militant islam united men ameriki authorities ke sath mahatvpoorn aur dangerous confrontation ko protsahit kar dega. +",negative,negative,negative +"(a) expenditure in connection with— +","(क) निम्नलिखित के संबंध में व्यय– +","expenditure nimnlikhit ke connection men vyay +",neutral,neutral,neutral +"These dealt with matters arising during periods of the first and second Emergencies proclaimed in 1962 and 1971. +","इनका संबंध उन मामलों से था जो 1962 और 1971 में उदघोषित आपात उपबंध पहले और दूसरे आपातो के दौरान पैदा हुए। +","inka first un matters se tha jo 1962 aur 1971 men udghoshit emergencies upbndh pahle aur doosre aapato ke dauran periods hue. +",neutral,neutral,neutral +"It was presented to the Legislative Council in 1856 and was passed in 1860. +","इसे 1856 में विधायी परिषद के समक्ष प्रस्तुत किया गया और1860 में पारित किया गया। +","ise 1856 men legislative council ke samaksh prastut kiya gaya aur1860 men parit kiya gaya. +",neutral,neutral,neutral +"how where they think the flag had been changes +","कैसे वो सोचते हैं कि कहाँ फ्लैग बदल गया है +","kaise vo sochte hain ki kahan flag badal gaya hai +",neutral,neutral,neutral +"If this option is checked, every new view will display marks for code folding, if code folding is available. +","यदि यह विकल्प चुना जाता है, हर नया दृश्य कोड फोल्डिंग के मार्क्स दिखाएगा, यदि कोड फोल्डिंग उपलब्ध है. +","yadi yah option is checked hai, har naya drishy code folding ke display marks, yadi code folding upalabdh hai +",neutral,neutral,neutral +"Common software for accounting has been finalised by NABARD and sent to 20 States for implementation. +","लेखांकन के लिए कॉमन सॉफ्टवेयर को नाबार्ड द्वारा अंतिम रूप दिया गया और इसे कार्यान्वयन के लिए 20 राज्यों को भेज दिया गया है. +","accounting ke lie common software ko nabard dvara antim roop diya gaya aur ise karyanvayan ke lie 20 states ko bhej diya gaya hai +",neutral,neutral,neutral +"Kalpana was the first Indian born woman to fly into space and she was the second person of Indian origin to go into space. +","कल्पना जी अंतरिक्ष में उड़ने वाली प्रथम भारत में जन्मी महिला थीं और अंतरिक्ष में उड़ाने वाली भारतीय मूल की दूसरी व्यक्ति थीं। +","kalpna ji fly into space vali pratham bharat woman to fly thin aur antriksh men urane vali bhartiy mool ki doosri vyakti thin. +",neutral,neutral,neutral +"A drainage basin is an extent of land. +","मैले की द्रोणी जमीन के अंत में होती है। +","drainage ki basin land ke ant men hoti extent +",neutral,neutral,neutral +"Disability and Housing Policy housingpolicy_disability@detr.gov.uk +","अपंग और रिहाइश के बारे में नीति housingpolicy_disability@detr.gov.uk +","apng aur housing ke bare men policy housingpolicy_disabilitydetrgovuk +",neutral,neutral,neutral +"&Always Open Files of This Type +","इस प्रकार की फ़ाइलें &हमेशा खोलें +","is type ki files open kholen +",neutral,neutral,neutral +"Checking for installed package '% s' +","संस्थापित संकुल '% s' के लिए जाँच रहा है +","installed package s ke lie checking raha hai +",neutral,neutral,neutral +"Under the Act, the Controller - General of Patents, Designs and Trade Marks under Department of Industrial Policy and promotion, Ministry of Commerce and Industry is the Controller of Designs. +","अधिनियम के तहत, महानियंत्रक, पेटेंट, डिज़ाइन और ट्रेड मार्क वाणिज्यय एवं उद्योग मंत्रालय, औद्योगिक नीति एवं प्रवर्तन विभाग के अंतर्गत डिज़ाइनों का नियंत्रक है। +","adhiniyam ke tahat, mahaniyntrak, petent, designs and trade mark vanijyay evn udyog mntralay, audyogik policy and promotion vibhag ke antargat dizainon ka niyntrak hai. +",neutral,neutral,neutral +"Indian states ranking by media exposure +","मीडिया की पहुँच के आधार पर भारत के राज्य +","media ki exposure ke ranking par indian states ranking +",neutral,neutral,neutral +"Eat of the lawful and good things God has provided for you, and be thankful for God’s blessings, if it is Him that you serve. +","फिर अज़ाब (ख़ुदा) ने उन्हें ले डाला और वह ज़ालिम थे ही तो ख़ुदा ने जो कुछ तुम्हें हलाल तय्यब (ताहिर) रोज़ी दी है उसको (शौक़ से) खाओ और अगर तुम खुदा ही की परसतिश (का दावा करते हो) +","phir azab god ne unhen eat dala aur vah good the hi to god ne jo kuchh tumhen lawful tayyab thankful s di hai usko shau se khao aur agar tum khuda hi ki parastish ka dava karte ho +",positive,positive,positive +"Accessory products are to be purchased. +","होत्पादन को खरीदा जाने वाला है। +","hotpadan ko products jane accessory hai. +",neutral,neutral,neutral +"As the first woman from India to clinch this Grand Slam title,you have set a new benchmark of success for Tennis players that will inspire the youth of India, especially women. +","इस ग्रांड स्लाम खिताब को जीतने वाली भारत की पहली महिला के रूप में आपने टेनिस के खिलाड़ियों के लिए सफलता का एक नया कीर्तिमान स्थापित कर दिया है जो भारत के युवाओं,खासकर महिलाओं को प्रेरित करेगा। +","is grand slam khitab ko jitne vali india ki first woman ke roop men aapne tennis ke players ke lie success ka ek new kirtiman sthapit kar diya hai jo india ke youth , khasakar women ko prerit karega. +",positive,positive,positive +"Candytuft is mostly cultivated for ornamental purposes. +","चांदी टफ या कैंडीटफ्ट मुख्यत सजावटी उद्देश्यों के लिए उगाए जाते हैं +","chandi taph ya kainditapht mukhyat ornamental purposes ke lie ugae jate hain +",neutral,neutral,neutral +"Your local social services department will tell you about other local organisations. +","आप की लोकल कौंसिल की सेवाएं वाला विभाग आप को आप के स्थानीय समूहों के बारे में बतायेगा। +","aap ki lokal local social services vala vibhag aap ko aap ke local organisations ke bare men batayega. +",neutral,neutral,neutral +"It gives me great pleasure to address this distinguished gathering of business participants. Other than working on business deals, such events are important platforms for deepening mutual engagement and interaction, and providing an opportunity to think creatively about ways to develop the potential of our relationship. +","मुझे व्यापार प्रतिभागियों के इस विशिष्ट समूह को संबोधित करते हुए अत्यंत प्रसन्नता हो रही है। व्यापार सौदों पर कार्य करने के अलावा, ऐसे समारोह परस्पर सम्बन्ध और बातचीत में घनिष्ठता लाने तथा अपने रिश्तों की संभावनाएं पैदा करने के तरीकों के बारे में रचनात्मक ढंग से विचार करने के महत्त्वपूर्ण मंच होते हैं। +","mujhe vyapar prtibhagiyon ke is vishisht samooh ko snbodhit karte hue atynt prasannta ho rahi hai. vyapar saudon par kary karne ke alava, aese samaroh paraspar sambandh aur batchit men ghanishthta lane tatha apne rishton ki snbhavnaen paida karne ke tarikon ke bare men rachnatmak dhng se vichar karne ke mahattvpoorn mnch hote hain. +",positive,positive,positive +"You can select one or more devices. +","आप एक या अधिक उपकरण चुन सकते हैं. +","aap ek ya more devices chun sakte hain +",neutral,neutral,neutral +"An effective regulatory and legal framework is indispensable for the proper and sustained growth of the company. +","कंपनी की उचित तथा स्थाथयी संवृद्धि के लिए एक प्रभावपूर्ण विनियामक तथा कानूनी ढांचा अपरिहार्य है। +","effective ki proper tatha sthathyi growth ke lie ek prbhavpoorn regulatory tatha legal framework indispensable hai. +",positive,positive,positive +"Thus decision to provide following facilities to jail inmates was taken: +","अतः जेल के कारावासियों को निम्नलिखित सुविधाएं प्रदान करने का निर्णय लिया गयाः +","ata jel ke inmates ko nimnlikhit facilities prdan karne ka decision liya gayaa +",neutral,neutral,neutral +"K. G. M Khan, a dweeler of lahore, made a pure gold urn. +","का़जि़म खान लाहौर का निवासी ने ठोस सुवर्ण कलश निर्मित किया। +","kjm khan lahaur ka nivasi ne thos suvarn kalash nirmit kiya. +",neutral,neutral,neutral +"No, it was not there +","नही, वो उधर नही था +","nahi, vo udhar nahi tha +",neutral,neutral,neutral +"Saponification literally means soap making. +","साबुनीकरण या साबुनीभवन का शाब्दिक अर्थ साबुन निर्माण है. +","sabunikaran ya sabunibhavan ka shabdik arth soap making hai +",neutral,neutral,neutral +"Flies carry diseases from infected persons to healthy persons. +","मक्खियां संक्रमित व्यक्तियों से स्वस्थ व्यक्तियों में बीमारियाँ फैलाती हैं। +","flies infected persons se healthy persons men diseases phailati hain. +",negative,negative,negative +"Doppler radar is generally used in police radar systems and also for measuring the velocity of hurricanes. +","डॉपलर रडार का उपयोग आम तौर पर पुलिस रडार प्रणालियों में किया जाता है, इसके साथ ही इसका इस्तेमाल तूफान के वेग को मापने के लिए भी किया जाता है +","doppler radar ka upyog aam taur par police radar systems men kiya jata hai, iske sath hi iska istemal velocity of hurricanes ko mapne ke lie bhi kiya jata hai +",neutral,neutral,neutral +"And in this state, he is married and brings home a wife. +","इसी हालत मके उसका विवाह हो जाता है और पत्नी घर में ले आता है। +","isi halat make uska vivah ho jata hai aur patni ghar men le aata married +",neutral,neutral,neutral +"The quantitative relation between the targets and the achievement. +","लक्ष्य तथा उनके विरूद्ध कार्य सम्पादन के संदर्भ में संख्यात्मक अनुपात। +","lakshy tatha unke virooddh kary sampadan ke sndarbh men snkhyatmak anupat. +",neutral,neutral,neutral +"The writer of this monograph met her in October 1972 in Leningrad. +","इस पुस्तक के लेखक की अक्तूबर 1972 में, लेनिनग्राद में, लोला से, उनके घर पर भेंट हुई। +","is pustak ke writer ki october monograph men , leningrad men , lola se , unke ghar par bhent huee. +",neutral,neutral,neutral +"“ We have always supported the UDF and have a right to nominate those whom we believe will help us , ” says Monsignor Paul Kakkassery , the diocese 's spokesman . +","उनके प्रवक्ता मॉनसिग्नोर पॉल कक्कास्सेरी ने कहा भी , ' ' हमने हमेशा संलमो का समर्थन किया है.इसलिए हमें ऐसे लगों को मनोनीत करने का अधिकार है जिनके बारे में हमारा मानना है कि वे हमारी मदद करेंगे . ' ' +","unke spokesman monsignor paul kakkassery ne kaha bhi , hamne hamesha udf ka samarthan kiya haiislie hamen aese lagon ko manonit karne ka right hai jinke bare men hamara manna hai ki ve hamari madad karenge +",positive,positive,positive +"The process of arbitration that has to be followed compulsorily as per law. +","किसी मामले में पंचनिर्णय की प्रक्रिया जो कानूनन अनिवार्य रूप से पालन करनी होगी। +","kisi mamle men arbitration ki process jo law anivary roop se palan karni hogi. +",neutral,neutral,neutral +"I take this opportunity to convey my best wishes for your Excellency’s well being and for the continued progress and prosperity of the friendly people of Saint Vincent and the Grenadines. +","मैं इस अवसर पर महामहिम की कुशलता तथा सेंट विंसेंट एवं ग्रेनडीन की मित्र जनता की निरंतर प्रगति और समृद्धि के लिए अपनी मेरी शुभकामनाएं देता हूं। +","main is avasar par mahamhim ki kushalta tatha sent vinsent evn grendin ki mitr janta ki nirntar pragti aur samriddhi ke lie apni meri shubhkamnaen deta hoon. +",positive,positive,positive +"Occurrences when an extension was installed +","एक्सटेंशन इंस्टॉल किए जाने की पुनरावृत्तियां +","extension instl kie jane ki occurrences +",neutral,neutral,neutral +"Finance Bill 2008 was published on 27th March. +","वित्त विधेयक 29 मार्च 2000 को प्रकाशित किया गया था। +","finance bill 29 march 2000 ko prkashit kiya gaya tha. +",neutral,neutral,neutral +"Then We destroyed the others. +","फिर हमने बाक़ी लोगों को तबाह व बर्बाद कर दिया +","phir hamne bai logon ko tabah v barbad kar diya +",negative,negative,negative +"Mountain Biking (External website that opens in a new window) +","माउंटेन बाइकेन (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","mountain baiken external website jo ek new vindon men khulti hain +",neutral,neutral,neutral +"The Ministry of Education may take action: - +","शिक्षा मंत्रालय निम्नलिखित विषय में कार्रवाई करें-- +","education mntralay nimnlikhit vishay men karrvaee karen-- +",neutral,neutral,neutral +"141. [Omitted by the Taxation Laws (Amendment) Act, 1970, w.e.f. 1-4-1971.] +","141. [कराधान विधि (संशोधन) अधिनियम, 1970 द्वारा 1.4.1971 से लोप किया गया।] +","141 kradhan laws snshodhan act, 1970 dvara 141971 se omitted kiya gaya. +",neutral,neutral,neutral +"This is how We reward the doers of good. +","मुबारक हम नेकोकारों को ऐसा ही बदला दिया करते हैं +","mubarak ham reward the doers hi badla diya karte hain +",positive,positive,positive +"follow the line all the way from B to E, +","बी से ई तक की रेखा के पीछे पूरे रास्ते चलिए, +","bi se ee tak ki rekha ke follow follow the line, +",neutral,neutral,neutral +"In short they were now in a mood to send their sons to any school which the Anjuman set up. +","संक्षिप्त में, अब अंजुमन द्वारा स्थापित स्कूल में अपने पुत्रों के भेजने का उनका मन हो गया। +","short men , ab anjuman dvara sthapit school men apne sons ke bhejne ka unka mood ho gaya. +",neutral,neutral,neutral +"and there go round them youths, their own, as if they were hidden pearls. +","(और ख़िदमत के लिए) नौजवान लड़के उनके आस पास चक्कर लगाया करेंगे वह (हुस्न व जमाल में) गोया एहतियात से रखे हुए मोती हैं +","aur youths ke lie naujvan own unke aas pas chakkar lagaya karenge vah pearls v jamal men goya ehtiyat se rakhe hue moti hain +",neutral,neutral,neutral +"Even younger women pull the strings from behind. +","कम उम्र की स्त्रियां भी पर्दे के पीछे से सूत्रधार बनी रहती हैं। +","kam younger ki women bhi parde ke pichhe se sootrdhar bani rahti hain. +",neutral,neutral,neutral +"In fact, someone on Reddit thought, +","बल्कि, रेडिट पे किसी नें सोचा, +","fact , reddit pe kisi nen thought , +",neutral,neutral,neutral +"Circulation of water from the tank through the collectors and back to the tank continues automatically due to density difference between hot and cold water (thermosyphon effect). +","टंकी से संग्राहक तक पानी की धारा का प्रवाह गर्म और ठंडे पानी के घनत्व में अंतर (थर्मोसाइफन प्रभाव) के कारण हमेशा स्वचालित ढंग से बना रहता है। +","tank se collectors tak water ki dhara ka circulation hot aur thnde water ke ghanatv men difference tharmosaiphan effect ke karan hamesha svchalit dhng se bana rahta hai. +",neutral,neutral,neutral +"When the eye is bewildered, +","तो जब निगाह चौंधिया जाएगी, +","to jab eye chaundhiya jaegi , +",neutral,neutral,neutral +"Program module is a file that contains instructions which are either in the form of source code or machine language. +","माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत कोड या मशीन भाषा के रूप में अनुदेश निहित होते हैं। +","madyool, ek snchika hoti hai, jismen ya to srot code or machine bhasha ke roop men anudesh nihit hote hain. +",neutral,neutral,neutral +"Since, most of the producer organizations are at nascent stage, their focus is mainly on production and to some extent the aggregation. +","चूंकि अधिकतर उत्पावदक संगठन शुरूआती अवस्थाथ में हैं, अतः उनका मुख्य फोकस उत्पादन और कुछ हद तक संग्रहण पर है. +","choonki most producer sngathan stage nascent men hain , ata unka mukhy focus production aur kuchh extent tak sngrahan par hai +",neutral,neutral,neutral +"An effective regulatory and legal framework is indispensable for the proper and sustained growth of the company. +","कंपनी की उचित तथा स्थाथयी संवृद्धि के लिए एक प्रभावपूर्ण विनियामक तथा कानूनी ढांचा अपरिहार्य है। +","knpni ki uchit tatha sthathyi snvriddhi ke lie ek prbhavpoorn regulatory and legal framework is indispensable +",positive,positive,positive +"associated or substantially identical trade marks +","सहयुक्त या सारत तदरूप व्यापार चिह्न +","sahyukt ya sarat identical trade marks +",neutral,neutral,neutral +"Before the boy could reply, a butterfly appeared and fluttered between him and the old man. +","इससे पहले कि लड़का कुछ जवाब देता एक तितली उन दोनों के बीच आकर अपने पर फड़फड़ाने लगी। +","old pahle ki boy kuchh javab deta ek butterfly un donon ke bich aakar apne par pharapharane lagi. +",neutral,neutral,neutral +"For more details log on to source link: http: / / www. orissa. gov. in / commerce% 26transport / +","अधिक जानकारी के लिए देखेंः http: / / www. orissa. gov. in / commerce% 26transport / +","more jankari ke lie source http : commerce orissa gov orissa commerce 26transport +",neutral,neutral,neutral +"Padhya and Brahmbhatt, who painstakingly gathered facts on the lake, produced satellite pictures that showed the presence of a lake. +","पाध्या और ब्रह्मंभट्टं ने पूरी कोशिश करके तथ्य जुटाए और उपग्रह से खींची गई तस्वीरें पेश की, जिनसे वहां ज्हील होने की पुष्टि होती थी. +","padhya aur brahmbhatt ne poori koshish karke facts lake aur satellite se khinchi gee pictures pesh ki , jinse vahan jhil hone ki pushti hoti thi +",neutral,neutral,neutral +"A dvitala and hence ashtanga, or ashtavarga vimana of the same Nagara order, square from base to apex is illustrated in the incomplete Valaiyankuttai ratha facing east. +","उसी नागर श्रेणी का एक द्वितल और इसलिए अष्टांग या अष्टवर्ग, आधार से शिखर तक वर्गाकार विमान, पूर्वाभिमुख अपूर्ण वलैयांकुट्टई रथ के रूप में देखा जा सकता है। +","usi nagar shreni ka ek dvital aur islie ashtang ya ashtavarg, square from base tak vargakar viman, facing east valaiyankuttee rath ke roop men dekha ja sakta hai. +",neutral,neutral,neutral +"Some of the accused protested against being treated as common cirminals, and not as political prisoners, who had declared open war against the Crown. +","कुछ अभियोगियों ने, जिन्होंने राज के खिलाफ खुले युद्ध की घोषणा की थी, अपने साथ राजनैतिक बंदियों की जगह पर आम अपराधियों जैसा व्यवहार किये जाने का विरोध किया। +","kuchh abhiyogiyon ne, jinhonne raj ke declared open war ki ghoshna ki thi, apne sath political prisoners ki jagah par aam apradhiyon jaisa vyavhar kiye jane ka virodh kiya. +",negative,negative,negative +"Web Server to Predict Hub Proteins +","हब प्रोटीन की भविष्यवाणी हेतु वैब सर्वर +","hab proteins ki predict hetu web server +",neutral,neutral,neutral +"16. Pitchblende and other uranium ores. +","16. पिचब्लेंड और अन्य यूरेनियम अयस्क। +","pitchblende pichablend aur other uranium ores +",neutral,neutral,neutral +"Look for ABTA -LRB- Association of British Travel Agents -RRB- or AITO -LRB- Association of Independent Tour Operators -RRB- on brochures or invoices . +","सैर सपाटे की पुस्तकाओं या इंवाईसेज़ में आभ्ठा ( आस्सोचिअटिओन् ओङ् भ्रिटिस्ह् ठ्रवेल् आगेन्ट्स् ) या आईठौ ( आस्सोचिअटिओन् ओङ् ईन्डेपेन्डेन्ट् ठोउर् औपेरटोर्स् ) की तालाश कीजिए . +","tour operators ki pustkaon ya invaeesez men aabhtha aassochiation ong bhritish thrvel aagents ya aaeethau aassochiation ong eendependent thour aupertors ki talash kijie +",neutral,neutral,neutral +"Drinking the way thirsty camels drink. +","और पियोगे भी तो प्यासे ऊँट का सा (डग डगा के) पीना +","aur piyoge bhi to thirsty camels ka way dag daga ke pina +",neutral,neutral,neutral +"Apply Rajiv Gandhi Advocate’s Training Scheme +","राजीव गाँधी अधिवक्ता प्रशिक्षण हेतु आवेदन करना +","rajiv gandhi advocate training hetu karna +",neutral,neutral,neutral +"Ne _ ver Add Such File +","कभी ऐसी फाइल मत जोड़ें (_ v) +","such aesi file mat ne _ ver +",neutral,neutral,neutral +"The kutas and salas over the mandapa are of a smaller size than those over the aditala as usual. +","मंडप के ऊपर के कूट और शाला आदितल के ऊपर के कूटों और शलाओं से छोटे हैं जो कि सामान्य है। +","mndap ke oopar ke kutas and salas aadital ke oopar ke kooton aur shalaon se chhote hain jo ki samany hai. +",neutral,neutral,neutral +"The meeting was held that very night at about 11 or 12 p. m. +","रातके लगभग 11 या 12 बजें यह सभा हुई। +","ratke lagabhag night ya 12 bajen yah meeting huee. +",neutral,neutral,neutral +"It ' s what turns lead into gold , and makes the gold return to the earth . ” +","यही चक्र सीसे को सोना बना देता है , और सोने को धरती में वापिस समावेश करा देता है । ” +","yahi chakr lead into gold bana deta hai , aur sone ko dharti men vapis samavesh kara deta hai . +",neutral,neutral,neutral +"Registration under Shops and Establishment Act +","दुकानें और प्रतिष्ठान अधिनियम के तहत पंजीकरण +","shops aur establishment act ke tahat registration +",neutral,neutral,neutral +"There is also an international dimension to the problem that has not been addressed except for our having shouted from the rooftops that Pakistan is responsible for cross - border terrorism. +","समस्या का अंतरराष्ट्रीय पहलू भी है जिस पर कभी गौर नहीं किया गया, सिर्फ यही कहा जाता रहा कि सीमा पार से आतंकवाद को बढवा देने के लिए पाकिस्तान दोषी है. +","samasya ka international dimension bhi hai jis par kabhi gaur nahin kiya gaya, sirph yahi kaha jata raha ki sima responsible for cross ko badhva dene ke lie pakistan doshi hai +",negative,negative,negative +"Soon he was seeking terms with the British. +","शीग्र ही मानसिंह अंग्रेजों के साथ सौदे बाजी करने तात्या टोपे लगा। +","shigr hi mansinh angrejon ke sath saude baji karne tatya tope terms +",neutral,neutral,neutral +"Technologies that enable efficient use of biomass are becoming prevalent in rural areas. +","जैव ईंधन के प्रभावी उपयोग को सुरक्षित करती प्रौद्योगिकियाँ ग्रामीण क्षेत्रों में फैल रहीं हैं। +","jaiv eendhan ke prbhavi upyog ko surakshit karti praudyogikiyan gramin kshetron men phail rahin hain. +",positive,positive,positive +"The indo function is installed in all aircrafts of the company. +","कंपनी के सभी विमानों में इंडो फलन संस्थापित किया गया है। +","company ke sabhi aircrafts men indo function snsthapit kiya gaya hai. +",neutral,neutral,neutral +"A papilionaceous flower has a corolla, usually with five petals that include a large upper petal, the vexillum. +","एक कोरोला का तितली जैसा फूल जिस की पांच पंखुड़ियो में एक सबसे उपरी लंबी पत्ती जो होती है ध्वज। +","ek corolla ka large jaisa flower jis ki panch pnkhuriyo men ek sabse upper lnbi patti jo hoti hai dhvaj. +",neutral,neutral,neutral +"A venture capital fund set up as a company shall be wound up in accordance with the provisions of the Companies Act, 1956 (1 of 1956). +","एक कंपनी के रूप में स्थापपित उद्यम पूंजी निधि को कंपनी अधिनियम 1956 (1956 का 1) के प्रावधानों के अनुसार समाप्त कर दिया जाएगा। +","ek company ke roop men sthappit venture poonji fund ko company act 1956 1956 ka 1 ke provisions ke accordance samapt kar diya jaega. +",neutral,neutral,neutral +"Common software for accounting has been finalised by NABARD and sent to 20 States for implementation. +","लेखांकन के लिए कॉमन सॉफ्टवेयर को नाबार्ड द्वारा अंतिम रूप दिया गया और इसे कार्यान्वयन के लिए 20 राज्यों को भेज दिया गया है. +","accounting ke lie common software ko nabard dvara antim roop diya gaya aur ise implementation ke lie 20 states ko bhej diya gaya hai +",neutral,neutral,neutral +"Rest house means a building used for shelter by travelers. +","विश्राम गृह का अर्थ उस इमारत से होता है, जिसका प्रयोग यात्रियों द्वारा आश्रय के लिए किया जाता है। +","rest house ka arth us imarat se hota hai, jiska pryog shelter by travelers ke lie kiya jata hai. +",neutral,neutral,neutral +"Some of the accused protested against being treated as common cirminals, and not as political prisoners, who had declared open war against the Crown. +","कुछ अभियोगियों ने, जिन्होंने राज के खिलाफ खुले युद्ध की घोषणा की थी, अपने साथ राजनैतिक बंदियों की जगह पर आम अपराधियों जैसा व्यवहार किये जाने का विरोध किया। +","kuchh abhiyogiyon ne , jinhonne raj ke khilaph open war ki ghoshna ki thi , apne sath political prisoners ki jagah par common apradhiyon jaisa vyavhar kiye jane ka virodh kiya. +",negative,negative,negative +"Purchasing of commodities in the market is such a way that the buyers are in a position to have control over the price. +","बाजार में निहित स्वार्थों वाले व्यक्तियों द्वारा माल की इस प्रकार खरीद करना जिससे वे बाजार पर मूल्य नियन्त्रण स्थापित करने में सफल हो जाएं। +","bajar men nihit svarthon vale vyaktiyon dvara mal ki is prkar kharid karna jisse ve bajar par mooly niyantran sthapit karne men saphal ho jaen. +",neutral,neutral,neutral +"I am concerned with matters of consequence. +","मैं … मैं गंभीर व्यक्ति हूँ न, मुझे बेकार की बातों से कोई दिलचस्पी नहीं। +","main main gnbhir vyakti hoon n, mujhe concerned with matters se koee dilachaspi nahin. +",neutral,neutral,neutral +"The President said that Legislative Assembly is the master of Executive in matters of taxation and finance. +","राष्ट्रपति ने कहा कि विधान सभा करारोपण तथा वित्त के मामले में कार्यपालिका की स्वामी है। +","rashtrapti ne kaha ki legislative assembly taxation and finance ke executive in matters ki svami hai. +",neutral,neutral,neutral +"Adjustment in relation to circumstances. +","परिस्थितियों के अनुरुप ढालने की प्रक्रिया। +","circumstances ke anurup adjustment ki prakriya. +",neutral,neutral,neutral +"The notion of CSR is not new to India. +","कॉरपोरेट सामाजिक उत्तरदायित्व का विचार भारत के लिए नया नहीं है। +","notion samajik uttardayitv ka vichar bharat ke lie naya nahin hai. +",neutral,neutral,neutral +"PRESIDENT RELEASES COMMEMORATIVE POSTAGE STAMP ON LATE SHRI RAMGOPAL JI MAHESHWARI, Rashtrapati Bhavan : 20.11.2012 +","राष्ट्रपति ने स्वर्गीय श्री रामगोपाल जी माहेश्वरी पर स्मारक डाक टिकट जारी किया, राष्ट्रपति भवन : 20.11.2012 +","rashtrapti ne svargiy shri ramgopal ji maheshvri par commemorative postage stamp jari kiya, rashtrapti bhavan : 20112012 +",neutral,neutral,neutral +"Which has been countersigned in a correct / proper manner. +","जो यथोचित ढंग से प्रतिहस्ताक्षरित किए गए हैं। +","jo proper manner se countersigned kie ge hain. +",neutral,neutral,neutral +"Questions may be about the treatment itself, for example: +","सवाल वैद्यकिय उपचार के बारे में भी हो सकते हैं, जैसे कि उदाहरण के तौर पर: +","questions vaidykiy treatment ke bare men bhi ho sakte hain , jaise ki udaharan ke taur par : +",neutral,neutral,neutral +"Font for text with fixed width, such as code examples. +","कोड उदाहरण के रूप में, फिक्स्ड चौड़ाई के साथ पाठ के लिए फ़ॉन्ट. +","kod udaharan ke roop men, fixed width ke sath path ke lie font +",neutral,neutral,neutral +"In his will Vitthal bhai patel named all his billions of property to Subash babu. +","विठ्ठल भाई पटेल ने अपनी वसीयत में अपनी करोडों की संपत्ती सुभाषबाबू के नाम कर दी। +","vitthal bhai patel ne apni vasiyat billions of property ki snpatti property to subash kar di. +",neutral,neutral,neutral +"The set that includes all of the elements of concern in a given study. +","प्रदत्त अध्ययन में सभी विषयगत अवयवों को धारण किया हुआ समुच्चय. +","pradatt study concern sabhi vishayagat avayvon ko dharan kiya huaa set +",neutral,neutral,neutral +"A sudden involuntary contraction of one or more muscle +","अचानक होने वाला एक या अधिक मांसपेशियों का संकुचन +","sudden hone involuntary ek ya adhik muscle ka contraction +",neutral,neutral,neutral +"He said that their job is multifarious. He advised them to always remember that their conduct and behaviour is a reflection not only of the police force but is actually a projection of the entire administration before the common people. +","उन्होंने कहा कि उनका कार्य बहुआयामी है। उन्होंने सलाह दी कि उन्हें यह सदैव याद रखना चाहिए कि उनके व्यवहार और आचरण से न केवल पुलिस सेवा के बारे में नजरिया बनाता है वरन् वह वास्तव में आम जनता के सामने पूरे प्रशासन का प्रतिबिंब होता है। +","unhonne kaha ki unka job is multifarious unhonne salah di ki unhen yah sadaiv yad rakhna chahie ki unke vyavhar aur aacharan se n keval pulis seva ke bare men najriya banata hai varan vah vastav men aam janta ke samne poore prshasan ka prtibinb hota hai. +",neutral,neutral,neutral +"They said, 'Nay, but we found our fathers so doing.' +","उन्होंने कहा, ""नहीं, बल्कि हमने तो अपने बाप-दादा को ऐसा ही करते पाया है।"" +","unhonne kaha, nhin, nay hamne to apne fathers ko aesa hi karte paya hai. +",neutral,neutral,neutral +"Opens all branches of the file tree +","फ़ाइल ट्री की सभी शाखाओं को खोलता है +","file tree ki sabhi opens all branches hai +",neutral,neutral,neutral +"% 1 has been idle for% 2 and% 3. +","% 1 निष्क्रिय है% 2 और% 3 से. +","1 idle hai 2 aur 3 se +",neutral,neutral,neutral +"People of Ahmedia community do not accept Muhammed as the last prophet and also call themselves the followers of Islam. +","अहमदिय्या समुदाय के लोग मुहम्मद साहब को अन्तिम नबी नहीं मानते हैं और स्वयं को इस्लाम का अनुयायी भी कहते हैं। +","ahmedia community ke people muhammad sahab ko last nabi nahin mante hain aur svyn ko islam ka followers bhi kahte hain. +",negative,negative,negative +"but whoever seeks beyond that—it is they who are the transgressors) +","किन्तु जिस किसी ने इसके अतिरिक्त कुछ और चाहा तो ऐसे ही लोग सीमा का उल्लंघन करनेवाले है।- +","kintu jis kisi ne iske atirikt kuchh aur thatit to aese hi transgressors sima ka ullnghan karnevale hai.- +",neutral,neutral,neutral +"Why give BCG vaccine only on the left upper arm? +","बीसीजी का टीका केवल बाईं भुजा पर ऊपर क्यों लगाया जाता है? +","bcg ka vaccine give arm upper par oopar kyon lagaya jata hai +",neutral,neutral,neutral +"Now, let 's think about what that is +","तो हम इसके बारे मे सोचते हैं वो क्या है +","to ham iske bare me sochte hain vo kya hai +",neutral,neutral,neutral +"the simplest way to do it is to tell their story, +","इसका सबसे आसान तरीका है उनकी कहानी कहो, +","iska sabse simplest way hai unki story kaho , +",neutral,neutral,neutral +"Putting on a stiff expression, he went on. +","चेहरे पर कड़ी-सी भाव-मुद्रा लाकर उसने आगे कहा, +","expression par kari-si bhav-mudra lakar usne aage kaha, +",neutral,neutral,neutral +"So let 's round each of these numbers. +","चलो इन दोनो संख्या को राउंड ऑफ करते है. +","chalo in dono numbers ko round ऑph karte hai +",neutral,neutral,neutral +"Your upcoming events will be displayed here when you select a date with events. +","आपकी आने वाली घटनाओं को प्रदर्शित किया जाएगा जब आप घटनाओं के साथ एक तिथि का चयन करेंगे. +","aapki aane vali upcoming ko pradarshit kiya jaega jab aap upcoming ke sath ek date ka chayan karenge +",neutral,neutral,neutral +"Process of exercising control over trading in contraband goods. +","विनिषिद्ध/वर्जित वस्तुओं के व्यापार पर नियन्त्रण के लिए स्थापित प्रक्रिया। +","contraband goods ke control over trading ke lie sthapit process +",neutral,neutral,neutral +"Then as for him whose good deeds are preponderant, these are the successful. +","फिर जिनके पलड़े भारी हुए तॊ वही हैं जो सफल। +","phir jinke good bhari hue preponderant vahi hain jo successful +",positive,positive,positive +"When Our revelations are recited to him, he says, “Legends of the ancients. ” +","जब हमारी आयतें उसे सुनाई जाती है तो कहता है, ""ये तो पहले की कहानियाँ है।"" +","jab hamari revelations use sunaee jati hai to kahta hai , ye to pahle ki ancients hai. +",neutral,neutral,neutral +"The file does not appear to be a playlist +","यह फ़ाइल प्लेलिस्ट नहीं दिखता है +","yah file playlist nahin dikhta hai +",neutral,neutral,neutral +"Now Sind is completely merged in West Pakistan and the very word 'Sind' seems to have disappeared. +","अब सिंध पूर्ण रूप से पश्चिमी पाकिस्तान में विलय हो गया है तथा सिंध शब्द ही मानो लुप्त प्रायः हो गया है। +","ab sindh poorn roop se west pakistan men vilay ho gaya hai tatha sindh shabd hi mano lupt praya ho gaya hai. +",negative,negative,negative +"Punctuation level set to most. +","विराम चिह्न स्तर सबसे करने के लिए निर्धारित किया है. +","viram punctuation level sabse karne ke lie set kiya hai +",neutral,neutral,neutral +"The Ministry of Education may take action: - +","शिक्षा मंत्रालय निम्नलिखित विषय में कार्रवाई करें-- +","education ministry nimnlikhit vishay men action karen -- +",neutral,neutral,neutral +"Dalhousie wrote his famous minutes on railways in 1853, envisaging a general system for the whole country, and setting out general principles of management, finance and construction. +","डलहौजी ने अपना प्रसिद्ध रेलवे वक़्तव्य सन् 1853 में जारी किया जिसमें उन्होंने पूरे देश के लिए एक ही सामान्य प्रणाली की सिफारिश की और जिसमें व्यवस्था वित्त और निर्माण के सामान्य सिद्धांत भी प्रतिपादित किये. +","dalhousie ne apna famous railways vatavy minutes 1853 men jari kiya whole unhonne poore country ke lie ek hi general system ki sipharish ki aur whole management finance aur construction ke general siddhant bhi prtipadit kiye +",neutral,neutral,neutral +"This has been built with seven small lave made island and connected to main land by a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska lave made island sat chhote-chhote dvipon dvara huaa hai evn yah pul dvara prmukh bhoo-khnd ke sath jura huaa hai. +",neutral,neutral,neutral +"The prevailing colour of this breed is black and white. +","इस नस्ल का सामान्य रंग काला और सफेद होता है. +","is breed ka samany colour black aur white hota hai +",neutral,neutral,neutral +"Commercial recovery of germanium has been mainly achieved from zinc and zinc - copper - lead ores, germanite and fly ash from coals. +","जर्मेनियम वाणिज्यक रूप में मुख्यतया जिंक, जिंक-तांबा-सीसा अयस्कों, जर्मेनाइट तथा कोयले की फ्लाई एश से प्राप्त होता है। +","jarmeniyam vanijyak roop men mukhyatya jink, jink-tanba-sisa ayaskon, jarmenait tatha koyle ki phlaee esh se prapt hota hai. +",neutral,neutral,neutral +"I got up and, taking hold of his bloodstained clothes, pulled his leg out. +","मैं उठी और खून से सने उसके कपडों को पकड़ उसकी टांग ऊपर उठा आयी। +","main uthi aur khoon se sane uske kapdon ko pakar uski tang oopar utha aayi. +",neutral,neutral,neutral +"When something is routed through the account belonging to oneself. +","जब कोई सौदा या लेन-देन ऐसे खाते के माध्यम से किया जा रहा हो जो स्वयं का हो। +","jab koee sauda ya len-den aese khate ke madhyam se kiya ja raha ho jo oneself ka ho. +",neutral,neutral,neutral +"Saponification literally means soap making. +","साबुनीकरण या साबुनीभवन का शाब्दिक अर्थ साबुन निर्माण है. +","sabunikaran ya sabunibhavan ka literally means soap nirman hai +",neutral,neutral,neutral +"The poet is trying to create an image of a woman whose whole body is pining away, every limb is turning and twisting and, as described in a sloka mentioned above, the very bed and bed - sheets have become symbols of anguish and torture. +","कवि यहां एक ऐसी नारी के बिम्ब की उदभावना में लगा है जिसकी देह झुर रही है, अंग-अंग मरोड़ खा रहा है और, जैसा एक अन्य सलोक में कहा गया, बिछौना और चादर भी यन्त्रणा का प्रतिरूप बन उठे हैं। +","poet yahan ek aesi woman ke bimb ki udbhavna men whole hai jiski deh jhur rahi hai , ang-ang maror symbols raha hai aur , jaisa ek any sloka men kaha gaya , bed aur sheets bhi yantrna ka image ban uthe hain. +",negative,negative,negative +"And this is what we 're designing for. +","और यह है जिसके लिए हम डिजाइन कर रहे हैं. +","aur yah hai jiske lie ham dijain kar rahe hain +",neutral,neutral,neutral +"A similar provision exists for the Deputy Chairman Rajya Sabha in article 90. +","अनुच्छेद 90 में राज्य सभा के उपसभापति के लिए ऐसा ही प्रावधान हे. +","anuchchhed 90 men rajy sabha in article ke lie aesa hi pravdhan he +",neutral,neutral,neutral +"even if you weren 't given any choices. +","यहां तक कि अगर तुम किसी भी विकल्प को देखते हुए नहीं थे। +","yahan tak ki agar tum kisi bhi choices ko dekhte hue nahin the. +",neutral,neutral,neutral +"Dhanpat Rai Shreevastav, who wrote with pen name Premchand (31 July 1880 - 8 October 1936) was one of the greatest Indian , Hindi and Urdu writers. +","प्रेमचंद (३१ जुलाई १८८० - ८ अक्तूबर १९३६) के उपनाम से लिखने वाले धनपत राय श्रीवास्तव हिन्दी और उर्दू के महानतम भारतीय लेखकों में से एक हैं। +","premchnd ३१ julaee १८८० - ८ aktoobar १९३६ ke upnam se likhne vale dhanapat ray shrivastav hindi and urdu ke mahanatam bhartiy lekhkon men se ek hain. +",positive,positive,positive +"which is the flower story. +","जो एक फूल की भी कहानी है. +","jo ek flower ki bhi story hai +",neutral,neutral,neutral +"They get upset at the slightest inconvenience and the government officials have a difficult task to bring them round. +","थोड़ी भी असुविधा से वे विचलित हो उठते हैं और सरकारी कर्मचारियों के लिए उन्हें रास्ते पर लाना एक विकट समस्या बन जाती है. +","thori bhi slightest se ve vichlit ho uthte hain aur government officials ke lie unhen round par lana ek difficult samasya ban jati hai +",negative,negative,negative +"The average goat requires about 3. 5 kilograms of green fodder a day. +","एक बकरी को प्रतिदिन औसतन 3.5 किलोग्राम हरे चारे की आवश्यकता होती है। +","ek bakri ko prtidin average 35 kilograms hare fodder a day hoti day +",neutral,neutral,neutral +"Everyday, she has to get up at 4 o’clock in the morning to cook for her husband who leaves at 5 o’clock in the morning to work at the industrial unit in neighbouring Gamharia town. Earlier she could barely see what she was grinding on the pestle stone. +","प्रतिदिन, उन्हें अपने पति के लिए भोजन तैयार करने के लिए प्रातः 4 बजे उठना पड़ता है, जो पास के गम्हारिया कस्बे में एक औद्योगिक इकाई में काम करने के लिए प्रातः 5 बजे घर से निकल पड़ते हैं। +","everyday , unhen apne husband ke lie bhojan taiyar karne ke lie morning 4 o parta hai , jo pas ke gamharia town men ek industrial unit men stone karne ke lie morning pestle o ghar se nikal parte hain. +",neutral,neutral,neutral +"There are four to five generations in a year and generally the pest overwinters as nymph which develops into adult in early spring. +","वर्ष में चार-पांच पीढ़ियां पूरी हो जाती हैं और यह पीड़क निम्फ के रूप में सर्दियां पार करके बसंत के आरंभ में प्रौढ़ बन जाता है। +","varsh men char-panch piiyan poori ho jati hain aur yah pirak nimph ke roop men sardiyan par karke basnt ke adult in early ban jata hai. +",neutral,neutral,neutral +"The proofs can be submitted after logging in online under the section “My Applications” or directly contacting a DI office. +","साक्ष्यों के अनुभाग के तहत ऑनलाइन ""मेरे अनुप्रयोग"" में प्रवेश करने या सीधे एक डि कार्यालय से संपर्क करने के बाद प्रस्तुत किया जा सकता है। +","sakshyon ke anubhag ke tahat ऑnlain mere anupryog men prvesh karne ya sidhe ek di karyalay se snpark karne ke bad prastut kiya ja sakta hai. +",neutral,neutral,neutral +"Your demand being so reasonable, no impartial person would even suggest that you should moderate it. +","आपकी मांग ऐसी है कि कोई निष्पक्ष मनुष्य उसमें काटछांट करनेकी बात सुझा ही नहीं सकता। +","aapki demand aesi hai ki koee impartial person usmen katchhant karneki bat reasonable hi nahin sakta. +",negative,negative,negative +"Add one or more images to the panorama +","परिदृश्य में एक या अधिक छवियाँ जोड़ें +","panorama men ek ya adhik images add +",neutral,neutral,neutral +"And so as these elements come together, +","और इस तरह ये सभी एक साथ होकर, +","aur is tarah ye sabhi ek sath elements , +",neutral,neutral,neutral +"Such drafts which are presented for payment not accompanied by the advice from the remitter bank. +","ऐसे ड्राफ्ट जिन्हें भुगतान के लिए बिना प्रेषक बैंक द्वारा जारी सूचना पत्र के प्राप्त हुए प्रस्तुत किया जाए। +","aese drapht jinhen bhugtan ke lie bina preshak baink dvara jari soochna patr ke prapt hue prastut kiya jae. +",neutral,neutral,neutral +"In many civil service exams that take place in India, questions which test the general knowledge of a candidate are commonplace. +","भारत में कई सरकारी पदों के लिए होने वाली परीक्षाओं में सामान्य ज्ञान के प्रश्न अकसर पूछे जाते हैं। +","bharat men kee sarkari padon ke lie hone vali test the general jnjan ke prashn akasar poochhe jate hain. +",neutral,neutral,neutral +"Accessory products are to be purchased. +","होत्पादन को खरीदा जाने वाला है। +","hotpadan ko purchased jane vala hai. +",neutral,neutral,neutral +"Lahore gate is the main entrance +","लाहौर गेट इसका मुख्य प्रवेशद्वार है। +","lahore gate iska main entrance hai. +",neutral,neutral,neutral +"And the earth that cracks open. +","और फटने वाली (ज़मीन की क़सम) +","aur earth vali zamin ki sam +",neutral,neutral,neutral +"how where they think the flag had been changes +","कैसे वो सोचते हैं कि कहाँ फ्लैग बदल गया है +","kaise vo sochte hain ki kahan flag changes gaya hai +",neutral,neutral,neutral +"I 've two more children from my second wife. +","दूसरी पत्नी से दो बच्चे और हैं। +","doosri wife se do children aur hain. +",neutral,neutral,neutral +"Eyes: Spitting cobras can actually eject their venom quite accurately into the eyes of their victims, resulting in direct eye pain and damage. +","आंख-थूकनेवाले कोबरा अक्सर अपने शिकार की आंखों में विष थूक देते हैं, जिससे आंखें क्षतिग्रस्त हो सकती हैं या उनमें दर्द हो सकता है। +","aankh-thooknevale cobras aksar apne eyes ki eye men venom thook dete hain , jisse aankhen damage ho sakti hain ya unmen pain ho sakta hai. +",negative,negative,negative +"In response, he turned away along with his army and said, “He is a magician or a madman. ” +","तो उसने अपने लशकर के बिरते पर मुँह मोड़ लिया और कहने लगा ये तो (अच्छा ख़ासा) जादूगर या सौदाई है +","to usne apne army ke birte par munh response liya aur kahne laga ye to achchha asa magician ya saudaee hai +",neutral,neutral,neutral +"Set the browser to view only this genre +","ब्राउजर को सिर्फ ये शैल प्रदर्षित करने के लिए निश्चित करें +","browser ko sirph ye shail genre karne ke lie nishchit karen +",neutral,neutral,neutral +"There are eighteen thousand verses in the BrahmavaivarthPuran. +","ब्रह्मवैवर्तपुराण में श्लोकों की संख्या अठारह हजार हैं। +","verses men shlokon ki snkhya eighteen thousand verses +",neutral,neutral,neutral +"You mustn 't deceive yourself in a serious matter like this. +","लेकिन इतने बड़े महत्व के मामले में यों अपनी आँखों में धूल डालने की कोशिश न कर। +","lekin itne bare mahatv ke mamle men yon apni aankhon men dhool dalne ki koshish n kar. +",negative,negative,negative +"A signal or symbol used for secret communication. +","गुप्त संचार/सम्प्रेषण के लिए प्रयोग में लाया जाने वाला कोई चिन्ह या संकेत। +","secret sncharsampreshan ke lie pryog men laya jane vala koee signal ya snket. +",neutral,neutral,neutral +"And the earth that cracks open. +","और फटने वाली (ज़मीन की क़सम) +","aur earth that cracks ki earth +",neutral,neutral,neutral +"And I said, “What do you do?” +","और मैंने कहा, “तुम क्या करते हो” +","aur mainne kaha, tum kya karte ho +",neutral,neutral,neutral +"My uncle has sent you the vegetables, Mr Vyas, Kapil said. +","मेरे चाचा ने आपके लिए तरकारी भेजी हे, कपिल ने कहा। +","mere uncle ne aapke lie vegetables bheji he , mr ne kaha. +",neutral,neutral,neutral +"Which has been countersigned in a correct / proper manner. +","जो यथोचित ढंग से प्रतिहस्ताक्षरित किए गए हैं। +","jo proper manner se prtihastakshrit kie correct hain. +",neutral,neutral,neutral +"Can't copy file over directory +","निर्देशिका पर फ़ाइल की नक़ल नहीं ले सकता है +","file over directory ki copy nahin le sakta hai +",neutral,neutral,neutral +"There is indeed not a single square centimetre on the Earth 's surface where one or another kind of insect is not found. * * How numerous are insects? +","वस्तुतया पृथ्वी की सतह पर एक वर्ग से. मी. जगह भी ऐसी नहीं है जहां कीट न मिलें। +","vastutya earth ki surface par ek varg se square jagah bhi aesi nahin hai jahan single n kind +",neutral,neutral,neutral +"But Nanak was for more knowledgeable than his teachers. +","लेकिन नानक का ज्ञान गुरु से कहीं बढ़-चढ़ कर था। +","lekin teachers ka jnjan guru se kahin ba-cha kar tha. +",neutral,neutral,neutral +"To change time or date settings, you need to authenticate. +","समय या दिनांक सेटिंग्स को बदलने के लिए, आपको प्रमाणित करने की जरूरत है. +","time or date settings ko change ke lie, aapko authenticate karne ki jaroorat hai +",neutral,neutral,neutral +"Never keep in the vicinity of the adult birds +","वयस्क पक्षियों से निकटता न बनाएं। +","adult birds se nikatta n banaen. +",neutral,neutral,neutral +"Even younger women pull the strings from behind. +","कम उम्र की स्त्रियां भी पर्दे के पीछे से सूत्रधार बनी रहती हैं। +","strings younger ki women bhi parde ke behind se sootrdhar bani rahti hain. +",neutral,neutral,neutral +"An hour later , he had before him a chest of Spanish gold coins . +","एक घंटे बाद , उसके सामने स्पेनी स्वर्ण मुद्राओं से भरी एक तिजोरी थी । +","ek hour bad , uske samne spanish gold mudraon se bhari ek chest thi . +",neutral,neutral,neutral +"The Kalam - pattu in the Vaikkom temple is sung inside a big thatched shed in the extensive courtyard on the northern side of the temple. +","वैकोम के मंदिर में कलमपट्ट एक बहुत बड़ी झोपड़ी में बैठकर गाया जाता है जो मंदिर के बहुत बड़े प्रांगण के उत्तरी भाग में स्थित है। +","vaikom ke temple men kalamapatt ek bahut big thatched men baithakar sung jata hai jo temple ke bahut extensive prangan ke northern side men sthit hai. +",neutral,neutral,neutral +"{player} is now known as {newname} {player} +","अब {newname} से जाना जाता है +","player newname se jana jata hai +",neutral,neutral,neutral +"Open this bookmark in a new window +","इस पुस्तकचिह्न को नए विंडो में खोलें +","is bookmark ko ne vindo men open +",neutral,neutral,neutral +"Central European (_ MacCE) +","मध्य यूरोपीय (_ MacCE) +","central european _ MacCE +",neutral,neutral,neutral +"As mentioned at the very beginning of this book, had it not been for these insects we would not have had our vegetation and landscape. +","जैसा कि इस पुस्तक के प्रारंभ में ही बताया जा चुका है अगर ये कीट न होते तो न तो हमारी वनस्पति होती और न हमें भूदृश्य देखने को मिलते. +","jaisa ki is pustak ke prarnbh men hi bataya ja chuka hai agar ye kit n hote to n to hamari vanaspti hoti aur n hamen bhoodrishy dekhne ko milte +",neutral,neutral,neutral +"A chart / material showing the information on amount disbursed. +","धनराशि के वितरण के बारे में तैयार की गई रूपरेखागत सूचना सामग्री +","amount ke vitaran ke bare men taiyar ki gee chart information material +",neutral,neutral,neutral +"Bring me sheets of iron ""- until, when he had leveled [them] between the two mountain walls, he said,"" Blow [with bellows], ""until when he had made it [like] fire, he said,"" Bring me, that I may pour over it molten copper. "" +","(अच्छा तो) मुझे (कहीं से) लोहे की सिले ला दो (चुनान्चे वह लोग) लाए और एक बड़ी दीवार बनाई यहाँ तक कि जब दोनो कंगूरो के दरमेयान (दीवार) को बुलन्द करके उनको बराबर कर दिया तो उनको हुक्म दिया कि इसके गिर्द आग लगाकर धौको यहां तक उसको (धौंकते-धौंकते) लाल अंगारा बना दिया +","achchha to i kahin se iron ki sile la do chunanche vah log lae aur ek bari walls banaee yahan tak ki jab dono sheets ke darmeyan walls ko buland karke unko barabar kar diya to unko hukm diya ki iske gird fire lagakar dhauko yahan tak usko dhaunkte-dhaunkte lal angara bana diya +",neutral,neutral,neutral +"It is the best source of soluble fibre. +","यह घुलनशील रेशे का सर्वश्रेष्ठ स्रोत है। +","yah soluble fibre ka sarvashreshth srot source +",positive,positive,positive +"Before road transport developed, the principal arteries of communication during those days were the river routes. +","सड़कों के विकास के पहले उन दिनों नदियों के मार्ग ही यातायात के प्रमुख साधन थे। +","road ke vikas ke pahle un dinon nadiyon ke marg hi yatayat ke prmukh sadhan the. +",neutral,neutral,neutral +"Questions may be about the treatment itself, for example: +","सवाल वैद्यकिय उपचार के बारे में भी हो सकते हैं, जैसे कि उदाहरण के तौर पर: +","questions vaidykiy treatment ke bare men bhi ho sakte hain, jaise ki udaharan ke taur par: +",neutral,neutral,neutral +"His duty is scheduled at night shift. +","उसकी ड्यूटी रात की पारी में सूचित है। +","uski dyooti rat ki pari men soochit hai. +",neutral,neutral,neutral +"Ne _ ver Add Such File +","कभी ऐसी फाइल मत जोड़ें (_ v) +","kabhi aesi file mat add _ v +",neutral,neutral,neutral +"Underline color for misspelled words when using inline spelling. +","इनलाइन वर्तनी प्रयोग के दौरान गलत वर्तनी वाले शब्द रंग से रेखांकित करें. +","color for misspelled ke dauran galat vartni vale shabd rng se rekhankit karen +",neutral,neutral,neutral +"is another human being saying, “Do you understand this?” +","कोई दूसरा मनुष्य ये कहे, “क्या आपको समझ आया?” +","koee doosra human ye kahe , kya aapko samajh aaya +",neutral,neutral,neutral +"The combined CPU usage of all processes related to% {SHORT _ PRODUCT _ NAME} +","%{SHORT _ PRODUCT _ NAME} से संबंधित सभी प्रक्रियाओं का संयुक्त CPU उपयोग +","SHORT _ PRODUCT _ NAME se snbndhit sabhi processes ka combined cpu usage +",neutral,neutral,neutral +"The Quran itself states that muslims have the right to read the Quran. +","स्वयं कुरान कहता है और वे इसे पढ़ने के अधिकार ‎के साथ पढ़ते हैं। +","svyn quran kahta hai aur ve ise pane ke right muslims sath pate hain. +",neutral,neutral,neutral +"There are probably other things in the world that the sheep can 't teach me, thought the boy as he regarded the old merchant. +","दुनिया में ऐसी कई और भी चीजें हैं, जो भेड़ें नहीं सिखा सकती। +","world men aesi kee aur bhi chijen hain, jo bheren nahin sikha things +",neutral,neutral,neutral +"""(xviib) any compensation or other payment referred to in clause (xi) of sub-section (2) of section 56;""; +","''(xviiख) धारा 56 की उपधारा (2) के खंड (xi) में निर्दिष्ट कोर्इ प्रतिकर या अन्य संदाय;''; +","xviib clause 56 ki updhara 2 ke khnd xi men nirdisht kori compensation ya other payment +",neutral,neutral,neutral +"We can talk to him as soon as we know that Binoy Babu is willing. +","विनय बाबू-राज है, यह जानकर ही तो उनसे कहूँगी। +","vinay baboo-raj hai, yah janakar hi to unse talk +",neutral,neutral,neutral +"waxing proud in the land, and devising evil; but evil devising encompasses only those who do it; So do they expect anything but the wont of the ancients? And thou shalt never find any changing the Wont of God, and thou shalt never find any altering the wont of God. +","(उसके आने से) उनकी नफरत को तरक्की ही होती गयी और बुदी तद्बीर (की बुराई) तो बुरी तद्बीर करने वाले ही पर पड़ती है तो (हो न हो) ये लोग बस अगले ही लोगों के बरताव के मुन्तज़िर हैं तो (बेहतर) तुम खुदा के दसतूर में कभी तब्दीली न पाओगे और खुदा की आदत में हरगिज़ कोई तग़य्युर न पाओगे +","uske aane se unki napharat ko tarakki hi hoti gayi aur budi tadbir ki buraee to buri tadbir karne vale hi par parti hai to ho n ho ye log bas agle hi logon ke bartav ke muntazir hain to behatar tum khuda ke dastoor men kabhi tabdili n paoge aur khuda ki aadat men hargiz koee tayyur n paoge +",negative,negative,negative +"How many tens of thousands of years does it go back? +","यह कितने दसियों हजारों साल पीछे जाती हैं ? +","yah many tens years sal pichhe jati hain +",neutral,neutral,neutral +"The main objectives of the Board are to: - +","बोर्ड के मुख्य उद्देश्य हैं: +","board ke main objectives hain: +",neutral,neutral,neutral +"A material which is gluey, transparent and colloidal present in the cell. +","कोशिका में स्थित एक पदार्थ जो लसीला, पारदर्शी तथा कलॉइडल होता है। +","cell men sthit ek padarth jo lasila, paradarshi tatha kalidal hota hai. +",neutral,neutral,neutral +"Sustainable Development of Sugarcane - Based Cropping System (SUBACS), and +","गन्ना फसल के सतत विकास के लिए, फसल आधारित प्रणाली +","sugarcane cropping ke sustainable development ke lie , cropping aadharit system +",neutral,neutral,neutral +"Scientists analyse genes by taking a sample of DNA from an organism and sequencing it . +","वैज्ञानिक , जीव से डीएनए का नमूना लेकर तथा इसे क्रमबद्ध करके जीन का विश्लेषण करते हैं . +","vaijnjanik , jiv se taking a sample lekar tatha ise genes by taking ka vishleshan karte hain +",neutral,neutral,neutral +"The default browser is currently %{BROWSERNAME}. +","वर्तमान में डिफ़ॉल्ट ब्राउज़र %{BROWSERNAME} है. +","vartman men default browser BROWSERNAME hai +",neutral,neutral,neutral +"The third pavilion from south is Khas Mahal. +","दक्षिण से तीसरा मण्डप है खास महल। +","south se third pavilion hai khas mahal. +",neutral,neutral,neutral +"It is indeed a happy occasion for me this evening to participate in the inauguration of the International Conference on Natural Fibres, which has been organized to mark the conclusion of the Platinum Jubilee Celebrations of the National Institute of Research on Jute and Allied Fibre Technology (NIR-JAFT). +","अंतरराष्ट्रीय प्राकृतिक रेशा सम्मेलन, जिसे राष्ट्रीय जूट और संबंधित रेशा प्रौद्योगिकी अनुसंधान के प्लेटिनम जुबली समारोह के स्थापना के अवसर पर आयोजित किया गया है, के उद्घाटन में आज की शाम भाग लेना मेरे लिए वास्तव में खुशी का मौका है। +","antarrashtriy conference on natural, jise rashtriy joot aur allied fibre technology anusndhan ke platinum jubilee celebrations ke sthapna ke avasar par aayojit kiya gaya hai, ke udghatan men aaj ki sham bhag lena mere lie vastav men khushi ka international conference +",positive,positive,positive +"Children between the ages of 3 and 7 have the best prognosis. +","3 से 7 वर्ष की उम्र के बच्चों में रोग का निदान सबसे अच्छे तरीके से हो सकता है. +","3 se prognosis children ki ages ke bachchon men rog ka nidan sabse best tarike se ho sakta hai +",positive,positive,positive +"We are fortunate in having an adequate number of experts. +","सौभाग्य से हमारे पास इस प्रकार से विशेषज्ञ पर्याप्त संख्या में हैं। +","saubhagy se hamare pas is number of experts adequate number men hain. +",positive,positive,positive +"President of India Shri Pranab Mukherjee will undertake a day visit to Punjab (Ludhiana) tomorrow (27 November, 2012). +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (27 नवम्बर, 2012) पंजाब (लुधियाना) की एक दिवसीय यात्रा करेंगे। +","india ke president shri pranab mukharji tomorrow 27 navambar , 2012 pnjab ludhiana ki ek divsiy yatra karenge. +",neutral,neutral,neutral +"Budget allocation under Plan Scheme for 2015 - 16 - Rs. 16. 11 Crores. +","वर्ष 2015-16 के लिए प्लान स्कीम के अंतर्गत बजट आवंटन 16.11 करोड़ रू. है। +","varsh 2015-16 ke lie plan scheme ke allocation under plan 1611 crores roo plan +",neutral,neutral,neutral +"we need to look at learning +","हम सीखने पर ध्यान देने की जरूरत हैं +","ham sikhne par dhyan dene ki jaroorat hain +",neutral,neutral,neutral +"Now Sind is completely merged in West Pakistan and the very word 'Sind' seems to have disappeared. +","अब सिंध पूर्ण रूप से पश्चिमी पाकिस्तान में विलय हो गया है तथा सिंध शब्द ही मानो लुप्त प्रायः हो गया है। +","ab sind poorn roop se west pakistan men vilay ho gaya hai tatha sind word hi mano lupt praya ho gaya hai. +",negative,negative,negative +"Awareness among farmers on practices and techniques of SRI should be generated, as it involves change of practices, compared to conventional method. +","किसानों के बीच श्री की रीतियों एवं तकनीकों के बारे में जागरूकता पैदा की जानी चाहिए, क्योंकि उसमें परम्परागत विधि की तुलना में पद्धतियों में बदलाव हो जाता है, +","farmers ke bich sri ki practices evn techniques ke bare men awareness paida ki jani chahie , kyonki usmen conventional method ki tulna men paddhtiyon men change ho jata hai , +",neutral,neutral,neutral +"Her body stiffened as the spur thrust, and slackened again. +","भूख के पंजों की चुम्बन महसूस होते ही उसकी देह ऐंठ जाती और फिर दुबारा ढीली पड़ जाती। +","bhookh ke pnjon ki chumban mahsoos hote hi uski deh aenth jati aur phir dubara dhili par jati. +",neutral,neutral,neutral +"Could not save attachment:% s +","% s नहीं बचाया जा सकाः% s +","s nahin save ja sakaa s +",negative,negative,negative +"Look for ABTA -LRB- Association of British Travel Agents -RRB- or AITO -LRB- Association of Independent Tour Operators -RRB- on brochures or invoices . +","सैर सपाटे की पुस्तकाओं या इंवाईसेज़ में आभ्ठा ( आस्सोचिअटिओन् ओङ् भ्रिटिस्ह् ठ्रवेल् आगेन्ट्स् ) या आईठौ ( आस्सोचिअटिओन् ओङ् ईन्डेपेन्डेन्ट् ठोउर् औपेरटोर्स् ) की तालाश कीजिए . +","travel look ki brochures ya invoices men abta association ong british agents aagents ya aaeethau association ong independent thour aupertors ki talash kijie +",neutral,neutral,neutral +"My special congratulations to Shri Shashi Kapoor who has been honoured with the Dadasaheb Phalke Award this year. +","श्री शशि कपूर को मेरी विशेष बधाई जिन्हें इस वर्ष दादा साहेब फाल्के पुरस्कार प्रदान किया गया है। +","shri shashi kapoor ko meri special congratulations jinhen is year dada saheb dadasaheb puraskar prdan kiya gaya hai. +",positive,positive,positive +"It tells us how the data within the file is organized. A programme using the data must be able to recognize and access the data within the file. +","यह बताता है कि फाइल के अन्दर आकडा कैसे संगठित है। आकडा इस्तेमाल करने वाले किसी प्रग्राम को फाइल के अन्दर आकडा पहचानने तथा ऐक्सेस करने में सक्षम होना चाहिए। +","yah batata hai ki phail ke andar aakda kaise sngthit hai. aakda istemal karne vale kisi pragram ko phail ke andar aakda recognize and access karne men saksham hona chahie. +",neutral,neutral,neutral +"[This is] a promise of Allah: Allah does not break His promise, but most people do not know. +","(ये) ख़ुदा का वायदा है) ख़ुदा अपने वायदे के ख़िलाफ नहीं किया करता मगर अकसर लोग नहीं जानते हैं +","ye uda ka vayda hai uda apne break his promise nahin kiya karta magar akasar log nahin jante hain +",neutral,neutral,neutral +"Long term loan for agricultural appliances is admissible. +","कृषि उपकरण के लिए दीर्घकालीन ऋण उपलब्ध हैं। +","krishi upakaran ke lie long term loan hain. +",neutral,neutral,neutral +"which is the flower story. +","जो एक फूल की भी कहानी है. +","jo ek flower ki bhi story hai +",neutral,neutral,neutral +"He tried both allopathic and homeopathic medicines. +","उन्होंने एलोपैथी तथा होमियोपैथी दोनों प्रकार के इलाज करवाए। +","unhonne elopaithi tatha homiyopaithi donon prkar ke ilaj karvae. +",neutral,neutral,neutral +"even if you weren 't given any choices. +","यहां तक कि अगर तुम किसी भी विकल्प को देखते हुए नहीं थे। +","yahan tak ki agar tum kisi bhi choices ko dekhte hue nahin the. +",neutral,neutral,neutral +"Don 't bunt. Aim out of the ball park. Aim for the company of immortals. +","गेंद को दो रन के लिए सरकाइए मत। उसे मैदान से बाहर पहुँचाने के लिए निशाना साधिए। अमर व्यक्तियों के साथ का लक्ष्य बनाइए। +","gend ko do ran ke lie sarkaie mat. use maidan se bahar pahunchane ke lie ball park amar vyaktiyon ke sath ka lakshy banaie. +",neutral,neutral,neutral +"In two phases banyan and in the other two phases hare (rabbit)is seen. +","इसके दो अंशो मे पिप्पल और दो अंशो मे महान शश(खरगोश) दिखायी देता है। +","iske do ansho me pippal aur do ansho me mahan phases rabbit dikhayi deta hai. +",neutral,neutral,neutral +"They repeated their demand that the nuclear missiles on the earth must be defused and destroyed. +","उन्होने अपनी मांग को दोहराया कि पृथ्वी के नाभिकीय प्रक्षेपणास्त्रों को बेकार और नष्ट कर दिया जाए। +","unhone apni repeated their demand ki prithvi ke nabhikiy prakshepnastron ko bekar aur nasht kar diya jae. +",negative,negative,negative +"that is why sapta sindhu language (relion language of parsi) has got converted to hafta hindu. +","इसलिये सप्त सिन्धु अवेस्तन भाषा (पारसियों की धर्मभाषा) मे जाकर हफ्त हिन्दु मे परिवर्तित हो गया (अवेस्ता: वेन्दीदाद फ़र्गर्द 1.18)। +","isliye sapta sindhu avestan bhasha parsiyon ki dharmbhasha me jakar hapht hindu me parivartit ho gaya avesta: vendidad fargard 118. +",neutral,neutral,neutral +"In Open office 2. 0 (or higher) for adding on Hindi spelling check +","ओपनऑफ़िस 2.0 (या अधिक) में हिन्दी वर्तनी जाँचक शामिल करने के लिए +","open 20 ya higher men hindi vartni janchak shamil karne ke lie +",neutral,neutral,neutral +"Northeastern India The area covering the Indian States of Assam, Arunachal Pradesh, Meghalaya, Manipur and Tripura, and neighbouring areas of Bangladesh and Burma are one of the most earthquake - prone regions of the world. +","यह क्षेत्र, भारतीयक राज्यों यथा असम, अरूणाचल प्रदेश, मेघालय, मणिपुर, तथा त्रिपुरा एवं निकटवर्ती बांग्लादेश तथा वर्मा को आच्छादित करता है, जो विश्व का सर्वाधिक भूकंप प्रभावित क्षेत्र है। +","yah area , bhartiyak northeastern yatha assam , arunachal prdesh , meghalay , manipur , indian tripura evn nikatavarti bangladesh indian burma ko aachchhadit karta hai , jo vishv ka sarvadhik earthquake prbhavit area hai. +",neutral,neutral,neutral +"The naqara, twenty pairs, more or less. 3. +","2 नक्कारा जिसकी कोई बीस जोड़ियां हैं। +","2 naqara jiski koee twenty pairs hain. +",neutral,neutral,neutral +"A meeting was convened to finalize the date of launch of the new channel. +","नए चैनल के विमोचन की तारीख तय करने के लिए सभा बुलाई गई। +","ne channel ke vimochan ki date tay karne ke lie meeting was convened +",neutral,neutral,neutral +"So we should do everything we can, +","तो हमें वो सब करना चाहिए, जो हम कर सकते है +","to hamen vo everything karna chahie , jo ham kar sakte hai +",neutral,neutral,neutral +"Writing the lead - out may take some time. +","लीड-आउट लिखने में कुछ समय लग सकता है. +","writing the lead kuchh samay lag sakta hai +",neutral,neutral,neutral +"International usages are adopted in international communication by most of the countries of the world. +","विश्व के अधिकांश देशों द्वारा अन्तर्राष्ट्रीय प्रथा/प्रचलन को आपसी पत्राचार में अपना लिया गया है। +","vishv ke adhikansh deshon dvara antarrashtriy prthaprachalan ko aapsi patrachar men apna liya gaya hai. +",neutral,neutral,neutral +"Your password has been changed. +","आपका शब्दकूट बदला गया है. +","aapka password changed gaya hai +",neutral,neutral,neutral +"As for the people of the right hand, how happy they will be! +","और दाहिने हाथ वाले (वाह) दाहिने हाथ वालों का क्या कहना है +","aur dahine hath vale vah dahine hath people ka kya kahna hai +",positive,positive,positive +"This pertains to Panchayats and inter - alia provides that: i In every village, there shall be a Panchayat which will be a constitutional body. +","इस अधिनियम के मुख्य उपबंध इस प्रकार हैं: 1. हर गांव में एक पंचायत होगी जो एक संवैधानिक निकाय होगी। +","is adhiniyam ke mukhy upbndh is prkar hain : 1 i village men ek panchayats hogi jo ek constitutional body hogi. +",neutral,neutral,neutral +"Never keep in the vicinity of the adult birds +","वयस्क पक्षियों से निकटता न बनाएं। +","adult birds se nikatta n banaen. +",neutral,neutral,neutral +"a lot of young people with a demographic dividend +","एक जनसांख्यिकीय लाभांश के साथ कई युवा लोग +","ek demographic dividend ke sath kee young people +",neutral,neutral,neutral +"Now, what stands in the way of this? +","अब इस सब के मार्ग में क्या अवरोध है ? +","ab is sab ke marg men kya avrodh hai +",neutral,neutral,neutral +"This momentous decision to go to England to become a barrister took place when Badruddin was fifteen years old, a year after the mutiny. +","बैरिस्टर बनने के लिए इंग़्लैड जाने का यह महत्वपूर्ण निर्णय बगावत के एक वर्ष बाद लिया गया जब बदरूद्दीन पंद्रह वर्ष के थें. +","barrister banne ke lie inlaid jane ka yah momentous decision mutiny ke ek place bad liya gaya jab badrooddin fifteen place ke then +",neutral,neutral,neutral +"1 gallon is 4 quarts. +","1 गॅलन 4 क्वॉर्ट होता है. +","1 gallon 4 quarts hota hai +",neutral,neutral,neutral +"The financial ill health of the State Electricity Boards is due to excessive cross - subsidization, poor economic efficiency, poor maintenance of network, and poor collection of revenue. +","राज्य बिजली बोर्डो की खस्ता हालत उनकी अत्यधिक सब्सिडी, खराब आर्थिक दक्षता, नेटवर्क का असंतोषजनक रख-रखाव और राजस्व की खराब वसूली के कारण है। +","state health boards ki maintenance halat unki excessive cross , ill financial efficiency , network ka asntoshajanak rakh-rkhav aur revenue ki ill vasooli ke karan hai. +",negative,negative,negative +"When Our revelations are recited to him, he says, “Legends of the ancients. ” +","जब हमारी आयतें उसे सुनाई जाती है तो कहता है, ""ये तो पहले की कहानियाँ है।"" +","jab hamari revelations are recited jati hai to kahta hai, ye to pahle ki kahaniyan hai. +",neutral,neutral,neutral +"The living organism and its relationship with the environment. +","जीवित जीव और पर्यावरण के साथ उसके संबंध। +","living organism aur environment ke sath uske relationship +",neutral,neutral,neutral +"Under the Act, weight and measures also include 'weighing or measuring instrument' which means ""any object, instrument, apparatus or device, or any combination thereof, which is, or is intended to be, used, exclusively or additionally, for the purpose of making any weighment or measurement, and includes any appliance, accessory or part associated with any such object, instrument, apparatus or device"". +","अधिनियम के अंतर्गत, भार तथा माप में ""भार करने का मापन करने वाला उपकरण"" भी शामिल है जिसका अर्थ है ""कोई भी वस्तु उपकरण, यंत्र या युक्ति या उनका कोई भी संयोजक जिसका प्रयोग से अनन्य रूप से या अतिरिक्त रूप से किया जाता है या किया जाना आशयित है तथा इसमे ऐसी किसी वस्तु, उपकरण, उपस्कर या युक्ति से संबद्ध कोई उपकरण, सहायक सामग्री या पुर्जा शामिल है।"" +","adhiniyam ke antargat, weight and measures men bhar karne ka mapan karne vala upakaran bhi shamil hai jiska arth hai koee bhi vastu upakaran, apparatus or device ya unka koee bhi snyojak jiska pryog se anany roop se ya atirikt roop se kiya jata hai ya kiya jana aashyit hai tatha isme aesi kisi vastu, upakaran, upaskar ya yukti se snbaddh koee upakaran, sahayak samagri ya purja shamil hai. +",neutral,neutral,neutral +"The optical photo conductor is no longer functioning +","ऑप्टिकल फोटो कंडक्टर कामकाज नहीं रहा है +","optical photo conductor kamkaj nahin raha hai +",negative,negative,negative +"There is also an international dimension to the problem that has not been addressed except for our having shouted from the rooftops that Pakistan is responsible for cross - border terrorism. +","समस्या का अंतरराष्ट्रीय पहलू भी है जिस पर कभी गौर नहीं किया गया, सिर्फ यही कहा जाता रहा कि सीमा पार से आतंकवाद को बढवा देने के लिए पाकिस्तान दोषी है. +","problem ka international dimension bhi hai jis par kabhi responsible nahin kiya gaya , sirph yahi kaha jata raha ki border cross se terrorism ko badhva dene ke lie pakistan doshi hai +",negative,negative,negative +"Family Planning Association of India and Branch offices. +","भारतीय परिवार नियोजन संघ और शाखा कार्यालय। +","india family niyojan association aur branch karyalay. +",neutral,neutral,neutral +"The future development of the mini steel industry will depend on the availability of sponge iron. +","लघु इस्पात उद्योग का भावी विकास स्पंज आयन की उपलब्धता पर निर्भर करेगा. +","mini steel industry ka future development sponge aayan ki availability par nirbhar karega +",neutral,neutral,neutral +"Enquiries were constituted with a view to toning up the administration . +","प्रशासन में सुधार लाने की दृष्टि से जांच कमेटियां बिठायी गयीं . +","prshasan men sudhar lane ki drishti se janch kametiyan bithayi gayin +",neutral,neutral,neutral +"and preached to them in public, and also addressed them in secret. +","""फिर मैंने उनसे खुले तौर पर भी बातें की और उनसे चुपके-चुपके भी बातें की +","phir mainne unse public taur par bhi secret ki aur unse chupke-chupke bhi secret ki +",neutral,neutral,neutral +"Since, most of the producer organizations are at nascent stage, their focus is mainly on production and to some extent the aggregation. +","चूंकि अधिकतर उत्पावदक संगठन शुरूआती अवस्थाथ में हैं, अतः उनका मुख्य फोकस उत्पादन और कुछ हद तक संग्रहण पर है. +","choonki producer organizations sngathan shurooaati avasthath men hain, ata unka mukhy phokas utpadan aur kuchh had tak sngrahan par hai +",neutral,neutral,neutral +"Ibne Sina (980 - 237) associated with the medical science to be ahead of many who wrote the book became the basis of modern medical science +","इबने सीना (९८०-१०३७) ने चिकित्सा विज्ञान से संबंधित कई पुस्तकें लिखीं जो कि आगे जा कर आधुनिक चिकित्सा विज्ञान का आधार बनीं। +","ibne many ९८०-१०३७ ne medical science se snbndhit kee pustken likhin jo ki aage ja kar modern medical science ka basis banin. +",neutral,neutral,neutral +"So 8 is 2 times 2 times 2. +","तो 8 होता है 2 गुना 2 गुना 2 +","to 8 hota hai 2 times 2 times 2 +",neutral,neutral,neutral +"A venture capital fund set up as a company shall be wound up in accordance with the provisions of the Companies Act, 1956 (1 of 1956). +","एक कंपनी के रूप में स्थापपित उद्यम पूंजी निधि को कंपनी अधिनियम 1956 (1956 का 1) के प्रावधानों के अनुसार समाप्त कर दिया जाएगा। +","ek knpni ke roop fund set venture capital fund ko companies act 1956 1956 ka 1 ke pravdhanon ke anusar samapt kar diya jaega. +",neutral,neutral,neutral +"Backup Evolution data and settings to an archive file +","एवोल्यूशन डाटा व सेटिंग का बैकअप लें व फिर भंडारित करें +","evolyooshan data and settings ka archive file v phir bhndarit karen +",neutral,neutral,neutral +"American Lung Association of New England on quality of air +","वायु की गुणवत्ता पर न्यू इंगलैंड का अमेरिकन लंग एसोसिएशन +","quality of air par nyoo inglaind ka amerikan lng association +",neutral,neutral,neutral +"He told me to go to his room. +","उसने मुझे उसके कमरे में जाने को कहा। +","usne mujhe uske room men jane ko kaha. +",neutral,neutral,neutral +"These are not available if you rent . +","ये ऋण किराए पर रहने वालों को नहीं मिलते . +","ye rin rent par rahne valon ko nahin milte +",neutral,neutral,neutral +"The sheet which contains the details of allotment. +","आबंटन संबंधी विवरणों को दर्ज करने वाली शीट। +","allotment snbndhi vivarnon ko darj karne vali sheet +",neutral,neutral,neutral +"He cannot bring down its greater spiritual nature into this lower triplicity; for here the mental being is the highest expression of the Self. +","वह उसकी महत्तर आध्यात्मिक प्रकृति को नीचे उतारकर इस निम्नतर त्रिविध सत्ता में नहीं ला सकता; क्योंकि यहां तो मनोमय पुरुष ही आत्मा की सर्वोच्च अभिव्यक्ति है। +","vah uski greater spiritual nature ko niche utarakar is nimnatar trividh satta men nahin la sakta kyonki yahan to manomay purush hi aatma ki sarvochch abhivyakti hai. +",neutral,neutral,neutral +"115WF. If any person, being an employer— +","115बच.यदि कोर्इ व्यक्ति, जो नियोजक है– +","115bachydi kori person, jo employer hai +",neutral,neutral,neutral +"So let 's round each of these numbers. +","चलो इन दोनो संख्या को राउंड ऑफ करते है. +","chalo in dono numbers ko raund ऑph karte hai +",neutral,neutral,neutral +"They made the boy continue digging, but he found nothing. +","उन्होंने लड़के को और खुदाई करने के लिए मजबूर किया, मगर मिला कुछ नहीं। +","unhonne larke ko aur digging karne ke lie majboor kiya, magar found kuchh nahin. +",neutral,neutral,neutral +"Then We destroyed the others. +","फिर हमने बाक़ी लोगों को तबाह व बर्बाद कर दिया +","phir hamne bai others ko tabah v barbad kar diya +",negative,negative,negative +"Agriculture is mainly done to meet the food requirement of the family and livestock. +","खेती मुख्य रूप से परिवार तथा पशुओं की भोजन आवश्यकताओं के लिए की जाती है। +","agriculture mukhy roop se family tatha livestock ki food requirement ke lie ki jati hai. +",neutral,neutral,neutral +"In response, he turned away along with his army and said, “He is a magician or a madman. ” +","तो उसने अपने लशकर के बिरते पर मुँह मोड़ लिया और कहने लगा ये तो (अच्छा ख़ासा) जादूगर या सौदाई है +","to usne apne lashakar ke birte par munh mor liya aur kahne laga ye to achchha asa jadoogar ya saudaee hai +",neutral,neutral,neutral +"Round them will be passed a cup of pure wine; +","उनके बीच विशुद्ध पेय का पात्र फिराया जाएगा, +","unke bich pure pey ka patr cup jaega , +",neutral,neutral,neutral +"Software and digital video industries have duly recognized forensic watermark. +","साफ्टवेयर तथा डीजिटल वीडियो उद्योग ने विधि वाटरमार्क की विधिवत मान्यता दी है। +","software tatha dijital video industries ne vidhi watermark ki vidhivat manyta digital hai. +",neutral,neutral,neutral +"This option will connect to the server using Kerberos 5 authentication. +","Kerberos 5 सत्यापन के उपयोग से यह विकल्प सर्वर से जोड़ेगा. +","Kerberos 5 option will connect se yah vikalp server se jorega +",neutral,neutral,neutral +"To go to residences to provide some service. +","कोई सेवा प्रदान करने के लिए निजी घरों पर जाने वाला। +","koee service prdan karne ke lie niji residences par jane vala. +",neutral,neutral,neutral +"They, (the People of the Book), have said that God has taken for Himself a son. He is too glorious to have a son. To Him belongs all that is in the heavens and the earth. All pray in obedience to Him. +","कहते है, अल्लाह औलाद रखता है-महिमावाला है वह! (पूरब और पश्चिम हीं नहीं, बल्कि) आकाशों और धरती में जो कुछ भी है, उसी का है। सभी उसके आज्ञाकारी है +","kahte hai , god son people hai-mhimavala hai vah ! glorious aur pashchim book nahin , heavens aakashon aur earth men jo kuchh bhi hai , usi ka hai. sabhi uske aajnjakari hai +",positive,positive,positive +"In an irritated voice, they said, +","एक परेशान आवाज़ में, उन्होंने कहा कि, +","ek irritated voice men , unhonne kaha ki , +",negative,negative,negative +"He instilled the core values of this organization, the three I’s i. e. industry, impartiality and integrity in the organization. +","उन्होंने इस संगठन में तीन प्रमुख मूल्यों परिश्रम, निष्पक्षता और ईमानदारी का समावेश किया। +","s is organization men i core values industry , impartiality aur integrity ka samavesh kiya. +",positive,positive,positive +"These are not available if you rent . +","ये ऋण किराए पर रहने वालों को नहीं मिलते . +","ye available kirae par rahne valon ko nahin milte +",neutral,neutral,neutral +"If selected, you will be notified when entering an SSL enabled site +","यदि चुना गया है, जब आप एसएसएल सक्षम साइट पर प्रवेश करते हैं तो आपको सूचित किया जाएगा +","yadi chuna gaya hai , jab aap ssl saksham site par prvesh karte hain to aapko soochit kiya jaega +",neutral,neutral,neutral +"I congratulate him for winning this coveted award. I am sure he will continue to enrich Hindi literature in the years to come. +","मैं इस प्रतिष्ठित पुरस्कार को जीतने के लिए उन्हें बधाई देता हूं। मुझे विश्वास है कि वह आने वाले वर्षों में हिंदी साहित्य को समृद्ध करते रहेंगे। +","main is coveted award ko jitne ke lie unhen badhaee deta hoon. mujhe vishvas hai ki vah aane vale varshon men hindi sahity ko samriddh karte rahenge. +",positive,positive,positive +"we need to look at learning +","हम सीखने पर ध्यान देने की जरूरत हैं +","ham learning par dhyan dene ki jaroorat hain +",neutral,neutral,neutral +"This Conference, by focusing on water use efficiency, will help to bring this important issue to the forefront of policy discourse. +","इस सम्मलेन के जल उपयोग दक्षता पर केन्द्रित होने से, यह महत्वपूर्ण मुद्दा नीति संबंधी परिचर्चा में शामिल हो पाएगा। +","is sammlen ke jal upyog dakshta par kendrit hone se, yah important issue niti snbndhi paricharcha men shamil ho paega. +",positive,positive,positive +"Primary center connects toll centers. +","प्राथमिक केंद्र, शुल्क केन्द्रों (टोल केन्द्रों) को जोड़ता है। +","primary center, toll centers tol kendron ko connects toll +",neutral,neutral,neutral +"Let 's say when x is equal to 2. +","X barabar do sochte hai. +","X equal do sochte hai +",neutral,neutral,neutral +"Sofree, Giannie, Gandhi and India: A century in the center (1995) ISBN 1 - 900624 - 12 - 5 +","सोफ्री & #44; गियान्नी. गाँधी और भारतः केन्द्र में एक सदी (१९९५) आईएसबीएन १-९००६२४-१२-५ +","sophri isbn giyanni gandhi aur india center men ek century १९९५ aaeeesbien १-९००६२४-१२-५ +",neutral,neutral,neutral +"There are many particles in air which can harm the health of plans and animals (including humans) or can damage their eyesight. These are produced due to natural process and human activities. The particles not found in the air naturally or or more frequently or different than generic particles are called as pollutants. +","वायु में बहुत से तत्त्व होते हैं जो पौधों और पशुओं (मानव समेत) का स्वास्थ्य कर सकते हैं या नजर ख़राब कर सकते हैं यह प्राकृतिक प्रक्रियाओं तथा मानव गतिविधियों दोनों से उत्पन्न होते हैं. वायु में प्राकृतिक रूप से नहीं पाए जाने वाले तत्व या अधिक सांद्रता के साथ या सामान्य से अलग तत्वों को प्रदूषक कहा जाता है. +","vayu men bahut se tattv hote hain jo paudhon aur pashuon manav samet ka svasthy kar sakte hain ya najar rab kar sakte hain yah prakritik prakriyaon tatha manav gatividhiyon donon se utpann hote hain vayu men prakritik roop se nahin pae jane vale tatv ya adhik sandrta ke sath ya samany se alag tatvon ko prdooshak kaha jata hai +",negative,negative,negative +"A Plugin to synchronize pictures' metadata with a GPS device +","जीपीएस उपकरण से छवि मेटाडाटा को सिंक्रोनाइज करने का एक प्लगइन +","jipies device se pictures metadata ko sinkronaij karne ka ek plugin +",neutral,neutral,neutral +"Search all% {DRIVENAME} +","सभी% {DRIVENAME} खोजें +","sabhi DRIVENAME khojen +",neutral,neutral,neutral +"% 1 has been idle for% 2 and% 3. +","% 1 निष्क्रिय है% 2 और% 3 से. +","1 idle hai 2 aur 3 se +",neutral,neutral,neutral +"This is a time of great opportunities in India. +","यह भारत के लिए सुनहरे अवसरों का दौर है। +","yah time ke lie great opportunities ka daur hai. +",positive,positive,positive +"Software and digital video industries have duly recognized forensic watermark. +","साफ्टवेयर तथा डीजिटल वीडियो उद्योग ने विधि वाटरमार्क की विधिवत मान्यता दी है। +","saphtveyar tatha dijital video industries ne forensic watermark ki vidhivat manyta di hai. +",neutral,neutral,neutral +"In Hindi, the word “”America“” is used instead of “”United States of America“”. +","हिन्दी भाषा में संयुक्त राज्य या संयुक्त राज्य अमेरिका के स्थान पर केवल अमेरिका कहने का ही प्रचलन है जो इस देश के लघु नाम के रूप मे उपयोग में लाया जाता है। +","hindi bhasha men united states ya united states amerika ke sthan par keval amerika kahne ka hi prachalan hai jo is desh ke laghu nam ke roop me upyog men laya jata hai. +",neutral,neutral,neutral +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","track the actor par nazar rakhne ke lie clip region ko set karen +",neutral,neutral,neutral +"Additionally, 23 post-graduate scholarships for courses in hydel power and water resources management at IIT, Roorkee have been offered to Nepali engineers and experts this year. +","इसके अतिरिक्त नेपाली इंजीनियरी और विशेषज्ञों को इस वर्ष आईआईटी रुड़की में पनबिजली और जल संसाधन प्रबंधन में पाठ्यक्रम के लिए 23 स्नातकोत्तर छात्रवृत्तियां प्रदान की जाएंगी। +","iske atirikt nepali injiniyri aur visheshajnjon ko is varsh aaeeaaeeti rurki men panbijli aur jal snsadhan prbndhan men pathyakram ke lie 23 post-graduate scholarships prdan ki jaengi. +",neutral,neutral,neutral +"Dusty air coming towards Stratford, Texas. +","स्ट्रेटफोर्ड टेक्सास की और आने वाली धूल भरी आंधी (Stratford Texas). +","dusty texas ki aur aane vali stratford bhari towards Stratford Texas +",neutral,neutral,neutral +"{player} is now known as {newname} {player} +","अब {newname} से जाना जाता है +","ab newname se jana jata hai +",neutral,neutral,neutral +"The company 's new project employed 2500 people, including 300 expatriates and 2200 locals. +","कम्पनी की नई परियोजना में कुल 2500 लोगों में से 300 प्रवासी थे और बाकी 2200 लोग देशी। +","company ki new project men kul 2500 locals men se 300 expatriates the aur baki 2200 people deshi. +",neutral,neutral,neutral +"The Pandiya King immediately fainted and died. +","पांडिय राजा उसी दम मूर्छित होकर गिर पड़े और मृत्यु ग्रस्त हो गये। +","king immediately usi dam moorchhit hokar gir pare aur mrityu grast ho gaye. +",negative,negative,negative +"This has happened in India, too. +","ऐसा भारत में भी हुआ है। +","aesa india men bhi huaa hai. +",neutral,neutral,neutral +"If I add 2, I get 30. If I add 3, I get 31. +","तो मुझे 29 मिलता है, यदि 2 जोड़ता हूँ तो 30,3 जोड़ता हूँ तो 31. +","to mujhe 29 milta hai, yadi 2 add hoon to 30,3 add hoon to 31 +",neutral,neutral,neutral +"A proper medical examination will ensure high standards of health and physical fitness of employees and will reduce the rates of accidents, absenteeism and labour turnover. +","अच्छीट तरह की चिकित्साथ जांच कर्मचारी के उच्च़ स्त. रीय स्वानस्य्कि और शारीरिक फिटनेस सुनिश्चित करेगी और दुर्घटना की दर कम करेगी अनुपस्थिति घटेगी और श्रम उत्पादन बढ़ेगा। +","achchhit tarah ki chikitsath janch karmchari ke uch st riy svanasyki aur sharirik phitnes sunishchit karegi aur durghatna ki dar kam karegi anupasthiti ghategi aur shram utpadan baega. +",positive,positive,positive +"from the evil of what He has created, +","हर चीज़ की बुराई से जो उसने पैदा की पनाह माँगता हूँ +","har chiz ki evil se jo usne paida ki panah mangta hoon +",negative,negative,negative +"The rising demand for gunny bags , created by increasing food exports to Europe , gave a fresh stimulus to jute cultivation and the handloom industry . +","यूरोप के लिए बढते खाद्य सामग्री के निर्यात के कारण बढ़ी हुई बोरियों की मांग ने जूट की खेती और हथकरघा उद्योग को एक नया प्रोत्साहन दिया . +","yoorop ke lie badhte food samagri ke exports ke karan bai huee gunny ki demand ne joot ki cultivation aur handloom industry ko ek fresh stimulus diya +",positive,positive,positive +"just for the Carnival and the Knife. +","बस कार्निवल और नैफ के लिए. +","bas carnival aur knife ke lie +",neutral,neutral,neutral +"“Call Washington! Call Washington! ” “वॉशिंगटन +","से संपर्क करें! वॉशिंगटन से संपर्क करें! ” +","se call karen ! washington se call karen ! +",neutral,neutral,neutral +"He could earn Rs. 41, 700 from sale of 275 kg. worms (at Rs. 150 / kg.) and Rs. 11, 500 from the sale of 23 q. compost at Rs. 500 / q +","उन्होंने 275 किलो कीटों के विक्रय से (150 रुपये/किलो की दर से) 41,700 रुपये कमाए तथा 500 रुपये/क्विंटल की दर से 23 क्विंटल कम्पोस्ट बेचकर 11,500 रुपये कमाए। +","unhonne 275 kg kiton ke sale se 150 rupyekilo ki dar se 41,700 rs kamae tatha 500 rupyekvintal ki dar se 23 q worms bechakar 11,500 rs kamae. +",neutral,neutral,neutral +"As regards Central laws on matters relating to the Concurrent List, such as welfare measures, procedural laws, etc., the Constitution itself provides for the State Legislature to modify or repeal such Central laws after obtaining the President 's assent. +","जहां तक समवर्ती सूची वाले केन्द्रीय कानूनों का सम्बंध है, जैसे कल्याण कार्यों तथा कार्यविधि सम्बंधी कानून आदि, स्वयं संविधान में यह प्रावधान है कि राज्य विधान मंडल राष्ट्रपति की स्वीकृति लेकर ऐसे कानूनों में परिवर्तन कर सकते है या उन्हें निरस्त कर सकते है। +","jahan tak concurrent matters vale central laws ka sambndh hai , jaise welfare such tatha procedural sambndhi kanoon aadi , svyn constitution men yah pravdhan hai ki state legislature regards president ki assent lekar aese laws men parivartan kar sakte hai ya unhen nirast kar sakte hai. +",neutral,neutral,neutral +"Sofree, Giannie, Gandhi and India: A century in the center (1995) ISBN 1 - 900624 - 12 - 5 +","सोफ्री & #44; गियान्नी. गाँधी और भारतः केन्द्र में एक सदी (१९९५) आईएसबीएन १-९००६२४-१२-५ +","sophri 44 giyanni gandhi aur bharta center men ek century १९९५ aaeeesbien १-९००६२४-१२-५ +",neutral,neutral,neutral +"An hour later , he had before him a chest of Spanish gold coins . +","एक घंटे बाद , उसके सामने स्पेनी स्वर्ण मुद्राओं से भरी एक तिजोरी थी । +","ek hour bad , uske samne spanish gold coins se bhari ek tijori thi . +",neutral,neutral,neutral +"This is an account of (the fate of) the towns which We relate to you; of them are some that stand and (others) mown down. +","(ऐ रसूल) ये चन्द बस्तियों के हालात हैं जो हम तुम से बयान करते हैं उनमें से बाज़ तो (उस वक्त तक) क़ायम हैं और बाज़ का तहस नहस हो गया +","ae stand ye chand bastiyon ke halat hain jo ham tum se bayan karte hain unmen se baz to us vakt tak ayam hain aur baz ka tahas nahas ho gaya +",neutral,neutral,neutral +"Book where objections are recorded. +","पुस्तक जिसमें एतराज अंकित किए जाते हो। +","book jismen etraj ankit objections jate ho. +",neutral,neutral,neutral +"The Vice - President of India is the ex - officio Chairman of Rajya Sabha. +","भारत का उपराष्ट्रति राज्य सभा का पदेन सभापति होता है। +","india ka uprashtrti rajy sabha ka officio chairman hota president +",neutral,neutral,neutral +"Among the Garo the household is known as the Nok. +","गारो जनजाति में गृहस्थी को नोक कहा जाता है। +","garo janjati men household ko nok kaha jata hai. +",neutral,neutral,neutral +"Anundoram was a student of the Gauhati School in the late fifties of the nineteenth century, that is, in the early stage of English education in Assam. +","आनन्दराम ने उन्नीसवीं सदी के छठे दशक में, यानी असम में अंग्रेज़ी शिक्षा के आरम्भिक चरण में गुवाहाटी स्कूल में अपनी पढ़ाई पूरी की। +","anundoram ne late century ke chhathe fifties men , yani assam men english student ke early stage men gauhati skool men apni paaee poori ki. +",neutral,neutral,neutral +"The Vice - President of India is the ex - officio Chairman of Rajya Sabha. +","भारत का उपराष्ट्रति राज्य सभा का पदेन सभापति होता है। +","india ka vice rajya sabha ka ex chairman hota hai. +",neutral,neutral,neutral +"And when the Garden is brought near; - +","और जब जन्नत निकट कर दी जाएगी, +","aur jab garden nikat kar di jaegi, +",neutral,neutral,neutral +"Another sensible approach would be to prevent the mast cells from exploding and the subsequent release of histamine. +","दूसरा उपाय यह है कि मास्ट कोशिकाओं से हिस्टामीन निकलने ही न दिया जाये। +","doosra approach yah hai ki mast cells se histamine nikalne hi n diya jaye. +",neutral,neutral,neutral +"Perhaps, you know by what name the generality of people call extraordinary ideas, uncommon actions, extraordinary high aspirations. +","शायद तुम जानती होगी कि आम लोग असाधारण विचारों, असाधारण कार्यों और असाधारण उच्चाकांक्षाओं को किस नाम से जानते हैं। +","shayad tum janti hogi ki aam call extraordinary ideas, asadharan karyon aur asadharan uchchakankshaon ko kis nam se jante hain. +",neutral,neutral,neutral +"The third pavilion from south is Khas Mahal. +","दक्षिण से तीसरा मण्डप है खास महल। +","south se tisra mahal hai khas mahal. +",neutral,neutral,neutral +"I got confirmation for this post. +","मेरी इस पोस्ट पर पुष्टि हो गई है। +","i is post par confirmation ho gee hai. +",neutral,neutral,neutral +"The file ""% s"" is read - only! Edit anyway? +","फ़ाइल से. है पढ़ें संपादन? +","file se hai paen edit +",neutral,neutral,neutral +"Trap shooter Anwar Sultan 's family complains that he has grown silent and introspective . +","ट्रैप शूटर अनवर सुल्तान के परिवार की शिकायत है कि वे बेहद शांत रहने लगे हैं . +","trap shooter anavar sultan ke parivar ki shikayat hai ki ve behad shant rahne lage hain +",negative,negative,negative +"is a lot of material that was already here, +","उसमें लगाई गई बहुत सी सामग्री ऎसी है जो पहले से ही मौजूद थी, +","usmen lot gee bahut si material ऎsi hai jo pahle se hi maujood thi, +",neutral,neutral,neutral +"He was born in the city of Surat in Gujarat on 24th August, 1833. +","24 अगस्त, 1833 को उसका जन्म गुजरात के सूरत नगर में हुआ। +","24 august , 1833 ko uska janm gujarat ke surat city men huaa. +",neutral,neutral,neutral +"and We made them a thing of the past, and We made them an example to later people. +","अतः हमने उन्हें अग्रगामी और बादवालों के लिए शिक्षाप्रद उदाहरण बना दिया +","ata people unhen thing aur example ke lie shikshaprad udaharan bana diya +",neutral,neutral,neutral +"Import HandyShopper store names only as item tags. +","आइटम टैग के रूप में ही HandyShopper के स्टोर नाम आयात करें +","item tags ke roop men hi HandyShopper ke handyshopper names import karen +",neutral,neutral,neutral +"waxing proud in the land, and devising evil; but evil devising encompasses only those who do it; So do they expect anything but the wont of the ancients? And thou shalt never find any changing the Wont of God, and thou shalt never find any altering the wont of God. +","(उसके आने से) उनकी नफरत को तरक्की ही होती गयी और बुदी तद्बीर (की बुराई) तो बुरी तद्बीर करने वाले ही पर पड़ती है तो (हो न हो) ये लोग बस अगले ही लोगों के बरताव के मुन्तज़िर हैं तो (बेहतर) तुम खुदा के दसतूर में कभी तब्दीली न पाओगे और खुदा की आदत में हरगिज़ कोई तग़य्युर न पाओगे +","uske aane se unki napharat ko tarakki hi hoti gayi aur proud tadbir ki evil to buri tadbir karne vale hi par parti hai to ho n ho ye log bas ancients hi logon ke bartav ke muntazir hain to behatar tum god ke dastoor men kabhi tabdili n thou aur god ki wont men hargiz koee tayyur n thou +",negative,negative,negative +"But one important institution - the U.S. government - claims not to know Hadayet's goals. An FBI spokesman has said that “there's nothing to indicate terrorism.” Another FBI official said of Hadayet: “It appears he went there with the intention of killing people. Why he did that we are still trying to determine.” Possible causes named include a work dispute and a hate crime. +","परंतु एक महत्वपूर्ण संस्थान अमेरिकी सरकार का दावा है कि उन्हें हदायत के लक्ष्य का पता नहीं था। एफ बी आई के प्रवक्ता ने कहा, “ कुछ भी नहीं है जो आतंकवाद की ओर संकेत करता हो” । एफ बी आई के एक और अधिकारी ने हदायत के सम्बंध में कहा, “ ऐसा प्रतीत होता है कि वह वहाँ लोगों को मारने के आशय से गया था । हम यह जानने का प्रयास कर रहे हैं कि उसने ऐसा क्यों किया?” सम्भावित कारणों में कार्यक्षेत्र का विवाद और घृणा अपराध बताया गया। +","parntu ek important institution ameriki sarkar ka dava hai ki unhen hadayat ke lakshy ka pata nahin tha. eph bi aaee ke pravakta ne kaha, kuchh bhi nahin hai jo aatnkvad ki or snket karta ho . eph bi aaee ke ek aur adhikari ne hadayat ke sambndh men kaha, aesa prtit hota hai ki vah vahan logon ko marne ke aashay se gaya tha . ham yah janne ka pryas kar rahe hain ki usne aesa kyon kiya sambhavit karnon men karyakshetr ka vivad aur ghrina apradh bataya gaya. +",negative,negative,negative +"Opening image ""% s"" +","""% s"" छवि सहेज रहा है +","s image sahej raha hai +",neutral,neutral,neutral +"""'And in the End He will return you into the (earth), and raise you forth (again at the Resurrection)? +","फिर तुमको उसी में दोबारा ले जाएगा और (क़यामत में उसी से) निकाल कर खड़ा करेगा +","phir tumko usi earth dobara le jaega aur yamat earth usi se nikal kar khara karega +",neutral,neutral,neutral +"The kutas and salas over the mandapa are of a smaller size than those over the aditala as usual. +","मंडप के ऊपर के कूट और शाला आदितल के ऊपर के कूटों और शलाओं से छोटे हैं जो कि सामान्य है। +","salas ke oopar ke kutas aur shala aditala ke oopar ke kooton aur shalaon se smaller hain jo ki usual hai. +",neutral,neutral,neutral +"At its tip it is toothed and sharply hooked. +","इसकी नोक दांतेदार और तीखे हुक वाली होती है. +","iski tip dantedar aur tikhe huk vali hoti hai +",neutral,neutral,neutral +"This is not the case . +","लेकिन यह बात नही है . +","lekin yah case nahi hai +",neutral,neutral,neutral +"Rotate the image 90 degrees to the right +","छवि को 90 डिग्री पर दाहिने घुमाएँ +","image ko 90 degrees par dahine rotate +",neutral,neutral,neutral +"During 2010 - 11, the production of HINCOL was 159. 39 MT. +","वर्ष 2010-11 के दौरान, हिनकोल का उत्पादन 159.39 लाख टन था। +","varsh 2010-11 ke dauran, hinkol ka production 15939 lakh tan tha. +",neutral,neutral,neutral +"Occurrences when an extension was installed +","एक्सटेंशन इंस्टॉल किए जाने की पुनरावृत्तियां +","ekstenshan installed kie jane ki punravrittiyan +",neutral,neutral,neutral +"It gives me great pleasure to address this distinguished gathering of business participants. Other than working on business deals, such events are important platforms for deepening mutual engagement and interaction, and providing an opportunity to think creatively about ways to develop the potential of our relationship. +","मुझे व्यापार प्रतिभागियों के इस विशिष्ट समूह को संबोधित करते हुए अत्यंत प्रसन्नता हो रही है। व्यापार सौदों पर कार्य करने के अलावा, ऐसे समारोह परस्पर सम्बन्ध और बातचीत में घनिष्ठता लाने तथा अपने रिश्तों की संभावनाएं पैदा करने के तरीकों के बारे में रचनात्मक ढंग से विचार करने के महत्त्वपूर्ण मंच होते हैं। +","great business gathering ke is distinguished other ko snbodhit karte hue ways pleasure ho rahi deals business saudon par interaction karne ke alava , aese samaroh mutual engagement aur batchit men ghanishthta lane tatha apne rishton ki opportunity paida karne ke tarikon ke bare men rachnatmak events se vichar karne ke mahattvpoorn platforms hote hain. +",positive,positive,positive +"That they said (in boast), ""We killed Christ Jesus the son of Mary, the Messenger of Allah""; - but they killed him not, nor crucified him, but so it was made to appear to them, and those who differ therein are full of doubts, with no (certain) knowledge, but only conjecture to follow, for of a surety they killed him not: - +","और उनके इस कथन के कारण कि हमने मरयम के बेटे ईसा मसीह, अल्लाह के रसूल, को क़त्ल कर डाला-हालाँकि न तो इन्होंने उसे क़त्ल किया और न उसे सूली पर चढाया, बल्कि मामला उनके लिए संदिग्ध हो गया। और जो लोग इसमें विभेद कर रहे है, निश्चय ही वे इस मामले में सन्देह में थे। अटकल पर चलने के अतिरिक्त उनके पास कोई ज्ञान न था। निश्चय ही उन्होंने उसे (ईसा को) क़त्ल नहीं किया, +","aur unke is kathan ke karan ki hamne marayam ke bete christ masih , allah ke rasool , ko tl kar dala-halanki n to inhonne use tl kiya aur n use sooli par doubts , balki mamla unke lie sndigdh ho therein aur jo log ismen vibhed kar rahe hai , full hi ve is mamle men sandeh men the. conjecture par chalne ke atirikt unke pas koee knowledge n tha. full hi unhonne use christ ko tl nahin kiya , +",negative,negative,negative +"The trained phone operators can fill in your form over the telephone. +","फोन पर प्रशिक्षित आप्रेटरज़ क्लेम फार्म भी भर सकते हैं। +","phone par trained operators klem pharm bhi bhar sakte hain. +",neutral,neutral,neutral +"In the interview , Bharali has given a blow-by-blow account of what supposedly happened after the “ marriage ” . +","अपने इंटरव्यू में भराली ने ' शादी के बाद ' की हर घटना का क्रमवार यौरा दिया है . +","apne interview men bharali ne marriage ke bad ki account ghatna ka kramvar yaura diya hai +",neutral,neutral,neutral +"And if their speed is zero, they 'll maintain that restfulness. +","और यदि उनकी गति शून्य है, तो वे उस restfulness को बनाए रखने देंगे। +","aur yadi unki speed shoony hai , to ve us restfulness ko banae rakhne denge. +",neutral,neutral,neutral +"Do not be like those who, after they had been given clear evidence, split into factions and differed among themselves: a terrible punishment awaits such people. +","तुम उन लोगों की तरह न हो जाना जो विभेद में पड़ गए, और इसके पश्चात कि उनके पास खुली निशानियाँ आ चुकी थी, वे विभेद में पड़ गए। ये वही लोग है, जिनके लिए बड़ी (घोर) यातना है। (यह यातना उस दिन होगी) +","tum un logon ki tarah n ho jana jo factions men par evidence , aur iske pashchat ki unke pas clear nishaniyan aa chuki thi , ve factions men par ge. ye vahi people hai , jinke lie bari terrible punishment hai. yah punishment us din hogi +",negative,negative,negative +"We can no longer accept many of the ancient beliefs and customs; we have no more faith in them, in Asia or in Europe or America. +","अब हम बहुत-से पुराने आचार-विचारों, पुराने रीति-रिवाजों को बदस्तूर नहीं कबूल करते। +","ab ham bahut-se purane aachar-vicharon, purane riti-rivajon ko badastoor nahin kabool karte. +",negative,negative,negative +"“ The States , ” he says , ” are still so numerous in India that they offer a grave conundrum in evolution to which no solution is at present forthcoming . +","वह लिखतें : हिंदुस्तान में इतनी ज़्यादा रियासतें हैं कि वे यहां की तरक़्की के रास्ते में एक बहुत बड़ी पहेली हैं . +","vah likhten : hindustan men itni zyada riyasten hain ki ve yahan ki taraki ke raste men ek bahut bari paheli hain +",negative,negative,negative +"the simplest way to do it is to tell their story, +","इसका सबसे आसान तरीका है उनकी कहानी कहो, +","iska sabse simplest tarika hai unki story kaho, +",neutral,neutral,neutral +"There are eighteen thousand verses in the BrahmavaivarthPuran. +","ब्रह्मवैवर्तपुराण में श्लोकों की संख्या अठारह हजार हैं। +","verses men shlokon ki snkhya eighteen hajar hain. +",neutral,neutral,neutral +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","fact men aperture time aesi exposure ko diya gaya vigopan time hai jo kisi optical system aperture ke madhyam se image plane men kisi kendrbindu par aati focus +",neutral,neutral,neutral +"A skilled or artistic worker or craftsman. +","कोई कुशल या कलात्मक मज़दूर या कारीगर। +","koee craftsman ya artistic worker ya karigar. +",neutral,neutral,neutral +"The main qualification for this is: +","इसके लिए मुख्य योग्यता है :| +","iske lie main qualification hai : +",neutral,neutral,neutral +"Allows to burn files not stored locally +","उन फाइलों को लिखने देता है जो स्थानीय रूप से जमा नहीं किए गए +","un allows ko likhne deta hai jo sthaniy roop se jama nahin kie ge +",neutral,neutral,neutral +"Issuer:% s Subject:% s Fingerprint:% s Signature:% s +","निर्गमकः% s विषयः% s फिंगरप्रिंटः% s हस्ताक्षरः% s +","nirgamka s vishya s phingaraprinta s hastakshra s +",neutral,neutral,neutral +"For more details log on to source link: http: / / www. orissa. gov. in / commerce% 26transport / +","अधिक जानकारी के लिए देखेंः http: / / www. orissa. gov. in / commerce% 26transport / +","adhik jankari ke lie dekhena http: www orissa gov in commerce 26transport +",neutral,neutral,neutral +"to run age - old programs on a modern computer. +","एक आधुनिक कंप्यूटर पर उम्र के पुराने कार्यक्रमों को चलाना. +","ek modern computer par age ke purane karyakrmon ko run +",neutral,neutral,neutral +"The amount of commission paid to the broker. +","दलाल को दी जाने वाली कमीशन की राशि। +","broker ko di jane vali commission ki amount +",neutral,neutral,neutral +"into a school. Everybody is wearing jeans, everybody is the same. +","एक स्कूल में, हर कोई जींस पहन रहा है, हर कोई एक सामान है +","ek school men , everybody koee jeans pahan raha hai , everybody koee ek saman hai +",neutral,neutral,neutral +"He commenced writing it on August 2, 1888, completed it on September 9, 1888, and released it in December. +","दूसरी अगस्त सन् 1888 को लिखनी शुरु की और 9 सितम्बर सन् 1888 को उसे पूर्ण किया तथा दिसम्बर में प्रकाशित किया। +","doosri august san 1888 ko likhni shuru ki aur 9 september san 1888 ko use poorn kiya tatha december men prkashit kiya. +",neutral,neutral,neutral +"Modify network connections for all users +","सभी उपयोगकर्ताओं के लिए संजाल कनेक्शन संशोधित करें +","sabhi users ke lie modify network connections karen +",neutral,neutral,neutral +"We are doing this by testing the blood from some patients, including babies. +","इस काम के लिए हम शिशुओं समेत कुछ रोगियों के खून की जाँच कर रहे हैं। +","is kam ke lie ham babies samet kuchh patients ke blood ki janch kar rahe hain. +",neutral,neutral,neutral +"Hell shall be their bed, and over them will be coverings of fire, thus shall We reward the wrongdoers. +","और उनके ऊपर से (आग ही का) ओढ़ना भी और हम ज़ालिमों को ऐसी ही सज़ा देते हैं और जिन लोगों ने ईमान कुबुल किया +","aur unke oopar se aag hi ka fire bhi aur ham wrongdoers ko aesi hi reward dete hain aur jin logon ne eeman kubul kiya +",negative,negative,negative +"to run age - old programs on a modern computer. +","एक आधुनिक कंप्यूटर पर उम्र के पुराने कार्यक्रमों को चलाना. +","ek modern computer par age ke purane programs ko chalana +",neutral,neutral,neutral +"And she conceived him, and she withdrew with him to a far place. +","फिर उसे उस (बच्चे) का गर्भ रह गया और वह उसे लिए हुए एक दूर के स्थान पर अलग चली गई। +","phir use us bachche ka garbh rah gaya aur vah use lie hue ek door ke place par alag chali gee. +",neutral,neutral,neutral +"Drinking the way thirsty camels drink. +","और पियोगे भी तो प्यासे ऊँट का सा (डग डगा के) पीना +","aur piyoge bhi to thirsty camels ka sa dag daga ke drinking +",neutral,neutral,neutral +"But the folk writer developed an elaborate story about her. +","किंतु लोक-साहित्यकारों ने उसकी कहानी विस्तार से सुनायी। +","kintu folk ne uski elaborate story se sunayi. +",neutral,neutral,neutral +"Set the browser to view only this genre +","ब्राउजर को सिर्फ ये शैल प्रदर्षित करने के लिए निश्चित करें +","set the browser ye shail genre karne ke lie set karen +",neutral,neutral,neutral +"Mark the selected messages as having been read +","चयनित संदेश पढ़े गए के रूप में चिह्नित करें +","chaynit messages read ge ke roop men mark karen +",neutral,neutral,neutral +"seeing towards down after the noon, we can see pollution in Los Angeles into the moor of mountains +","नीचे देखने पर सामने की पहाडी के मैदान में दोपहर के बाद वायु प्रदूषण साफ साफ़ लोस अन्जेल्स में दिखता है. +","niche dekhne par samne ki pahadi ke maidan men dopahar ke bad vayu prdooshan saph saf moor of mountains dikhta hai +",neutral,neutral,neutral +"In 1895 she went to england for higher studies and along with studies she also wrote poetry. +","वे १८९५ में उच्च शिक्षा प्राप्त करने के लिए इंग्लैंड गईं और पढ़ाई के साथ-साथ कविताएँ भी लिखती रहीं। +","ve १८९५ men higher studies prapt karne ke lie inglaind geen aur paaee ke sath-sath poetry bhi likhti rahin. +",neutral,neutral,neutral +"We are fortunate in having an adequate number of experts. +","सौभाग्य से हमारे पास इस प्रकार से विशेषज्ञ पर्याप्त संख्या में हैं। +","fortunate se hamare pas is prkar se experts adequate number men hain. +",positive,positive,positive +"Branch audit is conducted by a firm assigned the job on yearly basis. +","शाखा लेखा परीक्षा बाहरी फर्म द्वारा, जिसे वार्षिक रूप से यह कार्य सौंपा जाता है, की जाती है। +","branch audit pariksha bahri pharm dvara, jise varshik roop se yah kary saunpa jata hai, ki jati hai. +",neutral,neutral,neutral +"Can't copy file over directory +","निर्देशिका पर फ़ाइल की नक़ल नहीं ले सकता है +","directory par file ki nal nahin le sakta hai +",neutral,neutral,neutral +"Raynaud 's disease is also called as Raynaud' s phenomenon. +","रेनाड रोग को रेनाड की घटना भी कहा जाता है. +","renad disease ko renad ki phenomenon bhi kaha called hai +",neutral,neutral,neutral +"National Rail Museum, New Delhi +","राष्ट्रीय रेल संग्रहालय, नई दिल्ली +","national rail museum, nee delhi +",neutral,neutral,neutral +"Those of Abraham and Lut; +","और इबराहीम की क़ौम और लूत की क़ौम +","aur abraham ki lut aur loot ki lut +",neutral,neutral,neutral +"[Commanding him], ""Make full coats of mail and calculate [precisely] the links, and work [all of you] righteousness. Indeed I, of what you do, am Seeing."" +","कि फँराख़ व कुशादा जिरह बनाओ और (कड़ियों के) जोड़ने में अन्दाज़े का ख्याल रखो और तुम सब के सब अच्छे (अच्छे) काम करो वो कुछ तुम लोग करते हो मैं यक़ीनन देख रहा हूँ +","ki coats v kushada jirah banao aur kariyon ke jorne men andaze ka khyal calculate aur tum sab ke sab full full work karo vo kuchh tum log karte ho i yainan dekh raha hoon +",neutral,neutral,neutral +"Hanafi clan - its followers are in South Asia and Central Asia. +","हनफी पन्थ-इसके अनुयायी दक्षिण एशिया और मध्य एशिया में हैं। +","hanafi panth-iske followers south asia aur central asia men hain. +",neutral,neutral,neutral +"is I took all of the interviews +","कि मैंने उन सभी साक्षातकारों को लिया +","ki i un sabhi interviews ko liya +",neutral,neutral,neutral +"Let 's say when x is equal to 2. +","X barabar do sochte hai. +","X equal x sochte hai +",neutral,neutral,neutral +"The Organisation has three Regional Headquarters i. e. Mumbai, Chennai, and Port Blair. +","इसके तीन क्षेत्रीय मुख्यालय, मुंबई, चेन्नई और पोर्ट ब्लेयर में हैं। +","iske tin regional organisation , mumbai , chennai aur port blair men hain. +",neutral,neutral,neutral +"which obeys really strict rules. +","जो वास्तव में कड़े नियमों का अनुसरण करता है। +","jo obeys really strict niymon ka anusaran karta strict +",neutral,neutral,neutral +"This Weather Underground, by some unlawful intent, sent a terror group to the USA to with an aim to attract attention of the world towards their needs.Some excerpts of the relations of these terror groups were mentioned in some media. +","इस मौसम अंडरग्राउंड (Weather Underground) जो है जबकि कोई हताहत कारण विभिन्न दुनिया राजनीतिक मुद्दों के लिए मीडिया का ध्यान लाने के लिए आतंकवादी वारदातों का प्रदर्शन एक उग्रवादी संगठन अमेरिका गया था.इस मुद्दे से कई संक्षिप्त दिए गए समाचार सेवाओं द्वारा आतंकवादी वारदातों के संबंध में ही उल्लेख है. +","is weather underground Weather Underground jo hai jabki koee hatahat karan vibhinn world rajnitik muddon ke lie aim ka attention lane ke lie terror groups ka pradarshan ek ugrvadi sngathan usa gaya thais mudde se kee snkshipt die intent samachar sevaon dvara terror groups ke relations men hi ullekh hai +",negative,negative,negative +"We must learn international languages to communicate and widen our horizon. +","हमें अपने क्षितिज का विस्तार करने और व्यापार संचार के लिए अंतर्राष्ट्रीय भाषाएं पढनी ही चाहिए। +","hamen apne horizon ka vistar karne aur vyapar snchar ke lie international languages padhni hi chahie. +",neutral,neutral,neutral +"The ada bazzar of Indore is full of jewellery and cosmetics. +","इंदौर का अडा बाजार गहनों व सौंदर्य प्रसाधनों से भरा पडा है। +","indore ka ada bajar jewellery v saundary cosmetics se full ada hai. +",neutral,neutral,neutral +"Democracy implies the existence of representative institutions, the expression of the will of the people as to who their representatives would be and the participation of the people in national tasks. +","लोकतंत्र में यह अंतर्निहत है कि प्रतिनिधित्वपूर्ण संस्थाएं काम करें और लोग स्वतंत्र रूप से राय दे सकें कि उनमें प्रतिनिधि कौन होंगे तथा राष्ट्रीय क्रियाकलापों में जनता की भागीदारी रहे। +","loktntr men yah antarnihat hai ki representative institutions kam karen aur log svtntr roop se ray de saken ki unmen prtinidhi kaun honge tatha rashtriy kriyaklapon men janta ki bhagidari rahe. +",neutral,neutral,neutral +"The ada bazzar of Indore is full of jewellery and cosmetics. +","इंदौर का अडा बाजार गहनों व सौंदर्य प्रसाधनों से भरा पडा है। +","indaur ka ada bajar gahnon v saundary prsadhnon se bhara pada hai. +",neutral,neutral,neutral +"How many tens of thousands of years does it go back? +","यह कितने दसियों हजारों साल पीछे जाती हैं ? +","yah tens of thousands sal pichhe jati hain +",neutral,neutral,neutral +"One of my predecessors left on my table a framed quotation which reads: +","मेरे एक पूर्ववर्ती ने मेरी मेज पर फ्रेम किया हुआ कथन छोड़ा जो इस प्रकार थाः +","mere ek predecessors ne meri table par phrem kiya huaa kathan chhora jo is prkar thaa +",neutral,neutral,neutral +"We 'll do the microbiology of it in the future +","हम भविष्य में इस बात का सूक्ष्म जीव विज्ञान है, लेकिन यह +","ham future men is bat ka sookshm jiv vijnjan hai, lekin yah +",neutral,neutral,neutral +"For a country of this small size, the geographical variations are astonishing. +","एक छोटे से क्षेत्र के लिए नेपाल की भौगोलिक विविधता बहुत उल्लेखनीय है। +","ek chhote se kshetr ke lie nepal ki geographical variations bahut ullekhniy astonishing +",neutral,neutral,neutral +"Few, if any of us, can use this highest reason with any purity, but the attempt to do it is the topmost capacity of the inner instrument, the antahkarana. +","यदि हममें से कोई इस उच्चतम बुद्धि का प्रयोग किसी शुद्ध रूप में कर भी पाते हैं तो वे विरले ही होते हैं, किन्तु इसके लिये प्रयत्न करना अन्तःकरण की सबसे ऊंची क्षमता है। +","yadi hammen se koee is highest reason ka pryog kisi purity roop men kar bhi pate hain to ve few hi hote hain , kintu iske liye attempt karna inner ki sabse topmost capacity hai. +",neutral,neutral,neutral +"Putting on a stiff expression, he went on. +","चेहरे पर कड़ी-सी भाव-मुद्रा लाकर उसने आगे कहा, +","expression par kari-si bhav-mudra lakar usne stiff kaha , +",neutral,neutral,neutral +"Root node of '% s' must be < evoldap >, not <% s > '% s' +","का रूट नोड जरूर होनी चाहिये, न कि <% s> +","ka root node evoldap jaroor honi chahiye, n ki s +",neutral,neutral,neutral +"where the entire revenue of the Afghan state +","जहां अफगान राज्य का पूरा राजस्व +","jahan afghan state ka poora revenue +",neutral,neutral,neutral +"and the guilty shall behold the Fire and know that they are bound to fall into it, and will find no escape from it. +","और गुनेहगार लोग (देखकर समझ जाएँगें कि ये इसमें सोके जाएँगे और उससे गरीज़ (बचने की) की राह न पाएँगें +","aur guilty shall behold samajh jaengen ki ye ismen soke jaenge aur find no escape ki ki rah n paengen +",negative,negative,negative +"In 1882 , Lord Ripon established local self-government in India with the setting up of district local boards . +","1882 में लार्ड रिपन ने जिला स्थानीय बोर्डों के गठन के साथ भारत में स्थानीय स्वशासन की स्थापना की . +","1882 men lard ripan ne district local boards ke gathan ke sath bharat men sthaniy svshasan ki sthapna ki +",neutral,neutral,neutral +"Subhashbabu was in jail in year 1930. +","1930 में सुभाषबाबू कारावास में थे। +","1930 men subhashbabu jail men the. +",neutral,neutral,neutral +"Ans : Twenty-eight (28),11.71% +","उत्तरः अट्ठाईस (28), 11.71% +","ans atthaees 28 , 1171 +",neutral,neutral,neutral +"So We took retribution from them, and We drowned them in the sea because they denied Our signs and were heedless of them. +","तब आख़िर हमने उनसे (उनकी शरारत का) बदला लिया तो चूंकि वह लोग हमारी आयतों को झुटलाते थे और उनसे ग़ाफिल रहते थे हमने उन्हें दरिया में डुबो दिया +","tab aair hamne unse unki shararat ka badla liya to choonki vah denied our signs ko jhutlate the aur unse aphil rahte the hamne unhen dariya men dubo diya +",negative,negative,negative +"but believe me, we all share one incredibly powerful thing - +","परंतु विश्वास मानिए, हम सभी में एक अविश्वसनीय शक्तिशाली बात है - +","parntu vishvas manie, ham sabhi men ek incredibly powerful thing hai - +",positive,positive,positive +"This is an incorrect suggestion to solve this problem. +","यह इस समस्या को सुलझाने का गलत सुझाव है। +","yah is samasya ko suljhane ka solve this problem +",negative,negative,negative +"An Iranian government - sponsored radio station gleefully predicts that its brand of militant Islam within the United States will “provoke a dangerous and crucial confrontation” with the American authorities. +","ईरानी सरकार द्वारा प्रायोजित एक रेडियो स्टेशन ने अत्यंत प्रसन्नतापूर्वक भविष्यवाणी की कि उसके प्रकार का उग्रवादी इस्लाम अमेरिका में अमेरिकी अधिकारियों के साथ महत्वपूर्ण और खतरनाक संघर्ष को प्रोत्साहित कर देगा। +","iranian government dvara prayojit ek rediyo steshan ne atynt prasanntapoorvak bhavishyvani ki ki uske prkar ka ugrvadi islam amerika men ameriki adhikariyon ke sath mahatvpoorn aur khatarnak sngharsh ko protsahit kar dega. +",negative,negative,negative +"For example, unwanted pregnancies especially amongst the under 16s always have serious personal and social consequences for both the mothers and their children. +","उदाहरणार्थ अनचाहा गर्भ, विशेषकर १६ वर्ष से कम की अवस्था में, माता एवं बच्चे दोनों के लिये अनेक वैयक्तिक एवं सामाजिक समस्याओं को जन्म देता हैं। +","example unwanted serious , visheshakar १६ varsh se kam ki avastha men , mata evn children donon ke liye anek personal evn social samasyaon ko janm deta hain. +",negative,negative,negative +"Central Excise, Customs and Service Tax, Patna +","केन्द्रीय उत्पाद शुल्क, सीमा शुल्क और सेवा कर, पटना +","central utpad excise , sima excise aur service kar , patna +",neutral,neutral,neutral +"Choose the version of the Kolab Server you are using. +","कोलाब संस्करण जो आप इस्तेमाल कर रहे हैं उसे चुनें. +","kolab version jo aap istemal kar rahe hain use choose +",neutral,neutral,neutral +"Whether accelerated compositing should be enabled +","क्या त्वरित कंपोजिटिंग सक्रिय की जानी चाहिए +","kya accelerated compositing sakriy ki jani chahie +",neutral,neutral,neutral +"A manual switch on the control panel by means of which a bit may be entered in a processor register. +","कंट्रोल पैनल में मैनुअल स्विच, जिसके द्वारा एक बिट प्रोसेसर रजिस्टर में प्रविष्ट कर सकता है. +","control panel men manual switch, jiske dvara ek bit processor register men prvisht kar sakta hai +",neutral,neutral,neutral +"The set that includes all of the elements of concern in a given study. +","प्रदत्त अध्ययन में सभी विषयगत अवयवों को धारण किया हुआ समुच्चय. +","pradatt study men sabhi vishayagat elements ko concern kiya huaa set +",neutral,neutral,neutral +"It is also a matter of satisfaction that graduates of the centre have been recognised and valued. +","यह भी संतोष का विषय है कि इस सेंटर के स्नातकों को मान्यता और महत्व प्राप्त है। +","yah bhi satisfaction ka matter hai ki is centre ke snatkon ko manyta aur mahatv prapt hai. +",positive,positive,positive +"An amount of notes and cashes that the cashier maintain in his cash - box for operations. +","नोटों या सिक्कों की ऐसी राशि जो खजांची दैनिक कार्य व्यवहार के लिए अपने नकदी बॉक्स में रखता हो। +","noton ya sikkon ki aesi rashi jo khajanchi dainik kary vyavhar ke lie apne nakdi bks men rakhta ho. +",neutral,neutral,neutral +"II. Muslims Rejected Or will the door be shut in their face? American columnist Ralph Peters dismisses the first scenario: “Far from enjoying the prospect of taking over Europe by having babies, Europe's Muslims are living on borrowed time. … predictions of a Muslim takeover of Europe … ignore history and Europe's ineradicable viciousness.” Instead, depicting Europe as the place “that perfected genocide and ethnic cleansing,” he predicts its Muslims “will be lucky just to be deported,” and not killed. Claire Berlinski , in Menace in Europe: Why the Continent's Crisis Is America's, Too , implicitly agrees, pointing to the “ancient conflicts and patterns … now shambling out of the mists of European history ” which could well trigger violence. +","संक्षेप में पहला तर्क दर्शाता है कि मुसलमानों की सक्रियता और यूरोप की निष्क्रियता के कारण यूरोप का इस्लामीकरण होगा और अपने धिम्मी स्तर के साथ वह इस्लाम में धर्मान्तरित हो जायेगा। उच्च और निम्न धार्मिकता, उच्च और निम्न जन्म दर तथा उच्च और निम्न सास्कृतिक आत्मविश्वास के कारण यह सम्भव होगा। यूरोप एक खुला द्वार है जिसमें मुसलमान टहल रहे हैं। +","snkshep men pahla tark darshata hai ki musalmanon ki sakriyta aur yoorop ki nishkriyta ke karan yoorop ka islamikaran hoga aur apne dhimmi star ke sath vah islam men dharmantrit ho jayega. uchch aur nimn dharmikta, uchch aur nimn janm dar tatha uchch aur nimn saskritik aatmvishvas ke karan yah sambhav hoga. yoorop ek khula dvar hai jismen musalman tahal rahe hain. +",negative,negative,negative +"There were errors trying to start the X server. +","एक्स सर्वर प्रारंभ करने की कोशिश में त्रुटियाँ हुईं. +","x server prarnbh karne ki koshish men errors hueen +",negative,negative,negative +"Gandhiji claimed the defeat of Sitarmayya as his own defeat and told his colleagues that if they are not satisfied by Subhashbabu's methods, they can leave the Congress. +","गाँधीजी ने पट्टाभी सितारमैय्या की हार को अपनी हार बताकर अपने साथीयों से कह दिया कि अगर वें सुभाषबाबू के तरिकों से सहमत नहीं हैं तो वें कांग्रेस से हट सकतें हैं। +","gandhiji ne pattabhi sitarmayya ki defeat ko apni defeat own apne colleagues se kah diya ki agar congress subhashbabu ke methods se sahamat nahin hain to congress kangres se hat sakten hain. +",negative,negative,negative +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","fact men aperture time aesi exposure ko diya gaya vigopan time hai jo kisi optical system aperture ke madhyam se image plane men kisi kendrbindu par aati focus +",neutral,neutral,neutral +"Three public meetings were held in Bombay City to observe this day. +","उस अवसर पर बंबई में तीन सभाएं की गयीं। +","us avasar par bombay meetings were held ki gayin. +",neutral,neutral,neutral +"Nominee of the insurance has to be a near relative of the subscriber. +","बीमा का नामित व्यक्ति अभिदाता का निकट संबंधी होगा। +","insurance ka namit vyakti abhidata ka nikat snbndhi hoga. +",neutral,neutral,neutral +"It is free, and borrowing books is free. +","यह सेवा निःशुल्क (मुफ़्त) है और (पढ़ कर लौटा दी जाने वाली) किताबें मुफ़्त में मिलेंगी. +","yah seva niashulk muft hai aur pa kar lauta di jane vali books is free milengi +",positive,positive,positive +"This is composed of seven small islands that have been formed by volcanic eruptions and is connected to the mainland via a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska gathan lava nirmit sat chhote-chhote small dvara huaa hai evn yah bridge dvara prmukh bhoo-khnd ke sath jura huaa hai. +",neutral,neutral,neutral +"Madhya Pradesh occupies perhaps the oldest part of the subcontinent – called the Gondwana - the home of the Gonds. +","मध्य प्रदेश संभवतया उप महाद्वीप का संभतया सबसे पुराना स्थान है जिसे गोंडवाना कहते हैं अर्थात गोंड समुदाय का घर। +","pradesh occupies snbhavatya up mahadvip ka snbhatya sabse oldest part hai jise gondvana kahte hain arthat gond samuday ka ghar. +",neutral,neutral,neutral +"and preached to them in public, and also addressed them in secret. +","""फिर मैंने उनसे खुले तौर पर भी बातें की और उनसे चुपके-चुपके भी बातें की +","phir mainne unse khule taur par bhi secret ki aur unse chupke-chupke bhi secret ki +",neutral,neutral,neutral +"to pull money out of the air, +","पैसे हवा से बाहर खींचने के लिए, +","money air se bahar khinchne ke lie , +",neutral,neutral,neutral +"As regards Central laws on matters relating to the Concurrent List, such as welfare measures, procedural laws, etc., the Constitution itself provides for the State Legislature to modify or repeal such Central laws after obtaining the President 's assent. +","जहां तक समवर्ती सूची वाले केन्द्रीय कानूनों का सम्बंध है, जैसे कल्याण कार्यों तथा कार्यविधि सम्बंधी कानून आदि, स्वयं संविधान में यह प्रावधान है कि राज्य विधान मंडल राष्ट्रपति की स्वीकृति लेकर ऐसे कानूनों में परिवर्तन कर सकते है या उन्हें निरस्त कर सकते है। +","jahan tak samavarti soochi vale kendriy kanoonon ka sambndh hai, jaise kalyan karyon tatha karyvidhi sambndhi kanoon aadi, svyn snvidhan men yah pravdhan hai ki rajy vidhan mndal rashtrapti ki svikriti lekar aese modify or repeal kar sakte hai ya unhen nirast kar sakte hai. +",neutral,neutral,neutral +"Can be development very quickly of articles of short timed subjects in Wikipedia as articles of Mumbai blasts were present after few minutes of its happening along with reference links in English Wikipedia. +","विकिपिडीया मे काफी तेज़ी से समसामयिक विषयों के बारे में लेखो का विकास हो सकता है जैसे कि मुंबई विस्फोटों के खबर का ज़ाहिर होने के चंद मिनटों में ही उसके बारे में अंग्रेजी विकिपीडिया में प्रासंगिक कड़ियों के साथ लेख मौजूद था। +","vikipidiya me kaphi tezi se samsamyik vishyon ke bare men lekho ka vikas ho sakta hai jaise ki munbee visphoton ke khabar ka zahir hone ke chnd minton men hi uske bare men angreji vikipidiya men prasngik kariyon ke sath lekh maujood tha. +",neutral,neutral,neutral +"Dak Babu was absorbed in his work. +","डाक बाबू अपने काम में व्यस्त थे। +","dak babu apne work men vyast the. +",neutral,neutral,neutral +"and it re-condenses in the other side. +","और वह फिर दूसरे पक्ष में गाढ़ी हो जाती है +","aur vah phir doosre side men gai ho jati hai +",neutral,neutral,neutral +"To Ravana's question, Hanuman in his answer introduced himself as Ram's messenger. +","रावण के प्रश्न के उत्तर में हनुमान ने अपना परिचय राम के दूत के रूप में दिया। +","ravan ke question ke answer men hanuman ne apna parichay ram ke messenger ke roop men diya. +",neutral,neutral,neutral +"Modify network connections for all users +","सभी उपयोगकर्ताओं के लिए संजाल कनेक्शन संशोधित करें +","sabhi users ke lie network connections modify karen +",neutral,neutral,neutral +"The e-hospital and e-project programmes taken up by NIMHANS are, therefore, excellent initiatives, worthy of emulation by other institutions. +","इसलिए निमहैन्स द्वारा आरंभ किए गए ई-हास्पिटल और ई-प्रोजेक्ट कार्यक्रम उत्कृष्ट पहल हैं, अन्य संस्थाओं द्वारा अनुकरण किए जाने योग्य है। +","islie nimhans dvara aarnbh kie emulation ee-haspital aur ee-projekt programmes excellent pahal hain , other institutions dvara anukaran kie jane worthy hai. +",positive,positive,positive +"Enquiries were constituted with a view to toning up the administration . +","प्रशासन में सुधार लाने की दृष्टि से जांच कमेटियां बिठायी गयीं . +","administration men sudhar lane ki view se janch kametiyan enquiries gayin +",neutral,neutral,neutral +"An elementary Hindi translation of Srimad Bhagwat Geeta. +","श्रीमद् भगवद्गीता का सरल हिन्दी मे आनुवाद +","translation geeta ka saral hindi me elementary +",neutral,neutral,neutral +"You need two numbers or string to do an addition +","जोड़ने के लिए आपको दो संख्या या वाक्यांश चाहिए +","addition ke lie aapko do numbers ya vakyansh chahie +",neutral,neutral,neutral +"We are a nine through 12 public school, +","हम पब्लिक स्कूल हैं नवीं से बारहवीं तक, +","ham public school hain navin se barahvin tak , +",neutral,neutral,neutral +"Change sound volume and sound events +","ध्वनि आवाज और ध्वनि घटना बदलें +","sound volume aur change sound volume +",neutral,neutral,neutral +"We are a nine through 12 public school, +","हम पब्लिक स्कूल हैं नवीं से बारहवीं तक, +","ham public school hain navin se barahvin tak, +",neutral,neutral,neutral +"Equally evident are grounds for introspection. +","समान रूप से स्पष्ट आत्मनिरीक्षण के लिए आधार हैं। +","saman roop se evident introspection ke lie grounds hain. +",neutral,neutral,neutral +"The damage caused by man - made pollution and its effects on the future of mankind are now being seriously studied by scientists in a number of countries. +","मानव निर्मित प्रदूषण से होने वाली क्षति और भविष्य में मानव जाति पर होने वाले उसके दुष्प्रभावों का अब अनेक देशों में गंभीरतापूर्वक वैज्ञानिकों के द्वारा अध्ययन किया जा रहा है। +","manav made pollution se hone damage caused aur future of mankind jati par hone vale uske dushprbhavon ka ab number of countries gnbhirtapoorvak vaijnjanikon ke dvara adhyayan kiya ja raha hai. +",negative,negative,negative +"8.Volunteers for assisting disabled persons and senior citizens +","8. निःशक्त तथा वरिष्ठ नागरिकों की सहायतार्थ स्वयं सेवक। +","8 disabled tatha senior citizens ki sahaytarth svyn sevak. +",neutral,neutral,neutral +"He propagated the principles of Hinduism. +","उसने हिन्दुत्व के नियमों का प्रचार किया। +","usne principles of hinduism ka propagated kiya. +",neutral,neutral,neutral +"In a Message, the President has said: +","एक संदेश में राष्ट्रपति ने कहा हैः +","ek message men president ne kaha haia +",neutral,neutral,neutral +"They are nocturnal animals, sleeping during the day and hunting at night, singly or in pairs. +","दिन में यह सोती रहती है और रात में अकेले या जोड़े में शिकार करती है। +","day men yah nocturnal rahti hai aur night men akele ya animals men hunting karti hai. +",neutral,neutral,neutral +"The indo function is installed in all aircrafts of the company. +","कंपनी के सभी विमानों में इंडो फलन संस्थापित किया गया है। +","company ke sabhi aircrafts men indo function snsthapit kiya gaya hai. +",neutral,neutral,neutral +"Mrs de Leeuw then invited her to teach at a new school at London. +","इसके बाद श्रीमती डा. लीयू ने उसे लंदन के एक नए स्कूल में अध्यापन-कार्य के विए आमंत्रित किया। +","iske bad mrs da liyoo ne use london ke ek new school men adhyapan-kary ke vie aamntrit kiya. +",neutral,neutral,neutral +"So we should do everything we can, +","तो हमें वो सब करना चाहिए, जो हम कर सकते है +","to hamen vo sab karna chahie, jo ham kar sakte hai +",neutral,neutral,neutral +"Run an application by typing a command or choosing from a list +","कमांड प्रविष्ट कर एक अनुप्रयोग चलाएँ या सूची से चुनकर +","command prvisht kar ek application chalaen ya soochi se choosing +",neutral,neutral,neutral +"this order was made applicable to State Governments including the State of Uttar Pradesh. +","इस आदेश को उत्तर प्रदेश राज्य सहित समस्त राज्य सरकारों को लागू किया गया था. +","is order ko uttar pradesh state sahit samast state governments ko applicable kiya gaya tha +",neutral,neutral,neutral +"As mentioned at the very beginning of this book, had it not been for these insects we would not have had our vegetation and landscape. +","जैसा कि इस पुस्तक के प्रारंभ में ही बताया जा चुका है अगर ये कीट न होते तो न तो हमारी वनस्पति होती और न हमें भूदृश्य देखने को मिलते. +","jaisa ki is book ke beginning men hi bataya ja chuka hai agar ye insects n hote to n to hamari vegetation hoti aur n hamen landscape dekhne ko milte +",neutral,neutral,neutral +"The period of heat in ewes lasts from 3 to 70 hours , with an average of 27 hours . +","भेड़ें 3 से 70 घण्टे तक गर्मी में रहती हैं.गर्मी की औसत अवधि 27 घण्टे होती है . +","ewes 3 se 70 hours tak garmi men rahti haingarmi ki ausat avdhi 27 hours hoti hai +",neutral,neutral,neutral +"When such a person comes to Us, he will say [to his comrade], ""If only you had been as far away from me as east is from west. What an evil comrade!"" +","यहाँ तक कि जब (क़यामत में) हमारे पास आएगा तो (अपने साथी शैतान से) कहेगा काश मुझमें और तुममें पूरब पश्चिम का फ़ासला होता ग़रज़ (शैतान भी) क्या ही बुरा रफीक़ है +","yahan tak ki jab yamat men hamare pas aaega to apne sathi shaitan se kahega kash mujhmen aur tummen poorab pashchim ka fasla hota raz shaitan bhi kya hi bura raphi hai +",negative,negative,negative +"Originally, the reservation was for ten years but it is being extended every time for the next ten years - LRB - articles 330 and 334 - RRB -. +","मूलतया आरक्षण दस वर्षों के लिए था लेकिन उसे हर बार अगले दस वर्षों के लिए बढ़ाया जा रहा है (अनुच्छेद 330 तथा 334). +","originally reservation das years ke lie tha lekin use har bar agle das years ke lie baaya ja raha hai articles 330 tatha 334 +",neutral,neutral,neutral +"The first Sthai inhabitants took its from about 1000 years back | +","प्रथम स्थाई बस्तियों ने ९००० वर्ष पूर्व स्वरुप लिया। +","first sthai inhabitants ne years varsh poorv svrup liya. +",neutral,neutral,neutral +"A new idea with another turn of the logical machine revolts against it and breaks up the machinery, but A new idea with another turn of the logical machine revolts against it and breaks up the machinery, +","तब एक नया विचार इस तर्कसंगत यन्त्र की एक और प्रवृति को लिए हुए उसके विरुद्ध खड़ा हो जाता है और उस यन्त्र को तोड़-फोड़ देता है, किन्तु वह उसे इसलिए तो तोड़ता है कि अन्त में वह उसके स्थान पर एक दूसरी यांत्रिक प्रणाली की, किसी अन्य मत सिद्धान्त या आचार-पद्धति की स्थापना कर सके। +","tab ek new idea is logical machine ki ek aur prvriti ko lie hue uske viruddh khara ho jata hai aur us machine ko tor-phor deta hai , kintu vah use islie to torta hai ki ant men vah uske sthan par ek doosri yantrik prnali ki , kisi any revolts siddhant ya aachar-paddhti ki sthapna kar sake. +",neutral,neutral,neutral +"And We gave to Abraham, Isaac and Jacob - all [of them] We guided. And Noah, We guided before; and among his descendants, David and Solomon and Job and Joseph and Moses and Aaron. Thus do We reward the doers of good. +","और हमने इबराहीम को इसहाक़ वा याक़ूब (सा बेटा पोता) अता किया हमने सबकी हिदायत की और उनसे पहले नूह को (भी) हम ही ने हिदायत की और उन्हीं (इबराहीम) को औलाद से दाऊद व सुलेमान व अय्यूब व यूसुफ व मूसा व हारुन (सब की हमने हिदायत की) और नेकों कारों को हम ऐसा ही इल्म अता फरमाते हैं +","aur hamne jacob ko isaac va joseph job david pota ata kiya hamne sabki hidayat ki aur unse pahle nooh ko bhi noah hi ne hidayat ki aur unhin jacob ko aulad se daood v suleman v ayyoob v yoosuph v moses v harun sab ki hamne hidayat ki aur nekon doers ko noah aesa hi ilm ata pharmate hain +",positive,positive,positive +"Parliamentary Forum on Water Conservation and Management; +","जल संरक्षण और प्रबंधन संबंधी संसदीय मंच; +","water conservation aur management snbndhi parliamentary forum +",neutral,neutral,neutral +"A group of people who work together for a particular job / purpose. +","व्यक्तियों का ऐसा समूह जो सामूहिक रुप से किसी कार्य/प्रयोजन हेतु कार्यरत हो। +","people ka job group jo samoohik rup se kisi karypryojan purpose karyarat ho. +",neutral,neutral,neutral +"Exposure time will be shifted forward by% d% s,% d% s,% d% s, and% d% s. +","एक्सपोजर समय आगे बढ़ा दिया जाएगा% d% s,% d% s,% d% s, और% d% s से. +","exposure time aage baa diya jaega d s , d s , d s , aur d s se +",neutral,neutral,neutral +"Section - 231, Income-tax Act, 1961-2018 +","धारा - 231, आय-कर अधिनियम, 1961-2018 +","section - 231, income-tax act, 1961-2018 +",neutral,neutral,neutral +"She bent over Mohan and hiccupped. +","वह मोहन पर झुक गयी और हिलक उठी। +","vah mohan par bent gayi aur hilak uthi. +",neutral,neutral,neutral +"An organism or individual having a diploid set of chromosomes derived from each parent. +","कोई अवयव या जीव जिस में माता और पिता इन दोनों से ही प्राप्त गुणसुत्र का एक दोहरा गुट है। +","koee avayav ya organism jis men parent aur set in donon se hi prapt diploid ka ek dohra gut hai. +",neutral,neutral,neutral +"Then We raised up after them another generation. +","फिर हमने उनके बाद एक और क़ौम को (समूद) को पैदा किया +","phir hamne unke bad ek aur aum ko smood ko paida kiya +",neutral,neutral,neutral +"Raynaud 's disease is also called as Raynaud' s phenomenon. +","रेनाड रोग को रेनाड की घटना भी कहा जाता है. +","raynaud disease ko raynaud ki phenomenon bhi kaha jata hai +",neutral,neutral,neutral +"He tried both allopathic and homeopathic medicines. +","उन्होंने एलोपैथी तथा होमियोपैथी दोनों प्रकार के इलाज करवाए। +","unhonne allopathic tatha homiyopaithi donon prkar ke medicines karvae. +",neutral,neutral,neutral +"In 'Ad (also is a sign), when We sent a blasting wind against them, +","और आद में भी (तुम्हारे लिए निशानी है) जबकि हमने उनपर अशुभ वायु चला दी +","aur aad men bhi tumhare lie nishani hai jabki hamne unapar ashubh vayu chala di +",neutral,neutral,neutral +"Mass unemployment in the country is a matter of grave concern. +","देश में व्यापक बरोजगारी एक बडी चिन्ता का विषय है। +","country men mass barojgari ek grave concern ka matter hai. +",negative,negative,negative +"This pertains to Panchayats and inter - alia provides that: i In every village, there shall be a Panchayat which will be a constitutional body. +","इस अधिनियम के मुख्य उपबंध इस प्रकार हैं: 1. हर गांव में एक पंचायत होगी जो एक संवैधानिक निकाय होगी। +","is pertains ke body upbndh is prkar hain: 1 har ganv men ek pnchayat hogi jo ek snvaidhanik nikay hogi. +",neutral,neutral,neutral +"Sustainable Development of Sugarcane - Based Cropping System (SUBACS), and +","गन्ना फसल के सतत विकास के लिए, फसल आधारित प्रणाली +","sugarcane phasal ke sustainable development ke lie, based cropping system +",neutral,neutral,neutral +"You can see a gleam in their eye. +","और आपको उनकी आँखों में एक चमक दिखेगी। +","aur aapko unki eye men ek chamak gleam +",neutral,neutral,neutral +"The Overseas Indian community estimated at over 25 million is spread across every major region in the world. +","प्रवासी भारतीय समुदाय अनुमानतः 2.5 करोड़ से अधिक है। जो विश्व के हर बड़े क्षेत्र में फैले हुए हैं। +","overseas indian community anumanta 25 karor se adhik hai. jo world ke har major region men phaile hue hain. +",neutral,neutral,neutral +"This has been built with seven small lave made island and connected to main land by a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska gathan lave nirmit sat chhote-chhote small dvara huaa hai evn yah bridge dvara main bhoo-khnd ke sath jura huaa land +",neutral,neutral,neutral +"And in all cases we have to ask - +","और सभी मामलों में हमे पूछना है +","aur sabhi mamlon men hame poochhna hai +",neutral,neutral,neutral +"The instinctive nature of man to form into groups and to dance and sing is as old as human existence. +","नृत्य और गायन मानव की आंतरिक प्रकृति है तथा मानव-जीवन के साथ-साथ ही इसका आरंभ हुआ। +","dance and sing manav ki instinctive nature hai tatha form into groups hi iska aarnbh huaa. +",neutral,neutral,neutral +"We are doing this by testing the blood from some patients, including babies. +","इस काम के लिए हम शिशुओं समेत कुछ रोगियों के खून की जाँच कर रहे हैं। +","is kam ke lie ham including babies kuchh patients ke testing the blood kar rahe hain. +",neutral,neutral,neutral +"The average goat requires about 3. 5 kilograms of green fodder a day. +","एक बकरी को प्रतिदिन औसतन 3.5 किलोग्राम हरे चारे की आवश्यकता होती है। +","ek goat ko day average 35 kilograms green fodder ki aavashyakta hoti hai. +",neutral,neutral,neutral +"While one is the basic unit of life, the other is that of inanimate matter. +","एक जीवों की इकाई या मूल मात्रक है तो दूसरी जड़ पदार्थों की. +","ek unit of life ya inanimate matter hai to doosri jar padarthon ki +",neutral,neutral,neutral +"Parallel transfers require multiple bit paths. +","समांतर अंतरण को बहुविध पथ की आवश्यकता होती है। +","parallel transfers ko multiple paths ki aavashyakta hoti hai. +",neutral,neutral,neutral +"is I took all of the interviews +","कि मैंने उन सभी साक्षातकारों को लिया +","ki mainne un sabhi interviews ko liya +",neutral,neutral,neutral +"Set the directory where to store temporary files +","निर्देशिका सेट करें जहाँ अस्थायी फाइल जमा करना है +","directory set karen jahan temporary phail jama karna hai +",neutral,neutral,neutral +"Cement Machinery: - there are 18 units in the organized sector for the manufacture of complete cement plant machinery. +","सीमेंट मशीनरीः-पूर्ण सीमेंट संयंत्र मशीनरी के विनिर्माण के लिए संगठित क्षेत्रक में 18 यूनिट हैं। +","siment mashinria-poorn cement plant machinery ke vinirman ke lie organized sector men 18 yoonit hain. +",neutral,neutral,neutral +"He was elected president of the Muslim Conference formed in October, 1932. +","उन्हें अक्तूबर 1932 में स्थापित मुस्लिम कांफ्रेस का अध्यक्ष भी बनाया गया। +","unhen october 1932 men muslim conference formed ka adhyaksh bhi banaya gaya. +",neutral,neutral,neutral +"Force Brasero to display the project selection page +","परियोजना चयन पृष्ठ दिखाने के लिए ब्रैसेरो को बाध्य करें +","project selection page dikhane ke lie force ko badhy karen +",neutral,neutral,neutral +"When it is obvious that the goals cannot be reached, don 't adjust the goals, adjust the action steps. +","जब यह साफ हो कि लक्ष्यों को प्राप्त नहीं किया जा सकता है, तो लक्ष्यों में फेरबदल न करें, बल्कि अपनी प्रयासों में बदलाव करें. +","jab yah obvious ho ki goals ko prapt nahin kiya ja sakta hai , to goals men action n karen , balki apni pryason men badlav karen +",negative,negative,negative +"Have you got your cord with you? +","तुम्हारे पास अपनी डोरी है न। +","tumhare pas apni cord hai n. +",neutral,neutral,neutral +"(a) expenditure in connection with— +","(क) निम्नलिखित के संबंध में व्यय– +","k nimnlikhit ke connection men vyay +",neutral,neutral,neutral +"There did Zakariya pray to his Lord; he said: My Lord! grant me from Thee good offspring; surely Thou art the Hearer of prayer. +","(ये माजरा देखते ही) उसी वक्त ज़करिया ने अपने परवरदिगार से दुआ कि और अर्ज क़ी ऐ मेरे पालने वाले तू मुझको (भी) अपनी बारगाह से पाकीज़ा औलाद अता फ़रमा बेशक तू ही दुआ का सुनने वाला है +","ye majra dekhte hi usi vakt zakriya ne apne paravardigar se duaa ki aur arj i ae mere palne vale too mujhko bhi apni bargah se pakiza aulad ata farma beshak too hi duaa ka sunne vala hai +",positive,positive,positive +"Indian states ranking by media exposure +","मीडिया की पहुँच के आधार पर भारत के राज्य +","media ki exposure ke aadhar par indian ke states +",neutral,neutral,neutral +"My uncle has sent you the vegetables, Mr Vyas, Kapil said. +","मेरे चाचा ने आपके लिए तरकारी भेजी हे, कपिल ने कहा। +","mere uncle ne aapke lie tarkari bheji he, kapil ne kaha. +",neutral,neutral,neutral +"No, it was not there +","नही, वो उधर नही था +","nahi , vo udhar nahi tha +",neutral,neutral,neutral +"You have no recently reported crashes. Crashes that occurred when crash reporting was disabled will not appear here. +","आपके पास हाल ही में रिपोर्ट किए गए क्रैश नहीं हैं. क्रैश रिपोर्टिंग अक्षम होने के दौरान होने वाले क्रैश यहां दिखाई नहीं देंगे. +","aapke pas hal hi men reporting kie ge crashes nahin hain crashes riporting aksham hone ke dauran hone vale crashes yahan dikhaee nahin denge +",negative,negative,negative +"The average annual clip is about one kilogram. +","वर्षभर में औसतन लगभग एक किलोग्राम ऊन एक भेड़ से उतरती है। +","annual men average lagabhag ek kilogram oon ek bher se utarti hai. +",neutral,neutral,neutral +"But we have very special warmth for Nepal and we think that any relationship which we build up or trade relations or economic co - operation will be to our mutual benefit. +","लेकिन हमारे मन में नेपाल के लिए विशेष प्यार है और हम सोचते हैं कि उससे जो भी सम्बंध हम विकसित करेंगे, चाहे व्यापारिक सम्बंध हो या आथिर्क सहयोग वे दोनों ही देशों के लिए लाभदायक होंगे। +","lekin mutual warmth men nepal ke lie special pyar hai aur ham sochte hain ki usse jo bhi relationship ham viksit karenge , chahe trade relationship ho ya aathirk co ve donon hi deshon ke lie benefit honge. +",positive,positive,positive +"The requested device could not be initialized (""mounted""). The reported error was:% 1 +","निवेदित उपकरण इनिशियलाइज़ (""माउन्टेड"") नहीं किया जा सकता. रिपोर्ट की गई त्रुटि हैः% 1 +","requested device inishiylaiz maunted nahin kiya ja sakta reported ki gee truti haia 1 +",negative,negative,negative +"This group traveled in two ships to reach Jeddah in year 1577 and left for Mecca and Madina. +","ये जत्था दो पोतों में सूरत से जेद्दाह बंदरगाह पर १५७७ में पहुंचा और मक्का और मदीना को अग्रसर हुआ। +","ye jattha do group traveled soorat se jeddah bndargah par १५७७ men pahuncha aur makka aur madina ko agrasar huaa. +",neutral,neutral,neutral +"And send down (to prey) upon them birds in flocks, +","और उन पर झुन्ड की झुन्ड चिड़ियाँ भेज दीं +","aur un par birds ki birds chiriyan bhej din +",neutral,neutral,neutral +"We can no longer accept many of the ancient beliefs and customs; we have no more faith in them, in Asia or in Europe or America. +","अब हम बहुत-से पुराने आचार-विचारों, पुराने रीति-रिवाजों को बदस्तूर नहीं कबूल करते। +","more america bahut-se many aachar-vicharon , many riti-rivajon ko badastoor nahin kabool karte. +",negative,negative,negative +"There is indeed not a single square centimetre on the Earth 's surface where one or another kind of insect is not found. * * How numerous are insects? +","वस्तुतया पृथ्वी की सतह पर एक वर्ग से. मी. जगह भी ऐसी नहीं है जहां कीट न मिलें। +","vastutya earth ki satah par ek varg se mi jagah bhi aesi nahin hai jahan single n kind +",neutral,neutral,neutral +"Could not save attachment:% s +","% s नहीं बचाया जा सकाः% s +","attachment nahin bachaya ja sakaa attachment +",negative,negative,negative +"Wind speed = %d kilometers/hour +","हवा की गती = %d किलोमीटर/प्रतिघंटा +","wind ki speed d hour +",neutral,neutral,neutral +"Adjustment in relation to circumstances. +","परिस्थितियों के अनुरुप ढालने की प्रक्रिया। +","relation to circumstances dhalne ki prakriya. +",neutral,neutral,neutral +"This is a time of great opportunities in India. +","यह भारत के लिए सुनहरे अवसरों का दौर है। +","yah india ke lie sunahre avasron ka great opportunities +",positive,positive,positive +"They must align their activities with national development goals. +","उन्हें अपने कार्यकलापों को राष्ट्रीय विकास लक्ष्यों के साथ जोड़ देना चाहिए। +","unhen apne activities ko national development goals ke sath jor dena chahie. +",neutral,neutral,neutral +"Pakistani territory of today has been witness to many cultures +","आज का पाकिस्तानी भूभाग कई संस्कृतियों का गवाह रहा है। +","today ka pakistani territory kee cultures ka witness raha many +",neutral,neutral,neutral +"They, (the People of the Book), have said that God has taken for Himself a son. He is too glorious to have a son. To Him belongs all that is in the heavens and the earth. All pray in obedience to Him. +","कहते है, अल्लाह औलाद रखता है-महिमावाला है वह! (पूरब और पश्चिम हीं नहीं, बल्कि) आकाशों और धरती में जो कुछ भी है, उसी का है। सभी उसके आज्ञाकारी है +","kahte hai, allah aulad rakhta hai-mhimavala hai vah! poorab aur pashchim hin nahin, balki aakashon aur dharti men jo kuchh bhi hai, usi ka hai. sabhi uske aajnjakari hai +",positive,positive,positive +"He listened to the wind, and felt the stones beneath his feet. +","उसे हवा की आवाज सुनाई दी और पैरों के नीचे पत्थर भी महसूस हुए। +","use wind ki aavaj sunaee di aur feet ke niche stones bhi mahsoos hue. +",neutral,neutral,neutral +"The President of India, Shri Pranab Mukherjee will visit Uttar Pradesh (Vrindavan, Mathura) tomorrow (November 18, 2015) where he will inaugurate the 500thyear celebrations of Sri Chaitanya Mahaprabhu’s advent in Vrindavan. He will also visit the Shri Radha Raman Temple. +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (18 नवम्बर, 2015) उत्तर प्रदेश (वृंदावन, मथुरा) की यात्रा करेंगे जहां वह श्री चैतन्य महाप्रभु के वृंदावन आगमन के 500वें वर्ष समारोह का उद्घाटन करेंगे। वह श्री राधा-रमण मंदिर के दर्शन करने भी जाएंगे। +","india ke president shri pranab mukharji tomorrow 18 november , 2015 uttar prdesh pradesh , mathura ki yatra karenge jahan vah shri chaitany mahaprabhu ke pradesh advent ke 500ven varsh celebrations ka udghatan karenge. vah shri radha-raman temple ke darshan karne bhi jaenge. +",neutral,neutral,neutral +"The Indian National Congress reacted sharply to the appointment of the Simon Commission . +","इंडियन नेशनल कांग्रेस ने साइमन कमीशन के गठन पर तीखी प्रतिक्रिया व्यक्त की . +","indiyan national congress ne saiman kamishan ke gathan par reacted sharply vyakt ki +",neutral,neutral,neutral +"K. G. M Khan, a dweeler of lahore, made a pure gold urn. +","का़जि़म खान लाहौर का निवासी ने ठोस सुवर्ण कलश निर्मित किया। +","khan khan lahore ka nivasi ne thos gold urn nirmit kiya. +",neutral,neutral,neutral +"started speaking to us in the 20th century, +","से हमारी बातचीत 20 वीं सदी में शुरू हुई, +","se hamari speaking 20 started sadi men shuroo huee, +",neutral,neutral,neutral +"The sheet which contains the details of allotment. +","आबंटन संबंधी विवरणों को दर्ज करने वाली शीट। +","allotment snbndhi details ko darj karne vali sheet +",neutral,neutral,neutral +"You can search residential telephone numbers and local address from the directory listing. +","आप निर्देशिका लिस्टिंग से आवासीय टेलीफोन नम्बर और स्थानीय पता ढूँढ सकते हैं। +","aap directory listing se residential telephone numbers aur local address dhoondh sakte hain. +",neutral,neutral,neutral +"Push it so as to cover the full length of the nozzle of the stove and the regulator. +","ट्यूब को अच्छी तरह लगाएं जिससे कि स्टोव और रेग्यू लेटर के नॉजल को पूरी तरह ढंका जा सके। +","tyoob ko achchhi tarah lagaen jisse ki stov aur regyoo letar ke njal ko poori tarah dhnka ja sake. +",neutral,neutral,neutral +"Proceed to a shadow rising in three columns: +","(धुएँ के) साये की तरफ़ चलो जिसके तीन हिस्से हैं +","proceed ke saye ki taraf chalo jiske tin hisse hain +",neutral,neutral,neutral +"Place the ten of spades next to the nine of spades. +","हुकुम की दहला के बगल में हुकुम के नहला को रखें. +","place ki ten ke bagal men place ke nahla ko rakhen +",neutral,neutral,neutral +"In Uttarapatha there is a mention of a golden stupa at Mathura. +","उत्तरापथ में मथुरा में सुवर्णस्तूप होने का उल्लेख मिलता है। +","uttrapath men mathura men suvarnastoop hone ka ullekh milta hai. +",neutral,neutral,neutral +"And Thamood—those who carved the rocks in the valley. +","और समूद के साथ (क्या किया) जो वादी (क़रा) में पत्थर तराश कर घर बनाते थे +","aur samood ke sath kya kiya jo valley rocks men patthar tarash kar ghar banate the +",neutral,neutral,neutral +"They embrace the infinite coastline of the sea at their mouths. +","वे अपने मुहानों पर असीम समुद्रतट का आलिंगन करती हैं। +","ve apne coastline par infinite sea ka aalingan karti hain. +",positive,positive,positive +"A staff of GUARD then brought 2 kg. of earthworms which costed Chandranna Rs. 300. +","के स्टाफ के एक सदस्य ने उसके बाद 2 किलोग्राम केंचुए लाकर दिए, जिसकी कीमत चन्द्रण्णा को 300 रुपये देनी पड़ी। +","ke staph ke ek sadasy ne uske bad 2 kilogram kenchue lakar die, jiski kimat chandranna ko 300 rupye deni pari. +",neutral,neutral,neutral +"Our media can play a major role in creating awareness and projecting positive stories in this respect. +","इस संबंध में हमारा मीडिया जागरूकता पैदा करने और सकारात्मक जागरूकता प्रस्तुत करने में एक महत्वपूर्ण भूमिका निभा सकता है। +","is snbndh men hamara media awareness paida karne aur positive awareness prastut karne men ek major role stories sakta hai. +",positive,positive,positive +"The amount of space between two consecutive rows +","दो लगातार पंक्तियों के बीच की दूरी +","do consecutive amount ke bich ki space +",neutral,neutral,neutral +"While one is the basic unit of life, the other is that of inanimate matter. +","एक जीवों की इकाई या मूल मात्रक है तो दूसरी जड़ पदार्थों की. +","ek life ki unit ya basic inanimate hai to other jar padarthon ki +",neutral,neutral,neutral +"Just write your query on this postcard and send it to Google office via Snail Mail. +","आप अपनी पृच्छा इस पोस्टकार्ड पर लिखकर स्नेल मेल के द्वारा गूगल कार्यालय को भेज दें। +","aap apni query is postkard par likhakar snel mel ke dvara google office ko bhej den. +",neutral,neutral,neutral +"Example: in the panel [XML:: RSS] (panel) [mygape] (PHP), [rom] (java) etc. +","उदाहरणः सीपैन में [XML:: RSS] (पर्ल) [मैगपी] (पीएचपी) [रोम] (जावा) आदि। +","udaharna sipain men XML:: RSS parl maigpi piechpi rom java aadi. +",neutral,neutral,neutral +"Can be development very quickly of articles of short timed subjects in Wikipedia as articles of Mumbai blasts were present after few minutes of its happening along with reference links in English Wikipedia. +","विकिपिडीया मे काफी तेज़ी से समसामयिक विषयों के बारे में लेखो का विकास हो सकता है जैसे कि मुंबई विस्फोटों के खबर का ज़ाहिर होने के चंद मिनटों में ही उसके बारे में अंग्रेजी विकिपीडिया में प्रासंगिक कड़ियों के साथ लेख मौजूद था। +","vikipidiya me few tezi se reference articles ke bare men lekho ka development ho sakta hai jaise ki mumbai blasts ke khabar ka zahir hone ke short minutes men hi uske bare men english wikipedia men prasngik links ke sath lekh present tha. +",neutral,neutral,neutral +"This is an incorrect suggestion to solve this problem. +","यह इस समस्या को सुलझाने का गलत सुझाव है। +","yah is problem ko suljhane ka incorrect suggestion hai. +",negative,negative,negative +"Electricity from these grids can be distributed to residential houses, community buildings and business centers through these equipments. +","इन संयंत्रों से ग्रिड स्तर की बिजली व्यक्तिगत आवासों सामुदायिक भवनों व व्यापारिक केन्द्रों को प्रदान की जा सकती है। +","in snyntron se grid star ki bijli residential houses samudayik bhavnon v vyaparik kendron ko prdan ki ja sakti hai. +",neutral,neutral,neutral +"very small change in time, we have a roughly constant +","बहुत छोटे परिवर्तन के समय में, हम एक मोटे तौर पर निरंतर है +","bahut small change ke time men , ham ek mote taur par constant hai +",neutral,neutral,neutral +"However, the suit was filed immediately thereafter, without waiting for two months +","हालाँकि मुकदमा तुरंत ही दायर कर दिया गया था बिना दो महीने इंतज़ार करे ही. +","halanki suit suit was filed kar diya gaya tha bina do mahine intazar kare hi +",neutral,neutral,neutral +"And leave them desolate waste. +","और धरती को एक समतल चटियल मैदान बनाकर छोड़ेगा +","aur dharti ko ek samatal chatiyal leave them desolate +",negative,negative,negative +"Shahjahan arrange to built it in memory of his wife Mumtaz Mahal. +","यह मुगल बादशाह शाहजहां ने अपनी बेगम मुमताज महल की याद में बनवाया था। +","yah mugal badshah shahjahan ne apni wife mumtaz mahal ki memory men banvaya tha. +",neutral,neutral,neutral +"refer to teachings and examples of our prophet, +","हमारे पैगम्बर की शिक्षाओं और उदाहरणों को उद्धृत करते हैं, +","hamare prophet ki refer aur examples ko uddhrit karte hain , +",neutral,neutral,neutral +"Whether to use the ""- - driver generic - mmc - raw"" flag with cdrdao +","क्या ""-- driver generic-mmc-raw"" का प्रयोग cdrdao के साथ करना है +","kya -- mmc generic-mmc-raw ka pryog cdrdao ke sath karna hai +",neutral,neutral,neutral +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","actor ka allocation par nazar rakhne ke lie clip region ko sets karen +",neutral,neutral,neutral +"you won the TED Prize 2011. +","तुम्हें २०११ का टेड प्राइज़ मिल गया है. +","tumhen २०११ ka ted praiz mil gaya hai +",positive,positive,positive +"Allows to burn files not stored locally +","उन फाइलों को लिखने देता है जो स्थानीय रूप से जमा नहीं किए गए +","un files not stored deta hai jo locally roop se jama nahin kie ge +",neutral,neutral,neutral +"Root node of '% s' must be < evoldap >, not <% s > '% s' +","का रूट नोड जरूर होनी चाहिये, न कि <% s> +","ka root nod evoldap s honi chahiye , n ki s +",neutral,neutral,neutral +"Flies carry diseases from infected persons to healthy persons. +","मक्खियां संक्रमित व्यक्तियों से स्वस्थ व्यक्तियों में बीमारियाँ फैलाती हैं। +","flies carry vyaktiyon se persons to healthy bimariyan phailati hain. +",negative,negative,negative +"A signal or symbol used for secret communication. +","गुप्त संचार/सम्प्रेषण के लिए प्रयोग में लाया जाने वाला कोई चिन्ह या संकेत। +","secret communication ke lie pryog men laya jane vala koee signal or symbol +",neutral,neutral,neutral +"I think we have a problem in Mexico. +","मैं सोचता हूँ कि हमारे पास मेक्सिको में समस्या है | +","main sochta hoon ki hamare pas meksiko men samasya hai +",negative,negative,negative +"You need to restart the application. +","आपको अनुप्रयोग को फिर आरंभ करने की जरूरत है. +","aapko application ko phir aarnbh karne ki jaroorat hai +",neutral,neutral,neutral +"I 've two more children from my second wife. +","दूसरी पत्नी से दो बच्चे और हैं। +","second more se do i aur hain. +",neutral,neutral,neutral +"They both grew up in more or less the same atmosphere. +","दोनों कमोबेश एक ही वातावरण में पालित-पोषित हुए थे। +","donon same ek hi atmosphere men palit-poshit hue the. +",neutral,neutral,neutral +"Fluctuations in the production of raw jute, low yield, cost inflation, labour unrest, uncertain demand and obsolete machinery are some of its major problems. +","कच्चे जूट के उत्पादन में उतार-चढ़ाव, कम पैदावार, लागत स्फीती, श्रम असंतोष, अनिश्चित मांग, पुरानी मशीनें, कुछ इसकी प्रमुख समस्याऍं हैं. +","raw jute ke utpadan men utar-chaav, kam paidavar, cost inflation, labour unrest, uncertain demand, obsolete machinery, kuchh iski major problems hain +",negative,negative,negative +"In this too, their situation was fundamentally different from mine. +","इस प्रश्न को लेकर भी मेरे और उनके दृष्टिकोण में भारी अन्तर था। +","is different ko lekar bhi mine aur unke drishtikon men bhari antar situation +",neutral,neutral,neutral +"_ Apply filters to new messages in Inbox on this server +","इस सर्वर पर इनबाक्स में नए संदेश के लिए फिल्टर चलाएँ (_ A) +","is server par inbox men new messages ke lie filters chalaen _ A +",neutral,neutral,neutral +"""So we led you astray because we were ourselves astray."" +","हम खुद गुमराह थे तो तुम को भी गुमराह किया +","ham khud astray the to tum ko bhi astray kiya +",neutral,neutral,neutral +"Nobody knows what matter might crop up during this period or what kind of attack might be launched against the government. +","यह कोई नहीं कह सकता कि इस काल के दौरान कौन-सा मामला उठ खड़ा हो या सरकार पर किस तरह का आक्रमण कर दिया जाए. +","yah koee nahin kah sakta ki is period ke dauran kaun-sa matter kind khara ho ya government par kis tarah ka attack kar diya jae +",negative,negative,negative +"They must align their activities with national development goals. +","उन्हें अपने कार्यकलापों को राष्ट्रीय विकास लक्ष्यों के साथ जोड़ देना चाहिए। +","unhen apne activities ko national development goals ke sath jor dena national +",neutral,neutral,neutral +"The financial ill health of the State Electricity Boards is due to excessive cross - subsidization, poor economic efficiency, poor maintenance of network, and poor collection of revenue. +","राज्य बिजली बोर्डो की खस्ता हालत उनकी अत्यधिक सब्सिडी, खराब आर्थिक दक्षता, नेटवर्क का असंतोषजनक रख-रखाव और राजस्व की खराब वसूली के कारण है। +","state electricity boards ki khasta halat unki atydhik sabsidi, poor economic efficiency, netavark ka asntoshajanak rakh-rkhav aur rajasv ki kharab vasooli ke karan hai. +",negative,negative,negative +"The combined CPU usage of all processes related to% {SHORT _ PRODUCT _ NAME} +","%{SHORT _ PRODUCT _ NAME} से संबंधित सभी प्रक्रियाओं का संयुक्त CPU उपयोग +","SHORT _ PRODUCT _ NAME se snbndhit sabhi prakriyaon ka snyukt CPU usage +",neutral,neutral,neutral +"A preliminary outline of a proposal, speech, book, presentation. +","किसी प्रस्ताव, भाषण, पुस्तक अथवा प्रस्तुतिकरण इत्यादि के लिए तैयार किया गया प्रारम्भिक खाका/प्रारूप। +","kisi proposal , speech , preliminary athva presentation ityadi ke lie taiyar kiya gaya prarambhik khakapraroop. +",neutral,neutral,neutral +"Now, what stands in the way of this? +","अब इस सब के मार्ग में क्या अवरोध है ? +","ab is sab ke way men kya avrodh hai +",neutral,neutral,neutral +"Which (that Book with Allah) none can touch but the purified (i. e. the angels). +","इसको बस वही लोग छूते हैं जो पाक हैं +","isko allah vahi book purified hain jo angels hain +",neutral,neutral,neutral +"Or you may be unable to work because of a serious illness or disability. +","या फिर आप किसी गंभीर बीमारी या फिर विकलांगता के कारण काम नही कर सकेंगे । +","ya phir aap kisi gnbhir illness ya phir illness or disability kam unable to work . +",negative,negative,negative +"ANF 8 for Claiming Duty Drawback on All Industry Rates / Fixation of Drawback Rates / Refund of Terminal Excise Duty +","एएनएफ 8 सभी उद्योग किराये पर ड्यूटी ड्राबैक/शुल्क वापसी का निर्धारण/टर्मिनल उत्पाद शुल्क की वापसी का दावा करने के लिए +","eeneph 8 sabhi udyog kiraye par dyooti drabaikshulk vapsi ka terminal excise duty ki vapsi ka dava karne ke lie +",neutral,neutral,neutral +"Whether menu items should have accelerators +","क्या मेन्यू मद में त्वरक होने चाहिए +","kya menyoo mad men accelerators hone chahie +",neutral,neutral,neutral +"As for the people of the right hand, how happy they will be! +","और दाहिने हाथ वाले (वाह) दाहिने हाथ वालों का क्या कहना है +","aur people hand vale happy people hand valon ka kya kahna hai +",positive,positive,positive +"Budget allocation under Plan Scheme for 2015 - 16 - Rs. 16. 11 Crores. +","वर्ष 2015-16 के लिए प्लान स्कीम के अंतर्गत बजट आवंटन 16.11 करोड़ रू. है। +","varsh 2015-16 ke lie plan scheme ke rs budget allocation 1611 crores roo hai. +",neutral,neutral,neutral +"You need to restart the application. +","आपको अनुप्रयोग को फिर आरंभ करने की जरूरत है. +","aapko application ko phir restart karne ki jaroorat hai +",neutral,neutral,neutral +"A structure above the surface. +","पृष्ठ या सतह से ऊपर संरचना. +","surface ya satah se oopar structure +",neutral,neutral,neutral +"Rural electrification (Ekal Electric House) +","ग्रामीण विद्युतीकरण (एकल बिजली घर) +","rural electrification ekal electric ghar +",neutral,neutral,neutral +"The Overseas Indian community estimated at over 25 million is spread across every major region in the world. +","प्रवासी भारतीय समुदाय अनुमानतः 2.5 करोड़ से अधिक है। जो विश्व के हर बड़े क्षेत्र में फैले हुए हैं। +","overseas indian community anumanta 25 karor se adhik hai. jo vishv ke har bare kshetr men phaile hue hain. +",neutral,neutral,neutral +"Delhi fort is also called as red fort since it is red in color. +","दिल्ली के किले को लाल-किला भी कहते हैं क्योंकि यह लाल रंग का है। +","called as red ko called bhi kahte hain kyonki yah lal red in color +",neutral,neutral,neutral +"PRESIDENT OF INDIA’S MESSAGE ON THE EVE OF NATIONAL DAY OF SEYCHELLES, Rashtrapati Bhavan : 28.06.2017 +","सेशल्स के राष्ट्रीय दिवस की पूर्व संध्या पर भारत के राष्ट्रपति का संदेश, राष्ट्रपति भवन : 28.06.2017 +","seychelles ke national day ki poorv eve par india ke president ka message , president : 28062017 +",neutral,neutral,neutral +"A material which is gluey, transparent and colloidal present in the cell. +","कोशिका में स्थित एक पदार्थ जो लसीला, पारदर्शी तथा कलॉइडल होता है। +","cell men present ek material jo lasila , transparent colloidal kalidal hota hai. +",neutral,neutral,neutral +"In most countries in the world, there are approximately 105 female births for every 100 males. +","विश्व के अधिकतर देशों में, प्रति 100 पुरुषों के पीछे लगभग 105 स्त्रियों का जन्म होता है, +","world ke adhikatar deshon men, prti 100 purushon ke pichhe lagabhag 105 striyon ka janm hota hai, +",neutral,neutral,neutral +"You can expect to receive a visit from your health visitor: +","आप अपेक्षा कर सकते है कि आपका आरोग्य अधिकारी आपको मिलने के लिए आये ः | +","aap apeksha kar sakte hai ki aapka visit adhikari aapko milne ke lie aaye a +",neutral,neutral,neutral +"This term is used to mention two parts or components usually in pairs. +","सामान्यतः एक वस्तु के दो भाग या उपकरणों की जोड़ियों केलिए इस पद का प्रयोग किया जाता है। +","term ek vastu ke do parts or components ki joriyon kelie is pad ka pryog kiya jata hai. +",neutral,neutral,neutral +"In their case, it is included in the capitation fee upto a distance of 5 km. between the Clinic of IMP and IP 's residence. +","उनके मामले में, इसे बीमा चिकित्सा व्यवसायी के क्लीनिक और बीमाकृत व्यक्ति के आवास के बीच 5 कि. मी. की दूरी तक प्रति व्यक्ति शुल्क में शामिल किया जाता है। +","unke case men, ise bima chikitsa vyavsayi ke klinik aur bimakrit vyakti ke aavas ke bich 5 ki mi ki doori tak prti vyakti shulk men shamil kiya jata hai. +",neutral,neutral,neutral +"Which (that Book with Allah) none can touch but the purified (i. e. the angels). +","इसको बस वही लोग छूते हैं जो पाक हैं +","isko bas vahi log chhoote hain jo pak hain +",neutral,neutral,neutral +"Auto Generate Assoc Accessors (Java) +","एसॉक एक्सेसर्स स्वचालित जनरेट करें (जावा) +","auto accessors svchalit janret karen java +",neutral,neutral,neutral +"India is grateful for Tanzania’s support to India’s claim for permanent membership of the UN Security Council. +","भारत, संयुक्त राष्ट्र सुरक्षा परिषद की स्थायी सदस्यता की हमारी दावेदारी के प्रति तंजानिया के समर्थन के॒ लिए आभारी है। +","bharat, snyukt rashtr suraksha claim for permanent sadasyta ki hamari davedari ke prti tnjaniya ke samarthan ke lie aabhari hai. +",positive,positive,positive +"and there go round them youths, their own, as if they were hidden pearls. +","(और ख़िदमत के लिए) नौजवान लड़के उनके आस पास चक्कर लगाया करेंगे वह (हुस्न व जमाल में) गोया एहतियात से रखे हुए मोती हैं +","aur idamat ke lie naujvan larke unke aas pas chakkar lagaya karenge vah husn v jamal men goya ehtiyat se rakhe hue moti hain +",neutral,neutral,neutral +"Proceed to a shadow rising in three columns: +","(धुएँ के) साये की तरफ़ चलो जिसके तीन हिस्से हैं +","proceed ke saye ki taraf chalo jiske tin hisse hain +",neutral,neutral,neutral +"When Rano reached Kak at the dead of night, Natar tried to dissuade him from going up to Mumai 's chamber telling him that Mumal had taken another lover. +","जब आधी रात के समय, राणो काकमहल पहुँचा तो नातर ने उसे मूमल के कक्ष में यह कहकर जाने से मना किया कि मुमल अब और किसी से प्रेम करती है। +","jab aadhi night ke samay , rano kak pahuncha to natar ne use moomal ke chamber men yah kahakar jane se mana kiya ki mumal ab aur kisi se lover karti dead +",neutral,neutral,neutral +"- Leonardo da Vinci (1452 - 1519), Italian Artist, Composer and Scientist - +","लेओनार्दो दा विंची (१४५२-१५१९), इतालवी कलाकार, संगीतकार एवं वैज्ञानिक +","leonardo da vinchi १४५२-१५१९, italian artist, composer and scientist +",neutral,neutral,neutral +"Indeed in that are signs, and indeed, We are ever testing [Our servants]. +","इसमें शक नहीं कि हसमें (हमारी क़ुदरत की) बहुत सी निशानियाँ हैं और हमको तो बस उनका इम्तिहान लेना मंज़ूर था +","ismen shak nahin ki hasmen hmari udarat ki bahut si signs hain aur hamko to bas unka imtihan lena mnzoor tha +",neutral,neutral,neutral +"On the passage from the Gate to the Central Hall from where the procession passes, red baize cloth is spread. +","जहाँ से शोभायात्रा गुजरती है अर्थात् मुख्य द्वार से केन्द्रीय कक्ष तक लाल कालीन बिछाया जाता है। +","jahan se procession passes hai arthat mukhy dvar se kendriy kaksh tak lal kalin bichhaya jata hai. +",neutral,neutral,neutral +"The chiefs of those who disbelieved among his people said: we behold thee except as a human being like us, and we behold not any follow thee except the meanest of us, by an immature opinion; nor We behold in you any exellency over us; nay! we deem you liars. +","इसपर उसकी क़ौम के सरदार, जिन्होंने इनकार किया था, कहने लगे, ""हमारी दृष्टि में तो तुम हमारे ही जैसे आदमी हो और हम देखते है कि बस कुछ ऐसे लोग ही तुम्हारे अनुयायी है जो पहली स्पष्ट में हमारे यहाँ के नीच है। हम अपने मुक़ाबले में तुममें कोई बड़ाई नहीं देखते, बल्कि हम तो तुम्हें झूठा समझते है।"" +","isapar uski aum ke sardar, jinhonne inkar kiya tha, kahne lage, hmari drishti men to tum hamare hi jaise aadmi ho aur ham dekhte hai ki bas kuchh aese log hi tumhare anuyayi hai jo pahli spasht men hamare yahan ke nich hai. ham apne muable men tummen koee baraee nahin dekhte, balki ham to deem you liars hai. +",negative,negative,negative +"Thus a binary series of numbers would be transmitted. +","इस प्रकार दिवचर श्रेणी की संख्याओं को प्रेषित किया जा सकता हैं। +","is prkar binary series ki numbers ko preshit kiya ja sakta hain. +",neutral,neutral,neutral +"Lahore gate is the main entrance +","लाहौर गेट इसका मुख्य प्रवेशद्वार है। +","lahaur get iska mukhy main entrance +",neutral,neutral,neutral +"One of my predecessors left on my table a framed quotation which reads: +","मेरे एक पूर्ववर्ती ने मेरी मेज पर फ्रेम किया हुआ कथन छोड़ा जो इस प्रकार थाः +","mere ek predecessors ne meri mej par phrem kiya huaa kathan chhora jo is prkar thaa +",neutral,neutral,neutral +"For 5to 6days Suddodhana arranged a programme for naming ceremony and appointed 8 brahmin pandits to tell about the future. +","सुधोधना ने पांचवें दिन एक नामकरण समारोह आयोजित किया और आठ ब्राह्मण विद्वानों को भविष्य पढ़ने के लिए आमंत्रित किया। +","suddodhana ne panchven din ek namakaran ceremony aayojit kiya aur aath brahmin vidvanon ko future pane ke lie aamntrit kiya. +",neutral,neutral,neutral +"virtual tor of Taj mahal in Internet. +","ताजमहल का इंटरनेट पर वर्चुअल टूर +","taj ka internet par virtual tor +",neutral,neutral,neutral +"I shall not , however , attempt to infer that these murders must have been previously sanctioned by the prisoner ; mere inference on such a point cannot be accepted in a court of justice . +","बहरहाल , मैं यह अनुमान नहीं लगाना चाहता था कि बंदी ने पहले ही इन हत्याओं को मंजूरी दी थी या नहीं , क्योंकि न्याय की अदालत में सिर्फ ऐसे अनुमान को स्वीकार नहीं किया +","baharhal , main yah inference nahin lagana chahta tha ki prisoner ne pahle hi in attempt ko mnjoori di thi ya nahin , kyonki justice ki court men sirph aese inference ko svikar nahin kiya +",negative,negative,negative +"Saccus endolymphaticus is also known as endolymphatic sac. +","अन्तरुदक कोश को अन्तः कर्णोदक कोश के रूप में भी जाना जाता है. +","antrudak sac ko anta endolymphatic sac ke roop men bhi jana jata hai +",neutral,neutral,neutral +"Retrieving quota information for folder '% s' +","% s फ़ोल्डर के लिए के लिए कोटा प्राप्त कर रहा है +","s folder ke lie ke lie quota information kar raha hai +",neutral,neutral,neutral diff --git a/Dataset making/test.csv b/Dataset making/test.csv new file mode 100644 index 0000000..903401b --- /dev/null +++ b/Dataset making/test.csv @@ -0,0 +1,3165 @@ +English,Hindi,Hinglish,Average rating,Disagreement +"Late Puranchandra Gupta never allowed any power to force him into restricting his freedom of press. +","स्वर्गीय पूरनचन्द्र गुप्ता कभी भी अपने समाचारपत्र साम्न्त बनने की अपनी इच्छाशक्ति से नहीं डगमगाए। +","late puranchandra gupta kabhi bhi apne press samnt power ki apni ichchhashakti se nahin dagamgae. +",7,4 +"From popular home stays where one can get a firsthand experience of rural Sikkim to endless possibilities for adventure sports. +","यहां के लोकप्रिय घरेलू आश्रय जहां आपको ग्रामीण सिक्किम का प्रत्यक्ष अनुभव होता है और रोमांचक खेलों की असीमित संभावनाएं उपलब्ध हैं। +","yahan ke popular home aashray jahan aapko gramin sikkim ka pratyaksh anubhav hota hai aur romanchak khelon ki asimit snbhavnaen upalabdh hain. +",8,1 +"Compete with one another to achieve forgiveness from your Lord and to reach Paradise, which is as vast as the heavens and the earth, and is prepared for those who believe in God and His Messenger. This is the blessing of God and He grants it to whomever He wants. The blessings of God are great. +","तुम अपने परवरदिगार के (सबब) बख़्शिस की और बेहिश्त की तरफ लपक के आगे बढ़ जाओ जिसका अर्ज़ आसमान और ज़मीन के अर्ज़ के बराबर है जो उन लोगों के लिए तैयार की गयी है जो ख़ुदा पर और उसके रसूलों पर ईमान लाए हैं ये ख़ुदा का फज़ल है जिसे चाहे अता करे और ख़ुदा का फज़ल (व क़रम) तो बहुत बड़ा है +","tum apne paravardigar ke sabab bashis ki aur behisht ki taraph lapak ke aage ba jao jiska arz aasman aur zamin ke arz ke barabar hai jo un logon ke lie taiyar ki gayi hai jo uda par aur uske rasoolon par eeman lae hain ye uda ka phazal hai jise chahe ata kare aur uda ka phazal v ram to bahut bara hai +",3,5 +"Legislators must always remember that as representatives of the people and custodians of public interests and rights, they have to be extremely careful in matters of legislation, money and finance. +","विधायकों को सदैव याद रखना चाहिए कि जन प्रतिनिधि और जनहित संरक्षक के रूप में उन्हें विधान, धन और वित्त संबंधी मामलों में अत्यंत सतर्क रहना होगा। +","legislators ko sadaiv yad people chahie ki public representatives aur interests snrakshak ke roop men unhen legislation , rights aur finance snbndhi matters men atynt careful rahna hoga. +",8,1 +"The cap is designed to create an almost air tight seal around the cervical opening. +","कैप को इस तरह बनाया गया है कि यह गर्भाशय के मुख को इस तरह बंद कर देता है कि हवा भी भीतर नहीं जा सकती। +","cap ko is tarah banaya gaya hai ki yah garbhashay ke opening ko is tarah bnd kar deta hai ki air bhi bhitar nahin ja sakti. +",9,2 +"Deva Devi, the lovely maiden, was the pride of Brahma 's creation. +","सुंदर कन्या देवदेवी ब्रह्मा की सृष्टि की गौरवपूर्ण रचना थी। +","lovely maiden deva brahma ki creation ki pride rachna thi. +",8,0 +"Registration under Shops and Establishment Act +","दुकानें और प्रतिष्ठान अधिनियम के तहत पंजीकरण +","shops aur establishment act ke tahat registration +",10,0 +"There is also an international dimension to the problem that has not been addressed except for our having shouted from the rooftops that Pakistan is responsible for cross - border terrorism. +","समस्या का अंतरराष्ट्रीय पहलू भी है जिस पर कभी गौर नहीं किया गया, सिर्फ यही कहा जाता रहा कि सीमा पार से आतंकवाद को बढवा देने के लिए पाकिस्तान दोषी है. +","samasya ka international dimension bhi hai jis par kabhi gaur nahin kiya gaya, sirph yahi kaha jata raha ki sima responsible for cross ko badhva dene ke lie pakistan doshi hai +",5,5 +"But the physical love is only a bridge to cross over to the other bank葉he Annihilation of self. +","पर शारीरिक प्रेम दूसरे तट-आत्म-हनन-पर पहुँचने का सेतु मात्र है। +","par physical love doosre tat-aatm-hanan-par pahunchne ka bridge matr self +",6,1 +"He felt as if the surroundings were embracing him and the sky was within reach. +","उसे ऐसा लग रहा था मानो चारों दिशाएं उसे निविड़ता से घेर रही हों, आकाश मानो उसे छू रहा हो। +","use aesa lag raha tha mano charon dishaen use nivirta se gher rahi hon, sky mano use chhoo raha ho. +",9,2 +"Soon he was seeking terms with the British. +","शीग्र ही मानसिंह अंग्रेजों के साथ सौदे बाजी करने तात्या टोपे लगा। +","shigr hi mansinh angrejon ke sath saude baji karne tatya tope terms +",8,1 +"by taking advantage of the fact that someone has given us the K, +","कि इस तथ्य का लाभ लेने के द्वारा किसी ने हमें K दिया है, +","ki is fact ka taking advantage ke dvara kisi ne hamen K diya hai, +",6,3 +"Language can't math me. +","भाषा मेरा गणित नहीं समेट सकती. +","language mera ganit nahin samet sakti +",9,0 +"We dedicate this sacred day to their memory. +","आज का यह पवित्र दिन हम उनकी स्मृति में समर्पित करते हैं। +","aaj ka yah sacred day ham unki memory men samarpit karte hain. +",9,1 +"Writing folder permissions, please wait... +","फ़ोल्डर अनुमतियाँ लिख रहा है, कृपया प्रतीक्षा करें... User +","writing folder permissions raha hai, kripya wait karen User +",6,6 +"I 'll try my best and see if I can be of any help. +","तुम्हे दुख में देखकर मुझे भी दुख हो रहा है, इसलिए तुम लोगों को बचाने की मैं जी-जान से कोशिश करूंगा। +","tumhe dukh men dekhakar mujhe bhi dukh ho raha hai, islie tum logon ko bachane ki main ji-jan se koshish karoonga. +",10,0 +"Technologies that enable efficient use of biomass are becoming prevalent in rural areas. +","जैव ईंधन के प्रभावी उपयोग को सुरक्षित करती प्रौद्योगिकियाँ ग्रामीण क्षेत्रों में फैल रहीं हैं। +","jaiv eendhan ke prbhavi upyog ko surakshit karti praudyogikiyan gramin kshetron men phail rahin hain. +",7,2 +"The indo function is installed in all aircrafts of the company. +","कंपनी के सभी विमानों में इंडो फलन संस्थापित किया गया है। +","company ke sabhi aircrafts men indo function snsthapit kiya gaya hai. +",8,2 +"And this is what he ended up concluding that he saw. +","और यह वो था जो उन्होंने निष्कर्ष निकाला कि उन्होंने क्या देखा। +","aur yah vo tha jo unhonne nishkarsh nikala ki unhonne kya dekha. +",5,8 +"Overcrowding and outstanding registrations kept increasing . +","भीड़ भाड़ तथा शेष पंजीकरण की संख़्या में वृद्धि होती गयी . +","bhir outstanding tatha shesh registrations ki snya men vriddhi hoti gayi +",5,3 +"I was born in Mexico, I grew up in Mexico +","मैं मेक्सिको में पैदा हुआ, मेक्सिको में बड़ा हुआ +","i mexico men paida huaa , mexico men bara huaa +",8,0 +"He said, “Do not fear, I am with you, I hear and I see. +","फ़रमाया तुम डरो नहीं मैं तुम्हारे साथ हूँ (सब कुछ) सुनता और देखता हूँ +","farmaya tum daro nahin main tumhare sath hoon sab kuchh sunta aur dekhta hoon +",8,3 +"These episodes may have insidious onset, may be prolonged and may sometimes recur even after taking some glucose. +","यह अक़्सर धीरे शुरू होती है, काफी लंबी चलती है तथ कभी-कभी ग़्लूकोज का सेवन करने के बाद भी हो सकती है. +","yah asar dhire shuroo hoti hai , kaphi lnbi chalti hai episodes kabhi-kbhi glucose ka sevan karne ke bad bhi ho sakti hai +",7,1 +"A papilionaceous flower has a corolla, usually with five petals that include a large upper petal, the vexillum. +","एक कोरोला का तितली जैसा फूल जिस की पांच पंखुड़ियो में एक सबसे उपरी लंबी पत्ती जो होती है ध्वज। +","ek corolla ka large jaisa flower jis ki panch pnkhuriyo men ek sabse upper lnbi patti jo hoti hai dhvaj. +",7,3 +"Nibbles couldn 't find pixmap file:% s Please check your Nibbles installation +","निब्बल्स पिक्समेप फ़ाइल:% s ढूंढ नहीं सका. कृपया अपना निब्बल्स संस्थापना जांचें +","pixmap file fail: s dhoondh nahin couldn kripya apna file snsthapna janchen +",4,1 +"A venture capital fund set up as a company shall be wound up in accordance with the provisions of the Companies Act, 1956 (1 of 1956). +","एक कंपनी के रूप में स्थापपित उद्यम पूंजी निधि को कंपनी अधिनियम 1956 (1956 का 1) के प्रावधानों के अनुसार समाप्त कर दिया जाएगा। +","ek company ke roop men sthappit venture poonji fund ko company act 1956 1956 ka 1 ke provisions ke accordance samapt kar diya jaega. +",7,4 +"and it 's not finally, we could keep going - - +","नही, यह फईनल नहीं है हम आगे जा सकते है. +","nahi , yah pheenal nahin hai ham aage ja sakte hai +",8,3 +"And the earth throws up her burdens (from within), +","और धरती अपने बोझ बाहर निकाल देगी, +","aur earth apne burdens bahar nikal degi, +",8,1 +"have shown that people who punish cheaters in economic games +","दिखाया है कि जो लोग लेन-देन वाले खेलों में धोखेबाज़ों को सज़ा देते हैं, +","dikhaya hai ki jo people len-den vale games men cheaters ko saza dete hain , +",8,2 +"India and Bangladesh are interlinked like no other nations on earth. +","भारत और बांग्लादेश विश्व के किसी भी अन्य देश से, कहीं अधिक पारस्परिक ढंग से जुड़े हुए हैं। +","india aur bangladesh vishv ke kisi bhi other nations se , kahin adhik parasprik earth se jure hue hain. +",7,2 +"Common software for accounting has been finalised by NABARD and sent to 20 States for implementation. +","लेखांकन के लिए कॉमन सॉफ्टवेयर को नाबार्ड द्वारा अंतिम रूप दिया गया और इसे कार्यान्वयन के लिए 20 राज्यों को भेज दिया गया है. +","accounting ke lie common software ko nabard dvara antim roop diya gaya aur ise implementation ke lie 20 states ko bhej diya gaya hai +",5,5 +"Transport Policy which includes fiscal concessions, and policy guidelines for rapid development of the mode and to encourage private sector participation in development of infrastructure and ownership and operation of inland vessels. +","इस नीति में अंतर्देशीय जहाजों के संचालन, स्वा मित्व और ढांचागत विकास में निजी क्षेत्र को बढ़ावा देने के लिए कई वित्तीय रियायतें और मार्ग दर्शन मौजूद हैं। +","is niti men antardeshiy jahajon ke snchalan, sva mitv aur development of infrastructure niji kshetr ko baava dene ke lie kee vittiy riyayten aur marg darshan maujood hain. +",8,1 +"Particulars to be furnished in respect of gratuity funds. +","उपदान निधियों की बाबत दी जाने वाली विशिष्टियां +","gratuity funds ki furnished in respect vali furnished +",4,5 +"Rest house means a building used for shelter by travelers. +","विश्राम गृह का अर्थ उस इमारत से होता है, जिसका प्रयोग यात्रियों द्वारा आश्रय के लिए किया जाता है। +","rest house ka arth us imarat se hota hai, jiska pryog shelter by travelers ke lie kiya jata hai. +",6,1 +"The first book written by him was Batris Sinhasan on the story of the legendary Vikramaditya as a dispenser of justice. +","उसके द्वारा लिखी गई पहली पुस्तक न्याय की रक्षा करने वाले विक्रमादित्य की लोक-कथा पर आधारित बत्तीस सिंहासन थी। +","uske dvara likhi gee book written nyay ki raksha karne vale vikrmadity ki lok-ktha par aadharit battis sinhasan thi. +",6,5 +"In tapeworm infestation human are the primary host. +","फीताकृमि ग्रसन में मनुष्य प्राथमिक पोषी या आश्रयी है +","phitakrimi grasan men manushy prathmik poshi ya aashryi hai +",9,2 +"Some of the accused protested against being treated as common cirminals, and not as political prisoners, who had declared open war against the Crown. +","कुछ अभियोगियों ने, जिन्होंने राज के खिलाफ खुले युद्ध की घोषणा की थी, अपने साथ राजनैतिक बंदियों की जगह पर आम अपराधियों जैसा व्यवहार किये जाने का विरोध किया। +","kuchh abhiyogiyon ne , jinhonne raj ke khilaph open war ki ghoshna ki thi , apne sath political prisoners ki jagah par common apradhiyon jaisa vyavhar kiye jane ka virodh kiya. +",8,1 +"The result of the operation is {0: # # 0. # # #}. +","इस गणना का परिणाम है {0: ##0. ###} +","is ganna ka result hai 0: 0 +",7,0 +"E language technology in the private - public partnerships to promote +","ङ. भाषा प्रौद्योगिकी में निजी-सार्वजनिक भागीदारी को बढ़ावा देना +","e language technology men niji-sarvajnik partnerships ko baava dena +",6,1 +"Look at the likes of Gandhi who achieved so much through pacifism. +","गांधी जैसे लोगों को देखें जिन्होनें शांतिवाद के माध्यम से महान उपलब्धियां हासिल की हैं. +","gandhi jaise logon ko dekhen jinhonen shantivad ke madhyam se mahan upalabdhiyan hasil ki hain +",8,3 +"Purchasing of commodities in the market is such a way that the buyers are in a position to have control over the price. +","बाजार में निहित स्वार्थों वाले व्यक्तियों द्वारा माल की इस प्रकार खरीद करना जिससे वे बाजार पर मूल्य नियन्त्रण स्थापित करने में सफल हो जाएं। +","bajar men nihit svarthon vale vyaktiyon dvara mal ki is prkar kharid karna jisse ve bajar par mooly niyantran sthapit karne men saphal ho jaen. +",8,4 +"Intellectual property and the rule of laws or trait, and trademarks, and IP +","बौद्धिक संपदा और कानून या विशेषता है, और ट्रेडमार्क, और आई पी के नियम +","intellectual property aur kanoon ya trait hai , aur trademarks , aur aaee pi ke rule +",7,0 +"I am concerned with matters of consequence. +","मैं … मैं गंभीर व्यक्ति हूँ न, मुझे बेकार की बातों से कोई दिलचस्पी नहीं। +","main main gnbhir vyakti hoon n, mujhe concerned with matters se koee dilachaspi nahin. +",5,4 +"The President said that Legislative Assembly is the master of Executive in matters of taxation and finance. +","राष्ट्रपति ने कहा कि विधान सभा करारोपण तथा वित्त के मामले में कार्यपालिका की स्वामी है। +","rashtrapti ne kaha ki legislative assembly taxation and finance ke executive in matters ki svami hai. +",7,1 +"“If you prick us, do we not bleed, +","“अगर तुम हमें काटते हो, तो क्या हमारा खून नहीं बहता, +","agar tum hamen katte ho , to kya hamara khoon nahin bahta , +",9,2 +"The verses of Hindu poets are also marked by this dawning romanticism. +","हिंदू कवियों को कवितांए भी स्व्च्छंतावाद के इस उदय को प्रकट करती हैं. +","hindu poets ko verses bhi romanticism ke is uday ko prakat karti hain +",9,2 +"Static economy will dislocate all the developmental plans. +","स्थिर अर्थव्यवस्था सभी विकासात्मक योजनाओं को अस्त-व्यस्त कर देगी। +","static economy sabhi developmental plans ko ast-vyast kar degi. +",9,2 +"Poor labour - management relationship and associated low workers' morale and low productivity, strikes, lockouts, etc. +","खराब श्रम प्रबंधन संबंध और कर्मचारियों का सहबद्ध मनोबल कम होना तथा कम उत्पादकता, हड़तालें, तालाबंदियां इत्या दि। +","poor labour management relationship aur karmchariyon ka sahabaddh manobal kam hona tatha kam utpadakta, hartalen, talabndiyan itya di. +",6,5 +"Adjustment in relation to circumstances. +","परिस्थितियों के अनुरुप ढालने की प्रक्रिया। +","circumstances ke anurup adjustment ki prakriya. +",9,1 +"The notion of CSR is not new to India. +","कॉरपोरेट सामाजिक उत्तरदायित्व का विचार भारत के लिए नया नहीं है। +","notion samajik uttardayitv ka vichar bharat ke lie naya nahin hai. +",8,1 +"PRESIDENT RELEASES COMMEMORATIVE POSTAGE STAMP ON LATE SHRI RAMGOPAL JI MAHESHWARI, Rashtrapati Bhavan : 20.11.2012 +","राष्ट्रपति ने स्वर्गीय श्री रामगोपाल जी माहेश्वरी पर स्मारक डाक टिकट जारी किया, राष्ट्रपति भवन : 20.11.2012 +","rashtrapti ne svargiy shri ramgopal ji maheshvri par commemorative postage stamp jari kiya, rashtrapti bhavan : 20112012 +",9,0 +"Which has been countersigned in a correct / proper manner. +","जो यथोचित ढंग से प्रतिहस्ताक्षरित किए गए हैं। +","jo proper manner se countersigned kie ge hain. +",7,5 +"Unless you realise that the world is a manifestation of divinity , as long as you do not realise within yourself that the world you see around you , the country in which you live are manifestations of divinity , then all these are unreal . +","जब तक आप यह अनुभूति नहीं करते हैं कि सारा विश्व ईश्वरत्व की अभिव्यक्ति है , जब तक आप अपने भीतर यह अनुभव नहीं करते हैं कि यह संसार जिसे आप अपने चारों और देखते हैं , और यह देश , जिसमें आप रहते हैं , ईश्वरत्व की अभिव्यक्ति है , तब तक ये सभी अवास्तविक हैं . +","jab tak aap yah anubhooti nahin karte hain ki sara world manifestation ki abhivyakti hai , jab tak aap apne bhitar yah anubhav nahin karte hain ki yah snsar jise aap apne charon aur dekhte hain , aur yah country , jismen aap rahte hain , manifestation ki abhivyakti hai , tab tak ye sabhi unreal hain +",6,5 +"The opponents were waiting for the opportune moment to strike. +","प्रतिद्वंद्वी प्रहार हेतु उपयुक्त समय की प्रतीक्षा कर रहा था। +","prtidvndvi prhar hetu opportune moment ki prtiksha kar raha tha. +",8,0 +"Questions may be about the treatment itself, for example: +","सवाल वैद्यकिय उपचार के बारे में भी हो सकते हैं, जैसे कि उदाहरण के तौर पर: +","questions vaidykiy treatment ke bare men bhi ho sakte hain , jaise ki udaharan ke taur par : +",8,2 +"lesbians enjoy tribadism because they can involve their whole bodies. +","समलैंगिक परस्पर स्त्री मैथुन का आनंद लेते हैं ताकि वे अपने पूरे शरीर को मिला सकें। +","lesbians paraspar stri maithun ka aannd lete hain tribadism ve apne whole bodies ko mila saken. +",6,3 +"Continue or suspend the execution of the program +","जारी रखें या सस्पेंड का प्रोग्राम +","continue rakhen ya suspend the execution +",7,0 +"How to prevent ama in day - to - day life and, perhaps, be magically relieved from all sorts of problems ranging from plain 'not feeling well' to arthritis? +","रोजमर्रा की जिंदगी में आंव की रोकथाम कैसे की जाए और तबीयत ठीक नहीं है से लेकर गठिया तक की सभी प्रकार की समस्याओं से किस प्रकार जादुई ढंग से मुक्ति पाई जाये? +","rojamarra ki jindgi men aanv ki roktham kaise ki jae aur tabiyat thik nahin hai se lekar gathiya tak ki sabhi prkar ki samasyaon se kis prkar jaduee dhng se mukti paee jaye +",4,6 +"If you smoke you are two and half times more likely to have a heart attack than a non smoker . +","यदि आप सिग्रेट पीते हैं , तो धूम्रपान न करने के वाले के स्थान पर आप को ढाई गुना अधिक दिल का दऔरा पड़ने की सभृभावना है . +","yadi aap sigret pite hain , to non n karne ke vale ke sthan par aap ko half times adhik heart ka likely parne ki sabhribhavna hai +",5,3 +"Font for text with fixed width, such as code examples. +","कोड उदाहरण के रूप में, फिक्स्ड चौड़ाई के साथ पाठ के लिए फ़ॉन्ट. +","kod udaharan ke roop men, fixed width ke sath path ke lie font +",8,2 +"But the very spirit of Yoga is this, to make the exceptional normal, and to turn that which is above us and greater than our normal selves into our own constant consciousness. +","परन्तु योग की वास्तविक भावना ही यह है कि अपवाद को सामान्य बनाया जाये और जो हमारे ऊपर है, हमारे साधारण स्व से महत्तर है उसे अपनी शाश्वत चेतना बना लिया जाये। +","parantu yoga ki vastvik spirit hi yah hai ki exceptional ko normal banaya jaye aur jo own selves hai , own sadharan constant se greater hai use apni shashvat consciousness bana liya jaye. +",8,3 +"So your left side of the equation is 3 times +","तो आपके समीकरण की उल्टी और 3 गुना है. +","to left equation ki side aur 3 times hai +",7,3 +"The free reeds are very much more scarce in India and can be seen in the harmonium and the rare instrument , khung or rusem , of the tribal areas of eastern India . +","स्वतंत्र पत्तियों का चलन भारत में बहुत कम है और हारमोनियम तथा पूर्वी भारत के आदिवासी क्षेत्र के दुर्लभ वाद्य खुंग अथवा रूसेम में देखने को मिलती हैं . +","free reeds ka chalan bharat men bahut kam hai aur harmoniyam tatha poorvi bharat ke aadivasi kshetr ke durlabh vady khung or rusem men dekhne ko milti hain +",6,5 +"In his will Vitthal bhai patel named all his billions of property to Subash babu. +","विठ्ठल भाई पटेल ने अपनी वसीयत में अपनी करोडों की संपत्ती सुभाषबाबू के नाम कर दी। +","vitthal bhai patel ne apni vasiyat billions of property ki snpatti property to subash kar di. +",5,0 +"The vertical text alignment, from 0 (top) to 1 (bottom). +","लंबबत पाठ समायोजन, 0 (शीर्ष) से 1 (तल) में +","vertical text samayojan, 0 shirsh se 1 tal bottom +",5,6 +"I convey my special greetings to members of our Armed Forces, Para-military Forces and Internal Security Forces. +","मैं सशस्त्र बलों, अर्द्धसैनिक बलों और आंतरिक सुरक्षा बलों के सदस्यों को अपनी विशेष बधाई देता हूं। +","armed forces balon, para-military forces aur internal security forces ke sadasyon ko apni convey my special hoon. +",7,0 +"Tall table, tall chairs! Well, I haven 't made them yet. +","लंबी मेज, लंबी कुर्सियां! खैर, मैंने इन्हें अभी तक पूरा नहीं किया है. +","tall table , tall kursiyan ! khair , mainne inhen abhi tak poora nahin kiya hai +",8,3 +"The set that includes all of the elements of concern in a given study. +","प्रदत्त अध्ययन में सभी विषयगत अवयवों को धारण किया हुआ समुच्चय. +","pradatt study concern sabhi vishayagat avayvon ko dharan kiya huaa set +",7,1 +"Foot - wear should not be uncomfortable and should not hamper the free movements of the feet. +","जूते को असुविधा-जनक और पैर की सुचारु गति में बाधा पहुंचाने वाला नहीं होना चाहिए। +","wear ko asuvidha-janak aur foot ki sucharu movements men badha pahunchane vala nahin hona chahie. +",5,1 +"TRUE if this printer can accept PDF +","सही अगर यह मुद्रक PDF स्वीकार कर सकता है +","true agar yah printer pdf svikar kar sakta hai +",10,0 +"If the opinion so declared is again challenged, the Speaker directs that the votes be recorded either by operating the automatic vote recorder or by using 'Aye' and 'No' slips in the House or by members going into the lobbies. +","यदि इस प्रकार घोषित राय को पुन: चुनौती दी जाती है तो अध्यसक्ष आदेश देता है कि या तो स्वचालित मत अभिलेखन उपकरण को चालू करके या सदन में? हां? या? या? की पर्चियों का प्रयोग करके या सदस्यों द्वारा लाबियों में जाकर मत अभिलिखित किए जाएं. +","yadi is opinion so declared ko pun: chunauti di jati hai to adhyasaksh aadesh deta hai ki ya to svchalit mat abhilekhan upakaran ko chaloo karke ya sadan men han ya ya ki parchiyon ka pryog karke ya sadasyon dvara labiyon men jakar mat abhilikhit kie jaen +",5,4 +"A sudden involuntary contraction of one or more muscle +","अचानक होने वाला एक या अधिक मांसपेशियों का संकुचन +","sudden hone involuntary ek ya adhik muscle ka contraction +",6,1 +"He said that their job is multifarious. He advised them to always remember that their conduct and behaviour is a reflection not only of the police force but is actually a projection of the entire administration before the common people. +","उन्होंने कहा कि उनका कार्य बहुआयामी है। उन्होंने सलाह दी कि उन्हें यह सदैव याद रखना चाहिए कि उनके व्यवहार और आचरण से न केवल पुलिस सेवा के बारे में नजरिया बनाता है वरन् वह वास्तव में आम जनता के सामने पूरे प्रशासन का प्रतिबिंब होता है। +","unhonne kaha ki unka job is multifarious unhonne salah di ki unhen yah sadaiv yad rakhna chahie ki unke vyavhar aur aacharan se n keval pulis seva ke bare men najriya banata hai varan vah vastav men aam janta ke samne poore prshasan ka prtibinb hota hai. +",7,1 +"Well an idea is that that strategy, that learning strategy, +","एक आयडिया ये है कि युक्ति लगाना, और इसे सीखना +","ek idea ye hai ki strategy lagana , aur ise sikhna +",8,1 +"They said, 'Nay, but we found our fathers so doing.' +","उन्होंने कहा, ""नहीं, बल्कि हमने तो अपने बाप-दादा को ऐसा ही करते पाया है।"" +","unhonne kaha, nhin, nay hamne to apne fathers ko aesa hi karte paya hai. +",9,2 +"Opens all branches of the file tree +","फ़ाइल ट्री की सभी शाखाओं को खोलता है +","file tree ki sabhi opens all branches hai +",5,4 +"% 1 has been idle for% 2 and% 3. +","% 1 निष्क्रिय है% 2 और% 3 से. +","1 idle hai 2 aur 3 se +",7,5 +"People of Ahmedia community do not accept Muhammed as the last prophet and also call themselves the followers of Islam. +","अहमदिय्या समुदाय के लोग मुहम्मद साहब को अन्तिम नबी नहीं मानते हैं और स्वयं को इस्लाम का अनुयायी भी कहते हैं। +","ahmedia community ke people muhammad sahab ko last nabi nahin mante hain aur svyn ko islam ka followers bhi kahte hain. +",8,1 +"but whoever seeks beyond that—it is they who are the transgressors) +","किन्तु जिस किसी ने इसके अतिरिक्त कुछ और चाहा तो ऐसे ही लोग सीमा का उल्लंघन करनेवाले है।- +","kintu jis kisi ne iske atirikt kuchh aur thatit to aese hi transgressors sima ka ullnghan karnevale hai.- +",7,1 +"Radha today these eyes beheld; A maid she is unparalleled. +","राधा को देखा है इन आँखों ने आज, वह बाला है अप्रतिभ। +","radha ko beheld hai in eyes ne aaj, vah bala hai aprtibh. +",7,4 +"But your Lord does not destroy habitations without having sent an apostle to their metropolis to read out Our commandments to them. We would never have destroyed cities if their inhabitants were not given to wickedness. +","तेरा रब तो बस्तियों को विनष्ट करनेवाला नहीं जब तक कि उनकी केन्द्रीय बस्ती में कोई रसूल न भेज दे, जो हमारी आयतें सुनाए। और हम बस्तियों को विनष्ट करनेवाले नहीं सिवाय इस स्थिति के कि वहाँ के रहनेवाले ज़ालिम हों +","lord commandments to habitations ko vinasht karnevala nahin jab tak ki unki kendriy basti men koee apostle n bhej de , jo hamari aayten sunae. aur ham habitations ko vinasht karnevale nahin sivay is sthiti ke ki vahan ke rahnevale zalim hon +",8,2 +"Why give BCG vaccine only on the left upper arm? +","बीसीजी का टीका केवल बाईं भुजा पर ऊपर क्यों लगाया जाता है? +","bcg ka vaccine give arm upper par oopar kyon lagaya jata hai +",7,2 +"Now, let 's think about what that is +","तो हम इसके बारे मे सोचते हैं वो क्या है +","to ham iske bare me sochte hain vo kya hai +",9,1 +"No update information available. Please check manually and ask the developer to support OI Update in the future. +","कोई अद्यतन जानकारी उपलब्ध नहीं है. मैन्युअल की जाँच करें और डेवलपर पूछने के लिए भविष्य में पुराना अद्यतन समर्थन. +","koee update information available nahin hai mainyual ki oi karen aur developer poochhne ke lie future men purana update samarthan +",7,0 +"the simplest way to do it is to tell their story, +","इसका सबसे आसान तरीका है उनकी कहानी कहो, +","iska sabse simplest way hai unki story kaho , +",9,1 +"They said: ""We swear by Allah! Indeed Allah has chosen you in preference to us and we were truly guilty."" +","उन्होंने कहा, ""अल्लाह की क़सम! आपको अल्लाह ने हमारे मुक़ाबले में पसन्द किया और निश्चय ही चूक तो हमसे हुई।"" +","unhonne kaha , allah ki guilty ! aapko allah ne hamare preference men pasand kiya aur nishchay hi chook to hamse huee. +",7,3 +"This message does not contain the header information required for this action. +","संदेश शीर्षिका सूचना नहीं रखता है इस क्रिया के लिए जरूरी. +","sndesh header information nahin rakhta hai is action ke lie required +",7,3 +"Putting on a stiff expression, he went on. +","चेहरे पर कड़ी-सी भाव-मुद्रा लाकर उसने आगे कहा, +","expression par kari-si bhav-mudra lakar usne aage kaha, +",7,1 +"So let 's round each of these numbers. +","चलो इन दोनो संख्या को राउंड ऑफ करते है. +","chalo in dono numbers ko round ऑph karte hai +",7,6 +"Connecting to the server, please wait... +","सर्वर से कनेक्ट कर रहा है, कृपया इंतजार करें... +","server se kanekt kar raha hai , wait intjar karen +",5,0 +"A student can choose to appear in one or more subjects in an examination and earn credits till he / she completes all five subjects for final certification within a stipulated period of five years. +","शिक्षार्थी किसी परीक्षा में एक अथवा अधिक विषयों की परीक्षा में बैठ सकता है और पाँच वर्षों की निर्धारित अवधि में प्रमाणपत्र के लिए सभी पांचों विषयों को पूरा करने तक क्रेडिट अर्जित कर सकता है। +","shiksharthi kisi pariksha men ek athva adhik vishyon ki pariksha men baith sakta hai aur panch varshon ki stipulated period men prmanapatr ke lie sabhi panchon vishyon ko poora karne tak earn credits kar sakta hai. +",8,2 +"Your upcoming events will be displayed here when you select a date with events. +","आपकी आने वाली घटनाओं को प्रदर्शित किया जाएगा जब आप घटनाओं के साथ एक तिथि का चयन करेंगे. +","aapki aane vali upcoming ko pradarshit kiya jaega jab aap upcoming ke sath ek date ka chayan karenge +",6,3 +"Said He, 'This is for Me a straight path: +","ख़ुदा ने फरमाया कि यही राह सीधी है कि मुझ तक (पहुँचती) है +","uda ne pharmaya ki yahi straight path hai ki mujh tak phunchti hai +",9,0 +"What are they waiting for – except the Last Day, that it may suddenly come upon them while they are unaware? +","क्या वे बस उस (क़ियामत की) घड़ी की प्रतीक्षा कर रहे है कि वह सहसा उनपर आ पड़े और उन्हें ख़बर भी न हो +","kya ve bas us iyamat ki ghari ki waiting kar rahe hai ki vah suddenly unapar aa pare aur unhen bar bhi n ho +",8,1 +"Are you sure you want to permanently delete these files? +","क्या आप इन फ़ाइलों को स्थायी रूप से हटाना चाहते हैं? +","sure aap in files ko sthayi roop se delete chahte hain +",6,1 +"Process of exercising control over trading in contraband goods. +","विनिषिद्ध/वर्जित वस्तुओं के व्यापार पर नियन्त्रण के लिए स्थापित प्रक्रिया। +","contraband goods ke control over trading ke lie sthapit process +",7,1 +"Place the king of hearts next to the queen of hearts. +","लाल पान की बेगम के बगल में लाल पान के वादशाह को रखें. +","lal pan ki queen of hearts men lal place the king ko rakhen +",5,2 +"Then as for him whose good deeds are preponderant, these are the successful. +","फिर जिनके पलड़े भारी हुए तॊ वही हैं जो सफल। +","phir jinke good bhari hue preponderant vahi hain jo successful +",6,0 +"He spread out the earth for the people. +","और उसी ने लोगों के नफे क़े लिए ज़मीन बनायी +","aur usi ne people ke earth e lie zamin banayi +",7,2 +"When Our revelations are recited to him, he says, “Legends of the ancients. ” +","जब हमारी आयतें उसे सुनाई जाती है तो कहता है, ""ये तो पहले की कहानियाँ है।"" +","jab hamari revelations use sunaee jati hai to kahta hai , ye to pahle ki ancients hai. +",8,4 +"Click here to restore hidden windows. +","छुपे विंडोज़ पुनर्स्थापित करने हेतु यहां क्लिक करें. +","hidden windows punarsthapit karne hetu yahan click karen +",8,1 +"The region was endemic for malaria, Kala - a - zar and leprosy. +","यह क्षेत्र मलेरिया, कालाजार और कुष्ठ रोग से प्रभावित था। +","yah region malaria , kalajar aur leprosy endemic se prbhavit tha. +",9,1 +"The file does not appear to be a playlist +","यह फ़ाइल प्लेलिस्ट नहीं दिखता है +","yah file playlist nahin dikhta hai +",10,0 +"Yet they say: ""When will this decree come, if you speak the truth?"" +","वे कहते है कि ""यह फ़ैसला कब होगा, यदि तुम सच्चे हो?"" +","ve kahte hai ki yah decree kab hoga, yadi tum speak ho +",3,2 +"Remember, when your Lord said to the angels: ""I have to place a trustee on the earth,"" they said: ""Will You place one there who would create disorder and shed blood, while we intone Your litanies and sanctify Your name?"" And God said: ""I know what you do not know."" +","और याद करो जब तुम्हारे रब ने फरिश्तों से कहा कि ""मैं धरती में (मनुष्य को) खलीफ़ा (सत्ताधारी) बनानेवाला हूँ।"" उन्होंने कहा, ""क्या उसमें उसको रखेगा, जो उसमें बिगाड़ पैदा करे और रक्तपात करे और हम तेरा गुणगान करते और तुझे पवित्र कहते हैं?"" उसने कहा, ""मैं जानता हूँ जो तुम नहीं जानते।"" +","aur yad karo jab tumhare rab ne pharishton se kaha ki main dharti men mnushy ko khalifa sattadhari bananevala hoon. unhonne kaha, kya usmen usko rakhega, jo usmen bigar paida kare aur raktpat kare aur ham tera gungan karte aur tujhe pavitr kahte hain usne kaha, main janta hoon jo tum nahin jante. +",4,6 +"Religions whether Christianity, Buddhism, Hinduism or Theosophy or any other system can only take us to the one point where all religions meet, and no further. +","धर्म-वह चाहे ईसाई, बौद्ध, हिंदू हो या थिसोसॉफी या कोई अन्य पंथ-हमें केवल उस बिंदु तक ले जा सकता है जहां सभी धर्म मिल जाते हैं, उससे आगे नहीं। +","religions whether christianity, bauddh, hindoo ho ya thisosphi ya koee any pnth-hmen keval us bindu tak le ja sakta hai jahan sabhi dharm mil jate hain, usse aage nahin. +",7,4 +"A market study shows that a male turkey sold at 24 weeks of age weighing 10 to 20 kg with expenditure of Rs. 300 to 450 will give a profit of Rs. 500 to 600. +","एक अध्ययन के अनुसार 24 सप्ताह की आयु और 10-20 किलो ग्राम वजन वाले नर मादा को यदि 300 से 450 रुपये में बेचा जाता है तो इसमें करीब 500 से 600 रुपये का लाभ होता है। +","ek study ke anusar 24 weeks ki age aur 10-20 kg gram vajan vale male mada ko yadi 300 se 450 expenditure men becha jata hai to ismen karib 500 se 600 expenditure ka profit hota market +",8,0 +"So, I need to decipher what I wrote. +","तो, मुझे समझने की जरुरत है कि मैंने क्या लिखा है। +","to , i samajhne ki jarurat hai ki mainne kya likha hai. +",8,2 +"Now Sind is completely merged in West Pakistan and the very word 'Sind' seems to have disappeared. +","अब सिंध पूर्ण रूप से पश्चिमी पाकिस्तान में विलय हो गया है तथा सिंध शब्द ही मानो लुप्त प्रायः हो गया है। +","ab sindh poorn roop se west pakistan men vilay ho gaya hai tatha sindh shabd hi mano lupt praya ho gaya hai. +",9,2 +"Thank you for your letter dated 24 May 1947 regarding the situation in Lahore. 2. +","ता. 30-5-1947 लाहौर की स्थिति के विषय में लिखे गये आपके 24 मई के पत्र के लिए धन्यवाद। +","ta 30-5-1947 lahaur ki sthiti ke vishay men likhe gaye aapke 24 mee ke patr ke lie dhanyvad. +",9,0 +"The most familiar representative of the family APODIDAE True Swifts is our House Swift Apus affinis PLATE 11. 55 bottom Hindi: Babila or Batasi. +","ऐपोडिडी परिवार की सबसे अधिक आम चिड़िया हमारी घरेलू बतासी या बबीला ही है Apus affinis-प्लेट 11.55-यह डीलडौल में गौरैया से छोटी धुएं जैसी काली होती है। +","aepodidi family ki sabse true bottom chiriya hamari ghareloo swift ya babila hi hai Apus affinis-plet 1155-yah dildaul men gauraiya se chhoti dhuen jaisi kali hoti familiar +",5,3 +"In this novel, Kunti, a girl from a lower middle class family, is much more courageous than Nisha, born with a silver spoon in her mouth. +","इस उपन्यास में भी निम्न मध्यवर्गीय कुन्ती, सम्पन्न घर कि निसा से अधिक साहसी प्रमाणित होती है। +","is novel men bhi lower middle kunti , sampann ghar ki girl se adhik courageous prmanit hoti family +",8,0 +"Life is not but our worldly life - we die and live, but we will not be resurrected. +","कि हम मरते भी हैं और जीते भी हैं और हम तो फिर (दुबारा) उठाए नहीं जाएँगे हो न हो ये (सालेह) वह शख्स है जिसने खुदा पर झूठ मूठ बोहतान बाँधा है +","ki ham marte bhi hain aur jite bhi hain aur ham to phir dubara resurrected nahin jaenge ho n ho ye saleh vah shakhs hai jisne khuda par jhooth mooth bohtan bandha hai +",6,4 +"Punctuation level set to most. +","विराम चिह्न स्तर सबसे करने के लिए निर्धारित किया है. +","viram punctuation level sabse karne ke lie set kiya hai +",4,2 +"The Ministry of Education may take action: - +","शिक्षा मंत्रालय निम्नलिखित विषय में कार्रवाई करें-- +","education ministry nimnlikhit vishay men action karen -- +",8,1 +"Ancient sculptures and murals , as can be expected , abound with illustrations of this instrument . +","प्राचीन चित्रों और मूर्तियों में जैसाकि स्पष्ट है , इस वाद्य को अंकित किया गया है . +","ancient murals aur sculptures men jaisaki spasht hai , is instrument ko ankit kiya gaya hai +",8,1 +"It is sensible to approach the trader first . +","पहले व्यापारी से संपर्क करना बुद्घिमानी होगी । +","pahle trader se snpark karna sensible hogi . +",8,2 +"Dalhousie wrote his famous minutes on railways in 1853, envisaging a general system for the whole country, and setting out general principles of management, finance and construction. +","डलहौजी ने अपना प्रसिद्ध रेलवे वक़्तव्य सन् 1853 में जारी किया जिसमें उन्होंने पूरे देश के लिए एक ही सामान्य प्रणाली की सिफारिश की और जिसमें व्यवस्था वित्त और निर्माण के सामान्य सिद्धांत भी प्रतिपादित किये. +","dalhousie ne apna famous railways vatavy minutes 1853 men jari kiya whole unhonne poore country ke lie ek hi general system ki sipharish ki aur whole management finance aur construction ke general siddhant bhi prtipadit kiye +",7,1 +"This has been built with seven small lave made island and connected to main land by a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska lave made island sat chhote-chhote dvipon dvara huaa hai evn yah pul dvara prmukh bhoo-khnd ke sath jura huaa hai. +",6,6 +"The prevailing colour of this breed is black and white. +","इस नस्ल का सामान्य रंग काला और सफेद होता है. +","is breed ka samany colour black aur white hota hai +",9,1 +"Intellectual property and the rule of laws or trait, and trademarks, and IP +","बौद्धिक संपदा और कानून या विशेषता है, और ट्रेडमार्क, और आई पी के नियम +","intellectual property aur laws or trait hai, aur trademarks, aur aaee pi ke niyam +",6,1 +"In last six decades, the poverty ratio has declined from over 60 per cent to less than 30 per cent. +","जबकि निर्मूलन समयबद्ध लक्ष्य। पिछले छह दशकों में गरीबी का अनुपात 60 प्रतिशत से अधिक की पिछली दर से कम होकर30प्रतिशत से नीचे आ चुका है। +","jabki nirmoolan samayabaddh lakshy. pichhle chhah dashkon men garibi ka anupat 60 prtishat se adhik ki pichhli dar se kam hokar30prtishat se niche aa chuka hai. +",3,5 +"Commercial recovery of germanium has been mainly achieved from zinc and zinc - copper - lead ores, germanite and fly ash from coals. +","जर्मेनियम वाणिज्यक रूप में मुख्यतया जिंक, जिंक-तांबा-सीसा अयस्कों, जर्मेनाइट तथा कोयले की फ्लाई एश से प्राप्त होता है। +","jarmeniyam vanijyak roop men mukhyatya jink, jink-tanba-sisa ayaskon, jarmenait tatha koyle ki phlaee esh se prapt hota hai. +",4,7 +"I got up and, taking hold of his bloodstained clothes, pulled his leg out. +","मैं उठी और खून से सने उसके कपडों को पकड़ उसकी टांग ऊपर उठा आयी। +","main uthi aur khoon se sane uske kapdon ko pakar uski tang oopar utha aayi. +",4,7 +"When something is routed through the account belonging to oneself. +","जब कोई सौदा या लेन-देन ऐसे खाते के माध्यम से किया जा रहा हो जो स्वयं का हो। +","jab koee sauda ya len-den aese khate ke madhyam se kiya ja raha ho jo oneself ka ho. +",5,4 +"% 1 has left this channel (% 2). +","(% 1)% 2 ने इस चैनल को छोड़ा. (% 3) +","1 2 ne is left this channel 3 +",5,2 +"Saponification literally means soap making. +","साबुनीकरण या साबुनीभवन का शाब्दिक अर्थ साबुन निर्माण है. +","sabunikaran ya sabunibhavan ka literally means soap nirman hai +",9,2 +"We will get the job done in anyway. +","हम किसी भी तरह से कार्य पूरा कर लेंगे। +","anyway kisi bhi tarah se job poora kar lenge. +",7,1 +"The poet is trying to create an image of a woman whose whole body is pining away, every limb is turning and twisting and, as described in a sloka mentioned above, the very bed and bed - sheets have become symbols of anguish and torture. +","कवि यहां एक ऐसी नारी के बिम्ब की उदभावना में लगा है जिसकी देह झुर रही है, अंग-अंग मरोड़ खा रहा है और, जैसा एक अन्य सलोक में कहा गया, बिछौना और चादर भी यन्त्रणा का प्रतिरूप बन उठे हैं। +","poet yahan ek aesi woman ke bimb ki udbhavna men whole hai jiski deh jhur rahi hai , ang-ang maror symbols raha hai aur , jaisa ek any sloka men kaha gaya , bed aur sheets bhi yantrna ka image ban uthe hain. +",8,2 +"They said: Swear to each other by Allah that we will certainly make a sudden attack on him and his family by night, then we will say to his heir: We did not witness the destruction of his family, and we are most surely truthful. +","वे आपस में अल्लाह की क़समें खाकर बोले, ""हम अवश्य उसपर और उसके घरवालों पर रात को छापा मारेंगे। फिर उसके वली (परिजन) से कह देंगे कि हम उसके घरवालों के विनाश के अवसर पर मौजूद न थे। और हम बिलकुल सच्चे है।"" +","ve aapas men allah ki smen khakar bole , swear avashy usapar aur uske family par night ko chhapa attack phir uske vali heir se kah denge ki swear uske family ke destruction ke avasar par maujood n the. aur swear bilkul sachche hai. +",6,2 +"And this is what we 're designing for. +","और यह है जिसके लिए हम डिजाइन कर रहे हैं. +","aur yah hai jiske lie ham dijain kar rahe hain +",7,3 +"A similar provision exists for the Deputy Chairman Rajya Sabha in article 90. +","अनुच्छेद 90 में राज्य सभा के उपसभापति के लिए ऐसा ही प्रावधान हे. +","anuchchhed 90 men rajy sabha in article ke lie aesa hi pravdhan he +",5,6 +"And proclaim His Purity, morning and evening. +","सुबह व शाम उसकी तसबीह करते रहो +","morning v proclaim his purity karte raho +",5,0 +"even if you weren 't given any choices. +","यहां तक कि अगर तुम किसी भी विकल्प को देखते हुए नहीं थे। +","yahan tak ki agar tum kisi bhi choices ko dekhte hue nahin the. +",7,3 +"Dhanpat Rai Shreevastav, who wrote with pen name Premchand (31 July 1880 - 8 October 1936) was one of the greatest Indian , Hindi and Urdu writers. +","प्रेमचंद (३१ जुलाई १८८० - ८ अक्तूबर १९३६) के उपनाम से लिखने वाले धनपत राय श्रीवास्तव हिन्दी और उर्दू के महानतम भारतीय लेखकों में से एक हैं। +","premchnd ३१ julaee १८८० - ८ aktoobar १९३६ ke upnam se likhne vale dhanapat ray shrivastav hindi and urdu ke mahanatam bhartiy lekhkon men se ek hain. +",8,4 +"which is the flower story. +","जो एक फूल की भी कहानी है. +","jo ek flower ki bhi story hai +",9,1 +"then do not put me, my Lord, among the wrongdoing lot. ’ +","तो मेरे रब! मुझे उन अत्याचारी लोगों में सम्मिलित न करना। "" +","to lord ! mujhe un wrongdoing logon men sammilit n karna. +",8,4 +"The following cookies were blocked (third - party cookies are being blocked without exception): +","निम्न कुकी अवरोधित कर दी गई हैं (तृतीय-पक्ष की कुकी को बिना किसी अपवाद के अवरोधित किया जा रहा है): +","following cookies avrodhit kar party gee hain tritiy-paksh ki cookies ko bina kisi exception ke avrodhit kiya ja raha hai : +",6,2 +"They get upset at the slightest inconvenience and the government officials have a difficult task to bring them round. +","थोड़ी भी असुविधा से वे विचलित हो उठते हैं और सरकारी कर्मचारियों के लिए उन्हें रास्ते पर लाना एक विकट समस्या बन जाती है. +","thori bhi slightest se ve vichlit ho uthte hain aur government officials ke lie unhen round par lana ek difficult samasya ban jati hai +",8,0 +"The average goat requires about 3. 5 kilograms of green fodder a day. +","एक बकरी को प्रतिदिन औसतन 3.5 किलोग्राम हरे चारे की आवश्यकता होती है। +","ek bakri ko prtidin average 35 kilograms hare fodder a day hoti day +",7,2 +"If you choose to create a new empty project, all changes will be lost. +","यदि आप नई परियोजना बनाने के लिए चुनते हैं, सभी परिवर्तन नष्ट हो जाएंगे. +","yadi aap new project banane ke lie chunte hain , sabhi changes nasht ho empty +",9,1 +"""And the places of worship are for Allah (alone): So invoke not any one along with Allah; +","और यह कि मस्जिदें अल्लाह के लिए है। अतः अल्लाह के साथ किसी और को न पुकारो +","aur yah ki places allah ke lie hai. ata allah ke sath kisi aur ko n invoke +",7,1 +"Mr Sasidharan with dignitaries in his Paddy field +","गणमान्य व्यक्तियों के साथ श्री शशिधरन उनके धान के खेत में +","dignitaries vyaktiyon ke sath mr shashidharan unke paddy ke field men +",7,2 +"Can 't pass document URIs to a' Type = Link 'desktop entry +","दस्तावेज़ URI को 'Type = Link' डेस्कटॉप प्रविष्टि में भेज नहीं सकता है +","pass URI ko Type type deskatp entry men uris nahin sakta hai +",6,1 +"the fuel is just uranium. It 's no more radioactive than it was when you stuck it in, and it' s +","सिर्फ यूरेनियम ईंधन है. यह कोई रेडियोधर्मी अधिक की तुलना में यह जब आप इसे में अटक गया था, और यह है +","s uranium fuel hai yah koee radioactive adhik ki tulna men yah jab aap ise men atak gaya tha , aur yah hai +",7,2 +"Oncotomy is a good option for treatment. +","अर्बुदछेदन उपचार का उत्तम विकल्प है +","arbudchhedan treatment ka good option hai +",9,0 +"Men (giver) the odds :):):):). Men (giver) the problem :). Men (giver) enjoy :):):):):) +","· पुरुष (Giver) को सहूलियत ☻☻☻☻ · पुरुष (Giver) को परेशानी ☺ · पुरुष (Giver) को आनंद ☻☻☻☻☺ +","men Giver ko odds enjoy men Giver ko problem men Giver ko aannd +",6,0 +"then makes him to die, and buries him, +","फिर उसे मौत दी फिर उसे कब्र में दफ़न कराया +","phir use maut di phir use kabr men buries karaya +",9,0 +"Please let me see when you 're online. Thanks! +","मुझे देखने के लिए जब आप ऑनलाइन हो. धन्यवाद! +","mujhe dekhne ke lie jab aap online ho thanks ! +",8,2 +"Those who were arrogant said, “We reject what you believe in. ” +","तब जिन लोगों को (अपनी दौलत दुनिया पर) घमन्ड था कहने लगे हम तो जिस पर तुम ईमान लाए हो उसे नहीं मानते +","tab jin logon ko apni daulat duniya par ghamand tha kahne lage ham to jis par tum eeman lae ho use nahin mante +",10,0 +"Your God is the One God. But the hearts of those who do not believe in the Hereafter are steeped in rejection of the Truth, and they are given to arrogance. +","तुम्हारा पूज्य-प्रभु अकेला प्रभु-पूज्य है। किन्तु जो आख़िरत में विश्वास नहीं रखते, उनके दिलों को इनकार है। वे अपने आपको बड़ा समझ रहे है +","tumhara poojy-prbhu akela prbhu-poojy god kintu jo aairat men vishvas nahin rakhte , unke hearts ko rejection god ve apne aapko bara samajh rahe hai +",6,1 +"While interpreting the power of it, Supreme Court also said that it is only a tribunal, which decides the election schedules, and holding election is his work. +","सुप्रीम कोर्ट ने भी उसकी शक्तियों की व्याख्या करते हुए कहा कि वह एकमात्र अधिकरण है जो चुनाव कार्यक्रम निर्धारित करे चुनाव करवाना केवल उसी का कार्य है +","supreme court ne bhi uski interpreting the power karte hue kaha ki vah ekmatr adhikaran hai jo chunav karyakram nirdharit kare chunav karvana keval usi ka kary hai +",6,1 +"However, in respect of factory building, plant and machinery and self fabricated machinery, vouchers to the extent of Rs. 41, 19, 260 / -, Rs. 1, 66, 64, 271 / and Rs. 1, 66, 64, 271 / respectively, could not be produced by the assessee. +","हालांकि, कारखाने के भवन, संयंत्र और मशीनरी और स्व-विरचित मशीनरी के संबंध में क्रमशः रु. ४१, १९, २६०/-, रु. १, ६६, ६४, २७१/- और रु. १, ६६, ६४, २७१/- तक के वाउचर निर्धारिती द्वारा प्रस्तुत नहीं किए जा सके. +","halanki , factory ke building , snyntr aur plant aur sv-virchit plant ke respect men kramsha rs ४१ , १९ , २६०- , rs १ , ६६ , ६४ , २७१- aur rs १ , ६६ , ६४ , २७१- tak ke vouchers assessee dvara extent nahin kie ja sake +",6,4 +"Everyday, she has to get up at 4 o’clock in the morning to cook for her husband who leaves at 5 o’clock in the morning to work at the industrial unit in neighbouring Gamharia town. Earlier she could barely see what she was grinding on the pestle stone. +","प्रतिदिन, उन्हें अपने पति के लिए भोजन तैयार करने के लिए प्रातः 4 बजे उठना पड़ता है, जो पास के गम्हारिया कस्बे में एक औद्योगिक इकाई में काम करने के लिए प्रातः 5 बजे घर से निकल पड़ते हैं। +","everyday , unhen apne husband ke lie bhojan taiyar karne ke lie morning 4 o parta hai , jo pas ke gamharia town men ek industrial unit men stone karne ke lie morning pestle o ghar se nikal parte hain. +",7,2 +"They had grown in self - respect and self - confidence. +","उनमें आत्मसम्मान और आत्मविश्वास का विकास हुआ। +","unmen respect aur confidence ka vikas huaa. +",8,2 +"There are four to five generations in a year and generally the pest overwinters as nymph which develops into adult in early spring. +","वर्ष में चार-पांच पीढ़ियां पूरी हो जाती हैं और यह पीड़क निम्फ के रूप में सर्दियां पार करके बसंत के आरंभ में प्रौढ़ बन जाता है। +","varsh men char-panch piiyan poori ho jati hain aur yah pirak nimph ke roop men sardiyan par karke basnt ke adult in early ban jata hai. +",5,5 +"A silly position for a fellow of eighteen ! +","वैसे यह हास्यास्पद स्थिति है , एक अट्ठारह वर्ष के लड़के के लिए ! +","vaise yah hasyaspad position hai , ek silly varsh ke larke ke lie ! +",6,3 +"The proofs can be submitted after logging in online under the section “My Applications” or directly contacting a DI office. +","साक्ष्यों के अनुभाग के तहत ऑनलाइन ""मेरे अनुप्रयोग"" में प्रवेश करने या सीधे एक डि कार्यालय से संपर्क करने के बाद प्रस्तुत किया जा सकता है। +","sakshyon ke anubhag ke tahat ऑnlain mere anupryog men prvesh karne ya sidhe ek di karyalay se snpark karne ke bad prastut kiya ja sakta hai. +",6,4 +"hoping that your sex cells, your male sex cells, +","इस उम्मीद में कि आपकी सेक्स कोशिकाएं, आपकी पुरुष सेक्स कोशिकाएं, +","is ummid men ki aapki sex cells , aapki male sex cells , +",9,2 +"Through ‘e - FILING’ only Advocate - on Record’ and petitioners - in - person can file cases in the Supreme Court of India +","2. ई-फाइलिंग के माध्यम से सर्वोच्च न्यायालय में केवल पीड़ित व्यक्ति अर्थात् मुकदमा दायर करने के इच्छुक व्यक्ति स्वयं या निबंधित वकील ही मुकदमा दायर कर सकता है। +","2 ee-phailing ke madhyam se sarvochch nyayalay men keval pirit vyakti arthat mukadma dayar karne ke ichchhuk vyakti svyn ya nibndhit vakil hi mukadma dayar kar sakta hai. +",7,2 +"During the fourth invasion of Durrani in 1757, a detachment was sent to chastise the Sikhs at Amritsar. +","सन् 1747 में दुर्रानी के चौथे हमले के समय सिक्खों को दण्ड देने के लिए सेना का एक खण्ड अमृतसर भेजा गया। +","san 1747 men durrani ke chauthe hamle ke samay chastise the sikhs dene ke lie sena ka ek khand amritasar bheja gaya. +",6,3 +"Your demand being so reasonable, no impartial person would even suggest that you should moderate it. +","आपकी मांग ऐसी है कि कोई निष्पक्ष मनुष्य उसमें काटछांट करनेकी बात सुझा ही नहीं सकता। +","aapki demand aesi hai ki koee impartial person usmen katchhant karneki bat reasonable hi nahin sakta. +",6,0 +"Call them (adopted sons) by (the names of) their fathers, that is more just with Allah. But if you know not their father 's (names, call them) your brothers in faith and Mawalikum (your freed slaves). And there is no sin on you if you make a mistake therein, except in regard to what your hearts deliberately intend. And Allah is Ever OftForgiving, Most Merciful. +","उन्हें उनके बापों का बेटा करकर पुकारो। अल्लाह के यहाँ यही अधिक न्यायसंगत बात है। और यदि तुम उनके बापों को न जानते हो, तो धर्म में वे तुम्हारे भाई तो है ही और तुम्हारे सहचर भी। इस सिलसिले में तुमसे जो ग़लती हुई हो उसमें तुमपर कोई गुनाह नहीं, किन्तु जिसका संकल्प तुम्हारे दिलों ने कर लिया, उसकी बात और है। वास्तव में अल्लाह अत्यन्त क्षमाशील, दयावान है +","unhen unke sons ka beta karakar pukaro. allah ke yahan yahi more nyaysngat bat mistake aur yadi tum unke sons ko n jante ho , to faith men ve brothers freed to hai hi aur brothers mawalikum bhi. is silsile men tumse jo lti huee ho usmen tumapar koee sin nahin , kintu jiska snkalp brothers hearts ne kar liya , uski bat aur mistake vastav men allah atyant kshmashil , dayavan hai +",5,3 +"If they try to force you to associate with Me that of which you have no knowledge, do not obey them. Live with them honourably in the world, but follow the way of him who turns to Me. Your returning is to Me in the end, when I will tell you what you did. +","और अगर तेरे माँ बाप तुझे इस बात पर मजबूर करें कि तू मेरा शरीक ऐसी चीज़ को क़रार दे जिसका तुझे इल्म भी नहीं तो तू (इसमें) उनकी इताअत न करो (मगर तकलीफ़ न पहुँचाना) और दुनिया (के कामों) में उनका अच्छी तरह साथ दे और उन लोगों के तरीक़े पर चल जो (हर बात में) मेरी (ही) तरफ रुजू करे फिर (तो आख़िर) तुम सबकी रुजू मेरी ही तरफ है तब (दुनिया में) जो कुछ तुम करते थे +","aur agar tere man bap i is knowledge par majboor karen ki too mera sharik aesi chiz ko rar end jiska i ilm bhi nahin to too ismen unki itaat n karo magar taklif n pahunchana aur live ke kamon men unka achchhi tarah sath end aur un logon ke tarie par chal jo har knowledge men meri hi taraph returning kare phir to aair tum sabki returning meri hi taraph hai tab live men jo kuchh tum karte the +",7,3 +"Kindness, seriousness and restraint were the balance column +","दया विचारशीलता और संयम इसके आधार स्तम्भ थे। +","kindness seriousness and restraint iske aadhar balance column +",8,1 +"Add one or more images to the panorama +","परिदृश्य में एक या अधिक छवियाँ जोड़ें +","panorama men ek ya adhik images add +",6,3 +"Then he will take a look and sight him in the middle of hell. +","तो क्या तुम लोग भी (मेरे साथ उसे झांक कर देखोगे) ग़रज़ झाँका तो उसे बीच जहन्नुम में (पड़ा हुआ) देखा +","to look tum log bhi mere sath use jhank kar dekhoge raz jhanka to use middle jahannum men para huaa dekha +",6,3 +"And so as these elements come together, +","और इस तरह ये सभी एक साथ होकर, +","aur is tarah ye sabhi ek sath elements , +",7,1 +"1. This does not function within defined time frame. +","1. ये नियमित अंतराल से काम नहीं करती है +","1 ye niymit defined se kam nahin karti hai +",8,2 +"according to the Tulsidas at the top there was sri rama 's story where lord shanker was telling the story to mother parvati +","तुलसीदास जी के अनुसार सर्वप्रथम श्री राम की कथा भगवान श्री शंकर ने माता पार्वती जी को सुनाया था। +","tulsidas ji ke anusar sarvapratham sri ram ki story bhagvan sri shnkar ne mata parvati ji ko sunaya tha. +",8,1 +"Such drafts which are presented for payment not accompanied by the advice from the remitter bank. +","ऐसे ड्राफ्ट जिन्हें भुगतान के लिए बिना प्रेषक बैंक द्वारा जारी सूचना पत्र के प्राप्त हुए प्रस्तुत किया जाए। +","aese drapht jinhen bhugtan ke lie bina preshak baink dvara jari soochna patr ke prapt hue prastut kiya jae. +",7,5 +"In many civil service exams that take place in India, questions which test the general knowledge of a candidate are commonplace. +","भारत में कई सरकारी पदों के लिए होने वाली परीक्षाओं में सामान्य ज्ञान के प्रश्न अकसर पूछे जाते हैं। +","bharat men kee sarkari padon ke lie hone vali test the general jnjan ke prashn akasar poochhe jate hain. +",7,1 +"Accessory products are to be purchased. +","होत्पादन को खरीदा जाने वाला है। +","hotpadan ko purchased jane vala hai. +",8,2 +"The artist in him, too, looked for fresh pastures and newer modes of expression. +","उनमें बैठा कलाकार भी, ताजी दूब वाले चरागाहों में विचरण करता और अभिव्यक्ति के अभिन्न क्षेत्रों की तलाश में रहता था. +","unmen baitha artist bhi , fresh newer vale pastures men vicharan karta aur expression ke abhinn kshetron ki talash men rahta tha +",8,1 +"Lahore gate is the main entrance +","लाहौर गेट इसका मुख्य प्रवेशद्वार है। +","lahore gate iska main entrance hai. +",9,2 +"Color to draw the Marcus Bains Line in the Time bar (empty for default). +","Marcus Bains Line को समय पट्टी में दिखाने के लिए रंग (तयशुदा रूप से खाली). +","Marcus Bains Line ko time bar men dikhane ke lie rng tayshuda roop se khali +",6,5 +"Their needs come low on the political agenda in countries that lack money and resources. +","धन और साधनों की कमी से जूझते देशों की राजनीतिक प्राथमिकताओं में इन लोगों की जरूरतों का स्थान बहुत नीचे होता है। +","dhan aur sadhnon ki kami se joojhte deshon ki rajnitik prathmiktaon men in logon ki jaroorton ka sthan bahut niche hota hai. +",4,7 +"And the earth that cracks open. +","और फटने वाली (ज़मीन की क़सम) +","aur earth vali zamin ki sam +",5,3 +"He said, ""My Lord, indeed I fear that they will deny me +","मूसा ने अर्ज़ कि परवरदिगार मैं डरता हूँ कि (मुबादा) वह लोग मुझे झुठला दे +","moosa ne arz ki paravardigar main darta hoon ki mubada vah log mujhe jhuthla de +",8,1 +"God will say, ""Enter the Fire and join the bands of jinn and men that have gone before you."" Every time a host enters [the fire], it will curse its fellow - host, then, when they are all gathered there, the last of them will say of the first, ""Our Lord, it was they who led us astray: give them double punishment in the Fire,"" - - God will say, ""Every one of you will have double punishment, though you do not know it"" - - +","वह कहेगा, ""जिन्न और इनसान के जो गिरोह तुमसे पहले गुज़रे हैं, उन्हीं के साथ सम्मिलित होकर तुम भी आग में प्रवेश करो।"" जब भी कोई जमाअत प्रवेश करेगी, तो वह अपनी बहन पर लानत करेगी, यहाँ तक कि जब सब उसमें रल-मिल जाएँगे तो उनमें से बाद में आनेवाले अपने से पहलेवाले के विषय में कहेंगे, ""हमारे रब! हमें इन्हीं लोगों ने गुमराह किया था; तो तू इन्हें आग की दोहरी यातना दे।"" वह कहेगा, ""हरेक के लिए दोहरी ही है। किन्तु तुम नहीं जानते।"" +","vah kahega, jinn and men ke jo giroh tumse pahle guzre hain, unhin ke sath sammilit hokar tum bhi aag enter the fire jab bhi koee jamaat prvesh karegi, to vah apni bahan par lanat karegi, yahan tak ki jab sab usmen ral-mil jaenge to unmen se bad men aanevale apne se pahlevale ke vishay men kahenge, hmare rab! hamen inhin logon ne gumrah kiya tha to too inhen aag ki dohri yatna de. vah kahega, hrek ke lie dohri hi hai. kintu tum nahin jante. +",8,0 +"how where they think the flag had been changes +","कैसे वो सोचते हैं कि कहाँ फ्लैग बदल गया है +","kaise vo sochte hain ki kahan flag changes gaya hai +",8,2 +"Say: 'I warn you only by the Revelation' But the deaf hear nothing when they are warned. +","(ऐ रसूल) तुम कह दो कि मैं तो बस तुम लोगों को '' वही '' के मुताबिक़ (अज़ाब से) डराता हूँ (मगर तुम लोग गोया बहरे हो) और बहरों को जब डराया जाता है तो वह पुकारने ही को नहीं सुनते (डरें क्या ख़ाक) +","ae rasool say kah do ki i to bas say logon ko vahi ke mutabi azab se darata hoon magar say log goya deaf ho aur bahron ko jab daraya jata hai to vah pukarne hi ko nahin sunte daren kya ak +",6,4 +"I.—Recovery of tax in respect of non-residents +","झ–अनिवासियों की बाबत कर की वसूली +","jhanivasiyon ki respect kar ki tax +",4,6 +"He could put up with any and everything but opposition to Urdu and the Anjuman was something he could not bear. +","जो कुछ कमाया वह या तो उर्दू पर निछावर कर दिया या दोस्तों और शार्गिदों पर खर्च कर दिया। +","jo kuchh something vah ya to urdoo par nichhavar kar diya ya doston aur shargidon par kharch kar diya. +",3,5 +"I 've two more children from my second wife. +","दूसरी पत्नी से दो बच्चे और हैं। +","doosri wife se do children aur hain. +",10,0 +"'In exercise of the powers vested in him by Rule 58 1 paragraph b of the Defence of Hyderabad Rules which correspond to the Defence of India Rules, it is hereby ordered that no person shall unfurl in a ceremonial fashion at any public function the flag of any foreign country nor salute it. +","हैदराबाद रक्षा-कानूनों जो भारत रक्षा-कानूनों के जैसे ही है की धारा-58 1 के पैरा ब द्वारा उनमें निजाम में निहित सत्ताओं का अमल करके यह आदेश दिया जाता है कि कोई भी व्यक्ति किसी भी सार्वजनिक समारोह में विधिवत् किसी विदेश के झंडे को न तो फहरायेगा और न उसे सलामी देगा। +","haidrabad raksha-kanoonon jo bharat raksha-kanoonon ke jaise hi hai ki dhara-58 1 ke paira b dvara unmen nijam men powers vested ka amal karke yah aadesh diya jata hai ki koee bhi vyakti kisi bhi function the flag vidhivat kisi videsh ke jhnde ko n to phahrayega aur n use salami dega. +",8,1 +"Her history remains alive and vibrant in the thoughts, actions, customs and rituals of her people. +","इसका इतिहास इसके लोगों के विचारों, कार्यों, रीति-रिवाजों और धार्मिक कृत्यों से परिपूर्ण और सजीव बना रहा। +","iska itihas iske history remains alive, actions, riti-rivajon aur dharmik krityon se alive and vibrant bana raha. +",8,1 +"Eyes: Spitting cobras can actually eject their venom quite accurately into the eyes of their victims, resulting in direct eye pain and damage. +","आंख-थूकनेवाले कोबरा अक्सर अपने शिकार की आंखों में विष थूक देते हैं, जिससे आंखें क्षतिग्रस्त हो सकती हैं या उनमें दर्द हो सकता है। +","aankh-thooknevale cobras aksar apne eyes ki eye men venom thook dete hain , jisse aankhen damage ho sakti hain ya unmen pain ho sakta hai. +",7,2 +"In response, he turned away along with his army and said, “He is a magician or a madman. ” +","तो उसने अपने लशकर के बिरते पर मुँह मोड़ लिया और कहने लगा ये तो (अच्छा ख़ासा) जादूगर या सौदाई है +","to usne apne army ke birte par munh response liya aur kahne laga ye to achchha asa magician ya saudaee hai +",7,0 +"Or like abundant rain from the cloud in which is utter darkness and thunder and lightning; they put their fingers into their ears because of the thunder peal, for fear of death, and Allah encompasses the unbelievers. +","या (उनकी मिसाल ऐसी है) जैसे आकाश से वर्षा हो रही हो जिसके साथ अँधेरे हों और गरज और चमक भी हो, वे बिजली की कड़क के कारण मृत्यु के भय से अपने कानों में उँगलियाँ दे ले रहे हों-और अल्लाह ने तो इनकार करनेवालों को घेर रखा हैं +","ya unki unbelievers aesi hai jaise cloud se rain ho rahi ho jiske sath darkness hon aur thunder aur chamak bhi ho , ve lightning ki karak ke karan death ke fear se apne fingers men ungliyan de le rahe hon-aur allah ne to inkar karnevalon ko gher rakha hain +",7,1 +"Set the browser to view only this genre +","ब्राउजर को सिर्फ ये शैल प्रदर्षित करने के लिए निश्चित करें +","browser ko sirph ye shail genre karne ke lie nishchit karen +",8,0 +"Server 's certificate cannot be checked. +","सर्वर प्रमाणपत्र की जांच नहीं की जा सकती. +","server certificate ki janch nahin ki ja sakti +",10,0 +"Casual workers are paid wages per man - day. +","दिहाडी मजदूरों को मजदूरी का भुगतान श्रम-दिन के आधार पर किया जाता है। +","dihadi workers ko wages ka bhugtan shram-din ke aadhar par kiya jata day +",9,0 +"The increasing adoption of the continuous casting process by the integrated steel plants would mean that they will themselves use most of the scrap generated by them . +","समन्वित इस्पात मिलों द्वारा निरन्तर कास्टिंग प्रक्रिया के अपनाने का अर्थ होगा कि अपने ही संयंत्रों से निकले टुकड़ों ( स्क्रेप ) का वे स्वयं उपयोग करेंगे . +","samanvit steel most dvara continuous casting process ke adoption ka arth hoga ki apne hi snyntron se nikle scrap skrep ka ve svyn upyog karenge +",5,5 +"And what if there 's no GPS? +","और अगर GPS नहीं है? +","aur agar gps nahin hai +",9,0 +"There are eighteen thousand verses in the BrahmavaivarthPuran. +","ब्रह्मवैवर्तपुराण में श्लोकों की संख्या अठारह हजार हैं। +","verses men shlokon ki snkhya eighteen thousand verses +",5,1 +"You mustn 't deceive yourself in a serious matter like this. +","लेकिन इतने बड़े महत्व के मामले में यों अपनी आँखों में धूल डालने की कोशिश न कर। +","lekin itne bare mahatv ke mamle men yon apni aankhon men dhool dalne ki koshish n kar. +",7,5 +"Irrigation of wound with an antiseptic solution was performed. +","घाव का धावन अपूतिक विलयन सें किया गया +","wound ka irrigation apootik solution antiseptic kiya gaya +",6,1 +"A signal or symbol used for secret communication. +","गुप्त संचार/सम्प्रेषण के लिए प्रयोग में लाया जाने वाला कोई चिन्ह या संकेत। +","secret sncharsampreshan ke lie pryog men laya jane vala koee signal ya snket. +",8,1 +"Almost all Political Parties with their representatives contest the election for Counselor. +","पार्षदों के चुनाव हेतु लगभग सभी राजनीतिक पार्टियां अपने प्रत्याशि खड़े करतीं हैं। +","parshdon ke election hetu lagabhag sabhi political partiyan apne representatives khare kartin hain. +",9,1 +"Construction of Farkka dam has been helpful in production of seed of hilsa fish. +","फरक्का बांध बन जाने से गंगा नदी में हिल्सा मछली के बीजोत्पादन में सहायता मिली है। +","construction dam ban jane se gnga nadi men production fish ke farkka men sahayta mili hai. +",5,3 +"And the earth that cracks open. +","और फटने वाली (ज़मीन की क़सम) +","aur earth that cracks ki earth +",5,0 +"“Before I die, I want to ... ” +","“ अपनी मृत्यु से पहले, मैं .... करना चाहता हूँ।” +","apni mrityu se pahle , i karna chahta hoon. +",8,0 +"And I said, “What do you do?” +","और मैंने कहा, “तुम क्या करते हो” +","aur mainne kaha, tum kya karte ho +",5,8 +"India and Togo enjoy warm and friendly relations. +","भारत और टोगो के प्रगाढ़ और मैत्रीपूर्ण संबंध हैं। +","india aur togo ke enjoy aur friendly relations hain. +",7,1 +"My uncle has sent you the vegetables, Mr Vyas, Kapil said. +","मेरे चाचा ने आपके लिए तरकारी भेजी हे, कपिल ने कहा। +","mere uncle ne aapke lie vegetables bheji he , mr ne kaha. +",5,3 +"But there are signs of a renaissance and, given that youth organizations provide adolescents' main experience of democracy, their strengthening will be an essential buttress to future human rights in the country. +","युवा संगठन किशोरों को लोकतंत्र का अनुभव प्रदान करते हैं इसलिए उन्हें मजबूत करने से भविष्य में देश में मानव अधिकारों की आवश्यक बुनियाद तैयार होगी। +","youth organizations kishoron ko loktntr ka anubhav prdan karte hain islie unhen majboot karne se experience of democracy men manav adhikaron ki aavashyak buniyad taiyar hogi. +",8,3 +"The poet feels inspired by Parmanand Almast, that aspect of Lord Shiva which symbolises Truth and Beauty. +","कवि को शिव का सत्य और सुन्दर रूप अधिक प्रेरक लगता है। +","poet ko lord ka truth aur beauty aspect adhik prerak feels hai. +",7,2 +"Which has been countersigned in a correct / proper manner. +","जो यथोचित ढंग से प्रतिहस्ताक्षरित किए गए हैं। +","jo proper manner se prtihastakshrit kie correct hain. +",7,0 +"Can't copy file over directory +","निर्देशिका पर फ़ाइल की नक़ल नहीं ले सकता है +","file over directory ki copy nahin le sakta hai +",7,0 +"Gandhiji’s talisman for the country 's rulers was simple and powerful and I quote: +","देश के शासकों के लिए गांधी जी का मंत्र सरल और शक्तिशाली थाः +","country ke rulers ke lie gandhi ji ka talisman simple and powerful thaa +",8,1 +"He works towards impacting the environment in a positive manner through his own actions as well as by imparting knowledge amongst students to help them achieve their potential. +","वह अपने कार्यों के जरिए तथा विद्यार्थियों को अपनी क्षमता अर्जित करने में मदद करने के लिए ज्ञान प्रदान करके वातावरण को सकारात्मक तरीके से प्रभावित करने का कार्य करता है। +","vah apne actions ke jarie towards students ko apni own arjit karne men madad karne ke lie knowledge prdan karke environment ko positive tarike se prbhavit karne ka kary karta hai. +",8,4 +"There is indeed not a single square centimetre on the Earth 's surface where one or another kind of insect is not found. * * How numerous are insects? +","वस्तुतया पृथ्वी की सतह पर एक वर्ग से. मी. जगह भी ऐसी नहीं है जहां कीट न मिलें। +","vastutya earth ki surface par ek varg se square jagah bhi aesi nahin hai jahan single n kind +",6,0 +"When it is legal act by illegal means over act is necessary. +","जब अवैध तरीकों से कानूनी कार्रवाई की गयी है तब यह अधिनियम आवश्यक है. +","jab illegal means se legal karrvaee ki gayi hai tab yah act necessary hai +",9,1 +"But Nanak was for more knowledgeable than his teachers. +","लेकिन नानक का ज्ञान गुरु से कहीं बढ़-चढ़ कर था। +","lekin teachers ka jnjan guru se kahin ba-cha kar tha. +",5,2 +"To change time or date settings, you need to authenticate. +","समय या दिनांक सेटिंग्स को बदलने के लिए, आपको प्रमाणित करने की जरूरत है. +","time or date settings ko change ke lie, aapko authenticate karne ki jaroorat hai +",7,2 +"Such is the Garden which We give as an inheritance to those of Our servants who guard against Evil. +","यही वह बेिहश्त है कि हमारे बन्दों में से जो परहेज़गार होगा हम उसे उसका वारिस बनायेगे +","yahi vah garden hai ki servants who guard se jo parhezgar hoga ham use uska varis give +",4,2 +"In case of accidents: If any labourer gets bodily injury during the course of employment at work site, the person is entitled to free medical treatment from the State Government. +","दुर्घटना की स्थिति में-यदि कोई कामगार कार्यस्थल पर कार्य के दौरान घायल होता है तो राज्य सरकार की ओर से वह निःशुल्क चिकित्सा सुविधा पाने का हकदार होगा। +","case of accidents men-ydi koee work site par kary ke dauran ghayal hota hai to rajy sarkar ki or se vah free medical treatment pane ka free medical +",8,0 +"Those! theirs shall be a provision known: +","उनके वास्ते (बेहिश्त में) एक मुक़र्रर रोज़ी होगी +","unke provision behisht men ek murrar rozi hogi +",7,3 +"Never keep in the vicinity of the adult birds +","वयस्क पक्षियों से निकटता न बनाएं। +","adult birds se nikatta n banaen. +",10,0 +"Even younger women pull the strings from behind. +","कम उम्र की स्त्रियां भी पर्दे के पीछे से सूत्रधार बनी रहती हैं। +","strings younger ki women bhi parde ke behind se sootrdhar bani rahti hain. +",6,1 +"An hour later , he had before him a chest of Spanish gold coins . +","एक घंटे बाद , उसके सामने स्पेनी स्वर्ण मुद्राओं से भरी एक तिजोरी थी । +","ek hour bad , uske samne spanish gold mudraon se bhari ek chest thi . +",9,2 +"The Kalam - pattu in the Vaikkom temple is sung inside a big thatched shed in the extensive courtyard on the northern side of the temple. +","वैकोम के मंदिर में कलमपट्ट एक बहुत बड़ी झोपड़ी में बैठकर गाया जाता है जो मंदिर के बहुत बड़े प्रांगण के उत्तरी भाग में स्थित है। +","vaikom ke temple men kalamapatt ek bahut big thatched men baithakar sung jata hai jo temple ke bahut extensive prangan ke northern side men sthit hai. +",7,0 +"And He subjected the night and the day for you – and the sun and the moon; and the stars are subjected to His command; indeed in this are signs for people of intellect. +","उसी ने तुम्हारे वास्ते रात को और दिन को और सूरज और चाँद को तुम्हारा ताबेए बना दिया है और सितारे भी उसी के हुक्म से (तुम्हारे) फरमाबरदार हैं कुछ शक़ ही नहीं कि (इसमें) समझदार लोगों के वास्ते यक़ीनन (कुदरत खुदा की) बहुत सी निशानियाँ हैं +","usi ne tumhare vaste rat ko aur din ko aur sooraj aur chand ko tumhara tabee bana diya hai aur sitare bhi usi ke hukm se tumhare pharmabardar hain kuchh sha hi nahin ki ismen samajhdar logon ke vaste yainan kudarat khuda ki bahut si nishaniyan hain +",6,5 +"Continue or suspend the execution of the program +","जारी रखें या सस्पेंड का प्रोग्राम +","continue rakhen ya execution ka program +",7,1 +"Inevitable losses is pushing the profit in unfavourable direction. +","अपरिहार्य हानियाँ लाभ को प्रतिकूल दिशा में धकेल रही हैं। +","inevitable losses profit ko unfavourable direction men dhakel rahi hain. +",7,6 +"And that 's a fun problem, and this is often kind of given as +","और वह एक मजेदार है समस्या है, और यह अक्सर के रूप में दिए गए की तरह है +","aur vah ek fun hai problem hai, aur yah aksar ke roop men die ge ki tarah hai +",6,1 +"Inflammation related to the tissues around the larynx. +","स्वरयंत्र के चारों ओर पाए जाने वाले ऊतक से संबंधी प्रदाह +","larynx ke charon or pae jane vale ootak se inflammation related +",6,3 +"{player} is now known as {newname} {player} +","अब {newname} से जाना जाता है +","player newname se jana jata hai +",8,3 +"He said, “Our Lord is He who gave everything its existence, then guided it. ” +","मूसा ने कहा हमारा परवरदिगार वह है जिसने हर चीज़ को उसके (मुनासिब) सूरत अता फरमाई +","gave ne kaha hamara lord vah hai jisne har chiz ko uske munasib soorat ata pharmaee +",7,1 +"Remove the validity tests on this cell +","इस कक्ष पर वैधता जांच हटाएं +","is cell par validity janch hataen +",8,4 +"Open this bookmark in a new window +","इस पुस्तकचिह्न को नए विंडो में खोलें +","is bookmark ko ne vindo men open +",7,1 +"If you believe you can, you probably can. +","यदि आप यह मानते हैं कि आप कर सकते हैं, तो संभवतः आप कर सकते हैं। +","yadi aap yah mante hain ki aap kar sakte hain , to snbhavta aap kar sakte hain. +",9,2 +"The international community must work together now, with wisdom, to create tolerance and understanding for addressing the complex issues confronting mankind. +","अंतरराष्ट्रीय समुदाय को अब मानव के सम्मुख जटिल मुद्दों के समाधान हेतु सहिष्णुता और सद्भावना पैदा करने के लिए मिलकर बुद्धिमतापूर्वक मिलकर कार्य करना चाहिए। +","international community ko ab issues confronting mankind complex issues ke understanding for addressing aur sadbhavna paida karne ke lie milakar buddhimtapoorvak milakar kary karna chahie. +",6,4 +"By the time father and son reached the foot of the Himalayas it was April . +","पिता और पुत्र जब हिमालय की घाटी में पहुंचे तब अप्रैल का महीन शुरू हो चुका था . +","father and son jab himalay ki reached the foot tab aprail ka mahin shuroo ho chuka tha +",7,0 +"Central European (_ MacCE) +","मध्य यूरोपीय (_ MacCE) +","central european _ MacCE +",5,8 +"Where the front skin join with the area under the penis. called as joint of front skin (farunulum). +","शिश्न के निचली ओर का वह क्षेत्र जहाँ से अग्रत्वचा जुड़ी रहती है अग्रत्वचा का बंध (फेरुनुलम) कहलाता है। +","penis ke nichli or ka vah area jahan se front juri rahti hai front ka bndh joint kahlata hai. +",6,5 +"As mentioned at the very beginning of this book, had it not been for these insects we would not have had our vegetation and landscape. +","जैसा कि इस पुस्तक के प्रारंभ में ही बताया जा चुका है अगर ये कीट न होते तो न तो हमारी वनस्पति होती और न हमें भूदृश्य देखने को मिलते. +","jaisa ki is pustak ke prarnbh men hi bataya ja chuka hai agar ye kit n hote to n to hamari vanaspti hoti aur n hamen bhoodrishy dekhne ko milte +",4,7 +"A chart / material showing the information on amount disbursed. +","धनराशि के वितरण के बारे में तैयार की गई रूपरेखागत सूचना सामग्री +","amount ke vitaran ke bare men taiyar ki gee chart information material +",8,0 +"Bring me sheets of iron ""- until, when he had leveled [them] between the two mountain walls, he said,"" Blow [with bellows], ""until when he had made it [like] fire, he said,"" Bring me, that I may pour over it molten copper. "" +","(अच्छा तो) मुझे (कहीं से) लोहे की सिले ला दो (चुनान्चे वह लोग) लाए और एक बड़ी दीवार बनाई यहाँ तक कि जब दोनो कंगूरो के दरमेयान (दीवार) को बुलन्द करके उनको बराबर कर दिया तो उनको हुक्म दिया कि इसके गिर्द आग लगाकर धौको यहां तक उसको (धौंकते-धौंकते) लाल अंगारा बना दिया +","achchha to i kahin se iron ki sile la do chunanche vah log lae aur ek bari walls banaee yahan tak ki jab dono sheets ke darmeyan walls ko buland karke unko barabar kar diya to unko hukm diya ki iske gird fire lagakar dhauko yahan tak usko dhaunkte-dhaunkte lal angara bana diya +",6,4 +"“And if you deny, then many nations have denied before you; and the Noble Messenger is not responsible except to plainly convey (the message). ” +","और यदि तुम झुठलाते हो तो तुमसे पहले कितने ही समुदाय झुठला चुके है। रसूल पर तो बस केवल स्पष्ट रूप से (सत्य संदेश) पहुँचा देने की ज़िम्मेदारी है। "" +","aur yadi tum jhuthlate ho to tumse pahle kitne hi samuday jhuthla chuke hai. rasool par to bas keval spasht roop se saty sndesh pahuncha dene ki zimmedari hai. +",6,6 +"India and Bangladesh are interlinked like no other nations on earth. +","भारत और बांग्लादेश विश्व के किसी भी अन्य देश से, कहीं अधिक पारस्परिक ढंग से जुड़े हुए हैं। +","india and bangladesh vishv ke kisi bhi any desh se, kahin adhik parasprik dhng se jure hue hain. +",8,1 +"And having thus turned back the clock , We can regenerate the stock , Proceeding to our final goal By race , as well as birth control . +","इस प्रकार घडऋई का उलटी चलाकर , हम अपना मूल वंश पुनर्जीवित कर सकते हैं , हमारा लक्षऋ-ऊण्श्छ्ष्-य हम वांशिक रूप से तथा परिवार नियोजन से प्राप्त कर सकते हैं +","is prkar clock ka ulti chalakar , ham apna mool stock punarjivit kar sakte hain , hamara lakshri-oonshchhsh-y ham final roop se tatha parivar niyojan se prapt kar sakte hain +",7,2 +"Those who were arrogant said, “We reject what you believe in. ” +","तब जिन लोगों को (अपनी दौलत दुनिया पर) घमन्ड था कहने लगे हम तो जिस पर तुम ईमान लाए हो उसे नहीं मानते +","tab jin logon ko apni daulat duniya par arrogant tha kahne lage ham to jis par tum eeman lae ho use nahin mante +",9,0 +"It is the best source of soluble fibre. +","यह घुलनशील रेशे का सर्वश्रेष्ठ स्रोत है। +","yah soluble fibre ka sarvashreshth srot source +",9,1 +"The First Appellate Authority can give either a ""spoken"" order or a written order +","प्रथम अपीलीय अधिकारी मौखिक या लिखित किसी भी रूप में आदेश दे सकते हैं। +","authority can give maukhik ya likhit kisi bhi roop men aadesh de sakte hain. +",7,1 +"(Charles Tilly),Terror, Terrorism, Terrorist Sociological Theory (2004)22,5-13 (online) +","चार्ल्स तिल्ली (Charles Tilly) आतंक आतंकवाद आतंकवादी समाजशास्त्रीय सिद्धांत (2004) 22 5-13 में ऑनलाइन +","charles tilli Charles Tilly terror terrorism terrorist sociological theory 2004 22 5-13 men online +",5,5 +"And when it was said to them: Reside in this town and eat from it wherever you wish, and say, Put down from us our heavy burdens: and enter the gate making obeisance, We will forgive you your wrongs: We will give more to those who do good (to others). +","और जब उनसे कहा गया कि उस गाँव में जाकर रहो सहो और उसके मेवों से जहाँ तुम्हारा जी चाहे (शौक़ से) खाओ (पियो) और मुँह से हुतमा कहते और सजदा करते हुए दरवाजे में दाखिल हो तो हम तुम्हारी ख़ताए बख्श देगें और नेकी करने वालों को हम कुछ ज्यादा ही देगें +","aur jab unse kaha gaya ki us town men making heavy reside aur uske mevon se jahan tumhara wrongs chahe eat se khao piyo aur munh se hutma kahte aur obeisance karte hue gate men dakhil ho to ham tumhari burdens bakhsh others aur neki karne valon ko ham kuchh good hi others +",6,3 +"Before road transport developed, the principal arteries of communication during those days were the river routes. +","सड़कों के विकास के पहले उन दिनों नदियों के मार्ग ही यातायात के प्रमुख साधन थे। +","road ke vikas ke pahle un dinon nadiyon ke marg hi yatayat ke prmukh sadhan the. +",6,5 +"When it is said to them, ""Believe in that which Allah has sent down,"" they say, ""We believe only in that which has been sent to us"", and reject everything else, though it is the Truth and confirms what is with them. Well, ask them, ""If you sincerely believed in what was sent down to you, why did you kill the Messengers of Allah (who were sent to you from amongst yourselves)? +","और जब उनसे कहा गया कि (जो क़ुरान) खुदा ने नाज़िल किया है उस पर ईमान लाओ तो कहने लगे कि हम तो उसी किताब (तौरेत) पर ईमान लाए हैं जो हम पर नाज़िल की गई थी और उस किताब (कुरान) को जो उसके बाद आई है नहीं मानते हैं हालाँकि वह (क़ुरान) हक़ है और उस किताब (तौरेत) की जो उनके पास है तसदीक़ भी करती है मगर उस किताब कुरान का जो उसके बाद आई है इन्कार करते हैं (ऐ रसूल) उनसे ये तो पूछो कि तुम (तुम्हारे बुर्जुग़) अगर ईमानदार थे तो फिर क्यों खुदा के पैग़म्बरों का साबिक़ क़त्ल करते थे +","aur jab unse kaha gaya ki jo uran khuda ne nazil kiya hai us par eeman lao to kahne lage ki ham to usi kitab tauret par eeman lae hain jo ham par nazil ki gee thi aur us kitab kuran ko jo uske bad aaee hai nahin mante hain halanki vah uran ha hai aur us kitab tauret ki jo unke truth and confirms bhi karti hai magar us kitab kuran ka jo uske bad aaee hai inkar karte hain ae rasool unse ye to poochho ki tum tumhare burju agar eemandar the to phir kyon khuda ke paimbron ka sabi tl karte the +",4,6 +"Questions may be about the treatment itself, for example: +","सवाल वैद्यकिय उपचार के बारे में भी हो सकते हैं, जैसे कि उदाहरण के तौर पर: +","questions vaidykiy treatment ke bare men bhi ho sakte hain, jaise ki udaharan ke taur par: +",8,2 +"One consequence of this kind of segregation was that there was usually little mental companionship between husband and wife . +","इस तरह के अलगाव का एक परिणाम यह था कि साधारणतया पति और पत्नी के बीच सहचारिता नहीं थी . +","is tarah ke segregation ka ek consequence yah tha ki sadharanatya husband and wife ke mental companionship nahin thi +",7,3 +"Unable to send memo information, the memo does not exist +","ज्ञापन सूचना देने में असमर्थ, यह ज्ञापन मौजूद नहीं है +","memo information dene men unable, yah memo maujood nahin hai +",8,3 +"His duty is scheduled at night shift. +","उसकी ड्यूटी रात की पारी में सूचित है। +","uski dyooti rat ki pari men soochit hai. +",7,5 +"So the Government of India had no reason to revise its educational and cultural policy, which had been one of the causes of the Revolt of 1857, but decided to enforce it more systematically and thoroughly with the help of a large section of Indians. +","इसलिए भारत सरकार के पास उनकी शैक्षणिक और सांस्कृतिक नीति को संशोधित करने का कोई कारण नहीं रहा, जो कि 1857 के विद्रोह का एक कारण था, बल्कि बड़ी संख्या में भारतीयों की सहायता से उसे और सुव्वस्थित ढ़ग से अच्छी तरह कार्यान्वित करने का निश्चय किया। +","islie india government ke pas unki educational aur cultural policy ko snshodhit karne ka koee reason nahin raha , jo ki 1857 ke revolt ka ek reason tha , balki large snkhya men bhartiyon ki help se use aur suvvasthit g se achchhi tarah karyanvit karne ka nishchay kiya. +",8,2 +"Shah 's heart was deeply moved and he sent back the following message through the same messenger: Grieve not, for I am not far away; Physically away, yet really I am one with your noble self. +","शाह लतीफ का हृदय विचलित हो उठा और उन्होंने उसी सन्देशवाहक के द्वारा निम्नलिखित सन्देश भेजा: दूखी मत होओ, मैं दूर नहीं हूँ, देखने में दूर, पर दोनों की हद एक है। +","shah latiph ka hriday heart was deeply aur unhonne usi sandeshvahak ke dvara nimnlikhit sandesh bheja: dookhi mat hoo, main door nahin hoon, dekhne men door, par donon ki had ek hai. +",4,6 +"Ne _ ver Add Such File +","कभी ऐसी फाइल मत जोड़ें (_ v) +","kabhi aesi file mat add _ v +",8,1 +"Underline color for misspelled words when using inline spelling. +","इनलाइन वर्तनी प्रयोग के दौरान गलत वर्तनी वाले शब्द रंग से रेखांकित करें. +","color for misspelled ke dauran galat vartni vale shabd rng se rekhankit karen +",3,5 +"And He subjected the night and the day for you – and the sun and the moon; and the stars are subjected to His command; indeed in this are signs for people of intellect. +","उसी ने तुम्हारे वास्ते रात को और दिन को और सूरज और चाँद को तुम्हारा ताबेए बना दिया है और सितारे भी उसी के हुक्म से (तुम्हारे) फरमाबरदार हैं कुछ शक़ ही नहीं कि (इसमें) समझदार लोगों के वास्ते यक़ीनन (कुदरत खुदा की) बहुत सी निशानियाँ हैं +","usi ne people vaste night ko aur day ko aur sun aur moon ko tumhara tabee bana diya hai aur sitare bhi usi ke hukm se people pharmabardar hain kuchh sha hi nahin ki ismen intellect logon ke vaste yainan kudarat khuda ki bahut si nishaniyan hain +",7,2 +"is another human being saying, “Do you understand this?” +","कोई दूसरा मनुष्य ये कहे, “क्या आपको समझ आया?” +","koee doosra human ye kahe , kya aapko samajh aaya +",8,1 +"Amritsar is famous for the Golden Temple. +","अमृतसर स्वर्ण मंदिर के लिए प्रसिद्ध है। +","amritsar golden temple ke lie famous hai. +",10,0 +"The combined CPU usage of all processes related to% {SHORT _ PRODUCT _ NAME} +","%{SHORT _ PRODUCT _ NAME} से संबंधित सभी प्रक्रियाओं का संयुक्त CPU उपयोग +","SHORT _ PRODUCT _ NAME se snbndhit sabhi processes ka combined cpu usage +",7,0 +"The Quran itself states that muslims have the right to read the Quran. +","स्वयं कुरान कहता है और वे इसे पढ़ने के अधिकार ‎के साथ पढ़ते हैं। +","svyn quran kahta hai aur ve ise pane ke right muslims sath pate hain. +",6,5 +"Unable to launch %s: %s +","%s लांच करने में असमर्थ: %s +","s lanch karne men unable: s +",7,4 +"There are probably other things in the world that the sheep can 't teach me, thought the boy as he regarded the old merchant. +","दुनिया में ऐसी कई और भी चीजें हैं, जो भेड़ें नहीं सिखा सकती। +","world men aesi kee aur bhi chijen hain, jo bheren nahin sikha things +",5,2 +"Price escalation will increase overall cost of the project. +","कीमत वृद्धि के कारण परियोजना की लागत में वृद्धि हो जायेगी। +","price escalation ke karan pariyojna ki lagat men escalation will increase +",6,2 +"Provided that where in respect of any such consideration, the equalisation levy has been deducted in any subsequent year or has been deducted during the previous year but paid after the due date specified in sub-section (1) of section 139, such sum shall be allowed as a deduction in computing the income of the previous year in which such levy has been paid; +","परंतु जहां ऐसे किसी प्रतिफल के संबंध में किसी पश्चात्वर्ती वर्ष में समकरण उद्ग्रहण की कटौती की गर्इ है या पूर्ववर्ष के दौरान कटौती की गर्इ है किंतु धारा 139 की उपधारा (1) में विनिर्दिष्ट नियत तारीख के पश्चात् संदत्त किया गया है तो ऐसी राशि को पूर्ववर्ष जिसमें ऐसे उद्ग्रहण का संदाय किया गया है कि आय की संगणना में कटौती के रूप में अनुज्ञात किया जाएगा। +","parntu jahan aese kisi prtiphal ke snbndh men kisi pashchatvarti varsh men samakaran udgrahan ki katauti ki gari hai ya poorvavarsh ke dauran katauti ki gari hai kintu dhara 139 ki updhara 1 men vinirdisht niyat tarikh ke pashchat sndatt kiya gaya hai to aesi rashi ko poorvavarsh jismen aese udgrahan ka snday kiya gaya hai ki aay ki deduction in computing ke roop men anujnjat kiya jaega. +",5,5 +"Without bridging the information gap, such disparity will persist. +","सूचना के इस अंतर को पाटे बिना ऐसी असमानता बनी रहेगी। +","information ke is gap ko pate such aesi disparity bani rahegi. +",7,2 +"They are rather big egoists. +","ऐसे लोग बहुत ही अहमवादी होते हैं। +","aese big bahut hi ahamvadi hote hain. +",8,1 +"Those before them had denied, then punishment had overtaken them is from a quarter they did not suspect. +","जो लोग उनसे पहले गुज़र गए उन्होंने भी (पैग़म्बरों को) झुठलाया तो उन पर अज़ाब इस तरह आ पहुँचा कि उन्हें ख़बर भी न हुई +","jo log unse pahle guzar quarter unhonne bhi punishment ko jhuthlaya to un par azab is tarah aa pahuncha ki unhen bar bhi n huee +",7,0 +"""(xviib) any compensation or other payment referred to in clause (xi) of sub-section (2) of section 56;""; +","''(xviiख) धारा 56 की उपधारा (2) के खंड (xi) में निर्दिष्ट कोर्इ प्रतिकर या अन्य संदाय;''; +","xviib clause 56 ki updhara 2 ke khnd xi men nirdisht kori compensation ya other payment +",7,3 +"We can talk to him as soon as we know that Binoy Babu is willing. +","विनय बाबू-राज है, यह जानकर ही तो उनसे कहूँगी। +","vinay baboo-raj hai, yah janakar hi to unse talk +",4,6 +"waxing proud in the land, and devising evil; but evil devising encompasses only those who do it; So do they expect anything but the wont of the ancients? And thou shalt never find any changing the Wont of God, and thou shalt never find any altering the wont of God. +","(उसके आने से) उनकी नफरत को तरक्की ही होती गयी और बुदी तद्बीर (की बुराई) तो बुरी तद्बीर करने वाले ही पर पड़ती है तो (हो न हो) ये लोग बस अगले ही लोगों के बरताव के मुन्तज़िर हैं तो (बेहतर) तुम खुदा के दसतूर में कभी तब्दीली न पाओगे और खुदा की आदत में हरगिज़ कोई तग़य्युर न पाओगे +","uske aane se unki napharat ko tarakki hi hoti gayi aur budi tadbir ki buraee to buri tadbir karne vale hi par parti hai to ho n ho ye log bas agle hi logon ke bartav ke muntazir hain to behatar tum khuda ke dastoor men kabhi tabdili n paoge aur khuda ki aadat men hargiz koee tayyur n paoge +",9,2 +"They are rather big egoists. +","ऐसे लोग बहुत ही अहमवादी होते हैं। +","aese log bahut hi ahamvadi hote hain. +",10,0 +"How many tens of thousands of years does it go back? +","यह कितने दसियों हजारों साल पीछे जाती हैं ? +","yah many tens years sal pichhe jati hain +",6,3 +"Until he was eight,there was instability lagging to him for which no arrangement for education could be made. +","जब तक अकबर आठ वर्ष का हुआ जन्म से लेकर अब तक उसके सभी वर्ष भारी अस्थिरता में निकले थे जिसके कारण उसकी शिक्षा-दीक्षा का सही प्रबंध नहीं हो पाया था। +","jab tak akabar education varsh ka huaa janm se lekar ab tak uske sabhi varsh bhari instability men nikle the jiske karan uski shiksha-diksha ka sahi arrangement nahin ho paya tha. +",6,2 +"The main objectives of the Board are to: - +","बोर्ड के मुख्य उद्देश्य हैं: +","board ke main objectives hain: +",8,0 +"Let all those who care and long for freedom and the independence of India meet this test with strength and confidence, and march together to the free India of our dreams. 1 do not think that the Hindu Mahasabha can get any seat except in Bengal. +","जो लोग भारत की आजादी के लिए चिन्ता करते हैं और उसके इच्छुक हैं, वे सब शान्ति और विश्वास के साथ इस कसौटी का सामना करें और हमारे सपनों के स्वतंत्र भारत की दिशा में कंधे से कंधा मिलाकर आगे बढें। +","jo log bharat ki aajadi ke lie chinta karte hain aur uske ichchhuk hain, ve sab shanti aur vishvas ke sath is meet this test karen aur hamare sapnon ke svtntr bharat ki disha men kndhe se kndha milakar aage badhen. +",8,4 +"If you choose to create a new empty project, all changes will be lost. +","यदि आप नई परियोजना बनाने के लिए चुनते हैं, सभी परिवर्तन नष्ट हो जाएंगे. +","yadi aap nee project create ke lie choose hain, sabhi parivartan lost ho jaenge +",7,1 +"And do not approach the orphan 's property except in a way that is best until he reaches maturity. And give full measure and weight in justice. We do not charge any soul except [with that within] its capacity. And when you testify, be just, even if [it concerns] a near relative. And the covenant of Allah fulfill. This has He instructed you that you may remember. +","""और अनाथ के धन को हाथ न लगाओ, किन्तु ऐसे तरीक़े से जो उत्तम हो, यहाँ तक कि वह अपनी युवावस्था को पहुँच जाए। और इनसाफ़ के साथ पूरा-पूरा नापो और तौलो। हम किसी व्यक्ति पर उसी काम की ज़िम्मेदारी का बोझ डालते हैं जो उसकी सामर्थ्य में हो। और जब बात कहो, तो न्याय की कहो, चाहे मामला अपने नातेदार ही का क्यों न हो, और अल्लाह की प्रतिज्ञा को पूरा करो। ये बातें हैं, जिनकी उसने तुम्हें ताकीद की है। आशा है तुम ध्यान रखोगे +","aur orphan ke property ko hath n maturity , kintu aese tarie se jo uttam ho , yahan tak ki vah apni full ko pahunch jae. aur measure ke sath poora-poora weight aur taulo. ham kisi soul par usi kam ki zimmedari ka bojh dalte hain jo uski capacity men ho. aur jab bat kaho , to justice ki kaho , chahe mamla apne relative hi ka fulfill n ho , aur allah ki covenant ko poora karo. ye baten hain , jinki usne tumhen takid ki hai. aasha hai tum dhyan rakhoge +",7,0 +"A material which is gluey, transparent and colloidal present in the cell. +","कोशिका में स्थित एक पदार्थ जो लसीला, पारदर्शी तथा कलॉइडल होता है। +","cell men sthit ek padarth jo lasila, paradarshi tatha kalidal hota hai. +",7,3 +"%s You have made no changes, update the editor? +","%s आपने कोई परिवर्तन नहीं किया है, संपादक अद्यतन करें? +","s made koee parivartan nahin kiya hai, editor update karen +",7,1 +"Sustainable Development of Sugarcane - Based Cropping System (SUBACS), and +","गन्ना फसल के सतत विकास के लिए, फसल आधारित प्रणाली +","sugarcane cropping ke sustainable development ke lie , cropping aadharit system +",7,2 +"That 's why he stole the salver. +","चांदी की थाली की चोरी इसी कारण की है। +","chandi ki salver ki chori isi karan ki hai. +",9,0 +"Scientists analyse genes by taking a sample of DNA from an organism and sequencing it . +","वैज्ञानिक , जीव से डीएनए का नमूना लेकर तथा इसे क्रमबद्ध करके जीन का विश्लेषण करते हैं . +","vaijnjanik , jiv se taking a sample lekar tatha ise genes by taking ka vishleshan karte hain +",4,1 +"Having nothing worthwhile to do, he organized a society of like - minded persons to divert his mind. +","कुछ खास काम न हाने के कारण उन्होंने अपना ध्यान दूसरी ओर लगााने की दृष्टि से अपने जैसे विचार वाले लोगों की एक सोसायटी बना ली। +","kuchh khas kam n hane ke karan divert his mind doosri or lagaane ki drishti se apne jaise vichar vale logon ki ek sosayti bana li. +",6,2 +"The soup was found out to have very high nutritive value. +","सूप मे बहुत अधिक पोषक मूल्य पाए जाते है। +","soup me bahut high nutritive mooly pae jate hai. +",9,0 +"In this novel, Kunti, a girl from a lower middle class family, is much more courageous than Nisha, born with a silver spoon in her mouth. +","इस उपन्यास में भी निम्न मध्यवर्गीय कुन्ती, सम्पन्न घर कि निसा से अधिक साहसी प्रमाणित होती है। +","is upanyas middle class family middle class, sampann ghar ki nisa se adhik sahsi prmanit hoti hai. +",7,1 +"The default browser is currently %{BROWSERNAME}. +","वर्तमान में डिफ़ॉल्ट ब्राउज़र %{BROWSERNAME} है. +","vartman men default browser BROWSERNAME hai +",9,0 +"The third pavilion from south is Khas Mahal. +","दक्षिण से तीसरा मण्डप है खास महल। +","south se third pavilion hai khas mahal. +",9,1 +"Import search engines from default browser on first run +","पहली बार चलाने पर डिफ़ॉल्ट ब्राउज़र से खोज इंजन आयात करें +","pahli bar chalane par default browser se import search engines karen +",8,0 +"The Non - aligned have always been allies of peace. +","गुटनिरपेक्ष देश हमेशा से शांति के मित्र रहे है। +","aligned desh hamesha se allies of peace rahe hai. +",7,0 +"This is not even 2 feet. +","यह 2 फीट भी नही है. +","yah 2 feet bhi nahi hai +",10,0 +"It is indeed a happy occasion for me this evening to participate in the inauguration of the International Conference on Natural Fibres, which has been organized to mark the conclusion of the Platinum Jubilee Celebrations of the National Institute of Research on Jute and Allied Fibre Technology (NIR-JAFT). +","अंतरराष्ट्रीय प्राकृतिक रेशा सम्मेलन, जिसे राष्ट्रीय जूट और संबंधित रेशा प्रौद्योगिकी अनुसंधान के प्लेटिनम जुबली समारोह के स्थापना के अवसर पर आयोजित किया गया है, के उद्घाटन में आज की शाम भाग लेना मेरे लिए वास्तव में खुशी का मौका है। +","antarrashtriy conference on natural, jise rashtriy joot aur allied fibre technology anusndhan ke platinum jubilee celebrations ke sthapna ke avasar par aayojit kiya gaya hai, ke udghatan men aaj ki sham bhag lena mere lie vastav men khushi ka international conference +",8,0 +"Children between the ages of 3 and 7 have the best prognosis. +","3 से 7 वर्ष की उम्र के बच्चों में रोग का निदान सबसे अच्छे तरीके से हो सकता है. +","3 se prognosis children ki ages ke bachchon men rog ka nidan sabse best tarike se ho sakta hai +",5,3 +"We are fortunate in having an adequate number of experts. +","सौभाग्य से हमारे पास इस प्रकार से विशेषज्ञ पर्याप्त संख्या में हैं। +","saubhagy se hamare pas is number of experts adequate number men hain. +",7,1 +"Discard the current modified project? +","मौजूदा परिवर्तित परियोजना को छोड़ें? +","current parivartit project ko chhoren +",8,1 +"President of India Shri Pranab Mukherjee will undertake a day visit to Punjab (Ludhiana) tomorrow (27 November, 2012). +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (27 नवम्बर, 2012) पंजाब (लुधियाना) की एक दिवसीय यात्रा करेंगे। +","india ke president shri pranab mukharji tomorrow 27 navambar , 2012 pnjab ludhiana ki ek divsiy yatra karenge. +",8,1 +"Budget allocation under Plan Scheme for 2015 - 16 - Rs. 16. 11 Crores. +","वर्ष 2015-16 के लिए प्लान स्कीम के अंतर्गत बजट आवंटन 16.11 करोड़ रू. है। +","varsh 2015-16 ke lie plan scheme ke allocation under plan 1611 crores roo plan +",6,1 +"we need to look at learning +","हम सीखने पर ध्यान देने की जरूरत हैं +","ham sikhne par dhyan dene ki jaroorat hain +",9,2 +"Now Sind is completely merged in West Pakistan and the very word 'Sind' seems to have disappeared. +","अब सिंध पूर्ण रूप से पश्चिमी पाकिस्तान में विलय हो गया है तथा सिंध शब्द ही मानो लुप्त प्रायः हो गया है। +","ab sind poorn roop se west pakistan men vilay ho gaya hai tatha sind word hi mano lupt praya ho gaya hai. +",9,1 +"One whose either parent is alive must not take food facing north, sitting on the door, nor drink water like a cow, nor eat meat of the tortoise, egg, home - made cakes, plantain on the day of the journey to a distant place, nor see a kite flying overhead, a woodcutter with his load, a beggar woman with a bowl, a tortoise carried by a fisherman, an oilman hawking oil, etc. +","जिसके माता-पिता जीवित हैं उसे उत्तर की और मुंह करके दरवाजे पर बैठ कर भोजन नहीं करना चाहिए, गाय की तरह पानी नहीं पीना चाहिए, कछुए का मांस नहीं खाना चाहिए, अंडे, घर में बने केक, सुदुर यात्रा के समय केले नहीं खने चाहिए, सिर पर उड़ती चील नहीं देखनी चाहिए, लकड़हारे को बोझ उठाए हुए, भिक्षापात्र लिए भिखारिन को, कछुआ लिए पछुआरे को, तेल लिए हुए तेली इत्यदि को नहीं देखना चाहिए। +","jiske mata-pita alive hain use north ki aur munh egg door par baith kar food nahin karna home , cow ki tarah water nahin pina home , kachhue ka mans nahin khana home , ande , ghar men bane cakes , sudur journey ke samay plantain nahin khane home , sir par urti kite nahin dekhni home , woodcutter ko load uthae hue , bowl lie beggar ko , tortoise lie pachhuaare ko , oil lie hue oilman itydi ko nahin dekhna parent +",7,4 +"Awareness among farmers on practices and techniques of SRI should be generated, as it involves change of practices, compared to conventional method. +","किसानों के बीच श्री की रीतियों एवं तकनीकों के बारे में जागरूकता पैदा की जानी चाहिए, क्योंकि उसमें परम्परागत विधि की तुलना में पद्धतियों में बदलाव हो जाता है, +","farmers ke bich sri ki practices evn techniques ke bare men awareness paida ki jani chahie , kyonki usmen conventional method ki tulna men paddhtiyon men change ho jata hai , +",9,1 +"But there's another way, and I leave you with this. +","पर एक और तरीका है, और मैं आपको बता कर जा रही हूँ। +","par ek aur way hai , aur i aapko bata kar ja rahi hoon. +",7,0 +"Her body stiffened as the spur thrust, and slackened again. +","भूख के पंजों की चुम्बन महसूस होते ही उसकी देह ऐंठ जाती और फिर दुबारा ढीली पड़ जाती। +","bhookh ke pnjon ki chumban mahsoos hote hi uski deh aenth jati aur phir dubara dhili par jati. +",9,2 +"Could not save attachment:% s +","% s नहीं बचाया जा सकाः% s +","s nahin save ja sakaa s +",8,1 +"Look for ABTA -LRB- Association of British Travel Agents -RRB- or AITO -LRB- Association of Independent Tour Operators -RRB- on brochures or invoices . +","सैर सपाटे की पुस्तकाओं या इंवाईसेज़ में आभ्ठा ( आस्सोचिअटिओन् ओङ् भ्रिटिस्ह् ठ्रवेल् आगेन्ट्स् ) या आईठौ ( आस्सोचिअटिओन् ओङ् ईन्डेपेन्डेन्ट् ठोउर् औपेरटोर्स् ) की तालाश कीजिए . +","travel look ki brochures ya invoices men abta association ong british agents aagents ya aaeethau association ong independent thour aupertors ki talash kijie +",7,0 +"Then say to him a gentle saying; haply he may be admonished or he may fear. +","उससे नर्म बात करना, कदाचित वह ध्यान दे या डरे। "" +","usse gentle saying karna , kadachit vah dhyan de ya dare. +",8,1 +"My special congratulations to Shri Shashi Kapoor who has been honoured with the Dadasaheb Phalke Award this year. +","श्री शशि कपूर को मेरी विशेष बधाई जिन्हें इस वर्ष दादा साहेब फाल्के पुरस्कार प्रदान किया गया है। +","shri shashi kapoor ko meri special congratulations jinhen is year dada saheb dadasaheb puraskar prdan kiya gaya hai. +",9,1 +"We can 't let him down. +","हम उन्हें नीचा नहीं दिखा सकते। +","ham unhen nicha nahin dikha sakte. +",10,0 +"Leaving them like chewed - up leaves. +","अन्ततः उन्हें ऐसा कर दिया, जैसे खाने का भूसा हो +","antta unhen aesa kar diya , jaise khane ka leaves ho +",4,4 +"Should the reward of goodness be aught else but goodness? - - +","अच्छाई का बदला अच्छाई के सिवा और क्या हो सकता है? +","reward of goodness goodness ke siva aur kya ho sakta hai +",8,1 +"It tells us how the data within the file is organized. A programme using the data must be able to recognize and access the data within the file. +","यह बताता है कि फाइल के अन्दर आकडा कैसे संगठित है। आकडा इस्तेमाल करने वाले किसी प्रग्राम को फाइल के अन्दर आकडा पहचानने तथा ऐक्सेस करने में सक्षम होना चाहिए। +","yah batata hai ki phail ke andar aakda kaise sngthit hai. aakda istemal karne vale kisi pragram ko phail ke andar aakda recognize and access karne men saksham hona chahie. +",5,2 +"Something like this is happening to Farooq Abdullah. +","कुछ ऐसी ही बात फारूक अदुल्ल के साथ हो रही है. +","kuchh something hi bat abdullah adull ke sath ho rahi hai +",6,1 +"May be, they laughed at something in the concert. +","संगीत के किसी बात पर हँस रही हों। +","concert ke kisi bat par laughed rahi hon. +",8,1 +"[This is] a promise of Allah: Allah does not break His promise, but most people do not know. +","(ये) ख़ुदा का वायदा है) ख़ुदा अपने वायदे के ख़िलाफ नहीं किया करता मगर अकसर लोग नहीं जानते हैं +","ye uda ka vayda hai uda apne break his promise nahin kiya karta magar akasar log nahin jante hain +",7,0 +"Long term loan for agricultural appliances is admissible. +","कृषि उपकरण के लिए दीर्घकालीन ऋण उपलब्ध हैं। +","krishi upakaran ke lie long term loan hain. +",9,0 +"which is the flower story. +","जो एक फूल की भी कहानी है. +","jo ek flower ki bhi story hai +",9,1 +"Your Lord knows very well what is in your hearts. If you are good, He is forgiving to those who are penitent. +","जो कुछ तुम्हारे जी में है उसे तुम्हारा रब भली-भाँति जानता है। यदि तुम सुयोग्य और अच्छे हुए तो निश्चय ही वह भी ऐसे रुजू करनेवालों के लिए बड़ा क्षमाशील है +","jo kuchh tumhare ji men hai use tumhara rab bhali-bhanti janta hai. yadi tum suyogy aur achchhe hue to nishchay hi vah bhi aese rujoo karnevalon ke lie bara kshmashil hai +",7,3 +"He tried both allopathic and homeopathic medicines. +","उन्होंने एलोपैथी तथा होमियोपैथी दोनों प्रकार के इलाज करवाए। +","unhonne elopaithi tatha homiyopaithi donon prkar ke ilaj karvae. +",6,1 +"even if you weren 't given any choices. +","यहां तक कि अगर तुम किसी भी विकल्प को देखते हुए नहीं थे। +","yahan tak ki agar tum kisi bhi choices ko dekhte hue nahin the. +",7,3 +"But the fact is half the colliery is reeling under his debt. +","सच पूछो तो आधी कोलियरी उसकी कर्जदार है। +","sach poochho to aadhi koliyri uski karjdar half +",3,5 +"Don 't bunt. Aim out of the ball park. Aim for the company of immortals. +","गेंद को दो रन के लिए सरकाइए मत। उसे मैदान से बाहर पहुँचाने के लिए निशाना साधिए। अमर व्यक्तियों के साथ का लक्ष्य बनाइए। +","gend ko do ran ke lie sarkaie mat. use maidan se bahar pahunchane ke lie ball park amar vyaktiyon ke sath ka lakshy banaie. +",4,6 +"Imagine all that comes with it. +","और पूलिस के साथ क्या क्या आ जाता है। +","aur poolis ke sath kya kya aa jata hai. +",9,2 +"In two phases banyan and in the other two phases hare (rabbit)is seen. +","इसके दो अंशो मे पिप्पल और दो अंशो मे महान शश(खरगोश) दिखायी देता है। +","iske do ansho me pippal aur do ansho me mahan phases rabbit dikhayi deta hai. +",9,0 +"They repeated their demand that the nuclear missiles on the earth must be defused and destroyed. +","उन्होने अपनी मांग को दोहराया कि पृथ्वी के नाभिकीय प्रक्षेपणास्त्रों को बेकार और नष्ट कर दिया जाए। +","unhone apni repeated their demand ki prithvi ke nabhikiy prakshepnastron ko bekar aur nasht kar diya jae. +",7,1 +"that is why sapta sindhu language (relion language of parsi) has got converted to hafta hindu. +","इसलिये सप्त सिन्धु अवेस्तन भाषा (पारसियों की धर्मभाषा) मे जाकर हफ्त हिन्दु मे परिवर्तित हो गया (अवेस्ता: वेन्दीदाद फ़र्गर्द 1.18)। +","isliye sapta sindhu avestan bhasha parsiyon ki dharmbhasha me jakar hapht hindu me parivartit ho gaya avesta: vendidad fargard 118. +",9,1 +"He said, “Stop it – peace be upon you; I shall seek forgiveness for you from my Lord; indeed He is very kind to me. ” +","इबराहीम ने कहा (अच्छा तो) मेरा सलाम लीजिए (मगर इस पर भी) मैं अपने परवरदिगार से आपकी बख्शिश की दुआ करूँगा +","ibrahim ne kaha achchha to mera salam lijie magar is par bhi main apne paravardigar se seek forgiveness ki duaa karoonga +",9,0 +"The President of India, Shri Pranab Mukherjee has called for changing negative perceptions about women. +","भारत के राष्ट्रपति, श्री प्रणब मुखर्जी ने महिलाओं के बारे में नकारात्मक धारणाओं को बदलने का आग्रह किया। +","president of india, shri pranab mukherjee ne mahilaon ke bare men nakaratmak dharnaon ko badalne ka aagrah kiya. +",9,1 +"In Open office 2. 0 (or higher) for adding on Hindi spelling check +","ओपनऑफ़िस 2.0 (या अधिक) में हिन्दी वर्तनी जाँचक शामिल करने के लिए +","open 20 ya higher men hindi vartni janchak shamil karne ke lie +",5,1 +"""Peace and salutation to Noah among the nations!"" +","कि ""सलाम है नूह पर सम्पूर्ण संसारवालों में!"" +","ki peace hai nooh par sampoorn nations men ! +",6,5 +"Mr Sasidharan with dignitaries in his Paddy field +","गणमान्य व्यक्तियों के साथ श्री शशिधरन उनके धान के खेत में +","dignitaries vyaktiyon ke sath shri shashidharan unke dhan ke paddy field +",6,1 +"Northeastern India The area covering the Indian States of Assam, Arunachal Pradesh, Meghalaya, Manipur and Tripura, and neighbouring areas of Bangladesh and Burma are one of the most earthquake - prone regions of the world. +","यह क्षेत्र, भारतीयक राज्यों यथा असम, अरूणाचल प्रदेश, मेघालय, मणिपुर, तथा त्रिपुरा एवं निकटवर्ती बांग्लादेश तथा वर्मा को आच्छादित करता है, जो विश्व का सर्वाधिक भूकंप प्रभावित क्षेत्र है। +","yah area , bhartiyak northeastern yatha assam , arunachal prdesh , meghalay , manipur , indian tripura evn nikatavarti bangladesh indian burma ko aachchhadit karta hai , jo vishv ka sarvadhik earthquake prbhavit area hai. +",7,1 +"Amount outstanding under priority sector lending by public sector banks during the period June 1969 to September 2000 increased from Rs 441 crore to Rs 1, 34, 107 crore and accounted for 43. 41 per cent of their net bank credit as on September 2000. +","इस बीच प्राथमिकता प्राप्त क्षेत्र को दी गई बकाया ऋण राशि जून 1969 से सितंबर 2000 के बीच 441 करोड से बढ कर 1,34,107 करोड़ रुपये हो गई, जो सरकारी क्षेत्र के बैंकों के शुद्घ बैंक ऋण का 43.41 प्रतिशत थी। +","is bich priority sector kshetr ko di gee bakaya rin rashi joon 1969 se sitnbar 2000 ke bich 441 karod se badh kar 1,34,107 karor rupye ho gee, jo sarkari kshetr ke bainkon ke shudgh baink rin ka 4341 prtishat thi. +",4,6 +"The naqara, twenty pairs, more or less. 3. +","2 नक्कारा जिसकी कोई बीस जोड़ियां हैं। +","2 naqara jiski koee twenty pairs hain. +",8,1 +"A meeting was convened to finalize the date of launch of the new channel. +","नए चैनल के विमोचन की तारीख तय करने के लिए सभा बुलाई गई। +","ne channel ke vimochan ki date tay karne ke lie meeting was convened +",8,2 +"So we should do everything we can, +","तो हमें वो सब करना चाहिए, जो हम कर सकते है +","to hamen vo everything karna chahie , jo ham kar sakte hai +",4,5 +"XML parsing error: '%s' at line %d +","एक्सएम एल पदभंजन त्रुटि: '%s' %d पंक्ति पर +","xml s padbhnjan error : d d line par +",4,0 +"Writing the lead - out may take some time. +","लीड-आउट लिखने में कुछ समय लग सकता है. +","writing the lead kuchh samay lag sakta hai +",5,1 +"The first level, the weakest level of civil response against violence, +","सबसे पहला हिंसा के खिलाफ प्रतिक्रिया का सबसे कमजोर रूप, +","sabse first violence ke khilaph response ka sabse weakest level , +",8,1 +"As I knew about it I instantly asked with great curiosity, I had an Indian friend. +","जैसे ही मुझकों इसका पता चला, मैंने तुरंत ही बड़ी जिज्ञासा के साथ उनसे पूछा, मेरे एक हिंदुस्तानी मित्र थे। +","jaise hi mujhkon iska pata chala, mainne turnt hi great curiosity ke sath unse poochha, mere ek hindustani mitr the. +",9,2 +"She was, in the words of Stocqueler, 'for talents and personal attractions without a rival even in England. +","स्टॉक्वेलर के शब्दों में वह प्रतिभा और व्यक्तिगत आकर्षण में इंगलैंड भर में अपना सानी नहीं रखती थी। +","stocqueler ke words men vah talents aur personal attractions men england rival men apna sani nahin rakhti thi. +",6,0 +"It was during the time of the dictatorship of Herod that Jesus was born, when the condition of the rule was dismal. +","ईसु के जन्म के समय निरकुंश राजा हैरोद का शासन था जिसमे प्रजा की स्थिति शोचनीय थी। +","eesu ke janm ke samay nirkunsh raja hairod ka shasan tha jisme prja ki sthiti shochniy thi. +",6,3 +"If you are not happy with the decision, you can take court action, using the conciliator 's findings if you wish. +","अगर आप उसके निर्णय से संतुष्ट नहीं है, तो चाहें तो कंसिलिएटर को पूछ-ताछ के नतीजों को लेकर आप कानूनी कार्यवाही शुरू कर सकते हैं। +","agar aap uske decision se happy nahin hai , to action to conciliator ko poochh-tachh ke natijon ko lekar aap kanooni karyvahi shuroo kar sakte hain. +",6,1 +"lesbians enjoy tribadism because they can involve their whole bodies. +","समलैंगिक परस्पर स्त्री मैथुन का आनंद लेते हैं ताकि वे अपने पूरे शरीर को मिला सकें। +","samlaingik paraspar stri maithun ka aannd lete hain taki ve apne poore sharir ko mila saken. +",7,5 +"International usages are adopted in international communication by most of the countries of the world. +","विश्व के अधिकांश देशों द्वारा अन्तर्राष्ट्रीय प्रथा/प्रचलन को आपसी पत्राचार में अपना लिया गया है। +","vishv ke adhikansh deshon dvara antarrashtriy prthaprachalan ko aapsi patrachar men apna liya gaya hai. +",9,0 +"Your password has been changed. +","आपका शब्दकूट बदला गया है. +","aapka password changed gaya hai +",6,2 +"Non - Political Terrorism - Terrorism is not aimed for the political purposes “”designed to create and maintain fear Ssacen Uchcha Sthar force for the purposes of display, but ultimately a political objective the achievement of personal or collective gain rather than“” +","गैर राजनीतिक आतंकवाद-कि आतंकवाद के उद्देश्य से नहीं है राजनीतिक प्रयोजनों पर जो सचेत डिजाइन बनाने और बनाये रखने के डर के उच्च स्तर के लिए प्रदर्शन बलपूर्वक (coercive) प्रयोजनों लेकिन अंत व्यक्तिगत हो या सामूहिक एक राजनीतिक उद्देश्य की प्राप्ति के बजाए लाभ. +","gair rajnitik political terrorism ke uddeshy se nahin hai rajnitik pryojnon par jo designed to create aur banaye rakhne ke dar ke uchch star ke lie pradarshan balpoorvak coercive pryojnon lekin ant vyaktigat ho ya samoohik ek rajnitik uddeshy ki prapti ke bajae labh +",6,0 +"As for the people of the right hand, how happy they will be! +","और दाहिने हाथ वाले (वाह) दाहिने हाथ वालों का क्या कहना है +","aur dahine hath vale vah dahine hath people ka kya kahna hai +",7,3 +"This pertains to Panchayats and inter - alia provides that: i In every village, there shall be a Panchayat which will be a constitutional body. +","इस अधिनियम के मुख्य उपबंध इस प्रकार हैं: 1. हर गांव में एक पंचायत होगी जो एक संवैधानिक निकाय होगी। +","is adhiniyam ke mukhy upbndh is prkar hain : 1 i village men ek panchayats hogi jo ek constitutional body hogi. +",7,4 +"No parent could be found in the tree for the path ""% s"" +","कोई जनक ""% s"" पथ के लिए तररू में नहीं मिल सका +","koee parent s path ke lie tree men nahin mil saka +",7,2 +"The pronouncements of the Supreme Court on the validity of certain measures for, protection of these sections of the society amply bear out the need and justification for these exceptions See Yusuf Abdul Aziz v. +","समाज के इन वर्गों के संरक्षण के लिए कतिपय कानूनों की विधिमान्यता के संबंध में उच्चतम न्यायालय की उद्घोषणाएं इन अपवादों की जरूरत तथा औचित्य को प्रचुर रूप में प्रमाणित करती हैं। +","samaj ke in vargon ke snrakshan ke lie katipay kanoonon ki vidhimanyta ke snbndh men uchchatam nyayalay ki udghoshnaen in apvadon ki jaroorat tatha auchity ko prchur roop men prmanit karti hain. +",6,5 +"There are those who disbelieve in Allah and His Messengers and seek to differentiate between Allah and His Messengers, and say: 'We believe in some and deny others, and seek to strike a way between the two.' +","बेशक जो लोग ख़ुदा और उसके रसूलों से इन्कार करते हैं और ख़ुदा और उसके रसूलों में तफ़रक़ा डालना चाहते हैं और कहते हैं कि हम बाज़ (पैग़म्बरों) पर ईमान लाए हैं और बाज़ का इन्कार करते हैं और चाहते हैं कि इस (कुफ़्र व ईमान) के दरमियान एक दूसरी राह निकलें +","beshak jo log allah aur uske messengers se deny karte hain aur allah aur uske messengers men tafaraa way seek hain aur kahte hain ki ham baz paimbron par eeman lae hain aur baz ka deny karte hain aur seek hain ki is kufr v eeman ke darmiyan ek doosri rah niklen +",6,0 +"Never keep in the vicinity of the adult birds +","वयस्क पक्षियों से निकटता न बनाएं। +","adult birds se nikatta n banaen. +",9,2 +"a lot of young people with a demographic dividend +","एक जनसांख्यिकीय लाभांश के साथ कई युवा लोग +","ek demographic dividend ke sath kee young people +",8,4 +"Gandhiji’s talisman for the country 's rulers was simple and powerful and I quote: +","देश के शासकों के लिए गांधी जी का मंत्र सरल और शक्तिशाली थाः +","country ke rulers ke lie gandhiji i ka talisman simple aur powerful quote +",8,2 +"He met hundreds of people from all religions to share in their suffering. +","उन्होंने सभी धर्मों के सैकड़ों लोगों से मिलकर उनके दुःख में अपनी भागीदारी जतायी। +","people sabhi religions ke hundreds logon se share unke suffering men apni bhagidari jatayi. +",7,1 +"Now, what stands in the way of this? +","अब इस सब के मार्ग में क्या अवरोध है ? +","ab is sab ke marg men kya avrodh hai +",5,8 +"Whatever you possess is transient and whatever is with God is everlasting. We will recompense those who exercise patience with their due reward and even more. +","तुम्हारे पास जो कुछ है वह तो समाप्त हो जाएगा, किन्तु अल्लाह के पास जो कुछ है वही बाक़ी रहनेवाला है। जिन लोगों ने धैर्य से काम लिया उन्हें तो, जो उत्तम कर्म वे करते रहे उसके बदले में, हम अवश्य उनका प्रतिदान प्रदान करेंगे +","tumhare pas jo kuchh hai vah to samapt ho jaega, kintu allah ke pas jo kuchh hai vahi bai rahnevala hai. jin logon ne dhairy se kam liya unhen to, jo uttam karm ve karte rahe uske badle men, ham avashy unka prtidan prdan karenge +",8,4 +"This momentous decision to go to England to become a barrister took place when Badruddin was fifteen years old, a year after the mutiny. +","बैरिस्टर बनने के लिए इंग़्लैड जाने का यह महत्वपूर्ण निर्णय बगावत के एक वर्ष बाद लिया गया जब बदरूद्दीन पंद्रह वर्ष के थें. +","barrister banne ke lie inlaid jane ka yah momentous decision mutiny ke ek place bad liya gaya jab badrooddin fifteen place ke then +",6,4 +"Co - operation should be encouraged inland, industry and in other departments of national activity so that free India may develop into a co - operative commonwealth. +","खेती, उद्योग तथा राष्ट्रीय प्रवृत्ति के अन्य विभागों में सहकारिता की भावना को प्रोत्साहन देना चाहिये, जिससे स्वधीन भारत सहकारी प्रजातंत्र का रूप ग्रहण कर सके। +","inland , industry tatha national activity ke other departments men operation ki bhavna ko protsahan dena chahiye , jisse svdhin india sahkari prjatntr ka roop grahan kar sake. +",7,1 +"She cut the cake into six pieces and gave one to each of the children. +","उसने केक को छः टुकड़ो में काटकर, हर बच्चे हो एक टुकड़ा दिया। +","gave cake ko chha pieces men katakar, har bachche ho ek tukara diya. +",5,5 +"Provided that the amount of income-tax calculated on the income by way of short-term capital gains referred to in section 111A shall be at the rate of fifteen per cent; +","परंतु धारा 111क में उल्लिखित अल्पकालिक पूंजी अभिलाभों के रूप में आय पर परिकलित आय-कर की रकम पंद्रह प्रतिशत की दर से होगी; +","parntu dhara 111k men ullikhit short-term capital gains ke roop men aay par income-tax calculated ki fifteen per cent ki dar se hogi +",6,8 +"1 gallon is 4 quarts. +","1 गॅलन 4 क्वॉर्ट होता है. +","1 gallon 4 quarts hota hai +",10,0 +"The financial ill health of the State Electricity Boards is due to excessive cross - subsidization, poor economic efficiency, poor maintenance of network, and poor collection of revenue. +","राज्य बिजली बोर्डो की खस्ता हालत उनकी अत्यधिक सब्सिडी, खराब आर्थिक दक्षता, नेटवर्क का असंतोषजनक रख-रखाव और राजस्व की खराब वसूली के कारण है। +","state health boards ki maintenance halat unki excessive cross , ill financial efficiency , network ka asntoshajanak rakh-rkhav aur revenue ki ill vasooli ke karan hai. +",5,5 +"When Our revelations are recited to him, he says, “Legends of the ancients. ” +","जब हमारी आयतें उसे सुनाई जाती है तो कहता है, ""ये तो पहले की कहानियाँ है।"" +","jab hamari revelations are recited jati hai to kahta hai, ye to pahle ki kahaniyan hai. +",6,3 +"Some establishments keep their books of accounts / ledgers based on loose leaf system. +","कुछ प्रतिष्ठान अपनी लेखा पुस्तकें खुले पन्नों की प्रणाली के आधार पर रखते हैं। +","kuchh prtishthan apni lekha pustken khule pannon ki prnali ke aadhar par rakhte hain. +",7,1 +"The living organism and its relationship with the environment. +","जीवित जीव और पर्यावरण के साथ उसके संबंध। +","living organism aur environment ke sath uske relationship +",8,3 +"Under the Act, weight and measures also include 'weighing or measuring instrument' which means ""any object, instrument, apparatus or device, or any combination thereof, which is, or is intended to be, used, exclusively or additionally, for the purpose of making any weighment or measurement, and includes any appliance, accessory or part associated with any such object, instrument, apparatus or device"". +","अधिनियम के अंतर्गत, भार तथा माप में ""भार करने का मापन करने वाला उपकरण"" भी शामिल है जिसका अर्थ है ""कोई भी वस्तु उपकरण, यंत्र या युक्ति या उनका कोई भी संयोजक जिसका प्रयोग से अनन्य रूप से या अतिरिक्त रूप से किया जाता है या किया जाना आशयित है तथा इसमे ऐसी किसी वस्तु, उपकरण, उपस्कर या युक्ति से संबद्ध कोई उपकरण, सहायक सामग्री या पुर्जा शामिल है।"" +","adhiniyam ke antargat, weight and measures men bhar karne ka mapan karne vala upakaran bhi shamil hai jiska arth hai koee bhi vastu upakaran, apparatus or device ya unka koee bhi snyojak jiska pryog se anany roop se ya atirikt roop se kiya jata hai ya kiya jana aashyit hai tatha isme aesi kisi vastu, upakaran, upaskar ya yukti se snbaddh koee upakaran, sahayak samagri ya purja shamil hai. +",4,6 +"So your left side of the equation is 3 times +","तो आपके समीकरण की उल्टी और 3 गुना है. +","to aapke equation ki left aur 3 times hai +",6,5 +"Never show the dialog again for all links of this type. +","इस प्रकार के सभी लिंक के लिए संवाद पुनः कभी न दिखाएं. +","is type ke sabhi links ke lie dialog puna kabhi n show +",6,5 +"The optical photo conductor is no longer functioning +","ऑप्टिकल फोटो कंडक्टर कामकाज नहीं रहा है +","optical photo conductor kamkaj nahin raha hai +",8,3 +"There is also an international dimension to the problem that has not been addressed except for our having shouted from the rooftops that Pakistan is responsible for cross - border terrorism. +","समस्या का अंतरराष्ट्रीय पहलू भी है जिस पर कभी गौर नहीं किया गया, सिर्फ यही कहा जाता रहा कि सीमा पार से आतंकवाद को बढवा देने के लिए पाकिस्तान दोषी है. +","problem ka international dimension bhi hai jis par kabhi responsible nahin kiya gaya , sirph yahi kaha jata raha ki border cross se terrorism ko badhva dene ke lie pakistan doshi hai +",8,2 +"Family Planning Association of India and Branch offices. +","भारतीय परिवार नियोजन संघ और शाखा कार्यालय। +","india family niyojan association aur branch karyalay. +",7,1 +"A helicopter has also been provided to Ministry of Home Affairs in the North - East for VIP transportation. +","अतिविशिष्ट व्यक्तियों (वी. आई. पी.) के इस्तेमाल के लिए गृह मंत्रालय को पूर्वोत्तर क्षेत्र हेतु हेलीकॉप्टर उपलब्ध कराया गया है। +","ativishisht vyaktiyon transportation north pi ke affairs ke lie home ministry ko east kshetr hetu helicopter upalabdh karaya gaya hai. +",8,1 +"that the world, because of people like Tony Blair and Bono +","कि ये संसार, टोनी ब्लेयर और बोनो और +","ki ye world, toni blair aur people aur +",8,0 +"The future development of the mini steel industry will depend on the availability of sponge iron. +","लघु इस्पात उद्योग का भावी विकास स्पंज आयन की उपलब्धता पर निर्भर करेगा. +","mini steel industry ka future development sponge aayan ki availability par nirbhar karega +",7,6 +"Unable to read file: '% 1' +","फ़ाइलः '% 1' को पढ़ने में अक्षम. +","file 1 ko pane men unable +",7,1 +"Enquiries were constituted with a view to toning up the administration . +","प्रशासन में सुधार लाने की दृष्टि से जांच कमेटियां बिठायी गयीं . +","prshasan men sudhar lane ki drishti se janch kametiyan bithayi gayin +",4,7 +"and preached to them in public, and also addressed them in secret. +","""फिर मैंने उनसे खुले तौर पर भी बातें की और उनसे चुपके-चुपके भी बातें की +","phir mainne unse public taur par bhi secret ki aur unse chupke-chupke bhi secret ki +",5,5 +"Rishi Srink is a love story of a Risi (Saint) +","ॠष्य ॠंग एक ॠषि की प्रेमकथा। +","ॠshy ॠng ek saint ki love +",7,0 +"It was published as a posthumous work after his death by his son Narayan Chandra Vidyaratna in 1892. +","यह निबन्ध उनकी मृत्युपरान्त उनके पुत्र नारायणचन्द्र विद्यारत्न ने 1892 में प्रकाशित कराया। +","yah nibandh unki mrityuprant unke putr narayanachandr vidyaratn ne 1892 men prkashit karaya. +",10,0 +"Since, most of the producer organizations are at nascent stage, their focus is mainly on production and to some extent the aggregation. +","चूंकि अधिकतर उत्पावदक संगठन शुरूआती अवस्थाथ में हैं, अतः उनका मुख्य फोकस उत्पादन और कुछ हद तक संग्रहण पर है. +","choonki producer organizations sngathan shurooaati avasthath men hain, ata unka mukhy phokas utpadan aur kuchh had tak sngrahan par hai +",6,5 +"Ibne Sina (980 - 237) associated with the medical science to be ahead of many who wrote the book became the basis of modern medical science +","इबने सीना (९८०-१०३७) ने चिकित्सा विज्ञान से संबंधित कई पुस्तकें लिखीं जो कि आगे जा कर आधुनिक चिकित्सा विज्ञान का आधार बनीं। +","ibne many ९८०-१०३७ ne medical science se snbndhit kee pustken likhin jo ki aage ja kar modern medical science ka basis banin. +",8,4 +"So 8 is 2 times 2 times 2. +","तो 8 होता है 2 गुना 2 गुना 2 +","to 8 hota hai 2 times 2 times 2 +",10,0 +"A venture capital fund set up as a company shall be wound up in accordance with the provisions of the Companies Act, 1956 (1 of 1956). +","एक कंपनी के रूप में स्थापपित उद्यम पूंजी निधि को कंपनी अधिनियम 1956 (1956 का 1) के प्रावधानों के अनुसार समाप्त कर दिया जाएगा। +","ek knpni ke roop fund set venture capital fund ko companies act 1956 1956 ka 1 ke pravdhanon ke anusar samapt kar diya jaega. +",7,1 +"Backup Evolution data and settings to an archive file +","एवोल्यूशन डाटा व सेटिंग का बैकअप लें व फिर भंडारित करें +","evolyooshan data and settings ka archive file v phir bhndarit karen +",7,1 +"American Lung Association of New England on quality of air +","वायु की गुणवत्ता पर न्यू इंगलैंड का अमेरिकन लंग एसोसिएशन +","quality of air par nyoo inglaind ka amerikan lng association +",7,1 +"The pots have to be exposed to sunlight as the spirulina takes 3 to 4 days to mature. +","चूंकि स्पाइरुलिना को बढ़ने में 3-4 दिन लग जाते हैं इसलिए पॉट पर सूर्य की रोशनी अवश्य पड़नी चाहिए। +","choonki spirulina ko bane men 3-4 days lag jate hain islie pots par soory ki roshni avashy parni chahie. +",8,1 +"Neutrophilic leukocytes with respect to phagocytes, release histolytic enzymes. +","भक्षक कोशिकाओं के संबंध में न्यूट्रोफिलिक श्वेताणु ऊतकीय एंजाइमों को मुक्त करते हैं +","phagocytes koshikaon ke respect men nyootrophilik shvetanu ootkiy enzymes ko release karte hain +",8,1 +"He told me to go to his room. +","उसने मुझे उसके कमरे में जाने को कहा। +","usne mujhe uske room men jane ko kaha. +",9,1 +"My daughter provided me with a well - written chronicle of events in the first year of her elementary school. +","मुझे मेरी बेटी ने उसके प्राथमिक विद्यालय के पहले वर्ष की घटनाओं का अच्छी तरह से लिखा हुआ वृत्तान्त दिया है। +","mujhe daughter provided ne uske elementary school ke pahle varsh ki ghatnaon ka achchhi tarah se likha huaa vrittant diya written +",6,2 +"All perception of unity, similarity, difference, kind, uniqueness arrived at by the supramental reason is consonant with and depends on this order. +","अतिमानसिक बुद्धि एकता, सदृशता, विषमता, जाति और विशिष्टता का जो भी ज्ञान प्राप्त करती है वह सब इस विधान के साथ समस्वर होता है तथा इस पर निर्भर करता है। +","supramental reason ekta, sadrishta, vishamta, jati aur vishishtta ka jo bhi jnjan prapt karti hai vah sab is vidhan ke sath samasvar hota hai tatha is par nirbhar karta hai. +",7,5 +"The other two members will have knowledge and experience of special educational needs . +","बाकी के दो सदस्यों के पास या तो विशेष शैक्षिक आवश्यकताओं या स्थानीय सरकार या दोनों ही के बारे में ञान तथा अनुभव होगा . +","other ke do members ke pas ya to special educational needs ya knowledge sarkar ya donon hi ke bare men njan tatha experience hoga +",6,6 +"Well an idea is that that strategy, that learning strategy, +","एक आयडिया ये है कि युक्ति लगाना, और इसे सीखना +","ek aaydiya ye hai ki strategy lagana, aur ise learning +",8,2 +"These are not available if you rent . +","ये ऋण किराए पर रहने वालों को नहीं मिलते . +","ye rin rent par rahne valon ko nahin milte +",10,0 +"and he had recited it to them, they would not have believed in it. +","और वह उन अरबो के सामने उसको पढ़ता तो भी ये लोग उस पर ईमान लाने वाले न थे +","aur vah un recited ke samne usko pata to bhi ye log us par eeman lane vale n the +",3,4 +"The sheet which contains the details of allotment. +","आबंटन संबंधी विवरणों को दर्ज करने वाली शीट। +","allotment snbndhi vivarnon ko darj karne vali sheet +",8,2 +"I realized that I was no longer the same runner I used to be, +","मुझे एहसास हुआ कि मैं वो धावक नहीं थी जो मैं हुआ करती थी, +","mujhe ehsas huaa ki i vo same nahin thi jo i huaa karti thi , +",7,1 +"He cannot bring down its greater spiritual nature into this lower triplicity; for here the mental being is the highest expression of the Self. +","वह उसकी महत्तर आध्यात्मिक प्रकृति को नीचे उतारकर इस निम्नतर त्रिविध सत्ता में नहीं ला सकता; क्योंकि यहां तो मनोमय पुरुष ही आत्मा की सर्वोच्च अभिव्यक्ति है। +","vah uski greater spiritual nature ko niche utarakar is nimnatar trividh satta men nahin la sakta kyonki yahan to manomay purush hi aatma ki sarvochch abhivyakti hai. +",7,4 +"I am angry with Megan because she did not invite me to her party. +","मैं मेगन से क्रुद्ध हूं क्योंकि उसने अपने पार्टी में मुझे आमंत्रित नहीं किया था। +","main megan se kruddh hoon kyonki usne apne parti men mujhe aamntrit nahin kiya tha. +",9,1 +"and likewise to cherish my mother; He has not made me arrogant, unprosperous. +","और अपनी माँ का हक़ अदा करनेवाला बनाया। और उसने मुझे सरकश और बेनसीब नहीं बनाया +","aur apni cherish my mother ada karnevala banaya. aur made me arrogant aur bensib nahin banaya +",6,2 +"115WF. If any person, being an employer— +","115बच.यदि कोर्इ व्यक्ति, जो नियोजक है– +","115bachydi kori person, jo employer hai +",7,1 +"There is only one way of acquiring this knowledge contemplation of the beauty and majesty of Man and Nature and reading the Book of Self. +","उस विद्या-प्राप्ति का केवल एक मार्ग है-प्रकृति और मानव की सुन्दरता और महिमा का चिंतन और आत्म-ग्रन्थ प्रकृति और मानव की सुन्दरता और महद् महिमा का चिंतन और आत्म-ग्रन्थ का पठन। +","us vidya-prapti ka keval ek way hai-prkriti aur man ki beauty aur book ka contemplation aur aatm-granth nature aur man ki beauty aur mahad book ka contemplation aur aatm-granth ka pathan. +",6,3 +"I hurried so as not to miss the train. +","मैंने जल्दी करी जिससे कि ट्रेन न छूट जाए। +","i jaldi kari jisse ki train n chhoot jae. +",8,1 +"Welcome to Evolution. The next few screens will allow Evolution to connect to your email accounts, and to import files from other applications. +","एवोल्यूशन में स्वागत है. अगला कुछ स्क्रीन आपके एवोल्यूशन को आपके ईमेल खाते से जुड़ने में सक्षम बनायेगा, और अन्य अनुप्रयोगों से फ़ाइल को आयात करेगा. +","evolyooshan men svagat hai agla kuchh skrin aapke evolyooshan ko aapke eemel khate se jurne men saksham banayega, aur any anupryogon se fail ko aayat karega +",6,4 +"So let 's round each of these numbers. +","चलो इन दोनो संख्या को राउंड ऑफ करते है. +","chalo in dono numbers ko raund ऑph karte hai +",7,6 +"The worth of the security for sale or purchase. +","प्रतिभूति का मूल्य जो खरीद या बिक्री के लिए हो। +","security ka mooly jo sale or purchase ke lie worth +",7,1 +"They made the boy continue digging, but he found nothing. +","उन्होंने लड़के को और खुदाई करने के लिए मजबूर किया, मगर मिला कुछ नहीं। +","unhonne larke ko aur digging karne ke lie majboor kiya, magar found kuchh nahin. +",8,4 +"Are you sure you want to abandon this set of profile changes and exit? +","क्या आप निश्चित हैं कि आप इस सेट के प्रोफाइल के बदलावों को छोड़ना और बाहर निकलना चाहते हैं? +","kya aap set hain ki aap is set of profile ke abandon this set aur bahar nikalna chahte hain +",4,3 +"The poet keeps thinking about the country all the time. +","कवि उठते-बैठते देश चिन्तन में मग्न रहा करता। +","poet uthte-baithte country chintan men time raha karta. +",7,4 +"Then We destroyed the others. +","फिर हमने बाक़ी लोगों को तबाह व बर्बाद कर दिया +","phir hamne bai others ko tabah v barbad kar diya +",6,3 +"I hope you 're here to find out what does it take to go from an idea to a business. +","मुझे आशा है कि आप कर रहे हैं यहाँ यह क्या करता है खोजने के लिए एक विचार से एक व्यवसाय के लिए जाने के लिए ले लो। +","mujhe hope hai ki aap kar rahe hain yahan yah kya karta hai khojne ke lie ek idea se ek business ke lie jane ke lie le lo. +",4,2 +"Can a spectator 's enjoyment of a performance and the devotion of a devotee in a ritual be equated? +","क्या दर्शक के आनंद और नर्तक भक्त की भक्ति को एक कहा जा सकता है? +","kya spectator ke enjoyment aur nartak bhakt ki bhakti ko ek kaha ja sakta hai +",9,1 +"Agriculture is mainly done to meet the food requirement of the family and livestock. +","खेती मुख्य रूप से परिवार तथा पशुओं की भोजन आवश्यकताओं के लिए की जाती है। +","agriculture mukhy roop se family tatha livestock ki food requirement ke lie ki jati hai. +",10,0 +"He grow up together and remains friends life long. +","ये एक साथ ही पले और बढ़े और आजीवन मित्र रहे। +","ye ek sath hi grow aur bae aur friends life long +",6,4 +"They swear to you that you may be reconciled to them. But even if you are reconciled to them, Allah shall not be reconciled to the transgressing lot. +","वे तुम्हारे सामने क़समें खाएँगे ताकि तुम उनसे राज़ी हो जाओ, किन्तु यदि तुम उनसे राज़ी भी हो गए तो अल्लाह ऐसे लोगो से कदापि राज़ी न होगा, जो अवज्ञाकारी है +","ve tumhare samne smen khaenge taki tum unse razi ho jao, kintu yadi tum unse razi bhi ho ge to allah aese logo se kadapi razi n hoga, jo avajnjakari hai +",8,1 +"And all that which they used to earn availed them not. +","फिर जो कुछ वे कमाते रहे, वह उनके कुछ काम न आ सका +","phir jo kuchh ve earn rahe, vah unke kuchh kam n aa saka +",8,1 +"An invoice that has been approved by a seal or stamp by the consul of the importer 's country that has an office in the exporter' s country. +","ऐसा बीजक जिसका अनुमोदन आयातक देश के वाणिज्य दूतावास द्वारा जिसका कार्यालय निर्यातक देश में हों, द्वारा मुहर लगाकर कर दिया गया हो। +","aesa bijak jiska anumodan aayatak desh ke vanijy dootavas dvara jiska karyalay niryatak desh men hon, dvara muhar lagakar kar diya gaya ho. +",5,8 +"They would, you know, throw it back at you. +","वे इस खेल को आप पर वापस फेंक देंगे. +","ve is khel ko aap par throw it back +",7,2 +"In response, he turned away along with his army and said, “He is a magician or a madman. ” +","तो उसने अपने लशकर के बिरते पर मुँह मोड़ लिया और कहने लगा ये तो (अच्छा ख़ासा) जादूगर या सौदाई है +","to usne apne lashakar ke birte par munh mor liya aur kahne laga ye to achchha asa jadoogar ya saudaee hai +",8,2 +"And the earth throws up her burdens (from within), +","और धरती अपने बोझ बाहर निकाल देगी, +","aur earth apne burdens bahar nikal degi , +",9,1 +"Round them will be passed a cup of pure wine; +","उनके बीच विशुद्ध पेय का पात्र फिराया जाएगा, +","unke bich pure pey ka patr cup jaega , +",6,1 +"This will be our tribute to Mahatma Gandhi on his 150th birth anniversary to be celebrated in the year 2019. +","ऐसा करना महात्मा गांधी को उनकी 150वीं जयंती पर हमारी श्रद्धांजलि होगी जो वर्ष2019 में मनाई जाएगी।’ +","aesa karna mahatma gandhi ko unki 150vin birth par hamari tribute hogi jo varsh2019 men manaee jaegi. +",7,0 +"and Our command is but a single [word], like the twinkling of an eye. +","और हमारा आदेश (और काम) तो बस एक दम की बात होती है जैसे आँख का झपकना +","aur hamara aadesh aur single to bas ek dam ki word hoti hai jaise aankh ka twinkling +",7,2 +"Software and digital video industries have duly recognized forensic watermark. +","साफ्टवेयर तथा डीजिटल वीडियो उद्योग ने विधि वाटरमार्क की विधिवत मान्यता दी है। +","software tatha dijital video industries ne vidhi watermark ki vidhivat manyta digital hai. +",7,0 +"There is a proposal to renew the outstanding bonds by exercising option. +","विकल्प द्वारा आशोधित बांड के नवीकरण का प्रस्ताव विचाराधीन है। +","option dvara aashodhit bonds ke navikaran ka proposal vicharadhin hai. +",8,1 +"She could see a roof covered with cracked tiles , sagging with age as if a giant had pressed it down with an invisible hand . +","सामने एक छत भी दिखाई देती है , मुद्दत पुरानी , इटी - फूटी शहतीरों से ढंकी हुई - मानो किसी विशाल दैत्य ने अपने अदृश्य हाथों से उसे मसोस डाला हो । +","samne ek chhat bhi dikhaee deti hai , muddat purani , iti - phooti shahtiron se dhnki huee - mano kisi vishal daity ne apne invisible hand se use masos dala ho . +",8,1 +"Though Tilak was not a revolutionary and nor did he believe in violent methods, elaborate security arrangements were made to guard him while he was under arrest. +","हालांकि तिलक कोई क्रांतिकारी न थे और हिंसक तरीकों में विश्वास नहीं करते थे, फिर भी उन्हें गिरफ्तार कर कड़ी सुरक्षा-व्यवस्था में रखा गया। +","halanki tilak koee krantikari n the aur violent methods men vishvas nahin karte the, phir bhi unhen giraphtar kar elaborate security arrangements rakha gaya. +",7,4 +"Unable to build an audio track list. +","एक ऑडियो ट्रैक सूची की रचना करने में असमर्थ! +","ek audio track list ki rachna karne men unable ! +",9,1 +"Dhartnavaram Ramakrishnamacharyulu As mentioned earlier, except for a few, the modern theatrical plays were the result of the influence of English literature, which had then became a fashion. +","जैसे कि पहले कहा जा चुका है कि बहुत कम उदाहरणों को छोडकर आधुनिक रंगमंच के नाटकों की रचना तथा प्रदर्शन अंग्रेजी साहित्य के प्रभाव से ही आरंभ हुए हैं। +","jaise ki pahle kaha ja chuka hai ki bahut kam udaharnon ko chhodakar aadhunik rngmnch ke natkon ki rachna tatha pradarshan angreji sahity ke prbhav se hi aarnbh hue hain. +",7,3 +"This option will connect to the server using Kerberos 5 authentication. +","Kerberos 5 सत्यापन के उपयोग से यह विकल्प सर्वर से जोड़ेगा. +","Kerberos 5 option will connect se yah vikalp server se jorega +",6,3 +"To go to residences to provide some service. +","कोई सेवा प्रदान करने के लिए निजी घरों पर जाने वाला। +","koee service prdan karne ke lie niji residences par jane vala. +",8,1 +"They, (the People of the Book), have said that God has taken for Himself a son. He is too glorious to have a son. To Him belongs all that is in the heavens and the earth. All pray in obedience to Him. +","कहते है, अल्लाह औलाद रखता है-महिमावाला है वह! (पूरब और पश्चिम हीं नहीं, बल्कि) आकाशों और धरती में जो कुछ भी है, उसी का है। सभी उसके आज्ञाकारी है +","kahte hai , god son people hai-mhimavala hai vah ! glorious aur pashchim book nahin , heavens aakashon aur earth men jo kuchh bhi hai , usi ka hai. sabhi uske aajnjakari hai +",5,3 +"Time after which to automatically increase speed (secs) +","समय जिसके बाद गति को स्वतः बढ़ाना है (सेकेंड) +","time jiske bad speed ko svta baana hai sekend +",8,1 +"In an irritated voice, they said, +","एक परेशान आवाज़ में, उन्होंने कहा कि, +","ek irritated voice men , unhonne kaha ki , +",9,2 +"He instilled the core values of this organization, the three I’s i. e. industry, impartiality and integrity in the organization. +","उन्होंने इस संगठन में तीन प्रमुख मूल्यों परिश्रम, निष्पक्षता और ईमानदारी का समावेश किया। +","s is organization men i core values industry , impartiality aur integrity ka samavesh kiya. +",7,4 +"These are not available if you rent . +","ये ऋण किराए पर रहने वालों को नहीं मिलते . +","ye available kirae par rahne valon ko nahin milte +",8,2 +"If selected, you will be notified when entering an SSL enabled site +","यदि चुना गया है, जब आप एसएसएल सक्षम साइट पर प्रवेश करते हैं तो आपको सूचित किया जाएगा +","yadi chuna gaya hai , jab aap ssl saksham site par prvesh karte hain to aapko soochit kiya jaega +",6,6 +"smallest absolute value, at which the normal line can +","छोटी से छोटी निरपेक्ष मूल्य, जिस पर सामान्य लाइन कर सकते हैं +","smallest se smallest absolute mooly, jis par normal line kar sakte hain +",7,3 +"I congratulate him for winning this coveted award. I am sure he will continue to enrich Hindi literature in the years to come. +","मैं इस प्रतिष्ठित पुरस्कार को जीतने के लिए उन्हें बधाई देता हूं। मुझे विश्वास है कि वह आने वाले वर्षों में हिंदी साहित्य को समृद्ध करते रहेंगे। +","main is coveted award ko jitne ke lie unhen badhaee deta hoon. mujhe vishvas hai ki vah aane vale varshon men hindi sahity ko samriddh karte rahenge. +",8,1 +"Bridge critical gaps in local infrastructure and other development requirements that are not being adequately met through existing inflows. +","स्थानीय बुनियादी ढांचे और अन्य विकास की महत्वपूर्ण आवश्यकताओं के बीच के अंतर को पाटना, जिसे मौजूदा विकास प्रवाह में भली प्रकार से दूर नहीं किया जा रहा है। +","local buniyadi dhanche aur critical infrastructure ki mahatvpoorn requirements ke bich ke bridge ko patna , jise maujooda infrastructure inflows men bhali prkar se door nahin kiya ja raha hai. +",7,5 +"When they entered unto him, and said: Salaman (peace)! [Ibrahim (Abraham)] said: ""Indeed! We are afraid of you."" +","कि जब ये इबराहीम के पास आए तो (पहले) उन्होंने सलाम किया इबराहीम ने (जवाब सलाम के बाद) कहा हमको तो तुम से डर मालूम होता है +","ki jab ye ibrahim ke pas aae to pahle unhonne peace kiya ibrahim ne jvab peace ke bad kaha hamko to tum se dar maloom hota hai +",7,4 +"Apart from working out all the sums from prescribed textbooks, Satyen would solve similar sums from subsidiary text - books. +","सत्येन निर्धारित पाठ्य-पुस्तकों में दिये हुए सब प्रश्नों को करने के अतिरिक्त सहायक पाठ्य-पुस्तकों से भी वैसे ही प्रश्नों को हल करते थे। +","satyen prescribed textbooks men diye hue sab prashnon ko karne ke atirikt subsidiary text se bhi vaise hi prashnon ko hal karte the. +",8,2 +"we need to look at learning +","हम सीखने पर ध्यान देने की जरूरत हैं +","ham learning par dhyan dene ki jaroorat hain +",9,1 +"The Ministry has taken several steps to ensure the Scheme is implemented effectively +","मंत्रालय ने इस योजना को प्रभावी ढंग से लागू करने के लिए विभिन्न कदम उठाए हैं। +","ministry ne is yojna ko prbhavi dhng se lagoo karne ke lie vibhinn kadam uthae hain. +",8,4 +"and encourage them to do the same. +","और उन्हें उत्साहित कीजिये ये करने के लिये। +","aur unhen encourage kijiye ye karne ke liye. +",9,1 +"They think that the Confederates have not withdrawn; and if the Confederates should come (again), they would wish they were in the deserts (wandering) among the Bedouins, and seeking news about you (from a safe distance); and if they were in your midst, they would fight but little. +","(मदीने का मुहासेरा करने वाले चल भी दिए मगर) ये लोग अभी यही समझ रहे हैं कि (काफ़िरों के) लश्कर अभी नहीं गए और अगर कहीं (कुफ्फार का) लश्कर फिर आ पहुँचे तो ये लोग चाहेंगे कि काश वह जंगलों में गँवारों में जा बसते और (वहीं से बैठे बैठे) तुम्हारे हालात दरयाफ्त करते रहते और अगर उनको तुम लोगों में रहना पड़ता तो फ़क़त (पीछा छुड़ाने को) ज़रा ज़हूर (कहीं) लड़ते +","mdine ka muhasera karne vale chal bhi die magar ye log abhi yahi samajh rahe hain ki kafiron ke lashkar abhi nahin ge aur agar kahin kuphphar ka lashkar phir aa pahunche to ye log chahenge ki kash vah jnglon men gnvaron men ja baste aur vhin se baithe baithe tumhare halat daryapht karte rahte aur agar unko tum logon men rahna parta to fat pichha chhurane ko zara zahoor khin larte +",5,8 +"I decided to devote my energies towards bridging the gulf between the old leaders and the new socialist group . +","मैंने पुराने नेताओं और नये सोशलिस्ट गुट के बीच खाई खत्म करने में अपनी ताकत का इस्तेमाल करने का फैसला किया . +","i old leaders aur naye energies gut ke bich gulf khatm karne men apni takat ka istemal karne ka phaisla kiya +",7,3 +"General lien does not give the right to dispose off the articles. +","सामान्य धारणाधिकार ऋणदाता को वस्तुओं को बेचने का अधिकार प्रदान नहीं करता। +","general lien rindata ko vastuon ko bechne ka adhikar prdan nahin karta. +",9,2 +"This Conference, by focusing on water use efficiency, will help to bring this important issue to the forefront of policy discourse. +","इस सम्मलेन के जल उपयोग दक्षता पर केन्द्रित होने से, यह महत्वपूर्ण मुद्दा नीति संबंधी परिचर्चा में शामिल हो पाएगा। +","is sammlen ke jal upyog dakshta par kendrit hone se, yah important issue niti snbndhi paricharcha men shamil ho paega. +",8,2 +"If the children have had some experience in play - making before they do this project, the making of the story will go more quickly than if they have not had previous experience. +","यदि बच्चों को, इस परियोजना से पूर्व नाट्य रचना का कुछ अनुभव है, तो परियोजना की कथा को बनाने में उन्हें कम समय लगेगा। +","yadi bachchon ko, is making se poorv naty rachna ka kuchh anubhav hai, to making ki katha ko banane men unhen kam samay lagega. +",7,5 +"One of them, 'Aman da Kafla' Caravan of Peace was then on the lips of almost everybody whether a progressive or not. +","उनमें से एक कविता अमन का काफिला अमन दा काफिला उस समय लगभग हर आदमी की जबान पर थी। +","unmen se ek kavita peace ka caravan peace progressive caravan us samay lagabhag everybody lips ki jaban par thi. +",8,0 +"Primary center connects toll centers. +","प्राथमिक केंद्र, शुल्क केन्द्रों (टोल केन्द्रों) को जोड़ता है। +","primary center, toll centers tol kendron ko connects toll +",8,0 +"Let 's say when x is equal to 2. +","X barabar do sochte hai. +","X equal do sochte hai +",6,3 +"Sofree, Giannie, Gandhi and India: A century in the center (1995) ISBN 1 - 900624 - 12 - 5 +","सोफ्री & #44; गियान्नी. गाँधी और भारतः केन्द्र में एक सदी (१९९५) आईएसबीएन १-९००६२४-१२-५ +","sophri isbn giyanni gandhi aur india center men ek century १९९५ aaeeesbien १-९००६२४-१२-५ +",7,0 +"There are many particles in air which can harm the health of plans and animals (including humans) or can damage their eyesight. These are produced due to natural process and human activities. The particles not found in the air naturally or or more frequently or different than generic particles are called as pollutants. +","वायु में बहुत से तत्त्व होते हैं जो पौधों और पशुओं (मानव समेत) का स्वास्थ्य कर सकते हैं या नजर ख़राब कर सकते हैं यह प्राकृतिक प्रक्रियाओं तथा मानव गतिविधियों दोनों से उत्पन्न होते हैं. वायु में प्राकृतिक रूप से नहीं पाए जाने वाले तत्व या अधिक सांद्रता के साथ या सामान्य से अलग तत्वों को प्रदूषक कहा जाता है. +","vayu men bahut se tattv hote hain jo paudhon aur pashuon manav samet ka svasthy kar sakte hain ya najar rab kar sakte hain yah prakritik prakriyaon tatha manav gatividhiyon donon se utpann hote hain vayu men prakritik roop se nahin pae jane vale tatv ya adhik sandrta ke sath ya samany se alag tatvon ko prdooshak kaha jata hai +",7,2 +"If TRUE, the selected month cannot be changed +","अगर सत्य तो चयनित माह नही बदला जा सकता +","agar true to selected month nahi badla ja sakta +",9,1 +"These poems lack the sombre grandeur of Prantik, for the memory of the Borderland and the haunting sense of the terror and beauty that Meanwhile he was content to relax and watch and savour what simple delight of sight and sound were still left for him on earth. +","इन कविता संकलनों में? प्रांतिक? की विषादपूर्ण श्रेष्ठता नहीं थी, क्योंकि अब सीमा प्रदेश की स्मृति या संत्रास और सौंदर्य का परिवेश थम चला था और कवि एक बार फिर धरती की नर्म बांहों में था. विस्मयकारी उत्कृष्टता का विवेक बाद में लौटा जब अभिव्यक्ति फिर से विषादपूर्ण उत्प्रेरण की ऊचाइयों को छू लेने को होती. इस समय वे उनके लिए धरती पर बचे सामान्य दृश्य और श्रव्य को देखकर बड़े आराम से आश्वस्त हो रहे थे और उनका आनंद उठाते प्रसन्न थे. +","in kavita snkalnon men prantik ki vishadpoorn shreshthta nahin thi, kyonki ab sima prdesh ki smriti ya sntras aur saundary ka parivesh tham chala tha aur kavi ek bar phir dharti ki narm banhon men tha vismaykari utkrishtta ka vivek bad men lauta jab abhivyakti phir se vishadpoorn utpreran ki oochaiyon ko chhoo lene ko hoti is samay ve unke lie dharti par bache samany drishy aur shravy ko dekhakar bare aaram se aashvast ho rahe the aur unka aannd uthate prasann the +",4,7 +"""% s"" expects the second argument to be a time _ t +","""% s"" दूसरे तर्क की एक time _ t की आशा करता है +","s doosre argument ki ek time _ t ki aasha karta hai +",7,1 +"He always enjoyed a fund of affection and goodwill from Mr. Ghosh, since the beginning of his political career in the early sixties. +","वह शुरुआती साठ के दशक में आरंभ अपने राजनीतिक जीवनवृत्त से श्री घोष का स्नेह और सद्भावना प्राप्त करते रहे। +","vah career sixties ke dashak men beginning apne political jivanvritt se shri ghosh ka affection aur goodwill prapt karte rahe. +",7,0 +"A Plugin to synchronize pictures' metadata with a GPS device +","जीपीएस उपकरण से छवि मेटाडाटा को सिंक्रोनाइज करने का एक प्लगइन +","jipies device se pictures metadata ko sinkronaij karne ka ek plugin +",8,2 +"The poet feels inspired by Parmanand Almast, that aspect of Lord Shiva which symbolises Truth and Beauty. +","कवि को शिव का सत्य और सुन्दर रूप अधिक प्रेरक लगता है। +","kavi ko shiv ka truth and beauty roop adhik poet feels inspired +",6,0 +"Asavari resigned herself to further reading. +","हारकर आसावरी ने आगे पढ़ना शुरू किया। +","harakar asavari ne further pana shuroo kiya. +",8,1 +"Failed to load remote file. +","दस्तावेज फिर लोड करने में विफल. +","dastavej phir failed to load viphal +",4,1 +"Search all% {DRIVENAME} +","सभी% {DRIVENAME} खोजें +","sabhi DRIVENAME khojen +",8,2 +"% 1 has been idle for% 2 and% 3. +","% 1 निष्क्रिय है% 2 और% 3 से. +","1 idle hai 2 aur 3 se +",8,4 +"And of His signs is the creation of the heavens and earth and the crawling things He has scattered abroad in them; and He is able to gather them whenever He will. +","और उसी की (क़ुदरत की) निशानियों में से सारे आसमान व ज़मीन का पैदा करना और उन जानदारों का भी जो उसने आसमान व ज़मीन में फैला रखे हैं और जब चाहे उनके जमा कर लेने पर (भी) क़ादिर है +","aur usi ki signs ki nishaniyon men se sare heavens v things ka paida karna aur un crawling ka bhi jo usne heavens v things men phaila rakhe hain aur jab chahe unke jama kar lene par bhi adir hai +",7,2 +"Inflammation of the portal vein was observed in the examined patient. +","रोगी की जांच में प्रतिहारी शिरा के सूजन का पता चला. +","patient ki examined men portal vein ke inflammation ka pata chala +",6,1 +"This is a time of great opportunities in India. +","यह भारत के लिए सुनहरे अवसरों का दौर है। +","yah time ke lie great opportunities ka daur hai. +",6,1 +"Can 't pass document URIs to a' Type = Link 'desktop entry +","दस्तावेज़ URI को 'Type = Link' डेस्कटॉप प्रविष्टि में भेज नहीं सकता है +","pass URI ko Type Link desktop entry men bhej nahin sakta hai +",7,1 +"Software and digital video industries have duly recognized forensic watermark. +","साफ्टवेयर तथा डीजिटल वीडियो उद्योग ने विधि वाटरमार्क की विधिवत मान्यता दी है। +","saphtveyar tatha dijital video industries ne forensic watermark ki vidhivat manyta di hai. +",6,6 +"He added that he had entirely abandoned himself to the French nation, which called itself the land of fraternity, equality and liberty, and as such, he would not take any part in the trial. +","उन्होंने आगे कहा कि वह खुद को पूरी तरह उस फ्रांस पर छोड़ चुके हैं, जो स्वाधीनता, समानता और बंधुत्व का दम भरता है, इसलिए वह इस मुकदमे में बिलकुल भाग नहीं लेंगे। +","added aage kaha ki vah khud ko poori tarah us phrans par chhor chuke hain, jo liberty, equality and liberty ka dam bharta hai, islie vah is mukadme men bilkul bhag nahin lenge. +",8,2 +"Goods which have not been given a final shape. +","वह माल जिसे अभी अंतिम रूप दिया जाना बाकी है। +","vah goods jise abhi antim roop diya jana final shape +",5,6 +"The festivities last ten days and nights, the first nine nights of which are the 'Navaratri', dedicated to the worship of different aspects of Durga in some areas and also of Lakshmi or Saraswati in others. +","यह उत्सव दस दिनों चल चलता है, जिनमें से पहली नौ रातें कई क्षेत्रों में दुर्गा और कई क्षेत्रों में लक्ष्मी या सरस्वती को समर्पित होती हैं। +","yah festivities last ten chal chalta hai, jinmen se pahli nau raten kee kshetron men durga aur kee kshetron men lakshmi ya sarasvti ko samarpit hoti hain. +",4,3 +"So fear Allah as much as you are able and listen and obey and spend [in the way of Allah]; it is better for your selves. And whoever is protected from the stinginess of his soul - it is those who will be the successful. +","अतः जहाँ तक तुम्हारे बस में हो अल्लाह का डर रखो और सुनो और आज्ञापालन करो और ख़र्च करो अपनी भलाई के लिए। और जो अपने मन के लोभ एवं कृपणता से सुरक्षित रहा तो ऐसे ही लोग सफल है +","ata jahan tak tumhare bas men ho allah ka fear rakho aur able aur aajnjapalan listen aur rch listen apni bhalaee ke lie. aur jo apne man ke lobh evn selves se surakshit raha to aese hi log successful hai +",5,3 +"In Hindi, the word “”America“” is used instead of “”United States of America“”. +","हिन्दी भाषा में संयुक्त राज्य या संयुक्त राज्य अमेरिका के स्थान पर केवल अमेरिका कहने का ही प्रचलन है जो इस देश के लघु नाम के रूप मे उपयोग में लाया जाता है। +","hindi bhasha men united states ya united states amerika ke sthan par keval amerika kahne ka hi prachalan hai jo is desh ke laghu nam ke roop me upyog men laya jata hai. +",7,3 +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","track the actor par nazar rakhne ke lie clip region ko set karen +",6,1 +"Additionally, 23 post-graduate scholarships for courses in hydel power and water resources management at IIT, Roorkee have been offered to Nepali engineers and experts this year. +","इसके अतिरिक्त नेपाली इंजीनियरी और विशेषज्ञों को इस वर्ष आईआईटी रुड़की में पनबिजली और जल संसाधन प्रबंधन में पाठ्यक्रम के लिए 23 स्नातकोत्तर छात्रवृत्तियां प्रदान की जाएंगी। +","iske atirikt nepali injiniyri aur visheshajnjon ko is varsh aaeeaaeeti rurki men panbijli aur jal snsadhan prbndhan men pathyakram ke lie 23 post-graduate scholarships prdan ki jaengi. +",5,2 +"NH - 47 (Walayar – Kaliyikkavila) with a length of 416. 800 km; +","एनएच-47 (वालायार-कलिहीकविला) जिसकी लंबाई 416.800 किलो मीटर है; +","enech-47 valayar-klihikvila jiski length 416800 kilo mitar hai +",8,2 +"Dusty air coming towards Stratford, Texas. +","स्ट्रेटफोर्ड टेक्सास की और आने वाली धूल भरी आंधी (Stratford Texas). +","dusty texas ki aur aane vali stratford bhari towards Stratford Texas +",5,2 +"% s is calling you. Do you want to answer? +","% s आपको बुला कर रहा है. क्या आप जवाब देना चाहते हैं? +","s aapko calling kar raha hai kya aap javab dena chahte hain +",7,1 +"” You lived your life in a loving way , and died with dignity . +","‘ तुमने अपना जीवन बड़े प्यार से जिया और बड़े सम्मान के साथ ही तुमने अपना शरीर छोड़ा । +","tumne apna life way loving se jiya aur way samman ke sath hi tumne apna sharir chhora . +",6,5 +"The use of money to create more money in the form of interest, dividend or profit etc. +","धनराशि से और ज्यादा धनराशि पैदा करने के लिए किया गया कार्य जो ब्याज, लाभांश, मुक्तता इत्यादि प्राप्ति द्वारा हो सकता है। +","money se aur use money form karne ke lie kiya gaya kary jo interest , dividend , muktta ityadi profit dvara ho sakta hai. +",8,4 +"{player} is now known as {newname} {player} +","अब {newname} से जाना जाता है +","ab newname se jana jata hai +",8,1 +"Look after the vitamins and minerals in your food; +","अपने भोजन में विटामिन एवं मिनरल्स के प्रति सजग रहें. +","apne food men vitamins and minerals ke prti sajag rahen +",8,1 +"If they deny you, so have other messengers been denied before you, who came with clear signs, scriptures and enlightening book. +","फिर यदि वे तुम्हें झुठलाते ही रहें, तो तुमसे पहले भी कितने ही रसूल झुठलाए जा चुके है, जो खुली निशानियाँ, 'ज़बूरें' और प्रकाशमान किताब लेकर आए थे +","phir yadi ve other signs hi rahen , to tumse pahle bhi kitne hi rasool jhuthlae ja chuke hai , jo clear nishaniyan , scriptures aur prkashman book lekar aae the +",7,5 +"Failed to store mail in temp file% s:% s +","% s अस्थायी फ़ाइल में डाक संग्रहन में असफलः% s +","file temp fail men mail sngrahan men asaphla file +",5,0 +"The company 's new project employed 2500 people, including 300 expatriates and 2200 locals. +","कम्पनी की नई परियोजना में कुल 2500 लोगों में से 300 प्रवासी थे और बाकी 2200 लोग देशी। +","company ki new project men kul 2500 locals men se 300 expatriates the aur baki 2200 people deshi. +",5,2 +"And seek ye out strongholds, that haply ye may last for ever? +","और बड़े बड़े महल तामीर करते हो गोया तुम हमेशा (यहीं) रहोगे' +","aur bare bare mahal ye karte ho goya tum hamesha yahin strongholds +",3,5 +"A natural outer covering or coat, such as the skin of an animal or the membrane enclosing an organ. +","प्राकृतिक बाहरी कवर या कोट, जैसे पशुओं की खाल या अंग को ढकने वाली झिल्ली। +","natural outer covering ya kot, jaise pashuon ki khal ya enclosing an organ membrane enclosing +",6,5 +"Are you sure you want to abandon this set of profile changes and exit? +","क्या आप निश्चित हैं कि आप इस सेट के प्रोफाइल के बदलावों को छोड़ना और बाहर निकलना चाहते हैं? +","kya aap sure hain ki aap is set ke profile ke exit ko chhorna aur bahar nikalna chahte hain +",6,3 +"The production of a play is an exacting experience in planning and organization, hence it should not be done until children are ready to take responsibility and to profit by the work necessary for it. +","नाटक तैयार करने के लिए जिस योजना तथा संगठन की आवश्यकता होती है, उसे जुटा पाना आसान नहीं है; अतः इस कार्य को तभी हाथ में लेना चाहिए जब बच्चे उत्तरदायित्व को निभाने और आवश्यक परिश्रम से पूरा लाभ उठाने के लिए तैयार हों। +","natak taiyar karne ke lie jis planning and organization ki aavashyakta hoti hai, use juta pana aasan nahin hai ata is kary ko tabhi hath men lena chahie jab bachche uttardayitv ko nibhane aur aavashyak parishram se poora labh uthane ke lie taiyar hon. +",8,3 +"One whose either parent is alive must not take food facing north, sitting on the door, nor drink water like a cow, nor eat meat of the tortoise, egg, home - made cakes, plantain on the day of the journey to a distant place, nor see a kite flying overhead, a woodcutter with his load, a beggar woman with a bowl, a tortoise carried by a fisherman, an oilman hawking oil, etc. +","जिसके माता-पिता जीवित हैं उसे उत्तर की और मुंह करके दरवाजे पर बैठ कर भोजन नहीं करना चाहिए, गाय की तरह पानी नहीं पीना चाहिए, कछुए का मांस नहीं खाना चाहिए, अंडे, घर में बने केक, सुदुर यात्रा के समय केले नहीं खने चाहिए, सिर पर उड़ती चील नहीं देखनी चाहिए, लकड़हारे को बोझ उठाए हुए, भिक्षापात्र लिए भिखारिन को, कछुआ लिए पछुआरे को, तेल लिए हुए तेली इत्यदि को नहीं देखना चाहिए। +","jiske mata-pita jivit hain use uttar ki aur munh karke darvaje par baith kar bhojan nahin karna chahie, gay ki tarah pani nahin pina chahie, kachhue ka mans nahin khana chahie, ande, ghar men made cakes, sudur yatra ke samay kele nahin khane chahie, sir par urti chil nahin dekhni chahie, lakarhare ko bojh uthae hue, bhikshapatr lie bhikharin ko, kachhuaa lie pachhuaare ko, tel lie hue teli itydi ko nahin dekhna chahie. +",7,5 +"The Pandiya King immediately fainted and died. +","पांडिय राजा उसी दम मूर्छित होकर गिर पड़े और मृत्यु ग्रस्त हो गये। +","king immediately usi dam moorchhit hokar gir pare aur mrityu grast ho gaye. +",8,2 +"This has happened in India, too. +","ऐसा भारत में भी हुआ है। +","aesa india men bhi huaa hai. +",10,0 +"Winds built up to 65 kph and waves broke on the boat, deluging it with water. +","हवा का वेग बढ़कर 65 किलोमीटर प्रति घंटा हो गया और विशालकाय लहरें नौका से टकराने लगीं और उसे पानी से भर दिया। +","winds ka veg bakar 65 kph prti ghnta ho gaya aur vishalkay waves boat se takrane lagin aur use water se bhar diya. +",8,2 +"Irrigation of wound with an antiseptic solution was performed. +","घाव का धावन अपूतिक विलयन सें किया गया +","wound ka dhavan apootik solution sen kiya gaya +",7,1 +"And we 're going to expand it into two simpler expressions +","और हम दो सरल भाव में विस्तृत करने के लिए जा रहे हैं +","aur ham do simpler expressions men vistrit karne ke lie ja rahe hain +",8,2 +"A certificate indicating reputation for financial integrity. +","ऐसा प्रमाणपत्र जो वित्तीय मामलों में निष्ठा सम्बन्धी व्यवहार को प्रकट करने वाला हो। +","reputation certificate jo indicating mamlon men integrity sambandhi vyavhar ko prakat karne vala ho. +",8,0 +"If I add 2, I get 30. If I add 3, I get 31. +","तो मुझे 29 मिलता है, यदि 2 जोड़ता हूँ तो 30,3 जोड़ता हूँ तो 31. +","to mujhe 29 milta hai, yadi 2 add hoon to 30,3 add hoon to 31 +",8,2 +"UNICEF with PressWise Training Page 31 The Media and the UN Convention on the Rights of the Child Appendix 1 A journalist 's summary of the United Nations Convention on the Rights of the Child The preamble recalls the basic principles of the United Nations - in particular the spirit of peace, dignity, tolerance, freedom, equality and solidarity - and specific provisions of relevant human rights treaties and proclamations. +","युनिसेफ और प्रेसवाइज ट्रेनिंग 31 मीडिया और संयुक्त राष्ट्र बाल समझौता परिशिष्ट 1 संयुक्त राष्ट्र बाल अधिकार समझौते का पत्रकारों के लिए सारांश प्रस्तवाना में संयुक्त राष्ट्र के बुनियादी सिद्धांतों-विशेषकर शांति, गरिमा, सहनशीलता, स्वतंत्रता, समानता और एकजुटता की भावना-और मानव अधिकार की उपयुक्त संधियों ओर घोषणाओं के विशिष्ट प्रावधानों की याद दिलाई गई है। +","unicef aur presswise training preamble media aur un rashtr child convention parishisht 1 un rashtr child rights spirit ka patrkaron ke lie summary prastvana men un rashtr ke basic siddhanton-visheshakar shanti , dignity , tolerance , freedom , equality aur solidarity ki bhavna-aur human rights ki relevant treaties or proclamations ke particular provisions ki yad dilaee gee journalist +",5,1 +"A proper medical examination will ensure high standards of health and physical fitness of employees and will reduce the rates of accidents, absenteeism and labour turnover. +","अच्छीट तरह की चिकित्साथ जांच कर्मचारी के उच्च़ स्त. रीय स्वानस्य्कि और शारीरिक फिटनेस सुनिश्चित करेगी और दुर्घटना की दर कम करेगी अनुपस्थिति घटेगी और श्रम उत्पादन बढ़ेगा। +","achchhit tarah ki chikitsath janch karmchari ke uch st riy svanasyki aur sharirik phitnes sunishchit karegi aur durghatna ki dar kam karegi anupasthiti ghategi aur shram utpadan baega. +",8,0 +"from the evil of what He has created, +","हर चीज़ की बुराई से जो उसने पैदा की पनाह माँगता हूँ +","har chiz ki evil se jo usne paida ki panah mangta hoon +",7,2 +"- Harper Lee, To Kill a Mocking Bird - +","हार्पर ली, टु किल ए मॉकिंग बर्ड +","harpar li, tu kil e mking bird +",8,0 +"The rising demand for gunny bags , created by increasing food exports to Europe , gave a fresh stimulus to jute cultivation and the handloom industry . +","यूरोप के लिए बढते खाद्य सामग्री के निर्यात के कारण बढ़ी हुई बोरियों की मांग ने जूट की खेती और हथकरघा उद्योग को एक नया प्रोत्साहन दिया . +","yoorop ke lie badhte food samagri ke exports ke karan bai huee gunny ki demand ne joot ki cultivation aur handloom industry ko ek fresh stimulus diya +",6,4 +"just for the Carnival and the Knife. +","बस कार्निवल और नैफ के लिए. +","bas carnival aur knife ke lie +",8,1 +"“Call Washington! Call Washington! ” “वॉशिंगटन +","से संपर्क करें! वॉशिंगटन से संपर्क करें! ” +","se call karen ! washington se call karen ! +",8,0 +"He could earn Rs. 41, 700 from sale of 275 kg. worms (at Rs. 150 / kg.) and Rs. 11, 500 from the sale of 23 q. compost at Rs. 500 / q +","उन्होंने 275 किलो कीटों के विक्रय से (150 रुपये/किलो की दर से) 41,700 रुपये कमाए तथा 500 रुपये/क्विंटल की दर से 23 क्विंटल कम्पोस्ट बेचकर 11,500 रुपये कमाए। +","unhonne 275 kg kiton ke sale se 150 rupyekilo ki dar se 41,700 rs kamae tatha 500 rupyekvintal ki dar se 23 q worms bechakar 11,500 rs kamae. +",8,4 +"And it 's the only college where we don' t give a certificate. +","और अकेला ऐसा कॉलेज जहाँ हम सर्टिफ़िकेट नहीं देते हैं। +","aur only aesa college jahan ham certificate nahin dete hain. +",8,0 +"Leave Me alone with he whom I created +","(ऐ रसूल) मुझे और उस शख़्श को छोड़ दो जिसे मैने अकेला पैदा किया +","ae rasool mujhe aur us shash ko chhor do jise maine akela paida kiya +",7,5 +"No doubt it was the foremost troupe at the time. +","निस्संदेह यह उस समय की सर्वश्रेष्ठ मंडली थी। +","doubt yah us time ki foremost troupe thi. +",5,3 +"From the preventive point of view, their offences merit severe punishment. +","अतः निवारक दृष्टिकोण से उनके अपराध कड़ी से कड़ी सजा की मांग करते हैं. +","ata preventive point se unke offences merit se kari point of view karte hain +",8,0 +"Officials from the Ministry of External Affairs and the Ministry of Defence participated. +","इसमें भारतीय रक्षा मंत्रालय के अधिकारियों ने भाग लिया। +","ismen bhartiy defence ministry of defence ne bhag participated +",4,6 +"As regards Central laws on matters relating to the Concurrent List, such as welfare measures, procedural laws, etc., the Constitution itself provides for the State Legislature to modify or repeal such Central laws after obtaining the President 's assent. +","जहां तक समवर्ती सूची वाले केन्द्रीय कानूनों का सम्बंध है, जैसे कल्याण कार्यों तथा कार्यविधि सम्बंधी कानून आदि, स्वयं संविधान में यह प्रावधान है कि राज्य विधान मंडल राष्ट्रपति की स्वीकृति लेकर ऐसे कानूनों में परिवर्तन कर सकते है या उन्हें निरस्त कर सकते है। +","jahan tak concurrent matters vale central laws ka sambndh hai , jaise welfare such tatha procedural sambndhi kanoon aadi , svyn constitution men yah pravdhan hai ki state legislature regards president ki assent lekar aese laws men parivartan kar sakte hai ya unhen nirast kar sakte hai. +",7,1 +"It was a bill to disfranchise Indians. +","यह हिंदुस्तानियों को मताधिकार से वंचित करने का एक विधेयक था। +","yah indians ko matadhikar se vnchit karne ka ek bill tha. +",9,1 +"Sofree, Giannie, Gandhi and India: A century in the center (1995) ISBN 1 - 900624 - 12 - 5 +","सोफ्री & #44; गियान्नी. गाँधी और भारतः केन्द्र में एक सदी (१९९५) आईएसबीएन १-९००६२४-१२-५ +","sophri 44 giyanni gandhi aur bharta center men ek century १९९५ aaeeesbien १-९००६२४-१२-५ +",7,2 +"An hour later , he had before him a chest of Spanish gold coins . +","एक घंटे बाद , उसके सामने स्पेनी स्वर्ण मुद्राओं से भरी एक तिजोरी थी । +","ek hour bad , uske samne spanish gold coins se bhari ek tijori thi . +",7,1 +"This is an account of (the fate of) the towns which We relate to you; of them are some that stand and (others) mown down. +","(ऐ रसूल) ये चन्द बस्तियों के हालात हैं जो हम तुम से बयान करते हैं उनमें से बाज़ तो (उस वक्त तक) क़ायम हैं और बाज़ का तहस नहस हो गया +","ae stand ye chand bastiyon ke halat hain jo ham tum se bayan karte hain unmen se baz to us vakt tak ayam hain aur baz ka tahas nahas ho gaya +",7,2 +"It was a bill to disfranchise Indians. +","यह हिंदुस्तानियों को मताधिकार से वंचित करने का एक विधेयक था। +","yah hindustaniyon ko matadhikar se vnchit karne ka ek bill tha. +",10,0 +"Book where objections are recorded. +","पुस्तक जिसमें एतराज अंकित किए जाते हो। +","book jismen etraj ankit objections jate ho. +",8,3 +"The Vice - President of India is the ex - officio Chairman of Rajya Sabha. +","भारत का उपराष्ट्रति राज्य सभा का पदेन सभापति होता है। +","india ka uprashtrti rajy sabha ka officio chairman hota president +",7,1 +"But unfortunately the way in which the fresh blood of modernism was transfused into the anaemic body of Indian society deprived it of just these vital ingredients and on the whole did more harm than good: In the first place, the modern Western culture which reached India was not the genuine article but an export model of which the parts came from England but were assembled in India mainly by men of mediocre ability, who could be spared after selecting political and intellectual leaders for the home country. +","किंतु दुर्भाग़्य से जिस तरह का ताजा रक़्त भारतीय समाज के रक़्तहीन शरीर में भरा गया, उसने उसे इन महत्वपूर्ण अव्यवों से वंचित कर दिया और कुल मिलाकर अच्छाई के स्थान पर हानि अधिक हुई प्रथम स्थिति में, आधुनिक पश्चिमी संस्कृतिक, जो भारत पहुंची तथा वह वास्तविक रूप में नहीं, बल्कि यह उसका एक निर्यात रूप था, जिसके पुर्जे इंग़्लैड सें आये, किंतु भारत में उन्हे मुख़्य रूप से अति सामान्य योग़्यता वाले व्यक़्तियों के द्वारा जमाया गया, जिन्हें अपने देश के लिए राजनैतिक बुद्धिमान नेता चुनने के बाद अलग किया जा सकता +","kintu durbhay se jis tarah ka fresh blood indian society ke modernism body men bhara gaya , men use in vital ingredients se vnchit kar diya aur kul milakar achchhaee ke place par harm more huee first sthiti men , modern western culture , jo india pahunchi tatha vah vastvik way men nahin , ability yah uska ek export way tha , jiske purje inlaid sen aaye , kintu india men unhe muy way se ati samany yoyta vale vyatiyon ke dvara jamaya gaya , jinhen apne country ke lie political intellectual leaders chunne ke bad alag kiya ja sakta +",8,2 +"Surely the pious shall be in bliss, +","निस्संदेह अच्छे लोग नेमतों में होंगे, +","surely achchhe log surely the pious, +",6,2 +"Among the Garo the household is known as the Nok. +","गारो जनजाति में गृहस्थी को नोक कहा जाता है। +","garo janjati men household ko nok kaha jata hai. +",10,0 +"Anundoram was a student of the Gauhati School in the late fifties of the nineteenth century, that is, in the early stage of English education in Assam. +","आनन्दराम ने उन्नीसवीं सदी के छठे दशक में, यानी असम में अंग्रेज़ी शिक्षा के आरम्भिक चरण में गुवाहाटी स्कूल में अपनी पढ़ाई पूरी की। +","anundoram ne late century ke chhathe fifties men , yani assam men english student ke early stage men gauhati skool men apni paaee poori ki. +",6,2 +"This position is similar to royal position, just the woman to take the other side of your face is the face of men. In a way it 's back to enter the position. The man' s situation stays the same kind of right royal position, but women by men toward the back right in front of his penis is hard bringing up my cunt. Then slowly enter the penis cunt gives. Women in this position quite comfortable lives. It supported him get his feet that put him in the attack is easier. This position is changing dramatically because of it with some other ideas on other furniture can be pursued. +","यह पोजीशन शाही पोजीशन की ही तरह है बस इसमें महिला अपनी चेहरा पुरुष के चेहरे के दूसरी ओर कर लेती है. एक तरह से यह पीछे से प्रवेश की भी पोजीशन है. इसमें पुरुष की स्थिति ठीक शाही पोजीशन की ही तरह रहती है लेकिन महिला पुरुष की ओर पीठ करके ठीक उसके लिंग के सामने अपनी योनि को लाकर खड़ी होती है. फिर धीरे से योनि को लिंग में प्रवेश कराती है. इस पोजीशन में महिला काफी आरामदायक स्थिति में रहती है. इसमें उसे सहारा उसके पैरों से मिलता है जिससे उसे धक्के लगाने में भी आसानी होती है. यह पोजीशन आश्चर्यजनक रूप से परिवर्तनशील है इसलिये इसे कुछ अन्य आइडिया के साथ दूसरे फर्नीचर पर भी अपनाई जा सकती है. +","yah position royal position ki hi tarah hai bas ismen mahila apni chehra men ke chehre ke doosri or kar leti hai ek tarah se yah pichhe se prvesh ki bhi position hai ismen men ki sthiti thik royal position ki hi tarah rahti hai lekin mahila men ki or pith karke thik uske ling ke samne apni yoni ko lakar khari hoti hai phir dhire se yoni ko ling men prvesh karati hai is position is similar kaphi aaramdayak sthiti men rahti hai ismen use sahara uske pairon se milta hai jisse use dhakke lagane men bhi aasani hoti hai yah position aashcharyajanak roop se parivartanshil hai isliye ise kuchh any aaidiya ke sath doosre pharnichar par bhi apnaee ja sakti hai +",7,3 +"The Vice - President of India is the ex - officio Chairman of Rajya Sabha. +","भारत का उपराष्ट्रति राज्य सभा का पदेन सभापति होता है। +","india ka vice rajya sabha ka ex chairman hota hai. +",7,3 +"He stuck to the practices he had learnt during training. +","उन्होंने प्रशिक्षण के दौरान सीखी पद्धतियों का ही पालन किया। +","unhonne training ke dauran sikhi practices ka hi palan kiya. +",8,3 +"that the amount - - as my best sense of it - - is that the +","मेरे लिए सबसे सही-- यह है +","sense lie sabse amount -- yah hai +",6,2 +"Convenient to man (giver), inconvenient to man (giver), pleasure to man (giver). +","· पुरुष (Giver) को सहूलियत ☻☻☻☻ · पुरुष (Giver) को परेशानी ☺ · पुरुष (Giver) को आनंद ☻☻☻☻ ☺ +","convenient man Giver ko sahooliyat convenient man Giver ko pareshani inconvenient convenient man Giver ko pleasure inconvenient +",2,3 +"It is He who is God in heaven, and God on earth. He is the Wise, the Knower. +","वही है जो आकाशों में भी पूज्य है और धरती में भी पूज्य है और वह तत्वदर्शी, सर्वज्ञ है +","vahi hai jo heaven god on earth hai aur dharti god on earth hai aur vah wise, sarvajnj hai +",3,3 +"ganga vally is the biggest in India +","गंगा नदी प्रणाली भारत की सबसे बड़ी नदी प्रणाली है। +","ganga nadi prnali biggest ki sabse bari nadi prnali hai. +",8,2 +"(b) no election to either House of Parliament or to the House or either House of the Legislature of a State shall be called in question except by an election petition presented to such authority and in such manner as may be provided for by or under any law made by the appropriate Legislature. +","(ख) संसद के प्रत्येक सदन या किसी राज्य के विधान-मंडल के सदन या प्रत्येक सदन के लिए कोई निर्वाचन ऐसी निर्वाचन अर्जी पर ही प्रश्नगत किया जाएगा, जो ऐसे प्राधिकारी को और ऐसी रीति से प्रस्तुत की गई है जिसका समुचित विधान-मंडल द्वारा बनाई गई विधि द्वारा या उसके अधीन उपबंध किया जाए, अन्यथा नहीं। +","b parliament ke pratyek house ya kisi state ke vidhan-mndal ke house ya pratyek house ke lie koee election question election petition par hi prashnagat kiya jaega , jo aese authority ko aur question manner se prastut ki gee hai jiska appropriate vidhan-mndal dvara banaee gee law dvara ya uske adhin upbndh kiya jae , anytha nahin. +",7,1 +"This apple tastes sour, doesn 't it? +","यह सेव खट्टा है ना? +","yah apple sour hai na +",8,1 +"This is because we have excellent faculty members as well as brilliant students and do not lack in merit. +","ऐसा इसलिए है क्योंकि हमारे यहां श्रेष्ठ संकाय सदस्य और प्रतिभावान विद्यार्थी हैं और हमारे यहां गुणवत्ता की कमी नहीं है। +","aesa islie hai kyonki hamare yahan excellent faculty members aur brilliant vidyarthi hain aur hamare yahan merit ki kami nahin hai. +",9,2 +"And when the Garden is brought near; - +","और जब जन्नत निकट कर दी जाएगी, +","aur jab garden nikat kar di jaegi, +",9,0 +"Another sensible approach would be to prevent the mast cells from exploding and the subsequent release of histamine. +","दूसरा उपाय यह है कि मास्ट कोशिकाओं से हिस्टामीन निकलने ही न दिया जाये। +","doosra approach yah hai ki mast cells se histamine nikalne hi n diya jaye. +",9,0 +"This message is encrypted, with a strong encryption algorithm. It would be very difficult for an outsider to view the content of this message in a practical amount of time. +","यह संदेश गुप्त है, एक मजबूत गोपन एलागरिथम के साथ. किसी बाहरी के लिए प्रायोगिक समय सीमा में संदेश की सामग्री देखना बहुत कठिन होगा. +","yah message gupt hai, ek strong encryption algorithm ke sath kisi bahri ke lie prayogik samay amount of time ki samagri dekhna bahut kathin hoga +",8,2 +"Perhaps, you know by what name the generality of people call extraordinary ideas, uncommon actions, extraordinary high aspirations. +","शायद तुम जानती होगी कि आम लोग असाधारण विचारों, असाधारण कार्यों और असाधारण उच्चाकांक्षाओं को किस नाम से जानते हैं। +","shayad tum janti hogi ki aam call extraordinary ideas, asadharan karyon aur asadharan uchchakankshaon ko kis nam se jante hain. +",6,4 +"We can 't let him down. +","हम उन्हें नीचा नहीं दिखा सकते। +","ham unhen nicha nahin dikha sakte. +",10,0 +"Those are the ones whom Allah has guided, so from their guidance take an example. Say, ""I ask of you for this message no payment. It is not but a reminder for the worlds."" +","वे (पिछले पैग़म्बर) ऐसे लोग थे, जिन्हें अल्लाह ने मार्ग दिखाया था, तो तुम उन्हीं के मार्ग का अनुसरण करो। कह दो, ""मैं तुमसे उसका कोई प्रतिदान नहीं माँगता। वह तो सम्पूर्ण संसार के लिए बस एक प्रबोध है।"" +","ve message paimbar aese log the , jinhen ask ne ones dikhaya tha , to tum unhin ke ones ka anusaran karo. kah do , example tumse reminder koee prtidan nahin payment vah to sampoorn snsar ke lie bas ek prbodh hai. +",4,1 +"The third pavilion from south is Khas Mahal. +","दक्षिण से तीसरा मण्डप है खास महल। +","south se tisra mahal hai khas mahal. +",7,1 +"And most surely of the followers of the Book there are those who believe in Allah and (in) that which has been revealed to you and (in) that which has been revealed to them, being lowly before Allah; they do not take a small price for the communications of Allah; these it is that have their reward with their Lord; surely Allah is quick in reckoning. +","और अहले किताब में से कुछ लोग तो ऐसे ज़रूर हैं जो ख़ुदा पर और जो (किताब) तुम पर नाज़िल हुई और जो (किताब) उनपर नाज़िल हुई (सब पर) ईमान रखते हैं ख़ुदा के आगे सर झुकाए हुए हैं और ख़ुदा की आयतों के बदले थोड़ी सी क़ीमत (दुनियावी फ़ायदे) नहीं लेते ऐसे ही लोगों के वास्ते उनके परवरदिगार के यहॉ अच्छा बदला है बेशक ख़ुदा बहुत जल्द हिसाब करने वाला है +","aur followers book men se kuchh most to aese zaroor hain jo allah par aur jo book tum par nazil huee aur jo book unapar nazil huee sab par eeman rakhte hain allah ke aage sar jhukae hue hain aur allah ki communications ke price small si imat duniyavi fayde nahin lete aese hi logon ke vaste unke paravardigar ke yah achchha badla hai beshak allah bahut quick hisab karne vala hai +",7,1 +"I got confirmation for this post. +","मेरी इस पोस्ट पर पुष्टि हो गई है। +","i is post par confirmation ho gee hai. +",8,0 +"The file ""% s"" is read - only! Edit anyway? +","फ़ाइल से. है पढ़ें संपादन? +","file se hai paen edit +",4,4 +"Trap shooter Anwar Sultan 's family complains that he has grown silent and introspective . +","ट्रैप शूटर अनवर सुल्तान के परिवार की शिकायत है कि वे बेहद शांत रहने लगे हैं . +","trap shooter anavar sultan ke parivar ki shikayat hai ki ve behad shant rahne lage hain +",9,1 +"I implicitly want to use log and exponential rules to do it. +","मैं संकेत भी यह करने के लिए लॉग इन करें और घातीय नियम उपयोग करना चाहते हैं। +","main implicitly bhi yah karne ke lie log in karen aur exponential rules upyog karna chahte hain. +",5,3 +"is a lot of material that was already here, +","उसमें लगाई गई बहुत सी सामग्री ऎसी है जो पहले से ही मौजूद थी, +","usmen lot gee bahut si material ऎsi hai jo pahle se hi maujood thi, +",4,7 +"He was born in the city of Surat in Gujarat on 24th August, 1833. +","24 अगस्त, 1833 को उसका जन्म गुजरात के सूरत नगर में हुआ। +","24 august , 1833 ko uska janm gujarat ke surat city men huaa. +",9,1 +"No update information available. Please check manually and ask the developer to support OI Update in the future. +","कोई अद्यतन जानकारी उपलब्ध नहीं है. मैन्युअल की जाँच करें और डेवलपर पूछने के लिए भविष्य में पुराना अद्यतन समर्थन. +","koee update information upalabdh nahin hai mainyual ki janch karen aur devalapar poochhne ke lie bhavishy men purana update samarthan +",8,0 +"and We made them a thing of the past, and We made them an example to later people. +","अतः हमने उन्हें अग्रगामी और बादवालों के लिए शिक्षाप्रद उदाहरण बना दिया +","ata people unhen thing aur example ke lie shikshaprad udaharan bana diya +",5,3 +"Import HandyShopper store names only as item tags. +","आइटम टैग के रूप में ही HandyShopper के स्टोर नाम आयात करें +","item tags ke roop men hi HandyShopper ke handyshopper names import karen +",8,3 +"waxing proud in the land, and devising evil; but evil devising encompasses only those who do it; So do they expect anything but the wont of the ancients? And thou shalt never find any changing the Wont of God, and thou shalt never find any altering the wont of God. +","(उसके आने से) उनकी नफरत को तरक्की ही होती गयी और बुदी तद्बीर (की बुराई) तो बुरी तद्बीर करने वाले ही पर पड़ती है तो (हो न हो) ये लोग बस अगले ही लोगों के बरताव के मुन्तज़िर हैं तो (बेहतर) तुम खुदा के दसतूर में कभी तब्दीली न पाओगे और खुदा की आदत में हरगिज़ कोई तग़य्युर न पाओगे +","uske aane se unki napharat ko tarakki hi hoti gayi aur proud tadbir ki evil to buri tadbir karne vale hi par parti hai to ho n ho ye log bas ancients hi logon ke bartav ke muntazir hain to behatar tum god ke dastoor men kabhi tabdili n thou aur god ki wont men hargiz koee tayyur n thou +",7,1 +"To help minimise the noise pollution caused by necessary construction and demolition works , the local authority has the power under section 60 of the Control of Pollution Act 1974 to specify the way in which the work must be carried out . +","आवश्यक निर्माण व ढहानेसे उत्पन्न शोर -दूषण को कम से कम करने के लिए कंट्रोल अऑफ पॉप्यूलेशन ऐक्ट 1974 के सेक्शन 60 के अंतरगत लोकल अथॉरिटी को अधिकार है कि वह काम किस प्रकार किए जाए इस बारे में विशेष निर्देश दे . +","aavashyak nirman v noise pollution caused -dooshan ko kam se kam karne ke lie kntrol aऑph ppyooleshan aekt 1974 ke sekshan 60 ke antaragat lokal athriti ko adhikar hai ki vah kam kis prkar kie jae is bare men vishesh nirdesh de +",6,3 +"But one important institution - the U.S. government - claims not to know Hadayet's goals. An FBI spokesman has said that “there's nothing to indicate terrorism.” Another FBI official said of Hadayet: “It appears he went there with the intention of killing people. Why he did that we are still trying to determine.” Possible causes named include a work dispute and a hate crime. +","परंतु एक महत्वपूर्ण संस्थान अमेरिकी सरकार का दावा है कि उन्हें हदायत के लक्ष्य का पता नहीं था। एफ बी आई के प्रवक्ता ने कहा, “ कुछ भी नहीं है जो आतंकवाद की ओर संकेत करता हो” । एफ बी आई के एक और अधिकारी ने हदायत के सम्बंध में कहा, “ ऐसा प्रतीत होता है कि वह वहाँ लोगों को मारने के आशय से गया था । हम यह जानने का प्रयास कर रहे हैं कि उसने ऐसा क्यों किया?” सम्भावित कारणों में कार्यक्षेत्र का विवाद और घृणा अपराध बताया गया। +","parntu ek important institution ameriki sarkar ka dava hai ki unhen hadayat ke lakshy ka pata nahin tha. eph bi aaee ke pravakta ne kaha, kuchh bhi nahin hai jo aatnkvad ki or snket karta ho . eph bi aaee ke ek aur adhikari ne hadayat ke sambndh men kaha, aesa prtit hota hai ki vah vahan logon ko marne ke aashay se gaya tha . ham yah janne ka pryas kar rahe hain ki usne aesa kyon kiya sambhavit karnon men karyakshetr ka vivad aur ghrina apradh bataya gaya. +",6,4 +"In your provisions Allah has preferred some of you above others. But, those who have been preferred do not give their provisions to those whom their right hand possess so that they might be equal therein. What, do they vainly disbelieve the favor of Allah? +","और ख़ुदा ही ने तुममें से बाज़ को बाज़ पर रिज़क (दौलत में) तरजीह दी है फिर जिन लोगों को रोज़ी ज्यादा दी गई है वह लोग अपनी रोज़ी में से उन लोगों को जिन पर उनका दस्तरस (इख्तेयार) है (लौन्डी ग़ुलाम वग़ैरह) देने वाला नहीं (हालॉकि इस माल में तो सब के सब मालिक गुलाम वग़ैरह) बराबर हैं तो क्या ये लोग ख़ुदा की नेअमत के मुन्किर हैं +","aur allah hi ne tummen se baz ko baz par rizak daulat men tarjih di hai phir jin others ko provisions jyada di gee hai vah hand apni provisions men se un others ko jin par unka dastaras possess hai laundi ulam vaairah dene vala nahin halki is mal men to sab ke sab malik gulam vaairah barabar hain to kya ye hand allah ki neamat ke munkir hain +",6,1 +"Opening image ""% s"" +","""% s"" छवि सहेज रहा है +","s image sahej raha hai +",8,3 +"""'And in the End He will return you into the (earth), and raise you forth (again at the Resurrection)? +","फिर तुमको उसी में दोबारा ले जाएगा और (क़यामत में उसी से) निकाल कर खड़ा करेगा +","phir tumko usi earth dobara le jaega aur yamat earth usi se nikal kar khara karega +",4,4 +"The blisters break, leaving tender ulcers (sores) that may take two to four weeks to heal the first time they occur. +","फफोले फूट जाते हैं और नरम फुंसिया रह जाती हैं जिन्हें ठीक होने में दो से चार सप्ताह लग जाते हैं। ऐसा पहली बार होता है। +","blisters phoot jate hain aur tender phunsiya sores jati hain jinhen thik hone men do se char saptah lag jate hain. aesa first time hota hai. +",6,1 +"The kutas and salas over the mandapa are of a smaller size than those over the aditala as usual. +","मंडप के ऊपर के कूट और शाला आदितल के ऊपर के कूटों और शलाओं से छोटे हैं जो कि सामान्य है। +","salas ke oopar ke kutas aur shala aditala ke oopar ke kooton aur shalaon se smaller hain jo ki usual hai. +",8,3 +"It will be the Kingdom of God on earth. +","वह इस धरती पर प्रभुका राज्य होगा। +","vah is earth par prbhuka kingdom hoga. +",8,1 +"We have not heard of any such thing in the old religion. This is nothing but a fabrication. +","हम लोगों ने तो ये बात पिछले दीन में कभी सुनी भी नहीं हो न हो ये उसकी मन गढ़ंत है +","old such ne to ye thing pichhle din men kabhi suni bhi nahin ho n ho ye uski man fabrication hai +",4,1 +"These people , and hundreds of others like them , would remain unrecognised if it was n't for a media organisation that prepares annual reports for corporates . +","ऐसे सैकड़ें लग अनजान रह जाते , अगर कोलकाता स्थित मीड़िया संग न ' त्रिसीज ' न होता , जो कंपनियों की वार्षिक रिपोर्ट तैयार करता है . +","aese hundreds people anjan others jate , agar kolkata sthit media sng n unrecognised n hota , jo knpniyon ki annual reports taiyar karta hai +",7,1 +"At its tip it is toothed and sharply hooked. +","इसकी नोक दांतेदार और तीखे हुक वाली होती है. +","iski tip dantedar aur tikhe huk vali hoti hai +",10,0 +"This is not the case . +","लेकिन यह बात नही है . +","lekin yah case nahi hai +",9,0 +"You can do the number line if you need to. +","आप इसे नंबर लाइन कर सकते हैं यदि आपको ज़रूरत पड़े तो. +","aap ise number line kar sakte hain yadi aapko zaroorat pare to +",7,5 +"“If you 're not failing every now and again, it' s a sign you 're not doing anything very innovative. ” - Woody Allen +","“यदि आप बार बार नहीं गिर रहे हैं तो इसका अर्थ है कि आप कुछ नया नहीं कर रहे हैं. ”-वुडी एलन +","ydi aap bar bar nahin failing rahe hain to iska arth hai ki aap kuchh naya nahin kar rahe hain -vudi elan +",8,1 +"The opponents were waiting for the opportune moment to strike. +","प्रतिद्वंद्वी प्रहार हेतु उपयुक्त समय की प्रतीक्षा कर रहा था। +","prtidvndvi prhar hetu opportune moment ki prtiksha kar raha tha. +",8,1 +"Save changes to image ""% s"" before closing? +","छवि ""% s"" में बंद करने से पहले परिवर्तन सहेजें? +","image save men closing karne se pahle parivartan sahejen +",5,5 +"It treats of the sacrifices to the fire , and is recited in three different ways . +","इसमें यज्ञों का विवेचन है और इसका पाठ तीन भिन्न प्रकार से किया जाता +","ismen treats ka vivechan hai aur iska path tin bhinn prkar se kiya jata +",8,1 +"Rotate the image 90 degrees to the right +","छवि को 90 डिग्री पर दाहिने घुमाएँ +","image ko 90 degrees par dahine rotate +",7,1 +"In this way We showed Abraham Our kingdom of the heavens and the earth, so that he might have certainty of faith. +","और (जिस तरह हमने इबराहीम को दिखाया था कि बुत क़ाबिले परसतिश (पूजने के क़ाबिल) नहीं) उसी तरह हम इबराहीम को सारे आसमान और ज़मीन की सल्तनत का (इन्तज़ाम) दिखाते रहे ताकि वह (हमारी वहदानियत का) यक़ीन करने वालों से हो जाएं +","aur jis tarah hamne way ko dikhaya tha ki but abile parastish kingdom ke abil nahin usi tarah ham way ko sare heavens aur zamin ki saltanat ka intazam dikhate rahe certainty vah hamari vahdaniyat ka yain karne valon se ho jaen +",5,4 +"The type of navigation triggering this decision +","इस निर्णय को ट्रिगर करने वाले संचरण के प्रकार +","is decision ko trigar karne vale navigation ke type +",7,2 +"(a) dearness allowance or dearness pay unless it enters into the computation of superannuation or retirement benefits of the employee concerned; +","(क) महंगार्इ भत्ता या महंगार्इ वेतन, जब तक कि वह संबद्ध कर्मचारी के अधिवर्षिता या सेवानिवृत्ति संबंधी फायदों की संगणना करने में हिसाब में नहीं लिया जाता हो; +","k mahngari bhatta ya dearness pay, jab tak ki vah snbaddh superannuation or retirement ya retirement benefits phaydon ki snganna karne men hisab men nahin liya jata ho +",8,1 +"During 2010 - 11, the production of HINCOL was 159. 39 MT. +","वर्ष 2010-11 के दौरान, हिनकोल का उत्पादन 159.39 लाख टन था। +","varsh 2010-11 ke dauran, hinkol ka production 15939 lakh tan tha. +",7,2 +"Occurrences when an extension was installed +","एक्सटेंशन इंस्टॉल किए जाने की पुनरावृत्तियां +","ekstenshan installed kie jane ki punravrittiyan +",5,8 +"It gives me great pleasure to address this distinguished gathering of business participants. Other than working on business deals, such events are important platforms for deepening mutual engagement and interaction, and providing an opportunity to think creatively about ways to develop the potential of our relationship. +","मुझे व्यापार प्रतिभागियों के इस विशिष्ट समूह को संबोधित करते हुए अत्यंत प्रसन्नता हो रही है। व्यापार सौदों पर कार्य करने के अलावा, ऐसे समारोह परस्पर सम्बन्ध और बातचीत में घनिष्ठता लाने तथा अपने रिश्तों की संभावनाएं पैदा करने के तरीकों के बारे में रचनात्मक ढंग से विचार करने के महत्त्वपूर्ण मंच होते हैं। +","great business gathering ke is distinguished other ko snbodhit karte hue ways pleasure ho rahi deals business saudon par interaction karne ke alava , aese samaroh mutual engagement aur batchit men ghanishthta lane tatha apne rishton ki opportunity paida karne ke tarikon ke bare men rachnatmak events se vichar karne ke mahattvpoorn platforms hote hain. +",6,0 +"But it won 't be as good as Johan. +","लेकिन मम्मी वह जोहान जैसा अच्छा तो नहीं होगा। +","lekin mammi vah johan jaisa good to nahin won +",8,1 +"That they said (in boast), ""We killed Christ Jesus the son of Mary, the Messenger of Allah""; - but they killed him not, nor crucified him, but so it was made to appear to them, and those who differ therein are full of doubts, with no (certain) knowledge, but only conjecture to follow, for of a surety they killed him not: - +","और उनके इस कथन के कारण कि हमने मरयम के बेटे ईसा मसीह, अल्लाह के रसूल, को क़त्ल कर डाला-हालाँकि न तो इन्होंने उसे क़त्ल किया और न उसे सूली पर चढाया, बल्कि मामला उनके लिए संदिग्ध हो गया। और जो लोग इसमें विभेद कर रहे है, निश्चय ही वे इस मामले में सन्देह में थे। अटकल पर चलने के अतिरिक्त उनके पास कोई ज्ञान न था। निश्चय ही उन्होंने उसे (ईसा को) क़त्ल नहीं किया, +","aur unke is kathan ke karan ki hamne marayam ke bete christ masih , allah ke rasool , ko tl kar dala-halanki n to inhonne use tl kiya aur n use sooli par doubts , balki mamla unke lie sndigdh ho therein aur jo log ismen vibhed kar rahe hai , full hi ve is mamle men sandeh men the. conjecture par chalne ke atirikt unke pas koee knowledge n tha. full hi unhonne use christ ko tl nahin kiya , +",3,3 +"The trained phone operators can fill in your form over the telephone. +","फोन पर प्रशिक्षित आप्रेटरज़ क्लेम फार्म भी भर सकते हैं। +","phone par trained operators klem pharm bhi bhar sakte hain. +",9,2 +"The fact, however, is that our region remains amongst the least integrated and developed, underlining the need for greater co-operation and intensification of our trade effort. +","तथापि वास्तविकता यह है कि हमारा क्षेत्र कम एकीकृत और विकसित बना हुआ है, जो हमारे व्यापार प्रयास के अधिकाधिक सहयोग और तेजी की आवश्यकता दर्शाता है। +","tathapi vastvikta yah hai ki region remains kam integrated and developed bana huaa hai, jo hamare trade effort ke adhikadhik sahyog aur teji ki aavashyakta darshata hai. +",7,4 +"“O sister of Haroon, neither was your father an evil man nor was your mother of poor conduct! ” +","हे हारून की बहन! न तो तेरा बाप ही कोई बुरा आदमी था और न तेरी माँ ही बदचलन थी। "" +","he o ki sister ! n to tera father hi koee evil man tha aur n teri mother hi conduct thi. +",4,0 +"that everybody in the classroom needs to pay attention, +","ताकि कक्षा में सभी ध्यान दें, +","taki classroom men sabhi pay attention, +",7,1 +"Netaji received congratulations from Eamon De Velera , President of the Irish Free State . +","नेताजी को आइरिश फ्री स्टेट के अध्यक्ष इमौन डि बलेरा का बधाई संदेश भी मिला . +","netaji ko aairish phri irish free state imaun di balera ka badhaee sndesh bhi mila +",4,4 +"that everybody in the classroom needs to pay attention, +","ताकि कक्षा में सभी ध्यान दें, +","everybody classroom men sabhi attention den , +",6,0 +"Your Login session is expired now. +","आपका लॉगिन सत्र अब समाप्त होने वाला है। +","aapka login session ab samapt hone vala expired +",7,2 +"In the interview , Bharali has given a blow-by-blow account of what supposedly happened after the “ marriage ” . +","अपने इंटरव्यू में भराली ने ' शादी के बाद ' की हर घटना का क्रमवार यौरा दिया है . +","apne interview men bharali ne marriage ke bad ki account ghatna ka kramvar yaura diya hai +",7,3 +"These episodes may have insidious onset, may be prolonged and may sometimes recur even after taking some glucose. +","यह अक़्सर धीरे शुरू होती है, काफी लंबी चलती है तथ कभी-कभी ग़्लूकोज का सेवन करने के बाद भी हो सकती है. +","yah asar dhire shuroo hoti hai, kaphi lnbi chalti hai tath kabhi-kbhi taking some glucose karne ke bad bhi ho sakti hai +",5,5 +"Special schemes for SHGs and to empower women folk +","स्वयं सहायता समूह के लिए विशेष योजना और महिलाओं को सशक्त बनाना +","svyn sahayta samooh ke lie special schemes aur mahilaon ko sashakt empower +",8,2 +"And if their speed is zero, they 'll maintain that restfulness. +","और यदि उनकी गति शून्य है, तो वे उस restfulness को बनाए रखने देंगे। +","aur yadi unki speed shoony hai , to ve us restfulness ko banae rakhne denge. +",9,0 +"Delete CA certificate “% {CERTIFICATENAME} ”? CA +","प्रमाणपत्र “% {CERTIFICATENAME} ” हटाएं? +","prmanapatr CERTIFICATENAME delete +",8,1 +"For this reason first he went to Brahma samaaj but his mind was not happy there. +","इस हेतु वे पहले ब्रह्म समाज में गए किंतु वहाँ उनके चित्त को संतोष नहीं हुआ। +","is reason ve pahle brahm samaj men ge kintu vahan unke chitt ko sntosh nahin huaa. +",9,0 +"Do not be like those who, after they had been given clear evidence, split into factions and differed among themselves: a terrible punishment awaits such people. +","तुम उन लोगों की तरह न हो जाना जो विभेद में पड़ गए, और इसके पश्चात कि उनके पास खुली निशानियाँ आ चुकी थी, वे विभेद में पड़ गए। ये वही लोग है, जिनके लिए बड़ी (घोर) यातना है। (यह यातना उस दिन होगी) +","tum un logon ki tarah n ho jana jo factions men par evidence , aur iske pashchat ki unke pas clear nishaniyan aa chuki thi , ve factions men par ge. ye vahi people hai , jinke lie bari terrible punishment hai. yah punishment us din hogi +",7,1 +"Delirium produced due to the action of a poison is known as toxic delirium. +","विष की क्रिया के कारण उत्पन्न चित्त विपर्यय को विषजन्य चित्त विपर्यय कहा जाता है। +","vish ki kriya ke produced due chitt viparyay ko vishajany chitt viparyay kaha jata hai. +",6,6 +"The parent industry itself being in infancy , the market for machinery was limited and private enterprise was not expected to venture into this field . +","मूल उद्योग भी चूंकि अपनी शैशवावस्था में था , मशीनों के लिए बाजार सीमित था और निजी उद्यमियों से यह आशा नहीं की जा सकती थी कि वे इस क्षेत्र में आगे आयें . +","parent industry bhi choonki apni infancy men tha , machinery ke lie market simit tha aur private udymiyon se yah aasha nahin ki ja sakti thi ki ve is field men aage venture +",7,2 +"No other applications are available to view this file. If you copy this file onto your computer, you may be able to open it. +","इस फाइल को देखने के लिये कोई अन्य अनुप्रयोग उपलब्ध नहीं है. अगर आफ इस फाइल को कंप्यूटर पर कॉपी करते हैं, आप इसे खोलने में सक्षम हो सकते हैं. +","is view this file ke liye koee any applications upalabdh nahin hai agar aaph is file ko knpyootar par kpi karte hain, aap ise kholne men saksham ho sakte hain +",7,1 +"We can no longer accept many of the ancient beliefs and customs; we have no more faith in them, in Asia or in Europe or America. +","अब हम बहुत-से पुराने आचार-विचारों, पुराने रीति-रिवाजों को बदस्तूर नहीं कबूल करते। +","ab ham bahut-se purane aachar-vicharon, purane riti-rivajon ko badastoor nahin kabool karte. +",9,1 +"Cannot save to file ""{0}"". +","""{0}"" फ़ाइल में संग्रहित नहीं कर सकता है. +","0 fail men sngrhit nahin kar sakta hai +",7,1 +"To account for some of the baffling features of the continents and oceans the great British geologist Arthur Holmes 1928, visualised some kind of convection currents in the mantle which caused movement of the crust. +","महाद्वीपीय तथा महासागरों की कुछ चौंका देने वाली विशिष्टताओं की व्याख्या करने के लिए विख्यात ब्रिटिश भूवैज्ञानिक आर्थर 141/भूमंडलीय विवर्तनिकी होम्स 1928 ने यह कल्पना की कि पृथ्वी के प्रावार में कुछ ऐसी संवहन धाराएं उत्पन्न हुईं जो भूपृष्ठ के संचलन का कारण बनीं। +","mahadvipiy tatha mahasagron ki kuchh chaunka dene vali features ki vyakhya karne ke lie great british geologist arthur 141bhoomndliy vivartniki holmes continents ne yah kalpna ki ki prithvi ke mantle men kuchh aesi convection currents utpann hueen jo crust ke movement ka kind banin. +",8,2 +"He said, ‘Indeed you cannot have patience with me! +","उसने कहा, ""तुम मेरे साथ धैर्य न रख सकोगे, +","usne kaha , tum mere sath patience n sakoge , +",7,4 +"“ The States , ” he says , ” are still so numerous in India that they offer a grave conundrum in evolution to which no solution is at present forthcoming . +","वह लिखतें : हिंदुस्तान में इतनी ज़्यादा रियासतें हैं कि वे यहां की तरक़्की के रास्ते में एक बहुत बड़ी पहेली हैं . +","vah likhten : hindustan men itni zyada riyasten hain ki ve yahan ki taraki ke raste men ek bahut bari paheli hain +",4,7 +"Can a spectator 's enjoyment of a performance and the devotion of a devotee in a ritual be equated? +","क्या दर्शक के आनंद और नर्तक भक्त की भक्ति को एक कहा जा सकता है? +","kya spectator ke enjoyment aur ritual devotee ki devotion ko ek kaha ja sakta hai +",9,1 +"Excepting those who thereafter shall repent and make amends. Verily Allah is Forgiving, Merciful. +","सिवाय उन लोगों के जो इसके पश्चात तौबा कर लें और सुधार कर लें। तो निश्चय ही अल्लाह बहुत क्षमाशील, अत्यन्त दयावान है +","excepting un logon ke jo iske pashchat repent and make aur sudhar kar len. to nishchay hi allah is forgiving, atyant dayavan hai +",5,3 +"and the reason for that is it 's entirely dark in there - +","और उसका कारण है की वहां धुप्प अंधकार है। +","aur uska reason hai ki vahan dhupp andhkar dark +",8,1 +"the simplest way to do it is to tell their story, +","इसका सबसे आसान तरीका है उनकी कहानी कहो, +","iska sabse simplest tarika hai unki story kaho, +",10,0 +"But there are signs of a renaissance and, given that youth organizations provide adolescents' main experience of democracy, their strengthening will be an essential buttress to future human rights in the country. +","युवा संगठन किशोरों को लोकतंत्र का अनुभव प्रदान करते हैं इसलिए उन्हें मजबूत करने से भविष्य में देश में मानव अधिकारों की आवश्यक बुनियाद तैयार होगी। +","youth organizations adolescents ko democracy ka experience prdan karte hain islie unhen strengthening karne se bhavishy men country men human rights ki essential buniyad taiyar hogi. +",8,3 +"There are eighteen thousand verses in the BrahmavaivarthPuran. +","ब्रह्मवैवर्तपुराण में श्लोकों की संख्या अठारह हजार हैं। +","verses men shlokon ki snkhya eighteen hajar hain. +",8,2 +"The existing or ongoing projects in the MMP category, being implemented by various Central Ministries, States, and State Departments would be suitably augmented and enhanced to align with the objectives of NeGP. +","एमएमपी श्रेणी में मौजूदा या जारी परियोजनाओं का कार्यान्वायन विभिन्न केंद्रीय मंत्रालयों, राज्यों और राज्यर विभागों द्वारा उचित रूप से बढ़ाया जाएगा तथा इसे एनईजीपी के उद्देश्योंे के साथ मिलने के लिए उन्नात बनाया जाएगा। +","emempi existing or ongoing ya jari pariyojnaon ka karyanvayan vibhinn central ministries, rajyon aur rajyar vibhagon dvara uchit roop se baaya jaega tatha ise eneejipi ke uddeshyone ke sath milne ke lie unnat banaya jaega. +",8,0 +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","fact men aperture time aesi exposure ko diya gaya vigopan time hai jo kisi optical system aperture ke madhyam se image plane men kisi kendrbindu par aati focus +",5,4 +"A skilled or artistic worker or craftsman. +","कोई कुशल या कलात्मक मज़दूर या कारीगर। +","koee craftsman ya artistic worker ya karigar. +",9,1 +"And dread the Day when no one shall avail anyone in any way; nor shall any ransom be accepted from anyone; nor shall intercession profit any body; nor shall the offenders be helped from any quarter. +","और उस दिन से डरो जिस दिन कोई शख्स किसी की तरफ से न फिदया हो सकेगा और न उसकी तरफ से कोई मुआवेज़ा क़ुबूल किया जाएगा और न कोई सिफारिश ही फायदा पहुचाँ सकेगी, और न लोग मदद दिए जाएँगे +","aur us din se daro jis din koee shakhs kisi ki taraph se n phidya ho sakega aur n uski taraph se koee muaaveza ubool kiya jaega aur n koee sipharish hi phayda intercession profit, aur n log madad die jaenge +",4,4 +"The main qualification for this is: +","इसके लिए मुख्य योग्यता है :| +","iske lie main qualification hai : +",9,2 +"From popular home stays where one can get a firsthand experience of rural Sikkim to endless possibilities for adventure sports. +","यहां के लोकप्रिय घरेलू आश्रय जहां आपको ग्रामीण सिक्किम का प्रत्यक्ष अनुभव होता है और रोमांचक खेलों की असीमित संभावनाएं उपलब्ध हैं। +","yahan ke popular home stays jahan aapko rural sikkim ka firsthand experience hota hai aur romanchak possibilities ki asimit snbhavnaen upalabdh hain. +",9,1 +"Allows to burn files not stored locally +","उन फाइलों को लिखने देता है जो स्थानीय रूप से जमा नहीं किए गए +","un allows ko likhne deta hai jo sthaniy roop se jama nahin kie ge +",8,2 +"She 's a woman of mental clarity and administrative purposefulness. +","वे साफ सोच और प्रशासन को उद्देश्यपूर्ण काम में लगाए रखने वाली महिल हैं. +","ve mental soch aur administrative ko uddeshypoorn kam men lagae rakhne vali woman hain +",8,1 +"Issuer:% s Subject:% s Fingerprint:% s Signature:% s +","निर्गमकः% s विषयः% s फिंगरप्रिंटः% s हस्ताक्षरः% s +","nirgamka s vishya s phingaraprinta s hastakshra s +",6,2 +"The President said the North Eastern Hill University (NEHU) has acted as a centre of empowerment of the people in North-Eastern region. He expressed his happiness over gender parity in the student population, with a 1:1 male-female ratio and the fact that women outperform men beyond the ratio. +","राष्ट्रपति ने कहा कि पूर्वोत्तर पर्वतीय विश्वविद्यालय ने पूर्वोत्तर क्षेत्र में लोगों के सशक्तीकरण के केन्द्र के रूप में काम किया है। उन्होंने विद्यार्थियों में 1:1 के पुरुष महिला अनुपात के साथ लैंगिक समानता पर तथा इस बात पर प्रसन्नता व्यक्त की कि महिलाओं ने पुरुषों को औसत से पीछे छोड़ दिया है। +","rashtrapti ne kaha ki eastern hill university ne poorvottar kshetr men logon ke centre of empowerment ke roop men kam kiya hai. unhonne vidyarthiyon men 1:1 ke purush mahila anupat ke sath laingik samanta par tatha is bat par prasannta vyakt ki ki mahilaon ne purushon ko ausat se pichhe chhor diya hai. +",8,3 +"Have you not seen that they wander distract in every valley, +","क्या तुमने देखा नहीं कि वे हर घाटी में बहके फिरते हैं, +","kya tumne dekha nahin ki ve har ghati men bahke phirte hain, +",9,1 +"It is also possible that with limited opportunities , there may be a competition amongst the ' old ' themselves not to talk of their conflicts with younger generations . +","यह भी संभव है कि सीमित अवसरों के कारण नौजवान पीढ़ी से प्रतिस्पर्धा की कौन कहे वृद्धों में आपस में ही प्रतिस्पर्धा हो जाए . +","yah bhi possible hai ki limited opportunities ke karan naujvan generations se competition ki kaun kahe old men aapas men hi competition ho jae +",8,1 +"[country music plays, alarm beeping] +","[देश संगीत नाटकों, अलार्म beeping] +","country music plays , alarm beeping +",8,4 +"In collaboration with the Small Industries Development Bank of India (SIDBI), financial assistance is provided to set up projects in tiny / small scale industrial sector, service enterprises and also for undertaking expansion, technology upgradation, modernisation and revival of viable sick units in SSI Sector. +","भारतीय लघु उद्योग विकास बैंक (सिडबी) के सहयोग से छोटे/लघु उद्योग और सेवा उद्यम लगाने के साथ ही लघु उद्योगों की रुग्ण इकाइयों के प्रौद्योगिकी उन्नयन, विस्तार और आधुनिकीकरण में वित्तीय सहयोग दिया जाता है +","bhartiy laghu industries development bank sidbi ke sahyog se chhotelghu udyog aur seva udyam lagane ke sath hi laghu udyogon ki rugn ikaiyon ke technology upgradation, vistar aur aadhunikikaran men vittiy sahyog diya jata hai +",7,0 +"For more details log on to source link: http: / / www. orissa. gov. in / commerce% 26transport / +","अधिक जानकारी के लिए देखेंः http: / / www. orissa. gov. in / commerce% 26transport / +","adhik jankari ke lie dekhena http: www orissa gov in commerce 26transport +",6,3 +"to run age - old programs on a modern computer. +","एक आधुनिक कंप्यूटर पर उम्र के पुराने कार्यक्रमों को चलाना. +","ek modern computer par age ke purane karyakrmon ko run +",5,6 +"But what could they do with a patient who would not listen to them? +","पर जो रोगी उनकी बात माने नहीं, उसके लिए वे क्या कर सकते थे? +","par jo patient unki bat mane nahin , uske lie ve kya kar sakte the +",8,1 +"It shduld be recommended by the Tahsil Committee; 4. +","3. तहसील कमेटी द्वारा उसकी सिफारिश की जानी चाहिये। +","3 tahsil committee dvara uski sipharish ki jani chahiye. +",9,2 +"The amount of commission paid to the broker. +","दलाल को दी जाने वाली कमीशन की राशि। +","broker ko di jane vali commission ki amount +",9,0 +"the light water reactor, the heavy water reactor would be around very long. They were just +","हल्के जल रिएक्टर, भारी जल रिएक्टर के आसपास बहुत लंबी होगी. वे सिर्फ थे +","light water reactor , heavy water reactor ke aaspas bahut lnbi hogi ve sirph the +",9,0 +"Set the row to use as dynamic column headers when speaking calc cells. +","गतिशील कॉलम हेडर के रूप में प्रयोग के लिए पंक्ति सेट करें जब कैल्क सेल बोला जा रहा हो. +","dynamic column headers ke roop men pryog ke lie pnkti set karen jab speaking calc cells ja raha ho +",9,2 +"I have one climate crisis; +","मैं पास एक जलवायु संकट है +","main pas ek climate crisis hai +",7,5 +"The type ""% s"" is not a valid type. +","% s नियमित फाइल नहीं है +","s valid type nahin hai +",9,1 +"The unexpected leaders were chosen in polling. +","असंभावित नेताओं को इस मतदान में चुना गया। +","unexpected leaders ko is chosen in polling gaya. +",6,1 +"into a school. Everybody is wearing jeans, everybody is the same. +","एक स्कूल में, हर कोई जींस पहन रहा है, हर कोई एक सामान है +","ek school men , everybody koee jeans pahan raha hai , everybody koee ek saman hai +",7,2 +"A silly position for a fellow of eighteen ! +","वैसे यह हास्यास्पद स्थिति है , एक अट्ठारह वर्ष के लड़के के लिए ! +","vaise yah hasyaspad sthiti hai , ek silly position ke larke ke lie ! +",6,4 +"He commenced writing it on August 2, 1888, completed it on September 9, 1888, and released it in December. +","दूसरी अगस्त सन् 1888 को लिखनी शुरु की और 9 सितम्बर सन् 1888 को उसे पूर्ण किया तथा दिसम्बर में प्रकाशित किया। +","doosri august san 1888 ko likhni shuru ki aur 9 september san 1888 ko use poorn kiya tatha december men prkashit kiya. +",9,0 +"Modify network connections for all users +","सभी उपयोगकर्ताओं के लिए संजाल कनेक्शन संशोधित करें +","sabhi users ke lie modify network connections karen +",7,1 +"Unable to read file: '% 1' +","फ़ाइलः '% 1' को पढ़ने में अक्षम. +","faila 1 ko unable to read +",5,2 +"We are doing this by testing the blood from some patients, including babies. +","इस काम के लिए हम शिशुओं समेत कुछ रोगियों के खून की जाँच कर रहे हैं। +","is kam ke lie ham babies samet kuchh patients ke blood ki janch kar rahe hain. +",8,1 +"Hell shall be their bed, and over them will be coverings of fire, thus shall We reward the wrongdoers. +","और उनके ऊपर से (आग ही का) ओढ़ना भी और हम ज़ालिमों को ऐसी ही सज़ा देते हैं और जिन लोगों ने ईमान कुबुल किया +","aur unke oopar se aag hi ka fire bhi aur ham wrongdoers ko aesi hi reward dete hain aur jin logon ne eeman kubul kiya +",6,2 +"Thus, we see how critical the handloom sector is to the simultaneous realization of several seemingly disparate national objectives: employment generation, rural development, social justice and empowerment, women 's welfare, preservation and promotion of artisanry, and checking the migration of rural families to urban areas. +","अतः हम समझ सकते हैं कि रोजगार जुटाने, ग्रामीण विकास, सामाजिक न्याय, महिला कल्याण, कारीगरों और उनकी कला को संरक्षण तथा प्रोत्साहन और ग्रामीण लोगों का शहरों तथा नगरों की तरफ पलायन पर अंकुश लगाने जेसे विभिन्न राष्ट्रीय लक्ष्यों को प्राप्त करने के अभियान में हथकरघा क्षेत्र कितना महत्वपूर्ण है। +","ata ham samajh sakte hain ki rojgar jutane, gramin vikas, social justice, mahila kalyan, karigron aur unki kala ko preservation and promotion aur gramin logon ka shahron tatha nagron ki taraph palayan par ankush lagane jese vibhinn rashtriy lakshyon ko prapt karne ke abhiyan men hathakargha kshetr kitna mahatvpoorn hai. +",8,1 +"and seek forgiveness from Allah. Surely Allah is All - Forgiving, All - Compassionate. +","अल्लाह से क्षमा की प्रार्थना करो। निस्संदेह अल्लाह बहुत क्षमाशील, दयावान है +","allah se forgiveness ki prarthna karo. nissndeh allah bahut forgiving , dayavan hai +",10,0 +"Ready to create file systems and mount partitions? +","फाइलतंत्र व माउन्ट प्वाइंट्स बनाने के लिए तैयार हैं? +","file v mount partitions banane ke lie ready hain +",8,1 +"Please add songs to the project. +","कृपया गाने को परियोजना में जोड़ें. +","kripya songs ko project men add +",9,0 +"Recycled paper uses less natural resources and less toxic chemicals in paper making process. +","कागज बनाते समय पुनः चक्रित कागज कम प्राकृतिक संसाधन और कम विषाक्त रसायन का उपयोग करता है। +","paper making process puna chakrit kagaj kam natural resources aur kam toxic chemicals ka upyog karta hai. +",7,1 +"And who has a better religion than he who submits himself entirely to Allah? And he is the doer of good (to others) and follows the faith of Ibrahim, the upright one, and Allah took Ibrahim as a friend. +","और दीन (धर्म) की स्पष्ट से उस व्यक्ति से अच्छा कौन हो सकता है, जिसने अपने आपको अल्लाह के आगे झुका दिया और इबराहीम के तरीक़े का अनुसरण करे, जो सबसे कटकर एक का हो गया था? अल्लाह ने इबराहीम को अपना घनिष्ठ मित्र बनाया था +","aur din religion ki spasht se us vyakti se good kaun ho sakta hai , jisne apne aapko better ke aage doer diya aur ibrahim ke tarie ka anusaran kare , jo sabse katakar ek ka ho gaya tha better ne ibrahim ko apna ghanishth friend banaya tha +",7,0 +"Repel evil by what is best; We know best what they describe. +","और बुरी बात के जवाब में ऐसी बात कहो जो निहायत अच्छी हो जो कुछ ये लोग (तुम्हारी निस्बत) बयान करते हैं उससे हम ख़ूब वाक़िफ हैं +","aur buri bat ke javab men aesi bat kaho jo nihayat achchhi ho jo kuchh ye log tumhari nisbat bayan karte hain usse ham oob vaiph hain +",6,5 +"to run age - old programs on a modern computer. +","एक आधुनिक कंप्यूटर पर उम्र के पुराने कार्यक्रमों को चलाना. +","ek modern computer par age ke purane programs ko chalana +",8,4 +"And she conceived him, and she withdrew with him to a far place. +","फिर उसे उस (बच्चे) का गर्भ रह गया और वह उसे लिए हुए एक दूर के स्थान पर अलग चली गई। +","phir use us bachche ka garbh rah gaya aur vah use lie hue ek door ke place par alag chali gee. +",8,4 +"Develop Goa as the 'Export / Import Hub' and thus encourage export - oriented industries +","गोवा को ‘आयात/निर्यात हब’ के रूप में विकसित करना और इस प्रकार से निर्यात केंद्रित उद्योगों को बढावा देना। +","gova ko aayatniryat hab ke roop men viksit karna aur is prkar se niryat kendrit udyogon ko badhava dena. +",9,0 +"How [dreadful] was My punishment and My warning! +","तो (उनको) मेरा अज़ाब और डराना कैसा था +","to unko mera azab aur warning kaisa tha +",7,0 +"Despite this ugly record, the U. S. government widely accepts CAIR as representing Islam. The White House invites it to functions, the State Department links to its Web page and Democratic senators rely on its research. In New York City, the mayor appoints its general counsel to the Human Rights Commission and the police department hosts its “sensitivity training” seminar. In Florida, public schools invite it to teach “diversity awareness. ” +","इस कुरूप रिकार्ड के बाद भी अमेरिका सरकार सी. ए. आई. आर को व्यापक रूप से इस्लाम को प्रतिनिधि मानती है। व्हाइट हाउस इसे कार्यक्रमों में बुलाता है, राज्य विभाग ने इसके वेब पृष्ठों के लिंक दिये हैं और डेमोक्रेट सीनेटर इसके शोध पर निर्भर करते हैं। न्यूयार्क शहर में इसके सदस्य को मानवाधिकार आयोग में नियुक्त किया जाता है और पुलिस इसके संवेदनशील प्रशिक्षण की निगरानी करती है। +","is ugly record ke bad bhi amerika sarkar si e aaee aar ko vyapak roop se islam ko prtinidhi manti hai. vhait haus ise karyakrmon men bulata hai, rajy vibhag ne iske veb prishthon ke link diye hain aur demokret sinetar iske shodh par nirbhar karte hain. nyooyark shahar men iske sadasy ko manvadhikar aayog men niyukt kiya jata hai aur pulis iske snvedanshil prshikshan ki nigrani karti hai. +",8,0 +"Drinking the way thirsty camels drink. +","और पियोगे भी तो प्यासे ऊँट का सा (डग डगा के) पीना +","aur piyoge bhi to thirsty camels ka sa dag daga ke drinking +",7,1 +"Could not decode private key. +","निजी कुंजी को विगोपित नहीं कर सका. +","private key ko vigopit nahin kar saka +",8,1 +"But the folk writer developed an elaborate story about her. +","किंतु लोक-साहित्यकारों ने उसकी कहानी विस्तार से सुनायी। +","kintu folk ne uski elaborate story se sunayi. +",5,1 +"During this period of his stay in London he visited the Houses of Parliament and heard Gladstone and John Bright speak on the Irish Home Rule. +","लंदन में इस प्रवास के दौरान उन्होंने संसद भवन को देखा और आयरिश होम रूल पर ग्लैडस्टोन और जॉन ब्राइट को भाषण देते हुए सुना. +","lndan men is prvas ke dauran unhonne snsad bhavan ko dekha aur irish home rule par glaidaston aur jn brait ko bhashan dete hue suna +",6,6 +"Set the browser to view only this genre +","ब्राउजर को सिर्फ ये शैल प्रदर्षित करने के लिए निश्चित करें +","set the browser ye shail genre karne ke lie set karen +",6,1 +"Shah 's heart was deeply moved and he sent back the following message through the same messenger: Grieve not, for I am not far away; Physically away, yet really I am one with your noble self. +","शाह लतीफ का हृदय विचलित हो उठा और उन्होंने उसी सन्देशवाहक के द्वारा निम्नलिखित सन्देश भेजा: दूखी मत होओ, मैं दूर नहीं हूँ, देखने में दूर, पर दोनों की हद एक है। +","shah latiph ka heart same ho messenger aur unhonne usi sandeshvahak ke dvara following message bheja : dookhi noble hoo , i door nahin self , dekhne men door , par donon ki grieve ek hai. +",4,1 +"The Soviet Union shares the Indian view on the maintenance of peace and the elimination of racialism and colonialism. +","शांति बनाए रखने और रंगभेद तथा उपनिवेशवाद को समाप्त करने के बारे मे सोवयत संघ और भारत के विचार एक जैसे हैं। +","shanti banae rakhne aur racialism and colonialism ko samapt karne ke bare me sovayat sngh aur bharat ke vichar ek jaise hain. +",9,0 +"The East India Company and the British authorities, however, treated him as a pensioner entitled only to the nominal status of a king whose jurisdiction lay within the walls of the Red Fort and who was entitled to a monthly stipend of Rs one lakh. +","यह अलग बात है कि ईस्ट इंडिया कंपनी और ब्रिटिश सरकार उन्हें सिर्फ एक पेंशनभोगी और नाममात्र का शासक समझती थी, जो हर माह एक लाख रूपए के वजीफे का हकदार था और जिसका अधिकार-क्षेत्र लाल किले की चारदीवारी तक सीमित था. +","yah british bat hai ki east india company aur british sarkar unhen sirph ek pensioner aur nominal ka king samajhti thi , jo authorities monthly ek rs roope ke vajiphe ka hakdar tha aur jiska adhikar-kshetr red fort ki walls tak simit tha +",7,4 +"Child process stopped by signal %ld +","संतति प्रक्रिया %ld संकेत के द्वारा रोका गया +","child process ld signal ke dvara roka gaya +",8,1 +"Similar to what we have in Buriair Sadhu and Kakadeuta aru Natilora, there is also in it a genuine desire on the part of the author to quit the artificial and the rococo and to be simple, natural and spontaneous. +","‘बुडि आइर साधु’ और ‘कका-देउता आरू नातिलोरा’ की भॉँति इस कृति में भी लेखक कृत्रिमता को त्यागने का प्रयत्न करके सरल, सहज और अन्तःस्फूर्त्त पर बल देता दिखाई पड़ता है। +","budi buriair sadhu aur kaka-deuta aru natilora ki bhnti is part men bhi author kritrimta ko tyagne ka prayatn karke simple , natural aur antasphoortt par artificial desire dikhaee parta similar +",5,2 +"Mark the selected messages as having been read +","चयनित संदेश पढ़े गए के रूप में चिह्नित करें +","chaynit messages read ge ke roop men mark karen +",8,1 +"Failed to copy a task into the task list '{0}' +","किसी कार्य सूची को इस कार्य में पाने में असमर्थ. +","kisi task list ko is task men pane men failed +",7,3 +"“And if you deny, then many nations have denied before you; and the Noble Messenger is not responsible except to plainly convey (the message). ” +","और यदि तुम झुठलाते हो तो तुमसे पहले कितने ही समुदाय झुठला चुके है। रसूल पर तो बस केवल स्पष्ट रूप से (सत्य संदेश) पहुँचा देने की ज़िम्मेदारी है। "" +","aur yadi tum jhuthlate ho to tumse pahle many hi samuday jhuthla chuke nations noble par to bas keval spasht roop se saty message pahuncha dene ki responsible nations +",6,0 +"You must enable remote connections if you want to use Chromoting to access this computer. +","यदि आप इस कंप्यूटर पर पहुंचने के लिए Chromoting का उपयोग करना चाहते हैं, तो आपको दूरस्थ कनेक्शन सक्षम करने होंगे. +","yadi aap is knpyootar par pahunchne ke lie Chromoting ka upyog karna chahte hain, to aapko enable remote connections karne honge +",6,1 +"Though they had improved upon it in some ways but ' the thing ' had become ' totally different from what it originally was . ' +","यद्यपि उन्होंने उसमें थोड़ा-बहुत संशोधन किया है ? किंतु जो असल बात थी वह बिलकुल बदल गई है . ? +","yadypi unhonne usmen thora-bhut snshodhan kiya hai ways jo asal thing thi vah bilkul badal gee hai +",7,2 +"India and South Africa share a longstanding friendship that is rooted in history and our shared values. +","भारत और दक्षिण अफ्रीका के बीच संबंधों की जड़ें इतिहास और साझे मूल्यों में स्थापित हैं. +","india and south aphrika ke bich snbndhon ki jaren itihas aur sajhe moolyon men sthapit hain +",8,1 +"Without bridging the information gap, such disparity will persist. Of course, thanks to modern communication system, the asymmetry in information access is slowly getting eroded. +","सूचना के इस अंतर को पाटे बिना ऐसी असमानता बनी रहेगी। वास्तव में आधुनिक संचार प्रणाली का धन्यवाद, जिससे सूचना तक पहुंच में यह असंतुलन धीरे-धीरे समाप्त हो रहा है। +","information ke is gap ko pate such aesi disparity bani rahegi. course men aadhunik snchar system ka thanks , jisse information tak access men yah asntulan dhire-dhire samapt ho raha hai. +",6,3 +"seeing towards down after the noon, we can see pollution in Los Angeles into the moor of mountains +","नीचे देखने पर सामने की पहाडी के मैदान में दोपहर के बाद वायु प्रदूषण साफ साफ़ लोस अन्जेल्स में दिखता है. +","niche dekhne par samne ki pahadi ke maidan men dopahar ke bad vayu prdooshan saph saf moor of mountains dikhta hai +",5,3 +"In 1895 she went to england for higher studies and along with studies she also wrote poetry. +","वे १८९५ में उच्च शिक्षा प्राप्त करने के लिए इंग्लैंड गईं और पढ़ाई के साथ-साथ कविताएँ भी लिखती रहीं। +","ve १८९५ men higher studies prapt karne ke lie inglaind geen aur paaee ke sath-sath poetry bhi likhti rahin. +",8,1 +"I told him that the Congress bow was a hefty bow and had many strings to it and many more would be added to it. +","मैंने उसे बतायाZ कि कांग्रेस वैसे ही एक ताकतवर संस्था है, इसकी कई शाखाएं-प्रशाखाएं हैं तथा इसमें कुछ और भी जुड़ेंगी. +","i use batayaZ ki congress more hi ek strings snstha hai , iski kee shakhaen-prshakhaen hain tatha ismen kuchh aur bhi many +",6,0 +"The result of the operation is {0: # # 0. # # #}. +","इस गणना का परिणाम है {0: ##0. ###} +","is operation ka result hai 0 : 0 +",7,2 +"We dedicate this sacred day to their memory. +","आज का यह पवित्र दिन हम उनकी स्मृति में समर्पित करते हैं। +","aaj ka yah sacred day ham unki memory men samarpit karte day +",8,1 +"Evidence of satisfactory completion of institutional arrangements +","संस्थागत व्यवस्था के संतोषजनक पूरा होने की साक्ष्य +","institutional arrangements ke satisfactory poora hone ki evidence +",9,2 +"So black you would not be able to see him in the dark. +","इतना घना काला कि अंधेरे में दिखाई न देता था। +","itna ghana kala ki andhere men dikhaee n deta tha. +",5,9 +"We are fortunate in having an adequate number of experts. +","सौभाग्य से हमारे पास इस प्रकार से विशेषज्ञ पर्याप्त संख्या में हैं। +","fortunate se hamare pas is prkar se experts adequate number men hain. +",7,2 +"(c) assessment or reassessment, if any, has been made, before the date of receiving the books of account or documents or assets seized or requisitioned by the Assessing Officer having jurisdiction over such other person, such Assessing Officer shall issue the notice and assess or reassess total income of such other person of such assessment year in the manner provided in section 153A. +","(ग) निर्धारण या पुनर्निर्धारण, यदि कोर्इ हो, किया गया है, वहां ऐसा निर्धारण अधिकारी धारा 153क में उपबंधित रीति में सूचना जारी करेगा और उस निर्धारण वर्ष के लिए ऐसे अन्य व्यक्ति की कुल आय का निर्धारण या पुनर्निर्धारण करेगा। +","g nirdharan ya punarnirdharan, yadi kori ho, kiya gaya hai, vahan aesa nirdharan adhikari dhara 153k men upbndhit riti men soochna jari karega aur us nirdharan varsh ke lie aese any vyakti ki kul aay ka nirdharan ya punarnirdharan karega. +",7,2 +"The process of retaining of a rate of exchange in order to stabilise the market (generally by govt. or authority concerned). +","बाजार में स्थायित्व बनाए रखने के लिए विनिमय दरों को बनाए रखना (सामान्यतः यह कार्य सरकार या संबंधित प्राधिकृति द्वारा किया जाता है)। +","market men sthayitv retaining order ke lie rate daron ko retaining rakhna samanyta yah kary govt ya snbndhit process dvara kiya jata hai . +",5,0 +"So black you would not be able to see him in the dark. +","इतना घना काला कि अंधेरे में दिखाई न देता था। +","itna able black ki andhere men dikhaee n deta tha. +",4,4 +"Two rooms inside the fort had been converted into chapels, one for Anglican worship, the other for Roman Catholic. +","किले के अंदर दो कमरों को गिरजाघरों में तब्दील कर दिया गया था, एक एंगलीकन धर्मोपासना के लिए और दूसरा रोमन कैथोलिक उपासना के लिए। +","fort ke andar do rooms ko girjaghron men tabdil kar diya gaya tha , ek englikan dharmopasna ke lie aur other roman catholic worship ke lie. +",9,1 +"Branch audit is conducted by a firm assigned the job on yearly basis. +","शाखा लेखा परीक्षा बाहरी फर्म द्वारा, जिसे वार्षिक रूप से यह कार्य सौंपा जाता है, की जाती है। +","branch audit pariksha bahri pharm dvara, jise varshik roop se yah kary saunpa jata hai, ki jati hai. +",4,6 +"That however, at least as a practical force, comes in at a later stage of high perfection. +","किन्तु यह स्थिति, कम-से-कम एक व्यावहारिक शक्ति के रूप में, उच्च सिद्धि की एक बाद की अवस्था में ही प्राप्त होती है। +","kintu yah later , kam-se-kam ek practical force ke least men , high perfection ki ek bad ki avastha men hi prapt hoti hai. +",6,4 +"If they try to force you to associate with Me that of which you have no knowledge, do not obey them. Live with them honourably in the world, but follow the way of him who turns to Me. Your returning is to Me in the end, when I will tell you what you did. +","और अगर तेरे माँ बाप तुझे इस बात पर मजबूर करें कि तू मेरा शरीक ऐसी चीज़ को क़रार दे जिसका तुझे इल्म भी नहीं तो तू (इसमें) उनकी इताअत न करो (मगर तकलीफ़ न पहुँचाना) और दुनिया (के कामों) में उनका अच्छी तरह साथ दे और उन लोगों के तरीक़े पर चल जो (हर बात में) मेरी (ही) तरफ रुजू करे फिर (तो आख़िर) तुम सबकी रुजू मेरी ही तरफ है तब (दुनिया में) जो कुछ तुम करते थे +","aur agar tere man bap tujhe is bat par majboor karen ki too mera sharik aesi chiz ko rar de jiska tujhe ilm bhi nahin to too ismen unki itaat n karo magar taklif n pahunchana aur duniya ke kamon men unka achchhi tarah sath de aur un logon ke tarie par chal jo har bat men meri hi taraph rujoo kare phir to aair tum sabki rujoo meri hi taraph hai tab duniya men jo kuchh tum karte the +",4,6 +"Can't copy file over directory +","निर्देशिका पर फ़ाइल की नक़ल नहीं ले सकता है +","directory par file ki nal nahin le sakta hai +",8,1 +"This is a Surah which We have sent down and We have made it mandatory, and We have sent down clear Commandments in it so that you may learn lessons. +","(ये) एक सूरा है जिसे हमने नाज़िल किया है और उस (के एहक़ाम) को फर्ज क़र दिया है और इसमें हमने वाज़ेए व रौशन आयतें नाज़िल की हैं ताकि तुम (ग़ौर करके) नसीहत हासिल करो +","ye ek surah hai jise hamne clear kiya hai aur us ke commandments ko mandatory r diya hai aur ismen hamne vazee v raushan lessons clear ki hain taki tum aur karke nasihat hasil karo +",6,3 +"Raynaud 's disease is also called as Raynaud' s phenomenon. +","रेनाड रोग को रेनाड की घटना भी कहा जाता है. +","renad disease ko renad ki phenomenon bhi kaha called hai +",6,2 +"Ram went to bring the Golden deer (which was actually Maarich) and ordered Lakshman to take care of Sita. +","लक्ष्मण को सीता के रक्षा की आज्ञा दे कर राम स्वर्णमृग रूपी मारीच को मारने के लिये उसके पीछे चले गये। +","lakshman ko care of sita ki aajnja de kar bring the golden marich ko marne ke liye uske pichhe chale gaye. +",6,2 +"National Rail Museum, New Delhi +","राष्ट्रीय रेल संग्रहालय, नई दिल्ली +","national rail museum, nee delhi +",7,1 +"The reward of goodness shall be nothing but goodness. +","अच्छाई का बदला अच्छाई के सिवा और क्या हो सकता है? +","reward ka badla reward ke nothing aur kya ho sakta hai +",5,3 +"Those of Abraham and Lut; +","और इबराहीम की क़ौम और लूत की क़ौम +","aur abraham ki lut aur loot ki lut +",5,3 +"[Commanding him], ""Make full coats of mail and calculate [precisely] the links, and work [all of you] righteousness. Indeed I, of what you do, am Seeing."" +","कि फँराख़ व कुशादा जिरह बनाओ और (कड़ियों के) जोड़ने में अन्दाज़े का ख्याल रखो और तुम सब के सब अच्छे (अच्छे) काम करो वो कुछ तुम लोग करते हो मैं यक़ीनन देख रहा हूँ +","ki coats v kushada jirah banao aur kariyon ke jorne men andaze ka khyal calculate aur tum sab ke sab full full work karo vo kuchh tum log karte ho i yainan dekh raha hoon +",6,4 +"Thus the word of your Lord is fulfilled concerning the transgressors that they shall not believe. +","ये तुम्हारे परवरदिगार की बात बदचलन लोगों पर साबित होकर रही कि ये लोग हरगिज़ ईमान न लाएँगें +","ye tumhare paravardigar ki bat badachalan logon par sabit hokar rahi ki ye log hargiz eeman n laengen +",8,2 +"so that he could make coats of mail and properly measure their rings. We told him and his people to act righteously. We are Well - Aware of what you do. +","कि फँराख़ व कुशादा जिरह बनाओ और (कड़ियों के) जोड़ने में अन्दाज़े का ख्याल रखो और तुम सब के सब अच्छे (अच्छे) काम करो वो कुछ तुम लोग करते हो मैं यक़ीनन देख रहा हूँ +","ki coats v kushada jirah banao aur kariyon ke jorne men andaze ka khyal rakho aur tum aware ke aware achchhe achchhe kam karo vo kuchh tum people karte ho main yainan dekh raha hoon +",6,3 +"11)In sanskrit sentence words can be placed in any order. +","११) संस्कृत वाक्यों में शब्दों को किसी भी क्रम में रखा जा सकता है। +","११ sanskrit sentence words shabdon ko kisi bhi kram men rakha ja sakta words +",5,1 +"Traditional Indian family values are observed with great honor. +","पारंपरिक भारतीय पारिवारिक मूल्यों को काफी आदर की दृष्टि से देखा जाता है। +","traditional indian family values ko great honor ki drishti se dekha jata hai. +",8,2 +"Hanafi clan - its followers are in South Asia and Central Asia. +","हनफी पन्थ-इसके अनुयायी दक्षिण एशिया और मध्य एशिया में हैं। +","hanafi panth-iske followers south asia aur central asia men hain. +",9,2 +"We are now adding a ""digital"" dimension to this connectivity. +","अब हम इन संबंधों में ‘डिजिटल’ पहलू भी जोड़ रहे हैं। +","ab ham in connectivity men digital dimension bhi jor rahe hain. +",8,3 +"Truth is the same to all nations, he had said, but each nation has its lies which it speaks of as its idealism. +","उन्होंने कहा भी था, सत्य सभी राष्ट्र् के लिए एक समान है, लेकिन हर राष्ट्र के पास अपने अपने झूठ भी होते हैं, जिसे वह अपने आदर्शवाद के तौर पर बघारते हैं। +","unhonne kaha bhi tha, truth sabhi nations ke lie ek saman hai, lekin har rashtr ke pas apne apne jhooth bhi hote hain, jise vah apne aadarshvad ke taur par bagharte hain. +",9,2 +"is I took all of the interviews +","कि मैंने उन सभी साक्षातकारों को लिया +","ki i un sabhi interviews ko liya +",8,1 +"Could not open file:% s:% s +","फ़ाइल को खोल नहीं सकाः% s:% s +","file ko open nahin sakaa s: s +",8,0 +"Let 's say when x is equal to 2. +","X barabar do sochte hai. +","X equal x sochte hai +",6,4 +"The Organisation has three Regional Headquarters i. e. Mumbai, Chennai, and Port Blair. +","इसके तीन क्षेत्रीय मुख्यालय, मुंबई, चेन्नई और पोर्ट ब्लेयर में हैं। +","iske tin regional organisation , mumbai , chennai aur port blair men hain. +",8,2 +"When your gums and jawbone have healed , a crown -LRB- artificial tooth -RRB- is constructed , then screwed or cemented to the post . +","जब आपके मसूड़ों और जबड़े की हड्डी के घाव भर जाते हैं तो एक क्राउन ( नकली दाँत ) बनाकर , खंभे पर कस दिया जाता है या सीमेंट द्वारा चिपका दिया जाता है . +","jab aapke gums aur jabare ki haddi ke ghav bhar jate hain to ek crown jawbone tooth banakar , khnbhe par kas diya jata hai ya siment dvara chipka diya jata hai +",7,2 +"which obeys really strict rules. +","जो वास्तव में कड़े नियमों का अनुसरण करता है। +","jo obeys really strict niymon ka anusaran karta strict +",6,2 +"The extant colophons indicate that the art of the parivadini a stringed lute called Vidya - parivadini was enunciated by a Gunasena, and the notations were got inscribed for the benefit of the votaries by a king who was a great Saiva or Paramamahesvara, and a disciple of Rudracharya. +","विद्यमान पुष्पिकाएं संकेत देती है कि परिवादिनी तंत्रीयुक्त वीणा की कला या विद्या परिवादिनी किसी गुणसेन द्वारा प्रतिपादित की गई थी और एक महान शैव या परममाहेश्वर नरेश और रूद्राचार्य के शिष्य द्वारा शौकीनों के लाभ के लिए उत्कीर्ण करवाई गई थी। +","extant colophons snket deti hai ki parivadini tntriyukt stringed lute called ya vidya parivadini kisi gunsen dvara prtipadit ki gee thi aur ek mahan shaiv ya parammaheshvar naresh aur roodrachary ke shishy dvara shaukinon ke labh ke lie utkirn karvaee gee thi. +",6,6 +"so they all sat around making friends with each other. +","इसलिए सभी एक साथ बैठे और दोस्त बने. +","islie sabhi ek sath other aur friends bane +",7,0 +"This Weather Underground, by some unlawful intent, sent a terror group to the USA to with an aim to attract attention of the world towards their needs.Some excerpts of the relations of these terror groups were mentioned in some media. +","इस मौसम अंडरग्राउंड (Weather Underground) जो है जबकि कोई हताहत कारण विभिन्न दुनिया राजनीतिक मुद्दों के लिए मीडिया का ध्यान लाने के लिए आतंकवादी वारदातों का प्रदर्शन एक उग्रवादी संगठन अमेरिका गया था.इस मुद्दे से कई संक्षिप्त दिए गए समाचार सेवाओं द्वारा आतंकवादी वारदातों के संबंध में ही उल्लेख है. +","is weather underground Weather Underground jo hai jabki koee hatahat karan vibhinn world rajnitik muddon ke lie aim ka attention lane ke lie terror groups ka pradarshan ek ugrvadi sngathan usa gaya thais mudde se kee snkshipt die intent samachar sevaon dvara terror groups ke relations men hi ullekh hai +",7,1 +"Thereafter, some disputes arose between the parties, who started living separately. +","इसके बाद, दलों के बीच कुछ विवाद उठे, जिन्होंने अलग रहना शुरू कर दिया. +","iske bad, parties ke bich kuchh vivad uthe, jinhonne started living separately kar diya +",5,4 +"We must learn international languages to communicate and widen our horizon. +","हमें अपने क्षितिज का विस्तार करने और व्यापार संचार के लिए अंतर्राष्ट्रीय भाषाएं पढनी ही चाहिए। +","hamen apne horizon ka vistar karne aur vyapar snchar ke lie international languages padhni hi chahie. +",10,0 +"Save this, then create another: +","इस सहेजें, तो एक और बनाने के लिए: +","is save, to ek aur create ke lie: +",6,1 +"The ada bazzar of Indore is full of jewellery and cosmetics. +","इंदौर का अडा बाजार गहनों व सौंदर्य प्रसाधनों से भरा पडा है। +","indore ka ada bajar jewellery v saundary cosmetics se full ada hai. +",7,0 +"Starting sequence number (deprecated) +","आरंभिक शृंखला संख्या (पदावनत) +","starting sequence number pdavanat +",5,6 +"Its programmes earned more than Rs 637 crore during the financial year 2000 - 2001 through commercial advertisements. +","दूरदर्शन ने वित्त वर्ष 2000-2001 के दौरान व्यापरिक विज्ञापनों से लगभग छह अरब 37 करोड़ रुपये अर्जित किए। +","dooradarshan ne financial more 2000-2001 ke dauran vyaprik advertisements se lagabhag chhah arab commercial crore rupye arjit programmes +",5,0 +"Democracy implies the existence of representative institutions, the expression of the will of the people as to who their representatives would be and the participation of the people in national tasks. +","लोकतंत्र में यह अंतर्निहत है कि प्रतिनिधित्वपूर्ण संस्थाएं काम करें और लोग स्वतंत्र रूप से राय दे सकें कि उनमें प्रतिनिधि कौन होंगे तथा राष्ट्रीय क्रियाकलापों में जनता की भागीदारी रहे। +","loktntr men yah antarnihat hai ki representative institutions kam karen aur log svtntr roop se ray de saken ki unmen prtinidhi kaun honge tatha rashtriy kriyaklapon men janta ki bhagidari rahe. +",5,6 +"The ada bazzar of Indore is full of jewellery and cosmetics. +","इंदौर का अडा बाजार गहनों व सौंदर्य प्रसाधनों से भरा पडा है। +","indaur ka ada bajar gahnon v saundary prsadhnon se bhara pada hai. +",4,7 +"1. Not formed by the decided number. +","1. निर्धारित संख्या मे गठन नहीं हुआ +","1 decided number me gathan nahin huaa +",8,4 +"How many tens of thousands of years does it go back? +","यह कितने दसियों हजारों साल पीछे जाती हैं ? +","yah tens of thousands sal pichhe jati hain +",6,1 +"One of my predecessors left on my table a framed quotation which reads: +","मेरे एक पूर्ववर्ती ने मेरी मेज पर फ्रेम किया हुआ कथन छोड़ा जो इस प्रकार थाः +","mere ek predecessors ne meri table par phrem kiya huaa kathan chhora jo is prkar thaa +",9,2 +"Your Login session is expired now. +","आपका लॉगिन सत्र अब समाप्त होने वाला है। +","aapka login session ab samapt hone vala hai. +",8,1 +"Plan your work and work your plan. +","अपने कार्य की योजना बनाएं तथा अपनी योजना पर कार्य करें. +","apne work ki plan banaen tatha apni plan par work karen +",9,1 +"We 'll do the microbiology of it in the future +","हम भविष्य में इस बात का सूक्ष्म जीव विज्ञान है, लेकिन यह +","ham future men is bat ka sookshm jiv vijnjan hai, lekin yah +",5,3 +"by taking advantage of the fact that someone has given us the K, +","कि इस तथ्य का लाभ लेने के द्वारा किसी ने हमें K दिया है, +","ki is fact ka advantage lene ke dvara kisi ne hamen k diya hai , +",7,1 +"Joseph Henry helped to solve the first problem. +","जोज़ेफ हेनरी की मदद से पहली समस्या तो हल हो गयी। +","jozeph henri ki madad se pahli problem to hal ho gayi. +",9,1 +"God could not care whether you believe in him or not, if he is there. +","ईश्वर यदि है, तो वह यह चिंता नहीं करेगा कि तुम उसके अस्तित्व को स्वीकार करते हो या अस्वीकार। +","god yadi hai, to vah yah care nahin karega ki tum uske astitv ko svikar karte ho ya asvikar. +",10,0 +"The soup was found out to have very high nutritive value. +","सूप मे बहुत अधिक पोषक मूल्य पाए जाते है। +","soup me bahut high nutritive value pae jate hai. +",10,0 +"For a country of this small size, the geographical variations are astonishing. +","एक छोटे से क्षेत्र के लिए नेपाल की भौगोलिक विविधता बहुत उल्लेखनीय है। +","ek chhote se kshetr ke lie nepal ki geographical variations bahut ullekhniy astonishing +",8,3 +"Few, if any of us, can use this highest reason with any purity, but the attempt to do it is the topmost capacity of the inner instrument, the antahkarana. +","यदि हममें से कोई इस उच्चतम बुद्धि का प्रयोग किसी शुद्ध रूप में कर भी पाते हैं तो वे विरले ही होते हैं, किन्तु इसके लिये प्रयत्न करना अन्तःकरण की सबसे ऊंची क्षमता है। +","yadi hammen se koee is highest reason ka pryog kisi purity roop men kar bhi pate hain to ve few hi hote hain , kintu iske liye attempt karna inner ki sabse topmost capacity hai. +",8,0 +"And if - - just like when x was equal to 0, this term equaled +","और अगर बस जब एक्स इस अवधि equaled 0 के बराबर था की तरह- +","aur equal bas jab x is term equaled 0 ke barabar tha ki tarah- +",7,2 +"It was published as a posthumous work after his death by his son Narayan Chandra Vidyaratna in 1892. +","यह निबन्ध उनकी मृत्युपरान्त उनके पुत्र नारायणचन्द्र विद्यारत्न ने 1892 में प्रकाशित कराया। +","yah nibandh unki mrityuprant unke son narayanachandr chandra ne death men prkashit karaya. +",7,2 +"Putting on a stiff expression, he went on. +","चेहरे पर कड़ी-सी भाव-मुद्रा लाकर उसने आगे कहा, +","expression par kari-si bhav-mudra lakar usne stiff kaha , +",7,0 +"May we Work Together with Vigour and Energy +","हम मिलकर उत्साह और ऊर्जा के साथ कार्य करें +","ham milakar vigour and energy ke sath kary karen +",8,1 +"Root node of '% s' must be < evoldap >, not <% s > '% s' +","का रूट नोड जरूर होनी चाहिये, न कि <% s> +","ka root node evoldap jaroor honi chahiye, n ki s +",9,2 +"Don 't ever see the face of that big whore! +","अब उस रांड का मुंह मत देखना। +","ab us rand ka face mat dekhna. +",8,1 +"The British press, condemning this demonstra - tion in strong words, stated that, by allowing Phadke to talk freely at every station, it looked as if he was an honour - able state guest instead of a convict going to Kalapani - LRB - Andamans - RRB -. +","अंग्रेजों के अखबार ने भी इस प्रदर्शन की कटु आलोचना करते हुए लिखा-सभी स्टेशनों पर रेल के डिब्बों से बाहर की ओर मुंह निकालकर उसे लोगों से बातचीत करने की इस प्रकार छूट दी गयी, जैसे कि वह काला पानी जाने वाला कैदी न होकर सरकार का कोई सम्मानित अतिथि है. +","angrejon ke akhbar ne bhi is pradarshan ki katu aalochna karte hue likha-sbhi steshnon par rel ke dibbon se bahar ki or munh nikalakar use logon se batchit karne ki is prkar chhoot di gayi, jaise ki vah kala pani jane vala kaidi n hokar sarkar ka koee sammanit atithi hai +",9,0 +"where the entire revenue of the Afghan state +","जहां अफगान राज्य का पूरा राजस्व +","jahan afghan state ka poora revenue +",9,2 +"and the guilty shall behold the Fire and know that they are bound to fall into it, and will find no escape from it. +","और गुनेहगार लोग (देखकर समझ जाएँगें कि ये इसमें सोके जाएँगे और उससे गरीज़ (बचने की) की राह न पाएँगें +","aur guilty shall behold samajh jaengen ki ye ismen soke jaenge aur find no escape ki ki rah n paengen +",2,1 +"It will be easier if the boxes are fitted with bolts. +","बक्सों को बंद करने के लिए उनमें कब्जे और कुंडे हों तो सुविधा रहती है। +","boxes ko bolts karne ke lie unmen kabje aur kunde hon to suvidha rahti hai. +",7,1 +"In 1882 , Lord Ripon established local self-government in India with the setting up of district local boards . +","1882 में लार्ड रिपन ने जिला स्थानीय बोर्डों के गठन के साथ भारत में स्थानीय स्वशासन की स्थापना की . +","1882 men lard ripan ne district local boards ke gathan ke sath bharat men sthaniy svshasan ki sthapna ki +",7,1 +"This is a case of congenital megalogastria. +","यह जन्मजात उदरविस्फार की स्थिती है. +","yah congenital udarvisphar ki case hai +",8,1 +"It hissed again, fiercely. +","वह बड़े गुस्से से फिर फुसकारा। +","vah bare gusse se phir phuskara. +",9,1 +"(1) The validity of any proceedings in Parliament shall not be called in question on the ground of any alleged irregularity of procedure. +","(1) संसद की किसी कार्यवाही की विधिमान्यता को प्रक्रिया की किसी अभिकथित अनियमितता के आधार पर प्रश्नगत नहीं किया जाएगा। +","1 parliament ki kisi karyvahi ki proceedings in parliament ki kisi alleged irregularity ke aadhar par prashnagat nahin kiya jaega. +",8,2 +"so they all sat around making friends with each other. +","इसलिए सभी एक साथ बैठे और दोस्त बने. +","islie sabhi ek sath sat aur friends bane +",6,1 +"This treatment is only possible in proved cases of allergic asthma. +","यह उपचार केवल एलर्जी जनित दमा के निश्चित मामलों में ही कारगर है। +","yah upchar keval elarji janit dama ke nishchit mamlon men hi karagar hai. +",9,1 +"The beaters ran away after injuring the man. +","पीटने वाले आदमी को घायल करके भाग गए। +","pitne vale injuring the man karke bhag ge. +",7,0 +"Subhashbabu was in jail in year 1930. +","1930 में सुभाषबाबू कारावास में थे। +","1930 men subhashbabu jail men the. +",10,0 +"Ans : Twenty-eight (28),11.71% +","उत्तरः अट्ठाईस (28), 11.71% +","ans atthaees 28 , 1171 +",7,2 +"An invoice that has been approved by a seal or stamp by the consul of the importer 's country that has an office in the exporter' s country. +","ऐसा बीजक जिसका अनुमोदन आयातक देश के वाणिज्य दूतावास द्वारा जिसका कार्यालय निर्यातक देश में हों, द्वारा मुहर लगाकर कर दिया गया हो। +","aesa invoice jiska anumodan importer country ke vanijy dootavas dvara jiska office exporter country men hon , dvara seal lagakar kar diya gaya ho. +",8,3 +"So We took retribution from them, and We drowned them in the sea because they denied Our signs and were heedless of them. +","तब आख़िर हमने उनसे (उनकी शरारत का) बदला लिया तो चूंकि वह लोग हमारी आयतों को झुटलाते थे और उनसे ग़ाफिल रहते थे हमने उन्हें दरिया में डुबो दिया +","tab aair hamne unse unki shararat ka badla liya to choonki vah denied our signs ko jhutlate the aur unse aphil rahte the hamne unhen dariya men dubo diya +",6,0 +"but believe me, we all share one incredibly powerful thing - +","परंतु विश्वास मानिए, हम सभी में एक अविश्वसनीय शक्तिशाली बात है - +","parntu vishvas manie, ham sabhi men ek incredibly powerful thing hai - +",8,0 +"This is an incorrect suggestion to solve this problem. +","यह इस समस्या को सुलझाने का गलत सुझाव है। +","yah is samasya ko suljhane ka solve this problem +",4,3 +"An Iranian government - sponsored radio station gleefully predicts that its brand of militant Islam within the United States will “provoke a dangerous and crucial confrontation” with the American authorities. +","ईरानी सरकार द्वारा प्रायोजित एक रेडियो स्टेशन ने अत्यंत प्रसन्नतापूर्वक भविष्यवाणी की कि उसके प्रकार का उग्रवादी इस्लाम अमेरिका में अमेरिकी अधिकारियों के साथ महत्वपूर्ण और खतरनाक संघर्ष को प्रोत्साहित कर देगा। +","iranian government dvara prayojit ek rediyo steshan ne atynt prasanntapoorvak bhavishyvani ki ki uske prkar ka ugrvadi islam amerika men ameriki adhikariyon ke sath mahatvpoorn aur khatarnak sngharsh ko protsahit kar dega. +",4,4 +"This helps us to determine the lower time - limit of the period of their compilation. +","इसमें हमें उनके संकलन की निम्नतम समय-सीमा निर्धारित करने में सहायता मिलती है. +","ismen hamen unke snkalan ki lower time nirdharit karne men sahayta milti hai +",8,1 +"For example, unwanted pregnancies especially amongst the under 16s always have serious personal and social consequences for both the mothers and their children. +","उदाहरणार्थ अनचाहा गर्भ, विशेषकर १६ वर्ष से कम की अवस्था में, माता एवं बच्चे दोनों के लिये अनेक वैयक्तिक एवं सामाजिक समस्याओं को जन्म देता हैं। +","example unwanted serious , visheshakar १६ varsh se kam ki avastha men , mata evn children donon ke liye anek personal evn social samasyaon ko janm deta hain. +",4,3 +"that you will be granted whatever you choose? +","कि जो चीज़ पसन्द करोगे तुम को वहाँ ज़रूर मिलेगी +","ki jo chiz pasand karoge tum ko vahan zaroor choose +",8,1 +"Central Excise, Customs and Service Tax, Patna +","केन्द्रीय उत्पाद शुल्क, सीमा शुल्क और सेवा कर, पटना +","central utpad excise , sima excise aur service kar , patna +",8,0 +"The kingdom of Magadha was powerful, so Vishnugupta decided to go to Pataliputra and persuade the Nanda king Dhanananda to attack the Greeks and drive them out of India. +","चूंकि मगध शक्तिशाली राज्य था इसलिए विष्णुगुप्त ने पाटलिपुत्र जाकर नन्द राजा घनानन्द को इस बात के लिए राजी कराने का निश्चय किया कि वह यूनानियों पर आक्रमण करें और उन्हें भारत से मार भगाएं। +","choonki magadh shaktishali rajy tha islie vishnugupt ne patliputr jakar nand raja ghananand ko is bat ke lie raji karane ka nishchay kiya ki vah yoonaniyon par aakraman karen aur unhen bharat se mar bhagaen. +",8,1 +"When after executing an order of the buyer the amount that remains at his credit. +","क्रेता के खरीद आदेश को सम्पन्न करने के बाद उसके खाते में जो राशि शेष जमा दिख रही है। +","buyer ke kharid order ko sampann karne ke bad uske khate men jo amount shesh credit dikh rahi hai. +",7,2 +"I had my own doubts of the success of the programme in Bihar. +","मुझे भी इस कार्यक्रम की सफलता में काफी संदेह था। +","mujhe bhi is karyakram ki saphalta men kaphi sndeh tha. +",8,4 +"And they will offer (their full) submission to Allah (Alone) on that Day, and their invented false deities [all that they used to invoke besides Allah, e. g. idols, saints, priests, monks, angels, jinns, Jibrael (Gabriel), Messengers, etc.] will vanish from them. +","उस दिन वे अल्लाह के आगे आज्ञाकारी एवं वशीभूत होकर आ पड़ेगे। और जो कुछ वे घड़ा करते थे वह सब उनसे खोकर रह जाएगा +","us day ve allah ke jibrael full evn vashibhoot hokar deities jinns aur jo kuchh ve invented karte the vah sab unse khokar saints jaega +",2,3 +"The Type of Service (TOS) byte on outgoing RTP IP packets. This byte is used by the network to provide some level of Quality of Service (QoS). Default value 184 (0xB8) corresponds to Expedited Forwarding (EF) PHB as defined in RFC 3246. +","आउटगोइंड RTP IP पैकेट पर सेवा प्रकार (TOS). इस बाइट को संजाल के द्वारा समान स्तर की सेवा गुणवत्ता (QoS) देने के लिए प्रयोग की जाती है. तयशुदा मान 184 (0xB8) एक्सपेडीडेट फॉर्रवार्डिंग (EF) PHB के तदनुरूप है जैसा कि RFC 3246 में परिभाषित है. +","aautgoind RTP IP paiket par seva type TOS is bait ko snjal ke dvara saman star ki seva gunavatta QoS dene ke lie pryog ki jati hai tayshuda man 184 0xB8 ekspedidet phrrvarding EF PHB ke tadnuroop hai jaisa ki RFC 3246 men paribhashit hai +",4,7 +"Choose the version of the Kolab Server you are using. +","कोलाब संस्करण जो आप इस्तेमाल कर रहे हैं उसे चुनें. +","kolab version jo aap istemal kar rahe hain use choose +",7,1 +"The most famous ballad is about 'Desingu Rajan', of Gingee in South Arcot district, who built two fortresses and died in the 17th century, fighting against a Muslim prince. +","इस राजा ने दो सुदृढ़ गढ़ बनवाये थे और सत्रहवीं शताब्दी में मुसलमानों के विरूद्ध लड़ते हुए वह मारा गया था। +","is raja ne do sudri ga banvaye the aur satrahvin shatabdi men musalmanon ke virooddh larte hue vah mara gaya tha. +",7,1 +"Whether accelerated compositing should be enabled +","क्या त्वरित कंपोजिटिंग सक्रिय की जानी चाहिए +","kya accelerated compositing sakriy ki jani chahie +",7,3 +"Similar to what we have in Buriair Sadhu and Kakadeuta aru Natilora, there is also in it a genuine desire on the part of the author to quit the artificial and the rococo and to be simple, natural and spontaneous. +","‘बुडि आइर साधु’ और ‘कका-देउता आरू नातिलोरा’ की भॉँति इस कृति में भी लेखक कृत्रिमता को त्यागने का प्रयत्न करके सरल, सहज और अन्तःस्फूर्त्त पर बल देता दिखाई पड़ता है। +","budi aair sadhu aur kka-deuta aaroo natilora ki bhnti is kriti men bhi lekhak kritrimta ko tyagne ka prayatn karke saral, natural and spontaneous par bal deta dikhaee parta hai. +",5,3 +"The first level, the weakest level of civil response against violence, +","सबसे पहला हिंसा के खिलाफ प्रतिक्रिया का सबसे कमजोर रूप, +","sabse pahla response against violence response ka sabse weakest roop, +",7,0 +"A manual switch on the control panel by means of which a bit may be entered in a processor register. +","कंट्रोल पैनल में मैनुअल स्विच, जिसके द्वारा एक बिट प्रोसेसर रजिस्टर में प्रविष्ट कर सकता है. +","control panel men manual switch, jiske dvara ek bit processor register men prvisht kar sakta hai +",8,3 +"Failed to copy a task into the task list '{0}' +","किसी कार्य सूची को इस कार्य में पाने में असमर्थ. +","kisi task list ko is task men pane men asamarth +",8,1 +"federal metropolis washington is situated in the eastern columbia district, in the middle of maryland and virginia. +","संघीय राजधानी वाशिंगटन देश के पूर्वी भाग में कोलंबिया ज़िले में स्थित है मेरिलैंड और वर्जिनिया के मध्य। +","federal metropolis vashingatan desh ke poorvi bhag men kolnbiya zile men sthit hai merilaind aur varjiniya ke madhy. +",7,6 +"The set that includes all of the elements of concern in a given study. +","प्रदत्त अध्ययन में सभी विषयगत अवयवों को धारण किया हुआ समुच्चय. +","pradatt study men sabhi vishayagat elements ko concern kiya huaa set +",6,1 +"The square root of 4, what times itself or what positive +","4 का वर्गमूल, कौन सी संख्या या कौन सी घनात्मक संख्या +","4 ka square, kaun si snkhya ya kaun si positive snkhya +",5,3 +"The balance sheet reflects the historical strength of an organization, and has long been thought of as a ""snapshot"" of an entity 's financial position. +","तुलन पत्र किसी संगठन की ऐतिहासिक शक्ति को व्यक्त करता है जो लंबे समय से ""आशुचित्र"" के रूप में वित्तीय स्थिति का परिचायक होता है। +","balance patr kisi strength ki historical shakti ko vyakt karta hai jo lnbe samay se snapshot ke roop men financial position ka parichayak hota hai. +",9,2 +"Don't understand type ‘%s' +","प्रकार समझ नही पाया '%s' +","s samajh nahi paya s +",4,6 +"And now we want the mean of these two number, which is 108 / 2 or 54. +","और अब हम इन दो संख्या है, जो 108/2 या 54 का मतलब चाहते हैं। +","aur ab ham in do snkhya hai, jo 1082 ya 54 ka matalab chahte number +",6,4 +"It is also a matter of satisfaction that graduates of the centre have been recognised and valued. +","यह भी संतोष का विषय है कि इस सेंटर के स्नातकों को मान्यता और महत्व प्राप्त है। +","yah bhi satisfaction ka matter hai ki is centre ke snatkon ko manyta aur mahatv prapt hai. +",8,0 +"and he had recited it to them, they would not have believed in it. +","और वह उन अरबो के सामने उसको पढ़ता तो भी ये लोग उस पर ईमान लाने वाले न थे +","aur vah un arbo ke samne usko pata to bhi ye log us par eeman lane vale n the +",3,5 +"The reward of goodness shall be nothing but goodness. +","अच्छाई का बदला अच्छाई के सिवा और क्या हो सकता है? +","reward of goodness goodness ke siva aur kya ho sakta hai +",8,2 +"Now I do call to witness the Lord of all points in the East and the West that We can certainly - +","अतः कुछ नहीं, मैं क़सम खाता हूँ पूर्वों और पश्चिमों के रब की, हमे इसकी सामर्थ्य प्राप्त है +","lord kuchh nahin , main sam khata hoon points aur west ke rab ki , hame iski samarthy prapt hai +",6,1 +"And certainly We gave Musa the Book that they may follow a right direction. +","और हमने मूसा को किताब प्रदान की, ताकि वे लोग मार्ग पा सकें +","aur hamne moosa ko kitab prdan ki, taki ve log marg pa follow +",6,4 +"Then, when He will, He bringeth him again to life. +","फिर जब चाहेगा उसे (जीवित करके) उठा खड़ा करेगा।- +","phir jab bringeth use jivit karke utha khara life +",6,1 +"An amount of notes and cashes that the cashier maintain in his cash - box for operations. +","नोटों या सिक्कों की ऐसी राशि जो खजांची दैनिक कार्य व्यवहार के लिए अपने नकदी बॉक्स में रखता हो। +","noton ya sikkon ki aesi rashi jo khajanchi dainik kary vyavhar ke lie apne nakdi bks men rakhta ho. +",7,4 +"II. Muslims Rejected Or will the door be shut in their face? American columnist Ralph Peters dismisses the first scenario: “Far from enjoying the prospect of taking over Europe by having babies, Europe's Muslims are living on borrowed time. … predictions of a Muslim takeover of Europe … ignore history and Europe's ineradicable viciousness.” Instead, depicting Europe as the place “that perfected genocide and ethnic cleansing,” he predicts its Muslims “will be lucky just to be deported,” and not killed. Claire Berlinski , in Menace in Europe: Why the Continent's Crisis Is America's, Too , implicitly agrees, pointing to the “ancient conflicts and patterns … now shambling out of the mists of European history ” which could well trigger violence. +","संक्षेप में पहला तर्क दर्शाता है कि मुसलमानों की सक्रियता और यूरोप की निष्क्रियता के कारण यूरोप का इस्लामीकरण होगा और अपने धिम्मी स्तर के साथ वह इस्लाम में धर्मान्तरित हो जायेगा। उच्च और निम्न धार्मिकता, उच्च और निम्न जन्म दर तथा उच्च और निम्न सास्कृतिक आत्मविश्वास के कारण यह सम्भव होगा। यूरोप एक खुला द्वार है जिसमें मुसलमान टहल रहे हैं। +","snkshep men pahla tark darshata hai ki musalmanon ki sakriyta aur yoorop ki nishkriyta ke karan yoorop ka islamikaran hoga aur apne dhimmi star ke sath vah islam men dharmantrit ho jayega. uchch aur nimn dharmikta, uchch aur nimn janm dar tatha uchch aur nimn saskritik aatmvishvas ke karan yah sambhav hoga. yoorop ek khula dvar hai jismen musalman tahal rahe hain. +",6,2 +"There were errors trying to start the X server. +","एक्स सर्वर प्रारंभ करने की कोशिश में त्रुटियाँ हुईं. +","x server prarnbh karne ki koshish men errors hueen +",9,2 +"Gandhiji claimed the defeat of Sitarmayya as his own defeat and told his colleagues that if they are not satisfied by Subhashbabu's methods, they can leave the Congress. +","गाँधीजी ने पट्टाभी सितारमैय्या की हार को अपनी हार बताकर अपने साथीयों से कह दिया कि अगर वें सुभाषबाबू के तरिकों से सहमत नहीं हैं तो वें कांग्रेस से हट सकतें हैं। +","gandhiji ne pattabhi sitarmayya ki defeat ko apni defeat own apne colleagues se kah diya ki agar congress subhashbabu ke methods se sahamat nahin hain to congress kangres se hat sakten hain. +",6,3 +"Ram went to bring the Golden deer (which was actually Maarich) and ordered Lakshman to take care of Sita. +","लक्ष्मण को सीता के रक्षा की आज्ञा दे कर राम स्वर्णमृग रूपी मारीच को मारने के लिये उसके पीछे चले गये। +","lakshman ko sita ke care ki aajnja de kar ram golden roopi marich ko marne ke liye uske pichhe chale gaye. +",7,1 +"Remember, when your Lord said to the angels: ""I have to place a trustee on the earth,"" they said: ""Will You place one there who would create disorder and shed blood, while we intone Your litanies and sanctify Your name?"" And God said: ""I know what you do not know."" +","और याद करो जब तुम्हारे रब ने फरिश्तों से कहा कि ""मैं धरती में (मनुष्य को) खलीफ़ा (सत्ताधारी) बनानेवाला हूँ।"" उन्होंने कहा, ""क्या उसमें उसको रखेगा, जो उसमें बिगाड़ पैदा करे और रक्तपात करे और हम तेरा गुणगान करते और तुझे पवित्र कहते हैं?"" उसने कहा, ""मैं जानता हूँ जो तुम नहीं जानते।"" +","aur yad disorder jab tumhare trustee ne pharishton se kaha ki lord earth men blood ko khalifa sattadhari bananevala hoon. unhonne kaha , kya usmen usko rakhega , jo usmen bigar paida remember aur raktpat remember aur ham tera gungan karte aur tujhe pavitr kahte hain usne kaha , lord janta hoon jo tum nahin jante. +",6,0 +"The certificate “$1%{CERTIFICATENAME}” represents a Certification Authority. +","प्रमाणपत्र “%{CERTIFICATENAME}” एक प्रमाणन प्राधिकरण का प्रतिनिधित्व करता है. +","prmanapatr CERTIFICATENAME ek certification authority ka represents karta hai +",8,2 +"For God is sufficient as witness between us and you we were not aware of your worship. "" +","""हमारे और तुम्हारे बीच अल्लाह ही एक गवाह काफ़ी है। हमें तो तुम्हारी बन्दगी की ख़बर तक न थी।"" +","hmare aur tumhare bich allah hi ek sufficient as witness hamen to tumhari bandgi ki bar tak n thi. +",6,1 +"But the fact is half the colliery is reeling under his debt. +","सच पूछो तो आधी कोलियरी उसकी कर्जदार है। +","fact poochho to aadhi colliery uski karjdar hai. +",4,4 +"A former Mujahideen commander , Haq 's ties with the CIA went back to the Soviet-Afghan war of the 1980s . +","क 80 के दशक के सोवियत-अफगान युद्ध के समय से ही सीआइए से जुड़ै थे . +","k 80 ke dashak ke ties yuddh ke samay se hi siaaie se jurai the +",4,4 +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","fact men aperture time aesi exposure ko diya gaya vigopan time hai jo kisi optical system aperture ke madhyam se image plane men kisi kendrbindu par aati focus +",6,1 +"It has a green cover of 41 percent and rich mineral deposits of iron ore, aluminium, bauxite, tin and coal. +","इसके 41 प्रतिशत भूभाग जंगलों से आच्छादित हैं तथा यहां लौह अयस्क, एल्यूमिनियम, बॉक्साइट, टिन तथा कोयले जैसे खनिजों की बहुतायत है। +","iske 41 cover bhoobhag jnglon se aachchhadit hain tatha yahan iron deposits , green , bauxite , tin tatha koyle jaise khanijon ki bahutayat hai. +",8,1 diff --git a/Dataset making/test.ipynb b/Dataset making/test.ipynb new file mode 100644 index 0000000..369c87a --- /dev/null +++ b/Dataset making/test.ipynb @@ -0,0 +1,213 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "data=pd.read_csv(\"train.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "df=pd.DataFrame(data)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from transformers import pipeline\n", + "\n", + "sentiment_analysis = pipeline('sentiment-analysis', model='cardiffnlp/twitter-roberta-base-sentiment-latest')\n", + "\n", + "sentiments = []\n", + "for text in data['english']:\n", + " result = sentiment_analysis(text)\n", + " sentiments.append(result[0]['label'])\n", + "\n", + "data['sentiment'] = sentiments\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "sentiments = []\n", + "for text in data['english']:\n", + " result = sentiment_analysis(text)\n", + " sentiments.append(result[0]['label'])\n", + "\n", + "data['sentiment'] = sentiments\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "\n", + "# read the csv files\n", + "train_df = pd.read_csv('train.csv')\n", + "test_df = pd.read_csv('test.csv')\n", + "val_df = pd.read_csv('valid.csv')\n", + "\n", + "# concatenate the dataframes\n", + "data_df = pd.concat([train_df, test_df, val_df], ignore_index=True)\n", + "\n", + "# write the merged dataframe to a new csv file\n", + "data_df.to_csv('data.csv', index=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from transformers import pipeline\n", + "\n", + "sentiment_analysis = pipeline('sentiment-analysis', model='cardiffnlp/twitter-roberta-base-sentiment-latest')\n", + "\n", + "sentiments = []\n", + "for text in data['English']:\n", + " result = sentiment_analysis(text)\n", + " sentiments.append(result[0]['label'])\n", + "\n", + "data.rename(columns={'sentiment': 'twitter_roberta'}, inplace=True)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# import required libraries\n", + "import pandas as pd\n", + "from transformers import pipeline\n", + "\n", + "# read the data.csv file\n", + "data_df = pd.read_csv('data.csv')\n", + "\n", + "# create a sentiment analysis pipeline using the beto model\n", + "sentiment_analysis = pipeline('sentiment-analysis', model='finiteautomata/beto-sentiment-analysis')\n", + "\n", + "# predict the sentiment for each text in the english column\n", + "sentiments = []\n", + "for text in data_df['English']:\n", + " result = sentiment_analysis(text)\n", + " sentiments.append(result[0]['label'])\n", + "\n", + "# add the predicted sentiments to the dataframe\n", + "data_df['beto_sentiment'] = sentiments\n", + "\n", + "# write the updated dataframe to a new csv file\n", + "data_df.to_csv('data_with_beto_sentiment.csv', index=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!pip install vaderSentiment\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# import the required libraries\n", + "from vaderSentiment.vaderSentiment import SentimentIntensityAnalyzer\n", + "\n", + "# create an instance of the SentimentIntensityAnalyzer class\n", + "analyzer = SentimentIntensityAnalyzer()\n", + "\n", + "# predict the sentiment for each text in the english column\n", + "sentiments = []\n", + "for text in data_df['English']:\n", + " result = analyzer.polarity_scores(text)\n", + " compound_score = result['compound']\n", + " if compound_score > 0.05:\n", + " sentiments.append('positive')\n", + " elif compound_score < -0.05:\n", + " sentiments.append('negative')\n", + " else:\n", + " sentiments.append('neutral')\n", + "\n", + "# add the predicted sentiments to the dataframe\n", + "data_df['vader_sentiment'] = sentiments\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "import pandas as pd\n", + "\n", + " # read the data.csv file\n", + "data_df = pd.read_csv('data.csv')\n", + "\n", + "# create a new dataframe with only the required columns\n", + "new_df = data_df[['English', 'twitter_roberta', 'beto_sentiment', 'vader_sentiment']]\n", + "\n", + "new_df = new_df[new_df['twitter_roberta'] == new_df['beto_sentiment']]\n", + "new_df = new_df[new_df['twitter_roberta'] == new_df['vader_sentiment']]\n", + "\n", + " # write the updated dataframe to a new csv file\n", + "new_df.to_csv('same_sentiment_rows.csv', index=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "#read data.csv and print the first 5 rows\n", + "data_df = pd.read_csv('data.csv')\n", + "print(data_df.head())" + ] + } + ], + "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.11.1" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Dataset making/train.csv b/Dataset making/train.csv new file mode 100644 index 0000000..b251edb --- /dev/null +++ b/Dataset making/train.csv @@ -0,0 +1,11065 @@ +English,Hindi,Hinglish,Average rating,Disagreement +"Program module is a file that contains instructions which are either in the form of source code or machine language. +","माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत कोड या मशीन भाषा के रूप में अनुदेश निहित होते हैं। +","module , ek program hoti hai , jismen ya to source code ya machine language ke form men instructions nihit hote hain. +",7,6 +"And to Thamud We sent their brother Sali 'h. He said:' My people! Serve Allah; you have no god other than Him. He brought you into being out of the earth, and has made you dwell in it. So ask Him to forgive you, and do turn towards Him in repentance. Indeed My Lord is near, responsive to prayers. +","और (हमने) क़ौमे समूद के पास उनके भाई सालेह को (पैग़म्बर बनाकर भेजा) तो उन्होंने (अपनी क़ौम से) कहा ऐ मेरी क़ौम ख़ुदा ही की परसतिश करो उसके सिवा कोई तुम्हारा माबूद नहीं उसी ने तुमको ज़मीन (की मिट्टी) से पैदा किया और तुमको उसमें बसाया तो उससे मग़फिरत की दुआ मॉगों फिर उसकी बारगाह में तौबा करो (बेशक मेरा परवरदिगार (हर शख़्श के) क़रीब और सबकी सुनता और दुआ क़ुबूल करता है +","aur hamne aume samood ke pas unke bhaee saleh ko paimbar banakar bheja to unhonne apni aum se kaha ae meri aum uda hi ki parastish karo uske siva koee tumhara mabood nahin usi ne tumko zamin ki mitti se paida kiya aur tumko usmen basaya to usse maphirat ki duaa mgon phir uski bargah men tauba karo beshak mera paravardigar har shash ke rib aur sabki sunta aur duaa ubool karta hai +",6,4 +"and, when reminded, do not remember +","और जब उन्हें याद दिलाया जाता है, तो वे याद नहीं करते, +","aur jab unhen yad dilaya jata hai , to ve yad nahin karte , +",10,0 +"you won the TED Prize 2011. +","तुम्हें २०११ का टेड प्राइज़ मिल गया है. +","tumhen २०११ ka ted prize mil gaya hai +",9,1 +"He gone to Kerodemal College of Delhi University, where he taken Science Graduate Degree. +","उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्वविद्यालय के किरोड़ीमल कॉलेज चले गए जहां इन्होंने विज्ञान स्नातक की उपाधि प्राप्त की। +","unhonne bad science karne ke lie ye delhi university ke kirorimal college chale ge jahan inhonne vijnjan graduate ki degree prapt ki. +",7,0 +"Then We awakened them to know which of the two groups could better calculate the length of their stay. +","फिर हमने उन्हें भेजा, ताकि मालूम करें कि दोनों गिरोहों में से किसने याद रखा है कि कितनी अवधि तक वे रहे +","phir hamne unhen bheja, taki maloom karen ki calculate the length se kisne yad rakha hai ki kitni avdhi tak ve rahe +",3,5 +"Really move all photos and videos to the trash? +","क्या आप वाकई रद्दी में सारे फोटो और वीडियो खिसकाना चाहते हैं? +","kya aap vakee raddi men sare photos and videos khiskana chahte hain +",8,1 +"Excavations made in Malabar have proved the existence of chambers in which massive earthenware urns had been kept. +","मालाबार में खुदाई के कमरों में रखे हुए बड़े-बड़े बर्तन मिले हैं जिनमे शव रखे जाते थे। +","malabar men khudaee ke kamron men rakhe hue bare-bare bartan mile hain jinme shav rakhe jate the. +",9,0 +"And leave them desolate waste. +","और धरती को एक समतल चटियल मैदान बनाकर छोड़ेगा +","aur dharti ko ek samatal desolate maidan banakar chhorega +",9,0 +"Please let me see when you 're online. Thanks! +","मुझे देखने के लिए जब आप ऑनलाइन हो. धन्यवाद! +","mujhe dekhne ke lie jab aap ऑnlain ho dhanyvad! +",4,7 +"A guidance and a mercy for the well - doers: +","जो (अज़सरतापा) उन लोगों के लिए हिदायत व रहमत है +","jo azasartapa un logon ke lie guidance v mercy hai +",8,3 +"In France, the news of one deed spreads like a flash and brings some pride to a disillusioned people. +","फ्रांस में इस एक कारनामे की खबर बिजली की तरह फैल जाती है और लोग भ्रम से मुक़्त होकर गर्व महसूस करते हैं. +","france men is ek deed ki news bijli ki tarah phail jati hai aur people bhram se mut hokar pride mahsoos karte hain +",7,2 +"refuse him / her the permission to see your presence +","आपकी उपस्थिति को देखने के लिए उन्हें अनुमति मत दें +","aapki refuse ko dekhne ke lie unhen permission mat den +",8,1 +"Disable the new tab page menu for accessing tabs on other devices. +","अन्य उपकरणों पर टैब पर पहुंचने के लिए नया टैब पृष्ठ अक्षम करें. +","any upakarnon par tab page menu ke lie tab page prishth aksham karen +",6,3 +"Far from securing the ends of justice their pendency or disposal on merits will indubitably defeat the ends of justice. +","न्याय के उद्देश्यों की प्राप्ति से कोसों दूर, उनका अनिर्णय या योग्यता के आधार पर निपटान सुनिश्चित रूप से न्याय के उद्देश्यों को विफल कर देगा. +","ends ke uddeshyon ki disposal se koson pendency , unka anirnay ya merits ke aadhar par niptan sunishchit roop se ends ke uddeshyon ko viphal kar dega +",6,2 +"It is He who prevails over His creatures, and He is all - wise and aware. +","उसे अपने बन्दों पर पूर्ण अधिकार प्राप्त है। और वह तत्वदर्शी, ख़बर रखनेवाला है +","use apne creatures par poorn adhikar prapt hai. aur vah wise, aware rakhnevala hai +",8,1 +"It belongs to the seventh century if not earlier , and was perhaps intended originally for the Buddhist creed , but was adopted later for a Vishnu temple , the principal deity being a recumbent Vishnu , or Anantasayin . +","यदि यह और पहले का नहीं , तो भी सातवीं शताब्दी का बना है और शायद मूल रूप से बौद्ध मत के लिए था , किंतु बाद में विष्णु मंदिर में रूपांतरित कर दिया गया जिसमें प्रमुख देवता लेटे हुए विष्णु या अनंतशायी हैं . +","yadi yah aur pahle ka nahin , to bhi seventh century ka bana hai aur earlier mool roop se buddhist creed ke lie tha , kintu bad men vishnu temple men roopantrit kar diya gaya jismen principal deity recumbent hue vishnu ya anantasayin hain +",8,2 +"We created you, then why do you believe not? +","हमने तुम्हें पैदा किया; फिर तुम सच क्यों नहीं मानते? +","hamne tumhen paida kiya phir tum sach kyon nahin mante +",9,2 +"You be there at 10 A. M. sharp. +","आप प्रात 10 बजे वहाँ हो तेज. +","aap prat 10 baje vahan ho tej +",8,0 +"Some months ago there were normal democratic elections there and as a result a popular radical party a joint popular front came into power . +","कुछ महीने हुए वहां सामान्य लोकतांत्रिक चुनाव हुए और फलस्वरूप वहां एक लोकप्रिय रेडिकल पार्टी-संयुक़्त लोकप्रिय मोर्चा-सत्ता में आयी . +","kuchh mahine hue vahan normal democratic elections hue aur phalasvroop vahan ek popular radical party lokapriy morcha-satta men aayi +",7,1 +"Continue applying patches with resolved conflicts +","जारी रखें लागू कर रहा है के साथ परस्पर विरोध +","continue rakhen lagoo kar raha hai ke sath resolved conflicts +",5,2 +"An organism or individual having a diploid set of chromosomes derived from each parent. +","कोई अवयव या जीव जिस में माता और पिता इन दोनों से ही प्राप्त गुणसुत्र का एक दोहरा गुट है। +","koee organism or individual jis men mata aur pita in donon se hi prapt gunsutr ka ek dohra gut individual +",6,3 +"And We sent down out of heaven water in measure and lodged it in the earth; and We are able to take it away. +","और हमने आसमान से एक अन्दाजे क़े साथ पानी बरसाया फिर उसको ज़मीन में (हसब मसलेहत) ठहराए रखा और हम तो यक़ीनन उसके ग़ाएब कर देने पर भी क़ाबू रखते है +","aur hamne heaven se ek measure e sath water barsaya phir usko zamin men hasab maslehat thahrae rakha aur able to yainan uske aeb kar dene par bhi aboo rakhte hai +",7,5 +"The whole realm of satire, humour, or fantasy is open to the puppet producer. +","पुतली निर्देशकों के समक्ष व्यग्य, परिहास एवं कल्पना शक्ति का संसार खुला पड़ा है। +","puppet nirdeshkon ke samaksh satire , humour evn whole shakti ka snsar open para hai. +",8,1 +"But the physical love is only a bridge to cross over to the other bank葉he Annihilation of self. +","पर शारीरिक प्रेम दूसरे तट-आत्म-हनन-पर पहुँचने का सेतु मात्र है। +","par sharirik prem doosre tat-aatm-hanan-par bridge to cross physical love +",4,4 +"His mother was darning a torn sock over a wooden mushroom. +","उसकी माँ लकड़ी के बने कुकुरमुत्ते पर कोई फटा मोज़ा सी रही थी। +","uski man lakari ke bane kukurmutte par koee phata darning a torn thi. +",4,4 +"Every soul shall have a taste of death: And only on the Day of Judgment shall you be paid your full recompense. Only he who is saved far from the Fire and admitted to the Garden will have attained the object (of Life): For the life of this world is but goods and chattels of deception. +","प्रत्येक जीव मृत्यु का मज़ा चखनेवाला है, और तुम्हें तो क़ियामत के दिन पूरा-पूरा बदला दे दिया जाएगा। अतः जिसे आग (जहन्नम) से हटाकर जन्नत में दाख़िल कर दिया गया, वह सफल रहा। रहा सांसारिक जीवन, तो वह माया-सामग्री के सिवा कुछ भी नहीं +","pratyek jiv taste of death chakhnevala hai, aur tumhen to iyamat ke din poora-poora badla de diya jaega. ata jise aag jahannam se hatakar jannat men dail kar diya gaya, vah saphal raha. raha sansarik jivan, to vah maya-samagri ke siva kuchh bhi nahin +",5,7 +"Fluctuations in the production of raw jute, low yield, cost inflation, labour unrest, uncertain demand and obsolete machinery are some of its major problems. +","कच्चे जूट के उत्पादन में उतार-चढ़ाव, कम पैदावार, लागत स्फीती, श्रम असंतोष, अनिश्चित मांग, पुरानी मशीनें, कुछ इसकी प्रमुख समस्याऍं हैं. +","fluctuations jute ke production men utar-chaav , low yield , cost sphiti , labour unrest , uncertain demand , obsolete machinery , kuchh iski major problems hain +",6,1 +"a lot of young people with a demographic dividend +","एक जनसांख्यिकीय लाभांश के साथ कई युवा लोग +","ek demographic dividend ke sath kee young lot +",6,4 +"If you believe you can, you probably can. +","यदि आप यह मानते हैं कि आप कर सकते हैं, तो संभवतः आप कर सकते हैं। +","yadi aap yah mante hain ki aap kar sakte hain, to snbhavta aap kar sakte hain. +",8,4 +"into a school. Everybody is wearing jeans, everybody is the same. +","एक स्कूल में, हर कोई जींस पहन रहा है, हर कोई एक सामान है +","ek school men, har koee wearing jeans raha hai, har koee ek saman hai +",8,2 +"Later a public meeting was called which was addressed by Hakim Ajmal Khan and Pandit Malaviya. +","पीछे एक बड़ी सभी हुई जिसमें हकीम साहब और पंडित मालवीयजी के भाषण हुए। +","pichhe ek bari sabhi huee jismen hakim sahab aur pndit meeting was called hue. +",4,1 +"The highest amount of money that is required to be paid. +","अधिक से अधिक राशि जो मूल्य रुप मे दी जानी हो। +","highest se highest amount jo mooly rup me di jani amount +",7,1 +"These were the ushnisa or turban, a pair of flywhisks, umbrella, sword, sandals, and the royal standard. +","ये थे; पगड़ी, चंवरों की जोड़ी, छतरी, खड़ग, चप्पल तथा राजसी ठाट-बाट से रहना। +","ye the turban , chnvron ki pair , umbrella , sword , sandals tatha royal that-bat se rahna. +",7,1 +"And remember Our servants Ibrahim and Ishaq and Yaqoub, men of power and insight. +","और (ऐ रसूल) हमारे बन्दों में इबराहीम और इसहाक़ और याकूब को याद करो जो कुवत और बसीरत वाले थे +","aur ae rasool hamare bandon men ibrahim aur isha aur yakoob ko yad karo jo kuvat aur basirat vale the +",8,1 +"Place the ten of spades next to the nine of spades. +","हुकुम की दहला के बगल में हुकुम के नहला को रखें. +","spades ki place the ten place spades ke nahla ko rakhen +",2,3 +"(Charles Tilly),Terror, Terrorism, Terrorist Sociological Theory (2004)22,5-13 (online) +","चार्ल्स तिल्ली (Charles Tilly) आतंक आतंकवाद आतंकवादी समाजशास्त्रीय सिद्धांत (2004) 22 5-13 में ऑनलाइन +","charls tilli Charles Tilly aatnk aatnkvad terrorist sociological theory 2004 22 5-13 men ऑnlain +",7,0 +"Backup Evolution data and settings to an archive file +","एवोल्यूशन डाटा व सेटिंग का बैकअप लें व फिर भंडारित करें +","evolution data v settings ka backup len v phir bhndarit karen +",9,2 +"They distribute agricultural machinery; undertake wholesale, retail and foreign trade. +","यह कृषि यंत्रों, थोक तथा खुदरा बाजार एवं विदेशी व्यापार को भी वितरित एवं नियंत्रित करता है। +","yah agricultural machinery , wholesale tatha retail bajar evn foreign trade ko bhi vitrit evn niyntrit karta hai. +",7,1 +"literature fo various dialects of hindi are still popular today, and even today, many poets and writers use regional languages for their work +","हिंदी की विभिन्न बोलियों का साहित्य आज भी लोकप्रिय है और आज भी अनेक कवि और लेखक अपना लेखन अपनी-अपनी क्षेत्रीय भाषाओं में करते हैं। +","hindi ki various dialects ka literature today bhi popular hai aur today bhi many poets aur writers apna work apni-apni regional bhashaon men karte hain. +",6,4 +"Rotate the image 90 degrees to the right +","छवि को 90 डिग्री पर दाहिने घुमाएँ +","image ko 90 degrees par right ghumaen +",9,2 +"Moreover , even if we resolved the dispute by circumscribing its scope to some particular field of human endeavour and did agree on what is ' excellence ' , there is no knowing that it would be passed on to children . +","और किसी विशिष्ट क्षेत्र के संदर्भ में उत्कृष्टता का अर्थ क़्या होगा , इस बात का निर्णय हम लोगों ने कर भी लिया तब भी आनेवाली पीढ़ी की संतानों में यह गुण दिखाई देगा , इस बात की कोई गारंटी नहीं दी जा सकती . +","aur kisi particular scope ke sndarbh men human ka arth ya children , is moreover ka nirnay ham logon ne kar bhi liya tab bhi aanevali pii ki sntanon men yah gun dikhaee dega , is moreover ki koee garnti nahin di ja dispute +",6,3 +"” Tonight, it will be a year … ” +","आज रात एक साल पूरा हो जाएगा। +","aaj tonight ek year poora ho jaega. +",8,0 +"such as projections and judgements of others... yes. +","हाँ, जैसे कि दूसरो के बारे में मानसिक कल्पनाएँ और राय। +","han, jaise ki doosro ke bare men mansik kalpnaen aur ray. +",7,5 +"American Lung Association of New England on quality of air +","वायु की गुणवत्ता पर न्यू इंगलैंड का अमेरिकन लंग एसोसिएशन +","air ki quality par new england ka american lung association +",9,2 +"He cannot bring down its greater spiritual nature into this lower triplicity; for here the mental being is the highest expression of the Self. +","वह उसकी महत्तर आध्यात्मिक प्रकृति को नीचे उतारकर इस निम्नतर त्रिविध सत्ता में नहीं ला सकता; क्योंकि यहां तो मनोमय पुरुष ही आत्मा की सर्वोच्च अभिव्यक्ति है। +","vah uski greater spiritual nature ko niche utarakar is lower trividh satta men nahin triplicity sakta kyonki yahan to manomay purush hi aatma ki sarvochch expression hai. +",6,3 +"by 5, so 1 times 5 is 5. +","तो 1 गुना 5 बराबर है 5के. +","to 1 times 5 barabar hai 5ke +",8,4 +"Candytuft is mostly cultivated for ornamental purposes. +","चांदी टफ या कैंडीटफ्ट मुख्यत सजावटी उद्देश्यों के लिए उगाए जाते हैं +","chandi taph ya kainditapht mukhyat ornamental purposes ke lie ugae jate hain +",8,1 +"On the other hand, art flourished under Buddhist patronage. +","दूसरी ओर बोद्धों के संरक्षण में कला समृद्धशाली बनी। +","other or buddhist ke patronage men art samriddhshali bani. +",6,3 +"Standard Chartered has brought in 140 million. +","स्टैंडर्ड चार्टर्ड 140 मिलियन लाया है। +","standard chartard 140 miliyan laya hai. +",9,0 +"During the war years, the railways were under great strain, not only because of the growing needs of transportation of troops and war materials internally, but also because of the responsibility thrown on them to meet the demands of staff and material for the railways in the African theatre of war. +","युद्ध के वर्षों के दौरान, रेलवे पर अत्यधिक दबाव था. यह न केवल सेना और युद्ध सामग्री को देश में ही लाने ले जाने के कारण था वरन् अफ्रीकी युद्ध में रेलवे के लिए स्टाफ और सामग्री की बढ़ती हुई मांग को पूरा करने के उन पर सौंपे गये दायित्व के कारण था. +","war ke varshon ke dauran , railways par atydhik strain tha yah n keval troops aur war materials ko desh men hi lane responsibility jane ke great tha varan african war men railways ke lie staff aur materials ki bati huee needs ko poora karne ke un par saunpe gaye dayitv ke great tha +",7,3 +"They said, ‘O Moses! Will you throw first, or shall we? ’ +","वे बोले, ""ऐ मूसा! या तो तुम फेंको या फिर हम पहले फेंकते हैं।"" +","ve bole, ae moses! ya to tum phenko ya phir ham pahle phenkte hain. +",8,3 +"No maintenance charges required to be paid. +","कोई अनुरक्षण शुल्क देने की जरुरत नहीं है। +","koee maintenance charges dene ki jarurat nahin paid +",6,5 +"Cannot attach CMS Enveloped data +","CMS लिफाफाकृत आंकड़ा संलग्न नहीं कर सकता है +","CMS attach data snlagn nahin kar sakta hai +",6,7 +"A culture of prevention rather than a culture of reaction is required in the mining industry as a value-driven commitment towards zero tolerance to such incidents. +","ऐसी दुर्घटनाओं को बिलकुल सहन न करने की मूल्य प्रेरित प्रतिबद्धता के रूप में,खनन उद्योग में प्रतिक्रिया की संस्कृति के बजाय बचाव की संस्कृति की आवश्यकता है। +","aesi incidents ko bilkul tolerance n karne ki mooly prerit commitment ke roop men , mining industry men reaction ki culture ke bajay prevention ki culture ki aavashyakta hai. +",5,2 +"It tells you what vitamin K deficiency bleeding is, discusses the benefits of vitamin K supplements and possible disadvantages of its use, and gives the best current advice. +","यह पत्रक बताता है कि विटामिन के (ख्) डिफ़िशेसी ब्लीडिंग (विटामिन के (ख्) की कभी कमी की वजह से खून बहने लगना) क्या है। भाष्; यह विटामिन के (ख्) सप्लिमेंट्स के लाभ और संभावित प्रतिकूल परिस्थितियों के बारे में भी जानकारी देता है। भाष्; +","yah patrak batata hai ki vitamin ke k benefits bliding vitamin ke k ki kabhi deficiency ki vajah se khoon bahne lagna kya possible bhash yah vitamin ke k sapliments ke labh aur snbhavit prtikool paristhitiyon ke bare men bhi jankari deta possible bhash +",7,1 +"In truth, when its desires are fulfilled, it returns to its own place and enjoys the happiness that is the Self. +","वस्तुतः जब उसकी इच्छाएँ पूरी हो जाती है तो वह अपने स्थान पर वापस आ जाता है, और आनंद का, आत्मा का उपयोग करता है। +","vastuta jab uski ichchhaen poori ho jati hai to vah apne sthan par vapas aa jata hai, aur aannd ka, aatma ka upyog karta hai. +",7,3 +"Corporal punishment should be banished from schools and students should be encouraged to take positive initiatives. +","स्कूलों में बच्चों को शारीरिक दण्ड देने पर रोक होनी चाहिए और विद्यार्थियों को रचनात्मक पहल करने के लिए प्रोत्साहित किया जाना चाहिए। +","skoolon men bachchon ko corporal punishment dene par rok honi chahie aur vidyarthiyon ko rachnatmak pahal karne ke lie protsahit kiya jana chahie. +",8,1 +"Move% s onto% s. +","% s खिसकाएँ% s पर. +","move khiskaen move par +",6,2 +"Let's see, let's do minus 5 / 7 divided by 10 / 3. +","देखे, करे नकारात्मक 5/7 विभाजित है 10/3 से +","dekhe, kare minus 57 divided hai 103 se +",7,3 +"Is it possible for everyone to know one 's true nature? +","क्या हर कोई अपने सच्चे स्वरुप का जान सकता है? +","kya har koee apne true nature ka jan sakta hai +",8,1 +"Don 't get pulled into that rush... into that storm. +","उस भीड़ में खींचे नहीं चले जाना है.... उस तूफ़ान मे। +","us rush men khinche nahin don get hai us storm me. +",4,5 +"Import HandyShopper store names only as item tags. +","आइटम टैग के रूप में ही HandyShopper के स्टोर नाम आयात करें +","item tags ke roop men hi HandyShopper ke stor nam aayat karen +",9,0 +"In tha Law there are a number of bylaws under one law. +","विधि में एक नियम के अंतर्गत कई उप नियम होते हैं। +","vidhi men ek niyam ke antargat kee up niyam hote number +",8,0 +"In the Gardens of delight (Paradise). +","नेमत भरी जन्नतों में होंगे; +","delight bhari gardens men honge +",7,3 +"Among the principal 'infant' industries of this period mention must be made of sugar, paper, and matches. +","छोटे छोटे शिशु उद्योग इस समय के मुखऋ-ऊण्श्छ्ष्-य शिशु उद्योगों में चीनी, कागज और दियासलाऋ की चर्चा की जा सकती है. +","chhote chhote shishu udyog is samay ke mukhri-oonshchhsh-y shishu udyogon men chini, kagaj aur diyaslari ki charcha ki ja sakti hai +",9,0 +"Last week , transporters in Delhi were up in arms against him , and , on April 10 , the first fir alleging a case of cheating and detailing his role in the CNG kit scam , was lodged at a Delhi police station . +","दिल्ली के ट्रांसपोर्टरों ने एकजुट हो 10 अप्रैल को उनके खिलफ धोखाधड़ी के आरोप के साथ सीएनजी किट घोटाले में उनकी भूमिका बताते हे प्राथमिकी दर्ज करवाई . +","delhi ke last ne ekjut ho 10 april ko unke khilaph cheating ke aarop ke sath cng kit scam men unki role batate he fir darj karvaee +",6,2 +"So, a smaller group, whether it is called a steering committee or something else, is needed which can be more active and can meet more frequently and with less expenses. +","इसीलिये एक ज्यादा छोटे समूह की जरूरत है, चाहे उसे आप कार्य संचालन समिति कहें या कुछ और, जो साल में कई बार मिल सके, अधिक सक्रिय हो सके और कम खर्च से काम चला सके। +","isiliye ek jyada smaller group ki jaroorat hai , something use aap kary steering committee kahen ya kuchh aur , jo sal men kee bar mil sake , adhik active ho sake aur less kharch se kam chala sake. +",8,3 +"They felt there wasn 't enough progress +","उन्होंने महसूस किया कि वहाँ पर्याप्त प्रगति नहीं थी +","unhonne wasn kiya ki vahan paryapt progress nahin thi +",7,2 +"he method of recording of votes by Members on `Ayes' and `Noes' slips is generally resorted to in the eventuality of : +","'हां' या 'नहीं' पर्चियों पर सदस्यों के मतों का अभिलेखन का तरीका सामान्यतया निम्नलिखित परिस्थतियों में अपनाया जाता हैः- +","han ya nhin parchiyon par votes by members ka abhilekhan ka tarika samanyatya nimnlikhit paristhtiyon men apnaya jata haia- +",6,4 +"This is an account of (the fate of) the towns which We relate to you; of them are some that stand and (others) mown down. +","(ऐ रसूल) ये चन्द बस्तियों के हालात हैं जो हम तुम से बयान करते हैं उनमें से बाज़ तो (उस वक्त तक) क़ायम हैं और बाज़ का तहस नहस हो गया +","fate account ye chand towns ke halat hain jo ham tum se bayan karte hain unmen se others to us vakt tak ayam hain aur others ka tahas nahas ho gaya +",6,4 +"Purchase of machinery and implements / equipment +","मशीनों एवं उपकरणों/औजारों की खरीद। आवधिक ऋण: +","machinery and implements ki purchase aavdhik rin: +",7,2 +"Then it goes back to potential energy again. +","तो यह वापस संभावित ऊर्जा को फिर से चला जाता है। +","to yah vapas potential energy ko phir se chala jata hai. +",9,0 +"OPV can be given to children till 5 years of age. +","बच्चों को ओपीवी 5 वर्ष की आयु तक दिया जा सकता है +","children ko opivi 5 years of age tak diya ja sakta hai +",9,2 +"Usman Riaz: Yes, that was the first one. And then I - +","उस्मान रियाजः हाँ, यह पहला था. और फिर मैं... +","usman riyaja one , yah first tha aur phir main +",7,1 +"Info to be shown for this item +","इस मद के लिए दिखाए जाने के लिए जानकारी +","is item ke lie dikhae jane ke lie info +",8,1 +"But during his father 's gall - bladder operation he admitted him to a paying bed at the Bangur Hospital. +","बाप के गाँल ब्लाडर का ऑपरेशन कराया बाँगुर हास्पीटल के पेइंग बेड भर्ती करा कर। +","bap ke ganl bladar ka ऑpreshan karaya bangur haspital ke peing bed bharti kara kar. +",6,1 +"Wind speed = %d kilometers/hour +","हवा की गती = %d किलोमीटर/प्रतिघंटा +","wind ki speed d kilomitarprtighnta +",8,2 +"If selected, you will be notified when entering an SSL enabled site +","यदि चुना गया है, जब आप एसएसएल सक्षम साइट पर प्रवेश करते हैं तो आपको सूचित किया जाएगा +","yadi selected gaya hai, jab aap esesel enabled site par prvesh karte hain to aapko soochit kiya jaega +",5,5 +"Each vertex has a label, and these labels must have the following property. +","प्रत्येक वर्टेक्स एक लेबल है, और इन लेबल निम्न गुण होना आवश्यक है। +","pratyek varteks ek label hai, aur in label nimn gun hona aavashyak hai. +",5,6 +"(ii) the Minister for Tuensang affairs shall deal with, and have direct access to the Governor on, all matters relating to the Tuensang district but he shall keep the Chief Minister informed about the same; +","(ii) त्युएनसांग कार्य मंत्री त्युएनसांग जिले से संबंधित सभी विषयों की बाबत कार्य करेगा और उनके संबंध में राज्यपाल के पास उसकी सीधी पहुँच होगी किंतु वह उनके संबंध में मुख्यमंत्री को जानकारी देता रहेगा; +","ii tuensang affairs minister tuensang district se snbndhit sabhi matters ki babat affairs karega aur unke snbndh men governor ke pas uski direct access hogi kintu vah unke snbndh men mukhymntri ko jankari deta rahega +",8,2 +"He said, “O my son, do not relate your vision to your brothers, lest they plot and scheme against you. Satan is man 's sworn enemy. +","याक़ूब ने कहा ऐ बेटा (देखो ख़बरदार) कहीं अपना ख्वाब अपने भाईयों से न दोहराना (वरना) वह लोग तुम्हारे लिए मक्कारी की तदबीर करने लगेगें इसमें तो शक़ ही नहीं कि शैतान आदमी का खुला हुआ दुश्मन है +","yaoob ne kaha ae son dekho bardar lest apna vision apne brothers se n dohrana varna vah log tumhare lie scheme ki tadbir karne lagegen ismen to sha hi nahin ki shaitan man ka sworn huaa enemy hai +",5,1 +"The day the sky will tremble, +","जिस दिन आसमान चक्कर खाने लगेगा +","jis day sky chakkar khane lagega +",8,2 +"Joint Forest Management Committees have played a key role in curbing the exploitation of forest resources that had often led to the marginalization and deprivation of tribal people. +","संयुक्त वन प्रबंधन समितियों ने अक्सर जनजातीय लोगों को पिछड़ा और अभावग्रस्त बनाने वाले वन संसाधनों के दोहन को समाप्त करने में प्रमुख भूमिका निभाई है। +","joint forest management samitiyon ne tribal people logon ko pichhara aur abhavagrast banane vale van snsadhnon ke dohan ko samapt karne men prmukh played a key +",6,2 +"A skilled or artistic worker or craftsman. +","कोई कुशल या कलात्मक मज़दूर या कारीगर। +","koee skilled or artistic worker ya karigar. +",9,1 +"I know that the Bodhisattva lovingly regards all living creatures to deliver them from misery! +","मै जानता हूं कि बोधिसत्व सभी प्राणियों पर अपनी कृपा भाव बिखेरे हुए हैं! +","mai janta hoon ki bodhisatv sabhi living par apni kripa bhav bikhere hue hain! +",9,0 +"&Always Open Files of This Type +","इस प्रकार की फ़ाइलें &हमेशा खोलें +","is type ki open files open +",6,0 +"Greek 'ouranos' for 'heaven'. Named after the planet Uranus. +","'स्वर्ग' के लिए यूनानी में 'क्वारानोस'. यूरेनस ग्रह के ऊपर नाम रखा गया +","svarg ke lie greek men kvaranos planet uranus ke oopar nam rakha gaya +",8,3 +"All right, this is another one that should be cut and pasted. +","सब ठीक है, यह एक और एक कि काटा और चिपकाया जाना चाहिए है। +","sab right hai , yah ek aur ek ki kata aur one jana chahie hai. +",7,4 +"""(xviib) any compensation or other payment referred to in clause (xi) of sub-section (2) of section 56;""; +","''(xviiख) धारा 56 की उपधारा (2) के खंड (xi) में निर्दिष्ट कोर्इ प्रतिकर या अन्य संदाय;''; +","xviikh clause 56 ki upclause 2 ke khnd xi men nirdisht kori prtikar ya any snday +",6,0 +"The Agreement on South Asian Free Trade Area (SAFTA) was signed by all the member States of the South Asian Association for Regional Cooperation (SAARC) during the twelfth 'SAARC Summit' held in Islamabad on 4 - 6th January, 2004. +","दक्षिणी एशिया मुक्त कारोबार क्षेत्र (साफ्टा) पर करारनामे पर इस्लामाबाद में 4-6 जनवरी को आयोजित बारहवेंदक्षिण एशियाई क्षेत्रीय सहयोग संघ (सार्क) सम्मेलन के दौरान सार्क के सभी सदस्य देशों ने हस्ताक्षर किए। +","south asian free trade area saphta par kararname par islamabad men 4-6 janavri ko aayojit barahvendakshin eshiyaee kshetriy sahyog sngh sark sammelan ke dauran sark ke sabhi sadasy deshon ne hastakshar kie. +",7,4 +"The three saw a shepherd maid churning curd in front of her house and telling the children playing around her, 'Go away, you kids, lest the curd thumi droplet should spill upon you. +","उन तीनों ने एक ग्वालिन को देखा जो अपने घर के सामने दही मथ रही थी और अपने चारों तरफ खेलते हुए बच्चों से कह रही थी, भाग जाओ, बच्चो, नहीं तो दही की बूँदें थुमि तुम्हारे ऊपर उछलकर गिरेंगी। +","un tinon ne ek gvalin ko dekha jo apne ghar ke samne dahi math rahi thi aur apne charon taraph khelte hue bachchon se kah rahi thi, bhag jao, bachcho, nahin to dahi ki boonden thumi tumhare oopar uchhalakar girengi. +",8,4 +"Failed to unlock lock file '% s' '% s' +","लॉक फ़ाइल को अन-लॉक करने में असफ़ल +","lock file ko an-lk karne men asafal +",8,2 +"We have tried to correct them. +","हमने उन्हें सुधारने की कोशिश की है। +","hamne unhen sudharne ki koshish ki hai. +",9,2 +"Having nothing worthwhile to do, he organized a society of like - minded persons to divert his mind. +","कुछ खास काम न हाने के कारण उन्होंने अपना ध्यान दूसरी ओर लगााने की दृष्टि से अपने जैसे विचार वाले लोगों की एक सोसायटी बना ली। +","kuchh nothing kam n hane ke karan unhonne apna mind society or lagaane ki drishti se apne jaise vichar vale persons ki ek sosayti bana li. +",4,1 +"Through ‘e - FILING’ only Advocate - on Record’ and petitioners - in - person can file cases in the Supreme Court of India +","2. ई-फाइलिंग के माध्यम से सर्वोच्च न्यायालय में केवल पीड़ित व्यक्ति अर्थात् मुकदमा दायर करने के इच्छुक व्यक्ति स्वयं या निबंधित वकील ही मुकदमा दायर कर सकता है। +","petitioners ee-phailing ke madhyam se supreme record men keval pirit person arthat cases filing karne ke ichchhuk person svyn ya nibndhit advocate hi cases filing kar sakta +",6,1 +"We think doodling is something you do when you lose focus, +","ऐसा माना जाता है कि डूडल करने वाले का ध्यान भंग हो चुका है, +","aesa mana jata hai ki doodling karne vale ka focus bhng ho chuka hai, +",7,3 +"It assists the government in formulating and implementing policies for national development. +","यह राष्ट्रीय विकास के लिए नीतियों के निर्माण और कार्यान्वयन में सरकार की मदद करती है। +","yah formulating development ke lie policies ke nirman aur karyanvayan men government ki madad karti hai. +",7,2 +"Anaerobic is a technical word which literally means without oxygen. +","अनॉक्सीय एक तांत्रिक शब्द है जिसका शाब्दिक अर्थ है बीना प्राणवायु के। +","anksiy ek tantrik word hai jiska shabdik arth hai technical oxygen ke. +",6,1 +"“ Well . . . so I can do things , ” he had responded . “ And so I can change those things that I don ' t want to happen . ” +","“ इसलिए कि मैं कुछ कर सकूं , ” ऊंट चालक ने कहा , “ और उन चीजों को बदल सकूं जिन्हें मैं घटित होते हुए नहीं देखना चाहता ! ” +","islie ki main kuchh kar sakoon , oont chalak ne kaha , aur un change those things sakoon jinhen main ghatit hote hue nahin dekhna chahta ! +",7,1 +"In his will Vitthal bhai patel named all his billions of property to Subash babu. +","विठ्ठल भाई पटेल ने अपनी वसीयत में अपनी करोडों की संपत्ती सुभाषबाबू के नाम कर दी। +","bhai bhaee patel ne apni property men apni billions ki babu subhashbaboo ke nam kar di. +",5,2 +"He was born in the city of Surat in Gujarat on 24th August, 1833. +","24 अगस्त, 1833 को उसका जन्म गुजरात के सूरत नगर में हुआ। +","24 august, 1833 ko uska janm gujrat ke soorat nagar men huaa. +",9,2 +"A structure above the surface. +","पृष्ठ या सतह से ऊपर संरचना. +","prishth ya satah se oopar structure +",7,1 +"and when the Koran is recited to them they do not bow? +","और जब उन्हें कुरआन पढ़कर सुनाया जाता है तो सजदे में नहीं गिर पड़ते? +","aur jab unhen koran pakar sunaya jata hai to sajde men nahin gir parte +",4,6 +"We 're going to win because we have dreams. +","हम जीतने वाले हैं क्योंकि हमारे पास एक सपना है। +","ham dreams vale hain kyonki hamare pas ek sapna hai. +",7,2 +"Leave Me alone with he whom I created +","(ऐ रसूल) मुझे और उस शख़्श को छोड़ दो जिसे मैने अकेला पैदा किया +","ae leave mujhe aur us shash ko chhor do jise maine akela paida kiya +",7,3 +"Mankind were one community, and Allah sent (unto them) prophets as bearers of good tidings and as warners, and revealed therewith the Scripture with the truth that it might judge between mankind concerning that wherein they differed. And only those unto whom (the Scripture) was given differed concerning it, after clear proofs had come unto them, through hatred one of another. And Allah by His Will guided those who believe unto the truth of that concerning which they differed. Allah guideth whom He will unto a straight path. +","(पहले) सब लोग एक ही दीन रखते थे (फिर आपस में झगड़ने लगे तब) ख़ुदा ने नजात से ख़ुश ख़बरी देने वाले और अज़ाब से डराने वाले पैग़म्बरों को भेजा और इन पैग़म्बरों के साथ बरहक़ किताब भी नाज़िल की ताकि जिन बातों में लोग झगड़ते थे किताबे ख़ुदा (उसका) फ़ैसला कर दे और फिर अफ़सोस तो ये है कि इस हुक्म से इख्तेलाफ किया भी तो उन्हीं लोगों ने जिन को किताब दी गयी थी और वह भी जब उन के पास ख़ुदा के साफ एहकाम आ चुके उसके बाद और वह भी आपस की शरारत से तब ख़ुदा ने अपनी मेहरबानी से (ख़ालिस) ईमानदारों को वह राहे हक़ दिखा दी जिस में उन लोगों ने इख्तेलाफ डाल रखा था और ख़ुदा जिस को चाहे राहे रास्त की हिदायत करता है +","pahle sab mankind ek hi din rakhte the phir good men jhagarne lage tab allah ne najat se tidings bearers dene vale aur azab se darane vale sent ko bheja aur in sent ke sath baraha community bhi nazil ki taki jin baton men mankind jhagarte the kitabe allah uska faisla kar de aur phir afsos to ye hai ki is hukm se proofs kiya bhi to unhin logon ne jin ko community di gayi thi aur vah bhi jab un ke pas allah ke clear ehkam aa chuke uske bad aur vah bhi good ki shararat se tab allah ne apni meharbani se alis eemandaron ko vah straight ha dikha di jis men un logon ne proofs dal rakha tha aur allah jis ko chahe straight guideth ki hidayat karta hai +",6,4 +"“ But , above all , I learned that these things are all so simple that they could be written on the surface of an emerald . ” +","“ मगर इस सबसे ज्यादा मैंने यह सीखा कि ये सब चीजें इतनी सरल हैं कि इन्हें नगीने की सतह पर भी लिखा जा सकता है । +","magar is sabse jyada mainne yah learned ki ye sab simple itni saral hain ki inhen nagine ki satah par bhi likha ja sakta hai . +",8,1 +"A complaint was also made about the delay in the Industrial Relations Bill. +","औद्योगिक सम्बंध विधेयक में देरी की भी एक शिकायत मिली है। +","industrial relations bill men delay ki bhi ek complaint mili hai. +",8,1 +"He is the Lord of the heavens and the earth and all that is between them. He is the Beneficent God and no one will be able to address Him. +","वह आकाशों और धरती का और जो कुछ उनके बीच है सबका रब है, अत्यन्त कृपाशील है, उसके सामने बात करना उनके बस में नहीं होगा +","vah lord aur earth ka aur jo kuchh unke bich hai beneficent god hai , atyant kripashil hai , uske samne bat karna unke bas men nahin hoga +",6,2 +"The region was endemic for malaria, Kala - a - zar and leprosy. +","यह क्षेत्र मलेरिया, कालाजार और कुष्ठ रोग से प्रभावित था। +","yah region malaria, kala aur leprosy rog se prbhavit tha. +",9,1 +"And We sent down out of heaven water in measure and lodged it in the earth; and We are able to take it away. +","और हमने आसमान से एक अन्दाजे क़े साथ पानी बरसाया फिर उसको ज़मीन में (हसब मसलेहत) ठहराए रखा और हम तो यक़ीनन उसके ग़ाएब कर देने पर भी क़ाबू रखते है +","aur hamne aasman se ek andaje e sath pani barsaya phir usko zamin men hasab maslehat thahrae rakha aur ham to yainan uske aeb kar dene par bhi aboo rakhte hai +",7,5 +"The whole of Rashtrapati Bhavan would be with them in their efforts to bring up their children. +","उनके बच्चों की परवरिश में पूरा राष्ट्रपति भवन उनके साथ है। +","unke children ki paravrish men poora rashtrapati bhavan unke sath whole +",6,5 +"""'And in the End He will return you into the (earth), and raise you forth (again at the Resurrection)? +","फिर तुमको उसी में दोबारा ले जाएगा और (क़यामत में उसी से) निकाल कर खड़ा करेगा +","phir tumko usi men resurrection le end aur earth men usi se nikal kar khara karega +",5,3 +"In 1882 , Lord Ripon established local self-government in India with the setting up of district local boards . +","1882 में लार्ड रिपन ने जिला स्थानीय बोर्डों के गठन के साथ भारत में स्थानीय स्वशासन की स्थापना की . +","1882 men lord ripon ne district local boards ke gathan ke sath india men local self-government ki sthapna ki +",9,0 +"Open the selected bookmark in a new tab +","चयनित पसंद को नए टैब में खोलें +","chaynit bookmark ko new tab men kholen +",10,0 +"India participated, actively and constructively in the negotiations and sought to place the Treaty in a disarmament framework by proposing its linkage with a time - bound programme for the universal elimination of all nuclear weapons. +","भारत ने इन चर्चाओं में सक्रिय और रचनात्मक ढंग से हिसा लिया और दुनिया से समस्त परमाणु हथियारों की समाप्ति के लिए एक समयबद्ध कार्यक्रम का प्रस्ताव करके इस संधि को निरस्त्रीकरण के ढांचे में ढालने की मांग जाहिर की। +","bharat ne in charchaon men actively and constructively dhng se hisa liya aur duniya se samast parmanu hathiyaron ki samapti ke lie ek samayabaddh karyakram ka prastav karke is sndhi ko nirastrikaran ke dhanche men dhalne ki mang jahir ki. +",6,1 +"India participated, actively and constructively in the negotiations and sought to place the Treaty in a disarmament framework by proposing its linkage with a time - bound programme for the universal elimination of all nuclear weapons. +","भारत ने इन चर्चाओं में सक्रिय और रचनात्मक ढंग से हिसा लिया और दुनिया से समस्त परमाणु हथियारों की समाप्ति के लिए एक समयबद्ध कार्यक्रम का प्रस्ताव करके इस संधि को निरस्त्रीकरण के ढांचे में ढालने की मांग जाहिर की। +","india ne in negotiations men sakriy aur framework elimination se hisa liya aur duniya se samast nuclear weapons ki samapti ke lie ek samayabaddh programme ka prastav karke is treaty ko disarmament ke dhanche men dhalne ki mang jahir ki. +",6,1 +"A former Mujahideen commander , Haq 's ties with the CIA went back to the Soviet-Afghan war of the 1980s . +","क 80 के दशक के सोवियत-अफगान युद्ध के समय से ही सीआइए से जुड़ै थे . +","haq mujahideen ke dashak ke soviyat-aphgan war ke samay se hi cia se jurai the +",6,3 +"In your provisions Allah has preferred some of you above others. But, those who have been preferred do not give their provisions to those whom their right hand possess so that they might be equal therein. What, do they vainly disbelieve the favor of Allah? +","और ख़ुदा ही ने तुममें से बाज़ को बाज़ पर रिज़क (दौलत में) तरजीह दी है फिर जिन लोगों को रोज़ी ज्यादा दी गई है वह लोग अपनी रोज़ी में से उन लोगों को जिन पर उनका दस्तरस (इख्तेयार) है (लौन्डी ग़ुलाम वग़ैरह) देने वाला नहीं (हालॉकि इस माल में तो सब के सब मालिक गुलाम वग़ैरह) बराबर हैं तो क्या ये लोग ख़ुदा की नेअमत के मुन्किर हैं +","aur uda hi ne tummen se baz ko baz par rizak daulat men tarjih di hai phir jin logon ko rozi jyada di gee hai vah log apni rozi men se un logon ko jin par unka dastaras ikhteyar hai laundi ulam vaairah dene vala nahin halki is mal men to sab ke sab malik gulam vaairah barabar hain to kya ye log uda ki neamat ke munkir hain +",3,5 +"“It 's nice for swimming there. ” +","पानी में तैरने का वहाँ बहुत बढ़िया इन्तज़ाम है। +","pani men nice ka vahan bahut baiya intazam hai. +",3,3 +"In tapeworm infestation human are the primary host. +","फीताकृमि ग्रसन में मनुष्य प्राथमिक पोषी या आश्रयी है +","phitakrimi infestation men human primary poshi ya host hai +",8,2 +"The Juvenile Justice Board apparently has given benefit to the appellant by treating his age to be 20 years as on 13. 08. 2003 which was on the lower side within the range of one year fixed by the Medical Board. +","किशोर न्याय बोर्ड ने प्रकट रूप से अपीलार्थी को, १३. ०८. २००३ पर उसकी आयु २० वर्ष मानकर, जो मेडिकल बोर्ड द्वारा तय एक वर्ष की सीमा के भीतर कमी की तरफ थी, लाभ दिया है. +","juvenile justice board ne prakat lower se appellant ko , १३ ०८ २००३ par uski age २० years manakar , jo medical board dvara tay ek years ki range ke bhitar kami ki side thi , benefit diya hai +",5,2 +"He said that their job is multifarious. He advised them to always remember that their conduct and behaviour is a reflection not only of the police force but is actually a projection of the entire administration before the common people. +","उन्होंने कहा कि उनका कार्य बहुआयामी है। उन्होंने सलाह दी कि उन्हें यह सदैव याद रखना चाहिए कि उनके व्यवहार और आचरण से न केवल पुलिस सेवा के बारे में नजरिया बनाता है वरन् वह वास्तव में आम जनता के सामने पूरे प्रशासन का प्रतिबिंब होता है। +","unhonne kaha ki unka job multifarious force unhonne salah projection ki unhen yah sadaiv yad people chahie ki unke behaviour aur conduct se n keval police seva ke bare men najriya banata hai varan vah vastav men common janta ke samne entire administration ka reflection hota force +",8,2 +"Rural electrification (Ekal Electric House) +","ग्रामीण विद्युतीकरण (एकल बिजली घर) +","rural electrification ekal electric ghar +",8,1 +"The Indian National Congress reacted sharply to the appointment of the Simon Commission . +","इंडियन नेशनल कांग्रेस ने साइमन कमीशन के गठन पर तीखी प्रतिक्रिया व्यक्त की . +","indian national congress ne simon commission ke gathan par appointment prtikriya vyakt ki +",6,3 +"Snow leopard hunts blue sheep in the Himalayas. +","हिम तेंदुआ हिमालय में नीली भेड़ का शिकार करता है। +","snow leopard himalay men blue sheep ka shikar karta hai. +",8,1 +"Water resources development and management will have to be planned for a hydrological unit. +","एक हाइड्रोलॉजिकल इकाई के लिए जल संसाधन विकास और प्रबंधन की योजना बनानी होगी। +","ek hydrological unit ke lie jal snsadhan development and management ki yojna banani hogi. +",9,2 +"The Madras High Court was a pioneer in the enrolment of women. +","मद्रास उच्च न्यायालय महिलाओं के प्रवेश में भी अग्रणी रहा। +","madras high court women ke enrolment men bhi pioneer raha. +",9,1 +"Malik Bhago, the chief of the place invites the Guru to partake food from the rich feast arranged by him. +","स्थान मुखिया, मलिक भागो गुरूजी को अपने द्वारा सुशेभित की हुई शानदार द़ावत में भोजन ग्रहण करने के लिए कहता है। +","place chief , malik bhago guru ko apne dvara sushebhit ki huee rich feast men food grahan karne ke lie kahta hai. +",7,2 +"We have not heard of any such thing in the old religion. This is nothing but a fabrication. +","हम लोगों ने तो ये बात पिछले दीन में कभी सुनी भी नहीं हो न हो ये उसकी मन गढ़ंत है +","ham logon ne to ye bat pichhle din men kabhi suni bhi nahin ho n ho ye uski man gant hai +",4,6 +"There is a lesson for you concerning cattle. We provide you with drink from their bellies and many other benefits. You can consume them as meat. +","और निश्चय ही तुम्हारे लिए चौपायों में भी एक शिक्षा है। उनके पेटों में जो कुछ है उसमें से हम तुम्हें पिलाते है। औऱ तुम्हारे लिए उनमें बहुत-से फ़ायदे है और उन्हें तुम खाते भी हो +","aur nishchay hi lesson lie cattle men bhi ek shiksha hai. unke bellies men jo kuchh hai drink se ham tumhen pilate hai. au lesson lie unmen bahut-se benefits hai aur unhen tum khate bhi ho +",8,0 +"Ganesh Chaturthi and Janmashtmi are the other two festivals which are celebrated with lots of fun and frolic. +","इनके अलावा गणेश चतुर्थी और जन्माष्टमी कुछ अधिक धूम-धाम के संग मनाये जाते हैं। +","other alava ganesh chaturthi aur janmashtmi kuchh adhik dhoom-dham ke sng janmashtmi jate hain. +",7,2 +"Bharavi was almost a contemporary of Kalidasa. +","भारवि करीब करीब कालिदास के समकालीन थे. +","bharavi karib karib kalidas ke contemporary the +",9,0 +"Recognizing this mantra of statecraft, Karnataka pursues the deepening of bond between the government and the governed. +","शासनकला के इस मंत्र को पहचानते हुए, कर्नाटक द्वारा शासन और शासित के बीच संबंधों को घनिष्ठ बनाने का प्रयास किया जा रहा है। +","statecraft ke is mantra ko pahchante hue , karnataka dvara government aur shasit ke bich snbndhon ko ghanishth banane ka pryas kiya ja raha hai. +",8,2 +"The birth of Urdu itself is due to this fact. +","उर्दू भी हिन्दी की इस शक्ति से ही पैदा हुई हैं। +","urdu bhi hindi ki is shakti se hi birth huee fact +",8,2 +"Disability and Housing Policy housingpolicy_disability@detr.gov.uk +","अपंग और रिहाइश के बारे में नीति housingpolicy_disability@detr.gov.uk +","disability aur housing ke bare men policy housingpolicy_disability detrgovuk +",7,6 +"Observe the fly land on the ceiling of your zoom after its flight. +","घरेलू मक्खी को उड़ान के बाद अपने कमने की छत पर बैठते हुए देखिए। +","ghareloo observe the fly ke bad apne kamne ki chhat par baithte hue dekhie. +",5,3 +"Today, the Allahabad High Court has jurisdiction over the largest state in India, covering nearly one-sixth of our total population. +","आज, इलाहाबाद उच्च न्यायालय का भारत के सबसे बड़े राज्य पर न्यायाधिकार है जिसमें हमारी जनसंख्या का लगभग छठा हिस्सा शामिल था। +","aaj, ilahabad uchch state in india ke sabse largest state par nyayadhikar hai jismen hamari jansnkhya ka lagabhag chhatha hissa shamil tha. +",3,5 +"Electricity from these grids can be distributed to residential houses, community buildings and business centers through these equipments. +","इन संयंत्रों से ग्रिड स्तर की बिजली व्यक्तिगत आवासों सामुदायिक भवनों व व्यापारिक केन्द्रों को प्रदान की जा सकती है। +","in equipments se grids star ki electricity business residential community buildings v vyaparik centers ko prdan ki ja sakti hai. +",6,1 +"and We shall make him the lowest of low +","फिर हमने उसे (बूढ़ा करके रफ्ता रफ्ता) पस्त से पस्त हालत की तरफ फेर दिया +","phir hamne use booa lowest of low past se past halat ki taraph pher diya +",5,4 +"And what if there 's no GPS? +","और अगर GPS नहीं है? +","aur agar GPS nahin hai +",9,0 +"The proofs can be submitted after logging in online under the section “My Applications” or directly contacting a DI office. +","साक्ष्यों के अनुभाग के तहत ऑनलाइन ""मेरे अनुप्रयोग"" में प्रवेश करने या सीधे एक डि कार्यालय से संपर्क करने के बाद प्रस्तुत किया जा सकता है। +","proofs ke section ke tahat online mere anupryog men prvesh karne ya sidhe ek di office se snpark karne ke bad prastut kiya ja sakta hai. +",7,6 +"The certificate has already been imported. +","प्रमाणपत्र पहले ही आयातित किया जा चुका है. +","certificate pahle hi aayatit kiya ja chuka hai +",8,1 +"[it will be] lowering and exalting. +","कि किसी को पस्त करेगी किसी को बुलन्द +","ki kisi ko exalting karegi kisi ko buland +",6,2 +"but it does tend to leave you waking up crying at three o'clock in the morning. +","मगर हो सकता है कि आप सुबह के तीन बजे जागे हुए पाये जायें। +","magar ho sakta hai ki aap morning ke waking up crying hue paye jayen. +",6,4 +"A guidance and a mercy for the well - doers: +","जो (अज़सरतापा) उन लोगों के लिए हिदायत व रहमत है +","jo guidance un logon ke lie hidayat v mercy hai +",8,1 +"Those are the verses of the clear Book. +","ये वाज़ेए व रौशन किताब की आयतें है +","ye vazee v clear book ki aayten hai +",7,3 +"The company has subsequently moved the Supreme Court . +","उसके बाद कंपनी ने सुप्रीम कोर्ट का दरवाजा खटखटाया . +","uske bad company ne supreme court ka darvaja khatakhtaya +",10,0 +"O dear Prophet (Mohammed – peace and blessings be upon him), wage holy war against the disbelievers and the hypocrites, and be strict with them; and their destination is hell; and what a wretched outcome! +","ऐ नबी! इनकार करनेवालों और कपटाचारियों से जिहाद करो और उनके साथ सख़्ती से पेश आओ। उनका ठिकाना जहन्नम है और वह अन्ततः पहुँचने की बहुत बुरी जगह है +","ae prophet! inkar karnevalon aur kaptachariyon se jihad karo aur unke sath sati se pesh aao. unka thikana jahannam hai aur vah antta pahunchne ki bahut buri jagah hai +",4,6 +"that you will be granted whatever you choose? +","कि जो चीज़ पसन्द करोगे तुम को वहाँ ज़रूर मिलेगी +","ki jo chiz pasand karoge tum ko vahan zaroor milegi +",8,2 +"Thereafter, We utterly destroyed the rest, +","(और हलाक हो गयी) फिर हमने उन लोगों को हलाक कर डाला +","aur destroyed the rest phir hamne un logon ko utterly kar dala +",4,1 +"But nay! I swear by the sunset redness, +","तो मुझे शाम की मुर्ख़ी की क़सम +","to nay sunset ki muri ki redness +",2,2 +"PARTLY flattered by Mussolini 's courtship and partly curious to see for himself this colourful personality and its impact on an ancient and lively culture, Tagore accepted an invitation from Italy and sailed for Naples on 15 May 1926. +","कुछ तो मुसोलिनी के सम्मान निवेदन से प्रसन्न होकर और कुछ उसके रंगारंग व्यक्तित्व और प्राचीन तथा जीवंत संस्कृति पर उसके प्रभाव को देखने की चाह से रवीन्द्रनाथ ने इटली का आमंत्रण स्वीकार किया. वे 15 मई 1926 को नेपल्स के लिए रवाना हुए. +","kuchh to musolini ke samman nivedan se prasann hokar aur kuchh uske colourful personality aur ancient and lively snskriti par uske prbhav ko dekhne ki chah se ravindrnath ne itli ka aamntran svikar kiya ve 15 mee 1926 ko nepals ke lie ravana hue +",8,1 +"Sardar Bhagat Singh was the leader of the youth movement in Punjab carried on under the banner of Nawjawan Bharat Sabha with which Subhas Chandra associated himself closely at a later stage . +","सरदार भत सिंह पंजाब की ? नौजवान भारत सभा ? नाम से विख़्यात युवा आंदोलन के नेता थे , जिससे बाद में सुभाष चन्द्र का भी अंतरंग साहचर्य स्थापित हुआ . +","sardar bhat sinh pnjab ki naujvan bharat sabha nam se viyat yuva aandolan ke neta the , jisse bad men subhash chandr ka bhi antrng sahachary sthapit huaa +",4,7 +"No such items having value of Rs. 10 lakh or more has been procured by PMO during the financial year 2015-16. +","प्रधान मंत्री कार्यालाय में वित्त वर्ष 2015-16 के दौरान ऐसा कोई भी सामान नही खरीदा गया जिसका मूल्य 10 लाख रुपए या उससे अधिक हो। +","pmo mntri karyalay men financial year 2015-16 ke rs such koee bhi items nahi kharida gaya jiska value 10 lakh rupe ya usse more ho. +",7,3 +"Likewise, the two lateral walls of the mandapa are relieved five times, corresponding to the hara elements, the central one on each side being a devakoshtha which is again found on either wing of the front eastern wall on either side of the shrine entrance. +","इसी प्रकार मंडप की दो पाश्चवर्ती दीवारों में पाँच उभार हार तत्वों के अनुरूप हैं जिसमें से हर दिशा में मध्यवर्ती एक देवकोष्ठ है जो पुनः मंदिर प्रवेश के दोनों और सामने की पूर्वी दीवार के दोनों खंडों पर प्राप्य है। +","isi prkar mandapa ki do lateral walls men panch ubhar hara elements ke anuroop hain jismen se har disha men central ek devakoshtha hai jo puna shrine entrance ke side aur front ki eastern wall ke side khndon par prapy hai. +",8,0 +"India is grateful for Tanzania’s support to India’s claim for permanent membership of the UN Security Council. +","भारत, संयुक्त राष्ट्र सुरक्षा परिषद की स्थायी सदस्यता की हमारी दावेदारी के प्रति तंजानिया के समर्थन के॒ लिए आभारी है। +","india , un rashtr security council ki permanent membership ki claim ke prti tanzania ke support ke lie grateful hai. +",7,3 +"Its programmes earned more than Rs 637 crore during the financial year 2000 - 2001 through commercial advertisements. +","दूरदर्शन ने वित्त वर्ष 2000-2001 के दौरान व्यापरिक विज्ञापनों से लगभग छह अरब 37 करोड़ रुपये अर्जित किए। +","dooradarshan ne financial year 2000-2001 ke dauran vyaprik vijnjapnon se lagabhag chhah arab 37 karor rupye programmes earned +",6,1 +"that astonished the media business. +","जिन्होनें इन मीडिया कंपनियों की हवा निकाल दी। +","business in media knpniyon ki hava nikal di. +",7,2 +"At the back of Pratibimbal Lake there is a walking path +","प्रतिबिम्बित झील के पीछे पैदल पथ +","prtibimbit lake ke back walking path +",7,1 +"Almost all Political Parties with their representatives contest the election for Counselor. +","पार्षदों के चुनाव हेतु लगभग सभी राजनीतिक पार्टियां अपने प्रत्याशि खड़े करतीं हैं। +","contest the election hetu lagabhag sabhi political parties apne pratyashi khare kartin hain. +",6,4 +"she 's standing, those Rockports slightly apart, but grounded. +","वो खड़ी हैं, उनके रौकपोर्ट जूते एक-दूसरे से थोड़े दूर, पर ज़मीन पर अच्छी तरह जमे हुए. +","vo standing hain, unke slightly joote ek-doosre se thore door, par zamin par achchhi tarah jame hue +",5,4 +"you can have a pack. +","आप एक बस्ता ले सकते हैं. +","aap ek pack le sakte hain +",9,0 +"Section - 231, Income-tax Act, 1961-2018 +","धारा - 231, आय-कर अधिनियम, 1961-2018 +","section - 231 , aay-kar act , 1961-2018 +",10,0 +"The body of humans are prone to destruction but destruction never occurs to the soul. +","मनुष्य का शरीर विनाशशील है किंतु आत्मा का कभी नाश नहीं होता। +","body of humans humans are prone aatma ka kabhi nash nahin hota. +",6,2 +"Parallel transfers require multiple bit paths. +","समांतर अंतरण को बहुविध पथ की आवश्यकता होती है। +","parallel transfers ko bahuvidh path ki aavashyakta hoti hai. +",9,1 +"that's been viewed four million times. +","और उसको भी चालीस लाख बार देखा गया है। +","aur usko bhi chalis million times viewed four million +",5,2 +"Retrieving quota information for folder '% s' +","% s फ़ोल्डर के लिए के लिए कोटा प्राप्त कर रहा है +","s folder ke lie ke lie quota prapt kar raha hai +",9,2 +"He never lost a chance to refer to them in an appreciative voice when delivering important speeches. +","महत्वपूर्ण भाषणों में वे इन दोनों को उद्घृत करना नहीं भूलते थे। +","important speeches men ve in donon ko udghrit karna nahin chance the. +",8,4 +"Push it so as to cover the full length of the nozzle of the stove and the regulator. +","ट्यूब को अच्छी तरह लगाएं जिससे कि स्टोव और रेग्यू लेटर के नॉजल को पूरी तरह ढंका जा सके। +","tyoob ko achchhi tarah lagaen jisse ki stove aur regulator push ke nozzle ko full tarah dhnka ja sake. +",6,4 +"Enable audible notifications when new messages arrive. +","नए संदेश आने पर श्रव्य सूचनाएं सक्षम करें. +","ne messages arrive par enable audible notifications karen +",6,1 +"Later a public meeting was called which was addressed by Hakim Ajmal Khan and Pandit Malaviya. +","पीछे एक बड़ी सभी हुई जिसमें हकीम साहब और पंडित मालवीयजी के भाषण हुए। +","pichhe ek bari sabhi huee jismen hakim sahab aur pandit hakim ke public hue. +",5,6 +"Paraumbilical is also known as paraomphalic. +","परानाभिक को नाभि के पास स्थित जाना जाता है +","paranabhik ko nabhi ke pas sthit jana jata hai +",5,8 +"And when the Garden is brought near; - +","और जब जन्नत निकट कर दी जाएगी, +","aur jab garden nikat kar di jaegi , +",9,0 +"Sallow refers to sickly yellowish complexion. +","पाण्डुवर्ण या पीतवर्ण पीलेपन को निर्दिष्ट करता है. +","panduvarn ya pitavarn complexion ko refers karta hai +",6,2 +"All these forms have their own specialised areas of operating and organising business activities. +","इन सभी रूपों का परिचालन एवं व्यापार कार्यकलाप आयोजित करने के विशिष्टा क्षेत्र हैं। +","in sabhi forms ka areas evn business activities aayojit karne ke vishishta kshetr own +",7,0 +"A group of people who work together for a particular job / purpose. +","व्यक्तियों का ऐसा समूह जो सामूहिक रुप से किसी कार्य/प्रयोजन हेतु कार्यरत हो। +","group of people samooh jo samoohik rup se kisi karypryojan people who work +",6,0 +"Aryans did not make any statues or temples for deities. +","आर्य देवताओं की कोई मूर्ति या मन्दिर नहीं बनाते थे। +","aryans deities ki koee statues ya temples nahin banate the. +",9,1 +"” I hold the power of life and death for every person I take with me . +","“ जो भी मेरे साथ चलता है उसकी जिंदगी और मौत मेरे हाथों में होती है । +","jo bhi mere sath chalta hai uski life and death mere hathon men hoti hai . +",9,0 +"Crowding also brings about other factors of destruction such as disease and malnutrition. +","भीड़-भाड़ भी विनाश के अन्य कारणों को जन्म देती है, जैसे बीमारी और अपर्याप्त पोषण। +","crowding bhi destruction ke any karnon ko janm deti hai, jaise bimari aur aparyapt poshan. +",7,1 +"We 're going to win because we have dreams. +","हम जीतने वाले हैं क्योंकि हमारे पास एक सपना है। +","ham win vale hain kyonki hamare pas ek sapna hai. +",7,4 +"SECTION 4 OF INDIAN PARTNERSHIP ACT, 1932 +","भारतीय भागीदारी अधिनियम, 1932 की धारा 4 +","indian partnership act , 1932 ki section 4 +",9,1 +"Inspired Teachers’ by their own example can instill good moral values in their students. +","प्रेरित शिक्षक’ अपने उदाहरण से अपने विद्यार्थियों में अच्छे नैतिक मूल्यों का समावेश कर सकते हैं। +","inspired shikshak apne udaharan se apne vidyarthiyon instill good moral moolyon ka samavesh kar sakte hain. +",6,5 +"Please accept, Excellency, my good wishes for your personal health and well-being, as well as for the progress and prosperity of the friendly people of the Republic of Equatorial Guinea. +","कृपया अपने व्यक्तिगत स्वास्थ्य तथा कुशलता और भूमध्यवर्ती गिनी गणराज्य की मैत्रीपूर्ण जनता की प्रगति और समृद्धि के लिए मेरी शुभकामनाएं स्वीकार करें। +","kripya apne vyaktigat health and well-being aur republic of equatorial ki maitripoorn janta ki pragti aur samriddhi ke lie meri shubhkamnaen svikar karen. +",7,4 +"Open the selected bookmark in a new tab +","चयनित पसंद को नए टैब में खोलें +","selected bookmark ko ne tab men open +",9,0 +"It tells you what vitamin K deficiency bleeding is, discusses the benefits of vitamin K supplements and possible disadvantages of its use, and gives the best current advice. +","यह पत्रक बताता है कि विटामिन के (ख्) डिफ़िशेसी ब्लीडिंग (विटामिन के (ख्) की कभी कमी की वजह से खून बहने लगना) क्या है। भाष्; यह विटामिन के (ख्) सप्लिमेंट्स के लाभ और संभावित प्रतिकूल परिस्थितियों के बारे में भी जानकारी देता है। भाष्; +","yah patrak batata hai ki vitamin ke kh deficiency bleeding vitamin ke kh ki kabhi kami ki vajah se khoon bahne lagna kya current advice yah vitamin ke kh sapliments ke labh aur snbhavit prtikool paristhitiyon ke bare men bhi jankari deta current advice +",7,1 +"The square aditala outer wall carries on top over its prastara four karnakutas at the corners and four salas in between over the central bays of the wall The adhishthana below is extended forward and widened to form the base of the wider square mandapa in front . +","वर्गाकार आदितल की बाहरी दीवार पर उसके प्रस्तर के ऊपर कोनों पर चार कर्णकूट और दीवार के मध्यम खंडों के ऊपर बीच में चार शाला हैं.नीचे अधिष्ठान को आगे बढ़ाकर चौड़ा कर दिया गया है , ताकि सामने एक अधिक बड़े वर्गाकार मंडकप का आधार बन सके . +","square aditala ki outer wall par uske prastara ke oopar corners par char karnakutas aur wall ke central khndon ke oopar bich men char shala hainniche adhishthan ko front baakar wider kar diya gaya hai , taki samne ek adhik bare square mandapa ka base ban sake +",7,1 +"They were the products of the revolution. +","वे क्रान्ति की सन्तानें थीं. +","ve revolution ki products thin +",8,1 +"Smoking, drinking, stress, chemicals of the environment, high fructose corn syrup, Twinkies..... +","धूम्रपान, मदिरा सेवन, चिंता, प्रदुषण, अधिक मीठा +","smoking , madira drinking , chinta , prdushan , high environment +",7,5 +"The Budget is presented with a Budget Speech which is , in fact , one of the most important speeches in Parliament . +","बजट पेश करते हुए बजट भाषण दिया जाता है जो वास्तव में संसद में सबसे महत्वपूर्ण भाषणों में से एक होता है . +","bajat pesh karte hue budget speech diya jata hai jo vastav men snsad men sabse important speeches men se ek hota hai +",9,0 +"Whoever brings virtue shall receive [a reward] better than it, but whoever brings vice—those who commit misdeeds shall not be requited except for what they used to do. +","जो कोई अच्छा आचारण लेकर आया उसे उससे उत्तम प्राप्त होगा, और जो बुरा आचरण लेकर आया तो बुराइयाँ करनेवालों को तो वस वही मिलेगा जो वे करते थे +","jo koee virtue shall receive aaya use usse uttam prapt hoga, aur jo bura aacharan lekar aaya to buraiyan karnevalon ko to vas vahi milega jo ve karte the +",3,5 +"SECTION 4 OF INDIAN PARTNERSHIP ACT, 1932 +","भारतीय भागीदारी अधिनियम, 1932 की धारा 4 +","indian partnership act, 1932 ki section 4 +",10,0 +"♫ from the edge of the observable universe ♫ +","♫ देखे जाने वाले ब्रह्मांड के किनारे से ♫ +","observable jane vale universe ke edge se +",6,2 +"By no means! Surely it is a flaming fire +","(मगर) ये हरगिज़ न होगा +","magar ye surely n hoga +",9,1 +"Parliamentary Forum on Water Conservation and Management; +","जल संरक्षण और प्रबंधन संबंधी संसदीय मंच; +","jal conservation and management snbndhi parliamentary forum +",8,2 +"The fact, however, is that our region remains amongst the least integrated and developed, underlining the need for greater co-operation and intensification of our trade effort. +","तथापि वास्तविकता यह है कि हमारा क्षेत्र कम एकीकृत और विकसित बना हुआ है, जो हमारे व्यापार प्रयास के अधिकाधिक सहयोग और तेजी की आवश्यकता दर्शाता है। +","tathapi fact yah hai ki hamara region least integrated aur viksit greater huaa hai , jo hamare trade effort ke intensification sahyog aur teji ki need darshata hai. +",7,2 +"Specify the size and location of the main window +","आकार और स्थान का मुख्य विंडो +","size aur location ka main window +",8,3 +"The game has no solution. Undo or start again. +","खेल के पास कोई हल नहीं है. वापस ले या फिर शुरू करें. +","game ke pas koee solution nahin hai vapas le ya phir shuroo karen +",8,2 +"I 'll try my best and see if I can be of any help. +","तुम्हे दुख में देखकर मुझे भी दुख हो रहा है, इसलिए तुम लोगों को बचाने की मैं जी-जान से कोशिश करूंगा। +","tumhe dukh men help i bhi dukh ho raha hai , islie tum best ko bachane ki main ji-jan se koshish karoonga. +",7,2 +"Save this, then create another: +","इस सहेजें, तो एक और बनाने के लिए: +","is sahejen , to ek aur banane ke lie : +",7,3 +"And Thamood—those who carved the rocks in the valley. +","और समूद के साथ (क्या किया) जो वादी (क़रा) में पत्थर तराश कर घर बनाते थे +","aur samood ke sath kya kiya jo valley ra carved the rocks kar ghar banate the +",8,0 +"A meeting was convened to finalize the date of launch of the new channel. +","नए चैनल के विमोचन की तारीख तय करने के लिए सभा बुलाई गई। +","new channel ke vimochan ki date tay karne ke lie meeting bulaee gee. +",9,1 +"There were the usual speeches, garlanding and so on. +","उसमें, सामान्यतः जैसा होता है, मालाएं पहनाई गई और भाषण आदि हुए। +","usmen , usual jaisa hota hai , malaen pahnaee gee aur speeches aadi hue. +",8,1 +"in 1998 while in school haris sheild match his co-partner vinod kamble and sachin made 664 runs together +","1988 मे स्कूल के एक हॅरिस शील्ड मॅच के दौरान साथी बल्लेबाज विनोद कांबली के साथ सचिन ने ऐतिहासिक 664 रनो की अविजित साझेदारी की। +","1988 me skool ke ek haris sheild match ke dauran sathi ballebaj vinod kanbli ke sath sachin ne aetihasik 664 rano ki avijit sajhedari ki. +",7,2 +"It was a frightening bet . +","बड़ी भयावह बाजी थी यह । +","bari bhayavah bet thi yah . +",8,1 +"Process ID assigned a unique number to every process running in the system. +","प्रोसेस आईडी, प्रणाली में चालू प्रत्येक प्रक्रिया के लिए एक विशिष्ट संख्या आवंटित करता है। +","id aaeedi , system men chaloo pratyek process ke lie ek unique number aavntit karta hai. +",6,1 +"In Terms of its geographic size India is the seventh largest country in The World. +","भारत भौगोलिक क्षेत्रफल के आधार पर विश्व का सातवाँ सबसे बड़ा राष्ट्र है। +","geographic size india ke aadhar par vishv ka satvan sabse seventh largest country +",7,1 +"Allows you to drag a Bugzilla URL from your browser directly into a Gnote note. The bug number is inserted as a link with a little bug icon next to it. +","आपको बगजिला URL खींचना चाहिए सीधे जीनोट में. बग संख्या को बतौर कड़ी जोड़ा जाता है इसे निकट कोई छोटा बग चिह्न के साथ. +","allows bugzilla URL khinchna note sidhe gnote men bug number ko bataur url jora jata hai ise nikat koee little bug chihn ke sath +",7,2 +"A similar provision exists for the Deputy Chairman Rajya Sabha in article 90. +","अनुच्छेद 90 में राज्य सभा के उपसभापति के लिए ऐसा ही प्रावधान हे. +","article 90 men rajya sabha ke exists ke lie similar hi provision he +",6,4 +"Don 't ever see the face of that big whore! +","अब उस रांड का मुंह मत देखना। +","ab us rand ka face don dekhna. +",7,0 +"Then which of the favours of your Lord will ye deny? - +","अतः तुम दोनों अपने रब की अनुकम्पाओं में से किस-किस को झुठलाओगे? +","ata tum donon apne rab ki anukampaon men se kis-kis ko deny +",3,5 +"Leaflets with more detailed informaiton on these sevices are available. +","इन सेवाओं के बारें में विस्तृत जानकारी के लिए पत्रिका उपलब्ध है। +","in sevices ke leaflets men detailed informaiton ke lie patrika available hai. +",9,1 +"and we had thought that men and jinn would never speak against God a lie. +","और ये कि हमारा तो ख्याल था कि आदमी और जिन ख़ुदा की निस्बत झूठी बात नहीं बोल सकते +","aur ye ki hamara to men tha ki aadmi aur jin uda ki jinn jhoothi bat nahin bol sakte +",6,5 +"And he said: You have only taken for yourselves idols besides Allah by way of friendship between you in this world 's life, then on the resurrection day some of you shall deny others, and some of you shall curse others, and your abode is the fire, and you shall not have any helpers. +","और इबराहीम ने (अपनी क़ौम से) कहा कि तुम लोगों ने ख़ुदा को छोड़कर बुतो को सिर्फ दुनिया की ज़िन्दगी में बाहम मोहब्त करने की वजह से (ख़ुदा) बना रखा है फिर क़यामत के दिन तुम में से एक का एक इनकार करेगा और एक दूसरे पर लानत करेगा और (आख़िर) तुम लोगों का ठिकाना जहन्नुम है और (उस वक्त तुम्हारा कोई भी मददगार न होगा) +","aur ibrahim ne apni aum se kaha ki tum logon ne uda ko chhorakar buto ko sirph duniya ki zindgi men baham mohabt karne ki vajah se uda bana rakha hai phir yamat ke din tum men se ek ka ek inkar karega aur ek doosre par lanat karega aur aair tum logon ka thikana jahannum hai aur us vakt tumhara koee bhi madadgar n hoga +",7,3 +"No indeed! When it reaches up to the collar bones +","कुछ नहीं, जब प्राण कंठ को आ लगेंगे, +","kuchh nahin , jab pran knth ko aa collar , +",6,3 +"The Ministry has taken several steps to ensure the Scheme is implemented effectively +","मंत्रालय ने इस योजना को प्रभावी ढंग से लागू करने के लिए विभिन्न कदम उठाए हैं। +","ministry ne is scheme ko prbhavi dhng se lagoo karne ke lie several steps uthae hain. +",8,1 +"It has been called Chhath because of fast of Suryashashthi. +","मूलतः सूर्य षष्ठी व्रत होनेके कारण इसे छठ कहा गया है। +","moolta soory shashthi fast suryashashthi karan ise chhath kaha gaya hai. +",7,1 +"Swelling of the rectum and the colon. +","मलाशय और बृहदान्त्र का सूजन. +","rectum aur brihdantr ka swelling +",9,0 +"Change sound volume and sound events +","ध्वनि आवाज और ध्वनि घटना बदलें +","sound aavaj aur sound events change +",7,1 +"On GRETIL thousands of Sanskrit text in various encoding. GRETIL +","पर सहस्रों संस्कृत ग्रन्थ अनेक स्रोतों से अनेक इनकोडिंग में +","par sahasron sanskrit text anek sroton se anek inkoding men +",5,7 +"And [Yusuf (Joseph)] told his servants to put their money (with which they had bought the corn) into their bags, so that they might know it when they go back to their people, in order that they might come back. +","और हम ज़रुर इस काम को पूरा करेंगें और यूसुफ ने अपने मुलाज़िमों (नौकरों) को हुक्म दिया कि उनकी (जमा) पूंजी उनके बोरो में (चूपके से) रख दो ताकि जब ये लोग अपने एहलो (अयाल) के पास लौट कर जाएं तो अपनी पूंजी को पहचान ले. +","aur ham zarur is kam ko poora karengen aur yoosuph ne apne mulazimon naukron ko hukm diya ki unki jma poonji unke boro men choopke se rakh do taki jab ye log apne ehlo ayal ke pas laut kar jaen to apni put their money le +",3,5 +"For instance, for a Muslim child the first and most important part of his education was to learn to read Arabic, in order that he might be able to read the Quran. +","उदाहरण के तौर पर, एक मुसलमान बच्चे की शिक्षा का प्रथम और सवांधिक महत्वपूर्ण अंग था अरबी पढने का ज्ञान ताकि वह कुरान पढ सकें. +","udaharan ke taur par, ek muslim child ki shiksha ka learn to read mahatvpoorn ang tha arbi padhne ka jnjan taki vah kuran padh saken +",7,3 +"He congratulated NIFM for choosing this motto. +","उन्होंने एनआईएफएम को इस सिद्धांत को चुनने के लिए बधाई दी थी। +","unhonne enaaeeephem ko is siddhant ko choosing ke lie congratulated di thi. +",6,3 +"In two phases banyan and in the other two phases hare (rabbit)is seen. +","इसके दो अंशो मे पिप्पल और दो अंशो मे महान शश(खरगोश) दिखायी देता है। +","iske do ansho me pippal aur do ansho me mahan shashkhargosh dikhayi deta hai. +",9,2 +"Shape actor with alpha channel when picking +","चुनने के दौरान अल्फा चैनल के साथ कर्ता को आकार दें +","chunne ke dauran alpha channel ke sath actor ko shape den +",10,0 +"This Weather Underground, by some unlawful intent, sent a terror group to the USA to with an aim to attract attention of the world towards their needs.Some excerpts of the relations of these terror groups were mentioned in some media. +","इस मौसम अंडरग्राउंड (Weather Underground) जो है जबकि कोई हताहत कारण विभिन्न दुनिया राजनीतिक मुद्दों के लिए मीडिया का ध्यान लाने के लिए आतंकवादी वारदातों का प्रदर्शन एक उग्रवादी संगठन अमेरिका गया था.इस मुद्दे से कई संक्षिप्त दिए गए समाचार सेवाओं द्वारा आतंकवादी वारदातों के संबंध में ही उल्लेख है. +","is weather underground Weather Underground jo hai jabki koee hatahat karan vibhinn duniya rajnitik muddon ke lie midiya ka dhyan lane ke lie terror group ka pradarshan ek ugrvadi sngathan amerika gaya thais mudde se kee snkshipt die ge samachar sevaon dvara terror group ke snbndh men hi ullekh hai +",6,2 +"% s is calling you. Do you want to answer? +","% s आपको बुला कर रहा है. क्या आप जवाब देना चाहते हैं? +","s aapko bula kar raha hai kya aap javab dena chahte hain +",8,0 +"Exactly how LSD acts on the mind is not really known at present. +","एल. एस. डी. मस्तिष्क पर किस प्रकार असर डालती है, यह वर्तमान में ठीक-ठीक पता नहीं है। +","lsd es di mind par kis prkar asar dalti hai , yah present men thik-thik pata nahin hai. +",8,2 +"What they will gain will be the condemnation of God, the angels, and all people, +","उन लोगों का बदला यही है कि उनपर अल्लाह और फ़रिश्तों और सारे मनुष्यों की लानत है +","un people ka badla yahi hai ki unapar allah aur farishton aur sare condemnation of god hai +",6,6 +"Whether the image gallery pane should be resizable. +","क्या छवि गैलरी फलक बदलने योग्य होना चाहिए. +","kya image gallery pane badalne yogy hona chahie +",8,3 +"and who will be told, ""This is what you had called a lie"". +","फिर कहा जाएगा, ""यह वही है जिस तुम झुठलाते थे"" +","phir kaha jaega, yah vahi hai jis tum lie the +",9,2 +"So be patient with gracious patience. +","अतः धैर्य से काम लो, उत्तम धैर्य +","ata patient se kam lo , uttam patient +",7,6 +"Failed to store mail in temp file% s:% s +","% s अस्थायी फ़ाइल में डाक संग्रहन में असफलः% s +","s failed to store store mail men asaphla s +",5,1 +"Total Disbursements went upto `2, 629 Mn +","कुल संवितरण बढ़कर 2,629 मिलियन रुपए होना +","kul disbursements bakar 2,629 total mn hona +",5,5 +"Siyaramsharan Gupta Brotherhood of communities and inter - religious interaction is the very basis of our Indian society. +","जातीय भाईचारा और साम्प्रदायिक मेल मिलाप भारतीय समाज के आधार है। +","religious brotherhood aur samprdayik gupta milap indian communities ke basis hai. +",7,1 +"In their case, it is included in the capitation fee upto a distance of 5 km. between the Clinic of IMP and IP 's residence. +","उनके मामले में, इसे बीमा चिकित्सा व्यवसायी के क्लीनिक और बीमाकृत व्यक्ति के आवास के बीच 5 कि. मी. की दूरी तक प्रति व्यक्ति शुल्क में शामिल किया जाता है। +","unke mamle men , ise bima chikitsa vyavsayi ke clinic aur ip case ke residence ke bich 5 ki km ki distance tak prti case fee men shamil kiya jata hai. +",7,1 +"This treatment is only possible in proved cases of allergic asthma. +","यह उपचार केवल एलर्जी जनित दमा के निश्चित मामलों में ही कारगर है। +","yah treatment keval allergic janit asthma ke nishchit cases men hi karagar possible +",7,2 +"“Call Washington! Call Washington! ” “वॉशिंगटन +","से संपर्क करें! वॉशिंगटन से संपर्क करें! ” +","se call karen! vshingatan se call karen! +",7,0 +"Your discipline, commitment and determination will help you navigate through the rough terrain. +","आपका अनुशासन, समर्पण और संकल्प मुश्किल हालात से गुजरने में आपकी मदद करेगा। +","aapka discipline , samarpan aur commitment mushkil halat se gujarne men aapki rough karega. +",7,3 +"is another human being saying, “Do you understand this?” +","कोई दूसरा मनुष्य ये कहे, “क्या आपको समझ आया?” +","koee doosra manushy ye kahe, kya aapko samajh understand +",7,1 +"Items of export which are other than the crude oil. +","कच्चे तेल के अलावा निर्यात किया जाने वाला अन्य माल/सामान। +","crude oil ke alava niryat kiya jane vala any malsaman. +",8,1 +"Then God sent a raven, which scratched the earth, so that He might show him how to hide the corpse of his brother. ""Alas!"" he cried, ""Am I not able even to be like this raven, so that I may hide the corpse of my brother?"" And he repented. +","(तब उसे फ़िक्र हुई कि लाश को क्या करे) तो ख़ुदा ने एक कौवे को भेजा कि वह ज़मीन को कुरेदने लगा ताकि उसे (क़ाबील) को दिखा दे कि उसे अपने भाई की लाश क्योंकर छुपानी चाहिए (ये देखकर) वह कहने लगा हाए अफ़सोस क्या मैं उस से भी आजिज़ हूं कि उस कौवे की बराबरी कर सकॅू कि (बला से यह भी होता) तो अपने भाई की लाश छुपा देता अलगरज़ वह (अपनी हरकत से) बहुत पछताया +","tab use fikr huee ki lash ko kya kare to uda ne ek kauve ko bheja ki vah zamin ko kuredne laga taki use abil ko dikha de ki use apne hide the corpse kyonkar chhupani chahie ye dekhakar vah kahne laga hae afsos kya main us se bhi aajiz hoon ki us kauve ki barabri kar sakoo ki bla se yah bhi hota to apne hide the corpse chhupa deta alagaraz vah apni harakat se bahut pachhtaya +",6,1 +"So today We will save you in body that you may be to those who succeed you a sign. And indeed, many among the people, of Our signs, are heedless +","तो हम आज तेरी रुह को तो नहीं (मगर) तेरे बदन को (तह नशीन होने से) ब +","to people today sign ruh ko to nahin magar tere body ko many signs hone se b +",6,2 +"When the eye is bewildered, +","तो जब निगाह चौंधिया जाएगी, +","to jab eye chaundhiya jaegi, +",9,1 +"The greatest crime in the world is not developing your potential. When you do your best, you are helping others. +","अपनी सामर्थ्य का पूर्ण विकास न करना दुनिया में सबसे बड़ा अपराध है. जब आप अपनी पूर्ण क्षमता के साथ कार्य निष्पादन करते हैं, तब आप दूसरों की सहायता करते हैं. +","apni potential ka poorn vikas n karna world men sabse greatest crime hai jab aap apni poorn kshamta ke sath kary best karte hain , tab aap doosron ki sahayta karte hain +",6,1 +"""% s"" expects the second argument to be a time _ t +","""% s"" दूसरे तर्क की एक time _ t की आशा करता है +","s doosre argument ki ek time _ second ki aasha karta hai +",7,2 +"Uncus is any hook - shaped process or part +","अंकुश एक हुक आकारीय प्रक्रिया अथवा भाग है। +","ankush ek huk aakariy process or part hai. +",6,1 +"Standard Chartered has brought in 140 million. +","स्टैंडर्ड चार्टर्ड 140 मिलियन लाया है। +","standard chartered 140 million brought hai. +",7,1 +"Goods sent on consignment basis remain in possession and custody of the consignee. +","परेषण-आधार पर भेजा गया माल परेषिती के सुरक्षा व धारिता में रहता है। +","pareshan-aadhar par bheja gaya goods consignee ke suraksha v dharita men remain basis +",5,4 +"Nikzad Nojoumi 's illustrations have been used for a variety of children' s books. +","निकज़द नौजूमी के चित्र अनेकों बाल पुस्तकों में लिये गये है। +","nikazad naujoomi ke chitr anekon bal pustkon men liye gaye hai. +",9,1 +"They get upset at the slightest inconvenience and the government officials have a difficult task to bring them round. +","थोड़ी भी असुविधा से वे विचलित हो उठते हैं और सरकारी कर्मचारियों के लिए उन्हें रास्ते पर लाना एक विकट समस्या बन जाती है. +","thori bhi asuvidha se ve upset ho uthte hain aur government officials ke lie unhen raste par task to bring samasya ban jati hai +",7,1 +"Therefore listen not to the Unbelievers, but strive against them with the utmost strenuousness, with the (Qur 'an). +","अतः इनकार करनेवालों की बात न मानता और इस (क़ुरआन) के द्वारा उनसे जिहाद करो, बड़ा जिहाद! (जी तोड़ कोशिश) +","ata inkar karnevalon ki bat n manta aur is qur ke dvara unse unbelievers karo , bara unbelievers ! ji tor koshish +",6,2 +"Checking for installed package '% s' +","संस्थापित संकुल '% s' के लिए जाँच रहा है +","installed package s ke lie janch raha hai +",8,0 +"""As to these folk, - the cult they are in is (but) a fragment of a ruin, and vain is the (worship) which they practise."" +","“निश्चय ही वह लोग लगे हुए है, बरबाद होकर रहेगा। और जो कुछ ये कर रहे है सर्वथा व्यर्थ है। "" +","worship hi vah folk fragment hue hai , ruin hokar rahega. aur jo kuchh ye kar rahe hai sarvtha vain hai. +",6,1 +"The person who completes the action of ""behold"" meaning to see someone or something in an impressive manner. +","किसी को प्रभावशाली तरीके से देखने की क्रिया +","kisi ko impressive manner se dekhne ki action +",8,0 +"Allah destroys interest and gives increase for charities. And Allah does not like every sinning disbeliever. +","खुदा सूद को मिटाता है और ख़ैरात को बढ़ाता है और जितने नाशुक्रे गुनाहगार हैं खुदा उन्हें दोस्त नहीं रखता +","khuda sood ko mitata hai aur increase for charities hai aur jitne nashukre gunahgar hain khuda unhen dost nahin rakhta +",8,2 +"This is surely in the earlier Books, +","निस्संदेह यही बात पहले की किताबों में भी है; +","nissndeh yahi bat pahle ki earlier men bhi hai +",5,4 +"The naqara, twenty pairs, more or less. 3. +","2 नक्कारा जिसकी कोई बीस जोड़ियां हैं। +","2 naqara jiski koee twenty pairs hain. +",8,3 +"but to worship Me? Surely, that is a straight path. +","और यह कि मेरी बन्दगी करो? यही सीधा मार्ग है +","aur yah ki meri bandgi karo yahi straight path hai +",7,0 +"Whether the label widget should fill all available horizontal space +","क्या लेबल विजेट सभी उपलब्ध क्षैतिज स्थान को भरना चहिए +","kya label widget sabhi upalabdh horizontal space ko bharna chahie +",9,1 +"One article from devoting air dispersion modeling and transformation for technical quality and air dispersion modeling of air pollution. +","वायु प्रकीर्णन मॉडलिंग और रुपान्तरण फ़ार्मुले छह से एक लेख समर्पित करने के लिए तकनीकी गुणवत्ता और वायु प्रदूषण के वायु प्रकीर्णन मॉडलिंग +","air dispersion modeling aur rupantaran farmule chhah se ek lekh samarpit karne ke lie technical quality aur vayu prdooshan ke air dispersion modeling +",8,2 +"Together, we shall take India into the 21st century as a strong, self - confident, and prosperous nation. +","हम सब मिलकर सशक्त, आत्मविश्वास और समृद्ध राष्ट्र के रुप में भारत का 21वीं शताब्दि में पदार्पण कराएंगे। +","ham sab milakar sashakt, aatmvishvas aur prosperous nation ke rup men bharat ka 21vin shatabdi men padarpan karaenge. +",7,1 +"Before the boy could reply, a butterfly appeared and fluttered between him and the old man. +","इससे पहले कि लड़का कुछ जवाब देता एक तितली उन दोनों के बीच आकर अपने पर फड़फड़ाने लगी। +","isse pahle ki boy kuchh javab deta ek titli un donon ke bich aakar apne par pharapharane lagi. +",9,1 +"“Taste your ordeal. This is what you used to challenge. ” +","(और उनसे कहा जाएगा) अपने अज़ाब का मज़ा चखो ये वही है जिसकी तुम जल्दी मचाया करते थे +","aur unse kaha jaega apne azab ka maza chakho ye vahi hai jiski tum jaldi machaya karte the +",8,0 +"And their eyes spoke of death. +","उनकी आंखें मौत का संदेश दे रही थीं। +","unki eyes spoke of death de rahi thin. +",6,1 +"Overcrowding and outstanding registrations kept increasing . +","भीड़ भाड़ तथा शेष पंजीकरण की संख़्या में वृद्धि होती गयी . +","overcrowding and outstanding shesh pnjikaran ki snya men vriddhi hoti gayi +",7,1 +"At this stage, learned counsel for the parties have pointed out that the decreetal amount has since been deposited with the Registrar General of this court which is lying in an FDR. +","इस स्तर पर, पक्षकारों के विद्वत वकील ने ध्यान दिलाया कि डिक्रीत राशि तब से इस अदालत के महा-रजिस्ट्रार के पास जमा कर दी गई थी जो कि एक सावधि जमा रसीद में पड़ी हुई है. +","is star par, pakshkaron ke learned counsel ne dhyan dilaya ki decreetal amount tab se is adalat ke maha-rjistrar ke pas jama kar di gee thi jo ki ek savdhi jama rasid men pari huee hai +",7,3 +"Ganesh Chaturthi and Janmashtmi are the other two festivals which are celebrated with lots of fun and frolic. +","इनके अलावा गणेश चतुर्थी और जन्माष्टमी कुछ अधिक धूम-धाम के संग मनाये जाते हैं। +","inke alava ganesh chaturthi aur janmashtmi kuchh adhik dhoom-dham ke sng manaye jate hain. +",8,2 +"O which of your Lord 's bounties will you and you deny? +","तो तुम दोनों अपने रब की अनुकम्पाओं में से किस-किस को झुठलाओगे? +","to o donon apne rab ki bounties men se kis-kis ko jhuthlaoge +",7,4 +"A measurement of change in prices. +","कीमतों में परिवर्तन को आंकने का एक पैमाना। +","prices men change ko measurement ka ek paimana. +",7,1 +"Under the Act, the Controller - General of Patents, Designs and Trade Marks under Department of Industrial Policy and promotion, Ministry of Commerce and Industry is the Controller of Designs. +","अधिनियम के तहत, महानियंत्रक, पेटेंट, डिज़ाइन और ट्रेड मार्क वाणिज्यय एवं उद्योग मंत्रालय, औद्योगिक नीति एवं प्रवर्तन विभाग के अंतर्गत डिज़ाइनों का नियंत्रक है। +","act ke tahat , general , patents , dizain aur tred mark commerce evn trade ministry , industrial policy evn pravartan department ke antargat dizainon ka controller hai. +",7,0 +"Process of exercising control over trading in contraband goods. +","विनिषिद्ध/वर्जित वस्तुओं के व्यापार पर नियन्त्रण के लिए स्थापित प्रक्रिया। +","vinishiddhvarjit goods ke trading par control ke lie process prakriya. +",7,2 +"Every time you take a full and deep breath, or when you cachinnate well, you get extra energy instantly. +","हर बार जब भी आप पूरी और गहरी सांस लेते हैं, अथवा जोर से अट्टहास लगाते हैं, तो आपको तुरंत अतिरिक्त उर्जा प्राप्त होती है. +","har bar jab bhi aap full and deep sans lete hain, athva jor se atthas lagate hain, to aapko extra energy instantly prapt hoti hai +",7,1 +"You have to be in this range. +","आपको इसी रेंग मे रहना है +","aapko isi reng me range hai +",7,0 +"And this is what we 're designing for. +","और यह है जिसके लिए हम डिजाइन कर रहे हैं. +","aur yah hai jiske lie ham designing kar rahe hain +",8,1 +"Radhakrishnan returned to the Madras Presidency College in 1911. +","मद्रास प्रेसीडेंसी कॉलेज में राधाकृष्णन 1911 में लौटे। +","madras presidency college men radhakrishnan 1911 men laute. +",10,0 +"The IT sector has positioned India globally as a major services hub, becoming a major exporter of IT, BPO and software services. +","सूचना और प्रौद्योगिकी क्षेत्र ने भारत को सूचना प्रौद्योगिकी,बीपीओ तथा सॉफ्टवेयर सेवाओं का प्रमुख निर्यातक बनाते हुए एक प्रमुख सेवा केंद्र के रूप में विश्व में स्थापित कर दिया है। +","soochna aur praudyogiki kshetr ne bharat ko soochna praudyogiki,bipio tatha sphtveyar sevaon ka prmukh niryatak banate hue ek major services hub ke roop men vishv men sthapit kar diya hai. +",6,5 +"Total Disbursements went upto `2, 629 Mn +","कुल संवितरण बढ़कर 2,629 मिलियन रुपए होना +","kul disbursements bakar 2,629 total rupe hona +",5,7 +"It tells us how the data within the file is organized. A programme using the data must be able to recognize and access the data within the file. +","यह बताता है कि फाइल के अन्दर आकडा कैसे संगठित है। आकडा इस्तेमाल करने वाले किसी प्रग्राम को फाइल के अन्दर आकडा पहचानने तथा ऐक्सेस करने में सक्षम होना चाहिए। +","yah batata hai ki file ke andar data kaise sngthit hai. data istemal karne vale kisi pragram ko file ke andar data pahchanne tatha access karne men able hona programme +",6,3 +"Priyobroto had felt a wave of deep contentment. +","इससे पता नहीं कितना गहरा सुख उसे मिला था। +","isse pata nahin kitna deep sukh use mila tha. +",8,1 +"Unfortunately, some people who have been the victim of crime are more vulnerable, in the short term, to further crime. +","दुर्भाग्यवश , अपराध के शिकार हुए कुछ लोगों में फिर से उसके शिकार बनने की अधिक प्रवृत्ति होती है | +","vulnerable , victim of crime hue kuchh logon men phir se uske victim banne ki adhik prvritti hoti hai +",7,2 +"The birth of Urdu itself is due to this fact. +","उर्दू भी हिन्दी की इस शक्ति से ही पैदा हुई हैं। +","urdu bhi hindi ki is shakti se hi paida huee hain. +",10,0 +"Therefore that process is not sufficient for our Yoga; something else is needed more embracingly positive. +","इसलिये वह विधि हमारे योग के लिये पर्याप्त नहीं; किसी और साधन की भी आवश्यकता है जो अधिक सर्वग्राही रूप में भावात्मक हो। +","isliye vah vidhi hamare yog ke liye paryapt nahin kisi aur sadhan ki bhi aavashyakta hai jo adhik sarvagrahi roop men bhavatmak ho. +",9,2 +"How to claim see page 15. +","यह कैसे अर्जी भर के मिल सकता है इस के लिए पान क्रमांक 15 देखें । +","yah kaise arji bhar ke mil sakta hai is ke lie pan krmank 15 dekhen . +",8,1 +"Writing folder permissions, please wait... +","फ़ोल्डर अनुमतियाँ लिख रहा है, कृपया प्रतीक्षा करें... User +","folder anumtiyan likh raha hai , kripya wait karen User +",6,3 +"It was only later that I came to know about it. +","यह मुझे बाद में पता चला। +","yah mujhe bad men pata chala. +",10,0 +"Leaflets with more detailed informaiton on these sevices are available. +","इन सेवाओं के बारें में विस्तृत जानकारी के लिए पत्रिका उपलब्ध है। +","in sevaon ke baren men detailed informaiton ke lie patrika upalabdh hai. +",8,1 +"you can have a pack. +","आप एक बस्ता ले सकते हैं. +","aap ek basta le sakte hain +",5,9 +"Toggle display of the status bar. +","स्थिति पट्टी का प्रदर्शन टॉगल करें. +","status bar ka toggle display karen +",7,1 +"Their needs come low on the political agenda in countries that lack money and resources. +","धन और साधनों की कमी से जूझते देशों की राजनीतिक प्राथमिकताओं में इन लोगों की जरूरतों का स्थान बहुत नीचे होता है। +","money aur sadhnon ki low se joojhte countries ki political prathmiktaon men in logon ki needs ka sthan bahut niche hota hai. +",7,0 +"To account for some of the baffling features of the continents and oceans the great British geologist Arthur Holmes 1928, visualised some kind of convection currents in the mantle which caused movement of the crust. +","महाद्वीपीय तथा महासागरों की कुछ चौंका देने वाली विशिष्टताओं की व्याख्या करने के लिए विख्यात ब्रिटिश भूवैज्ञानिक आर्थर 141/भूमंडलीय विवर्तनिकी होम्स 1928 ने यह कल्पना की कि पृथ्वी के प्रावार में कुछ ऐसी संवहन धाराएं उत्पन्न हुईं जो भूपृष्ठ के संचलन का कारण बनीं। +","mahadvipiy tatha mahasagron ki kuchh chaunka dene vali vishishttaon ki vyakhya karne ke lie great british geologist aarthar 141bhoomndliy vivartniki homs 1928 ne yah kalpna ki ki prithvi ke pravar men kuchh aesi snvahan dharaen utpann hueen jo bhooprishth ke snchalan ka karan banin. +",8,1 +"Daar ji let our friendship grow but asked him to get permission of his parents for this match so that there was no problem later on. +","दार जी ने हमारी मित्रता को पल्लवित-पुष्पित होने दिया, परन्तु इनको कहा कि तुम भी अपने घरवालों से इस संबंध में सहमति ले लो, ताकि बाद में कोई कठिनाई न हो। +","dar ji ne hamari mitrta ko pallvit-pushpit hone diya, parantu inko kaha ki tum bhi apne gharvalon se is snbndh men sahamti le lo, taki bad men koee kathinaee n ho. +",8,4 +"Sector that includes entire wants and needs satisfying population of the country. +","वह क्षेत्र जिसमें देश की वह समस्त आबादी जो अपनी इच्छाओं और आवश्यकताओं की पूर्ति में संलग्न हो शामिल होती हो। +","vah sector jismen desh ki vah entire population jo apni ichchhaon aur aavashyaktaon ki poorti men snlagn ho shamil hoti ho. +",8,0 +"Sayings on Hindi by various great personalities +","हिन्दी के बारे में विभिन्न महापुरुषों के वचन +","hindi ke bare men great personalities ke vachan +",8,3 +"The so-called philosopher king who could rise above the stereotypes of his own party . +","एक तथाकथित दार्शनिक शासक , जो अपनी पार्टी के मानदंड़ों से ऊपर है . +","ek so-called philosopher king , jo apni party ke rise se oopar hai +",7,2 +"Amount outstanding under priority sector lending by public sector banks during the period June 1969 to September 2000 increased from Rs 441 crore to Rs 1, 34, 107 crore and accounted for 43. 41 per cent of their net bank credit as on September 2000. +","इस बीच प्राथमिकता प्राप्त क्षेत्र को दी गई बकाया ऋण राशि जून 1969 से सितंबर 2000 के बीच 441 करोड से बढ कर 1,34,107 करोड़ रुपये हो गई, जो सरकारी क्षेत्र के बैंकों के शुद्घ बैंक ऋण का 43.41 प्रतिशत थी। +","is bich priority prapt sector ko di period outstanding lending amount june 1969 se september 2000 ke bich 441 karod se badh kar 1,34,107 crore net ho period , jo public sector ke banks ke shudgh bank lending ka 4341 prtishat thi. +",7,2 +"They accept that they do know each other directly at see. +","वे स्वीकार करते हैं कि वे एक दूसरे पर सीधे देख पता है। +","ve svikar karte hain ki ve ek doosre par sidhe see other hai. +",5,3 +"21.Lovhaghat also called Iron Fort,it is one of the greatest attractions of Bharathpur. +","21. लौहागढ़ आयरन फोर्ट के रूप में भी जाना जाता है लौहागढ़ भरतपुर के प्रमुख ऐतिहासिक आकर्षणों में से एक है। +","21 fort iron phort ke roop men bhi jana jata hai fort bharatpur ke prmukh aetihasik attractions men se ek hai. +",6,2 +"In our own area, we are striving ceaselessly to clear old suspicions, to remove barriers to understanding and to create conditions for an enduring friendship between Bangladesh, Pakistan and ourselves. +","स्वयं अपने क्षेत्र में हम लगातार कोशिश कर रहे है कि पुराने संदेह दूर हो, आपसी समझ की राह खुले और बंगलादेश, पाकिस्तान तथा भारत के बीच स्थायी मित्रता के लिए परिस्थितियां अनुकूल बने। +","svyn apne kshetr men ham lagatar koshish kar rahe hai ki clear old suspicions ho, aapsi samajh ki rah khule aur bngladesh, pakistan tatha bharat ke bich sthayi mitrta ke lie paristhitiyan anukool bane. +",6,2 +"It is indeed a matter of introspection as to how, despite availability of agricultural labour and sizeable arable land, notwithstanding some decline in Asia, many Asian and African countries have witnessed spiralling food prices. +","इस बात पर वास्तव में आत्ममंथन की जरूरत है कि कृषि श्रमिकों तथा विशाल आकार में खेती योग्य भूमि, एशिया में कुछ कमी आने के बावजूद, के बाद भी बहुत से एशियाई और अफ्रीकी देशों में खाद्यान्न की कीमतों में अत्यधिक वृद्धि कैसे हुई है। +","is matter par vastav men introspection ki jaroorat hai ki agricultural shrmikon tatha sizeable aakar men kheti yogy land , asia men kuchh decline aane ke bavjood , ke bad bhi bahut se asian aur african countries men khadyann ki prices men atydhik vriddhi kaise huee hai. +",8,1 +"These are the ones who found their fathers steeped in error, +","उन लोगों ने अपन बाप दादा को गुमराह पाया था +","un logon ne found their fathers ko gumrah paya tha +",6,0 +"When he came to his Lord with a pure heart [attached to Allah Alone and none else, worshipping none but Allah Alone true Islamic Monotheism, pure from the filth of polytheism]. +","जब वह अपने परवरदिगार (कि इबादत) की तरफ (पहलू में) ऐसा दिल लिए हुए बढ़े जो (हर ऐब से पाक था +","jab vah apne lord ki ibadat ki pure heart men aesa dil lie hue bae jo har aeb se pak tha +",4,3 +"The rate of interest charged on cash credit and overdraft is relatively much higher than the rate of interest on bank deposits +","नकदी ऋण और ओवरड्राफ्ट पर प्रभावित ब्याज दर बैंक जमा की दर से अपेक्षाकृत बहुत अधिक होती है। +","nakdi rin aur ovaradrapht par prbhavit byaj dar bank deposits ki dar se apekshakrit bahut adhik hoti interest +",6,1 +"Loan amount up to Rs. 7. 50 lacs: 10 years. +","रु. 7.50 तक की ऋण के लिए: 10 वर्ष +","ru 750 tak ki rin ke lie: 10 years +",7,4 +"Ans : Twenty-eight (28),11.71% +","उत्तरः अट्ठाईस (28), 11.71% +","uttra twenty-eight 28, 1171 +",7,0 +"Sucharita said, Does respectful regard always show us the truth? +",">> सुचरिता ने कहा, श्रद्धा के द्वारा हमे क्या सत्य ही मिलता है? +","sucharita ne kaha , shraddha ke dvara respectful kya truth hi milta hai +",7,3 +"International usages are adopted in international communication by most of the countries of the world. +","विश्व के अधिकांश देशों द्वारा अन्तर्राष्ट्रीय प्रथा/प्रचलन को आपसी पत्राचार में अपना लिया गया है। +","most ke adhikansh countries dvara international prthaprachalan ko usages communication men apna liya gaya hai. +",7,0 +"No such items having value of Rs. 10 lakh or more has been procured by PMO during the financial year 2015-16. +","प्रधान मंत्री कार्यालाय में वित्त वर्ष 2015-16 के दौरान ऐसा कोई भी सामान नही खरीदा गया जिसका मूल्य 10 लाख रुपए या उससे अधिक हो। +","prdhan mntri karyalay men financial year 2015-16 ke dauran aesa koee bhi saman nahi kharida gaya jiska mooly 10 lakh rupe ya usse adhik ho. +",9,1 +"It administers the Urban Land (Ceiling & Regulation) Act, 1976 as well as the Urban Land (Ceiling & Regulation) Repeal Act, 1999. +","यह शहरी भूमि (उच्चितम सीमा और विनियमन), अधिनियम, 1976 तथा शहरी भूमि (उच्च तम सीमा और विनियमन) निरसन अधिनियम, 1999. का प्रशासन करता है। +","yah urban land uchchitam ceiling aur regulation , act , 1976 tatha urban land uchch tam ceiling aur regulation repeal act , 1999 ka prshasan karta hai. +",8,2 +"No maintenance charges required to be paid. +","कोई अनुरक्षण शुल्क देने की जरुरत नहीं है। +","koee maintenance charges dene ki jarurat nahin hai. +",10,0 +"Failed to get next auto increment value +","अगली स्वतः वृद्धि मूल्य प्राप्ति विफल हुई +","next auto increment value prapti viphal huee +",9,2 +"Query free / busy information for the attendees +","उपस्थित व्यक्ति के लिए रिक्त/व्यस्त सूचना प्रश्नगत करें +","upasthit vyakti ke lie busy information prashnagat karen +",8,1 +"Yes, if either of the parties want an adjournment of hearing, they should make an application in writing to the Exchange giving reasons for seeking adjournment to the Exchange in advance to enable the Exchange to forward such request to the arbitrator. +","हां, यदि दोनों में से कोई भी एक पक्ष सुनवाई का स्थगन चाहता है तो उन्हें स्थगन मांगने के कारणों को बताते हुए एक्सचेंज के पास अग्रिम रूप से एक आवेदन करना चाहिए जिससे कि एक्सचेंज ऐसे अनुरोध को आर्बिट्रेटर को भेज सके। +","han, yadi donon men se koee bhi ek paksh sunvaee ka sthagan chahta hai to unhen sthagan reasons for seeking ko batate hue ekschenj ke pas agrim roop se ek make an application jisse ki ekschenj aese anurodh ko aarbitretar ko bhej sake. +",6,1 +"Video output for Windows 7/Windows Vista with Platform update +","प्लेटफार्म अद्यतन के साथ Windows 7/Windows Vista के लिए वीडियो आउटपुट +","platform update ke sath Windows 7Windows Vista ke lie video output +",9,2 +"Publication of Rashtriya Bank Srijana: +","राष्ट्रीय बैंक सृजना का प्रकाशन: +","rashtriya bank srijana ka publication : +",9,0 +"but no information, no follow - up, +","मगर जानकारी गायब है, न कोई आगे की बात, +","magar information gayab hai , n koee follow ki bat , +",8,3 +"In 2011 - 12 the share of construction sector in GDP was about 7. 8%. +","2011-12 में निर्माण सेक्टर का सकल घरेलू उत्पाद में लगभग 7.8 प्रतिशत हिस्सा था। +","2011-12 men construction sector ka gdp ghareloo utpad men lagabhag 78 prtishat share tha. +",7,2 +"You have to put your tremendous expertise and experience to good use. +","आपको अपने वृहद् कौशल तथा अनुभव का उपयुक्त उपयोग करना होगा। +","aapko apne vrihad expertise and experience ka upyukt upyog karna hoga. +",9,1 +"A muscle that retracts an organ. +","एक पेशी जो किसी अंग का आकुंचन करती है. +","ek muscle jo kisi organ ka aakunchan karti hai +",9,0 +"Whether to use the ""- - driver generic - mmc - raw"" flag with cdrdao +","क्या ""-- driver generic-mmc-raw"" का प्रयोग cdrdao के साथ करना है +","kya -- driver generic-mmc-raw ka pryog cdrdao ke sath karna hai +",7,5 +"Use as desktop background '% s' +","डेस्कटॉप पृष्ठ भूमि '% s' के रूप में उपयोग करें +","desktop background bhoomi s ke roop men use karen +",8,1 +"A bone which forms the front part of the skull housing the brain. +","एक अस्थि जो कपाल का अग्र भाग निर्मित करती है जिसमें मस्तिष्क होता है +","ek bone jo skull ka front part nirmit karti hai housing brain hota hai +",8,1 +"% s,% d%% done,% s remaining +","% s,% d%% संपन्न,% s शेषशेष +","s , d snpann , s sheshshesh +",4,7 +"“I am a fox, ” the fox said.“ +","मैं लोमड़ी हूँ! ” लोमड़ी ने कहा। +","i fox hoon ! s fox ne kaha. +",5,5 +"The government official who supervises the matters related to the duty imposed on immovable property. +","वह सरकारी अधिकारी जो अचल संपत्ति पर लगे शुल्क से जुड़े मामलों की देखरेख करता है। +","vah government official jo immovable property par lage shulk se matters related ki dekhrekh karta hai. +",7,1 +"The construction of this temple was taken place in 4 century. +","मूल रूप से इस मंदिर का निर्माण चौथी शताब्दी के आस-पास हुआ था। +","mool roop se is mndir ka nirman chauthi shatabdi ke aas-pas huaa century +",9,0 +"Say: 'Obey Allah and obey the Messenger. If you turn away, upon him only rests what is laid upon him, and upon you rests what is laid on you. If you obey him, you shall be guided. It is only for the Messenger to deliver a clear message' +","(ऐ रसूल) तुम कह दो कि ख़ुदा की इताअत करो और रसूल की इताअत करो इस पर भी अगर तुम सरताबी करोगे तो बस रसूल पर इतना ही (तबलीग़) वाजिब है जिसके वह ज़िम्मेदार किए गए हैं और जिसके ज़िम्मेदार तुम बनाए गए हो तुम पर वाजिब है और अगर तुम उसकी इताअत करोगे तो हिदायत पाओगे और रसूल पर तो सिर्फ साफ तौर पर (एहकाम का) पहुँचाना फर्ज है +","ae messenger say kah do ki uda ki itaat karo aur messenger ki itaat karo is par bhi agar say sartabi karoge to bas messenger par itna hi tabli vajib hai jiske vah zimmedar kie ge hain aur jiske zimmedar say banae ge ho say par vajib hai aur agar say uski itaat karoge to hidayat paoge aur messenger par to sirph clear taur par ehkam ka pahunchana pharj hai +",7,0 +"Don't understand type ‘%s' +","प्रकार समझ नही पाया '%s' +","understand type nahi paya s +",5,0 +"Madhya Pradesh occupies perhaps the oldest part of the subcontinent – called the Gondwana - the home of the Gonds. +","मध्य प्रदेश संभवतया उप महाद्वीप का संभतया सबसे पुराना स्थान है जिसे गोंडवाना कहते हैं अर्थात गोंड समुदाय का घर। +","madhya pradesh snbhavatya subcontinent mahadvip ka snbhatya sabse oldest sthan hai jise gondwana kahte hain gonds samuday ka ghar. +",8,1 +"The free reeds are very much more scarce in India and can be seen in the harmonium and the rare instrument , khung or rusem , of the tribal areas of eastern India . +","स्वतंत्र पत्तियों का चलन भारत में बहुत कम है और हारमोनियम तथा पूर्वी भारत के आदिवासी क्षेत्र के दुर्लभ वाद्य खुंग अथवा रूसेम में देखने को मिलती हैं . +","free reeds ka chalan india men bahut kam hai aur harmonium areas eastern india ke tribal kshetr ke scarce instrument khung athva roosem men dekhne ko milti hain +",5,1 +"and seek forgiveness from Allah. Surely Allah is All - Forgiving, All - Compassionate. +","अल्लाह से क्षमा की प्रार्थना करो। निस्संदेह अल्लाह बहुत क्षमाशील, दयावान है +","forgiveness from allah ki prarthna karo. surely allah bahut forgiving, compassionate hai +",7,2 +"The muscle present below the perineum in both females and males. +","पुरूषों तथा स्त्रियों दोनों में मूलाधार से नीचे विद्यमान पेशियां +","males present females donon men perineum se niche vidyman muscle +",7,3 +"Said he, 'My Lord, respite me till the day they shall be raised.' +","उसने कहा, ""ऐ मेरे रब! फिर तू मुझे उस दिन तक के लिए मुहल्लत दे, जबकि लोग (जीवित करके) उठाए जाएँगे।"" +","lord kaha , ae mere rab ! phir too mujhe us day tak ke lie muhallat de , jabki log jivit karke uthae jaenge. +",7,0 +"Apply the given geometry to the main window +","मुख्य विंडो के लिए दिए गए ज्यामिति को लागू करें +","main window ke lie die ge geometry ko apply karen +",8,4 +"The Central Government too, has made assessment of the extent of damage caused to environment by plastic waste in the country by constituting Committees and a Task Force which studied the issue and made recommendations. +","केंद्रीय सरकार ने भी देश भर में प्लास्टिक से पर्यावरण को हो रहे नुकसान को रोकने के लिए एक समिति और टास्क फोर्स बनाई, जिसने अध्येयन किया और सिफारशें तैयार कीं। +","central government ne bhi desh bhar men environment by plastic ko ho rahe caused to environment ke lie ek samiti aur task phors banaee, jisne adhyeyan kiya aur sipharshen taiyar kin. +",5,2 +"That they said (in boast), ""We killed Christ Jesus the son of Mary, the Messenger of Allah""; - but they killed him not, nor crucified him, but so it was made to appear to them, and those who differ therein are full of doubts, with no (certain) knowledge, but only conjecture to follow, for of a surety they killed him not: - +","और उनके इस कथन के कारण कि हमने मरयम के बेटे ईसा मसीह, अल्लाह के रसूल, को क़त्ल कर डाला-हालाँकि न तो इन्होंने उसे क़त्ल किया और न उसे सूली पर चढाया, बल्कि मामला उनके लिए संदिग्ध हो गया। और जो लोग इसमें विभेद कर रहे है, निश्चय ही वे इस मामले में सन्देह में थे। अटकल पर चलने के अतिरिक्त उनके पास कोई ज्ञान न था। निश्चय ही उन्होंने उसे (ईसा को) क़त्ल नहीं किया, +","aur unke is kathan ke karan ki hamne marayam ke bete christ jesus, messenger of allah, ko tl kar dala-halanki n to inhonne use tl kiya aur n use sooli par chadhaya, balki mamla unke lie sndigdh ho gaya. aur jo log ismen vibhed kar rahe hai, nishchay hi ve is full of doubts conjecture to follow par chalne ke atirikt unke pas koee jnjan n tha. nishchay hi unhonne use eesa ko tl nahin kiya, +",7,0 +"Two rooms inside the fort had been converted into chapels, one for Anglican worship, the other for Roman Catholic. +","किले के अंदर दो कमरों को गिरजाघरों में तब्दील कर दिया गया था, एक एंगलीकन धर्मोपासना के लिए और दूसरा रोमन कैथोलिक उपासना के लिए। +","kile ke andar do kamron ko anglican worship tabdil kar diya gaya tha, ek englikan dharmopasna ke lie aur doosra roman catholic upasna ke lie. +",4,2 +"Now, I don't know if she's toying with me, +","अब मुझे नहीं पता कि वो मेरे साथ खिलवाड़ कर रही हैं या नहीं, +","ab mujhe nahin pata ki vo mere sath toying kar rahi hain ya nahin, +",10,0 +"Go to hell, Dileep snapped and stomped off, banging the door behind him. +","भाड़ में जाओं, उल्लास चीखा और उठकर धड़ाम से दरवाजा बंद करके चला गया। +","snapped men jaon , ullas chikha aur uthakar dharam se door bnd karke chala gaya. +",7,1 +"all powered on that coal. +","साब कोयले की ताकत पे खड़े हुए +","sab coal ki takat pe khare hue +",9,1 +"It was only later that I came to know about it. +","यह मुझे बाद में पता चला। +","yah i bad men pata chala. +",8,2 +"After discussion with the relevant doctor or nurse in the ward you can complaint against them formally if you are unhappy or unsatisfied with the services or facilities. +","सम्बन्धित डाक्टर या वार्ढ में नर्सों से बातचीत करने के बाद, हस्पताल में आप या आप के सम्बन्धी को प्राप्त होने वाली सेवाओं के बारे में यदि आप प्रसन्न नहीं हैं, तो आप औचारिक शिकायत कर सकते हैं। +","relevant doctor ya doctor or nurse se batchit karne ke bad, hasptal men aap ya aap ke sambandhi ko prapt hone vali services or facilities men yadi aap prasann nahin hain, to aap aucharik shikayat kar sakte hain. +",7,3 +"The Non - aligned have always been allies of peace. +","गुटनिरपेक्ष देश हमेशा से शांति के मित्र रहे है। +","non desh hamesha se peace ke allies rahe hai. +",6,4 +"'How well what he described as' my greatest fast 'helped to restore his normal cheer of spirits and good humour can be seen from the letter he dictated for Mira Behn three days later: I am dictating this immediately after the 3. 30 a. m. prayer while I am taking my meal such as a fasting man with prescribed food can take. +","जिसे उन्होंने मेरा सबसे बड़ा व्रत कहा था उसने उनके उल्लासपूर्ण और मनोविनोदी स्वभाव को किस सीमा तक वापस लौटाया, यह उस पत्र से स्पष्ट है जिसे उन्होंने तीन दिन बाद मीरा बहन के लिए लिखवाया थाः मै यह पत्र साढे. तीन बजे की प्रार्थना के फौरन बाद लिखवा रहा हूं जबकि मैं अपना वह भोजन कर रहा हूं जो एक व्रत रखनेवाले व्यक्ति के लिए निर्धारित है। +","jise greatest mera sabse good vrat kaha tha usne unke ullaspoorn aur manovinodi svbhav ko kis sima tak vapas lautaya , yah us letter se spasht hai jise greatest days din bad mira bahan ke lie likhvaya thaa i yah letter sadhe days baje ki prarthna ke phauran bad likhva raha hoon jabki main apna vah cheer kar raha hoon jo ek vrat rakhnevale man ke lie nirdharit hai. +",7,2 +"Set this to the key command you would like to use to summon Do. +","इसमें वह की कमांड डालें जिसके होने पर जीनोम डु शुरू हो जाये। +","ismen vah ki command dalen jiske hone par key du shuroo ho jaye. +",8,1 +"His life and the lives of those nearest and dearest to him would be forfeit if he refused to do the bidding of his lord. +","अगर अपने राजा की बात को मानने से इन्कार करता है तो उसके तथा उसके निकट संबंधियों की जान जाती है। +","agar apne raja ki bat ko manne se inkar karta hai to uske tatha uske nikat snbndhiyon ki jan jati hai. +",8,4 +"Windows that should be use alpha blur by default +","विंडोज़ जिसे मूलभूत रूप से अल्फा धुंधला का प्रयोग करना चाहिए +","windows jise default roop se alpha blur ka pryog karna chahie +",9,1 +"DNA- RNA- Protein All the aforementioned steps can be carried out in the test-tube if the building blocks , enzymes and ribosome 's are provided as well as the nucleic acid to give primary information sequence . +","डी.एन.एआर.एन.ए . प्रोटीन उपर्यु> सारी इऋयाएं एक परखनली में भी की जा सकती हैं बशर्ते इसके लिए आवशऋ-ऊण्श्छ्ष्-यक एंजाइम तथा राइबोसोम आदि पदार्थ उपलबऋ-ऊण्श्छ्ष्-ध हों.प्रारंभिक जानकारी का ऋम देने हेतु नऋ-ऊण्श्छ्ष्-यूकऋ-ऊण्श्छ्ष्-लिइक अमऋ-ऊण्श्छ्ष्-ल भी उपलबऋ-ऊण्श्छ्ष्-ध हो . +","dieneaarene protin uparyu sari iriyaen ek parakhanli men bhi ki ja sakti hain basharte iske lie aavshri-oonshchhsh-yak enzymes and ribosome aadi padarth upalbri-oonshchhsh-dh honprarnbhik jankari ka rim dene hetu nri-oonshchhsh-yookri-oonshchhsh-liik amri-oonshchhsh-l bhi upalbri-oonshchhsh-dh ho +",6,1 +"Our enemy is thoughtlessness. This is philosophy. ” +","अविचारशीलता हमारी शत्रु है। यह दर्शन है ” +","philosophy hamari enemy hai. yah darshan hai +",2,2 +"Allah said: be thou gone; then who soever of them followeth thee, Hell is your meed, a meed ample. +","ख़ुदा ने फरमाया चल (दूर हो) उनमें से जो शख़्श तेरी पैरवी करेगा तो (याद रहे कि) तुम सबकी सज़ा जहन्नुम है और वह भी पूरी पूरी सज़ा है +","uda ne pharmaya chal door ho unmen se jo shash teri pairvi karega to yad rahe ki tum sabki allah jahannum hai aur vah bhi thou thou allah hai +",4,6 +"Then say to him a gentle saying; haply he may be admonished or he may fear. +","उससे नर्म बात करना, कदाचित वह ध्यान दे या डरे। "" +","usse gentle bat karna, haply vah dhyan de ya fear +",6,1 +"One of the historical structures in Mumbai used to be Governor 's residence. +","मुंबई में ऐतिहासिक संरचना जहां राज्यपाल निवास करते थे। +","munbee men historical structures jahan rajypal nivas karte the. +",6,4 +"GNOME Theme% s correctly installed Gnome +","थीम% s ठीक से अधिष्ठापित है +","theme s thik se gnome hai +",4,2 +"""Adjournment of the sitting of the House""- Termination of the sitting of the House which meets again at the time appointed for the next sitting. +","""सभाकी बैठक का स्थगन"" -- स्थगन होने पर सभा की बैठक समाप्त हो जाती है और सभा अगली बैठक के लिए नियत समय पर पुनः समवेत होती है। +","sbhaki baithak ka sthagan -- sthagan hone par sabha ki baithak samapt ho jati hai aur sabha agli baithak ke lie time appointed par puna samvet hoti hai. +",4,5 +"Label comet names in the sky map? +","आकाश नक्शे पर धूमकेतुओं पर लेबल लगाएँ? +","label map par dhoomketuon par comet names +",7,0 +"Deva Devi, the lovely maiden, was the pride of Brahma 's creation. +","सुंदर कन्या देवदेवी ब्रह्मा की सृष्टि की गौरवपूर्ण रचना थी। +","sundar kanya devdevi brahma ki srishti ki gauravpoorn rachna thi. +",5,8 +"There is a lesson for you concerning cattle. We provide you with drink from their bellies and many other benefits. You can consume them as meat. +","और निश्चय ही तुम्हारे लिए चौपायों में भी एक शिक्षा है। उनके पेटों में जो कुछ है उसमें से हम तुम्हें पिलाते है। औऱ तुम्हारे लिए उनमें बहुत-से फ़ायदे है और उन्हें तुम खाते भी हो +","aur nishchay hi tumhare lie chaupayon men bhi ek shiksha hai. unke peton men jo kuchh hai usmen se ham tumhen pilate hai. au tumhare lie unmen bahut-se fayde hai aur unhen tum khate bhi ho +",8,4 +"refer to teachings and examples of our prophet, +","हमारे पैगम्बर की शिक्षाओं और उदाहरणों को उद्धृत करते हैं, +","hamare refer to teachings aur udaharnon ko uddhrit karte hain, +",6,1 +"Is Taj Mahal in realty the Temple of Lord Shiva? +","क्या ताजमहल वास्तव में शिव मंदिर है? +","lord taj vastav men realty temple hai +",5,2 +"Speech by The President of India,Shri Pranab Mukherjee at The National Education Day celebrations and the inauguration of 40th Jawaharlal Nehru National Science, Mathematics and Environment Exhibition for children - 2013 +","राष्ट्रीय शिक्षा दिवस समारोह तथा 40वीं जवाहरलाल नेहरू राष्ट्रीय बाल विज्ञान, गणित और पर्यावरण प्रदर्शनी - 2013 के उद्घाटन के अवसर पर भारत के राष्ट्रपति का अभिभाषण +","national education speech celebrations tatha 40vin jawaharlal nehroo national children science , mathematics aur environment exhibition - 2013 ke inauguration ke avasar par india ke president ka abhibhashan +",9,2 +"I.—Recovery of tax in respect of non-residents +","झ–अनिवासियों की बाबत कर की वसूली +","jhanivasiyon ki respect kar ki recovery +",7,1 +"These are gross and obvious examples but there are infinite and subtle gradations in the misunderstandings which can arise between people and the ways in which the law can tangle with traditional ways. +","यह सकल और स्पष्ट उदाहरण है, परंतु लोगों के बीच असंख्य और सूक्ष्म कारणों से अनेक गलत फहमियां पैदा हो सकती हैं और कानून कई तरह से परंपरागत रास्तों में उलझ सकता है। +","yah gross aur obvious examples hai , parntu logon ke bich asnkhy aur subtle ways se anek galat infinite paida ho sakti hain aur law kee tarah se traditional raston men ulajh sakta hai. +",6,1 +"Your Lord knows better than you (people). He will have mercy on you or will punish you as He wills. We have not sent you to watch over them. Your Lord knows best about those in the heavens and the earth. +","तुम्हारा परवरदिगार तुम्हारे हाल से खूब वाक़िफ है अगर चाहेगा तुम पर रहम करेगा और अगर चाहेगा तुम पर अज़ाब करेगा और (ऐ रसूल) हमने तुमको कुछ उन लोगों का ज़िम्मेदार बनाकर नहीं भेजा है +","tumhara paravardigar tumhare hal se khoob vaiph hai agar chahega tum par raham karega aur agar chahega tum par azab karega aur ae rasool hamne tumko kuchh un logon ka zimmedar banakar nahin bheja hai +",9,1 +"We saw earlier that thousands of devotees were visiting his house and that he used to spend the nights with them, singing devotional songs and speaking of Shiva. +","हम पहले देख चुके हैं कि हजारो भक़्त बसव के घर आते थे और वह भक़्तिपद गाता हुआ, शिव के बारे में बातें करता हुआ रातें उन्हीं के साथ बिताता था. +","ham pahle dekh chuke hain ki hajaro bhat basav ke ghar aate the aur vah bhatipad gata huaa, shiv ke bare men baten karta huaa raten unhin ke sath bitata tha +",7,6 +"Wherever you see the x, you just substitute it with the +","जहा भी आप जे देखे, आप इसे प्रतियस्थापित करे साथ +","jaha bhi aap je dekhe, aap ise substitute kare sath +",8,1 +"As a part of improvement of the infrastructure, Air India is in the process of creation of bases for new aircraft as under +","अधोसंरचना के विकास के लिए एयर इंडिया नए विमानों के लिए नए अड्डो के निर्माण की प्रक्रिया में लगा हुआ है। इसके अंतर्गत +","process of creation ke lie air india ne vimanon ke lie ne addo ke nirman ki prakriya men laga huaa hai. iske antargat +",7,0 +"The damage caused by man - made pollution and its effects on the future of mankind are now being seriously studied by scientists in a number of countries. +","मानव निर्मित प्रदूषण से होने वाली क्षति और भविष्य में मानव जाति पर होने वाले उसके दुष्प्रभावों का अब अनेक देशों में गंभीरतापूर्वक वैज्ञानिकों के द्वारा अध्ययन किया जा रहा है। +","man nirmit pollution se hone vali damage aur future men man jati par hone vale uske effects ka ab number countries men gnbhirtapoorvak scientists ke dvara adhyayan kiya ja raha hai. +",7,0 +"Negative 3, the opposite is 3. +","नकारात्मक 3, विपरीत 3 है. +","negative 3, opposite 3 hai +",9,2 +"Such an institution is no good for building the nation. +","यह संस्था राष्ट्र के नव निर्माण की दृष्टि से उपयोगी नहीं है। +","yah institution nation ke nav nirman ki drishti se upyogi nahin good +",8,2 +"Do they seek to hasten Our chastisement? +","तो क्या ये लोग हमारे अज़ाब की जल्दी कर रहे हैं +","to kya ye log chastisement azab ki jaldi kar rahe hain +",8,0 +"21 th edition (10 January - 10 December): WC3 focused on India. +","21वां अंक (10 जनवरी-10 दिसंबर): 3 भारत पर केंद्रित. +","21van th january janavri-10 december : 3 india par kendrit +",5,5 +"If you are already a widow or widower, you can get up to 100% of your late husband 's or wife' s Additional Pension. +","अगर आप पहले से ही विधवा है या फिर विधुर है तो आप को आप के गुजरे हुए पती या फिर पत्नी का अतिरिक्त निवृत्ती वेतन 100% तक मिल सकता है। +","agar aap pahle se hi widow hai ya phir vidhur hai to aap ko aap ke gujre hue pati ya phir patni ka additional pension pension 100 tak mil sakta husband +",6,5 +"There were great rulers holding sway over vast areas as well as minor chieftains who paid tributes to them and ruled over limited areas. +","उन दिनो अगर एक और बडे बडे भूभागो पर राज करने वाले और उनके अधीन सांमती करने वाले ऐसे छोटे छोटे सांमत सरदार भी थे जो सीमित भूभागो का शासन किया करते थे। +","un dino agar ek aur great great bhoobhago par raj karne vale aur unke adhin sanmti karne vale aese minor minor chieftains sardar bhi the jo limited bhoobhago ka rulers kiya karte tributes +",7,2 +"A proper medical examination will ensure high standards of health and physical fitness of employees and will reduce the rates of accidents, absenteeism and labour turnover. +","अच्छीट तरह की चिकित्साथ जांच कर्मचारी के उच्च़ स्त. रीय स्वानस्य्कि और शारीरिक फिटनेस सुनिश्चित करेगी और दुर्घटना की दर कम करेगी अनुपस्थिति घटेगी और श्रम उत्पादन बढ़ेगा। +","achchhit tarah ki chikitsath medical employees ke uch st riy svanasyki aur physical fitness sunishchit karegi aur accidents ki high kam karegi absenteeism ghategi aur labour utpadan standards +",5,1 +"causing redness of the skin by increasing its blood flow +","उसके रक्त का प्रवाह बढ़ने के कारण त्वचा की लालिमा. +","uske blood ka flow skin by increasing tvcha ki redness +",6,1 +"He works towards impacting the environment in a positive manner through his own actions as well as by imparting knowledge amongst students to help them achieve their potential. +","वह अपने कार्यों के जरिए तथा विद्यार्थियों को अपनी क्षमता अर्जित करने में मदद करने के लिए ज्ञान प्रदान करके वातावरण को सकारात्मक तरीके से प्रभावित करने का कार्य करता है। +","vah apne karyon ke jarie tatha vidyarthiyon ko apni kshamta arjit karne men madad karne ke lie jnjan prdan karke vatavaran ko sakaratmak tarike se prbhavit karne ka kary karta hai. +",7,3 +"A new computer center will come up for the poor children. +","गरीब बच्चों के लिए एक नया कंप्यूटर केन्द्र चालू होने वाला है। +","poor children ke lie ek new computer center chaloo hone vala hai. +",9,2 +"Apply Rajiv Gandhi Advocate’s Training Scheme +","राजीव गाँधी अधिवक्ता प्रशिक्षण हेतु आवेदन करना +","rajiv gandhi advocate prshikshan hetu aavedan karna +",9,0 +"The only cohesive factor was trade, which had been initiated in the Mauryan period, as a stable government ensured communication between various parts of the empire and encouraged active internal trade. +","इस काल का एकमात्र संगत उपादान व्यापार था जो मौर्य काल में प्रारंभ किया गया था क्योंकि स्थिर सरकार ने साम्राज्य के विभिन्न भागों में संचारण सुनिश्चित किया था तथा सक्रिय आंतरिक व्यापार को प्रोत्साहित किया था। +","is period ka only communication upadan factor tha jo mauryan period men prarnbh kiya gaya tha kyonki stable government ne empire ke various bhagon men sncharan sunishchit kiya tha tatha active internal factor ko protsahit kiya tha. +",8,0 +"Finance Bill 2008 was published on 27th March. +","वित्त विधेयक 29 मार्च 2000 को प्रकाशित किया गया था। +","finance bill 29 march 2000 ko published kiya gaya tha. +",9,1 +"And among them are some that say, “Our Lord! Give us good in the world and good in the Hereafter, and save us from the punishment of fire! ” +","और बाज़ बन्दे ऐसे हैं कि जो दुआ करते हैं कि ऐ मेरे पालने वाले मुझे दुनिया में नेअमत दे और आख़िरत में सवाब दे और दोज़ख़ की बाग से बचा +","aur baz bande aese hain ki jo duaa karte hain ki ae mere palne vale mujhe world men neamat lord aur aairat men savab lord aur doza ki bag se bacha +",4,5 +"that astonished the media business. +","जिन्होनें इन मीडिया कंपनियों की हवा निकाल दी। +","astonished in media knpniyon ki hava nikal di. +",7,0 +"Show disk view 'Type' column on startup +","'प्रकार' स्तंभ को आरंभन पर डिस्क दृश्य दिखाएँ +","prkar column on startup par show disk view +",6,1 +"Ladies and Gentlemen,I invite you to please join me in raising a toast: +","देवियो और सज्जनो, आइए हम सब मिलकरः +","ladies aur sajjno, toast ham sab milakra +",5,4 +"Oncotomy is a good option for treatment. +","अर्बुदछेदन उपचार का उत्तम विकल्प है +","arbudchhedan treatment ka good option hai +",8,1 +"After Gandhiji initiated the Non - Cooperation Movement, Azad was trying to choose whether to follow the ways of Gandhiji or the violent ways of the revolution. +","गांधीजी के असहयोग आन्दोलन छिड़ने के बाद वे गांधीजी के तरीकों और हिंसक आन्दोलन में से अपने लिए रास्ता चुनने लगे। +","gandhiji ke non cooperation chhirne ke bad ve gandhiji ke ways aur violent cooperation men se apne lie rasta azad lage. +",6,1 +"The arab and israeli war kept the tourist away from visiting these countries. +","अरब इज़राइल युद्ध ने इन देशों का दौरा करने से पर्यटक को दूर रखा। +","arab israeli war ne in visiting these countries karne se paryatak ko door rakha. +",7,1 +"Joint Forest Management Committees have played a key role in curbing the exploitation of forest resources that had often led to the marginalization and deprivation of tribal people. +","संयुक्त वन प्रबंधन समितियों ने अक्सर जनजातीय लोगों को पिछड़ा और अभावग्रस्त बनाने वाले वन संसाधनों के दोहन को समाप्त करने में प्रमुख भूमिका निभाई है। +","joint forest management committees ne aksar tribal resources ko pichhara aur abhavagrast banane vale forest snsadhnon ke exploitation ko samapt karne men key role nibhaee hai. +",8,1 +"It cannot be said that the product was unknown in India. +","ऐसा नहीं कहा जा सकता है कि यह उत्पाद भारत में अनजान था +","aesa nahin kaha ja sakta hai ki yah product india men unknown tha +",9,1 +"Have you not regarded those who style themselves as pure? Indeed, it is Allah who purifies whomever He wishes, and they will not be wronged [so much as] a single date - thread. +","(ऐ रसूल) क्या तुमने उन लोगों के हाल पर नज़र नहीं की जो आप बड़े मुक़द्दस बनते हैं (मगर उससे क्या होता है) बल्कि ख़ुदा जिसे चाहता है मुक़द्दस बनाता है और ज़ुल्म तो किसी पर धागे के बराबर हो ही गा नहीं +","ae rasool kya tumne un logon ke hal par nazar nahin ki jo aap bare pure bante hain magar usse kya hota hai balki uda jise chahta hai pure banata hai aur zulm to kisi par dhage ke barabar ho hi style nahin +",3,5 +"Tansen fell ill and it was two months before he could return to the court. +","लगातार दो महिने तक वह बीमार रहा। +","lagatar do months tak vah fell ill +",6,1 +"If set to true, then Nautilus shows folders prior to showing files in the icon and list views. +","यदि यह सत्य पर नियत किया जाता है, चिह्न तथा सूची दृश्य में नॉटिलस फ़ोल्डर्स को फ़ाइलें के पहले दिखाएगा. +","yadi yah saty par niyat kiya jata hai, icon and list drishy shows folders prior ko failen ke pahle dikhaega +",8,0 +"Externally, the quadrangular open court is surrounded by a prakara with a cloister, or malika, locally called nalambalam or chuttambalam. +","बाह्य रूप से चतुर्भुज खुला प्रांगण एक प्राकार से घिरा होता है जिसमें एक विहार, या मालिका होती है जिसे स्थानीय रूप से नलांबलम या चुट्टांबलम कहा जाता हैं. +","bahy roop se chaturbhuj open court ek prakar se ghira hota hai jismen ek vihar, ya malika hoti hai jise sthaniy roop se locally called nalambalam kaha jata hain +",7,1 +"And you probably all have it, and if you haven't, you need to. +","और शायद आप सभी में भी वह होता है, और अगर वह आपके पास नहीं है तो आपको उसकी आवश्यकता है। +","aur shayad aap sabhi men bhi vah hota hai, aur agar vah aapke pas nahin hai to aapko uski aavashyakta hai. +",10,0 +"Equally evident are grounds for introspection. +","समान रूप से स्पष्ट आत्मनिरीक्षण के लिए आधार हैं। +","saman roop se evident introspection ke lie grounds hain. +",9,2 +"citizens have self - organized political protests and +","नागरिकों ने खुद को राजनैतिक विरोधों में आयोजित किया और +","citizens ne khud ko political protests men aayojit kiya aur +",9,2 +"The Government of India had no adequate plans and arrangements for the country 's defence. +","भारत सरकार के पास देश की रक्षा के लिए पर्याप्त योजनाएं व इंतजाम न थे. +","india government ke pas country ki defence ke lie adequate plans v intjam n the +",7,3 +"Or, listen to Basava: The root is the mouth of the tree, pour water there at the bottom, and, look, it sprouts green at the top. +","अथवा बासव की बात सुनें, जड़ पेड़ का मुख है, जड़ को सींचो और देखो वह चोटी पर हरा-भरा हो जाता है। +","athva basav ki bat sunen, jar per ka mukh hai, jar ko sincho aur dekho vah choti par hara-bhra ho jata hai. +",4,7 +"We established between them and the town that We had blessed, other towns nearby, and thus made it easier to travel. We told them, ""Travel there safely day and night"". +","और हम अहले सबा और (शाम) की उन बस्तियों के दरमियान जिनमें हमने बरकत अता की थी और चन्द बस्तियाँ (सरे राह) आबाद की थी जो बाहम नुमाया थीं और हमने उनमें आमद व रफ्त की राह मुक़र्रर की थी कि उनमें रातों को दिनों को (जब जी चाहे) बेखटके चलो फिरो +","aur ham ahle saba aur sham ki un bastiyon ke darmiyan jinmen hamne barakat ata ki thi aur chand bastiyan sre rah aabad ki thi jo baham numaya thin aur hamne unmen aamad v rapht ki rah murrar ki thi ki unmen raton ko dinon ko jab ji chahe bekhatke chalo phiro +",3,5 +"and there's been a lot of talk about how life-changing this conference is +","और बहुत बातें हो रहीं हैं कि यह कांफ्रेंस कितनी असाधारण है, कायापलट कर देती है, +","aur bahut talk ho rahin hain ki yah conference lot asadharan hai, kayapalat kar deti hai, +",7,0 +"He further said, ” That the issue of the said periodical work of the said 28th day of April, 1883 was made up and published entirely on my responsibility, and to the best of my knowledge, information and belief, the said Ramcoomar Dey did not read anything contained therein in the editorial columns before the publication thereof. +","उन्होंने आगे कहा: ” कि उक्त पत्र का 28 अप्रैल 1883 का अंक पूरी तरह मेरी जिम्मेदारी पर तैयार हुआ और छपा. मेरी सर्वाधिक जानकारी, सूचना और विश्वास के अनुसार रामकुमार डे ने प्रकाशन से पहले इसके संपादकीय की सामग्री को नहीं पढ़ा +","work anything kaha : ki ukt patr ka 28 day 1883 ka ank poori tarah best responsibility par taiyar huaa aur chhapa best sarvadhik knowledge , soochna aur belief ke anusar ramcoomar periodical ne issue se pahle iske editorial ki samagri ko nahin paa +",5,1 +"just for the Carnival and the Knife. +","बस कार्निवल और नैफ के लिए. +","bas karnival aur naiph ke lie +",4,7 +"115AB. (1) Where the total income of an assessee, being an overseas financial organisation (hereinafter referred to as Offshore Fund) includes— +","115कख. (1) जहां किसी निर्धारिती की, जो विदेशी वित्तीय संगठन है (जिसे इसमें इसके पश्चात् ''अपतट निधि'' कहा गया है) कुल आय में,– +","115kakh 1 jahan kisi assessee ki, jo overseas financial sngathan hai jise isfund iske pashchat apatat nidhi kaha gaya hai kul aay fund, +",4,4 +"Remove the validity tests on this cell +","इस कक्ष पर वैधता जांच हटाएं +","is cell par validity tests hataen +",8,3 +"The Krishna temple, Pattabhirama temple, Hazara Ramachandra and Chandrasekhara temple as also the Jain temples, are other examples. +","यहां स्थित कृष्ण मंदिर, पट्टाभिराम मंदिर, हजारा राम चंद्र और चंद्र शेखर मंदिर भी यहां के जैन मंदिर हैं जो अन्य उदाहरण हैं। +","yahan sthit krishna temple , pattabhiram temple , hazara ram chndr aur chndr shekhar temple bhi yahan ke jain temple hain jo other examples hain. +",8,4 +"They say: 'You to whom the Remembrance is sent down, you are indeed mad. +","वे कहते है, ""ऐ व्यक्ति, जिसपर अनुस्मरण अवतरित हुआ, तुम निश्चय ही दीवाने हो! +","ve kahte hai , ae vyakti , jisapar remembrance avatrit huaa , tum nishchay hi mad ho ! +",8,0 +"A time of acute difficulty in financial matters. +","वित्तीय मामलों में संकट की घडी। +","financial matters men time ki ghadi. +",5,2 +"When composite tender is invited for various types of works / activities. +","जब विविध प्रकार के कार्यों के लिए एक ही संयुक्त टेन्डर जारी किया जाता हो। +","jab various types ke works ke lie ek hi composite tender jari kiya jata ho. +",10,0 +"You be there at 10 A. M. sharp. +","आप प्रात 10 बजे वहाँ हो तेज. +","aap prat 10 sharp vahan ho tej +",6,2 +"If I haven 't covered something, feel free to write a comment on +","अगर मैं कुछ शामिल नहीं किया है, पर एक टिप्पणी लिखने के लिए मुक्त महसूस करता हूँ +","agar i kuchh covered nahin kiya hai , par ek comment likhne ke lie free something karta hoon +",5,1 +"To the poor refugees who were driven out of their homes and their possessions, as they sought the favor of God and His approval, and came to the aid of God and His Messenger. These are the sincere. +","(इस माल में) उन मुफलिस मुहाजिरों का हिस्सा भी है जो अपने घरों से और मालों से निकाले (और अलग किए) गए (और) ख़ुदा के फ़ज़ल व ख़ुशनूदी के तलबगार हैं और ख़ुदा की और उसके रसूल की मदद करते हैं यही लोग सच्चे ईमानदार हैं और (उनका भी हिस्सा है) +","is possessions men un poor approval ka god bhi hai jo apne homes se aur malon se nikale aur favor kie ge aur uda ke fazal v ushnoodi ke messenger hain aur uda ki aur uske rasool ki aid karte hain yahi log sachche sincere hain aur unka bhi god hai +",7,4 +"I 've sinned, betrayed innocent blood. +","मैं ने पाप किया है, निर्दोष खून को धोखा दिया है. +","i ne pap kiya hai , innocent blood ko dhokha diya hai +",8,2 +"The tax paid by companies on their profits / capital gains. +","कंपनियों द्वारा उनके द्वारा कमाए गए लाभ/पूंजी लाभ पर दिया जाने वाला कर। +","companies dvara unke dvara kamae ge profitspoonji profits par diya jane vala tax +",6,5 +"Military action had been so scattered and sporadic that our people , often leaderless and without the means of getting news from remote places , perhaps did not even have a very clear picture of what was happening to their country . +","फौजी कार्रवाई इतनी छितरी हुई और छुटपुट थी कि हमारी जनता , जिनका न कोई नेता था और न ही जिसके पास दूर-दराज के इलाकों तक संचार के कोई साधन थे , शायद स्पष्ट रूप से यह जानती तक नहीं थी कि उनके देश को क़्या हो रहा +","military action itni chhitri huee aur chhutput thi ki hamari janta , jinka n koee neta tha aur n hi jiske pas door-draj ke ilakon tak snchar ke koee sadhan the , shayad spasht roop se yah janti tak nahin thi ki unke desh ko ya ho raha +",8,2 +"For example, in Silicon Valley, ethnic Indian technopreneurs form a significant constituency. +","उदाहरण के लिए सिलिकॉन घाटी में पारम्पफरिक भारतीय तकनीकी उद्यमी द्वारा एक महत्वलपूर्ण क्षेत्र रचित किया गया है। +","example ke lie silicon valley men parampaphrik indian takniki udymi dvara ek mahatvalpoorn kshetr significant kiya gaya ethnic +",6,3 +"It hissed again, fiercely. +","वह बड़े गुस्से से फिर फुसकारा। +","vah bare gusse se phir phuskara. +",9,1 +"Whoever brings virtue shall receive [a reward] better than it, but whoever brings vice—those who commit misdeeds shall not be requited except for what they used to do. +","जो कोई अच्छा आचारण लेकर आया उसे उससे उत्तम प्राप्त होगा, और जो बुरा आचरण लेकर आया तो बुराइयाँ करनेवालों को तो वस वही मिलेगा जो वे करते थे +","jo koee achchha virtue brings aaya use usse uttam prapt hoga , aur jo bura aacharan brings aaya to misdeeds karnevalon ko to vas vahi milega jo ve karte the +",7,2 +"I have complete knowledge of debenture bond. +","डिबेंचर बांड के बारे में मुझे समस्त जानकारी है। +","debenture bond ke bare men i samast complete hai. +",5,0 +"Let me draw a number line here, and I 'm just going to +","इसलिए मैं एक संख्या रेखा खिचने जा रहा हू, और +","islie i ek number line khichne ja raha hoo , aur +",8,2 +"about the kid who got this paper. +","उस बच्चे के विषय में जिसे यहपत्र मिला. +","us kid ke vishay paper jise yahapatr mila +",7,2 +"The square root of 4, what times itself or what positive +","4 का वर्गमूल, कौन सी संख्या या कौन सी घनात्मक संख्या +","4 ka square , kaun si snkhya ya kaun si positive snkhya +",6,4 +"They were as good as the babies in Taiwan +","वो ताइवान वाले शिशुओं जीतने अच्छे थे +","vo taiwan vale babies jitne good the +",9,1 +"You can not store this. +","आप इसे संग्रहित नही कर सकते। +","aap ise store nahi kar sakte. +",9,2 +"God could not care whether you believe in him or not, if he is there. +","ईश्वर यदि है, तो वह यह चिंता नहीं करेगा कि तुम उसके अस्तित्व को स्वीकार करते हो या अस्वीकार। +","god yadi hai , to vah yah chinta nahin karega ki tum uske astitv ko svikar karte ho ya asvikar. +",9,0 +"So too the world picture is perceived only in the reflected light of the Self through the darkness of avidya ignorance. +","इसी तरह विश्व-चित्र भी केवल अविद्या अज्ञान के अंधकार के बीच आत्मा के प्रतिबंबित प्रकाश में ही दिखाई पड़ता है। +","isi tarah vishv-chitr bhi keval self ignorance ke world ke picture aatma ke reflected light men hi dikhaee parta hai. +",7,2 +"The premature death a day earlier of her fourth son Bhupendranath at the age of thirteen, must have precipi - tated her own. +","इससे एक दिन पहले उनके चौथे पुत्र भूपेन्द्रनाथ की तेरह वर्ष की आयु में अकाल मृत्यु ने भी जल्द ही उनकी जीवनलीला समाप्त करने में मदद की होगी। +","earlier ek day pahle unke fourth son bhupendranath ki thirteen varsh ki age men premature death ne bhi jald hi unki jivanlila samapt karne men madad ki hogi. +",7,3 +"Thus, we see how critical the handloom sector is to the simultaneous realization of several seemingly disparate national objectives: employment generation, rural development, social justice and empowerment, women 's welfare, preservation and promotion of artisanry, and checking the migration of rural families to urban areas. +","अतः हम समझ सकते हैं कि रोजगार जुटाने, ग्रामीण विकास, सामाजिक न्याय, महिला कल्याण, कारीगरों और उनकी कला को संरक्षण तथा प्रोत्साहन और ग्रामीण लोगों का शहरों तथा नगरों की तरफ पलायन पर अंकुश लगाने जेसे विभिन्न राष्ट्रीय लक्ष्यों को प्राप्त करने के अभियान में हथकरघा क्षेत्र कितना महत्वपूर्ण है। +","ata families samajh sakte hain ki employment jutane , critical development , social justice , women welfare , karigron aur unki kala ko preservation tatha protsahan aur critical logon ka shahron tatha nagron ki taraph migration par ankush lagane jese several national realization ko prapt karne ke abhiyan men handloom sector kitna mahatvpoorn hai. +",7,2 +"Further, requests for changes or correction in PAN data or a request for a newPAN card (for an existing PAN) may also be made through the Internet. +","। इसके अतिरिक्तक पैन डाटा में परिवर्तन या सुधार के लिए अनुरोध या नए पैन कार्ड के लिए अनुरोध (मौजूदा पैन के लिए) भी इंटरनेट के माध्यपम से किया जा सकता है। +",". iske atiriktak changes data men parivartan ya correction ke lie requests ya ne changes card ke lie requests maujooda changes ke lie bhi internet ke madhyapam se kiya ja sakta hai. +",7,2 +"The more mature the clinician , the more expert will be his physical examination . +","डाक़्टर जितना अनुभवी होगा उसके द्वारा की गयी शारीरिक जांच भी उतनी ही सटीक होगी . +","clinician jitna anubhvi hoga uske dvara ki gayi physical examination bhi utni hi satik hogi +",9,1 +"In many civil service exams that take place in India, questions which test the general knowledge of a candidate are commonplace. +","भारत में कई सरकारी पदों के लिए होने वाली परीक्षाओं में सामान्य ज्ञान के प्रश्न अकसर पूछे जाते हैं। +","many men kee service candidate ke lie hone vali parikshaon men general knowledge ke civil akasar poochhe jate hain. +",5,4 +"Co - operation should be encouraged inland, industry and in other departments of national activity so that free India may develop into a co - operative commonwealth. +","खेती, उद्योग तथा राष्ट्रीय प्रवृत्ति के अन्य विभागों में सहकारिता की भावना को प्रोत्साहन देना चाहिये, जिससे स्वधीन भारत सहकारी प्रजातंत्र का रूप ग्रहण कर सके। +","kheti, udyog tatha rashtriy prvritti ke any vibhagon men sahkarita ki bhavna ko protsahan dena chahiye, jisse svdhin bharat sahkari prjatntr ka roop grahan kar sake. +",4,6 +"but believe me, we all share one incredibly powerful thing - +","परंतु विश्वास मानिए, हम सभी में एक अविश्वसनीय शक्तिशाली बात है - +","parntu vishvas share , ham sabhi men ek avishvasniy powerful thing hai - +",5,1 +"You can build your relationship together through those sometimes difficult teenage years . +","आप उसकी किशोरावस्था के दौरान , जो कभी-कभी बड़ी कठिन अवस्था होती है , उससे अपना निजी अंतरंग सम्बंध स्थापित कर सकते हैं . +","aap uski teenage ke dauran , jo kabhi-kbhi bari difficult avastha hoti hai , usse apna sometimes antrng relationship sthapit kar sakte hain +",5,5 +"very small change in time, we have a roughly constant +","बहुत छोटे परिवर्तन के समय में, हम एक मोटे तौर पर निरंतर है +","bahut chhote change in time men, ham ek roughly taur par nirntar hai +",9,2 +"Amazed at the strength of her love and at the same time ardently desiring to get rid of herYama granted a series of boons to her, in course of which, in a psychological moment, Savitri made him grant that she would have a hundred sons by Satyavan! +","सावित्री के प्रेम की शक्ति से चकित होकर तथा इसी के साथ उससे पीछा छुड़ाने की उत्कट इच्छा से यम ने उसे कई वरदान दिए और उन्हीं वरदानों के क्रम में सावित्री ने एक मनोवैज्ञानिक क्षण में उनसे यह भी स्वीकार कराया कि उसे सत्यवान से सौ पुत्रों की प्राप्ति हो। +","savitri ke love ki strength se chakit hokar rid isi ke sath usse pichha chhurane ki utkat ichchha se series ne use kee vardan sons aur unhin boons ke course men savitri ne ek psychological moment men unse yah bhi svikar karaya ki use satyvan se sau putron ki prapti ho. +",6,2 +"Have you not seen that they wander distract in every valley, +","क्या तुमने देखा नहीं कि वे हर घाटी में बहके फिरते हैं, +","kya tumne dekha nahin ki ve distract valley men bahke phirte hain , +",7,3 +"A chart / material showing the information on amount disbursed. +","धनराशि के वितरण के बारे में तैयार की गई रूपरेखागत सूचना सामग्री +","amount ke vitaran ke bare men taiyar ki gee information on amount +",8,2 +"The label used for menu items and buttons that activate this action. +","मेनू मद व बटन के लिये लेबल जो इस क्रिया को सक्रिय करता है. +","menu mad v items ke liye label jo is activate this action karta hai +",6,3 +"But what could they do with a patient who would not listen to them? +","पर जो रोगी उनकी बात माने नहीं, उसके लिए वे क्या कर सकते थे? +","par jo patient unki bat mane nahin, uske lie ve kya kar sakte the +",9,1 +"“I feel hesitant, and my tongue does not speak fast, therefore make Haroon also a Noble Messenger. ” +","और (उनके झुठलाने से) मेरा दम रुक जाए और मेरी ज़बान (अच्छी तरह) न चले तो हारुन के पास पैग़ाम भेज दे (कि मेरा साथ दे) +","aur unke jhuthlane se i hesitant ruk jae aur meri tongue achchhi tarah n chale to haroon ke pas paiam bhej de ki i sath de +",6,1 +"Preventer of good, aggressor, and doubter, +","जो (वाजिब हुकूक से) माल में बुख्ल करने वाला हद से बढ़ने वाला (दीन में) शक़ करने वाला था +","jo vajib hukook se mal men bukhl karne vala had se bane vala din men sha karne vala tha +",7,2 +"but to worship Me? Surely, that is a straight path. +","और यह कि मेरी बन्दगी करो? यही सीधा मार्ग है +","aur yah ki meri bandgi karo yahi straight path hai +",7,0 +"Third, Islamism has historic and philosophic ties to Marxism-Leninism. Sayyid Qutb, the Egyptian Islamist thinker, accepted the Marxist notion of stages of history, only adding an Islamic postscript to them; he predicted that an eternal Islamic era would come after the collapse of capitalism and Communism. Ali Shariati , the key intellectual behind the Iranian revolution of 1978-79, translated Franz Fanon, Che Guevara, and Jean-Paul Sartre into Persian. More broadly, the Iranian analyst Azar Nafisi observes that Islamism “takes its language, goals, and aspirations as much from the crassest forms of Marxism as it does from religion. Its leaders are as influenced by Lenin, Sartre, Stalin, and Fanon as they are by the Prophet.” +","तीसरा, ऐतिहासिक रूप से इस्लामवाद का मार्क्सवाद और लेनिनवाद से ऐतिहासिक और दार्शनिक सम्बन्ध है। मिस्र के इस्लामवादी चिंतक सैयद कुत्ब ने इतिहास के मार्क्सवादी विकास के चरण की अवधारणा को स्वीकार किया था और इसे मात्र इस्लामी स्वरूप दिया और उन्होंने भविष्यवाणी की थी कि पूँजीवाद और कम्युनिज्म के पतन के उपरांत शाश्वत इस्लामी युग आयेगा। 1978-79 की ईरानी क्रांति के पीछे प्रमुख बौद्धिक व्यक्ति अली शरियाती ने चे गुवेरा, फ्रांज फानोन और जीन पाल सार्टर का फारसी में अनुवाद किया था। इससे भी विस्तृत रूप में ईरानी विश्लेषक अजार नफीसी ने पाया कि इस्लामवाद, “ अपनी भाषा, उद्देश्य और प्रेरणा मार्क्सवाद के नाजुक स्वरूप से लेता है जितना कि यह धर्म से। इसके नेता लेनिन, सार्टेर , स्टालिन और फैनोन से भी प्रभावित हैं जैसे पैगम्बर से”। +","tisra, aetihasik roop se islamvad ka marksvad aur leninvad se aetihasik aur darshnik sambandh hai. misr ke islamvadi chintak saiyad kutb ne itihas ke marksvadi vikas ke charan ki avdharna ko svikar kiya tha aur ise matr islami svroop diya aur unhonne bhavishyvani ki thi ki poonjivad aur kamyunijm ke patan ke uprant shashvat islami yug aayega. 1978-79 ki eerani kranti ke pichhe prmukh bauddhik vyakti ali shariyati ne che guvera, phranj phanon aur jin pal sartar ka pharsi men anuvad kiya tha. isse bhi vistrit roop men eerani vishleshak ajar naphisi ne paya ki islamvad, apni bhasha, uddeshy aur prerna marksvad ke najuk svroop se leta hai jitna ki yah dharm se. iske neta lenin, sarter , stalin aur phainon se bhi prbhavit hain jaise paigambar se. +",4,7 +"Then we can make this same statement again. +","तो हम इस एक ही बयान पुनः बना सकते हैं। +","to ham is ek hi statement puna bana sakte hain. +",9,1 +"So the Government of India had no reason to revise its educational and cultural policy, which had been one of the causes of the Revolt of 1857, but decided to enforce it more systematically and thoroughly with the help of a large section of Indians. +","इसलिए भारत सरकार के पास उनकी शैक्षणिक और सांस्कृतिक नीति को संशोधित करने का कोई कारण नहीं रहा, जो कि 1857 के विद्रोह का एक कारण था, बल्कि बड़ी संख्या में भारतीयों की सहायता से उसे और सुव्वस्थित ढ़ग से अच्छी तरह कार्यान्वित करने का निश्चय किया। +","islie bharat educational and cultural unki shaikshnik aur sanskritik niti ko snshodhit karne ka koee karan nahin raha, jo ki 1857 ke vidroh ka ek karan tha, balki bari snkhya men bhartiyon ki sahayta se use aur suvvasthit g se achchhi tarah karyanvit karne ka nishchay kiya. +",7,2 +"Not only one but several contributions made by him will establish him as a great man for centuries to come. +","उन्होंने एक नहीं कई काम ऐसे किए जो सदियों तक उनकी महापुरुष के रुप में मान्यता कामय रखेंगे। +","great ek nahin kee man aese several jo centuries tak unki mahapurush ke contributions men manyta kamay rakhenge. +",7,3 +"It 's better to die that way than live like this . ” +","इस तरह जीने से बेहतर है उस तरह मर जाना . ' ' +","is tarah live se behatar hai us tarah mar die +",7,3 +"NH - 47 (Walayar – Kaliyikkavila) with a length of 416. 800 km; +","एनएच-47 (वालायार-कलिहीकविला) जिसकी लंबाई 416.800 किलो मीटर है; +","enech-47 valayar-klihikvila jiski length 416800 mitar hai +",7,2 +"In order to measure blood pressure the cuff is wound round the upper arm and the stethoscope is put below the cuff, over the artery, to hear the pulsation of blood passing through it. +","रक्तदाब या रक्तचाप मापने के लिए कफ को ऊपरी बाजू पर लपेट दिया जाता है और स्टैथोस्कोप उसके नीचे, धमनी के ऊपर रखा जाता है जिससे, उससे होकर गुजरने वाले रक्त के स्पंदन को सुना जा सके। +","raktdab ya measure blood ke lie kaph ko upper arm par lapet diya jata hai aur staithoskop uske niche, round the upper rakha jata hai jisse, usse hokar gujarne vale rakt ke spndan ko suna ja sake. +",6,3 +"Now, fixed price you can decide, well, how do I set that price. +","अब, तुम तय कर सकते हैं, अच्छी तरह से, कीमत तय कैसे मैं उस मूल्य निर्धारित करते हैं। +","ab, tum tay kar sakte hain, achchhi tarah se, price tay kaise main us mooly set that price +",7,1 +"Because over here, on this line, let 's take +","क्योंकि अधिक यहाँ, इस पंक्ति पर, चलो ले +","kyonki adhik yahan , is line par , chalo le +",9,2 +"He was friendly and helpful, charming and soft - spoken. +","वह मैत्रीपूर्ण, सहायताशील, आकर्षक और मृदुभाषी था. +","vah friendly, helpful, aakarshak aur mridubhashi tha +",8,3 +"The main purpose of my visit was to further strengthen our multi-faceted relations and consolidate our ties. +","मेरी यात्रा का मुख्य उद्देश्य हमारे बहु-आयामी रिश्तों को और मजबूत बनाना तथा अपने रिश्तों को प्रगाढ़ करना था। +","meri visit ka main purpose hamare bahu-aayami relations ko aur majboot banana tatha apne relations ko prga karna tha. +",9,2 +"Use as desktop background '% s' +","डेस्कटॉप पृष्ठ भूमि '% s' के रूप में उपयोग करें +","desktop background bhoomi s ke roop men upyog karen +",9,0 +"India exchanges mail with more than 217 countries by air and surface. +","भारत 217 से भी अधिक देशों के साथ स्थलीय और विमान सेवा द्वारा पत्रो का आदान-प्रदान करता है। +","india surface se bhi more countries ke sath sthliy aur air exchanges dvara patro ka aadan-prdan karta hai. +",7,2 +"and the guilty shall behold the Fire and know that they are bound to fall into it, and will find no escape from it. +","और गुनेहगार लोग (देखकर समझ जाएँगें कि ये इसमें सोके जाएँगे और उससे गरीज़ (बचने की) की राह न पाएँगें +","aur guilty log fire samajh jaengen ki ye ismen soke escape aur usse gariz bachne ki ki rah n paengen +",4,0 +"When he came to his Lord with a pure heart [attached to Allah Alone and none else, worshipping none but Allah Alone true Islamic Monotheism, pure from the filth of polytheism]. +","जब वह अपने परवरदिगार (कि इबादत) की तरफ (पहलू में) ऐसा दिल लिए हुए बढ़े जो (हर ऐब से पाक था +","jab vah apne lord ki ibadat ki taraph pure men true heart lie hue bae jo har islamic se pak tha +",6,1 +"After a few minutes' silence, Gora said, Please don 't involve me in all this. +",">> गोरा ने थोड़ी देर चुप रहकर कहा, देखिए, इन सब मामलों में मुझे न फँसाइये। +","gora ne few der silence rahakar kaha , dekhie , in sab mamlon men mujhe n phnsaiye. +",8,0 +"The officer who is entitled with the responsibility of arbitration. +","वह अधिकारी जिसे मध्यस्थता करने की जिम्मेदारी सौंपी गयी है। +","vah officer jise arbitration karne ki responsibility saunpi gayi hai. +",8,3 +"She answered, This is their home. +","उत्तर था, यह उनका घर है। +","uttar tha , yah unka ghar home +",5,8 +"Lamas practice dance, sing and play on pipes and horns. Many Lamas get religious training here. +","यहां लामा नृत्य, गीत गायन और नाटकों में पाइपों तथा सींगों का इस्तेमाल करते हैं। अनेक लामा यहां धार्मिक प्रशिक्षण प्राप्त करते हैं। +","yahan practice dance , sing gayan aur play men paipon tatha horns ka istemal karte pipes many practice yahan religious training prapt karte pipes +",7,0 +"You need two numbers or string to do an addition +","जोड़ने के लिए आपको दो संख्या या वाक्यांश चाहिए +","addition ke lie aapko do numbers or string chahie +",8,3 +"Your discipline, commitment and determination will help you navigate through the rough terrain. +","आपका अनुशासन, समर्पण और संकल्प मुश्किल हालात से गुजरने में आपकी मदद करेगा। +","aapka anushasan, commitment and determination mushkil halat se gujarne men aapki madad karega. +",10,0 +"In Hindi, the word “”America“” is used instead of “”United States of America“”. +","हिन्दी भाषा में संयुक्त राज्य या संयुक्त राज्य अमेरिका के स्थान पर केवल अमेरिका कहने का ही प्रचलन है जो इस देश के लघु नाम के रूप मे उपयोग में लाया जाता है। +","hindi bhasha men united rajy ya united rajy america ke sthan par keval america kahne ka hi prachalan hai jo is desh ke laghu nam ke roop me upyog men laya jata hai. +",7,3 +"Some may go to out-of-the-way places to sniff which can add to the dangers . +","कुछ लोग संभवतः सुँघनी लेने के लिए कोई अनजानी जगह भी चुन सकते हैं , जिससे ख़तरे और बढ़ सकते हैं . +","kuchh log snbhavta sunghni lene ke lie koee places jagah bhi out-of-the-way sakte hain , jisse tre aur ba sakte hain +",5,6 +"Chromium is no longer updating because your operating system is obsolete. +","क्रोमियम अब और अपडेट नहीं कर रहा है क्योंकि आपका ऑपरेटिंग सिस्टम अप्रचलित है. +","chromium ab aur apdet nahin kar raha hai kyonki aapka operating system obsolete hai +",8,1 +"It ' s what turns lead into gold , and makes the gold return to the earth . ” +","यही चक्र सीसे को सोना बना देता है , और सोने को धरती में वापिस समावेश करा देता है । ” +","yahi chakr lead ko gold return deta hai , aur sone ko earth men vapis samavesh kara deta hai . +",6,1 +"Cannot send message: no recipients defined. +","संदेश नहीं भेज सकता हैः कोई प्राप्तकर्ता परिभाषित नहीं है. +","message nahin send sakta haia koee recipients defined nahin hai +",7,3 +"Then, when He will, He bringeth him again to life. +","फिर जब चाहेगा उसे (जीवित करके) उठा खड़ा करेगा।- +","phir jab life use jivit karke utha khara karega.- +",8,0 +"Deposits of stock is governed by prescribed rules. +","माल जमा की प्रक्रिया निर्धारित नियमों के अनुसार होगी। +","stock deposits ki prakriya prescribed rules ke anusar hogi. +",10,0 +"than about capturing a moment really. +","बजाय सच में एक पल को खींचने के | +","bajay sach men ek pal ko capturing ke +",8,2 +"Mountain Biking (External website that opens in a new window) +","माउंटेन बाइकेन (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","maunten baiken bahri vebsait jo ek nee vindon website that opens +",4,4 +"I have pointed out the mistakes in these translations. +","मैं अनुवादों की अशुद्धियां दिखा चुका हूं। +","main translations ki ashuddhiyan dikha chuka hoon. +",9,1 +"Those of Abraham and Lut; +","और इबराहीम की क़ौम और लूत की क़ौम +","aur ibrahim ki aum aur loot ki aum +",6,3 +"At this stage, learned counsel for the parties have pointed out that the decreetal amount has since been deposited with the Registrar General of this court which is lying in an FDR. +","इस स्तर पर, पक्षकारों के विद्वत वकील ने ध्यान दिलाया कि डिक्रीत राशि तब से इस अदालत के महा-रजिस्ट्रार के पास जमा कर दी गई थी जो कि एक सावधि जमा रसीद में पड़ी हुई है. +","is stage par , pakshkaron ke vidvat counsel ne dhyan dilaya ki decreetal amount tab se is adalat ke maha-rjistrar ke pas jama kar general gee thi jo ki ek fdr jama rasid men pari huee hai +",6,4 +"Paraumbilical is also known as paraomphalic. +","परानाभिक को नाभि के पास स्थित जाना जाता है +","paranabhik ko nabhi ke pas sthit jana jata hai +",5,9 +"So at very low frequencies, or very long wavelengths, +","ऐसा बहुत कम आवृत्तियों, या बहुत लंबे तरंग दैर्ध्य पर, +","aesa bahut kam frequencies, ya bahut long tarng wavelengths par, +",5,5 +"After discussion with the relevant doctor or nurse in the ward you can complaint against them formally if you are unhappy or unsatisfied with the services or facilities. +","सम्बन्धित डाक्टर या वार्ढ में नर्सों से बातचीत करने के बाद, हस्पताल में आप या आप के सम्बन्धी को प्राप्त होने वाली सेवाओं के बारे में यदि आप प्रसन्न नहीं हैं, तो आप औचारिक शिकायत कर सकते हैं। +","relevant doctor ya discussion men narson se batchit karne ke bad , hasptal men aap ya aap ke sambandhi ko prapt hone vali services ke bare men yadi aap unhappy nahin hain , to aap ward shikayat kar sakte hain. +",6,2 +"But in this plot he followed the SRI method of nursery preparation. +","लेकिन इस प्लॉट में उन्होंने नर्सरी तैयार करने के लिए श्री पद्धति का अनुसरण किया। +","lekin is plt men unhonne nursery preparation karne ke lie shri method of nursery kiya. +",5,6 +"“ Could he see you ? ” +","“ क्या उसने तुम्हें देख लिया ? ” +","kya usne tumhen dekh liya +",7,3 +"Vast majority suffered, died or lived disabled. +","अधिकांश लोग तो पीड़ित रहे, मर गए अथवा विकलीकृत disabled हो गए। +","vast majority to suffered rahe, mar ge athva viklikrit disabled ho ge. +",7,1 +"We want you to rewrite this integral when +","हम आपको इस अभिन्न जब फिर से लिखना करने के लिए चाहता हूँ +","ham aapko is integral jab phir se rewrite karne ke lie chahta hoon +",8,1 +"Besides the above, there are other symbols of the village gods. +","इनके अतिरिक्त, ग्रामीण देवताओं के अन्य प्रतीक भी हैं। +","inke atirikt, village gods ke any prtik bhi hain. +",9,2 +"141. [Omitted by the Taxation Laws (Amendment) Act, 1970, w.e.f. 1-4-1971.] +","141. [कराधान विधि (संशोधन) अधिनियम, 1970 द्वारा 1.4.1971 से लोप किया गया।] +","141 taxation laws amendment act , 1970 dvara 141971 se lop kiya gaya. +",7,1 +"This is because we have excellent faculty members as well as brilliant students and do not lack in merit. +","ऐसा इसलिए है क्योंकि हमारे यहां श्रेष्ठ संकाय सदस्य और प्रतिभावान विद्यार्थी हैं और हमारे यहां गुणवत्ता की कमी नहीं है। +","aesa islie hai kyonki hamare yahan excellent faculty members aur prtibhavan vidyarthi hain aur hamare yahan gunavatta ki kami nahin hai. +",8,1 +"and so that He might admit the believers, men and women, into Gardens through which rivers flow, to dwell therein forever, and so that He may remove their evils from them, that is, indeed, a supreme triumph in God 's eyes, +","ताकि मोमिन मर्द और मोमिना औरतों को (बेहिश्त) के बाग़ों में जा पहुँचाए जिनके नीचे नहरें जारी हैं और ये वहाँ हमेशा रहेंगे और उनके गुनाहों को उनसे दूर कर दे और ये ख़ुदा के नज़दीक बड़ी कामयाबी है +","taki momin men and women aurton ko behisht ke baon men ja pahunchae jinke niche nahren jari hain aur ye vahan hamesha rahenge aur unke gunahon ko unse door kar de aur ye uda ke nazdik bari kamyabi hai +",4,4 +"Every time you take a full and deep breath, or when you cachinnate well, you get extra energy instantly. +","हर बार जब भी आप पूरी और गहरी सांस लेते हैं, अथवा जोर से अट्टहास लगाते हैं, तो आपको तुरंत अतिरिक्त उर्जा प्राप्त होती है. +","har time jab bhi aap full aur deep breath lete hain , athva jor se atthas energy hain , to aapko turnt extra urja prapt hoti hai +",7,1 +"Nearest - neighbor interpolation is an algorithm is used to map a screen pixel to the corresponding point on the texture map. +","निकटतम पड़ोसी-प्रक्षेप, एक कलन विधि (एल्गोरिथ्म) होती है, जो स्क्रीन के पिक्सेल को प्रतिचित्रण पर बिंदु के अनुरूप प्रतिचित्रतित करती है। +","nikatatam parosi-prakshep, ek kalan vidhi elgorithm hoti hai, jo skrin ke piksel ko prtichitran par bindu ke anuroop prtichitrtit karti hai. +",5,8 +"There is a good deal of mixing - up of various Shaiva groups since Basava. +","बसव के पश्चात् विभिन्न शैव सम्प्रदायों में काफी मिश्रण हुआ है। +","basava ke pashchat various shaiva good men kaphi mishran huaa hai. +",7,2 +"We should ensure that these pillars remain strong and unshakable. +","हमें यह सुनिश्चित करना चाहिए कि इन स्तंभों की सुदृढ़ता और अविचलता बनी रहे। +","hamen yah sunishchit karna chahie ki in pillars ki sudrita aur avichalta bani ensure +",8,1 +"Your password has been changed. +","आपका शब्दकूट बदला गया है. +","aapka password badla gaya hai +",10,0 +"The pronouncements of the Supreme Court on the validity of certain measures for, protection of these sections of the society amply bear out the need and justification for these exceptions See Yusuf Abdul Aziz v. +","समाज के इन वर्गों के संरक्षण के लिए कतिपय कानूनों की विधिमान्यता के संबंध में उच्चतम न्यायालय की उद्घोषणाएं इन अपवादों की जरूरत तथा औचित्य को प्रचुर रूप में प्रमाणित करती हैं। +","society ke in sections ke protection ke lie certain measures ki validity ke snbndh men supreme court ki udghoshnaen in exceptions ki need tatha justification ko prchur v men prmanit karti hain. +",9,2 +"Thus the word ' costs ' included costs incidental to the suit . +","इस प्रकार खर्च शब्द में वाद के सभी अनुषंगी खर्च शामिल हैं . +","is prkar costs word men suit ke sabhi anushngi costs included hain +",8,2 +"Notification area applet for managing your network devices and connections. +","आपके संजाल युक्तियां और कनेक्शन को प्रबंधित करने के लिए अधिसूचना क्षेत्र एप्लेट. +","aapke network devices aur connections ko prbndhit karne ke lie notification area applet +",9,0 +"These reverses inflicted a huge psychological blow to the organisation, which hastily claimed the surrenders were stage - managed. +","इससे संग न को करारा ज्ह्टका लगा और उसने कहा कि आत्मसमर्पण विशुद्ध रूप से प्रायोजित कार्रवाई है. +","isse sng n ko reverses jhtka stage aur usne kaha ki surrenders vishuddh roop se prayojit karrvaee hai +",6,4 +"It has a green cover of 41 percent and rich mineral deposits of iron ore, aluminium, bauxite, tin and coal. +","इसके 41 प्रतिशत भूभाग जंगलों से आच्छादित हैं तथा यहां लौह अयस्क, एल्यूमिनियम, बॉक्साइट, टिन तथा कोयले जैसे खनिजों की बहुतायत है। +","iske 41 prtishat bhoobhag jnglon se aachchhadit hain tatha yahan iron ore, elyoominiyam, bksait, tin and coal jaise khanijon ki bahutayat hai. +",6,4 +"It could be that, other than fiscally, he is not a conservative but a moderate. It could be ego: the governor is just more brilliant than the rest of us. Or, as several analysts suggest, it could be cynical double pandering: Muslims get what they want most and Zionists what they want most, with each party ignoring what Christie does for the other. Interestingly, Senator Joseph Lieberman of Connecticut pursued this double track policy (soft on Islamism, staunch on Israel) and became the Democrats' VP candidate in 2000. < s > Whatever the reason, we conclude that Chris Christie lacks the moral compass, gravitas, and integrity needed to serve as vice - president of the United States. +","हो सकता है कि बजट घाटे के अतिरिक्त वे परम्परावादी न होकर नरमपंथी हों। या फिर अहंकार हो कि राज्यपाल से मेधावी कौन हो सकता है? या फिर जैसा कि अनेक विश्लेषक सुझाव देते हैं कि यह दोहरे तुष्टीकरण की नीति हो सकती हैः मुसलमानों को अधिक से अधिक वह मिले जो वह चाहते हैं और इजरायलवादियों को वह जो वह चाहते हैं और इस मामले में दोनों ही इस बात की परवाह नहीं करते कि क्रिस्टी दूसरों के लिये क्या कर रहे हैं? रोचक बात है कि कानेक्टीकट के सीनेटर जोसेफ लिबरमैन ने इस दोहरी नीति को अपनाया था (इस्लामवाद के प्रति नरम, इजरायल के प्रति रवैया) और 2000 मे डेमोक्रेट की ओर से उपराष्ट्रपति पद के प्रत्याशी बने थे। +","ho sakta hai ki bajat ghate ke united ve conservative n moderate narampnthi hon. ya phir ahnkar ho ki governor se brilliant kaun ho sakta hai ya phir jaisa ki several analysts sujhav dete hain ki yah double tushtikaran ki policy ho states haia muslims ko reason se reason vah mile jo vah other hain aur ijrayalvadiyon ko vah jo vah other hain aur is mamle men donon hi is bat ki parvah nahin karte ki christie party ke liye kya kar rahe hain rochak bat hai ki cynical ke senator joseph lieberman ne is dohri policy ko apnaya tha islamvad ke moral soft , ijrayal ke moral ravaiya aur 2000 me demokret ki or se vice compass ke pratyashi bane the. +",7,1 +"and we have the derivative sin of x because we learned the +","और हम एक्स के व्युत्पन्न पाप है, क्योंकि हम सीखा +","aur ham x ke derivative sin hai , kyonki ham sikha +",3,3 +"And most of them believe not in Allah without associating (other as partners) with Him! +","इनमें अधिकतर लोग अल्लाह को मानते भी है तो इस तरह कि वे साझी भी ठहराते है +","most other log allah ko mante bhi hai to is tarah ki ve sajhi bhi thahrate hai +",8,0 +"National Population Policy (File referring to external site opens in a new window) +","राष्ट्रीय जनसंख्या नीति (पीडीएफ फाइल जो नई विंडों में खुलती है) +","national population policy file referring jo nee external site opens hai +",5,0 +"UPS is below the critical level and this computer is about to shutdown. +","UPS गंभीरता स्तर से नीचे है और यह कंप्यूटर बंद होने के कगार पर है. +","UPS ups level se niche hai aur yah computer bnd hone ke kagar par hai +",7,3 +"And the overturned towns He hurled down +","उलट जानेवाली बस्ती को भी फेंक दिया। +","overturned janevali basti ko bhi phenk diya. +",8,2 +"If set to true, then Nautilus shows folders prior to showing files in the icon and list views. +","यदि यह सत्य पर नियत किया जाता है, चिह्न तथा सूची दृश्य में नॉटिलस फ़ोल्डर्स को फ़ाइलें के पहले दिखाएगा. +","yadi yah true par niyat kiya jata hai , icon tatha list drishy men folders foldars ko files ke pahle dikhaega +",7,3 +"C _ heck for new messages in all folders +","सभी फ़ोल्डर में नये संदेश के लिये जांचें (_ h) +","sabhi folders men new messages ke liye janchen _ c +",8,2 +"has the minimum number of wiggles. +","उसमे सबसे कम हलचल होता है. +","usme sabse minimum wiggles hota hai +",8,2 +"The decree that the court gave was an appealable decree. +","अदालत ने जो डेक्री दी वह एक अपीलनीय डेक्री थी। +","court ne jo decree di vah ek court gave thi. +",6,1 +"Book where objections are recorded. +","पुस्तक जिसमें एतराज अंकित किए जाते हो। +","pustak jismen etraj ankit kie jate ho. +",8,1 +"Three public meetings were held in Bombay City to observe this day. +","उस अवसर पर बंबई में तीन सभाएं की गयीं। +","us avasar par bombay men tin meetings ki gayin. +",9,1 +"UNICEF with PressWise Training Page 31 The Media and the UN Convention on the Rights of the Child Appendix 1 A journalist 's summary of the United Nations Convention on the Rights of the Child The preamble recalls the basic principles of the United Nations - in particular the spirit of peace, dignity, tolerance, freedom, equality and solidarity - and specific provisions of relevant human rights treaties and proclamations. +","युनिसेफ और प्रेसवाइज ट्रेनिंग 31 मीडिया और संयुक्त राष्ट्र बाल समझौता परिशिष्ट 1 संयुक्त राष्ट्र बाल अधिकार समझौते का पत्रकारों के लिए सारांश प्रस्तवाना में संयुक्त राष्ट्र के बुनियादी सिद्धांतों-विशेषकर शांति, गरिमा, सहनशीलता, स्वतंत्रता, समानता और एकजुटता की भावना-और मानव अधिकार की उपयुक्त संधियों ओर घोषणाओं के विशिष्ट प्रावधानों की याद दिलाई गई है। +","yuniseph aur presvaij trening 31 midiya aur snyukt rashtr bal samjhauta parishisht 1 snyukt rashtr bal adhikar samjhaute ka patrkaron ke lie saransh prastvana men snyukt rashtr ke buniyadi siddhanton-visheshakar shanti, garima, sahanshilta, svtntrta, samanta aur ekjutta ki bhavna-aur manav adhikar ki upyukt sndhiyon or ghoshnaon ke vishisht pravdhanon ki yad dilaee gee hai. +",4,7 +"Directory% s is not writable +","% s निर्देशिका लिखने योग्य नहीं +","s directory likhne yogy nahin +",9,1 +"Continuous sound that is produce by something that buzzes. +","किसी वस्तु द्वारा उत्पन्न भिभिनाहट की क्रमिक ध्वनि +","kisi vastu dvara produce bhibhinahat ki krmik sound +",8,1 +"[Commanding him], ""Make full coats of mail and calculate [precisely] the links, and work [all of you] righteousness. Indeed I, of what you do, am Seeing."" +","कि फँराख़ व कुशादा जिरह बनाओ और (कड़ियों के) जोड़ने में अन्दाज़े का ख्याल रखो और तुम सब के सब अच्छे (अच्छे) काम करो वो कुछ तुम लोग करते हो मैं यक़ीनन देख रहा हूँ +","ki make full coats jirah banao aur kariyon ke jorne men andaze ka khyal rakho aur tum sab ke sab achchhe achchhe make full vo kuchh tum log karte ho main yainan dekh raha hoon +",5,2 +"%s You have made no changes, update the editor? +","%s आपने कोई परिवर्तन नहीं किया है, संपादक अद्यतन करें? +","s aapne koee parivartan nahin kiya hai , editor adyatan karen +",7,1 +"A fruit of subfamily Maloideae of the family Rosaceae. +","रोसकशया वंश के मेलोडिया उपवंश का एक फल. +","rosakashya family ke melodiya upvnsh ka ek fruit +",8,3 +"Opens all branches of the file tree +","फ़ाइल ट्री की सभी शाखाओं को खोलता है +","file tree ki sabhi branches ko kholta hai +",10,0 +"In case of accidents: If any labourer gets bodily injury during the course of employment at work site, the person is entitled to free medical treatment from the State Government. +","दुर्घटना की स्थिति में-यदि कोई कामगार कार्यस्थल पर कार्य के दौरान घायल होता है तो राज्य सरकार की ओर से वह निःशुल्क चिकित्सा सुविधा पाने का हकदार होगा। +","accidents ki case men-ydi koee kamgar work par kary ke dauran employment hota hai to rajy government ki or se vah person medical suvidha pane ka hakdar hoga. +",7,2 +"Dr. Ambedkar warned sternly, You will have to struggle for your own liberation. +","डा. आंबेडकर ने साफ साफ सचेत किया, अपने उद्धार के लिए आपको संघर्ष करना होगा। +","da aanbedakar ne saph saph sachet kiya, apne liberation ke lie aapko struggle karna hoga. +",7,1 +"Blend File / Folder with diff Output +","डिफ़ आउटपुट के साथ फ़ाइल/फ़ोल्डर ब्लैंड करें +","diff output ke sath file blaind karen +",9,1 +"'This, is the reward for what your hands have forwarded. Allah is not unjust to the worshipers' +","(कहा जाएगा,) यह उसके कारण है जो तेरे हाथों ने आगे भेजा था और इसलिए कि अल्लाह बन्दों पर तनिक भी ज़ुल्म करनेवाला नहीं +","kaha reward , yah uske karan hai jo tere hathon ne aage bheja tha aur islie ki allah worshipers par tanik bhi zulm karnevala nahin +",6,3 +"Children from the lowest social class are five times more likely to die in road accidents than those from the highest social class. +","समाज के सब से नीचे वाले वर्ग के बच्चों की सड़क दुर्घटना में मौत होने का खतरा सब से उँचे वर्ग वाले बच्चों से पाँच गुना अधिक है। +","samaj ke sab se niche vale varg ke bachchon ki road accidents men maut hone ka khatra sab se unche varg vale bachchon se panch highest social class +",4,2 +"More recently, it appears that none of the millions of antiwar demonstrators have a bad word to say about Saddam Hussein nor an iota of sympathy for those oppressed, tortured and murdered by his regime. Instead, they vent fury against the American president and British prime minister. +","अभी हाल में यह देखने में आया है कि लाखों युद्ध विरोधी प्रदर्शनकारियों ने सद्दाम हुसैन के विरूद्ध एक भी शब्द नहीं कहा और न ही उनके शासन में पीड़ित हत्या के शिकार हुए लोगों के प्रति एक भी सहानुभूति का शब्द निकाला। इसके बजाय उन्होंने अमेरिकी राष्ट्रपति और व्रिटेन के प्रधानमंत्री के विरूद्ध आक्रोश प्रदर्शित किया। +","abhi hal men yah dekhne men aaya hai ki lakhon yuddh virodhi pradarshankariyon ne saddam husain ke virooddh ek bhi shabd nahin kaha aur n hi unke shasan men pirit hatya ke shikar hue logon ke prti ek bhi sahanubhooti ka shabd nikala. iske bajay unhonne ameriki rashtrapti aur vriten ke prdhanmntri ke virooddh aakrosh pradarshit kiya. +",7,4 +"Doubt that anyone charged with and tried for the 7/7 attacks would receive a fair trial: 44 percent. +","44 प्रतिशत मुसलमानों को इस बात में संशय है कि 7 जुलाई के विस्फोटों के आरोपियों पर निष्पक्ष मुकदमा चल सकेगा. +","44 percent musalmanon ko is bat men snshay hai ki 7 attacks would receive ke aaropiyon par fair trial chal sakega +",6,3 +"They think that the Confederates have not withdrawn; and if the Confederates should come (again), they would wish they were in the deserts (wandering) among the Bedouins, and seeking news about you (from a safe distance); and if they were in your midst, they would fight but little. +","(मदीने का मुहासेरा करने वाले चल भी दिए मगर) ये लोग अभी यही समझ रहे हैं कि (काफ़िरों के) लश्कर अभी नहीं गए और अगर कहीं (कुफ्फार का) लश्कर फिर आ पहुँचे तो ये लोग चाहेंगे कि काश वह जंगलों में गँवारों में जा बसते और (वहीं से बैठे बैठे) तुम्हारे हालात दरयाफ्त करते रहते और अगर उनको तुम लोगों में रहना पड़ता तो फ़क़त (पीछा छुड़ाने को) ज़रा ज़हूर (कहीं) लड़ते +","safe ka confederates karne vale chal bhi midst magar ye log abhi yahi samajh rahe hain ki kafiron ke lashkar abhi nahin distance aur agar kahin kuphphar ka lashkar phir aa pahunche to ye log chahenge ki kash vah jnglon men gnvaron men ja baste aur vahin se baithe baithe tumhare news daryapht karte rahte aur agar unko tum logon men rahna parta to fat pichha chhurane ko zara bedouins kahin larte +",5,4 +"Vrindavanlal Verma wrote. another play Mahoba Sangram Battle of Mahoba in which he glorified armed struggle for independence. +","एक और नाटक 'महोबा संग्राम' भी वर्मा जी ने लिखा, जिसमें देश की स्वतंत्रता के लिए सशस्त्र संघर्ष की महत्ता दिखायी थी। +","ek aur natak mhoba sngram bhi varma ji ne wrote, jismen desh ki svtntrta ke lie sashastr sngharsh ki mahatta dikhayi thi. +",6,3 +"Thus the word ' costs ' included costs incidental to the suit . +","इस प्रकार खर्च शब्द में वाद के सभी अनुषंगी खर्च शामिल हैं . +","is prkar kharch shabd men vad ke sabhi included costs incidental hain +",8,0 +"but it does tend to leave you waking up crying at three o'clock in the morning. +","मगर हो सकता है कि आप सुबह के तीन बजे जागे हुए पाये जायें। +","magar ho sakta hai ki aap morning ke tin oclock jage hue paye jayen. +",6,3 +"Average feed consumption upto marketable age +","बेचने योग्य होने की आयु तक पहुँचने तक भोजन की औसत खपत +","upto marketable hone ki aayu tak pahunchne tak average feed consumption khapat +",7,3 +"Among them 13, 74, 283 lives were under subsidised category and 61, 133 lives were under General non - subsidised category. +","इनमें क्रमशः13,74,283 और 61,133 व्यक्ति सब्सिडी पाने वाले वर्ग में थे और 61,135 पूरा प्रीमियम देने वालों में थे। +","inmen kramsha13,74,283 aur 61,133 vyakti sabsidi pane vale varg men the aur 61,135 poora primiyam dene valon men the. +",5,8 +"PROVISIONS AS TO THE COMPTROLLER AND AUDITOR-GENERAL OF INDIA +","भारत के नियंत्रक-महालेखापरीक्षक के बारे में उपबंध +","india ke niyntrak-mhalekhaprikshak ke bare men provisions +",9,2 +"But, with respect to potassic fertilizers, there are no known commercially exploitable reserves of potash in the country and the entire requirement of these fertilizers is met through imports. +","परन्तु पोटाश उर्वरक के संबंध में देश में पोटाश का कोई दोहन करने योग्य ज्ञात भंडार नहीं है और इन उर्वरकों की समस्त आवश्यकताएं आयात के माध्यम से पूरी की जाती हैं। +","commercially exploitable urvarak ke snbndh men desh men potash ka koee dohan karne yogy jnjat bhndar nahin hai aur in urvarkon ki met through imports ke madhyam se poori ki jati hain. +",7,1 +"The Rajghat Dam is almost complete. +","राजघाट बांध का निर्माण कार्य लगभग पूरा हो चुका है। +","rajghat dam ka nirman kary lagabhag poora ho chuka complete +",4,6 +"Dr. Ambedkar was at pains to emphasise that the new republic would be a ""Union” of States, as opposed to a"" Federation” of States. The States would have no right to secede. +","डॉ. अंबेडकर ने बहुत परिश्रम से यह बताने का प्रयास किया था कि नया गणतंत्र राज्यों के ‘परिसंघ’के बजाय राज्यों का ‘संघ’ होगा। राज्यों को अलग होने का अधिकार नहीं होगा। +","d anbedakar ne bahut parishram se yah batane ka pryas kiya tha ki naya gantntr federation ke prisnghke bajay federation ka sngh hoga. federation ko alag hone ka adhikar nahin hoga. +",5,4 +"So sometimes you 'll say morula, +","तो कभी कभी आप morula कहता हूँ, +","to kabhi kabhi aap morula kahta hoon , +",8,1 +"Disables saving browser history in %{PRODUCTNAME} and prevents users from changing this setting. If this setting is enabled, browsing history is not saved. If this setting is disabled or not set, browsing history is saved. +","%{PRODUCTNAME} में ब्राउज़र इतिहास सहेजना अक्षम करती है और उपयोगकर्ताओं को यह सेटिंग बदलने से रोकती है. यदि यह सेटिंग सक्षम है, तो ब्राउज़िंग इतिहास सहेजा नहीं जाता है. यदि यह सेटिंग अक्षम है या कॉन्फ़िगर नहीं है, तो ब्राउज़िंग इतिहास सहेजा जाता है. +","PRODUCTNAME men saving browser history aksham karti hai aur upyogakartaon ko yah seting badalne se rokti hai yadi yah seting saksham hai, to browsing history saheja nahin jata hai yadi yah seting aksham hai ya knfigar nahin hai, to browsing history saheja jata hai +",7,2 +"Force Brasero to display the project selection page +","परियोजना चयन पृष्ठ दिखाने के लिए ब्रैसेरो को बाध्य करें +","project selection page display ke lie braisero ko badhy karen +",10,0 +"Whether accelerated compositing should be enabled +","क्या त्वरित कंपोजिटिंग सक्रिय की जानी चाहिए +","kya tvrit compositing sakriy ki jani chahie +",9,2 +"These reverses inflicted a huge psychological blow to the organisation, which hastily claimed the surrenders were stage - managed. +","इससे संग न को करारा ज्ह्टका लगा और उसने कहा कि आत्मसमर्पण विशुद्ध रूप से प्रायोजित कार्रवाई है. +","isse sng n ko huge psychological blow aur usne kaha ki aatmasamarpan vishuddh roop se prayojit karrvaee hai +",6,8 +"(a) dearness allowance or dearness pay unless it enters into the computation of superannuation or retirement benefits of the employee concerned; +","(क) महंगार्इ भत्ता या महंगार्इ वेतन, जब तक कि वह संबद्ध कर्मचारी के अधिवर्षिता या सेवानिवृत्ति संबंधी फायदों की संगणना करने में हिसाब में नहीं लिया जाता हो; +","benefits dearness allowance ya dearness pay , jab tak ki vah snbaddh employee ke superannuation ya retirement snbndhi phaydon ki computation karne men hisab men nahin liya jata ho +",7,1 +"Anundoram was a student of the Gauhati School in the late fifties of the nineteenth century, that is, in the early stage of English education in Assam. +","आनन्दराम ने उन्नीसवीं सदी के छठे दशक में, यानी असम में अंग्रेज़ी शिक्षा के आरम्भिक चरण में गुवाहाटी स्कूल में अपनी पढ़ाई पूरी की। +","aanandram ne unnisvin sadi ke chhathe dashak men, yani asam men angrezi shiksha ke aarambhik charan men guvahati skool men apni paaee poori ki. +",8,1 +"They stretch when the heart pumps blood through them. +","जब हृदय उनमें से रक्त संचार करता है तो वे फैलती है। +","jab hriday unmen se blood snchar karta hai to ve heart pumps +",5,1 +"The living organism and its relationship with the environment. +","जीवित जीव और पर्यावरण के साथ उसके संबंध। +","living organism aur environment ke sath uske relationship +",8,3 +"The time remaining when action is taken +","बचा समय जब क्रिया की जाती है +","time remaining jab action ki jati hai +",7,4 +"India and South Africa share a longstanding friendship that is rooted in history and our shared values. +","भारत और दक्षिण अफ्रीका के बीच संबंधों की जड़ें इतिहास और साझे मूल्यों में स्थापित हैं. +","india aur south aphrika ke share snbndhon ki jaren history aur friendship moolyon men sthapit hain +",6,1 +"Allah said: be thou gone; then who soever of them followeth thee, Hell is your meed, a meed ample. +","ख़ुदा ने फरमाया चल (दूर हो) उनमें से जो शख़्श तेरी पैरवी करेगा तो (याद रहे कि) तुम सबकी सज़ा जहन्नुम है और वह भी पूरी पूरी सज़ा है +","uda ne pharmaya chal door ho unmen se jo shash teri pairvi karega to yad rahe ki tum sabki saza jahannum hai aur vah bhi poori poori saza hai +",4,6 +"The Quran itself states that muslims have the right to read the Quran. +","स्वयं कुरान कहता है और वे इसे पढ़ने के अधिकार ‎के साथ पढ़ते हैं। +","quran itself states hai aur ve ise pane ke adhikar ke sath pate read +",4,5 +"A student can choose to appear in one or more subjects in an examination and earn credits till he / she completes all five subjects for final certification within a stipulated period of five years. +","शिक्षार्थी किसी परीक्षा में एक अथवा अधिक विषयों की परीक्षा में बैठ सकता है और पाँच वर्षों की निर्धारित अवधि में प्रमाणपत्र के लिए सभी पांचों विषयों को पूरा करने तक क्रेडिट अर्जित कर सकता है। +","student kisi examination men ek athva more subjects ki examination men baith sakta hai aur years varshon ki stipulated period men prmanapatr ke lie sabhi panchon subjects ko poora karne tak kredit arjit kar sakta final +",8,0 +"With focus on Per Drop More Crop and ""Har Khet ko Pani”, coverage under Pradhan Mantri Krishi Sinchayee Yojana has been expanded. +","हर बूंद अधिक फसल तथा‘‘हर खेत को पानी’’को ध्यान में रखते हुए प्रधान मंत्री कृषि सिंचाई योजनाका कवरेज बढ़ाया गया है। +","har drop more crop tathahar khet ko paniko dhyan men rakhte hue prdhan mntri krishi sinchaee yojnaka kavrej baaya gaya hai. +",6,1 +"Image format (default RGB) +","छवि प्रारूप (डिफ़ॉल्ट RGB) +","image format diflt RGB +",8,0 +"A sudden state of danger in financial matters. +","वित्तीय मामलों में उपस्थित आकस्मिक आपात स्थिति। +","state matters men upasthit sudden danger sthiti. +",7,2 +"If a landlord uses language or physical behaviour which is threatening or violent against the tenant, the latter should consult his or her local authority or other advice centre. +","मकान मालिक ने शोर-शरबा, दंगे या फिर लैंगिक और जात पात का भाव रख कर घटिया व्यवहार किया हो । +","landlord malik ne shor-sharba , physical ya phir laingik aur jat pat ka latter violent kar local language kiya ho centre +",4,2 +"For example, unwanted pregnancies especially amongst the under 16s always have serious personal and social consequences for both the mothers and their children. +","उदाहरणार्थ अनचाहा गर्भ, विशेषकर १६ वर्ष से कम की अवस्था में, माता एवं बच्चे दोनों के लिये अनेक वैयक्तिक एवं सामाजिक समस्याओं को जन्म देता हैं। +","unwanted pregnancies garbh, visheshakar १६ varsh se kam ki avastha men, mata evn bachche donon ke liye anek personal and social samasyaon ko janm deta hain. +",8,3 +"When they came upon you from above you and from below you, and when eyes turned aside and hearts reached to the gullets, and of Allah ye were imagining various things. +","जिस वक्त वह लोग तुम पर तुम्हारे ऊपर से आ पड़े और तुम्हारे नीचे की तरफ से भी पिल गए और जिस वक्त (उनकी कसरत से) तुम्हारी ऑंखें ख़ैरा हो गयीं थी और (ख़ौफ से) कलेजे मुँह को आ गए थे और ख़ुदा पर तरह-तरह के (बुरे) ख्याल करने लगे थे। +","jis vakt vah log tum par tumhare oopar se aa pare aur tumhare niche ki taraph se bhi pil ge aur jis vakt unki kasarat se tumhari eyes turned ho gayin thi aur auph se kaleje munh ko aa ge the aur uda par tarah-tarah ke bure khyal karne lage the. +",6,6 +"Suddenly, Uttama spotted a peculiar object lying among the coral. +","अचानक उत्तम को मूंगे की चटटानों के बीच में एक विचित्र सी चीज पडी हुई दिखाई दी। +","achanak uttam ko moonge ki chattanon ke bich men ek vichitr si chij padi huee dikhaee di. +",5,8 +"No further items in the history. +","इतिहास में कोई अन्य वस्तु नहीं. +","history men koee any items nahin +",8,1 +"Joseph Henry helped to solve the first problem. +","जोज़ेफ हेनरी की मदद से पहली समस्या तो हल हो गयी। +","joseph henri ki madad se first problem to hal ho gayi. +",8,1 +"o Word Processors, DTP Solutions and SDKs for various Indian languages +","वर्ड प्रॉसेसर, तथा विभिन्न भारतीय भाषाओं के लिए डीटीपी समाधान तथा एसडीके +","vard prsesar, tatha vibhinn indian languages ke lie ditipi samadhan tatha esdike +",5,0 +"During the war years, the railways were under great strain, not only because of the growing needs of transportation of troops and war materials internally, but also because of the responsibility thrown on them to meet the demands of staff and material for the railways in the African theatre of war. +","युद्ध के वर्षों के दौरान, रेलवे पर अत्यधिक दबाव था. यह न केवल सेना और युद्ध सामग्री को देश में ही लाने ले जाने के कारण था वरन् अफ्रीकी युद्ध में रेलवे के लिए स्टाफ और सामग्री की बढ़ती हुई मांग को पूरा करने के उन पर सौंपे गये दायित्व के कारण था. +","yuddh ke varshon ke dauran, relve par great strain tha yah n keval sena aur yuddh samagri ko desh men hi lane le jane ke karan tha varan african theatre men relve ke lie staph aur samagri ki bati huee mang ko poora karne ke un par saunpe gaye dayitv ke karan tha +",7,2 +"In Mumbai average annual temperature, and the average annual precipitation table +","मुंबई में औसत तापमान एवं वर्षण (प्रैसिपिटेशन) की सारणी +","mumbai average annual tapman evn varshan praisipiteshan ki sarni +",7,3 +"Soor's Krishna is a form of love and melody. +","सूर के कृष्ण प्रेम और माधुर्य प्रतिमूर्ति है। +","soor ke krishn love and melody prtimoorti form +",6,1 +"How soon can you have this dress ready? +","इस ड्रेस को कितनी जल्दी तैयार कर सकते हो? +","is dres ko kitni dress ready kar sakte ho +",7,4 +"But, rising wage bill of IT professionals and global financial meltdown is challenging India 's position as a preferred destination for outsourcing business processes. +","तथापि, आईटी व्यथवसायियों के बढ़ते वेतन बिल तथा वैश्विक वित्तीय मंदी आउट सोर्सिंग व्यपवसाय प्रक्रियाओं के लिए एक वरीय गंतव्यव स्थैल के रूप में भारत की स्थिति को चुनौती दे रही है। +","tathapi , preferred vyathavsayiyon ke global wage bill tatha vaishvik financial meltdown professionals sorsing vyapavsay processes ke lie ek variy gntavyav sthail ke roop men india ki position ko chunauti de rahi hai. +",6,2 +"President of India Shri Pranab Mukherjee will undertake a day visit to Punjab (Ludhiana) tomorrow (27 November, 2012). +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (27 नवम्बर, 2012) पंजाब (लुधियाना) की एक दिवसीय यात्रा करेंगे। +","bharat ke shri pranab mukherjee mukharji kal 27 november, 2012 pnjab ludhiyana ki ek divsiy yatra karenge. +",8,1 +"But unfortunately the way in which the fresh blood of modernism was transfused into the anaemic body of Indian society deprived it of just these vital ingredients and on the whole did more harm than good: In the first place, the modern Western culture which reached India was not the genuine article but an export model of which the parts came from England but were assembled in India mainly by men of mediocre ability, who could be spared after selecting political and intellectual leaders for the home country. +","किंतु दुर्भाग़्य से जिस तरह का ताजा रक़्त भारतीय समाज के रक़्तहीन शरीर में भरा गया, उसने उसे इन महत्वपूर्ण अव्यवों से वंचित कर दिया और कुल मिलाकर अच्छाई के स्थान पर हानि अधिक हुई प्रथम स्थिति में, आधुनिक पश्चिमी संस्कृतिक, जो भारत पहुंची तथा वह वास्तविक रूप में नहीं, बल्कि यह उसका एक निर्यात रूप था, जिसके पुर्जे इंग़्लैड सें आये, किंतु भारत में उन्हे मुख़्य रूप से अति सामान्य योग़्यता वाले व्यक़्तियों के द्वारा जमाया गया, जिन्हें अपने देश के लिए राजनैतिक बुद्धिमान नेता चुनने के बाद अलग किया जा सकता +","kintu durbhay se jis tarah ka taja rat bhartiy samaj ke rathin sharir men bhara gaya, usne use in mahatvpoorn avyvon se vnchit kar diya aur kul milakar achchhaee ke sthan par hani adhik huee pratham sthiti men, modern western culture, jo bharat pahunchi tatha vah vastvik roop men nahin, balki yah uska ek niryat roop tha, jiske purje inlaid sen aaye, kintu bharat men unhe muy roop se ati samany yoyta vale vyatiyon ke dvara jamaya gaya, jinhen apne desh ke lie rajnaitik buddhiman neta chunne ke bad alag kiya ja sakta +",8,0 +"Check that the spelling is correct and that your proxy settings are correct. +","जांच लें कि वर्तनी सही है और आपके प्रॉक्सी विन्यास सही हैं. +","check len ki spelling correct hai aur aapke proxy settings correct hain +",7,2 +"If you choose to create a new empty project, the file selection will be discarded. +","यदि आप नई रिक्त परियोजना बनाने के लिए चुनते हैं, सभी फ़ाइल चयन नष्ट हो जाएंगे. +","yadi aap new empty project banane ke lie chunte hain , sabhi fail selection nasht ho jaenge +",8,0 +"The application for registration of a plant variety may be filed by a breeder or his assignee in the prescribed form with the prescribed fee to the Authority including particulars such as the name of variety, source of parental line, or name of variety used to develop the variety in question, essential characteristics conferring distinctiveness, denomination and geographical location of the variety and claims. +","वनस्पिति प्रकार के पंजीकरण हेतु आवेदन प्रजनक अथवा उसके अधिन्याससी द्वारा निर्धारित शुल्को के साथ निर्धारित प्रपत्र में प्रकार के नाम, पैतृक प्रकार का स्रोत, अथवा पंजीकृत किए जाने वाले प्रकार के विकास में प्रयुक्तथ प्रकार का नाम, प्रकार के वैशिष्ट्ये, अंकन एवं भौगोलिक स्थाकन को दर्शाती आवश्य क विशेषताओं एवं दावों जैसे विवरणों सहित प्राधिकार को दी जा सकती है। +","plant application ke registration location aavedan breeder athva uske adhinyassi dvara prescribed shulko ke sath prescribed prapatr men application ke name , parental application ka source , athva pnjikrit kie jane vale application ke essential men pryuktath application ka name , application ke vaishishtye , ankan evn geographical sthakan ko line aavashy k characteristics evn claims jaise vivarnon sahit pradhikar ko particulars ja sakti question +",8,0 +"I assure you, I haven 't even seen him. she said. +","मैं आपको यकीन दिलाती हूं कि मैंने आज तक उसे देखा भी नहीं है। +","i aapko yakin assure hoon ki mainne aaj tak use dekha bhi nahin hai. +",7,0 +"Sonabadra District in Uttar Pradesh is the one and only place whose borders touches four other districts | +","उत्तर प्रदेश का सोनभद्र जिला देश का एक मात्र ऐसा जिला है जिसकी सीमाएँ सर्व चार प्रदेशों को छूती है। +","uttar prdesh ka place whose borders ka ek matr aesa jila hai jiski simaen sarv char prdeshon ko borders touches +",4,3 +"I am extremely happy that Raipur Airport has been named after the saint / philosopher and visionary Swami Vivekananda. After Kolkata, Raipur is the place Swamiji spent the largest number of years of his life. +","मुझे यह जानकर बहुत खुशी हुई है कि रायपुर हवाई अड्डे का नाम संत/दार्शनिक तथा स्वपनद्रष्टा स्वामी विवेकानंद के नाम पर रखा गया है। +","mujhe yah janakar bahut khushi huee hai ki raipur airport adde ka nam sntdarshnik tatha svapanadrashta svami vivekannd ke nam par rakha gaya hai. +",7,3 +"And two pairs of light, strong and comfortable shoes for walking. +","और ये देखिए जूते दो जोड़ी, हल्के और मजबूत, चलने मे आराम देह। +","aur ye dekhie shoes do pairs , light aur strong , walking me comfortable deh. +",7,3 +"associated or substantially identical trade marks +","सहयुक्त या सारत तदरूप व्यापार चिह्न +","sahyukt ya sarat identical trade chihn +",8,1 +"There is only one way of acquiring this knowledge contemplation of the beauty and majesty of Man and Nature and reading the Book of Self. +","उस विद्या-प्राप्ति का केवल एक मार्ग है-प्रकृति और मानव की सुन्दरता और महिमा का चिंतन और आत्म-ग्रन्थ प्रकृति और मानव की सुन्दरता और महद् महिमा का चिंतन और आत्म-ग्रन्थ का पठन। +","us vidya-prapti ka keval ek marg hai-man and nature ki sundarta aur mahima ka chintan aur aatm-granth man and nature ki sundarta aur mahad mahima ka chintan aur aatm-granth ka pathan. +",7,0 +"Go to hell, Dileep snapped and stomped off, banging the door behind him. +","भाड़ में जाओं, उल्लास चीखा और उठकर धड़ाम से दरवाजा बंद करके चला गया। +","bhar men jaon, ullas chikha aur uthakar dharam se darvaja bnd karke chala gaya. +",8,1 +"Nature is to the Divine Self as character is to the human self. ” +","जिस प्रकार चरित्र मनुष्य के लिए होता है, उसी प्रकार दैवी आत्मा के लिए प्रकृति है. ” +","jis nature character self ke lie hota hai , usi nature divine aatma ke lie prkriti hai +",7,2 +"but no information, no follow - up, +","मगर जानकारी गायब है, न कोई आगे की बात, +","magar jankari gayab hai, n koee aage ki bat, +",5,9 +"Apply a layer of fine manure +","उत्तम खाद की परत का उपयोग करना +","fine manure ki layer ka upyog karna +",8,2 +"1 gallon is 4 quarts. +","1 गॅलन 4 क्वॉर्ट होता है. +","1 gallon 4 quarts hota hai +",10,0 +"The following cookies were blocked (third - party cookies are being blocked without exception): +","निम्न कुकी अवरोधित कर दी गई हैं (तृतीय-पक्ष की कुकी को बिना किसी अपवाद के अवरोधित किया जा रहा है): +","cookies were blocked kar di gee hain tritiy-paksh ki cookies ko bina kisi blocked without exception kiya ja raha hai: +",6,1 +"The rising demand for gunny bags , created by increasing food exports to Europe , gave a fresh stimulus to jute cultivation and the handloom industry . +","यूरोप के लिए बढते खाद्य सामग्री के निर्यात के कारण बढ़ी हुई बोरियों की मांग ने जूट की खेती और हथकरघा उद्योग को एक नया प्रोत्साहन दिया . +","yoorop ke lie increasing food samagri ke niryat ke karan created by increasing ki mang ne joot ki kheti aur hathakargha udyog ko ek naya protsahan diya +",7,0 +"He made the Subhashbabu the Chief Working Officer of the corporation. +","उन्होंने सुभाषबाबू को महापालिका का प्रमुख कार्यकारी अधिकारी बनाया। +","unhonne made the subhashbabu ka prmukh chief working officer +",6,2 +"It appears that he was solely interested in saving his own life and that of his queen who by that time hated him. +","ऐसा लगता है कि उनका एकमात्र सरोकार अपनी और उस बेगम की जान बचाना था जो उस समय तक उनसे नफरत करने लगी थी। +","interested lagta hai ki unka ekmatr own apni aur us queen ki jan bachana tha jo us time tak unse napharat karne lagi thi. +",6,6 +"All perception of unity, similarity, difference, kind, uniqueness arrived at by the supramental reason is consonant with and depends on this order. +","अतिमानसिक बुद्धि एकता, सदृशता, विषमता, जाति और विशिष्टता का जो भी ज्ञान प्राप्त करती है वह सब इस विधान के साथ समस्वर होता है तथा इस पर निर्भर करता है। +","supramental buddhi unity , sadrishta , vishamta , kind aur uniqueness ka jo bhi perception prapt karti hai vah difference is vidhan ke sath consonant hota hai tatha is par nirbhar karta hai. +",8,1 +"Build but do not install the target. +","बिल्ड नहीं अधिष्ठापित करें लक्ष्य. +","bild nahin install the target +",4,1 +"So if we get rid of the percent sign, +","इस लिए अगर हम पर्सेंटेज के निशान को हटा देते हैं तो, हम दशमलव को +","is lie rid ham percent ke sign ko hata dete hain to , ham dashamalav ko +",6,2 +"It was no exotic music which enthralled him. +","उन्हें विदेशी संगीत भाव-विभोर नहीं कर पाता था। +","unhen exotic music bhav-vibhor nahin kar pata tha. +",9,2 +"The process by which ammonia is converted to nitrites and then to nitrates. +","वह प्रक्रिया जिसके द्वारा अमोनिया को नाइट्राइटिस एवं तत्पश्चात नाइट्रेट्स में परिवर्तित किया जाता है +","vah process jiske dvara ammonia ko naitraitis evn tatpashchat nitrates men parivartit kiya jata hai +",8,1 +"The eastern regions of Salsette Island contain many quagmires (or is marshy), they are also biologically, very diverse. +","सैलसेट द्वीप की पूर्वी ओर दलदली इलाका है जो जैवभिन्नताओं से परिपूर्ण है। +","sailset island ki eastern or daladli ilaka hai jo jaivbhinntaon se paripoorn hai. +",8,0 +"Registration under Shops and Establishment Act +","दुकानें और प्रतिष्ठान अधिनियम के तहत पंजीकरण +","shops and establishment act ke tahat registration +",10,0 +"federal metropolis washington is situated in the eastern columbia district, in the middle of maryland and virginia. +","संघीय राजधानी वाशिंगटन देश के पूर्वी भाग में कोलंबिया ज़िले में स्थित है मेरिलैंड और वर्जिनिया के मध्य। +","federal metropolis washington desh ke eastern bhag men columbia zile men sthit hai middle aur virginia ke madhy. +",8,4 +"of what there is to fear and to hate. +","हमे किससे डरना चाहिये और बचना चाहिये. +","hame kisse darna chahiye aur bachna chahiye +",8,3 +"Failed to get folder properties:% s +","फ़ोल्डर विशेषता पाने में विफलः% s +","folder properties pane men viphla s +",8,0 +"The first book written by him was Batris Sinhasan on the story of the legendary Vikramaditya as a dispenser of justice. +","उसके द्वारा लिखी गई पहली पुस्तक न्याय की रक्षा करने वाले विक्रमादित्य की लोक-कथा पर आधारित बत्तीस सिंहासन थी। +","uske dvara story legendary first book justice ki raksha karne vale vikramaditya ki lok-ktha par aadharit battis sinhasan thi. +",8,2 +"to go out and continue this very important thing +","जिससे कि वो इस बहुत ही महत्वपूर्ण काम को जारी रख सकें +","jisse ki vo is bahut hi important thing ko continue rakh saken +",9,2 +"Failed to load remote file. +","दस्तावेज फिर लोड करने में विफल. +","file phir lod karne men remote +",5,1 +"Harimohini came near the staircase and coughed a couple of times, but to no avail. +","हरिमोहिनी ने सीढी के पास आकर दो-तीन बार खाँसा भी, लेकिन उसका कोई असर नहीं हुआ। +","harimohini ne sidhi ke pas aakar do-tin bar khansa bhi, lekin uska koee asar nahin huaa. +",5,9 +"Subhashbabu was in jail in year 1930. +","1930 में सुभाषबाबू कारावास में थे। +","1930 year subhashbabu jail in year +",4,5 +"Sales costs: Product inventory, raw materials, manufacturing equipment +","बिक्री लागतः उत्पाद सूची, कच्चा माल, निर्माण उपकरण +","sales costs product inventory , raw mal , manufacturing equipment +",4,5 +"Does he not know that God sees? +","क्या उसने नहीं जाना कि अल्लाह देख रहा है? +","god usne nahin jana ki allah sees raha hai +",5,3 +"in that we have way more data that we know what to do with, +","में है कि हम रास्ता अधिक डेटा है कि हम जानते हैं के साथ क्या करना है, +","men hai ki ham rasta adhik data hai ki ham jante hain ke sath kya karna hai, +",9,0 +"They made the boy continue digging, but he found nothing. +","उन्होंने लड़के को और खुदाई करने के लिए मजबूर किया, मगर मिला कुछ नहीं। +","unhonne boy ko aur digging karne ke lie majboor kiya , magar mila kuchh nahin. +",8,0 +"He usually speaks impeccable English and you think for a moment that you are perhaps better off here than in China. +","वे आम तौर पर अच्छी अंग्रेजी बोलते हैं और एक क्षण के लिए लगेगा कि चीन की तुलना में शायद यहां बेहतर स्थिति है. +","ve aam taur par achchhi english bolte hain aur ek moment ke lie impeccable ki china ki tulna men shayad yahan behatar sthiti hai +",7,0 +"But the folk writer developed an elaborate story about her. +","किंतु लोक-साहित्यकारों ने उसकी कहानी विस्तार से सुनायी। +","kintu lok-sahitykaron ne uski writer elaborate se sunayi. +",5,0 +"The Act seeks to facilitate the development of these enterprises as also enhance their competitiveness. +","अधिनियम में यह भी उनकी प्रतिस्पर्धात्मकता बढ़ाने के रूप में इन उद्यमों के विकास की सुविधा के लिए करना चाहता है। +","act men yah bhi unki prtispardhatmakta baane ke roop men in udymon ke facilitate the development ke lie karna chahta hai. +",7,0 +"But one important institution - the U.S. government - claims not to know Hadayet's goals. An FBI spokesman has said that “there's nothing to indicate terrorism.” Another FBI official said of Hadayet: “It appears he went there with the intention of killing people. Why he did that we are still trying to determine.” Possible causes named include a work dispute and a hate crime. +","परंतु एक महत्वपूर्ण संस्थान अमेरिकी सरकार का दावा है कि उन्हें हदायत के लक्ष्य का पता नहीं था। एफ बी आई के प्रवक्ता ने कहा, “ कुछ भी नहीं है जो आतंकवाद की ओर संकेत करता हो” । एफ बी आई के एक और अधिकारी ने हदायत के सम्बंध में कहा, “ ऐसा प्रतीत होता है कि वह वहाँ लोगों को मारने के आशय से गया था । हम यह जानने का प्रयास कर रहे हैं कि उसने ऐसा क्यों किया?” सम्भावित कारणों में कार्यक्षेत्र का विवाद और घृणा अपराध बताया गया। +","parntu ek important institution ameriki government ka claims hai ki unhen hadayet ke intention ka pata nahin tha. work bi people ke spokesman ne kaha , kuchh bhi nahin hai jo aatnkvad ki or snket karta ho nothing work bi people ke ek aur official ne hadayet ke sambndh men kaha , aesa prtit hota hai ki vah vahan logon ko marne ke aashay se gaya tha nothing ham yah janne ka pryas kar rahe hain ki usne aesa kyon kiya sambhavit causes men karyakshetr ka dispute aur hate crime bataya gaya. +",8,2 +"Renicapsule refers to the capsule in the kidney. +","अधिवृक्क-पिण्ड वृक्क में संपुटक को निर्दिष्ट करता है. +","adhivrikk-pind refers men capsule ko nirdisht karta hai +",6,1 +"Nanalal was not merely a new signature but a new voice in modern Gujarati poetry. +","नानालाल गुजराती आधुनिक काव्य में एक नये हस्ताक्षर ही नहीं, एक नये स्वर भी थे। +","nanalal gujarati new poetry men ek naye signature hi nahin , ek naye voice bhi the. +",7,0 +"he method of recording of votes by Members on `Ayes' and `Noes' slips is generally resorted to in the eventuality of : +","'हां' या 'नहीं' पर्चियों पर सदस्यों के मतों का अभिलेखन का तरीका सामान्यतया निम्नलिखित परिस्थतियों में अपनाया जाता हैः- +","ayes ya nhin slips par members ke votes ka abhilekhan ka tarika samanyatya nimnlikhit paristhtiyon men apnaya jata haia- +",7,2 +"and while training, I was hit by a bus. +","अपने अभ्यास के दौरान, एक बस ने मुझे टक्कर मार दी। +","apne training ke dauran, ek bas ne mujhe takkar mar di. +",10,0 +"Soor's Krishna is a form of love and melody. +","सूर के कृष्ण प्रेम और माधुर्य प्रतिमूर्ति है। +","soor ke krishna love aur melody prtimoorti hai. +",8,3 +"and so that He might admit the believers, men and women, into Gardens through which rivers flow, to dwell therein forever, and so that He may remove their evils from them, that is, indeed, a supreme triumph in God 's eyes, +","ताकि मोमिन मर्द और मोमिना औरतों को (बेहिश्त) के बाग़ों में जा पहुँचाए जिनके नीचे नहरें जारी हैं और ये वहाँ हमेशा रहेंगे और उनके गुनाहों को उनसे दूर कर दे और ये ख़ुदा के नज़दीक बड़ी कामयाबी है +","believers men women aur momina aurton ko behisht ke baon men ja pahunchae jinke niche rivers jari hain aur ye vahan hamesha triumph aur unke gunahon ko unse door kar evils aur ye uda ke nazdik bari kamyabi hai +",4,1 +"Branch audit is conducted by a firm assigned the job on yearly basis. +","शाखा लेखा परीक्षा बाहरी फर्म द्वारा, जिसे वार्षिक रूप से यह कार्य सौंपा जाता है, की जाती है। +","branch audit pariksha basis firm dvara , jise yearly roop se yah job saunpa jata hai , ki jati hai. +",9,2 +"Additionally, 23 post-graduate scholarships for courses in hydel power and water resources management at IIT, Roorkee have been offered to Nepali engineers and experts this year. +","इसके अतिरिक्त नेपाली इंजीनियरी और विशेषज्ञों को इस वर्ष आईआईटी रुड़की में पनबिजली और जल संसाधन प्रबंधन में पाठ्यक्रम के लिए 23 स्नातकोत्तर छात्रवृत्तियां प्रदान की जाएंगी। +","iske atirikt nepali injiniyri aur experts ko is hydel iit roorkee men power aur water resources management men courses ke lie 23 snatkottar scholarships prdan ki jaengi. +",7,4 +"Set this to the key command you would like to use to summon Do. +","इसमें वह की कमांड डालें जिसके होने पर जीनोम डु शुरू हो जाये। +","ismen vah ki command do jiske hone par key du shuroo ho jaye. +",8,0 +"The Department of Agriculture organizes Pre - Kharif and Pre - Rabi Programme Planning Workshops that are attended by department officers, field level functionaries, university of agricultural sciences scientists, officers of line departments and related input agencies. +","कृषि विभाग खरीफ पूर्व और रबी पूर्व कार्यक्रम आयोजना कार्यशालाओं का आयोजन करता है जिसमें विभाग के अधिकारी, क्षेत्रीय स्तर के कार्यकर्ता, कृषि विज्ञान वैज्ञानिक विश्वविद्यालय इसी तरह के विभागों के अधिकारी और संबंधित निवेश एजेंसियों के अधिकारी भाग लेते हैं। +","krishi vibhag khariph poorv aur rabi poorv programme planning workshops ka aayojan karta hai jismen vibhag ke adhikari, kshetriy star ke karyakarta, agricultural sciences scientists vishvvidyalay isi tarah ke vibhagon ke adhikari aur related input agencies ke adhikari bhag lete hain. +",7,2 +"Wherever you see the x, you just substitute it with the +","जहा भी आप जे देखे, आप इसे प्रतियस्थापित करे साथ +","wherever bhi aap x dekhe , aap ise prtiyasthapit kare sath +",7,1 +"was that it was legal to sell you +","ये कानूनन सही है कि आपको बेचा जाय +","ye legal sahi hai ki aapko sell jay +",7,2 +"Circulation of water from the tank through the collectors and back to the tank continues automatically due to density difference between hot and cold water (thermosyphon effect). +","टंकी से संग्राहक तक पानी की धारा का प्रवाह गर्म और ठंडे पानी के घनत्व में अंतर (थर्मोसाइफन प्रभाव) के कारण हमेशा स्वचालित ढंग से बना रहता है। +","hot and cold tak pani ki dhara ka prvah garm aur thnde pani ke ghanatv men antar tharmosaiphan prbhav ke karan hamesha svchalit dhng se bana rahta hai. +",7,0 +"At the back of Pratibimbal Lake there is a walking path +","प्रतिबिम्बित झील के पीछे पैदल पथ +","prtibimbit lake ke back walking path +",6,2 +"General lien does not give the right to dispose off the articles. +","सामान्य धारणाधिकार ऋणदाता को वस्तुओं को बेचने का अधिकार प्रदान नहीं करता। +","general lien rindata ko articles ko bechne ka right prdan nahin karta. +",10,0 +"Danaus Umniace is another common butterfly of the plains, with black wings, marked with bluish - white streaks. +","मैदानों की दूसरी सामान्य तितली डेनॉस लिम्निएस है जिसके काले पंखों पर नीलाभ-सफेद रेखाएं होती हैं। +","plains ki doosri common butterfly danaus umniace hai jiske black wings par nilabh-sphed rekhaen hoti hain. +",9,0 +"(i) it begins to manufacture or produce articles after the 30th day of September, 1977 but before the 1st day of April, 1990, in any rural area ; +","(i) यह किसी ग्रामीण क्षेत्र में वस्तुओं का विनिर्माण या उत्पादन 30 दिसम्बर, 1977 के पश्चात् किंतु 1 अप्रैल, 1990 के पूर्व प्रारंभ करता है; +","i yah kisi rural area men vastuon ka manufacture or produce 30 disambar, 1977 ke pashchat kintu 1 aprail, 1990 ke poorv prarnbh karta hai +",8,1 +"Do not be faint of heart in pursuing these people: if you happen to suffer harm they too are suffering just as you are, while you may hope from Allah what they cannot hope for. Allah is All - Knowing, All - Wise. +","और (मुसलमानों) दुशमनों के पीछा करने में सुस्ती न करो अगर लड़ाई में तुमको तकलीफ़ पहुंचती है तो जैसी तुमको तकलीफ़ पहुंचती है उनको भी वैसी ही अज़ीयत होती है और (तुमको) ये भी (उम्मीद है कि) तुम ख़ुदा से वह वह उम्मीदें रखते हो जो (उनको) नसीब नहीं और ख़ुदा तो सबसे वाक़िफ़ (और) हिकमत वाला है +","aur musalmanon dushamnon ke pichha karne men susti n karo agar laraee men tumko suffer harm hai to jaisi tumko suffer harm hai unko bhi vaisi hi aziyat hoti hai aur tumko ye bhi ummid hai ki tum uda se vah vah ummiden rakhte ho jo unko nasib nahin aur uda to sabse vaif aur hikamat vala hai +",5,2 +"Kanta gets herself a job, but because of Madhab, she cannot consider herself 'free'. +","कांता एक नौकरी ढूंढ़ लेती है पर माधव की वजह से वह अपने को स्वतंत्र नहीं समझ पाती है। +","kanta ek job dhoon leti hai par madhav ki vajah se vah apne ko svtntr nahin samajh pati hai. +",8,4 +"""And the places of worship are for Allah (alone): So invoke not any one along with Allah; +","और यह कि मस्जिदें अल्लाह के लिए है। अतः अल्लाह के साथ किसी और को न पुकारो +","aur yah ki places worship ke lie hai. ata worship ke sath kisi aur ko n pukaro +",5,2 +"He was with Washington University, St. Louis, Mo., USA from 1961 to 1971. +","वह 1961 से 1971तक अमेरिका के वाशिंगटन विश्वविद्यालय के साथ जुड़े रहे। +","vah louis se 1971tak amerika ke washington university ke sath jure rahe. +",6,2 +"to pull money out of the air, +","पैसे हवा से बाहर खींचने के लिए, +","money air se bahar pull ke lie, +",7,2 +"and We shall make him the lowest of low +","फिर हमने उसे (बूढ़ा करके रफ्ता रफ्ता) पस्त से पस्त हालत की तरफ फेर दिया +","phir hamne use booa karke lowest lowest past se past halat ki taraph pher diya +",5,3 +"S35: This material and its container must be disposed of in a safe way +","S35: यह पदार्थ तथा इसके मर्तबान को सुरक्षित तरीके से फेंका जाना चाहिएPlease take the official translations! You find them here: http:// europa. eu. int/eur-lex/lex/LexUriServ/LexUriServ. do? uri = CELEX: 32001L0059: EN: HTML +","S35: yah padarth tatha iske martban ko surakshit tarike se phenka jana chahiePlease take the official translations! You find them here: http: europa eu inteur-lexlexLexUriServLexUriServ do uri CELEX: 32001L0059: EN: HTML +",5,9 +"As for the landlords, who in many provinces formed the link between the Government and the cultivators, as a class they did not stir a finger to help or encourage their tenants. +","जहां तक मालगुजारों का संबध था, जो कई प्रांतों में Zकिसान और सरकार के बीच संबंध बनाये हुये थे. एक वर्ग के रूप में उन्होने अपने किरायेदारों की सहायता या प्रोत्साहन के लिए उंगली तक नहीं हिलाई. +","jahan tak landlords ka class tha , jo kee many men Zkisan aur link ke bich snbndh banaye huye the ek varg ke roop men unhone apne tenants ki sahayta ya protsahan ke lie finger tak nahin hilaee +",6,1 +"Children between the ages of 3 and 7 have the best prognosis. +","3 से 7 वर्ष की उम्र के बच्चों में रोग का निदान सबसे अच्छे तरीके से हो सकता है. +","3 se 7 varsh ki ages ke bachchon men rog ka nidan sabse achchhe tarike se ho sakta hai +",8,4 +"How to prevent ama in day - to - day life and, perhaps, be magically relieved from all sorts of problems ranging from plain 'not feeling well' to arthritis? +","रोजमर्रा की जिंदगी में आंव की रोकथाम कैसे की जाए और तबीयत ठीक नहीं है से लेकर गठिया तक की सभी प्रकार की समस्याओं से किस प्रकार जादुई ढंग से मुक्ति पाई जाये? +","day ki life men ama ki roktham plain ki jae aur tabiyat thik nahin hai se lekar gathiya tak ki sabhi sorts ki problems se kis sorts jaduee dhng se mukti paee jaye +",8,2 +"An invalid three-wheeler supplied by the DSS +","गलत तीन पैयो वाली गाडी ढ्श्श् ने सहायता के लिए दी हो ? +","invalid three-wheeler supplied vali gadi dhshsh ne sahayta ke lie di ho +",7,2 +"This is essentially necessary in the evolution of laws and norms regarding the resources of the sea and of new technology involving outer space. +","यह बात विशेषतः समुद्र सम्बंधी तथा बाह्य अंतरिक्ष विषयक टेक्नोलाजी के विकास से सम्बद्ध कानूनों और मानदंडों के बारे में लागू होनी चाहिए। +","yah bat visheshta samudr sambndhi tatha bahy antriksh vishayak teknolaji ke vikas se sambaddh kanoonon aur mandndon ke bare men lagoo honi chahie. +",6,3 +"The blood pressure measured when the atria and ventricles are relaxed and filled with blood. +","हृदय गति की वह माप जब अलिंद और निलय शिथिल हों तथा रक्त से भरे हों। +","hriday gati ki vah pressure jab atria aur ventricles relaxed hon tatha blood se bhare hon. +",6,1 +"Two days prior to that, his pains had abated and he told his disciples and others that he was feeling a great calm. +","मृत्यु से दो दिन पूर्व उन्होंने अपने शिष्यों को बताया कि उनका दर्द काफी कम है और वे काफी राहत महसूस कर रहे हैं। +","mrityu se do days prior told his disciples ko bataya ki unka dard kaphi kam hai aur ve feeling a great kar rahe hain. +",5,4 +"O believers, if you listen to the infidels they will make you turn your backs, and you will be the losers. +","ऐ ईमानदारों अगर तुम लोगों ने काफ़िरों की पैरवी कर ली तो (याद रखो) वह तुमको उलटे पॉव (कुफ़्र की तरफ़) फेर कर ले जाऐंगे फिर उलटे तुम ही घाटे में आ जाओगे +","ae eemandaron agar tum logon ne kafiron ki pairvi kar li to yad rakho vah tumko ulte pv kufr ki taraf pher kar le jaaenge phir ulte tum hi ghate men aa jaoge +",4,7 +"Not only one but several contributions made by him will establish him as a great man for centuries to come. +","उन्होंने एक नहीं कई काम ऐसे किए जो सदियों तक उनकी महापुरुष के रुप में मान्यता कामय रखेंगे। +","unhonne ek nahin kee kam aese man for centuries tak unki mahapurush ke rup men manyta kamay rakhenge. +",5,3 +"Your Lord knows very well what is in your hearts. If you are good, He is forgiving to those who are penitent. +","जो कुछ तुम्हारे जी में है उसे तुम्हारा रब भली-भाँति जानता है। यदि तुम सुयोग्य और अच्छे हुए तो निश्चय ही वह भी ऐसे रुजू करनेवालों के लिए बड़ा क्षमाशील है +","jo kuchh lord hearts men hai use tumhara rab bhali-bhanti janta hai. yadi penitent suyogy aur achchhe hue to nishchay hi vah bhi aese rujoo karnevalon ke lie good kshmashil hai +",6,2 +"This excessive amount of skin cells form the skin lesions of psoriasis. +","यही अधिकाधिक त्वचा कोशिकाओं का झड़ाव त्वचा पर छालरोग के घाव पैदा कर देता है। +","yahi adhikadhik skin excessive ka jharav skin par psoriasis ke lesions paida kar deta amount +",5,5 +"They also wanted to be treated as equals in a democratic society. +","उन्होंने यह इच्छा भी व्यक्त की कि एक जनतांत्रिक समाज में उनके साथ समानता का व्यवहार हो। +","unhonne yah ichchha bhi vyakt ki ki ek democratic society men unke sath samanta ka vyavhar ho. +",9,2 +"if culture changes us, as indeed it does, +","अगर संस्कृति हमें परिवर्तित करती हो, जो कि वह वाकई करती है - +","agar snskriti hamen parivartit karti ho, jo ki vah vakee karti hai - +",9,1 +"Commercial recovery of germanium has been mainly achieved from zinc and zinc - copper - lead ores, germanite and fly ash from coals. +","जर्मेनियम वाणिज्यक रूप में मुख्यतया जिंक, जिंक-तांबा-सीसा अयस्कों, जर्मेनाइट तथा कोयले की फ्लाई एश से प्राप्त होता है। +","germanium commercial roop men mukhyatya zinc , jink-tanba-sisa copper , jarmenait tatha coals ki ash lead se prapt hota recovery +",7,2 +"A fruit of subfamily Maloideae of the family Rosaceae. +","रोसकशया वंश के मेलोडिया उपवंश का एक फल. +","rosakashya family ke melodiya upfamily ka ek phal +",8,3 +"By no means! Surely it is a flaming fire +","(मगर) ये हरगिज़ न होगा +","magar ye means n hoga +",6,0 +"She said, “My Lord, how can I have a child, when no man has touched me? ” He said, “It will be so. God creates whatever He wills. To have anything done, He only says to it, ‘Be, ’ and it is. ” +","वह बोली, ""मेरे रब! मेरे यहाँ लड़का कहाँ से होगा, जबकि मुझे किसी आदमी ने छुआ तक नहीं?"" कहा, ""ऐसा ही होगा, अल्लाह जो चाहता है, पैदा करता है। जब वह किसी कार्य का निर्णय करता है तो उसको बस यही कहता है 'हो जा' तो वह हो जाता है +","vah boli , lord god ! lord yahan child kahan se anything , jabki mujhe kisi man ne chhuaa tak nahin kaha , aesa hi anything , allah jo chahta hai , paida karta hai. jab vah kisi kary ka nirnay karta hai to usko bas yahi kahta hai ho ja to vah ho jata hai +",8,2 +"We 'll do the microbiology of it in the future +","हम भविष्य में इस बात का सूक्ष्म जीव विज्ञान है, लेकिन यह +","microbiology future men is bat ka sookshm jiv vijnjan hai , lekin yah +",5,0 +"Advanced training of intelligence officers is conducted by the Intelligence Bureau. +","गुप्तचर अधिकारियों के उन्नत प्रशिक्षण का काम गुप्तचर विभाग द्वारा किया जाता है। +","intelligence officers ke advanced training ka kam intelligence bureau dvara kiya jata hai. +",9,1 +"THE PLAYS OF BHAVABHUT1 But the main spring of dramatic action in the Uttararamacharita is psychological. +","किन्तु उत्तर-रामचरित में नाटकीय क्रियाकलापों का मुख्य स्रोत मनोवैज्ञानिक है। +","kintu uttar-ramachrit men dramatic kriyaklapon ka main spring psychological hai. +",8,1 +"Padhya and Brahmbhatt, who painstakingly gathered facts on the lake, produced satellite pictures that showed the presence of a lake. +","पाध्या और ब्रह्मंभट्टं ने पूरी कोशिश करके तथ्य जुटाए और उपग्रह से खींची गई तस्वीरें पेश की, जिनसे वहां ज्हील होने की पुष्टि होती थी. +","padhya aur showed the presence koshish painstakingly gathered facts aur upagrah se khinchi gee tasviren pesh ki, jinse vahan jhil hone ki pushti hoti thi +",6,2 +"So it tasted the evil result of its conduct, and the end of its affair was perdition. +","तो उन्होने अपने काम की सज़ा का मज़ा चख लिया और उनके काम का अन्जाम घाटा ही था +","to unhone apne affair ki evil ka maza conduct liya aur unke affair ka anjam ghata hi tha +",7,4 +"Sending a message with an empty subject line +","कोई रिक्त विषय पंक्ति के साथ एक संदेश भेजें (e) +","koee empty subject line ke sath ek sndesh bhejen e +",9,1 +"Opposition politicians such as those of the rightist Jamaat - e - Islami are already criticising the General 's alleged gullibility in putting his faith on the US. +","दक्षिणपंथी जमाते-इस्लमी जैसी विपक्षी पार्टियां अमेरिका पर भरोसा करने की जनरल की कथित मूर्खता की आलचना कर रही हैं. +","dakshinpnthi putting his faith partiyan amerika par bharosa karne ki janaral ki kathit moorkhta ki aalachna kar rahi hain +",6,2 +"Error sending ""% s"" to% s +","""% s"" को% s में भेजने में त्रुटि +","error ko error men bhejne men truti +",6,2 +"Suddenly , one of the hawks made a flashing dive through the sky , attacking the other . +","अकस्मात एक चील ने आसमान में तेजी से डुबकी लगाई और दूसरी चील पर हमला कर दिया । +","made a flashing ne aasman men teji se dubki lagaee aur hawks made par hamla kar diya . +",3,3 +"They would, you know, throw it back at you. +","वे इस खेल को आप पर वापस फेंक देंगे. +","ve is khel ko aap par vapas phenk denge +",5,8 +"He said, “This is my staff; I support myself on it, and I knock down leaves for my sheep with it, and there are other uses for me in it. ” +","उसने कहा, ""यह मेरी लाठी है। मैं इसपर टेक लगाता हूँ और इससे अपनी बकरियों के लिए पत्ते झाड़ता हूँ और इससे मेरी दूसरी ज़रूरतें भी पूरी होती है।"" +","usne kaha , yah meri staff leaves i isapar tek lagata hoon aur other apni bakriyon ke lie patte uses hoon aur other meri doosri zaroorten bhi poori hoti leaves +",6,0 +"Windows that should be use alpha blur by default +","विंडोज़ जिसे मूलभूत रूप से अल्फा धुंधला का प्रयोग करना चाहिए +","windows jise default roop se alpha blur ka use karna chahie +",8,3 +"Dr Bhanu may have been persuaded to step in because a business partner is close to former chief minister S. Bangarappa, who in turn is related to Rajkumar. +","भानु को भूमिका निभाने के लिए शायद इसलिए तैयार किया गया कि एक व्यावसायिक साज्हीदार के पूर्व मुयमंत्री एस. बंगारप्पा से, जो राजकुमार के रिश्तेदार हैं, निकट संबंध हैं. +","dr ko minister nibhane ke lie turn islie taiyar kiya gaya ki ek vyavsayik partner ke former chief es bngarappa se , jo rajkumar ke rishtedar hain , nikat business hain +",6,2 +"where they will hear no idle talk, +","वहाँ कोई लग़ो बात सुनेंगे ही नहीं +","vahan koee idle talk sunenge hi nahin +",9,1 +"it is clear that in vadic era puran and history were kept on the same level +","इनसे यह स्पष्ट है कि वैदिक काल में पुराण तथा इतिहास को समान स्तर पर रखा गया है। +","inse yah clear hai ki vaidik era men vadic tatha history ko same level par rakha gaya hai. +",6,1 +"Don 't get pulled into that rush... into that storm. +","उस भीड़ में खींचे नहीं चले जाना है.... उस तूफ़ान मे। +","us bhir don pulled nahin chale jana hai us toofan me. +",7,2 +"Casual workers are paid wages per man - day. +","दिहाडी मजदूरों को मजदूरी का भुगतान श्रम-दिन के आधार पर किया जाता है। +","dihadi workers ko wages ka bhugtan shram-din ke casual par kiya jata man +",9,0 +"He would search for sure - fire devices of making bombs. +","बम बनाने के नुस्ख़े तलाश करता। +","bombs banane ke nuse talash sure +",7,2 +"Excavations made in Malabar have proved the existence of chambers in which massive earthenware urns had been kept. +","मालाबार में खुदाई के कमरों में रखे हुए बड़े-बड़े बर्तन मिले हैं जिनमे शव रखे जाते थे। +","malabar men excavations ke kamron men rakhe hue bare-bare earthenware mile hain jinme massive rakhe jate the. +",7,1 +"They noticed Chandu Menon steadily enjoying handfuls of the pudding as if nothing had happened. +","उन्होंने देखा कि चन्दु मेनन खुब मजे से खाने पर ऐसे हाथ साफ करने में मशगूल हैं जैसे कुछ हुआ ही नहीं। +","unhonne nothing ki chandu pudding khub maje se khane par aese hath saph karne men mashgool hain jaise kuchh huaa hi nahin. +",6,3 +"The story of 'Sudas' is taken from the Rig Veda. +","सुदामा की कहानी ऋग्वेद से ली है। +","sudama ki story rigved se li hai. +",9,1 +"Crowding also brings about other factors of destruction such as disease and malnutrition. +","भीड़-भाड़ भी विनाश के अन्य कारणों को जन्म देती है, जैसे बीमारी और अपर्याप्त पोषण। +","bhir-bhar bhi destruction ke other factors ko janm deti hai , jaise disease aur aparyapt poshan. +",9,0 +"that's right, a $1 billion - +","जी हाँ, 10 करोड़ डॉलर्ज़ - +","ji han, 10 billion dlarz - +",5,5 +"Revitalization of cooperative institutions is central to the success of this agenda. +","इस कार्यक्रम की सफलता के लिए सहकारी संस्थाओं को फिर से प्राणवंत बनाना अत्यंत आवश्यक है। +","is karyakram ki saphalta ke lie cooperative institutions ko phir se pranvnt banana institutions is central +",7,2 +"Of the people there are some who say: ""We believe in Allah and the Last Day;"" but they do not (really) believe. +","कुछ लोग ऐसे हैं जो कहते हैं कि हम अल्लाह और अन्तिम दिन पर ईमान रखते हैं, हालाँकि वे ईमान नहीं रखते +","kuchh people aese hain jo kahte hain ki ham allah aur antim din par eeman rakhte hain, halanki ve eeman nahin rakhte +",9,2 +"Of his party was also Abraham; +","और इबराहीम भी उसी के सहधर्मियों में से था। +","aur ibrahim bhi usi ke sahadharmiyon men se tha. +",8,4 +"Find out how long the job will take or agree on a set time for collection, and check how the garage will want you to pay the bill. +","पता कीजिए कि क्या काम व पुर्ज़ों की वारंटी है या नहीं । +","set garage ki kya job v collection ki varnti hai ya nahin . +",8,1 +"I hope you 're here to find out what does it take to go from an idea to a business. +","मुझे आशा है कि आप कर रहे हैं यहाँ यह क्या करता है खोजने के लिए एक विचार से एक व्यवसाय के लिए जाने के लिए ले लो। +","i aasha hai ki aap kar rahe hain yahan yah kya karta hai khojne ke lie ek idea se ek business ke lie jane ke lie le lo. +",4,1 +"While interpreting the power of it, Supreme Court also said that it is only a tribunal, which decides the election schedules, and holding election is his work. +","सुप्रीम कोर्ट ने भी उसकी शक्तियों की व्याख्या करते हुए कहा कि वह एकमात्र अधिकरण है जो चुनाव कार्यक्रम निर्धारित करे चुनाव करवाना केवल उसी का कार्य है +","supreme court ne bhi power shaktiyon ki vyakhya karte hue kaha ki vah ekmatr tribunal hai jo election schedules nirdharit kare election karvana keval usi ka work hai +",6,1 +"Foot - wear should not be uncomfortable and should not hamper the free movements of the feet. +","जूते को असुविधा-जनक और पैर की सुचारु गति में बाधा पहुंचाने वाला नहीं होना चाहिए। +","joote ko asuvidha-janak aur pair ki sucharu gati men badha pahunchane vala nahin hona chahie. +",4,7 +"Now, a simple way for you to start +","अब, तुम शुरू करने के लिए एक सरल तरीका +","ab , tum shuroo karne ke lie ek simple way +",9,0 +"But we have very special warmth for Nepal and we think that any relationship which we build up or trade relations or economic co - operation will be to our mutual benefit. +","लेकिन हमारे मन में नेपाल के लिए विशेष प्यार है और हम सोचते हैं कि उससे जो भी सम्बंध हम विकसित करेंगे, चाहे व्यापारिक सम्बंध हो या आथिर्क सहयोग वे दोनों ही देशों के लिए लाभदायक होंगे। +","lekin hamare man men nepal ke lie vishesh pyar hai aur ham sochte hain ki usse jo bhi sambndh ham viksit karenge, chahe vyaparik sambndh ho ya aathirk sahyog ve relations or economic ke lie labhdayak honge. +",10,0 +"It is indeed a happy occasion for me this evening to participate in the inauguration of the International Conference on Natural Fibres, which has been organized to mark the conclusion of the Platinum Jubilee Celebrations of the National Institute of Research on Jute and Allied Fibre Technology (NIR-JAFT). +","अंतरराष्ट्रीय प्राकृतिक रेशा सम्मेलन, जिसे राष्ट्रीय जूट और संबंधित रेशा प्रौद्योगिकी अनुसंधान के प्लेटिनम जुबली समारोह के स्थापना के अवसर पर आयोजित किया गया है, के उद्घाटन में आज की शाम भाग लेना मेरे लिए वास्तव में खुशी का मौका है। +","antarrashtriy natural international conference , jise national joot aur snbndhit international technology research ke platinum conclusion samaroh ke sthapna ke occasion par aayojit kiya gaya hai , ke inauguration men aaj ki sham bhag lena mere lie vastav men happy ka mauka hai. +",7,0 +"11)In sanskrit sentence words can be placed in any order. +","११) संस्कृत वाक्यों में शब्दों को किसी भी क्रम में रखा जा सकता है। +","sanskrit snskrit words men shabdon ko kisi bhi order men rakha ja sakta hai. +",6,0 +"The number of columns that a child spans +","स्तंभों की संख्या जो संतति तक फैला है +","number of columns jo spans tak phaila hai +",6,2 +"Please fill in empty pile first. +","कृपया खाली ढेर को पहले भरें. +","kripya empty pile ko pahle fill +",7,3 +"As a barrister, I was well aware of the difficulties of proving the truth of statements giving rise to libel proceedings. +","एक वकीलके नाते मैं मानहानिवाल बातोंको सिद्ध करनेकी कठिनाइयोंको जानता था। +","ek vakilke rise i manhanival batonko siddh karneki kathinaiyonko aware tha. +",7,0 +"Another program on your computer added an extension that may change the way Chrome works. +","आपके कंप्यूटर पर किसी अन्य प्रोग्राम ने एक्सटेंशन जोड़ा है, जो Chrome के काम करने के तरीके को बदल सकता है. +","aapke computer par kisi any added an extension jora hai, jo Chrome ke kam karne ke tarike ko badal sakta hai +",7,1 +"The label used for menu items and buttons that activate this action. +","मेनू मद व बटन के लिये लेबल जो इस क्रिया को सक्रिय करता है. +","menu items v buttons ke liye label jo is action ko sakriy karta hai +",8,2 +"In this too, their situation was fundamentally different from mine. +","इस प्रश्न को लेकर भी मेरे और उनके दृष्टिकोण में भारी अन्तर था। +","is prashn ko lekar bhi mere aur unke drishtikon men bhari antar tha. +",10,0 +"du of dx is equal to cosine of x. +","du dx की कोज्या एक्स के लिए बराबर है। +","du dx ki cosine eks ke lie equal hai. +",8,1 +"Or you may be unable to work because of a serious illness or disability. +","या फिर आप किसी गंभीर बीमारी या फिर विकलांगता के कारण काम नही कर सकेंगे । +","ya phir aap kisi serious illness ya phir disability ke karan unable nahi kar sakenge . +",5,1 +"Shares of best companies which have very important effect on the share market. +","श्रेष्ठ कंपनियों के शेयर्स जो शेयर बाजार को बहुत प्रभावित करने वाले हों। +","shreshth companies ke effect jo share market ko bahut prbhavit karne vale hon. +",9,0 +"On the passage from the Gate to the Central Hall from where the procession passes, red baize cloth is spread. +","जहाँ से शोभायात्रा गुजरती है अर्थात् मुख्य द्वार से केन्द्रीय कक्ष तक लाल कालीन बिछाया जाता है। +","jahan se procession passage hai arthat central gate se kendriy hall tak red kalin bichhaya jata hai. +",7,1 +"Inflammation of the portal vein was observed in the examined patient. +","रोगी की जांच में प्रतिहारी शिरा के सूजन का पता चला. +","patient ki janch men prtihari shira ke soojan ka pata chala +",9,0 +"He was appreciated a lot for his role opposite Rajesh Khanna and Rekha and he also got Filmfare award for best supporting actor. +","राजेश खन्ना और रेखा के विपरीत इनकी सहायक भूमिका में इन्हें बेहद सराहा गया और इन्हें सर्वश्रेष्ठ सहायक कलाकार का फिल्मफेयर पुरस्कार दिया गया। +","rajesh khanna aur rekha ke viprit inki sahayak role men inhen behad lot gaya aur inhen best sahayak actor ka filmfare award diya gaya. +",8,2 +"Truth is the same to all nations, he had said, but each nation has its lies which it speaks of as its idealism. +","उन्होंने कहा भी था, सत्य सभी राष्ट्र् के लिए एक समान है, लेकिन हर राष्ट्र के पास अपने अपने झूठ भी होते हैं, जिसे वह अपने आदर्शवाद के तौर पर बघारते हैं। +","unhonne kaha bhi tha , truth sabhi rashtr ke lie ek same hai , lekin har nation ke pas apne apne jhooth bhi hote hain , jise vah apne idealism ke taur par bagharte hain. +",8,2 +"Internal error: UID in invalid format: %s +","आंतरिक त्रुटि:अवैध प्रारूप में UID: %s +","internal truti:avaidh invalid format UID: s +",7,2 +"Vedant philosophy has strengthened his faith. +","वेदांत-दर्शन से उनका विश्वास और भी दृढ़ हो गया है। +","philosophy se unka vishvas aur bhi dri ho gaya faith +",5,3 +"Droupadi is an emanation of Mahashakti, the Power Creatrix, as well. +","द्रौपदी महाशक्ति का भी स्रोत है और सृष्टि सत्ता का भी। +","droupadi emanation ka bhi srot hai aur srishti power ka bhi. +",5,1 +"In this there is, certainly, evidence (of the Truth). But most of them have no faith. +","यक़ीनन इसमें (भी क़ुदरत) ख़ुदा की एक बड़ी निशानी है मगर उनमें से अक्सर ईमान लाने वाले ही नहीं +","truth ismen bhi evidence uda ki ek bari nishani hai magar unmen se aksar eeman lane vale hi nahin +",6,2 +"Unable to connect to the Internet +","इंटरनेट से कनेक्ट होने में असमर्थ +","internet se connect hone men unable +",7,6 +"We established between them and the town that We had blessed, other towns nearby, and thus made it easier to travel. We told them, ""Travel there safely day and night"". +","और हम अहले सबा और (शाम) की उन बस्तियों के दरमियान जिनमें हमने बरकत अता की थी और चन्द बस्तियाँ (सरे राह) आबाद की थी जो बाहम नुमाया थीं और हमने उनमें आमद व रफ्त की राह मुक़र्रर की थी कि उनमें रातों को दिनों को (जब जी चाहे) बेखटके चलो फिरो +","aur other ahle saba aur night ki un town ke darmiyan jinmen hamne barakat ata ki thi aur chand bastiyan sare rah aabad ki thi jo baham travel thin aur hamne day aamad v rapht ki rah murrar ki thi ki day raton ko dinon ko jab easier chahe bekhatke chalo phiro +",8,2 +"So the fact that when we tried to figure out x 's that would +","तो सच है कि जब हम बाहर एक्स कि होता यह पता लगाने की कोशिश की +","to fact hai ki jab ham bahar x ki hota yah pata lagane ki koshish ki +",8,4 +"The Reserve Bank has stated that the company has passed resolutions at its Board of Directors’ level and a special resolution by the shareholders, agreeing for enhancing the limit for the purchase of its equity shares and convertible debentures by FIIs / RFPIs. +","रिज़र्व बैंक ने बताया है कि कंपनी ने अपने निदेशक मंडल स्तर पर संकल्प पारित किए हैं और शेयरधारकों द्वारा एक विशेष संकल्प पारित किया गया है जिसमें एफआईआई/आरएफपीआई द्वारा इसके इक्विटी शेयरों और परिवर्तनीय डिबेंचरों की खरीद की सीमा में वृद्धि करने पर सहमति बनी है। +","rizarv bank has stated hai ki knpni ne apne nideshak mndal star par snkalp parit kie hain aur sheyardharkon dvara ek vishesh snkalp parit kiya gaya hai jismen ephaaeeaaeeaarephpiaaee dvara iske ikviti sheyron aur parivartniy dibenchron ki kharid ki enhancing the limit karne par sahamti bani hai. +",3,3 +"But if he was of the deniers [who were] astray, +","और अगर झुठलाने वाले गुमराहों में से है +","aur agar deniers vale astray men se hai +",7,1 +"(18) ""company in which the public are substantially interested""a company is said to be a company in which the public are substantially interested— +","(18) ''वह कंपनी जिसमें जनता पर्याप्त हितबद्ध है''- किसी कंपनी को ऐसी कंपनी, जिसमें जनता82 पर्याप्त रूप से हितबद्ध है, तब कहा जाता है जब– +","18 vah company jismen public paryapt interested hai - kisi company ko aesi company , jismen janta82 paryapt roop se interested hai , tab kaha jata hai jab +",7,3 +"The male condom is any of the effective and safe method of contraception. +","पुरुष कंडोम गर्भ-निरोधक का सबसे प्रभावी और सुरक्षित उपाय है। +","male condom garbh-nirodhak ka sabse effective aur safe contraception hai. +",10,0 +"At the centre, remains the card scheme provider like the ‘National Payments Corporation’ (NPCI) for clearing and settlement. +","इस स्कीम के केंद्र में ‘राष्ट्रीय भुगतान निगम’ जैसे कार्ड स्कीम प्रदाता होते हैं जो समाशोधन तथा भुगतान करते हैं। +","is skim ke kendr men rashtriy bhugtan nigam jaise card scheme provider hote hain jo clearing and settlement karte hain. +",8,1 +"And we know how to write that in decimal form. +","और हम जानते हैं की इसे कैसे दसमलव के रूप में लिखते. +","aur ham jante hain ki ise kaise decimal ke form men likhte +",9,2 +"Failed to move temporary file “%s” to final location “%s”: %s +","“%s” अस्थायी फ़ाइल को अंतिम अवस्थिति “%s” में भेजने में विफल: %s +","s temporary file ko final location s failed failed to move: s +",5,3 +"“ Well . . . so I can do things , ” he had responded . “ And so I can change those things that I don ' t want to happen . ” +","“ इसलिए कि मैं कुछ कर सकूं , ” ऊंट चालक ने कहा , “ और उन चीजों को बदल सकूं जिन्हें मैं घटित होते हुए नहीं देखना चाहता ! ” +","islie ki i kuchh kar sakoon , oont chalak ne kaha , aur un chijon ko badal sakoon jinhen i ghatit hote hue nahin dekhna chahta ! +",7,2 +"The blood pressure measured when the atria and ventricles are relaxed and filled with blood. +","हृदय गति की वह माप जब अलिंद और निलय शिथिल हों तथा रक्त से भरे हों। +","hriday gati ki vah map jab atria and ventricles shithil hon tatha rakt se bhare hon. +",7,1 +"Ladies and Gentlemen, manpower and technology are the prime drivers of industrial progress. +","देवियो और सज्जनो, जनशक्ति और प्रौद्योगिकी, औद्योगिक प्रगति के प्रमुख प्रेरक हैं। +","ladies aur sajjno, manpower and technology, industrial progress ke prime drivers hain. +",9,0 +"“If you 're not failing every now and again, it' s a sign you 're not doing anything very innovative. ” - Woody Allen +","“यदि आप बार बार नहीं गिर रहे हैं तो इसका अर्थ है कि आप कुछ नया नहीं कर रहे हैं. ”-वुडी एलन +","yadi aap bar bar nahin sign rahe hain to iska arth hai ki aap kuchh naya nahin kar rahe hain -vudi woody +",7,2 +"On top of this building there is a big tomb +","इस इमारत के ऊपर एक वृहत गुम्बद सुशोभित है। +","is building ke top ek big tomb sushobhit hai. +",8,1 +"Kindness, seriousness and restraint were the balance column +","दया विचारशीलता और संयम इसके आधार स्तम्भ थे। +","kindness seriousness aur restraint iske aadhar column the. +",9,2 +"These dealt with matters arising during periods of the first and second Emergencies proclaimed in 1962 and 1971. +","इनका संबंध उन मामलों से था जो 1962 और 1971 में उदघोषित आपात उपबंध पहले और दूसरे आपातो के दौरान पैदा हुए। +","inka snbndh un mamlon se tha jo 1962 aur 1971 men udghoshit aapat upbndh pahle aur doosre aapato ke dauran paida hue. +",8,2 +"causing no headiness or intoxication. +","न उसमें कोई ख़ुमार होगा और न वे उससे निढाल और मदहोश होंगे। +","n usmen koee headiness hoga aur n ve usse headiness or intoxication honge. +",7,5 +"Administer to any party to arbitration +","पंच निर्णय के लिए पक्षकार को सौंप देना +","arbitration nirnay ke lie party ko saunp administer +",5,1 +"So the fence would have been broken if there really had been a leopard. +","अतः यदि चीता वहां सचमुच में गया होता तो बाड़ी कहीं से टूटी मिलती। +","ata yadi leopard vahan sachmuch men gaya hota to bari kahin se tooti milti. +",9,2 +"and Our command is but a single [word], like the twinkling of an eye. +","और हमारा आदेश (और काम) तो बस एक दम की बात होती है जैसे आँख का झपकना +","aur hamara command aur single to bas ek dam ki word hoti hai jaise eye ka twinkling +",6,1 +"I do not wish to take any hasty step, nor would you wish to take it. +","मैं जल्दबाजी में कोई कदम नहीं उठाना चाहता, न आप जल्दबाजी में कोई कदम उठाना चाहेंगे। +","i hasty men koee kadam nahin uthana chahta , n aap hasty men koee kadam uthana chahenge. +",5,4 +"For instance, for a Muslim child the first and most important part of his education was to learn to read Arabic, in order that he might be able to read the Quran. +","उदाहरण के तौर पर, एक मुसलमान बच्चे की शिक्षा का प्रथम और सवांधिक महत्वपूर्ण अंग था अरबी पढने का ज्ञान ताकि वह कुरान पढ सकें. +","instance ke taur par , ek muslim child ki education ka first aur savandhik important part tha arabic padhne ka jnjan taki vah quran padh saken +",7,1 +"But he who is given the Record behind his back, +","और रह वह व्यक्ति जिसका कर्म-पत्र (उसके बाएँ हाथ में) उसकी पीठ के पीछे से दिया गया, +","aur rah vah vyakti jiska karm-patr uske baen hath men uski pith ke pichhe se diya gaya, +",8,1 +"I can't find my provider and I wish to enter it manually: +","मैं अपने प्रदाता नहीं ढूँढ़ सकता हूँ और मैं इसे दस्ती रूप से दाखिल करना चाहता हूँ (m): +","main apne prdata nahin dhoon sakta find aur main ise dasti roop se dakhil karna chahta find m: +",5,1 +"Reminds you when you forgot to add an attachment to a mail message. +","आपको याद दिलाता है जब आप डाक संदेश के लिए एक संलग्नक जोड़ना भूल गए. +","aapko reminds dilata hai jab aap mail message ke lie ek attachment jorna bhool ge +",7,6 +"An unknown application wants to change the password for the default keyring. You have to choose the password you want to use for it. +","एक अनजान अनुप्रयोग तयशुदा कीरिंग के लिए कूटशब्द बदलना चाहता है. आपको कूटशब्द चुनना है जिसे आप इसके लिये प्रयोग करना चाहते हैं. +","ek unknown application default keyring ke lie kootashabd badalna chahta hai aapko kootashabd chunna hai jise aap iske liye pryog karna chahte hain +",8,2 +"Allah destroys interest and gives increase for charities. And Allah does not like every sinning disbeliever. +","खुदा सूद को मिटाता है और ख़ैरात को बढ़ाता है और जितने नाशुक्रे गुनाहगार हैं खुदा उन्हें दोस्त नहीं रखता +","allah interest ko destroys hai aur airat ko baata hai aur jitne disbeliever gunahgar hain allah unhen dost nahin rakhta +",6,3 +"because we can say one hundred will go into seven hundred and twenty - three. +","क्योंकि हम कह सकते हैं एक सौ सात सौ और बीस-तीन में जाना होगा। +","kyonki ham kah sakte hain ek sau sat sau aur twenty men jana hoga. +",4,6 +"The Indo-Japanese forces advanced rapidly on all the three sectors of the wide front . +","भारतीय जापानी सेनाएं दीर्घ सीमांत के तीनों सेक़्टरों में तेजी से आगे बढ़ रही थीं . +","bhartiy japani senaen dirgh simant ke forces advanced rapidly teji se aage ba rahi thin +",4,5 +"But a higher standard of material life has a cultural content only when it is imbued with, or serves as a means of attaining some ultimate moral value. +","किंतु उच्च स्तर के भौतिक जीवन संस्कृति का अंश तभी आता हैं, जबकि वह उसमें संश्लिष्ट हो उच्च नैतिक मूल्यों को प्राप्त करने का कोई माध्यम बने. +","kintu higher standard ke material life cultural ka content tabhi aata hain , jabki vah usmen ultimate ho higher moral moolyon ko prapt karne ka koee madhyam bane +",7,2 +"But the current is quite strong in the middle, so sit still. +","लेकिन बीच में धारा काफी तेज है, इसलिए पक्का होकर बैठना। +","lekin bich men dhara kaphi tej hai, islie pakka hokar baithna. +",5,8 +"Everything was in motionup and down and sideways and forwards. +","हर चीज हरकत में थी-ऊपर, नीचे, दायें, बायें, सामने। +","har chij harakat men thi-oopar, niche, dayen, bayen, samne. +",10,0 +"These cows have straight top lines , level rumps , and sharp withers . +","इस नस्ल की गायों की सीधी ऊपरी रेखाएं , सम पिछली पीठ और नुकीले कन्धे होते हैं . +","is nasl ki gayon ki straight top lines , sam pichhli pith aur nukile kandhe hote hain +",9,0 +"The kingdom of Magadha was powerful, so Vishnugupta decided to go to Pataliputra and persuade the Nanda king Dhanananda to attack the Greeks and drive them out of India. +","चूंकि मगध शक्तिशाली राज्य था इसलिए विष्णुगुप्त ने पाटलिपुत्र जाकर नन्द राजा घनानन्द को इस बात के लिए राजी कराने का निश्चय किया कि वह यूनानियों पर आक्रमण करें और उन्हें भारत से मार भगाएं। +","choonki magadha powerful kingdom tha islie vishnugupt ne patliputr jakar nanda raja dhanananda ko is bat ke lie raji karane ka nishchay kiya ki vah greeks par aakraman karen aur unhen india se mar bhagaen. +",9,2 +"The arab and israeli war kept the tourist away from visiting these countries. +","अरब इज़राइल युद्ध ने इन देशों का दौरा करने से पर्यटक को दूर रखा। +","arab izrail war ne in countries ka daura karne se tourist ko door rakha. +",8,1 +"Bull 's stomach has blown up. +","बैल का पेट फूल जाता है। +","bull ka stomach phool jata hai. +",8,0 +"“ That ' s the gospel truth , ” Čepek enthusiastically agreed . +","“ आपकी बात सोलह आने सही है । ” चेपक ने उत्साहपूर्वक हामी भरी । +","truth bat solah aane sahi hai . gospel čepek ne utsahpoorvak hami bhari . +",5,2 +"Third Party guarantee (if mortgage could not be created before or at the time of disbursement). +","तृतीय पक्ष गारंटी (अगर संवितरण के समय या इससे पहले बंधक का सृजन नहीं किया जा सका है)। +","third paksh guarantee agar disbursement ke time ya isse pahle mortgage ka srijan nahin kiya ja saka hai . +",8,2 +"Its other important dimension is that it must provide impetus to such a campaign that endeavours to bring about desirable changes in the organisations, institutions and circumstances and thus aims at extirpating evils. +","इसका एक अन्य आयाम यह है कि इसके माध्यम से एक ऐसा अभियान चलाया जाये जो संगठनों, संस्थाओं और परिरिस्थितियों में आवश्यकतानुसार परिवर्तन लाने तथा इस प्रकार सामाजिक बुराइयों को खत्म करने का प्रयास करे। +","iska ek any aayam yah hai ki iske madhyam se ek aesa abhiyan chalaya jaye jo sngathnon, snsthaon aur pariristhitiyon men aavashyaktanusar parivartan lane tatha is prkar samajik buraiyon ko khatm karne ka pryas kare. +",8,0 +"One consequence of this kind of segregation was that there was usually little mental companionship between husband and wife . +","इस तरह के अलगाव का एक परिणाम यह था कि साधारणतया पति और पत्नी के बीच सहचारिता नहीं थी . +","is tarah ke segregation ka ek consequence yah tha ki sadharanatya husband aur wife ke bich little nahin thi +",7,0 +"(a) no deduction shall be admissible under this section to the amalgamating or the demerged company for the previous year in which the amalgamation or the demerger takes place; and +","(क) समामेलक या अविलयित कंपनी को, उस पूर्ववर्ष के लिए, जिसमें समामेलन या अविलयन होता है, इस धारा के अधीन कोर्इ कटौती अनुज्ञेय नहीं होगी; और +","previous amalgamating ya demerged company ko , us poorvavarsh ke lie , jismen samamelan ya demerger hota hai , is section ke adhin kori deduction admissible nahin hogi aur +",7,6 +"National integration is essential for the idea of India to grow. +","भारत के विकास के विचार के लिए राष्ट्रीय अखंडता अत्यावश्यक है। +","india ke essential ke idea ke lie national integration atyavashyak hai. +",6,2 +"It is, therefore, rare. +","इसलिए वह बहुत विरल होता है। +","islie vah bahut viral hota rare +",6,0 +"The IT sector has positioned India globally as a major services hub, becoming a major exporter of IT, BPO and software services. +","सूचना और प्रौद्योगिकी क्षेत्र ने भारत को सूचना प्रौद्योगिकी,बीपीओ तथा सॉफ्टवेयर सेवाओं का प्रमुख निर्यातक बनाते हुए एक प्रमुख सेवा केंद्र के रूप में विश्व में स्थापित कर दिया है। +","soochna aur praudyogiki sector ne bharat ko soochna praudyogiki , bpo tatha software services ka major exporter banate hue ek major seva hub ke roop men vishv men sthapit kar diya hai. +",8,4 +"Directory% s is not writable +","% s निर्देशिका लिखने योग्य नहीं +","s directory likhne yogy nahin +",9,2 +"No, I understood perfectly. +","नहीं, मैंने ठीक से समझा है, दीदी। +","nahin , mainne thik se samjha hai , didi. +",7,6 +"And it 's the only college where we don' t give a certificate. +","और अकेला ऐसा कॉलेज जहाँ हम सर्टिफ़िकेट नहीं देते हैं। +","aur akela aesa college jahan ham give nahin dete hain. +",4,1 +"gradual recovery of health after illness +","रोगग्रस्त होने के बाद स्वास्थ्य में क्रमिक सुधार +","illness hone ke bad health men gradual sudhar +",10,0 +"Your demand being so reasonable, no impartial person would even suggest that you should moderate it. +","आपकी मांग ऐसी है कि कोई निष्पक्ष मनुष्य उसमें काटछांट करनेकी बात सुझा ही नहीं सकता। +","aapki mang aesi hai ki koee impartial person usmen katchhant karneki bat sujha hi nahin sakta. +",8,0 +"get our egotism out of the way. +","अपने अहंकरवाद रास्ते से हटा देना है. +","apne egotism raste se hata dena hai +",9,0 +"Find out how long the job will take or agree on a set time for collection, and check how the garage will want you to pay the bill. +","पता कीजिए कि क्या काम व पुर्ज़ों की वारंटी है या नहीं । +","pata long ki kya kam v pay the bill hai ya nahin . +",3,3 +"What quantity should be added to both sides of this equation +","क्या मात्रा इस समीकरण के दोनों पक्षों के लिए शामिल किया जाना चाहिए +","kya quantity is equation ke sides pakshon ke lie shamil kiya jana chahie +",8,1 +"We must now utilize our enlarged capacities to raise the general standards of living. +","हमें अब अपनी बढ़ी हुई क्षमता का उपयोग जीवन के आम स्तर को ऊंचा उठाने के लिए करना होगा। +","hamen ab apni bai huee utilize our enlarged jivan ke aam star ko ooncha uthane ke lie karna hoga. +",7,0 +"I throw a ball and it 's going to go up in the air. +","मैं एक गेंद फेंक और इसे हवा में ऊपर जाना जा रहा है। +","i ek ball phenk aur ise air men oopar jana ja raha hai. +",7,2 +"Somebody sang before him a song which goes thus: ” I feel I am a poor man when people do n 't ask gifts of me. +","किसी ने उसके सामने इसक प्रकार का गीत गाया: ” जब लोग मुझसे दान नहीं मांगते तो जान पड़ता है कि दरिद्र व्यक़्ति हूं. +","kisi ne uske i somebody prkar ka song gifts : jab people ask dan nahin mangte to jan parta hai ki poor man hoon +",3,1 +"There were problems applying the diff% 1 to the file% 2. +","डिफ़% 1 को फ़ाइल% 2 में लागू करने में समस्याएँ हैं. +","problems 1 ko file 2 problems applying karne men samasyaen hain +",7,2 +"The only cohesive factor was trade, which had been initiated in the Mauryan period, as a stable government ensured communication between various parts of the empire and encouraged active internal trade. +","इस काल का एकमात्र संगत उपादान व्यापार था जो मौर्य काल में प्रारंभ किया गया था क्योंकि स्थिर सरकार ने साम्राज्य के विभिन्न भागों में संचारण सुनिश्चित किया था तथा सक्रिय आंतरिक व्यापार को प्रोत्साहित किया था। +","is kal ka ekmatr sngat upadan vyapar tha jo maury kal men prarnbh kiya gaya tha kyonki sthir sarkar ne samrajy ke vibhinn bhagon stable government ensured kiya tha tatha active internal trade ko protsahit kiya tha. +",7,0 +"But his words fell on deaf ears, for was he not the poet of a nation defeated and enslaved? +","लेकिन उनकी वाणी किन्हीं बहरे कानों में पड़ रही थी, क्या वे स्वयं एकपराजित और परतंत्र देश के कवि नहीं थे? +","lekin unki words kinhin deaf ears men par rahi thi , kya ve svyn ekaprajit aur partntr nation ke poet nahin the +",7,3 +"Sacred place of Hindus located in the district of Faizabad in the state of Uttar Pradesh. +","उत्तर प्रदेश राज्य में फैज़ाबाद जिले में स्थित हिन्दूओं की एक पवित्र जगह। +","uttar prdesh rajy men phaizabad jile men sthit hindooon ki ek sacred place +",6,4 +"In old Tamil literature also one comes across the murasu quite often . +","प्राचीन तमिल साहित्य में मुरसु का भी कई जगह उल्लेख हुआ है . +","old tamil literature men murasu ka bhi kee jagah ullekh huaa hai +",8,3 +"Please confirm whether Is duly sanctioned or not? +","प्राण विधिवत मंजूर किया हुआ है-पुष्टि भेजें। +","pran duly sanctioned kiya huaa hai-pushti bhejen. +",8,2 +"Whatever you possess is transient and whatever is with God is everlasting. We will recompense those who exercise patience with their due reward and even more. +","तुम्हारे पास जो कुछ है वह तो समाप्त हो जाएगा, किन्तु अल्लाह के पास जो कुछ है वही बाक़ी रहनेवाला है। जिन लोगों ने धैर्य से काम लिया उन्हें तो, जो उत्तम कर्म वे करते रहे उसके बदले में, हम अवश्य उनका प्रतिदान प्रदान करेंगे +","god pas jo kuchh hai vah to samapt ho reward , kintu allah ke pas jo kuchh hai vahi due rahnevala hai. jin transient ne patience se kam liya unhen to , jo uttam karm ve karte rahe uske badle men , ham avashy unka prtidan prdan karenge +",7,2 +"This is convenient as the members of the family can give a constant care to the vegetables during leisure and the wastewater from the bathrooms and kitchen can easily be diverted to the vegetable beds. +","यह सुविधाजनक स्थान होता है क्योंकि परिवार के सदस्य खाली समय में साग-सब्जियों पर ध्यान दे सकते हैं तथा रसोईघर व स्नानघर से निकले पानी आसानी से सब्जी की क्यारी की ओर घुमाया जा सकता है। +","yah suvidhajanak sthan hota hai kyonki parivar ke sadasy family can give sag-sabjiyon par dhyan de sakte hain tatha rasoeeghar v snanaghar se nikle pani aasani se sabji ki kyari ki or ghumaya ja sakta hai. +",6,1 +"Once your decisions are known, money can be obtained. +","एक बार आपके निर्णय ज्ञान हो जाने के बाद पैसा प्राप्त किया जा सकेगा। +","ek bar aapke decisions jnjan ho jane ke bad money prapt kiya ja sakega. +",8,0 +"If they deny you, so have other messengers been denied before you, who came with clear signs, scriptures and enlightening book. +","फिर यदि वे तुम्हें झुठलाते ही रहें, तो तुमसे पहले भी कितने ही रसूल झुठलाए जा चुके है, जो खुली निशानियाँ, 'ज़बूरें' और प्रकाशमान किताब लेकर आए थे +","phir yadi ve tumhen jhuthlate hi rahen, to tumse pahle bhi kitne hi rasool messengers been denied hai, jo clear signs, zbooren aur enlightening book lekar aae the +",5,6 +"Handa is charged with using his connections in the Congress to influence the Delhi government . +","हांड़ा पर दिल्ली सरकार को प्रभावित करने के लिए कांग्रेस में अपने संबंधों के इस्तेमाल का आरोप है . +","influence the delhi government ko prbhavit karne ke lie kangres men apne snbndhon ke istemal ka aarop hai +",4,5 +"You can select one or more devices. +","आप एक या अधिक उपकरण चुन सकते हैं. +","aap ek ya adhik devices select sakte hain +",8,2 +"But we will come back, once again, +","लेकिन हम वापस आ गए हैं, दोबारा, +","lekin ham vapas aa ge hain , dobara , +",8,3 +"A natural outer covering or coat, such as the skin of an animal or the membrane enclosing an organ. +","प्राकृतिक बाहरी कवर या कोट, जैसे पशुओं की खाल या अंग को ढकने वाली झिल्ली। +","natural outer kavar ya coat , jaise animal ki skin ya organ ko dhakne vali jhilli. +",9,2 +"It belongs to the seventh century if not earlier , and was perhaps intended originally for the Buddhist creed , but was adopted later for a Vishnu temple , the principal deity being a recumbent Vishnu , or Anantasayin . +","यदि यह और पहले का नहीं , तो भी सातवीं शताब्दी का बना है और शायद मूल रूप से बौद्ध मत के लिए था , किंतु बाद में विष्णु मंदिर में रूपांतरित कर दिया गया जिसमें प्रमुख देवता लेटे हुए विष्णु या अनंतशायी हैं . +","yadi yah aur pahle ka nahin , to bhi seventh century ka bana hai aur shayad mool roop se bauddh mat ke lie tha , kintu bad men vishnu mndir men roopantrit kar diya gaya jismen prmukh devta lete hue vishnu ya anntshayi hain +",9,2 +"Belonging to a particular denomination, he had his own customs. +","एक विशिष्ट संप्रदाय का होने के नाते उसकी अपनी कुछ प्रथाएं थीं। +","ek particular denomination ka hone ke nate uski apni kuchh customs thin. +",8,2 +"Sudhir, run and call Panu Babu. +","सुधीर, तुम दौड़कर जाओ, पानू बाबू को फौरन बुला लाओ। +","sudhir , tum daurakar jao , panu babu ko phauran bula lao. +",8,0 +"a protection against every rebel satan; +","और प्रत्येक सरकश शैतान से सुरक्षित रखने के लिए +","aur pratyek rebel satan se surakshit rakhne ke lie +",6,4 +"Sometimes the Idol of tenderness or affection of Ram makes him think him as his mother and he himself is his son| +","कभी-कभी वह राम को वात्सल्य मूर्ति के रूप में माँ मान लेते हैं और खुद को उनका पुत्र। +","kabhi-kbhi vah ram ko affection idol ke roop men mother man lete hain aur khud ko unka tenderness +",7,1 +"You can see a gleam in their eye. +","और आपको उनकी आँखों में एक चमक दिखेगी। +","aur aapko unki eye men ek gleam dikhegi. +",10,0 +"There are cases in which the constituencies are more than 200 miles away from Lucknow. +","ऐसे भी निर्वाचन-क्षेत्र हैं, जो लखनऊसे दो सौ मीलसे भी ज्यादा दूर हैं। +","aese bhi nirvachan-kshetr hain , jo lakhnoose do more milse bhi jyada door cases +",8,3 +"When it is obvious that the goals cannot be reached, don 't adjust the goals, adjust the action steps. +","जब यह साफ हो कि लक्ष्यों को प्राप्त नहीं किया जा सकता है, तो लक्ष्यों में फेरबदल न करें, बल्कि अपनी प्रयासों में बदलाव करें. +","jab yah saph ho ki goals ko prapt nahin kiya ja sakta hai, to adjust the action n karen, balki apni action steps badlav karen +",8,2 +"citizens have self - organized political protests and +","नागरिकों ने खुद को राजनैतिक विरोधों में आयोजित किया और +","citizens ne khud ko political protests men aayojit kiya aur +",9,2 +"Download in progress. Do you want to save the task? +","डाउनलोड प्रगति में है. क्या आप इस कार्य को सहेजना चाहते हैं? +","download progress men hai kya aap is task ko sahejna chahte hain +",9,0 +"two into forty is twenty times. +","चालीस में दो बीस गुना है। +","forty men do twenty times hai. +",9,2 +"Select the number of horizontal video windows in which to split the video +","वीडियो विभाजित करने के लिए क्षैतिज वीडियो विंडोज़ की संख्या का चुनाव करें +","video vibhajit karne ke lie horizontal video windows ki number ka chunav karen +",8,2 +"Rules for grant of leave to the employees of All India Services due to special disability. +","अखिल भारतीय सेवा के कर्मचारियों को विशेष निशक्तता के कारण छुट्टी देने के लिए नियम। +","akhil bhartiy due to special ko special disability ke grant of leave ke lie niyam. +",7,2 +"And here you'll see Daniel throw this hoop into the air, +","और यहाँ आप देखेंगे डानिएल हूप को ऊपर उड़ाते हुए, +","aur yahan aap throw this hoop ko oopar urate hue, +",5,3 +"In the year 712, Mohammad Bin Kasim, the commander of Persia defeated the King of Sindh. +","सन् 712 में फारस के सेनापति मुहम्मद बिन क़ासिम ने सिन्ध के राजा को हरा दिया । +","year 712 men persia ke commander muhammad bin kasim ne sindh ke king ko hara diya . +",9,2 +"and the reason for that is it 's entirely dark in there - +","और उसका कारण है की वहां धुप्प अंधकार है। +","aur uska reason hai ki vahan dark andhkar hai. +",8,1 +"But there was music in the family. +","लेकिन परिवार का वातावरण संगीतमय था। +","lekin family ka vatavaran sngitamay tha. +",8,4 +"And this is what he ended up concluding that he saw. +","और यह वो था जो उन्होंने निष्कर्ष निकाला कि उन्होंने क्या देखा। +","aur yah vo tha jo unhonne nishkarsh nikala ki ended up concluding +",4,6 +"During this period of his stay in London he visited the Houses of Parliament and heard Gladstone and John Bright speak on the Irish Home Rule. +","लंदन में इस प्रवास के दौरान उन्होंने संसद भवन को देखा और आयरिश होम रूल पर ग्लैडस्टोन और जॉन ब्राइट को भाषण देते हुए सुना. +","london men is period ke dauran unhonne houses home ko dekha aur irish rule rool par gladstone aur john bright ko bhashan dete hue heard +",5,5 +"He said, ‘Indeed you cannot have patience with me! +","उसने कहा, ""तुम मेरे साथ धैर्य न रख सकोगे, +","usne kaha, tum mere sath patience n rakh sakoge, +",8,3 +"“ Could he see you ? ” +","“ क्या उसने तुम्हें देख लिया ? ” +","kya usne tumhen dekh liya +",9,0 +"So We inspired him: “Build the Ark under Our observation and by Our inspiration. And when Our decree comes to pass, and the oven boils over, load into it two pairs of every kind, together with your family, except those of them against whom the word has already been pronounced. And do not speak to me concerning those who did wrong; for they are to be drowned. ” +","तब हमने उसकी ओर प्रकाशना की कि ""हमारी आँखों के सामने और हमारी प्रकाशना के अनुसार नौका बना और फिर जब हमारा आदेश आ जाए और तूफ़ान उमड़ पड़े तो प्रत्येक प्रजाति में से एक-एक जोड़ा उसमें रख ले और अपने लोगों को भी, सिवाय उनके जिनके विरुद्ध पहले फ़ैसला हो चुका है। और अत्याचारियों के विषय में मुझसे बात न करना। वे तो डूबकर रहेंगे +","tab hamne uski or prkashna ki ki oven boils ke samne aur hamari prkashna ke anusar nauka bana aur phir jab hamara aadesh aa jae aur toofan umar pare to pratyek prjati men se ek-ek jora usmen rakh le aur apne logon ko bhi, sivay unke jinke viruddh pahle faisla ho chuka hai. aur atyachariyon ke vishay men mujhse bat n karna. ve to doobakar rahenge +",3,5 +"It is now our duty to produce from their literature some clear testimonies as to this subject and cognate theories of other nations. +","अब उनके (हिन्दुओं के) साहित्य से इस विषय और अन्य जातियों के सजातीय सिद्धांतों के संबंध में कुछ स्पष्ट साक्ष्य प्रस्तुत करना हमारा कर्तव्य हो जाता है. +","ab unke hinduon ke sahity se is vishay aur any subject and cognate siddhanton ke snbndh men kuchh clear testimonies prastut karna hamara kartavy ho jata hai +",8,0 +"But man wishes to do wrong (even) in the time in front of him. +","बल्कि मनुष्य चाहता है कि अपने आगे ढिठाई करता रहे +","balki man wishes hai ki apne aage dhithaee karta rahe +",8,1 +"Honestly - I was the same for a long time. +","मैं भी एक ज़माने मैं अनजान था. +","i bhi ek time i anjan tha +",7,0 +"but whoever goes beyond this is a transgressor; +","तो जो लोग उनके सिवा और के ख़ास्तगार हों तो यही लोग हद से बढ़ जाने वाले हैं +","to jo log unke siva aur ke astgar hon to yahi log transgressor se ba jane vale hain +",4,4 +"We have created the heavens and the earth and all that is between the two in accordance with the requirements of truth and wisdom. The Hour is surely coming. So overlook [their faults] with gracious forgiveness. +","हमने तो आकाशों और धरती को और जो कुछ उनके मध्य है, सोद्देश्य पैदा किया है, और वह क़ियामत की घड़ी तो अनिवार्यतः आनेवाली है। अतः तुम भली प्रकार दरगुज़र (क्षमा) से काम लो +","created the heavens aur dharti ko aur jo kuchh unke madhy hai, soddeshy paida kiya hai, aur vah iyamat ki ghari to anivaryta aanevali hai. ata tum bhali prkar darguzar kshma se kam lo +",4,4 +"Choose the version of the Kolab Server you are using. +","कोलाब संस्करण जो आप इस्तेमाल कर रहे हैं उसे चुनें. +","kolab version jo aap istemal kar rahe hain use server +",5,1 +"this expression, it 's the derivative of y. +","इस अभिव्यक्ति, यह व्युत्पन्न y का है। +","is expression, yah derivative y ka hai. +",8,2 +"But then how to act compassionately if you don't have compassion? +","पर आप सहानुभूति पूर्वक कार्य कैसे करोगे अगर आप में करुणा न हो +","par aap act compassionately kary kaise karoge agar aap men karuna n ho +",7,4 +"We then put him ashore on a plain, and he was sick. +","अन्ततः हमने उसे इस दशा में कि वह निढ़ाल था, साफ़ मैदान में डाल दिया। +","antta hamne use is dasha men ki vah sick tha , plain maidan men dal diya. +",8,3 +"The existing or ongoing projects in the MMP category, being implemented by various Central Ministries, States, and State Departments would be suitably augmented and enhanced to align with the objectives of NeGP. +","एमएमपी श्रेणी में मौजूदा या जारी परियोजनाओं का कार्यान्वायन विभिन्न केंद्रीय मंत्रालयों, राज्यों और राज्यर विभागों द्वारा उचित रूप से बढ़ाया जाएगा तथा इसे एनईजीपी के उद्देश्योंे के साथ मिलने के लिए उन्नात बनाया जाएगा। +","mmp category men maujooda ya ongoing projects ka karyanvayan various central ministries , states aur rajyar departments dvara uchit objectives se baaya jaega tatha ise eneejipi ke uddeshyone ke sath milne ke lie unnat banaya jaega. +",8,2 +"In collaboration with the Small Industries Development Bank of India (SIDBI), financial assistance is provided to set up projects in tiny / small scale industrial sector, service enterprises and also for undertaking expansion, technology upgradation, modernisation and revival of viable sick units in SSI Sector. +","भारतीय लघु उद्योग विकास बैंक (सिडबी) के सहयोग से छोटे/लघु उद्योग और सेवा उद्यम लगाने के साथ ही लघु उद्योगों की रुग्ण इकाइयों के प्रौद्योगिकी उन्नयन, विस्तार और आधुनिकीकरण में वित्तीय सहयोग दिया जाता है +","bhartiy small india development bank sidbi ke collaboration se chhotelghu india aur service udyam lagane ke sath hi small industries ki sick units ke technology upgradation , expansion aur modernisation men financial collaboration diya jata hai +",6,1 +"Round them will be passed a cup of pure wine; +","उनके बीच विशुद्ध पेय का पात्र फिराया जाएगा, +","unke bich pure pey ka passed a cup, +",5,3 +"Indeed in that are signs, and indeed, We are ever testing [Our servants]. +","इसमें शक नहीं कि हसमें (हमारी क़ुदरत की) बहुत सी निशानियाँ हैं और हमको तो बस उनका इम्तिहान लेना मंज़ूर था +","ismen servants nahin ki signs hamari udarat ki bahut si nishaniyan hain aur hamko to bas unka imtihan lena mnzoor tha +",7,0 +"Enable audible notifications when new messages arrive. +","नए संदेश आने पर श्रव्य सूचनाएं सक्षम करें. +","new messages enable par audible notifications saksham karen +",6,1 +"Show disk view 'Type' column on startup +","'प्रकार' स्तंभ को आरंभन पर डिस्क दृश्य दिखाएँ +","column stnbh ko startup par disk show dikhaen +",7,1 +"A muscle that retracts an organ. +","एक पेशी जो किसी अंग का आकुंचन करती है. +","ek peshi jo kisi organ ka aakunchan karti hai +",9,2 +"Look after the vitamins and minerals in your food; +","अपने भोजन में विटामिन एवं मिनरल्स के प्रति सजग रहें. +","apne look men vitamins evn minerals ke prti sajag rahen +",5,1 +"The Skene 's glands is more commonly known as the G - spot. +","स्कीन ग्रन्थियाँ सामान्यतः जी-स्पॉट के रूप में जानी जाती हैं. +","skin granthiyan samanyta ji-spt ke roop men g more hain +",7,3 +"The males die and are absorbed. +","नर कृमि नष्ट होकर अवशोषित कर लिए जाते हैं। +","males krimi nasht hokar avshoshit kar lie jate hain. +",5,7 +"They have to be fired by the spirit of patriotism and a sense of social responsibility. +","उनमें देशभक्ति तथा सामाजिक उत्तरदायित्व का ज़ज्बा जगाने की जरूरत है। +","unmen patriotism tatha social responsibility ka spirit jagane ki jaroorat hai. +",8,3 +"And seek ye out strongholds, that haply ye may last for ever? +","और बड़े बड़े महल तामीर करते हो गोया तुम हमेशा (यहीं) रहोगे' +","aur bare bare mahal tamir karte ho goya tum hamesha yhin rahoge +",5,8 +"And We shall bring hell in front of the disbelievers. +","और उस दिन जहन्नम को इनकार करनेवालों के सामने कर देंगे +","aur us disbelievers hell ko inkar karnevalon ke front kar denge +",5,1 +"The pre-poll phase (registration of voters) and +","मतदान-पूर्व चरण (मतदाताओं का रजिस्ट्रीकरण) तथा +","matdan-poorv phase matdataon ka rajistrikaran tatha +",9,1 +"He worked there with utmost steadfastness and devotion. +","उन्होंने वहॉं रहकर दत्तचित्तता के साथ काम किया। +","unhonne utmost devotion dattchittta ke sath kam kiya. +",6,3 +"People of Ahmedia community do not accept Muhammed as the last prophet and also call themselves the followers of Islam. +","अहमदिय्या समुदाय के लोग मुहम्मद साहब को अन्तिम नबी नहीं मानते हैं और स्वयं को इस्लाम का अनुयायी भी कहते हैं। +","ahamdiyya samuday ke log muhammad sahab ko antim nabi nahin mante hain aur svyn ko followers of islam bhi kahte hain. +",8,1 +"Sending a message with an _ empty subject line +","कोई रिक्त विषय पंक्ति के साथ एक संदेश भेजें (_ e) +","koee empty subject line ke sath ek sndesh bhejen _ e +",7,1 +"Mrs de Leeuw then invited her to teach at a new school at London. +","इसके बाद श्रीमती डा. लीयू ने उसे लंदन के एक नए स्कूल में अध्यापन-कार्य के विए आमंत्रित किया। +","iske bad mrs da liyoo ne use lndan ke ek ne skool men adhyapan-kary ke vie aamntrit kiya. +",8,0 +"The President of India, Shri Pranab Mukherjee will visit Uttar Pradesh (Vrindavan, Mathura) tomorrow (November 18, 2015) where he will inaugurate the 500thyear celebrations of Sri Chaitanya Mahaprabhu’s advent in Vrindavan. He will also visit the Shri Radha Raman Temple. +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (18 नवम्बर, 2015) उत्तर प्रदेश (वृंदावन, मथुरा) की यात्रा करेंगे जहां वह श्री चैतन्य महाप्रभु के वृंदावन आगमन के 500वें वर्ष समारोह का उद्घाटन करेंगे। वह श्री राधा-रमण मंदिर के दर्शन करने भी जाएंगे। +","bharat ke shri pranab mukherjee mukharji kal 18 navambar, 2015 uttar prdesh vrindavan, mathura ki yatra karenge jahan vah shri chaitany mahaprbhu ke vrindavan aagaman ke 500ven varsh samaroh ka udghatan karenge. vah shri radha-raman mndir ke darshan karne bhi jaenge. +",5,8 +"The house around them was settling down into unquiet sleep, but they were both wide awake. +","चारों ओर से उन्हें घेरता हुआ मकान अशान्त निद्रा में सो रहा था, किन्तु वे दोनों जाग रहे थे। +","charon or se unhen gherta huaa makan unquiet sleep men so raha tha, kintu ve wide awake rahe the. +",6,4 +"It assists the government in formulating and implementing policies for national development. +","यह राष्ट्रीय विकास के लिए नीतियों के निर्माण और कार्यान्वयन में सरकार की मदद करती है। +","yah national development ke lie nitiyon ke formulating and implementing men assists the government karti hai. +",7,1 +"such as projections and judgements of others... yes. +","हाँ, जैसे कि दूसरो के बारे में मानसिक कल्पनाएँ और राय। +","such , jaise ki others ke bare men mansik kalpnaen aur ray. +",6,5 +"UPS is below the critical level and this computer is about to shutdown. +","UPS गंभीरता स्तर से नीचे है और यह कंप्यूटर बंद होने के कगार पर है. +","UPS critical star se niche hai aur yah computer shutdown hone ke kagar par hai +",9,1 +"They said, 'Nay, but we found our fathers so doing.' +","उन्होंने कहा, ""नहीं, बल्कि हमने तो अपने बाप-दादा को ऐसा ही करते पाया है।"" +","unhonne kaha , nahin , balki hamne to apne bap-dada ko fathers hi karte paya hai. +",7,2 +"The backend for this address book refused to perform this query.% s +","इस पता पुस्तिका के लिए बैकेंड यह प्रश्न करने से मना किया.% s +","is address pustika ke lie backend yah prashn karne se mana kiya s +",8,0 +"We cannot become what we need to be by remaining what we are +","हम जो हैं वही बने रहकर वह नहीं बन सकते जो कि हम बनना चाहते हैं। +","ham jo hain vahi bane rahakar vah nahin ban sakte jo ki ham banna chahte hain. +",9,0 +"“I feel hesitant, and my tongue does not speak fast, therefore make Haroon also a Noble Messenger. ” +","और (उनके झुठलाने से) मेरा दम रुक जाए और मेरी ज़बान (अच्छी तरह) न चले तो हारुन के पास पैग़ाम भेज दे (कि मेरा साथ दे) +","aur unke jhuthlane se mera dam ruk jae aur meri speak fast tarah n chale to harun ke pas paiam bhej de ki mera sath de +",8,0 +"There are some reserved parking zones for those car who show the orange badge on their windscreen, or you can sometimes park where generally parking is not permitted. < s > You and Your Body (उपयोगी +","संस्थाओं के पते पृष्ठ ३९ पर हैं) कई स्थानों पर पार्किंग स्थान, विशेषकर, उन कारों के लिये रिज़र्व रखे गये हैं जो अपने विंडस्क्रीन पर ओरेंज बैज का प्रगर्शन करते हैं, और आप सीमित समय के लिये उन स्थानों पर भी रूक सकते हैं, प्रायः जहां पार्क करने की अनुमति नहीं हैं। +","snsthaon ke pate prishth ३९ par hain kee sthanon par parking sthan, visheshakar, un karon ke liye rizarv rakhe gaye hain jo apne vindaskrin par orenj baij ka pragarshan karte hain, aur aap simit samay ke liye un sthanon par bhi rook sakte hain, park where generally karne ki anumti nahin hain. +",7,1 +"He said: ” I ask you again to judge the accused by what is before you, on what you have heard in this room and what you have read of his writings. +","उन्होंने कहा ” मैं आपसे दोबारा आग्रह करता हूं कि आपके सामने जो आया है, आपने इस कक्ष में जो सुना है और जो अभियुक्त के लेखों में पढ़ा है, सिर्फ इसी आधार पर अभियुक्त पर फैसला दें. +","unhonne kaha main aapse dobara aagrah karta hoon ki aapke samne jo aaya hai, aapne is kaksh men jo suna hai aur jo abhiyukt ke lekhon men paa hai, sirph isi aadhar par abhiyukt par phaisla den +",7,3 +"When I'm not fighting poverty, I'm fighting fires +","जब मैं गरीबी के खिलाफ नहीं लड़ रहा होता, तब एक स्वयंसेवी +","jab i poverty ke khilaph nahin lar raha hota , tab ek fires +",7,3 +"Payment of property tax, electricity bills and water bills of colonies and office premises bills of vendors +","कालोनियों और कार्यालय परिसरों और प्रधान कार्यालय का संपत्ति कर, बिजली के बिलों, पानी के बिलों और विक्रताओं के बिलों का भुगतान +","colonies aur office premises aur prdhan office ka property kar , electricity ke bills , water ke bills aur vikrtaon ke bills ka payment +",8,4 +"The focus now has to be on implementation of these agreements. +","अब इन समझौतों को अमल में लाने पर ध्यान देना होगा। +","ab in agreements ko amal men lane par dhyan dena hoga. +",7,6 +"Inflammation related to the tissues around the larynx. +","स्वरयंत्र के चारों ओर पाए जाने वाले ऊतक से संबंधी प्रदाह +","larynx ke charon or pae jane vale tissues se snbndhi inflammation +",8,1 +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","vastav men eparchar kal exposure time ko diya gaya vigopan kal hai jo kisi optical system eparchar ke madhyam se chitr satah men kisi kendrbindu par aati hai. +",8,1 +"The phase of cell cycle in which the size of the cell is increase and copy of a DNA is made. +","कोशिका चक्र में चरण जिसमें कोशिका के आकार में वद्धि होती है तथा डीएनए की प्रतिकृति निर्मित होती है +","phase of cell charan jismen koshika ke aakar men vaddhi hoti hai tatha increase and copy nirmit hoti hai +",5,1 +"Badi Maa and Dana Pani were written for Hindi films. +","बडी मॉँ और दाणा पाणी हिन्दी फिल्मों के लिए लिखे गए थे। +","badi mn aur dana pani hindi films ke lie likhe dana the. +",8,0 +"As for those whose deeds weigh light in the scales—it is they who have ruined their souls, because they used to wrong Our signs. +","(और जिनके नेक अमाल के) पल्ले हलके होगें तो उन्हीं लोगों ने हमारी आयत से नाफरमानी करने की वजह से यक़ीनन अपना आप नुक़सान किया +","aur jinke nek amal ke deeds weigh light to unhin logon ne hamari aayat se napharmani karne ki vajah se yainan apna aap nusan kiya +",5,5 +"They also wanted to be treated as equals in a democratic society. +","उन्होंने यह इच्छा भी व्यक्त की कि एक जनतांत्रिक समाज में उनके साथ समानता का व्यवहार हो। +","unhonne yah wanted bhi vyakt ki ki ek democratic society men unke sath samanta ka vyavhar ho. +",8,2 +"List of Governors of Tamil Nadu +","तमिल नाडु के राज्यपालों की सूची +","tamil nadu ke governors ki list +",10,0 +"Once your decisions are known, money can be obtained. +","एक बार आपके निर्णय ज्ञान हो जाने के बाद पैसा प्राप्त किया जा सकेगा। +","ek bar aapke nirnay jnjan ho jane ke bad paisa prapt kiya ja sakega. +",4,7 +"Cannot save to file ""{0}"". +","""{0}"" फ़ाइल में संग्रहित नहीं कर सकता है. +","0 save to file nahin kar sakta hai +",5,0 +"This is how We reward the doers of good. +","मुबारक हम नेकोकारों को ऐसा ही बदला दिया करते हैं +","good ham doers ko aesa hi badla diya karte hain +",6,1 +"It is He who gave you hearing, sight, and hearts, but only few of you give thanks. +","हालाँकि वही वह (मेहरबान खुदा) है जिसने तुम्हारे लिए कान और ऑंखें और दिल पैदा किये (मगर) तुम लोग हो ही बहुत कम शुक्र करने वाले +","halanki hearing vah hearts sight hai jisne tumhare lie kan aur ऑnkhen aur dil paida kiye magar tum log ho hi bahut few shukr karne vale +",7,1 +"A measurement of change in prices. +","कीमतों में परिवर्तन को आंकने का एक पैमाना। +","change in prices ko aankne ka ek paimana. +",9,0 +"No parent could be found in the tree for the path ""% s"" +","कोई जनक ""% s"" पथ के लिए तररू में नहीं मिल सका +","koee parent s path ke lie tree men nahin mil found +",4,5 +"'How well what he described as' my greatest fast 'helped to restore his normal cheer of spirits and good humour can be seen from the letter he dictated for Mira Behn three days later: I am dictating this immediately after the 3. 30 a. m. prayer while I am taking my meal such as a fasting man with prescribed food can take. +","जिसे उन्होंने मेरा सबसे बड़ा व्रत कहा था उसने उनके उल्लासपूर्ण और मनोविनोदी स्वभाव को किस सीमा तक वापस लौटाया, यह उस पत्र से स्पष्ट है जिसे उन्होंने तीन दिन बाद मीरा बहन के लिए लिखवाया थाः मै यह पत्र साढे. तीन बजे की प्रार्थना के फौरन बाद लिखवा रहा हूं जबकि मैं अपना वह भोजन कर रहा हूं जो एक व्रत रखनेवाले व्यक्ति के लिए निर्धारित है। +","jise unhonne mera sabse bara vrat kaha tha usne unke ullaspoorn aur manovinodi svbhav ko kis sima tak vapas lautaya, yah us patr se spasht hai jise unhonne tin din bad mira bahan ke lie likhvaya thaa mai yah patr sadhe tin baje ki prarthna ke phauran bad likhva raha hoon jabki main apna vah bhojan kar raha hoon jo ek vrat rakhnevale vyakti ke lie nirdharit hai. +",7,5 +"And may it run forever, because it gives people like me a living. +","और ये हमेशा चलता रहे , क्योंकि ये मुझ जैसे लोगों को जीविका देती है. +","aur ye people chalta rahe , kyonki ye mujh jaise logon ko living deti hai +",7,2 +"Though a good deal of it has now become redundant or useless, there are seminal ideas in our past culture that can be of, great use in guiding our future. +","यद्यपि इसका एक ख़ासा भाग फ़ालतू या निरर्थक हो गया है, फिर भी हमारी पारम्परिक संस्कृति में कुछ प्रारम्भिक विचार हैं जो हमारे भावी पथ-प्रदर्शन में बहुत उपयोगी हो सकते हैं। +","yadypi iska ek deal good faltoo ya redundant ho gaya hai , phir bhi hamari paramprik culture men kuchh prarambhik ideas hain jo hamare future path-pradarshan men bahut upyogi ho sakte past +",7,1 +"So do not obey the deniers. +","अतः तुम झुठलानेवालों को कहना न मानना +","ata tum obey the deniers n manna +",5,2 +"Say: 'Obey Allah and obey the Messenger. If you turn away, upon him only rests what is laid upon him, and upon you rests what is laid on you. If you obey him, you shall be guided. It is only for the Messenger to deliver a clear message' +","(ऐ रसूल) तुम कह दो कि ख़ुदा की इताअत करो और रसूल की इताअत करो इस पर भी अगर तुम सरताबी करोगे तो बस रसूल पर इतना ही (तबलीग़) वाजिब है जिसके वह ज़िम्मेदार किए गए हैं और जिसके ज़िम्मेदार तुम बनाए गए हो तुम पर वाजिब है और अगर तुम उसकी इताअत करोगे तो हिदायत पाओगे और रसूल पर तो सिर्फ साफ तौर पर (एहकाम का) पहुँचाना फर्ज है +","ae rasool tum kah do ki uda ki itaat karo aur rasool ki itaat karo is par bhi agar tum sartabi karoge to bas rasool par itna hi tabli vajib hai jiske vah zimmedar kie ge hain aur jiske zimmedar tum banae ge ho tum par vajib hai aur agar tum uski itaat karoge to hidayat paoge aur rasool par to sirph saph taur par ehkam ka pahunchana pharj hai +",5,8 +"It provides the fundamental physics basis of nuclear energy development. +","यह मौलिक भौतिकी को न्यूक्लीय ऊर्जा विकास का आधार प्रदान करता है। +","yah fundamental physics ko nuclear energy development ka basis prdan karta hai. +",7,3 +"Transport Policy which includes fiscal concessions, and policy guidelines for rapid development of the mode and to encourage private sector participation in development of infrastructure and ownership and operation of inland vessels. +","इस नीति में अंतर्देशीय जहाजों के संचालन, स्वा मित्व और ढांचागत विकास में निजी क्षेत्र को बढ़ावा देने के लिए कई वित्तीय रियायतें और मार्ग दर्शन मौजूद हैं। +","is policy men transport vessels ke operation , sva ownership aur dhanchagat development men private sector ko baava dene ke lie kee fiscal concessions aur marg darshan maujood guidelines +",8,1 +"This bushy plant is a host in a plant pathosystem. +","यह झाड़ीदार पौधा पादप रोग-तंत्र में एक परपोषी है। +","yah bushy plant padap rog-tntr men ek host hai. +",8,4 +"They distribute agricultural machinery; undertake wholesale, retail and foreign trade. +","यह कृषि यंत्रों, थोक तथा खुदरा बाजार एवं विदेशी व्यापार को भी वितरित एवं नियंत्रित करता है। +","yah agricultural machinery, thok tatha khudra bajar evn foreign trade ko bhi vitrit evn niyntrit karta hai. +",8,1 +"He felt as if the surroundings were embracing him and the sky was within reach. +","उसे ऐसा लग रहा था मानो चारों दिशाएं उसे निविड़ता से घेर रही हों, आकाश मानो उसे छू रहा हो। +","use aesa reach raha tha mano charon dishaen use nivirta se gher rahi hon , sky mano use surroundings raha ho. +",6,4 +"We should view the going of such a person not so much with sorrow, but with gratitude that we had the privilege of knowing her, that we had the privilege of her affection, that we had the privilege of being within her circle of radiance. +","ऐसी विभूति के प्रयाण पर हमें दुखी न होकर कृतज्ञता महसूस करनी चाहिए कि हमने उन्हें जाना, उनका प्यार पाया, उनके व्यक्तित्व के प्रभामंडल में रहने का गौरव प्राप्त किया। +","aesi vibhooti ke pryan par hamen dukhi n hokar kritajnjta mahsoos karni chahie ki hamne unhen jana, unka pyar paya, unke vyaktitv ke prbhamndal men rahne ka gaurav prapt kiya. +",7,4 +"The knife was used by the guide as a weapon. +","गाइड द्वारा एक हथियार के रूप में चाकू का इस्तेमाल किया गया था। +","guide dvara ek weapon ke roop men chakoo ka istemal kiya gaya tha. +",9,1 +"Any one document which provides customer information to the satisfaction of the bank will suffice +","कोई एक ऐसा दस्तावेज काफी होगा, जिसमें बैंक की संतुष्टि के अनुरूप ग्राहक सूचना हो +","koee ek aesa document kaphi hoga , jismen bank ki satisfaction ke anuroop customer information ho +",7,3 +"Doppler radar is generally used in police radar systems and also for measuring the velocity of hurricanes. +","डॉपलर रडार का उपयोग आम तौर पर पुलिस रडार प्रणालियों में किया जाता है, इसके साथ ही इसका इस्तेमाल तूफान के वेग को मापने के लिए भी किया जाता है +","doppler radar ka upyog aam taur par police radar systems men kiya jata hai , iske sath hi iska istemal hurricanes ke velocity ko mapne ke lie bhi kiya jata hai +",9,0 +"In response to popular demand, he would also include his old stage hits in his repertoire. +","जनता की मांग पर उन्होंने अपने पुराने सफल रंगमंच नाटक भी रंगपटल पर सम्मिलित किये। +","popular ki response par unhonne apne old saphal stage natak bhi repertoire par sammilit kiye. +",7,2 +"In a condolence message, the President has said, ""It was with profound sorrow that I learnt of the passing away ofShri Justice V.R. Krishna Iyer. +","राष्ट्रपति ने एक शोक संदेश में कहा है , "" मुझे न्यायमूर्तिश्रीवी आर कृष्ण अय्यर के निधन के बारे में जानकर अत्यंत दुःख हुआ है। +","president ne ek condolence message men kaha hai , i justice profound krishn ayyar ke nidhan ke bare men janakar atynt duakh huaa hai. +",7,0 +"Therefore listen not to the Unbelievers, but strive against them with the utmost strenuousness, with the (Qur 'an). +","अतः इनकार करनेवालों की बात न मानता और इस (क़ुरआन) के द्वारा उनसे जिहाद करो, बड़ा जिहाद! (जी तोड़ कोशिश) +","ata inkar karnevalon ki bat n manta aur is uraan ke dvara unse jihad karo, bara jihad! ji tor koshish +",7,1 +"The amount of commission paid to the broker. +","दलाल को दी जाने वाली कमीशन की राशि। +","broker ko di jane vali amount of commission +",8,1 +"and We lay veils upon their hearts lest they understand it, and in their ears heaviness. And when thou mentionest thy Lord only in the Koran, they turn in their traces in aversion. +","और उनके दिलों पर भी परदे डाल देते है कि वे समझ न सकें। और उनके कानों में बोझ (कि वे सुन न सकें)। और जब तुम क़ुरआन के माध्यम से अपने रब का वर्णन उसे अकेला बताते हुए करते हो तो वे नफ़रत से अपनी पीठ फेरकर चल देते है +","aur unke dilon par bhi lay veils dete hai ki ve samajh n saken. aur unke ears heaviness bojh ki ve thou mentionest thy aur jab tum uraan ke madhyam se apne rab ka varnan use akela batate hue karte ho to ve nafarat se apni pith pherakar chal dete hai +",5,1 +"Move ~ a onto the five of spades. +","~ a को एक हुकुम का पंजा पर ले जाएँ +","a ko ek spades ka pnja par le move +",7,1 +"in that we have way more data that we know what to do with, +","में है कि हम रास्ता अधिक डेटा है कि हम जानते हैं के साथ क्या करना है, +","men hai ki ham way more data hai ki ham jante hain ke sath kya karna hai , +",6,4 +"Failed to get next auto increment value +","अगली स्वतः वृद्धि मूल्य प्राप्ति विफल हुई +","agli auto increment mooly prapti viphal huee +",7,4 +"Under the Act, weight and measures also include 'weighing or measuring instrument' which means ""any object, instrument, apparatus or device, or any combination thereof, which is, or is intended to be, used, exclusively or additionally, for the purpose of making any weighment or measurement, and includes any appliance, accessory or part associated with any such object, instrument, apparatus or device"". +","अधिनियम के अंतर्गत, भार तथा माप में ""भार करने का मापन करने वाला उपकरण"" भी शामिल है जिसका अर्थ है ""कोई भी वस्तु उपकरण, यंत्र या युक्ति या उनका कोई भी संयोजक जिसका प्रयोग से अनन्य रूप से या अतिरिक्त रूप से किया जाता है या किया जाना आशयित है तथा इसमे ऐसी किसी वस्तु, उपकरण, उपस्कर या युक्ति से संबद्ध कोई उपकरण, सहायक सामग्री या पुर्जा शामिल है।"" +","act ke antargat , weight thereof combination men weight karne ka measurement karne vala measures bhi shamil hai jiska arth hai koee bhi object measures , yntr ya yukti ya unka koee bhi snyojak jiska pryog se anany roop se ya atirikt roop se kiya jata hai ya kiya jana aashyit hai thereof isme aesi kisi object , measures , upaskar ya yukti se snbaddh koee measures , accessory samagri ya part shamil hai. +",7,1 +"And whomever We give a long life, We cause him to regress in creation. Then, will they not exercise their reason? +","और हम जिस शख्स को (बहुत) ज्यादा उम्र देते हैं तो उसे ख़िलक़त में उलट (कर बच्चों की तरह मजबूर कर) देते हैं तो क्या वह लोग समझते नहीं +","aur ham jis shakhs ko bhut long life dete hain to use ilat men ulat kar bachchon ki tarah majboor kar dete hain to kya vah log samajhte nahin +",7,1 +"And if their speed is zero, they 'll maintain that restfulness. +","और यदि उनकी गति शून्य है, तो वे उस restfulness को बनाए रखने देंगे। +","aur yadi unki speed shoony hai, to ve us restfulness ko maintain rakhne denge. +",8,1 +"install the standard and TSC pumps +","मानक और टीएससी पंप स्थापित करें +","standard aur tiessi pumps install karen +",7,1 +"Color to use for the bottom color - stop of the skydome - fallback gradient +","स्काइडोम फालबैक ढ़ाल के तलवर्ती रंग स्टॉप के लिए प्रयोग का रंग +","skydome fallback gradient ke talavarti color stp ke lie pryog ka color +",6,1 +"Apply a layer of fine manure +","उत्तम खाद की परत का उपयोग करना +","fine manure ki layer ka upyog karna +",8,2 +"two into forty is twenty times. +","चालीस में दो बीस गुना है। +","chalis men do forty is twenty +",5,1 +"On the Day when you witness it, the suckling woman shall utterly neglect the infant she suckles, and every pregnant woman shall cast her burden, and you will see people as though they are drunk, when they are not drunk; but dreadful shall be Allah 's chastisement. +","जिस दिन तुम उसे देख लोगे तो हर दूध पिलाने वाली (डर के मारे) अपने दूध पीते (बच्चे) को भूल जायेगी और सारी हामला औरते अपने-अपने हमल (बेहिश्त से) गिरा देगी और (घबराहट में) लोग तुझे मतवाले मालूम होंगे हालाँकि वह मतवाले नहीं हैं बल्कि खुदा का अज़ाब बहुत सख्त है कि लोग बदहवास हो रहे हैं +","jis din tum use dekh loge to har doodh pilane vali dar ke mare apne doodh pite bachche ko bhool jayegi aur sari hamla aurte apne-apne hamal behisht se gira degi aur ghabrahat men log tujhe matvale maloom honge halanki vah matvale nahin hain balki khuda ka azab bahut sakht hai ki log badahvas ho rahe hain +",7,3 +"Is it possible for everyone to know one 's true nature? +","क्या हर कोई अपने सच्चे स्वरुप का जान सकता है? +","true possible koee apne sachche nature ka jan sakta hai +",3,0 +"And although , in the short term , the truth has many facets , the long-term truth is only one and unmistakable . +","और अल्पकाल में तो सत्य के कई पहलू हो सकते हैं , दीर्धकालीन सत्य केवल एक और सुस्पष्ट होता है . +","aur short men to truth ke kee facets ho sakte hain , dirdhkalin truth keval ek aur many hota hai +",4,7 +"The midrib which is present in the leaves of small leafy plants. +","पत्ती के केन्द्र जिसके छोटे पत्तेदार पौधों की पत्तियों में मौजूद है। +","leaves ke kendr jiske small leafy plants ki pattiyon men present hai. +",9,1 +"and likewise to cherish my mother; He has not made me arrogant, unprosperous. +","और अपनी माँ का हक़ अदा करनेवाला बनाया। और उसने मुझे सरकश और बेनसीब नहीं बनाया +","aur apni mother ka likewise ada karnevala banaya. aur usne mujhe arrogant aur unprosperous nahin banaya +",6,2 +"The selected audio device was successfully opened but it is impossible to read data from this device. In case it is a pluggable device it may be sufficient to reconnect it. If not, or if it still is not accessible, please check your audio setup. +","चयनित ऑडियो युक्ति सफलतापूर्वक खोला गया लेकिन इस युक्ति से आंकड़ा पढ़ना असंभव है. उस स्थिति में यदि यह एक प्लगेबल युक्ति है यह पर्याप्त होगा इसे फिर कनेक्ट करना. यदि नहीं, या यदि यह अभी भी पहुँच योग्य नहीं है, कृपया अपना ऑडियो सेटअप जाँचें. +","selected audio device successfully opened gaya lekin is device se read data asnbhav hai us sthiti men yadi yah ek plgebal device hai yah paryapt hoga ise phir kanekt karna yadi nahin, ya yadi yah abhi bhi pahunch yogy nahin hai, kripya apna ऑdiyo setap janchen +",5,3 +"So, when you are free, strive hard, +","अतः जब निवृत हो तो परिश्रम में लग जाओ, +","ata jab free ho to strive hard lag jao, +",7,0 +"Dinkar looked at them suspiciously. +","दिनकर उनकी तरफ शंका से देखा। +","dinkar unki taraph shnka se dekha. +",9,0 +"Open this bookmark in a new window +","इस पुस्तकचिह्न को नए विंडो में खोलें +","is bookmark ko new window men kholen +",9,2 +"“ But , above all , I learned that these things are all so simple that they could be written on the surface of an emerald . ” +","“ मगर इस सबसे ज्यादा मैंने यह सीखा कि ये सब चीजें इतनी सरल हैं कि इन्हें नगीने की सतह पर भी लिखा जा सकता है । +","magar is sabse things i yah sikha ki ye sab chijen itni simple hain ki inhen emerald ki surface par bhi likha ja sakta hai . +",7,3 +"National Rail Museum, New Delhi +","राष्ट्रीय रेल संग्रहालय, नई दिल्ली +","national rail museum , new delhi +",5,8 +"Bring me sheets of iron ""- until, when he had leveled [them] between the two mountain walls, he said,"" Blow [with bellows], ""until when he had made it [like] fire, he said,"" Bring me, that I may pour over it molten copper. "" +","(अच्छा तो) मुझे (कहीं से) लोहे की सिले ला दो (चुनान्चे वह लोग) लाए और एक बड़ी दीवार बनाई यहाँ तक कि जब दोनो कंगूरो के दरमेयान (दीवार) को बुलन्द करके उनको बराबर कर दिया तो उनको हुक्म दिया कि इसके गिर्द आग लगाकर धौको यहां तक उसको (धौंकते-धौंकते) लाल अंगारा बना दिया +","achchha to mujhe khin se lohe ki sile la do chunanche vah log lae aur ek bari divar banaee yahan tak ki jab dono sheets of iron divar ko buland karke unko barabar kar diya to unko hukm diya ki iske gird aag lagakar dhauko yahan tak usko dhaunkte-dhaunkte lal angara bana diya +",5,4 +"For 5to 6days Suddodhana arranged a programme for naming ceremony and appointed 8 brahmin pandits to tell about the future. +","सुधोधना ने पांचवें दिन एक नामकरण समारोह आयोजित किया और आठ ब्राह्मण विद्वानों को भविष्य पढ़ने के लिए आमंत्रित किया। +","sudhodhna ne panchven din ek naming ceremony aayojit kiya aur aath brahmin pandits ko bhavishy pane ke lie aamntrit kiya. +",8,1 +"Then he will take a look and sight him in the middle of hell. +","तो क्या तुम लोग भी (मेरे साथ उसे झांक कर देखोगे) ग़रज़ झाँका तो उसे बीच जहन्नुम में (पड़ा हुआ) देखा +","to kya tum log bhi mere sath use jhank kar dekhoge raz jhanka to use middle of hell para huaa dekha +",8,2 +"Jute plants need a temperature ranging from 21 to 38 degrees Celsius and relative humidity of 70 to 80 per cent. +","पटसन के पौधों को 21 से 38 डिग्री सेलसियस तापमान तथा 70 से 80 प्रतिशत सापेक्ष आर्द्रता की जरूरत पड़ती हैं। +","patasan ke paudhon ko 21 se 38 digri selsiyas tapman tatha 70 se 80 prtishat sapeksh aardrta ki jaroorat parti hain. +",8,1 +"16. Pitchblende and other uranium ores. +","16. पिचब्लेंड और अन्य यूरेनियम अयस्क। +","16 pichablend aur any uranium ayask. +",8,4 +"By contrast , one LSD trip might result in psychological damage to somebody with latent mental illness . +","इसके विपरीत एलएसडी का एक ही बार दम लगाने से किसी प्रच्छन्न दिमाग़ी रोग वाले व्यक्ति को मनोवैग्यानिक हानि पहुँचने की संभावना हो सकती है । +","iske contrast lsd ka ek hi bar dam lagane se kisi latent trip illness vale vyakti ko manovaigyanik damage pahunchne ki snbhavna ho sakti hai . +",7,4 +"Committee on Health and Family Welfare: +","स्वास्थ्य और परिवार कल्याण संबंधी समितिः +","health aur family welfare committee samitia +",8,2 +"(a) the provisions of any existing law; or +","(क) किसी वर्तमान विधि के उपबंधों पर, अथवा +","provisions kisi vartman law ke upbndhon par , athva +",7,1 +"Now who will take rebukes on my behalf. +",", अब वहाँ मेरे स्थान पर कौन झिड़किए खायेगा? +",", ab vahan mere sthan par kaun jhirkie khayega +",10,0 +"For this reason also I am unable to uphold the contention of the said plea being not available to the plaintiff. +","इस कारण से भी मैं कथित अभिवाक़ के वादी के लिए उपलब्ध न होने के तर्क का समर्थन करने में असमर्थ हूँ. +","is reason se bhi main kathit abhiva ke plaintiff ke lie available n hone ke contention ka samarthan karne men unable hoon +",8,1 +"that could be created by things like cosmic rays, +","जो ब्रह्माण्डीय किरणो जैसी चीज के कारण होता है, +","jo things rays jaisi chij ke karan hota hai , +",7,1 +"Agriculture is mainly done to meet the food requirement of the family and livestock. +","खेती मुख्य रूप से परिवार तथा पशुओं की भोजन आवश्यकताओं के लिए की जाती है। +","kheti mukhy roop se family and livestock ki food requirement ke lie ki jati hai. +",9,1 +"I realized that I was no longer the same runner I used to be, +","मुझे एहसास हुआ कि मैं वो धावक नहीं थी जो मैं हुआ करती थी, +","mujhe realized huaa ki main vo longer nahin thi jo main huaa karti thi, +",7,2 +"Could not start% 1 application. +","अनुप्रयोग% 1 चला नहीं सका. +","anupryog 1 chala nahin saka +",7,6 +"The midrib which is present in the leaves of small leafy plants. +","पत्ती के केन्द्र जिसके छोटे पत्तेदार पौधों की पत्तियों में मौजूद है। +","patti ke kendr jiske small leafy plants ki pattiyon leaves of small +",7,0 +"A revelation from the Beneficent, the Merciful Allah: +","यह अवतरण है बड़े कृपाशील, अत्यन्त दयावान की ओर से, +","yah revelation hai bare beneficent , atyant dayavan ki or se , +",8,3 +"The period of heat in ewes lasts from 3 to 70 hours , with an average of 27 hours . +","भेड़ें 3 से 70 घण्टे तक गर्मी में रहती हैं.गर्मी की औसत अवधि 27 घण्टे होती है . +","ewes 3 se 70 lasts tak heat men rahti haingarmi ki average period 27 lasts hoti hai +",6,1 +"The human and the divine, love of nature and of man, intuition and thought so mingle and interpenetrate in his consciousness that in his poetry, as in actual life, it is difficult to separate one from the other. +","मानवीय और दैवी, नैसर्गिक प्रेम और मानव-प्रेम, आत्म-बोध और विचार परस्पर उनकी चेतना में ठीक उसी प्रकार घुल-मिल जाते हैं जैसे कि उनके निजी जीवन में, और इन्हें एक-दूसरे से विलग करना कठिन हो जाता है। +","human aur divine , naisargik love aur manav-prem , aatm-bodh aur other paraspar unki consciousness men man usi nature ghul-mil actual hain jaise ki unke niji life men , aur inhen ek-doosre se vilag karna difficult ho jata poetry +",7,5 +"And in this state, he is married and brings home a wife. +","इसी हालत मके उसका विवाह हो जाता है और पत्नी घर में ले आता है। +","isi state make uska married ho jata hai aur wife ghar men le aata hai. +",7,0 +"Desai say this story is not suitable to him who frighted and win with died in real life why should i killed him in film. +","देसाई ने इनके बारे में कहा था कि ऐसे आदमी के लिए यह कहना बिल्कुल अनुपयुक्त होगा कि जो असली जीवन में मौत से लड़कर जीता हो उसे परदे पर मौत अपना ग्रास बना ले। +","desaee ne inke bare men kaha tha ki aese aadmi ke lie yah kahna bilkul anupyukt hoga ki jo asli jivan men maut se larakar jita ho use parde par maut apna gras bana le. +",4,6 +"The First T-10 Tournament of the Rashtrapati Bhavan was won by Household Royals led by Meher Chand and Runners up was PBG Chargers led by Major Amit Bharadwaj. +","राष्ट्रपति भवन का पहला टी-10 टूर्नामेंट मेहरचंद के नेतृत्व में हाउस होल्ड रॉयल्स ने जीता तथा उप-विजेता टीम मेजर अमित भारद्वाज के नेतृत्व में पी बी जी चारजर्स रही। +","rashtrapti bhavan ka pahla ti-10 toornament meharchnd ke netritv men haus hold ryals ne jita tatha up-vijeta tim mejar amit bharadvaj ke netritv men pi bi ji charajars rahi. +",9,2 +"This group traveled in two ships to reach Jeddah in year 1577 and left for Mecca and Madina. +","ये जत्था दो पोतों में सूरत से जेद्दाह बंदरगाह पर १५७७ में पहुंचा और मक्का और मदीना को अग्रसर हुआ। +","ye group do ships men soorat se jeddah bndargah par year men pahuncha aur mecca aur madina ko agrasar huaa. +",8,3 +"I think it starts household by household, under the same roof. +","मैं सोचती हूँ यह घर से शुरू होती है, एक ही छत के नीचे। +","i household same yah ghar se shuroo hoti hai , ek hi roof ke niche. +",7,1 +"During sunset Puksi region of Shanghai- Sun is still not under the horizon but has reached the line of dense smog. +","सूर्यास्त के समय शंघाई का पुक्सी क्षेत्र अब तक सूरज अपने क्षितिज के नीचे तक नहीं डूबा है बल्कि यह धुंध (smog) की रेखा तक पहुँच गया है. +","sooryast ke samay shnghaee ka puksi region ab tak sun apne horizon ke niche tak nahin smog hai balki yah dhundh dense ki rekha tak pahunch gaya hai +",6,3 +"when the earth shall be rocked +","जब धरती थरथराकर काँप उठेगी; +","jab earth tharathrakar kanp uthegi +",9,1 +"The cow is worshipped as a holy animal . +","गाय बड़ी पवित्र तथा पुज़्य मानी जाती है . +","gay bari cow is worshipped mani jati hai +",6,5 +"Eyes: Spitting cobras can actually eject their venom quite accurately into the eyes of their victims, resulting in direct eye pain and damage. +","आंख-थूकनेवाले कोबरा अक्सर अपने शिकार की आंखों में विष थूक देते हैं, जिससे आंखें क्षतिग्रस्त हो सकती हैं या उनमें दर्द हो सकता है। +","venom quite accurately apne direct eye pain men vish thook dete hain, jisse aankhen kshtigrast ho sakti hain ya unmen dard ho sakta hai. +",4,5 +"In the last Conference of Vice Chancellors, we took a number of decisions. +","कुलपतियों के विगत सम्मेलन में, हमने अनेक निर्णय लिए। +","vice ke last conference men , hamne number decisions lie. +",6,0 +"Tall table, tall chairs! Well, I haven 't made them yet. +","लंबी मेज, लंबी कुर्सियां! खैर, मैंने इन्हें अभी तक पूरा नहीं किया है. +","tall table, tall chairs! khair, haven inhen abhi tak poora nahin kiya hai +",7,3 +"Another sensible approach would be to prevent the mast cells from exploding and the subsequent release of histamine. +","दूसरा उपाय यह है कि मास्ट कोशिकाओं से हिस्टामीन निकलने ही न दिया जाये। +","doosra approach yah hai ki mast cells se histamin nikalne hi n diya jaye. +",9,0 +"Further, requests for changes or correction in PAN data or a request for a newPAN card (for an existing PAN) may also be made through the Internet. +","। इसके अतिरिक्तक पैन डाटा में परिवर्तन या सुधार के लिए अनुरोध या नए पैन कार्ड के लिए अनुरोध (मौजूदा पैन के लिए) भी इंटरनेट के माध्यपम से किया जा सकता है। +",". iske atiriktak pain pan data parivartan ya sudhar ke lie anurodh ya ne pain kard ke lie anurodh maujooda pain ke lie bhi intarnet ke madhyapam se kiya ja sakta hai. +",6,4 +"He was appreciated a lot for his role opposite Rajesh Khanna and Rekha and he also got Filmfare award for best supporting actor. +","राजेश खन्ना और रेखा के विपरीत इनकी सहायक भूमिका में इन्हें बेहद सराहा गया और इन्हें सर्वश्रेष्ठ सहायक कलाकार का फिल्मफेयर पुरस्कार दिया गया। +","supporting actor aur rekha ke viprit inki sahayak bhoomika men inhen behad saraha gaya aur inhen sarvashreshth sahayak kalakar ka philmpheyar puraskar diya gaya. +",6,2 +"My devotees! no fear shall be on you that Day, nor shall ye grieve, - +","""ऐ मेरे बन्दों! आज न तुम्हें कोई भय है और न तुम शोकाकुल होगे।""- +","ae mere bandon! aaj n tumhen koee bhay hai aur n tum grieve hoge.- +",8,3 +"Those are the verses of the clear Book. +","ये वाज़ेए व रौशन किताब की आयतें है +","ye verses v raushan book ki aayten hai +",7,1 +"All his reviews are based on this criterion and hence do not go further than assessing the thought and discussing the language. +","उनकी समीक्षायें इन्हीं मापदण्डों पर आधारित होती हैं, अतः वह विचारों के मूल्यांकन और भाषा की चर्चा से आगे नहीं बढ़ पाते। +","unki samikshayen inhin mapadandon par aadharit hoti hain, ata vah assessing the thought aur discussing the language se aage nahin ba pate. +",6,3 +"A sliding Vicryl noose is used in postoperative suture adjustment of extraocular muscles. +","खिसकने वाली विक्राइल फंदे का प्रयोग शल्यक्रिया के बाद नेत्रेतर मांसपेशियों की सीवन के समन्वयन हेतु किया जाता है। +","khisakne vali vikrail phnde ka pryog shalyakriya ke bad netretar manspeshiyon ki sivan ke samanvayan hetu kiya jata hai. +",6,4 +"“ Look ! ” he said . +","“ देखो ! ” उसने कहा । +","look ! s usne kaha . +",9,1 +"He said, ""My Lord, indeed I fear that they will deny me +","मूसा ने अर्ज़ कि परवरदिगार मैं डरता हूँ कि (मुबादा) वह लोग मुझे झुठला दे +","lord ne arz ki paravardigar i darta hoon ki mubada vah log mujhe jhuthla de +",6,2 +"Sending a message with an _ empty subject line +","कोई रिक्त विषय पंक्ति के साथ एक संदेश भेजें (_ e) +","koee empty subject line ke sath ek message bhejen _ e +",9,1 +"The artist in him, too, looked for fresh pastures and newer modes of expression. +","उनमें बैठा कलाकार भी, ताजी दूब वाले चरागाहों में विचरण करता और अभिव्यक्ति के अभिन्न क्षेत्रों की तलाश में रहता था. +","unmen baitha kalakar bhi, taji pastures and newer men vicharan karta aur abhivyakti ke abhinn kshetron ki talash men rahta tha +",8,2 +"Two kinds of poultry feed may be prepared. +","दो तरह के मुर्गी चारे तैयार किए जा सकते हैं। +","do tarah ke poultry feed taiyar kie ja sakte hain. +",9,0 +"The benevolent aspects of treating the labour. +","जब श्रम के मानवीय पक्षों पर विचार किया जाता हो। +","jab labour ke benevolent aspects par vichar kiya jata ho. +",10,0 +"Truly, to Us is their return; +","बेशक उनको हमारी तरफ़ लौट कर आना है +","beshak unko hamari taraf laut kar aana hai +",9,1 +"and it re-condenses in the other side. +","और वह फिर दूसरे पक्ष में गाढ़ी हो जाती है +","aur vah phir doosre side men gai ho other hai +",6,3 +"Yet his novel could not attain perfect fusion of content and form. +","फिर भी उनके उपन्यास में विषय वस्तु और रूपविधान की दृष्टि से तालमेल नहीं रह सका। +","phir bhi unke upanyas men vishay content and form ki drishti se talmel nahin rah saka. +",8,1 +"for example, in this case, +","उदाहरण के तौर पर, यहाँ, +","example ke taur par , yahan , +",9,2 +"Beside these, the Peepal tree, Banana tree and Bilva have been also placed in appropriate locations in the Vatika bringing the total to 51 trees/plants. +","इनके अलावा, पीपल वृक्ष, केला वृक्ष तथा बिल्व भी वाटिका के उपयुक्त स्थलों पर लगाए गए हैं जिससे कुल 51 वृक्ष/पौधे हो गए हैं। +","inke alava , peepal tree , banana tree tatha bilva bhi vatika ke appropriate sthlon par lagae ge hain jisse kul total vrikshpaudhe ho ge hain. +",8,4 +"Poor labour - management relationship and associated low workers' morale and low productivity, strikes, lockouts, etc. +","खराब श्रम प्रबंधन संबंध और कर्मचारियों का सहबद्ध मनोबल कम होना तथा कम उत्पादकता, हड़तालें, तालाबंदियां इत्या दि। +","kharab shram management relationship aur workers ka sahabaddh morale poor hona tatha poor productivity , strikes , talabndiyan itya di. +",7,3 +"A drainage basin is an extent of land. +","मैले की द्रोणी जमीन के अंत में होती है। +","maile ki basin extent of land men hoti hai. +",7,5 +"The centrally governed parts of land are called union territories +","केन्द्रीय प्रशासित भू-भागों को संघराज्य क्षेत्र कहा जाता है। +","union governed bhoo-bhagon ko territories land kaha jata parts +",6,2 +"Application of mud to all part of the body. +","शरीर के सभी हिस्सों पर कीचड़ का आलेपन +","body ke sabhi part par application ka aalepan +",7,1 +"It is indeed a matter of introspection as to how, despite availability of agricultural labour and sizeable arable land, notwithstanding some decline in Asia, many Asian and African countries have witnessed spiralling food prices. +","इस बात पर वास्तव में आत्ममंथन की जरूरत है कि कृषि श्रमिकों तथा विशाल आकार में खेती योग्य भूमि, एशिया में कुछ कमी आने के बावजूद, के बाद भी बहुत से एशियाई और अफ्रीकी देशों में खाद्यान्न की कीमतों में अत्यधिक वृद्धि कैसे हुई है। +","is bat par matter of introspection ki jaroorat hai ki krishi shrmikon tatha vishal aakar men kheti yogy bhoomi, eshiya men kuchh kami aane ke bavjood, ke bad bhi bahut se eshiyaee aur aphriki deshon men khadyann ki kimton men atydhik vriddhi kaise huee hai. +",6,5 +"I have one climate crisis; +","मैं पास एक जलवायु संकट है +","i pas ek climate crisis hai +",7,0 +"They said, ""By Allah, certainly has Allah preferred you over us, and indeed, we have been sinners."" +","उन्होंने कहा, ""अल्लाह की क़सम! आपको अल्लाह ने हमारे मुक़ाबले में पसन्द किया और निश्चय ही चूक तो हमसे हुई।"" +","unhonne kaha , allah ki sinners ! aapko allah ne hamare muable men pasand kiya aur nishchay hi chook to hamse huee. +",8,1 +"The same word or signal, therefore, should always be used for the particular response desired. +","इसलिए इच्छित अनुक्रिया के लिए सदा ही एक शब्द अथवा संकेत का इस्तेमाल किया जाना चाहिए। +","islie ichchhit response ke lie sada hi ek word athva signal ka same kiya jana chahie. +",8,1 +"A rule that elaborates equality in value. +","ऐसा नियम जो मूल्य में समानता की व्याख्या करता हो। +","aesa rule jo value men equality ki vyakhya karta ho. +",8,3 +"He added that HE had expressed by telegram and letter in emphatic terms his complete confidence in me but that the days when this would be enough were over. 10. +","गवर्नर-जनरल ने यह भी कहा कि निजाम ने तार द्वारा जोरदार शब्दों में मुझ पर संपूर्ण विश्वास वयक्त किया है, परन्तु वे दिन चले गये जब इतना कहना काफी हो सकता था। +","gavarnar-janaral ne yah bhi kaha ki nijam ne telegram dvara jordar terms men mujh par complete confidence vayakt kiya hai , parantu ve letter chale gaye jab enough kahna kaphi ho sakta tha. +",7,4 +"that the amount - - as my best sense of it - - is that the +","मेरे लिए सबसे सही-- यह है +","mere lie sabse sahi-- yah hai +",10,0 +"Yes, if either of the parties want an adjournment of hearing, they should make an application in writing to the Exchange giving reasons for seeking adjournment to the Exchange in advance to enable the Exchange to forward such request to the arbitrator. +","हां, यदि दोनों में से कोई भी एक पक्ष सुनवाई का स्थगन चाहता है तो उन्हें स्थगन मांगने के कारणों को बताते हुए एक्सचेंज के पास अग्रिम रूप से एक आवेदन करना चाहिए जिससे कि एक्सचेंज ऐसे अनुरोध को आर्बिट्रेटर को भेज सके। +","han , yadi donon men se koee bhi ek parties hearing ka adjournment chahta hai to unhen adjournment mangne ke reasons ko batate hue exchange ke pas advance roop se ek application karna chahie jisse ki exchange aese anurodh ko arbitrator ko bhej sake. +",8,2 +"You need to log on to your account to take a printout of your admit card carrying your photograph. +","इसके लिए आपको आपके एकाउंट में लॉगइन करना होगा जिससे कि आप अपने फोटोयुक्त प्रवेश कार्ड के प्रिंट आउट ले सकें। +","iske lie aapko aapke ekaunt men lgin karna hoga jisse ki aap apne photoyukt prvesh kard ke print aaut le saken. +",4,6 +"He said: ""I do not want India to be a country in which millions of people say ""yes” to one man, I want a strong opposition.” +","उन्होंने कहा था :‘‘मैं नहीं चाहता कि भारत ऐसा देश बने जहां लाखों लोग एक व्यक्ति की‘हां’में हां मिलाएं, मैं एक मजबूत विपक्ष चाहता हूं।’’ +","unhonne kaha tha :main nahin chahta ki bharat aesa desh bane millions of people ek vyakti kihanmen han milaen, main ek majboot vipaksh chahta hoon. +",8,1 +"the order of left to right is using to keep close broken words. +","दायें-से-बायें क्रम का उपयोग तुकान्त शब्दों को पास-पास लाने के लिया किया जाता है। +","dayen-se-bayen order ka upyog broken words ko pas-pas lane ke liya kiya left hai. +",9,1 +"Folder% 1 already exists.% 2 may become owner and permissions may change. Do you really want to use% 3? +","फ़ोल्डर% 1 पहले ही मौजूद है.% 2 मालिक बन सकता है और अनुमतियाँ बदल सकती हैं. क्या आप सचमुच% 3 का इस्तेमाल करना चाहते हैं? +","folder 1 pahle hi exists hai 2 owner ban sakta hai aur permissions may change hain kya aap sachmuch 3 ka istemal karna chahte hain +",7,2 +"Place the king of hearts next to the queen of hearts. +","लाल पान की बेगम के बगल में लाल पान के वादशाह को रखें. +","place hearts ki queen ke bagal men place hearts ke king ko rakhen +",7,2 +"Before an action or occurrence took place. +","एक क्रिया या घटना होने के पहले +","ek occurrence took place hone ke pahle +",6,4 +"Set the directory where to store temporary files +","निर्देशिका सेट करें जहाँ अस्थायी फाइल जमा करना है +","directory set karen jahan store temporary files karna hai +",6,1 +"They were compelled to pay many illegal dues and cesses and were often required to perform forced labour or begar . +","उन्हें न केवल बहुत से गैरकानूनी कर और महसूल देने को मजबूर किया जाता बल्कि उनसे बेगार भी करायी जाती थी . +","unhen n keval bahut se illegal kar aur many dene ko majboor kiya jata balki unse begar bhi karayi jati thi +",8,2 +"Label comet names in the sky map? +","आकाश नक्शे पर धूमकेतुओं पर लेबल लगाएँ? +","sky map par dhoomketuon par label lagaen +",9,1 +"Awareness among farmers on practices and techniques of SRI should be generated, as it involves change of practices, compared to conventional method. +","किसानों के बीच श्री की रीतियों एवं तकनीकों के बारे में जागरूकता पैदा की जानी चाहिए, क्योंकि उसमें परम्परागत विधि की तुलना में पद्धतियों में बदलाव हो जाता है, +","awareness among farmers shri ki ritiyon evn taknikon ke bare men jagrookta paida ki jani chahie, kyonki usmen parampragat vidhi ki tulna men change of practices ho jata hai, +",7,2 +"Yet they say: ""When will this decree come, if you speak the truth?"" +","वे कहते है कि ""यह फ़ैसला कब होगा, यदि तुम सच्चे हो?"" +","ve kahte hai ki yah decree come truth , yadi tum sachche ho +",5,1 +"It 's easy on synthetic data, yeah. +","यह हाँ पर सिंथेटिक डेटा, आसान है। +","yah yeah par synthetic data, easy hai. +",7,4 +"It will act as a platform where novel ideas are nurtured and innovators mentored to develop new products. +","यह एक ऐसे मंच के रूप में कार्य करेगा जहां नवीन विचारों को प्रोत्साहन मिलेगा और नए उत्पादों के विकास के लिए नवान्वेषकों को प्रोत्साहित किया जाएगा। +","yah ek aese mnch ke roop men kary karega jahan navin vicharon ko protsahan milega aur ne utpadon ke vikas ke lie navanveshkon ko protsahit kiya jaega. +",4,7 +"The lightning almost snatches their sight away. Whenever it illuminates for them, they walk in it; but when it grows dark over them, they stand still. Had God willed, He could have taken away their hearing and their sight. God is capable of everything. +","क़रीब है कि बिजली उनकी ऑंखों को चौन्धिया दे जब उनके आगे बिजली चमकी तो उस रौशनी में चल खड़े हुए और जब उन पर अंधेरा छा गया तो (ठिठके के) खड़े हो गए और खुदा चाहता तो यूँ भी उनके देखने और सुनने की कूवतें छीन लेता बेशक खुदा हर चीज़ पर क़ादिर है +","rib hai ki bijli unki lightning almost snatches de jab unke aage bijli chamki to us raushni men chal khare hue aur jab un par andhera chha gaya to thithke ke khare ho ge aur khuda chahta to yoon bhi unke dekhne aur sunne ki koovten chhin leta beshak khuda har chiz par adir hai +",3,5 +"Bug Buddy is not installed. +","बग बड्डी संस्थापित नहीं है. +","bag buddy installed nahin hai +",9,0 +"Dalhousie wrote his famous minutes on railways in 1853, envisaging a general system for the whole country, and setting out general principles of management, finance and construction. +","डलहौजी ने अपना प्रसिद्ध रेलवे वक़्तव्य सन् 1853 में जारी किया जिसमें उन्होंने पूरे देश के लिए एक ही सामान्य प्रणाली की सिफारिश की और जिसमें व्यवस्था वित्त और निर्माण के सामान्य सिद्धांत भी प्रतिपादित किये. +","dalhauji ne apna prsiddh relve vatavy san 1853 men jari kiya jismen unhonne poore desh ke lie ek hi samany prnali ki sipharish ki aur jismen vyavastha vitt aur nirman ke samany siddhant bhi prtipadit kiye +",8,0 +"And their eyes spoke of death. +","उनकी आंखें मौत का संदेश दे रही थीं। +","unki eyes death ka sndesh de rahi thin. +",9,1 +"A manual switch on the control panel by means of which a bit may be entered in a processor register. +","कंट्रोल पैनल में मैनुअल स्विच, जिसके द्वारा एक बिट प्रोसेसर रजिस्टर में प्रविष्ट कर सकता है. +","control panel men manual switch , means dvara ek bit processor register men prvisht kar sakta hai +",8,0 +"He needed to authenticate the documents with signature. +","उसे दस्तावेज़ों को हस्ताक्षर द्वारा अधिप्रमाणित करने की आवश्यकता थी। +","use documents with signature dvara authenticate karne ki aavashyakta thi. +",8,4 +"Could not open file:% s:% s +","फ़ाइल को खोल नहीं सकाः% s:% s +","fail ko khol nahin sakaa file : file +",4,3 +"ODD (2) returns 3 +","ODD (2) का परिणाम होगा 3 +","ODD 2 ka returns hoga 3 +",8,1 +"We must learn international languages to communicate and widen our horizon. +","हमें अपने क्षितिज का विस्तार करने और व्यापार संचार के लिए अंतर्राष्ट्रीय भाषाएं पढनी ही चाहिए। +","widen our horizon ka vistar karne aur vyapar snchar ke lie international languages padhni hi chahie. +",6,4 +"The pre-poll phase (registration of voters) and +","मतदान-पूर्व चरण (मतदाताओं का रजिस्ट्रीकरण) तथा +","matdan-poorv phase voters ka registration tatha +",9,1 +"When it is legal act by illegal means over act is necessary. +","जब अवैध तरीकों से कानूनी कार्रवाई की गयी है तब यह अधिनियम आवश्यक है. +","jab avaidh tarikon se legal act ki gayi hai tab yah adhiniyam aavashyak hai +",10,0 +"You shall not attain righteousness until you spend out of what you love (in the way of Allah). Allah knows whatever you spend. +","तुम नेकी और वफ़ादारी के दर्जे को नहीं पहुँच सकते, जब तक कि उन चीज़ो को (अल्लाह के मार्ग में) ख़र्च न करो, जो तुम्हें प्रिय है। और जो चीज़ भी तुम ख़र्च करोगे, निश्चय ही अल्लाह को उसका ज्ञान होगा +","tum righteousness aur vafadari ke darje ko nahin pahunch sakte , jab tak ki un chizo ko allah ke way men rch n karo , jo tumhen priy hai. aur jo chiz bhi tum rch karoge , nishchay hi allah ko uska jnjan hoga +",7,1 +"In old Tamil literature also one comes across the murasu quite often . +","प्राचीन तमिल साहित्य में मुरसु का भी कई जगह उल्लेख हुआ है . +","prachin tamil literature men mursu ka bhi kee jagah ullekh huaa hai +",9,2 +"'. After the 25th, Prem Chand did not have good sleep. +","25 की रात के बाद ठीक से कभी सो न सके। +","sleep ki good ke bad thik se kabhi so n sake. +",4,0 +"He also recalled the insinuation made the other day by Haran about Binoy. +","विनय के बारे में हारान बाबू उस दिन जो इशारा कर गये थे, वह भी उन्हें याद आया। +","binoy ke bare men haran baboo us day jo insinuation kar gaye the , vah bhi unhen other aaya. +",8,1 +"And never [O Muhammad] pray for one of them who dies, nor stand by his grave. For they denied God and His Messenger, and died rebellious. +","औऱ उनमें से जिस किसी व्यक्ति की मृत्यु हो उसकी जनाज़े की नमाज़ कभी न पढ़ना और न कभी उसकी क़ब्र पर खड़े होना। उन्होंने तो अल्लाह और उसके रसूल के साथ कुफ़्र किया और मरे इस दशा में कि अवज्ञाकारी थे +","au unmen se jis kisi vyakti ki pray ho god janaze ki stand kabhi n pana aur n kabhi god br par khare hona. unhonne to messenger aur uske rasool ke sath kufr kiya aur mare is dasha men ki rebellious the +",8,0 +"The almost insoluble dilemma is that they benefit not only the ordinary citizen who occasionally finds himself in the coils of the law but the professional criminal who by long experience has learned to take advantage of all its defences. +","एक लगभग उपचारहीन दुविधा यह है कि इनका लाभ केवल उन साधारण नागरिकों को ही नहीं मिलता जो यदाकदा विधि के शिकंजे में फंस जाते हैं बल्कि उन पेशेवर अपराधियों को भी मिलता है जिन्होंने दीर्घ अनुभव से सभी प्रतिरक्षाओं का लाभ उठाने का गुर सीख लिया +","ek citizen who occasionally yah hai ki inka labh keval un ordinary citizen ko hi nahin milta jo yadakda vidhi ke shiknje men phns jate hain balki un peshevar apradhiyon ko bhi milta hai jinhonne dirgh anubhav se sabhi prtirakshaon ka labh uthane ka gur sikh liya +",5,5 +"Why welding and why not computers? +","झाल लगाना की क्यों, कंप्यूटर क्यों नहीं? +","welding lagana ki kyon , computers kyon nahin +",8,1 +"Now, a simple way for you to start +","अब, तुम शुरू करने के लिए एक सरल तरीका +","ab, tum start karne ke lie ek simple tarika +",10,0 +"""So we led you astray because we were ourselves astray."" +","हम खुद गुमराह थे तो तुम को भी गुमराह किया +","ham khud astray the to tum ko bhi astray kiya +",9,1 +"From 1998 - 99, various poverty alleviation and employment generation programmes are grouped under two broad categories of: +","वर्ष 1998-99 से चलने वाले कई तरह के गरीबी उन्मूलन तथा रोजगार सृजन कार्यक्रमों को व्यापक रूप से दो वर्गों में रखे गए हैंः +","employment 1998-99 se chalne vale kee tarah ke poverty various tatha generation srijan programmes ko broad categories se do vargon men rakhe ge haina +",6,1 +"LEVEL : NEWS PAPERS IN HINDI LANGUAGE +","श्रेणी:हिन्दी भाषा के समाचार पत्र +","level : hindi language ke news papers +",9,0 +"The main objectives of the Board are to: - +","बोर्ड के मुख्य उद्देश्य हैं: +","board ke main objectives hain : +",9,2 +"Starting sequence number (deprecated) +","आरंभिक शृंखला संख्या (पदावनत) +","aarnbhik sequence number padavanat +",8,0 +"and we have the derivative sin of x because we learned the +","और हम एक्स के व्युत्पन्न पाप है, क्योंकि हम सीखा +","aur ham eks ke derivative sin hai, kyonki ham learned +",5,3 +"You have to be in this range. +","आपको इसी रेंग मे रहना है +","aapko isi range me rahna hai +",9,1 +"Will you sing me a Beatles' song? +","तुम मेरे लिए एक बीटल्स का गाना गा सकते हो क्या? +","tum mere lie ek beatles ka song ga sakte ho kya +",9,1 +"The same word or signal, therefore, should always be used for the particular response desired. +","इसलिए इच्छित अनुक्रिया के लिए सदा ही एक शब्द अथवा संकेत का इस्तेमाल किया जाना चाहिए। +","islie response desired ke lie sada hi ek word or signal ka istemal kiya jana chahie. +",7,1 +"On the other hand, art flourished under Buddhist patronage. +","दूसरी ओर बोद्धों के संरक्षण में कला समृद्धशाली बनी। +","hand or boddhon ke snrakshan men kala samriddhshali bani. +",6,2 +"Why, is he better who founded his building upon the fear of God and His good pleasure, or he who founded his building upon the brink of a crumbling bank that has tumbled with him into the fire of Gehenna? And God guides not the people of the evildoers. +","क्या जिस शख़्स ने ख़ुदा के ख़ौफ और ख़ुशनूदी पर अपनी इमारत की बुनियाद डाली हो वह ज्यादा अच्छा है या वह शख़्स जिसने अपनी इमारत की बुनियाद इस बोदे किनारे के लब पर रखी हो जिसमें दरार पड़ चुकी हो और अगर वह चाहता हो फिर उसे ले दे के जहन्नुम की आग में फट पडे और ख़ुदा ज़ालिम लोगों को मंज़िलें मक़सूद तक नहीं पहुंचाया करता +","kya jis better ne fear ke auph aur ushnoodi par apni building ki buniyad dali ho vah good achchha hai ya vah better jisne apni building ki buniyad is bank kinare ke brink par rakhi ho jismen darar par chuki ho aur agar vah chahta ho phir use guides evildoers ke jahannum ki fire men phat pade aur fear zalim logon ko mnzilen masood tak nahin pahunchaya karta +",8,2 +"A type of reproduction without fertilization. +","निषेचन रहित प्रजनन का एक प्रकार +","reproduction without fertilization ka ek type +",9,1 +"In the moulded type a full human or animal figure is fashioned. +","ढलाई में मानव और पशुओं की पूरी आकृति बनायी जाती है। +","moulded men full aur animal ki poori figure banayi jati hai. +",6,4 +"In fact, someone on Reddit thought, +","बल्कि, रेडिट पे किसी नें सोचा, +","fact, redit pe kisi nen thought, +",4,4 +"And then you know what we do? We negotiate. +","और फ़िर हम क्या करते है? हम सौदा तय करते हैं। +","aur fir ham kya karte hai ham sauda tay karte hain. +",9,2 +"But this exclusive consummation is not the sole or inevitable result of the Path of Knowledge. +","किन्तु यह एकाग्डी अत्युच्च अवस्था ही ज्ञान के मार्ग का अकेला या अनिवार्य परिणाम नहीं। +","kintu yah ekagdi atyuchch avastha hi knowledge ke path ka sole ya inevitable result nahin. +",9,2 +"They embrace the infinite coastline of the sea at their mouths. +","वे अपने मुहानों पर असीम समुद्रतट का आलिंगन करती हैं। +","ve apne muhanon par infinite sea ka aalingan karti hain. +",9,2 +"When such a person comes to Us, he will say [to his comrade], ""If only you had been as far away from me as east is from west. What an evil comrade!"" +","यहाँ तक कि जब (क़यामत में) हमारे पास आएगा तो (अपने साथी शैतान से) कहेगा काश मुझमें और तुममें पूरब पश्चिम का फ़ासला होता ग़रज़ (शैतान भी) क्या ही बुरा रफीक़ है +","yahan tak ki jab yamat men hamare pas aaega to apne comrade shaitan se kahega kash mujhmen aur person east west ka fasla hota raz shaitan bhi kya hi evil raphi hai +",5,2 +"Now I do call to witness the Lord of all points in the East and the West that We can certainly - +","अतः कुछ नहीं, मैं क़सम खाता हूँ पूर्वों और पश्चिमों के रब की, हमे इसकी सामर्थ्य प्राप्त है +","ata kuchh nahin, main sam khata hoon poorvon aur pashchimon ke rab ki, hame iski samarthy prapt hai +",3,5 +"The deceased was doing a private job at the time of the accident. +","मृतक दुर्घटना के समय एक निजी काम कर रहा था. +","deceased accident ke time ek private job kar raha tha +",8,1 +"seeing towards down after the noon, we can see pollution in Los Angeles into the moor of mountains +","नीचे देखने पर सामने की पहाडी के मैदान में दोपहर के बाद वायु प्रदूषण साफ साफ़ लोस अन्जेल्स में दिखता है. +","niche dekhne par samne ki pahadi ke maidan men noon ke bad vayu pollution towards saf los moor men dikhta hai +",4,2 +"There is a great percentage of poetry in his so - called dramas, also there is music in them. +","उनके तथाकथित नाटकों में, कविताओं का अंश मुख्य है, उनमें संगीत भी शामिल है। +","unke tathakthit dramas men , poetry ka percentage great hai , unmen music bhi shamil hai. +",7,1 +"Decisions in a proprietary concern are easy and prompt. +","स्वामित्व प्रतिष्ठान में निर्णय सुगमता से और त्वरित रूप में लिए जा सकते हैं। +","proprietary concern men nirnay sugamta se aur tvrit roop men lie ja sakte hain. +",9,0 +"Image format (default RGB) +","छवि प्रारूप (डिफ़ॉल्ट RGB) +","image format default rgb +",9,2 +"Failed to unlock lock file '% s' '% s' +","लॉक फ़ाइल को अन-लॉक करने में असफ़ल +","lock unlock lock file karne men asafal +",7,1 +"Whether to show contacts that are offline in the contact list. +","क्या संपर्कों को दिखाना है जो संपर्क सूची में ऑफ़लाइन हैं. +","kya contact ko dikhana hai jo contacts list men offline hain +",6,1 +"The selected audio device was successfully opened but it is impossible to read data from this device. In case it is a pluggable device it may be sufficient to reconnect it. If not, or if it still is not accessible, please check your audio setup. +","चयनित ऑडियो युक्ति सफलतापूर्वक खोला गया लेकिन इस युक्ति से आंकड़ा पढ़ना असंभव है. उस स्थिति में यदि यह एक प्लगेबल युक्ति है यह पर्याप्त होगा इसे फिर कनेक्ट करना. यदि नहीं, या यदि यह अभी भी पहुँच योग्य नहीं है, कृपया अपना ऑडियो सेटअप जाँचें. +","chaynit audio device saphaltapoorvak khola gaya lekin is device se data pana impossible hai us case men yadi yah ek pluggable device hai yah sufficient hoga ise phir kanekt karna yadi nahin , ya yadi yah abhi bhi pahunch yogy nahin hai , kripya apna audio setup janchen +",6,5 +"then makes him to die, and buries him, +","फिर उसे मौत दी फिर उसे कब्र में दफ़न कराया +","phir use maut di phir use kabr men dafan karaya +",9,1 +"""and it 's going to be a $40 billion business in the next 7 years."" +","""और यह एक 40 अरब डॉलर कारोबार अगले 7 वर्षों में होने जा रहा है."" +","aur yah ek 40 arab billion business agle 7 years men hone ja raha hai +",8,1 +"And that favour wherewith thou didst oblige me was that thou hadst enslaved the Children of Isra 'il? +","और ये भी कोई एहसान हे जिसे आप मुझ पर जता रहे है कि आप ने बनी इसराईल को ग़ुलाम बना रखा है +","aur ye bhi koee ehsan he jise aap favour wherewith thou rahe hai ki aap ne bani enslaved the children bana rakha hai +",4,4 +"The future development of the mini steel industry will depend on the availability of sponge iron. +","लघु इस्पात उद्योग का भावी विकास स्पंज आयन की उपलब्धता पर निर्भर करेगा. +","mini steel industry ka bhavi sponge iron aayan ki upalabdhta par nirbhar karega +",7,2 +"has the minimum number of wiggles. +","उसमे सबसे कम हलचल होता है. +","usme sabse kam number hota hai +",6,0 +"Thus the word of your Lord is fulfilled concerning the transgressors that they shall not believe. +","ये तुम्हारे परवरदिगार की बात बदचलन लोगों पर साबित होकर रही कि ये लोग हरगिज़ ईमान न लाएँगें +","ye lord paravardigar ki word transgressors logon par sabit hokar rahi ki ye log hargiz eeman n laengen +",7,2 +"Have they not realised that God knows their secrets and their confidential talk, and that God has the knowledge of unknown things? +","क्या उन्हें खबर नहीं कि अल्लाह उनका भेद और उनकी कानाफुसियों को अच्छी तरह जानता है और यह कि अल्लाह परोक्ष की सारी बातों को भली-भाँति जानता है +","kya unhen khabar nahin ki allah unka bhed aur unki kanaphusiyon ko achchhi tarah janta hai aur yah ki allah knowledge of unknown baton ko bhali-bhanti janta hai +",8,1 +"The default browser is currently %{BROWSERNAME}. +","वर्तमान में डिफ़ॉल्ट ब्राउज़र %{BROWSERNAME} है. +","vartman men default browser BROWSERNAME hai +",9,0 +"This apple tastes sour, doesn 't it? +","यह सेव खट्टा है ना? +","yah apple sour hai na +",9,1 +"Far from securing the ends of justice their pendency or disposal on merits will indubitably defeat the ends of justice. +","न्याय के उद्देश्यों की प्राप्ति से कोसों दूर, उनका अनिर्णय या योग्यता के आधार पर निपटान सुनिश्चित रूप से न्याय के उद्देश्यों को विफल कर देगा. +","ends of justice ki prapti se koson door, unka anirnay ya yogyta ke aadhar par niptan sunishchit roop se ends of justice ko viphal kar dega +",7,3 +"At the centre, remains the card scheme provider like the ‘National Payments Corporation’ (NPCI) for clearing and settlement. +","इस स्कीम के केंद्र में ‘राष्ट्रीय भुगतान निगम’ जैसे कार्ड स्कीम प्रदाता होते हैं जो समाशोधन तथा भुगतान करते हैं। +","is scheme ke centre men national payments corporation jaise card scheme provider hote hain jo clearing tatha payments karte hain. +",9,0 +"where god shanker was telling the story to parvatijiof ram story there was a crow 's nest and inside the nest crow was also listenng the story +","जहाँ पर भगवान शंकर पार्वती जी को भगवान श्री राम की कथा सुना रहे थे वहाँ कागा (कौवा) का एक घोसला था और उसके भीतर बैठा कागा भी उस कथा को सुन रहा था। +","jahan par bhagvan shnkar parvti ji ko bhagvan shri ram ki katha suna rahe the vahan kaga kauva ka ek ghosla tha aur uske bhitar baitha kaga bhi us katha ko sun raha tha. +",8,1 +"It is right that we should put all our strength in the advancement of the cause that we hold dear. +","यह बहुत ठीक है कि जो मकसद हमें प्यारा है, उसको पूरा करने के लिए हम अपनी पूरी ताकत लगा दें। +","yah bahut thik hai ki jo makasad hamen pyara hai, usko poora karne ke lie ham apni poori takat laga den. +",8,4 +"Construction of Farkka dam has been helpful in production of seed of hilsa fish. +","फरक्का बांध बन जाने से गंगा नदी में हिल्सा मछली के बीजोत्पादन में सहायता मिली है। +","pharakka bandh ban jane se gnga production of seed machhli ke bijotpadan helpful in production hai. +",5,1 +"I do not bother about any criticism. +","मुझे न निंदा की परवाह हे, न तोहमत की। +","i n criticism ki parvah he , n tohamat ki. +",6,3 +"And there came a caravan of travellers and they sent their water - drawer to draw water from the well. He let down his bucket into the well and he exclaimed, ""Oh, what a lucky find, here is a boy!"" They hid him like a piece of merchandise, but God knew well what they did. +","एक क़ाफ़िला आया। फिर उसने पनिहारा को भेजा। उसने अपना डोल ज्यों ही डाला तो पुकार उठा, ""अरे! कितनी ख़ुशी की बात है। यह तो एक लड़का है।"" उन्होंने उसे व्यापार का माल समझकर छुपा लिया। किन्तु जो कुछ वे कर रहे थे, अल्लाह तो उसे जानता ही था +","ek afila aaya. phir usne panihara ko bheja. usne apna draw water hi dala to pukar utha, are! kitni ushi ki bat hai. yah to ek larka hai. unhonne use vyapar ka mal samajhkar chhupa liya. kintu jo kuchh ve kar rahe the, allah to use janta hi tha +",4,7 +"This appeal has impugned the judgment and decree dated 20. 01. 2007 which had endorsed the judgment and decree of the trial judge dated 08. 11. 2005 decreeing the suit of the plaintiff for possession, declaration and mandatory injunction +","इस अपील ने २०. ०१. २००७ दिनांकित निर्णय और डिक्री पर आक्षेप किया है, जिसने ०८. ११. २००५ दिनांकित विचारण के निर्णय और डिक्री का समर्थन किया था, जिसमें वादी के कब्जे, घोषणा और अनिवार्य निषेधाज्ञा के वाद पर डिक्री की गई थी. +","is appeal ne २० ०१ २००७ dinankit judgment aur decree par aakshep kiya hai , jisne ०८ ११ २००५ dinankit trial ke judgment aur decree ka samarthan kiya tha , jismen plaintiff ke possession , declaration aur mandatory injunction ke suit par decree ki gee thi +",7,1 +"We should ensure that these pillars remain strong and unshakable. +","हमें यह सुनिश्चित करना चाहिए कि इन स्तंभों की सुदृढ़ता और अविचलता बनी रहे। +","hamen yah sunishchit karna chahie ki in pillars ki sudrita aur strong bani rahe. +",7,1 +"Nikzad Nojoumi 's illustrations have been used for a variety of children' s books. +","निकज़द नौजूमी के चित्र अनेकों बाल पुस्तकों में लिये गये है। +","nikazad naujoomi ke s anekon children illustrations men liye gaye hai. +",6,2 +"Two kinds of poultry feed may be prepared. +","दो तरह के मुर्गी चारे तैयार किए जा सकते हैं। +","do tarah ke poultry feed prepared kie ja sakte hain. +",9,2 +"It contains seven vertical strokes followed by this fish-like sign. +","समें सात ऊर्ध्वाधर रेखाओं के पीछे एक मछली का चिन्ह है। +","strokes sat oordhvadhar rekhaon ke pichhe ek machhli ka fish-like sign +",5,2 +"It seems that animals lower down the evolutionary ladder like bees and birds are born with their behaviourial patterns like the courting dances of the former and navigational instincts of the latter genetically fixed once for all. +","ऐसा प्रतीत होता है कि मधुमक्खी तथा पक्षियों जैसे विकास की सीढ़ी के निचले पायदोनों के प्राणियों का आचरण उनके जन्म के साथ निर्धारित किया जाता है। +","aesa prtit hota hai ki bees and birds jaise vikas ki sii ke nichle paydonon ke praniyon ka aacharan unke janm ke sath nirdharit kiya jata hai. +",9,0 +"They both grew up in more or less the same atmosphere. +","दोनों कमोबेश एक ही वातावरण में पालित-पोषित हुए थे। +","donon kamobesh ek hi atmosphere men palit-poshit hue the. +",9,2 +"O which of your Lord 's bounties will you and you deny? +","तो तुम दोनों अपने रब की अनुकम्पाओं में से किस-किस को झुठलाओगे? +","to tum donon apne rab ki anukampaon men se kis-kis ko deny +",8,1 +"We created you, then why do you believe not? +","हमने तुम्हें पैदा किया; फिर तुम सच क्यों नहीं मानते? +","hamne tumhen paida kiya phir tum sach kyon nahin mante +",9,2 +"Save changes to image ""% s"" before closing? +","छवि ""% s"" में बंद करने से पहले परिवर्तन सहेजें? +","chhavi s men closing karne se pahle parivartan save +",5,4 +"Of his party was also Abraham; +","और इबराहीम भी उसी के सहधर्मियों में से था। +","aur ibrahim bhi usi ke party men se tha. +",10,0 +"writing in the 1850s about how the railroad, the steam ship, +","कैसे रेल, स्टीमर के बारे में 1850 के दशक में लेखन, +","kaise rel, stimar ke bare men 1850 ke dashak men writing, +",8,1 +"(Unbelievers) whose eyes had been under a veil from remembrance of Me, and who had been unable even to hear. +","जिनके नेत्र मेरी अनुस्मृति की ओर से परदे में थे और जो कुछ सुन भी नहीं सकते थे +","jinke eyes meri remembrance ki or se parde men the aur jo kuchh sun bhi nahin sakte the +",7,6 +"I decided to devote my energies towards bridging the gulf between the old leaders and the new socialist group . +","मैंने पुराने नेताओं और नये सोशलिस्ट गुट के बीच खाई खत्म करने में अपनी ताकत का इस्तेमाल करने का फैसला किया . +","mainne purane netaon aur devote my energies ke bich khaee khatm karne men apni takat ka istemal karne ka phaisla kiya +",6,4 +"it's like playing poker and going all in right away. +","यह पोकर में सारे पत्ते खोल देने जैसा है. +","yah playing poker sare patte khol dene jaisa hai +",8,2 +"Cricket has been played in India since 1721 . +","क्रिकेट का खेलभारत में क्रिकेट के खेल का आरम्भ 1721 में हुआ . +","cricket ka khelbharat men cricket ke india ka aarambh 1721 men huaa +",7,1 +"Do not be faint of heart in pursuing these people: if you happen to suffer harm they too are suffering just as you are, while you may hope from Allah what they cannot hope for. Allah is All - Knowing, All - Wise. +","और (मुसलमानों) दुशमनों के पीछा करने में सुस्ती न करो अगर लड़ाई में तुमको तकलीफ़ पहुंचती है तो जैसी तुमको तकलीफ़ पहुंचती है उनको भी वैसी ही अज़ीयत होती है और (तुमको) ये भी (उम्मीद है कि) तुम ख़ुदा से वह वह उम्मीदें रखते हो जो (उनको) नसीब नहीं और ख़ुदा तो सबसे वाक़िफ़ (और) हिकमत वाला है +","aur musalmanon faint ke pichha karne men susti n heart agar wise men people harm pahunchti hai to jaisi people harm pahunchti hai unko bhi vaisi hi aziyat hoti hai aur people ye bhi ummid hai ki tum uda se vah vah ummiden rakhte ho jo unko knowing nahin aur uda to sabse vaif aur hikamat vala hai +",5,0 +"It was during the time of the dictatorship of Herod that Jesus was born, when the condition of the rule was dismal. +","ईसु के जन्म के समय निरकुंश राजा हैरोद का शासन था जिसमे प्रजा की स्थिति शोचनीय थी। +","jesus ke janm ke time nirkunsh raja hairod ka rule tha jisme prja ki condition shochniy thi. +",7,1 +"And we 're going to expand it into two simpler expressions +","और हम दो सरल भाव में विस्तृत करने के लिए जा रहे हैं +","aur ham do simpler expressions men expand karne ke lie ja rahe hain +",9,1 +"Pro tempore appointment means an appointment carrying a definite rate of pay sanctioned for a limited time only. +","अल्पकालीन नियुक्ति का अर्थ उस नियुक्ति से होता है, जिसमें मात्र एक निश्चित समयावधि के लिए ही निश्चित दर से वेतन स्वीकृत होता है। +","alpkalin appointment ka arth us appointment se hota hai , jismen matr ek definite limited ke lie hi definite rate se pay svikrit hota hai. +",9,0 +"He said, “Stop it – peace be upon you; I shall seek forgiveness for you from my Lord; indeed He is very kind to me. ” +","इबराहीम ने कहा (अच्छा तो) मेरा सलाम लीजिए (मगर इस पर भी) मैं अपने परवरदिगार से आपकी बख्शिश की दुआ करूँगा +","peace ne kaha forgiveness to mera salam lijie magar is par bhi main apne paravardigar se aapki bakhshish ki duaa karoonga +",6,1 +"Aryans did not make any statues or temples for deities. +","आर्य देवताओं की कोई मूर्ति या मन्दिर नहीं बनाते थे। +","aary deities ki koee statues or temples nahin make the. +",7,2 +"When Our manifest signs are recited to them, the faithless say to the faithful, ‘Which of the two groups is superior in station and better with respect to company? ’ +","और जब हमारी वाज़ेए रौशन आयतें उनके सामने पढ़ी जाती हैं तो जिन लोगों ने कुफ़्र किया ईमानवालों से पूछते हैं भला ये तो बताओ कि हम तुम दोनों फरीक़ो में से मरतबे में कौन ज्यादा बेहतर है और किसकी महफिल ज्यादा अच्छी है +","aur jab manifest raushan aayten unke samne pai respect hain to jin logon ne faithless kiya faithful se poochhte hain bhala ye to company ki tum station groups men se superior men kaun jyada better hai aur kiski mahphil jyada achchhi hai +",6,2 +"And he said: ye have taken images instead of Allah out of affection between you in the life of the world; but on the Day of Resurrection ye shall deny each other and ye shall curse each other, and your resort shall be the Fire, and ye shall have no helpers. +","और उसने कहा, ""अल्लाह से हटकर तुमने कुछ मूर्तियों को केवल सांसारिक जीवन में अपने पारस्परिक प्रेम के कारण पकड़ रखा है। फिर क़ियामत के दिन तुममें से एक-दूसरे का इनकार करेगा और तुममें से एक-दूसरे पर लानत करेगा। तुम्हारा ठौर-ठिकाना आग है और तुम्हारा कोई सहायक न होगा।"" +","aur usne kaha , allah se hatakar tumne kuchh images ko keval sansarik life men apne parasprik affection ke karan pakar rakha hai. phir resurrection ke day ye se ek-doosre ka inkar karega aur ye se ek-doosre par lanat karega. other thaur-thikana fire hai aur other koee helpers n resort +",8,1 +"They roam about widely in search of food . +","इस जाति के पक्षी भोजन की खोज में दूर दूर तक घूमते हैं . +","is jati ke pakshi search of food men widely roam about widely hain +",7,2 +"Nibbles couldn 't find pixmap file:% s Please check your Nibbles installation +","निब्बल्स पिक्समेप फ़ाइल:% s ढूंढ नहीं सका. कृपया अपना निब्बल्स संस्थापना जांचें +","nibbles pixmap s : s dhoondh nahin saka please apna nibbles snsthapna janchen +",8,1 +"But they also built a playhouse in 1753 which closed down when the Fort and Calcutta were lost in battle to Nawab Siraj - ud - Dowla in 1756. +","किंतु उन्होंने सन् 1753 में एक नाटकघर भी बनवाया, जो कि सन् 1756 के युद्ध में किले और कलकत्ता के नवाब सिराजुद्दौला के हाथ में चले जाने पर बंद हो गया। +","kintu unhonne playhouse 1753 men ek natakaghar bhi banvaya , jo ki playhouse 1756 ke battle men fort aur calcutta ke navab siraj ke hath men chale jane par bnd ho gaya. +",8,2 +"Winds built up to 65 kph and waves broke on the boat, deluging it with water. +","हवा का वेग बढ़कर 65 किलोमीटर प्रति घंटा हो गया और विशालकाय लहरें नौका से टकराने लगीं और उसे पानी से भर दिया। +","hava ka veg bakar 65 kilomitar prti ghnta ho gaya aur vishalkay lahren nauka se takrane lagin aur use pani se bhar diya. +",9,2 +"Folder% 1 already exists.% 2 may become owner and permissions may change. Do you really want to use% 3? +","फ़ोल्डर% 1 पहले ही मौजूद है.% 2 मालिक बन सकता है और अनुमतियाँ बदल सकती हैं. क्या आप सचमुच% 3 का इस्तेमाल करना चाहते हैं? +","folder 1 pahle hi maujood hai 2 owner ban sakta hai aur anumtiyan badal sakti hain kya aap sachmuch 3 ka istemal karna chahte hain +",8,1 +"Something like this is happening to Farooq Abdullah. +","कुछ ऐसी ही बात फारूक अदुल्ल के साथ हो रही है. +","kuchh aesi hi bat pharook happening ke sath ho rahi hai +",7,1 +"What are they waiting for – except the Last Day, that it may suddenly come upon them while they are unaware? +","क्या वे बस उस (क़ियामत की) घड़ी की प्रतीक्षा कर रहे है कि वह सहसा उनपर आ पड़े और उन्हें ख़बर भी न हो +","ve bas us last ki ghari ki prtiksha kar rahe hai ki vah unaware unapar aa pare aur unhen bar bhi n ho +",8,0 +"And they will offer (their full) submission to Allah (Alone) on that Day, and their invented false deities [all that they used to invoke besides Allah, e. g. idols, saints, priests, monks, angels, jinns, Jibrael (Gabriel), Messengers, etc.] will vanish from them. +","उस दिन वे अल्लाह के आगे आज्ञाकारी एवं वशीभूत होकर आ पड़ेगे। और जो कुछ वे घड़ा करते थे वह सब उनसे खोकर रह जाएगा +","us din ve allah ke aage aajnjakari evn vashibhoot hokar aa parege. aur jo kuchh ve ghara karte the vah sab unse khokar rah jaega +",4,7 +"Accursed wherever they are found, [being] seized and massacred completely. +","फिटकारे हुए होंगे। जहाँ कही पाए गए पकड़े जाएँगे और बुरी तरह जान से मारे जाएँगे +","accursed hue honge. jahan kahi pae ge pakare jaenge aur buri tarah jan se mare jaenge +",5,5 +"Could not decode private key. +","निजी कुंजी को विगोपित नहीं कर सका. +","private key ko decode nahin kar saka +",8,4 +"As long as they continue to mix up caste and race , they can go about their business , ” he says. +","जब तक वे जाति और नस्ल को मिलते रहैंगे तब तक उनका धंधा चलता रहेगा . ' ' +","jab tak ve caste aur nasl ko milte rahainge tab tak unka business chalta rahega +",9,0 +"We have first a body supported by the physical life - force, the physical prana which courses through the whole nervous system and gives its stamp to our corporeal action, so that all is of the character of the action of a living and not an inert mechanical body. +","सबसे पहले है हमारा शरीर जिसे भौतिक प्राणशक्ति अर्थात् स्थूल प्राण धारण किये है; यह प्राण समपूर्ण स्नायुमण्डल में गति करता है और हमारे शरीर के कार्य पर अपनी छाप लगा देता हैं परिणामस्वरूप, इसके सभी कार्य किसी जड़-यान्त्रिक शरीर की नहीं, बल्कि एक सजीव की क्रिया का स्वभाव धारण किये रहते हैं। +","sabse pahle hai hamara body jise bhautik pranashakti arthat sthool force dharan kiye hai yah force sampoorn nervous men gati karta hai aur hamare body ke action par apni stamp laga deta hain parinamasvroop , iske sabhi action kisi jar-yantrik body ki nahin , balki ek life ki kriya ka character dharan kiye rahte hain. +",7,0 +"It will act as a platform where novel ideas are nurtured and innovators mentored to develop new products. +","यह एक ऐसे मंच के रूप में कार्य करेगा जहां नवीन विचारों को प्रोत्साहन मिलेगा और नए उत्पादों के विकास के लिए नवान्वेषकों को प्रोत्साहित किया जाएगा। +","yah ek aese platform ke roop men kary karega jahan novel ideas ko protsahan milega aur ne products ke vikas ke lie innovators ko protsahit kiya jaega. +",9,2 +"The market rates are going down. +","बाजार दर जल्दी नीचे जा रहे हैं। +","market dar jaldi niche ja rahe hain. +",9,1 +"and we had thought that men and jinn would never speak against God a lie. +","और ये कि हमारा तो ख्याल था कि आदमी और जिन ख़ुदा की निस्बत झूठी बात नहीं बोल सकते +","aur ye ki thought that men tha ki aadmi aur jin god a lie jhoothi bat nahin bol sakte +",6,3 +"As long as they continue to mix up caste and race , they can go about their business , ” he says. +","जब तक वे जाति और नस्ल को मिलते रहैंगे तब तक उनका धंधा चलता रहेगा . ' ' +","jab tak ve caste and race ko milte rahainge tab tak unka dhndha chalta continue +",9,1 +"That 's why he stole the salver. +","चांदी की थाली की चोरी इसी कारण की है। +","chandi ki stole the salver isi karan ki hai. +",5,1 +"The next thing is that, if you want to predict +","दूसरी ये कि, यदि आप पूर्वानुमानित करना चाहें +","next ye ki , yadi aap poorvanumanit karna chahen +",8,2 +"I assure you, I haven 't even seen him. she said. +","मैं आपको यकीन दिलाती हूं कि मैंने आज तक उसे देखा भी नहीं है। +","main aapko yakin dilati hoon ki mainne aaj tak use dekha bhi nahin hai. +",10,0 +"The doctor proscribed smoking in the waiting room of his clinic. +","डॉक्टर ने अपने क्लिनिक के प्रतीक्षा कक्ष में धूम्रपान की सख्त मनाही कर दी। +","doctor ne apne klinik ke waiting room men dhoomrpan ki sakht manahi kar di. +",9,2 +"He made the Subhashbabu the Chief Working Officer of the corporation. +","उन्होंने सुभाषबाबू को महापालिका का प्रमुख कार्यकारी अधिकारी बनाया। +","unhonne subhashbabu ko corporation ka chief working officer banaya. +",10,0 +"The focus now has to be on implementation of these agreements. +","अब इन समझौतों को अमल में लाने पर ध्यान देना होगा। +","ab in agreements ko implementation men lane par focus dena hoga. +",9,2 +"In Uttarapatha there is a mention of a golden stupa at Mathura. +","उत्तरापथ में मथुरा में सुवर्णस्तूप होने का उल्लेख मिलता है। +","uttrapath men mention men suvarnastoop hone ka ullekh milta hai. +",7,2 +"A type of reproduction without fertilization. +","निषेचन रहित प्रजनन का एक प्रकार +","fertilization rahit reproduction ka ek type +",10,0 +"In most countries in the world, there are approximately 105 female births for every 100 males. +","विश्व के अधिकतर देशों में, प्रति 100 पुरुषों के पीछे लगभग 105 स्त्रियों का जन्म होता है, +","world ke adhikatar countries men , prti 100 males ke pichhe most 105 female ka births hota hai , +",8,0 +"The day the sky will tremble, +","जिस दिन आसमान चक्कर खाने लगेगा +","jis day sky chakkar khane lagega +",8,2 +"Ibne Sina (980 - 237) associated with the medical science to be ahead of many who wrote the book became the basis of modern medical science +","इबने सीना (९८०-१०३७) ने चिकित्सा विज्ञान से संबंधित कई पुस्तकें लिखीं जो कि आगे जा कर आधुनिक चिकित्सा विज्ञान का आधार बनीं। +","ibne sina ९८०-१०३७ ne medical science se snbndhit kee pustken likhin jo ki aage ja kar modern medical science ka aadhar banin. +",9,0 +"hoping that your sex cells, your male sex cells, +","इस उम्मीद में कि आपकी सेक्स कोशिकाएं, आपकी पुरुष सेक्स कोशिकाएं, +","is ummid men ki aapki sex cells, aapki male sex cells, +",9,2 +"The instinctive nature of man to form into groups and to dance and sing is as old as human existence. +","नृत्य और गायन मानव की आंतरिक प्रकृति है तथा मानव-जीवन के साथ-साथ ही इसका आरंभ हुआ। +","nrity aur groups man ki aantrik instinctive hai tatha manav-jivan ke sath-sath hi iska aarnbh existence +",4,1 +"These powers of the Supreme Court to grant special leave to appeal are far wider than the High Courts' power to grant certificates to appeal to the Supreme Court under article 134. +","अनुच्छेद 134 के अधीन उच्चतम न्यायालय में अपील के लिए प्रमाणपत्र देने की जो शक्ति उच्च न्यायालय को प्राप्त है, उससे कहीं अधिक व्यापक उच्चतम न्यायालय की ये शक्तियां अपील की विशेष इजाजत देने के बारे में हैं. +","article 134 ke adhin supreme court men appeal ke lie certificates dene ki jo power uchch court ko prapt hai , usse kahin adhik wider supreme court ki ye powers appeal ki special leave dene ke bare men hain +",7,1 +"Discussions in the assembly were marked by elements of purity, fairness, frankness and freedom. +","सभा में चर्चाएं स्वतंत्र, स्वच्छ एवं निर्बाध हुआ करती थीं. +","assembly frankness and freedom, svachchh evn nirbadh huaa karti thin +",5,1 +"Under sub - rule 2 of rule 45, after hearing the charges, the Commandant may award such punishment to the accused which he is empowered to award +","नियम ४५ के उप-नियम २ के तहत, आरोपों को सुनने के बाद, कमांडेंट अभियुक्त के लिए ऐसी सज़ा अधिनिर्णित कर सकता है जिसके लिए वह सशक्त है. +","rule ४५ ke up-rule २ ke tahat, hearing the charges ke bad, commandant abhiyukt ke lie award such punishment kar sakta hai jiske lie vah sashakt hai +",8,2 +"for example, in this case, +","उदाहरण के तौर पर, यहाँ, +","udaharan ke taur par, yahan, +",7,3 +"In the past year Germany also expressed its willingness to tap the vast skilled manpower pool India enjoys in the area of Information Technology. +","गत वर्ष जर्मनी ने इच्छा प्रकट की कि सूचना प्रौद्योगिकी के क्षेत्र में प्रशिक्षित भारतीयों की प्रतिभा का लाभ जर्मनी उठाना चाहता है। +","gat varsh jarmni ne ichchha prakat ki ki information technology ke vast skilled manpower bhartiyon ki prtibha ka labh jarmni uthana chahta hai. +",7,0 +"During the fourth invasion of Durrani in 1757, a detachment was sent to chastise the Sikhs at Amritsar. +","सन् 1747 में दुर्रानी के चौथे हमले के समय सिक्खों को दण्ड देने के लिए सेना का एक खण्ड अमृतसर भेजा गया। +","detachment 1747 men durrani ke fourth hamle ke samay sikkhon ko dand dene ke lie sena ka ek khand amritsar bheja invasion +",5,4 +"But they say, “We found our parents on a course, and we are guided in their footsteps. ” +","बल्कि ये लोग तो ये कहते हैं कि हमने अपने बाप दादाओं को एक तरीके पर पाया और हम उनको क़दम ब क़दम ठीक रास्ते पर चले जा रहें हैं +","balki ye log to ye kahte hain ki hamne apne bap dadaon ko ek tarike par paya aur ham unko dam b dam thik raste par chale ja rahen hain +",9,2 +"He told me to go to his room. +","उसने मुझे उसके कमरे में जाने को कहा। +","told mujhe uske room men jane ko kaha. +",9,0 +"o Word Processors, DTP Solutions and SDKs for various Indian languages +","वर्ड प्रॉसेसर, तथा विभिन्न भारतीय भाषाओं के लिए डीटीपी समाधान तथा एसडीके +","word prsesar , o various indian bhashaon ke lie dtp solutions o esdike +",4,3 +"All the appellants pleaded not guilty to the charge and claimed to be tried +","सभी अपीलकर्ताओं ने अपराध स्वीकार नहीं किया और मुक़दमा चलाये जाने की मांग की. +","sabhi appellants ne apradh svikar nahin kiya aur mudma chalaye jane ki mang ki +",9,1 +"They roam about widely in search of food . +","इस जाति के पक्षी भोजन की खोज में दूर दूर तक घूमते हैं . +","is jati ke pakshi food ki search men door door tak ghoomte hain +",6,3 +"When they came to a gutter filled with rain water, they plunged in, scream - ing with laughter. +","छोकरे जब बारिश के पानी से भरा नाली के निकट पहुंचे, तो उसी में कूद पड़े और धमाचौकड़ी मचाते हुए हो-हल्ला करने लगे। +","laughter jab rain ke water se bhara gutter ke nikat pahunche , to usi men ing pare aur dhamachaukari machate hue ho-halla karne lage. +",6,2 +"Reading is a complex cognitive process of decoding symbols for the purpose of deriving meanings. +","पाठन, अर्थ प्राप्त करने के उद्देश्य से प्रतीकों के विकोडन की एक जटिल संज्ञानात्मक प्रक्रिया है। +","reading, meanings prapt karne ke uddeshy se process of decoding ki ek complex cognitive process hai. +",8,1 +"What actually happened was the impulses were reduced. +","असलियत में ये हुआ कि गतियाँ कम हो गयीं. +","asliyat men ye huaa ki gatiyan impulses ho gayin +",7,1 +"The place where Bapu lost his life cannot but continue to be a spot attracting visits from devotees, tourists and others. +","जिस स्थान में बापू की हत्या हुई, वह उनके भक्तों, यात्रियों तथा अन्य लोगों को सदा ही आकर्षित करता रहेगा। +","jis place men bapu ki life huee , vah unke devotees , yatriyon tatha any others ko tourists hi aakarshit karta rahega. +",6,0 +"The use of money to create more money in the form of interest, dividend or profit etc. +","धनराशि से और ज्यादा धनराशि पैदा करने के लिए किया गया कार्य जो ब्याज, लाभांश, मुक्तता इत्यादि प्राप्ति द्वारा हो सकता है। +","money se aur create more money karne ke lie kiya gaya kary jo interest, dividend, muktta ityadi prapti dvara ho sakta hai. +",7,5 +"This movement was a plan to mobilize the support of the governments of Afghanistan and Turkey in organizing a revolt within India to overthrow the British rule. +","यह आंदोलन वास्तव में, अंग्रेजों के शासन का तख्ता पलटने के लिए भारत के अंदर विद्रोह को आयोजित करने में अफगानिस्तान और तुर्की की सरकारों का समर्थन हासिल करने की एक योजना थी। +","yah aandolan vastav men, angrejon ke overthrow the british palatne ke lie bharat ke andar organizing a revolt karne men afghanistan and turkey ki sarkaron ka samarthan hasil karne ki ek yojna thi. +",5,1 +"Water is major constituents of all living matters. +","पानी सभी जीवित पदार्थों का मुख्य घटक है. +","water sabhi living padarthon ka major constituents hai +",8,1 +"Deposits of stock is governed by prescribed rules. +","माल जमा की प्रक्रिया निर्धारित नियमों के अनुसार होगी। +","stock deposits ki prakriya prescribed rules ke anusar hogi. +",10,0 +"Say: “He is Allah, the One and Unique; +","(ऐ रसूल) तुम कह दो कि ख़ुदा एक है +","say unique tum kah do ki uda ek hai +",7,0 +"Its other important dimension is that it must provide impetus to such a campaign that endeavours to bring about desirable changes in the organisations, institutions and circumstances and thus aims at extirpating evils. +","इसका एक अन्य आयाम यह है कि इसके माध्यम से एक ऐसा अभियान चलाया जाये जो संगठनों, संस्थाओं और परिरिस्थितियों में आवश्यकतानुसार परिवर्तन लाने तथा इस प्रकार सामाजिक बुराइयों को खत्म करने का प्रयास करे। +","iska ek other dimension yah hai ki iske madhyam se ek aesa campaign chalaya jaye jo organisations , snsthaon aur pariristhitiyon men aavashyaktanusar changes lane tatha is prkar samajik evils ko khatm karne ka pryas circumstances +",8,2 +"My special congratulations to Shri Shashi Kapoor who has been honoured with the Dadasaheb Phalke Award this year. +","श्री शशि कपूर को मेरी विशेष बधाई जिन्हें इस वर्ष दादा साहेब फाल्के पुरस्कार प्रदान किया गया है। +","shri shashi kapoor ko meri vishesh badhaee jinhen is varsh dada award this year prdan kiya gaya hai. +",7,4 +"I throw a ball and it 's going to go up in the air. +","मैं एक गेंद फेंक और इसे हवा में ऊपर जाना जा रहा है। +","air ek ball phenk aur ise hava men oopar jana ja raha hai. +",5,1 +"Unable to open lock file. +","लाक फ़ाइल खोलने में अक्षम. +","lock unable kholne men aksham +",4,1 +"Polar ice caps may melt further and increase the size of the oceans which may submerge large expanses of land - LRB - China, Egypt, Indonesia, Bangladesh and West Bengal face this threat - RRB -. +","अधिक मात्रा में ध्रुवों की बर्फ पिघलने से सागरों में जल का स्तर बढ़ जाएगा. जिससे पृथ्वी का काफी बड़ा भू-भाग इसमें डूब जाएगा. चीन, मिस्त्र, इन्डोनेशिया, बंग्लादेश और पश्चिम बंगाल के लिए यह खतरा मंडरा रहा है. +","adhik polar ice caps ki ice caps se sagron men jal ka star ba jaega jisse prithvi ka kaphi bara bhoo-bhag ismen doob jaega chin, mistr, indoneshiya, bngladesh aur pashchim bngal ke lie yah khatra mndra raha hai +",8,3 +"“It 's nice for swimming there. ” +","पानी में तैरने का वहाँ बहुत बढ़िया इन्तज़ाम है। +","pani men nice ka vahan bahut baiya intazam hai. +",3,4 +"So, I need to decipher what I wrote. +","तो, मुझे समझने की जरुरत है कि मैंने क्या लिखा है। +","to, mujhe decipher ki jarurat hai ki mainne kya likha hai. +",8,1 +"When you go in these developing societies, +","जब आप इन विकासशील इलाकों में जाते हैं, +","jab aap in developing ilakon men jate hain, +",9,2 +"The greatest crime in the world is not developing your potential. When you do your best, you are helping others. +","अपनी सामर्थ्य का पूर्ण विकास न करना दुनिया में सबसे बड़ा अपराध है. जब आप अपनी पूर्ण क्षमता के साथ कार्य निष्पादन करते हैं, तब आप दूसरों की सहायता करते हैं. +","apni potential ka poorn developing n karna duniya helping sabse greatest crime hai jab aap apni poorn kshamta ke sath kary nishpadan karte hain, tab aap doosron ki sahayta karte hain +",5,3 +"Few, if any of us, can use this highest reason with any purity, but the attempt to do it is the topmost capacity of the inner instrument, the antahkarana. +","यदि हममें से कोई इस उच्चतम बुद्धि का प्रयोग किसी शुद्ध रूप में कर भी पाते हैं तो वे विरले ही होते हैं, किन्तु इसके लिये प्रयत्न करना अन्तःकरण की सबसे ऊंची क्षमता है। +","yadi hammen se koee is highest reason ka pryog kisi shuddh roop men kar bhi pate hain to ve virle hi hote hain, kintu iske liye prayatn karna antakaran ki sabse topmost capacity hai. +",6,1 +"This position is similar to royal position, just the woman to take the other side of your face is the face of men. In a way it 's back to enter the position. The man' s situation stays the same kind of right royal position, but women by men toward the back right in front of his penis is hard bringing up my cunt. Then slowly enter the penis cunt gives. Women in this position quite comfortable lives. It supported him get his feet that put him in the attack is easier. This position is changing dramatically because of it with some other ideas on other furniture can be pursued. +","यह पोजीशन शाही पोजीशन की ही तरह है बस इसमें महिला अपनी चेहरा पुरुष के चेहरे के दूसरी ओर कर लेती है. एक तरह से यह पीछे से प्रवेश की भी पोजीशन है. इसमें पुरुष की स्थिति ठीक शाही पोजीशन की ही तरह रहती है लेकिन महिला पुरुष की ओर पीठ करके ठीक उसके लिंग के सामने अपनी योनि को लाकर खड़ी होती है. फिर धीरे से योनि को लिंग में प्रवेश कराती है. इस पोजीशन में महिला काफी आरामदायक स्थिति में रहती है. इसमें उसे सहारा उसके पैरों से मिलता है जिससे उसे धक्के लगाने में भी आसानी होती है. यह पोजीशन आश्चर्यजनक रूप से परिवर्तनशील है इसलिये इसे कुछ अन्य आइडिया के साथ दूसरे फर्नीचर पर भी अपनाई जा सकती है. +","yah similar royal similar ki hi tarah hai bas ismen woman apni face men ke chehre ke doosri or kar leti hai ek tarah se yah pichhe se prvesh ki bhi similar hai ismen men ki position way royal similar ki hi tarah rahti hai lekin woman men ki or pith karke way uske penis ke front apni cunt ko hard khari hoti hai phir dhire se cunt ko penis men prvesh karati hai is similar men woman kaphi comfortable position men rahti hai ismen use sahara uske pairon se milta hai jisse use attack lagane men bhi easier hoti hai yah similar aashcharyajanak roop se parivartanshil hai isliye ise kuchh other aaidiya ke sath doosre furniture par bhi apnaee ja sakti hai +",5,3 +"Under sub - rule 2 of rule 45, after hearing the charges, the Commandant may award such punishment to the accused which he is empowered to award +","नियम ४५ के उप-नियम २ के तहत, आरोपों को सुनने के बाद, कमांडेंट अभियुक्त के लिए ऐसी सज़ा अधिनिर्णित कर सकता है जिसके लिए वह सशक्त है. +","rule ४५ ke up-niyam २ ke tahat , charges ko sunne ke bad , commandant abhiyukt ke lie such punishment adhinirnit kar sakta hai jiske lie vah sashakt hai +",8,2 +"You know, my work is inspired +","आप जानते हैं, मेरा काम प्रभावित है +","aap jante hain, mera work inspired hai +",9,2 +"When Our manifest signs are recited to them, the faithless say to the faithful, ‘Which of the two groups is superior in station and better with respect to company? ’ +","और जब हमारी वाज़ेए रौशन आयतें उनके सामने पढ़ी जाती हैं तो जिन लोगों ने कुफ़्र किया ईमानवालों से पूछते हैं भला ये तो बताओ कि हम तुम दोनों फरीक़ो में से मरतबे में कौन ज्यादा बेहतर है और किसकी महफिल ज्यादा अच्छी है +","aur jab hamari signs are recited unke samne pai jati hain to jin logon ne kufr kiya eemanvalon se poochhte hain bhala ye to batao ki ham tum donon phario men se maratbe men kaun jyada behatar hai aur kiski mahphil jyada achchhi hai +",5,4 +"started speaking to us in the 20th century, +","से हमारी बातचीत 20 वीं सदी में शुरू हुई, +","se hamari batchit 20th vin century men shuroo huee , +",7,1 +"Alas the woe that day for those who deny! +","तबाही है उस दिन झुठलानेवालों की +","woe hai us day jhuthlanevalon ki +",5,1 +"learned the correct initial state for the 17 - bit LFSR, we will have also +","सही प्रारंभिक राज्य सीखा 17-बिट LFSR के लिए, हम भी करना होगा +","correct initial state sikha 17-bit LFSR ke lie , lfsr bhi karna bit +",7,1 +"I ask no recompense of you; my reward is only with the Lord of the Universe. +","मैं इस काम पर तुमसे कोई प्रतिदान नहीं माँगता। मेरा प्रतिदान तो बस सारे संसार के रब के ज़ि्म्मे है। +","i is kam par tumse koee recompense nahin mangta. mera recompense to bas sare universe ke rab ke zimme hai. +",8,2 +"Child - 3: Tell us now, Grandpa! +","बच्चा 3: फिर सुनाओ, दादा! +","child 3 : phir sunao , grandpa ! +",10,0 +"When I'm not fighting poverty, I'm fighting fires +","जब मैं गरीबी के खिलाफ नहीं लड़ रहा होता, तब एक स्वयंसेवी +","jab main poverty ke khilaph nahin fighting raha hota, tab ek fires +",6,4 +"O Prophet, say to your wives: 'If you seek this life and its finery, come, I will release you with a fine release. +","ऐ रसूल अपनी बीवियों से कह दो कि अगर तुम (फक़त) दुनियावी ज़िन्दगी और उसकी आराइश व ज़ीनत की ख्वाहॉ हो तो उधर आओ मैं तुम लोगों को कुछ साज़ो सामान दे दूँ और उनवाने शाइस्ता से रूख़सत कर दूँ +","fine rasool apni biviyon se life do ki agar o release duniyavi zindgi aur uski finery v zinat ki khvah ho to udhar aao i o logon ko kuchh sazo saman de wives aur unvane shaista se roosat kar wives +",6,2 +"His old friend Amar Singh helped him, when his company ABCL failed and he had to thereby face financial trouble. +","उनके पुराने मित्र अमरसिंह (Amar Singh) ने इनकी कंपनी एबीसीएल के फेल हो जाने के कारण आर्थिक संकट के समय इनकी मदद कीं। +","unke purane mitr amarsinh Amar Singh ne inki knpni ebisiel ke phel ho jane ke face financial trouble ke samay inki madad kin. +",5,1 +"It seems that animals lower down the evolutionary ladder like bees and birds are born with their behaviourial patterns like the courting dances of the former and navigational instincts of the latter genetically fixed once for all. +","ऐसा प्रतीत होता है कि मधुमक्खी तथा पक्षियों जैसे विकास की सीढ़ी के निचले पायदोनों के प्राणियों का आचरण उनके जन्म के साथ निर्धारित किया जाता है। +","latter lower hota hai ki madhumakkhi tatha animals jaise evolutionary ki ladder ke nichle paydonon ke praniyon ka instincts unke janm ke sath nirdharit kiya jata former +",7,1 +"Sardar Bhagat Singh was the leader of the youth movement in Punjab carried on under the banner of Nawjawan Bharat Sabha with which Subhas Chandra associated himself closely at a later stage . +","सरदार भत सिंह पंजाब की ? नौजवान भारत सभा ? नाम से विख़्यात युवा आंदोलन के नेता थे , जिससे बाद में सुभाष चन्द्र का भी अंतरंग साहचर्य स्थापित हुआ . +","sardar bhagat singh punjab ki bharat movement banner nam se viyat youth aandolan ke leader the , jisse bad men chandra chandr ka bhi later sahachary sthapit huaa +",4,2 +"(b) where the marriage of his parents does not subsist, in the net wealth of that parent who maintains the minor child in the previous year as defined in section 3 of the Income-tax Act, and where any such assets are once included in the net wealth of either parent, any such assets shall not be included in the net wealth of the other parent in any succeeding year unless the Assessing Officer is satisfied, after giving that parent an opportunity of being heard, that it is necessary so to do ; +","(ख) जहां उसके माता या पिता का विवाह अस्तित्व में नहीं है वहां उस माता या पिता के शुद्ध धन में सम्मिलित की जाएंगी जिसने आय-कर अधिनियम की धारा 3 में परिभाषित पूर्ववर्ष में अवयस्क संतान का भरणपोषण किया है, और जहां ऐसी कोर्इ आस्तियां माता या पिता में से किसी एक के शुद्ध धन में एक बार सम्मिलित कर ली जाती हैं वहां ऐसी कोर्इ आस्तियां, किसी उत्तरवर्ती वर्ष में माता या पिता में से किसी अन्य के शुद्ध धन में तब तक सम्मिलित नहीं की जाएंगी जब तक निर्धारण अधिकारी का, उस माता या पिता को सुनवार्इ का अवसर देने के पश्चात्, यह समाधान नहीं हो जाता है कि ऐसा करना आवश्यक है; +","b jahan uske parents ya child ka marriage astitv men nahin hai vahan us parents ya child ke net wealth men sammilit ki jaengi jisne aay-kar act ki section 3 men paribhashit previous men minor sntan ka bharanposhan kiya hai , aur jahan aesi kori assets parents ya child men se kisi ek ke net wealth men ek bar sammilit kar li jati hain vahan aesi kori assets , kisi uttaravarti year men parents ya child men se kisi other ke net wealth men tab tak sammilit nahin ki jaengi jab tak nirdharan officer ka , us parents ya child ko sunvari ka opportunity dene ke pashchat , yah samadhan nahin ho jata hai ki such karna necessary hai +",8,0 +"The beaters ran away after injuring the man. +","पीटने वाले आदमी को घायल करके भाग गए। +","pitne vale man ko ghayal karke beaters ge. +",6,0 +"Then came forward Rajaraja Varma, diffident and nervous. +","इसके बाद भयभीत और आशंका से भरे राजराज वर्मा सामने आए। +","iske bad nervous aur aashnka se diffident rajaraja varma samne aae. +",7,2 +"Committee on Health and Family Welfare: +","स्वास्थ्य और परिवार कल्याण संबंधी समितिः +","health and family welfare snbndhi samitia +",7,3 +"There are those who disbelieve in Allah and His Messengers and seek to differentiate between Allah and His Messengers, and say: 'We believe in some and deny others, and seek to strike a way between the two.' +","बेशक जो लोग ख़ुदा और उसके रसूलों से इन्कार करते हैं और ख़ुदा और उसके रसूलों में तफ़रक़ा डालना चाहते हैं और कहते हैं कि हम बाज़ (पैग़म्बरों) पर ईमान लाए हैं और बाज़ का इन्कार करते हैं और चाहते हैं कि इस (कुफ़्र व ईमान) के दरमियान एक दूसरी राह निकलें +","beshak jo log uda aur uske rasoolon se inkar karte hain aur uda aur uske seek to differentiate dalna chahte hain aur kahte hain ki ham baz paimbron par eeman lae hain aur baz ka inkar karte hain aur chahte hain ki is kufr v eeman ke darmiyan ek doosri rah niklen +",3,5 +"Speaking on the occasion, the President said India is fortunate to have a large young population to take forward her aspirational agenda of change. +","इस अवसर पर, राष्ट्रपति ने कहा कि, भारत सौभाग्यशाली है कि उसके पास परिवर्तन की आकांक्षापूर्ण कार्यसूची की प्राप्ति के लिए विशाल युवा पीढ़ी है। +","is avasar par, rashtrapti ne kaha ki, bharat saubhagyshali hai ki uske pas forward her aspirational karysoochi ki prapti ke lie large young pii hai. +",6,3 +"But that brings me to lesson number two: +","तो इस तरह मैं अपने दूसरे सबक तक पहुँचती हूँ। +","to is tarah main apne doosre number tak pahunchti hoon. +",5,7 +"Or like abundant rain from the cloud in which is utter darkness and thunder and lightning; they put their fingers into their ears because of the thunder peal, for fear of death, and Allah encompasses the unbelievers. +","या (उनकी मिसाल ऐसी है) जैसे आकाश से वर्षा हो रही हो जिसके साथ अँधेरे हों और गरज और चमक भी हो, वे बिजली की कड़क के कारण मृत्यु के भय से अपने कानों में उँगलियाँ दे ले रहे हों-और अल्लाह ने तो इनकार करनेवालों को घेर रखा हैं +","ya unki misal aesi hai jaise aakash se varsha ho rahi ho jiske sath andhere hon aur garaj aur chamak bhi ho, ve bijli ki karak ke karan mrityu ke bhay se apne put their fingers de le rahe hon-aur allah ne to inkar karnevalon ko gher rakha hain +",8,2 +"Presence of excess ammount of uric acid in the urine. +","मूत्र में यूरिक एसिड मे उपलब्ध अत्यधिक मात्रा। +","urine men uric acid me upalabdh atydhik matra. +",7,3 +"She was touted as the next dream girl. +","मुद्दा उन्हें अगली स्वप्न सुंदरी करार दिया जा रहा था. +","mudda unhen next dream girl karar diya ja raha tha +",9,1 +"The Agreement on South Asian Free Trade Area (SAFTA) was signed by all the member States of the South Asian Association for Regional Cooperation (SAARC) during the twelfth 'SAARC Summit' held in Islamabad on 4 - 6th January, 2004. +","दक्षिणी एशिया मुक्त कारोबार क्षेत्र (साफ्टा) पर करारनामे पर इस्लामाबाद में 4-6 जनवरी को आयोजित बारहवेंदक्षिण एशियाई क्षेत्रीय सहयोग संघ (सार्क) सम्मेलन के दौरान सार्क के सभी सदस्य देशों ने हस्ताक्षर किए। +","south eshiya free trade area agreement par kararname par islamabad men 4-6 january ko aayojit barahvendakshin asian regional association twelfth states summit ke dauran states ke sabhi member deshon ne hastakshar kie. +",7,3 +"Dr. Ambedkar warned sternly, You will have to struggle for your own liberation. +","डा. आंबेडकर ने साफ साफ सचेत किया, अपने उद्धार के लिए आपको संघर्ष करना होगा। +","ambedkar aanbedakar ne saph saph sachet kiya , apne liberation ke lie own sngharsh karna hoga. +",7,0 +"Indeed, We thus reward the doers of good. +","निस्संदेह हम उत्तमकारों को ऐसा ही बदला देते है +","nissndeh ham reward the doers hi badla dete hai +",6,4 +"If this option is checked, every new view will display marks for code folding, if code folding is available. +","यदि यह विकल्प चुना जाता है, हर नया दृश्य कोड फोल्डिंग के मार्क्स दिखाएगा, यदि कोड फोल्डिंग उपलब्ध है. +","yadi yah option chuna jata hai , har new view code folding ke marks dikhaega , yadi code folding available hai +",7,5 +"We gave the four a row and we gave the eight a row. +","हम 4 को एक पंक्ति देते है और 8 को एक पंक्ति देते हैं. +","ham 4 ko ek row dete hai aur 8 ko ek row dete hain +",8,2 +"and the smell of the earth, the wheat, the grass, the charged particles. +","और मिट्टी, गेहूं, घास की गंध। +","aur earth , wheat , grass ki smell +",9,2 +"He never lost a chance to refer to them in an appreciative voice when delivering important speeches. +","महत्वपूर्ण भाषणों में वे इन दोनों को उद्घृत करना नहीं भूलते थे। +","delivering important speeches ve in donon ko udghrit karna nahin bhoolte the. +",8,4 +"The cyst got intumesce as it was not treated. +","छाले का इलाज न होने के कारण वह सूज गया है. +","chhale ka ilaj n hone ke karan vah cyst gaya hai +",8,1 +"Many scholars - and , of course , there are many who dispute the point - are of the opinion that quite possibly the idea of making a harp originated in the twang of the hunting or martial bow and the plectrum in the arrow . +","हालांकि अनेक विद्वान इस मत का विरोध करते हैं , फिर भी बहुत से विद्वानों की यह मान्यता है कि तंत्र-वाद्य के निर्माण का विचार संभवत : शिकारी या युद्ध संबंधी धनुष और बाण के कोण द्वारा उत्पन्न टंकार से दिमाग में आया होगा . +","halanki anek vidvan is mat ka virodh karte hain , phir bhi bahut se vidvanon ki yah manyta hai ki dispute the point ka vichar snbhavat : hunting or martial snbndhi dhanush aur ban ke kon dvara utpann tnkar se dimag men aaya hoga +",4,5 +"In the year 1985-86, the erstwhile Ministry of Welfare was bifurcated into the Department of Women and Child Development and the Department of Welfare. +","वर्ष 1985-86 में पूर्ववर्ती कल्याण मंत्रालय को महिला एवं बाल विकास विभाग तथा कल्याण विभाग में विभक्त किया गया था। +","year 1985-86 men poorvavarti welfare ministry ko women evn erstwhile development department tatha welfare department men vibhakt kiya gaya tha. +",7,6 +"A pangolin 's territory is around 3 square miles 8 sq km. +","पैंगोलिन का क्षेत्र लगभग आठ वर्ग किलोमीटर का होता है। +","pangolin ka territory lagabhag square varg miles ka hota hai. +",7,4 +"Till, when the Messengers despaired, deeming they were counted liars, Our help came to them and whosoever We willed was delivered. Our might will never be turned back from the people of the sinners. +","पहले के पैग़म्बरो ने तबलीग़े रिसालत यहाँ वक कि जब (क़ौम के ईमान लाने से) पैग़म्बर मायूस हो गए और उन लोगों ने समझ लिया कि वह झुठलाए गए तो उनके पास हमारी (ख़ास) मदद आ पहुँची तो जिसे हमने चाहा नजात दी और हमारा अज़ाब गुनेहगार लोगों के सर से तो टाला नहीं जाता +","pahle ke till ne tablie risalat yahan liars ki jab aum ke eeman lane se paimbar mayoos ho messengers aur un logon ne samajh liya ki vah jhuthlae messengers to unke pas hamari as help aa pahunchi to jise hamne chaha najat di aur hamara azab sinners logon ke sar se to tala nahin jata +",5,1 +"The Ministry of Labour & Employment, Government of India, instituted the National Safety Awards (Mines) in 1983 for the contest year 1982 to promote a competitive spirit amongst mine operators for the betterment of safety standards in mines and to give due recognition to outstanding safety performance at the national level. +","श्रम और रोजगार मंत्रालय, भारत सरकार ने खानों में सुरक्षा मानकों की बेहतरी तथा राष्ट्रीय स्तर पर उल्लेखनीय सुरक्षा निष्पादन को उचित महत्त्व देने के लिए खान संचालकों में प्रतिस्पर्धा की भावना को बढ़ावा देने के लिए प्रतियोगिता वर्ष के लिए 1983 में राष्ट्रीय सुरक्षा पुरस्कार (खान) आरम्भ किए थे। +","labour aur rojgar ministry , india government ne khanon men safety standards ki amongst tatha national level par outstanding safety nishpadan ko due recognition dene ke lie mines operators men competitive ki spirit ko baava dene ke lie contest year ke lie 1983 men national safety puraskar mines aarambh kie the. +",7,1 +"As for those whose deeds weigh light in the scales—it is they who have ruined their souls, because they used to wrong Our signs. +","(और जिनके नेक अमाल के) पल्ले हलके होगें तो उन्हीं लोगों ने हमारी आयत से नाफरमानी करने की वजह से यक़ीनन अपना आप नुक़सान किया +","aur jinke deeds light ke palle halke hogen to unhin logon ne hamari aayat se napharmani karne ki vajah se yainan apna aap nusan kiya +",5,4 +"In fact, Aperture time is also an exposure time given to rays that come to a focus in the image plane through the aperture of an optical system. +","वास्तव में एपर्चर काल ऐसी किरणों को दिया गया विगोपन काल है जो किसी प्रकाशीय पद्धति एपर्चर के माध्यम से चित्र सतह में किसी केन्द्रबिंदु पर आती है। +","vastav men eparchar kal exposure time ko diya gaya vigopan kal hai jo kisi optical system eparchar ke madhyam se chitr satah men kisi kendrbindu par aati hai. +",8,1 +"Dhanpat Rai Shreevastav, who wrote with pen name Premchand (31 July 1880 - 8 October 1936) was one of the greatest Indian , Hindi and Urdu writers. +","प्रेमचंद (३१ जुलाई १८८० - ८ अक्तूबर १९३६) के उपनाम से लिखने वाले धनपत राय श्रीवास्तव हिन्दी और उर्दू के महानतम भारतीय लेखकों में से एक हैं। +","name dhanpat july १८८० - ८ aktoobar pen ke upnam se likhne vale dhanapat ray shrivastav hindi aur urdu ke greatest indian writers men se ek hain. +",5,6 +"And he said: ye have taken images instead of Allah out of affection between you in the life of the world; but on the Day of Resurrection ye shall deny each other and ye shall curse each other, and your resort shall be the Fire, and ye shall have no helpers. +","और उसने कहा, ""अल्लाह से हटकर तुमने कुछ मूर्तियों को केवल सांसारिक जीवन में अपने पारस्परिक प्रेम के कारण पकड़ रखा है। फिर क़ियामत के दिन तुममें से एक-दूसरे का इनकार करेगा और तुममें से एक-दूसरे पर लानत करेगा। तुम्हारा ठौर-ठिकाना आग है और तुम्हारा कोई सहायक न होगा।"" +","aur usne kaha, allah se hatakar tumne kuchh moortiyon ko keval sansarik jivan men apne parasprik prem ke karan pakar rakha hai. phir iyamat ke din tummen se ek-doosre ka inkar karega aur tummen se ek-doosre par lanat karega. tumhara thaur-thikana aag hai aur tumhara koee sahayak n hoga. +",4,7 +"Of the people there are some who say: ""We believe in Allah and the Last Day;"" but they do not (really) believe. +","कुछ लोग ऐसे हैं जो कहते हैं कि हम अल्लाह और अन्तिम दिन पर ईमान रखते हैं, हालाँकि वे ईमान नहीं रखते +","kuchh people aese hain jo kahte hain ki ham allah aur last day par eeman rakhte hain , halanki ve eeman nahin rakhte +",9,0 +"They noticed Chandu Menon steadily enjoying handfuls of the pudding as if nothing had happened. +","उन्होंने देखा कि चन्दु मेनन खुब मजे से खाने पर ऐसे हाथ साफ करने में मशगूल हैं जैसे कुछ हुआ ही नहीं। +","unhonne dekha ki chandu menan khub maje se khane par aese hath saph karne men mashgool hain jaise kuchh huaa hi nahin. +",5,8 +"In the twenty first century Maoist 's rebel spread a lot. +","इक्कीसवीं सदी की शुरुआत में नेपाल में माओवादियों का आन्दोलन तेज होता गया। +","ikkisvin sadi ki shuruaat men nepal men maovadiyon ka aandolan tej hota gaya. +",5,8 +"These poems lack the sombre grandeur of Prantik, for the memory of the Borderland and the haunting sense of the terror and beauty that Meanwhile he was content to relax and watch and savour what simple delight of sight and sound were still left for him on earth. +","इन कविता संकलनों में? प्रांतिक? की विषादपूर्ण श्रेष्ठता नहीं थी, क्योंकि अब सीमा प्रदेश की स्मृति या संत्रास और सौंदर्य का परिवेश थम चला था और कवि एक बार फिर धरती की नर्म बांहों में था. विस्मयकारी उत्कृष्टता का विवेक बाद में लौटा जब अभिव्यक्ति फिर से विषादपूर्ण उत्प्रेरण की ऊचाइयों को छू लेने को होती. इस समय वे उनके लिए धरती पर बचे सामान्य दृश्य और श्रव्य को देखकर बड़े आराम से आश्वस्त हो रहे थे और उनका आनंद उठाते प्रसन्न थे. +","in kavita snkalnon men prantik ki sombre grandeur nahin thi , kyonki terror sima prdesh ki memory ya sntras aur beauty ka parivesh tham chala tha aur kavi ek sound phir earth ki narm banhon men tha vismaykari utkrishtta ka sense bad men lauta jab content phir se sombre utpreran ki oochaiyon ko borderland lene ko hoti is samay ve unke lie earth par bache simple sight aur shravy ko dekhakar bare aaram se aashvast ho rahe the aur unka delight uthate prasann the +",7,1 +"He said, “Our Lord is He who gave everything its existence, then guided it. ” +","मूसा ने कहा हमारा परवरदिगार वह है जिसने हर चीज़ को उसके (मुनासिब) सूरत अता फरमाई +","lord ne kaha everything paravardigar vah hai jisne har chiz ko uske munasib soorat existence pharmaee +",6,2 +"Indeed, We thus reward the doers of good. +","निस्संदेह हम उत्तमकारों को ऐसा ही बदला देते है +","nissndeh ham doers ko aesa hi badla dete hai +",7,2 +"this expression, it 's the derivative of y. +","इस अभिव्यक्ति, यह व्युत्पन्न y का है। +","is expression , yah derivative y ka hai. +",7,3 +"Let me draw a number line here, and I 'm just going to +","इसलिए मैं एक संख्या रेखा खिचने जा रहा हू, और +","islie draw a number line draw ja raha hoo, aur +",4,1 +"It was Senator Obama when they created it. They changed the name later. +","जब उन्होंने इसे बनाया तो वह सेनेटर ऒबामा था. बाद में उन्होंने नाम बदल दिया. +","jab unhonne ise banaya to vah senator obama tha bad men unhonne name badal diya +",6,6 +"No indeed! When it reaches up to the collar bones +","कुछ नहीं, जब प्राण कंठ को आ लगेंगे, +","kuchh nahin, jab pran reaches ko aa lagenge, +",6,8 +"Thereafter, We utterly destroyed the rest, +","(और हलाक हो गयी) फिर हमने उन लोगों को हलाक कर डाला +","aur halak ho rest phir hamne un logon ko halak kar dala +",6,0 +"Exposure time will be shifted forward by% d% s,% d% s,% d% s, and% d% s. +","एक्सपोजर समय आगे बढ़ा दिया जाएगा% d% s,% d% s,% d% s, और% d% s से. +","exposure time forward baa diya jaega d s, d s, d s, aur d s se +",6,1 +"Cement Machinery: - there are 18 units in the organized sector for the manufacture of complete cement plant machinery. +","सीमेंट मशीनरीः-पूर्ण सीमेंट संयंत्र मशीनरी के विनिर्माण के लिए संगठित क्षेत्रक में 18 यूनिट हैं। +","cement mashinria-poorn cement machinery units ke vinirman ke lie sngthit sector men 18 yoonit complete +",5,7 +"literature fo various dialects of hindi are still popular today, and even today, many poets and writers use regional languages for their work +","हिंदी की विभिन्न बोलियों का साहित्य आज भी लोकप्रिय है और आज भी अनेक कवि और लेखक अपना लेखन अपनी-अपनी क्षेत्रीय भाषाओं में करते हैं। +","hindi ki vibhinn dialects of hindi aaj bhi lokapriy hai aur aaj bhi anek poets and writers apna lekhan apni-apni kshetriy bhashaon men karte hain. +",6,4 +"In the last Conference of Vice Chancellors, we took a number of decisions. +","कुलपतियों के विगत सम्मेलन में, हमने अनेक निर्णय लिए। +","chancellors ke vigat sammelan men, hamne anek nirnay lie. +",8,1 +"The Vision Statement highlighting the Perspective Plan 2015 of the Department of Ocean Development was formulated in the year 2002 stipulating the Vision, the Mission, the Mandate and the Priority Areas, to be pursued by the Department over the next decade. +","विभाग के लिए परिदृश्य परिसंकल्प 2015 को 2002 में बनाया गया था। इसमें अगले दशक के दौरान उन विभिन्न मिशनों, प्राथमिकता क्षेत्रों, दायित्वों आदि की पहचान की गई है जिन्हें विभाग प्राप्त करने का प्रयास करेगा। +","department ke lie vision parisnkalp 2015 ko 2002 men statement gaya plan ismen next decade ke dauran un vibhinn mission , priority areas , dayitvon aadi ki pahchan ki year hai jinhen department prapt karne ka pryas karega. +",7,1 +"The higher education sector is witnessing sweeping changes the world over. +","उच्च शिक्षा क्षेत्र में पूरे विश्व में तीव्र बदलाव आ रहे हैं। +","higher education sector men poore vishv men tivr changes aa rahe hain. +",7,3 +"May we Work Together with Vigour and Energy +","हम मिलकर उत्साह और ऊर्जा के साथ कार्य करें +","ham milakar energy aur vigour ke sath kary karen +",8,2 +"Do they seek to hasten Our chastisement? +","तो क्या ये लोग हमारे अज़ाब की जल्दी कर रहे हैं +","to kya ye log hamare seek to hasten kar rahe hain +",7,3 +"Show the properties and metadata of the selected image +","चयनित छवि की मेटाडेटा व गुण दिखाएँ +","selected properties and metadata v gun show +",6,0 +"A conflict or disagreement comes into being or originates. +","कोई टकराव या असहमति पैदा होती है या अस्तित्व में आती है। +","koee takrav ya asahamti paida hoti hai ya astitv conflict or disagreement +",3,5 +"It shduld be recommended by the Tahsil Committee; 4. +","3. तहसील कमेटी द्वारा उसकी सिफारिश की जानी चाहिये। +","3 tahsil committee dvara uski recommended ki jani chahiye. +",9,0 +"They were the products of the revolution. +","वे क्रान्ति की सन्तानें थीं. +","ve revolution ki products thin +",8,1 +"The Indian Government has been disinvesting from the basic education for last 5 years. +","भारतीय सरकार पिछले 5 वर्षों से बुनियादी शिक्षा से विनिवेश कर रही है। +","indian government last 5 varshon se basic education se vinivesh kar rahi hai. +",9,2 +"The flow of thought ran through my mind. +","दिमाग से विचार का प्रवाह निकल गया। +","mind se thought ka flow ran gaya. +",6,5 +"Observe the fly land on the ceiling of your zoom after its flight. +","घरेलू मक्खी को उड़ान के बाद अपने कमने की छत पर बैठते हुए देखिए। +","ghareloo fly ko zoom ke bad apne kamne ki ceiling par baithte hue dekhie. +",8,4 +"The pots have to be exposed to sunlight as the spirulina takes 3 to 4 days to mature. +","चूंकि स्पाइरुलिना को बढ़ने में 3-4 दिन लग जाते हैं इसलिए पॉट पर सूर्य की रोशनी अवश्य पड़नी चाहिए। +","choonki spairulina ko bane men 3-4 din lag jate hain islie pt par soory ki roshni avashy parni chahie. +",8,1 +"In response to popular demand, he would also include his old stage hits in his repertoire. +","जनता की मांग पर उन्होंने अपने पुराने सफल रंगमंच नाटक भी रंगपटल पर सम्मिलित किये। +","response to popular par unhonne apne purane saphal rngmnch natak bhi rngapatal par sammilit kiye. +",7,2 +"Veer Savarkar 's Trial A number of people on the quay commenced to shout,' arretezle '. +","तट पर अनेक व्यक्ति अरेटेजेल पकड़ो... चिल्लाने लगे। +","trial par number people quay pakaro chillane lage. +",5,4 +"We need really to see it. And instead of looking at this, +","हमें वास्तव में इसे देखने की ज़रूरत है और इसे देखने की अपेक्षा +","hamen vastav men ise dekhne ki zaroorat hai aur ise dekhne ki apeksha +",5,8 +"The increasing adoption of the continuous casting process by the integrated steel plants would mean that they will themselves use most of the scrap generated by them . +","समन्वित इस्पात मिलों द्वारा निरन्तर कास्टिंग प्रक्रिया के अपनाने का अर्थ होगा कि अपने ही संयंत्रों से निकले टुकड़ों ( स्क्रेप ) का वे स्वयं उपयोग करेंगे . +","integrated steel plants dvara continuous casting process ke apnane ka arth hoga ki apne hi snyntron se nikle tukaron skrep ka ve svyn upyog karenge +",7,5 +"(ii) continuous modernization as well as implementation of de - bottlenecking and technology upgradation schemes in the older plants; +",". पुराने संयंत्रों में निरंतर आधुनिकीकरण तथा बाधाओं को दूर करना और प्रौद्योगिकी उन्नयन +","older implementation men continuous modernization tatha badhaon ko ii karna aur technology upgradation +",5,3 +"Colostrum, which is the first yellowish secretion from the breast, is full of substances that protect the baby from getting an infection; it 's almost like a vaccine. +","स्तन से निकलनेवाला पीले रंग का द्रव, जिसे कोलोस्ट्रम कहते हैं, शिशु को संक्रमण से बचाने और उसकी प्रतिरोधक क्षमता को मजबूत करने का सबसे अच्छा उपाय है। यह एक टीका है। +","breast se nikalnevala yellowish rng ka drav , jise colostrum kahte hain , baby ko infection se bachane aur uski prtirodhak kshamta ko majboot karne ka sabse achchha upay first yah ek vaccine first +",8,0 +"I congratulate him for winning this coveted award. I am sure he will continue to enrich Hindi literature in the years to come. +","मैं इस प्रतिष्ठित पुरस्कार को जीतने के लिए उन्हें बधाई देता हूं। मुझे विश्वास है कि वह आने वाले वर्षों में हिंदी साहित्य को समृद्ध करते रहेंगे। +","i is prtishthit award ko jitne ke lie unhen badhaee deta years mujhe sure hai ki vah aane vale varshon men hindi literature ko samriddh karte rahenge. +",7,0 +"You can not store this. +","आप इसे संग्रहित नही कर सकते। +","aap ise sngrhit nahi kar sakte. +",9,1 +"No doubt it was the foremost troupe at the time. +","निस्संदेह यह उस समय की सर्वश्रेष्ठ मंडली थी। +","doubt yah us time ki foremost troupe thi. +",5,3 +"And We shall bring hell in front of the disbelievers. +","और उस दिन जहन्नम को इनकार करनेवालों के सामने कर देंगे +","aur us din hell in front karnevalon ke samne kar denge +",3,5 +"Microscope was used to observe the tissue. +","ऊतकों को देखने के लिए सूक्ष्मदर्शी प्रयोग किया गया +","observe the tissue ke lie microscope pryog kiya gaya +",8,2 +"you haven 't heard from in years. +","जिनसे काफी दिनों से बात नहीं हुई हो। +","jinse kaphi dinon se bat nahin huee ho. +",7,6 +"ATAL BIHARI VAJPAYEE: SELECTED SPEECHES Firstly, it helps correct a grave distortion that has taken place in public consciousness. +","पहला, इससे जन-चेतना में आने वाली एक गंभीर विकृति को दूर करने में मदद मिलती है। +","pahla, isse jan-chetna men aane vali ek gnbhir vikriti ko door karne men madad milti hai.1 +",7,2 +"Ladies and Gentlemen, manpower and technology are the prime drivers of industrial progress. +","देवियो और सज्जनो, जनशक्ति और प्रौद्योगिकी, औद्योगिक प्रगति के प्रमुख प्रेरक हैं। +","ladies aur gentlemen , manpower aur technology , industrial progress ke prime drivers hain. +",9,1 +"So do not obey the deniers. +","अतः तुम झुठलानेवालों को कहना न मानना +","do tum deniers ko kahna n manna +",7,3 +"Then God sent a raven, which scratched the earth, so that He might show him how to hide the corpse of his brother. ""Alas!"" he cried, ""Am I not able even to be like this raven, so that I may hide the corpse of my brother?"" And he repented. +","(तब उसे फ़िक्र हुई कि लाश को क्या करे) तो ख़ुदा ने एक कौवे को भेजा कि वह ज़मीन को कुरेदने लगा ताकि उसे (क़ाबील) को दिखा दे कि उसे अपने भाई की लाश क्योंकर छुपानी चाहिए (ये देखकर) वह कहने लगा हाए अफ़सोस क्या मैं उस से भी आजिज़ हूं कि उस कौवे की बराबरी कर सकॅू कि (बला से यह भी होता) तो अपने भाई की लाश छुपा देता अलगरज़ वह (अपनी हरकत से) बहुत पछताया +","tab use fikr huee ki corpse ko kya kare to earth ne ek raven ko bheja ki vah zamin ko kuredne able taki use abil ko dikha de ki use apne brother ki corpse kyonkar alas chahie ye dekhakar vah kahne able hae afsos kya i us se bhi aajiz hoon ki us raven ki barabri kar sakoo ki bala se yah bhi hota to apne brother ki corpse chhupa deta alagaraz vah apni harakat se bahut pachhtaya +",6,3 +"Display options for Brasero - burn library +","ब्रैसेरो बर्न लाइब्रेरी के लिए प्रदर्शक विकल्प +","brasero barn library ke lie display options +",8,3 +"He added that he had entirely abandoned himself to the French nation, which called itself the land of fraternity, equality and liberty, and as such, he would not take any part in the trial. +","उन्होंने आगे कहा कि वह खुद को पूरी तरह उस फ्रांस पर छोड़ चुके हैं, जो स्वाधीनता, समानता और बंधुत्व का दम भरता है, इसलिए वह इस मुकदमे में बिलकुल भाग नहीं लेंगे। +","nation land kaha ki vah khud ko poori tarah us french par chhor chuke hain , jo liberty , equality aur fraternity ka dam bharta hai , islie vah is mukadme men bilkul part nahin lenge. +",7,2 +"From here the trekkers enter the deep valley and have to cross many small rivulets and huge rocks. +","यहां से ट्रैकर्स गहरी घाटी में प्रवेश करते हैं और उन्हें मार्ग में कई छोटे-छोटे नाले और बड़े-बड़े पत्थर पार करने पड़ते हैं। +","cross many small gahri enter the deep karte hain aur unhen marg men kee chhote-chhote nale aur bare-bare patthar par karne parte hain. +",3,4 +"This helps us to determine the lower time - limit of the period of their compilation. +","इसमें हमें उनके संकलन की निम्नतम समय-सीमा निर्धारित करने में सहायता मिलती है. +","ismen lower unke compilation ki limit samay-sima time karne men sahayta milti hai +",6,0 +"♫ from the edge of the observable universe ♫ +","♫ देखे जाने वाले ब्रह्मांड के किनारे से ♫ +","dekhe jane vale universe ke kinare se +",8,1 +"But a higher standard of material life has a cultural content only when it is imbued with, or serves as a means of attaining some ultimate moral value. +","किंतु उच्च स्तर के भौतिक जीवन संस्कृति का अंश तभी आता हैं, जबकि वह उसमें संश्लिष्ट हो उच्च नैतिक मूल्यों को प्राप्त करने का कोई माध्यम बने. +","kintu uchch standard of material jivan snskriti ka ansh tabhi aata hain, jabki vah usmen snshlisht ho uchch naitik moolyon ko prapt karne ka koee madhyam bane +",8,2 +"Traditionally, welding has been used as a means of fabrication. +","पारम्परिक रूप से वेल्डिंग को विनिर्माण के साधन के रूप में उपयोग किया गया है। +","paramprik roop se fabrication ko vinirman ke means ke roop men upyog kiya gaya hai. +",6,2 +"The main purpose of my visit was to further strengthen our multi-faceted relations and consolidate our ties. +","मेरी यात्रा का मुख्य उद्देश्य हमारे बहु-आयामी रिश्तों को और मजबूत बनाना तथा अपने रिश्तों को प्रगाढ़ करना था। +","meri yatra ka main purpose hamare bahu-aayami rishton ko aur majboot banana tatha apne rishton ko consolidate our ties +",7,1 +"Then we can sit down and discuss all aspects of the matter. +","उस हालत में हम मिल बैठकर सभी पक्षों पर विचार कर सकते हैं। +","us matter men ham mil baithakar sabhi aspects par vichar kar sakte hain. +",9,2 +"In those days i. e. before 1947 Urdu was the State language of the Punjab, and Punjabi was grossly neglected by the intellectuals, most of who behaved like 'Sahibs' in their speech, mannerisms, etc. +","उन दिनों 1947 से पूर्व उर्दू पंजाब की राजभाषा थी और बुद्धिजीवी जिनमें से अधिकांश तो अपनी बातचीत व व्यवहार में साहिबों जैसा व्यवहार करते थे तछा पंजाबी की पूरी तरह उपेक्षा करते थे। +","un days mannerisms se poorv urdu punjab ki most thi aur intellectuals jinmen se adhikansh to apni speech v state men sahibon jaisa state karte the tachha punjabi ki poori tarah upeksha karte the. +",7,6 +"The period of compulsory isolation to control the spread of infectious disease. +","संक्रामक रोग के प्रसार को नियंत्रित करने के लिए अनिवार्य अलगाव की अवधि. +","infectious disease ke control the spread karne ke lie anivary isolation to control +",6,4 +"With these words, I have great pleasure to inaugurate this Congress. +","इन शब्दों के साथ मुझे इस सम्मेलन का उदघाटन करते हुए प्रसन्नता हो रही है। +","in words ke sath i is congress ka udghatan karte hue pleasure ho rahi hai. +",7,2 +"She cut the cake into six pieces and gave one to each of the children. +","उसने केक को छः टुकड़ो में काटकर, हर बच्चे हो एक टुकड़ा दिया। +","usne cake ko chha pieces men katakar , har children ho ek tukara diya. +",8,4 +"Life is not but our worldly life - we die and live, but we will not be resurrected. +","कि हम मरते भी हैं और जीते भी हैं और हम तो फिर (दुबारा) उठाए नहीं जाएँगे हो न हो ये (सालेह) वह शख्स है जिसने खुदा पर झूठ मूठ बोहतान बाँधा है +","ki life marte bhi hain aur jite bhi hain aur life to phir worldly uthae nahin jaenge ho n ho ye saleh vah shakhs hai jisne khuda par jhooth mooth bohtan bandha hai +",6,3 +"At the end of second act dialogue between Raja Sruthoson and the music composer Nanda mentions the name of Brahmadutt. +","दूसरे अंक के अंत मे राजा सुतसोम और गाथाकार नन्द की बातचीत है जिसमे भी ब्रह्रादत का उल्लेख होता है। +","doosre ank ke ant me raja sutsom aur gathakar nand ki batchit hai jisme bhi brahradat ka ullekh hota hai. +",9,2 +"Language model adapts as you write. +","भाषा मॉडल अनुकूलित करता है जैसे आप लिखते हैं +","language model adapts karta hai jaise aap write hain +",8,0 +"It treats of the sacrifices to the fire , and is recited in three different ways . +","इसमें यज्ञों का विवेचन है और इसका पाठ तीन भिन्न प्रकार से किया जाता +","ismen sacrifices ka vivechan hai aur iska path tin different prkar se kiya jata +",8,1 +"Continuous sound that is produce by something that buzzes. +","किसी वस्तु द्वारा उत्पन्न भिभिनाहट की क्रमिक ध्वनि +","kisi something dvara utpann bhibhinahat ki continuous sound +",7,0 +"Since Bala himself will be speaking at TED +","क्योंकि बाला खुद बाद में TED में बोल रहे हैं +","kyonki bala khud bad men TED men bol rahe hain +",10,0 +"(4) Where the net tonnage of ships chartered in exceeds the limit under sub-section (1) during any previous year, the total income of such company in relation to that previous year shall be computed as if the option for tonnage tax scheme does not have effect for that previous year. +","(4) जहां भाड़े पर लिए गए पोतों का शुद्ध टनभार, किसी पूर्ववर्ष के दौरान उपधारा (1) के अधीन वर्णित सीमा से अधिक हो जाता है, वहां ऐसी कंपनी की, उस पूर्ववर्ष के संबंध में कुल आय की संगणना इस प्रकार की जाएगी मानो उस पूर्ववर्ष के लिए टनभार कर स्कीम संबंधी विकल्प का कोर्इ प्रभाव नहीं था। +","4 jahan bhare par lie ge poton ka shuddh tanbhar, kisi poorvavarsh ke dauran updhara 1 ke limit under sub-section se adhik ho jata hai, vahan aesi knpni ki, us poorvavarsh ke snbndh men kul aay ki snganna is prkar ki jaegi mano us poorvavarsh ke lie tanbhar kar skim snbndhi vikalp ka kori prbhav nahin tha. +",4,6 +"Opening image ""% s"" +","""% s"" छवि सहेज रहा है +","s image sahej raha hai +",7,3 +"So my question is, if it can be done in Europe, +","तो मेरा प्रश्न है, कि यदि ये यूरोप में किया जा सकता है, +","to mera question hai, ki yadi ye europe men kiya ja sakta hai, +",9,1 +"Scientists analyse genes by taking a sample of DNA from an organism and sequencing it . +","वैज्ञानिक , जीव से डीएनए का नमूना लेकर तथा इसे क्रमबद्ध करके जीन का विश्लेषण करते हैं . +","scientists , organism se dna ka sample lekar tatha ise kramabaddh karke genes ka vishleshan karte hain +",8,3 +"O dear Prophet (Mohammed – peace and blessings be upon him), wage holy war against the disbelievers and the hypocrites, and be strict with them; and their destination is hell; and what a wretched outcome! +","ऐ नबी! इनकार करनेवालों और कपटाचारियों से जिहाद करो और उनके साथ सख़्ती से पेश आओ। उनका ठिकाना जहन्नम है और वह अन्ततः पहुँचने की बहुत बुरी जगह है +","o wage ! inkar karnevalon aur hypocrites se war wretched aur unke sath destination se pesh aao. unka outcome jahannam hai aur vah antta pahunchne ki bahut buri jagah hai +",2,2 +"Run an application by typing a command or choosing from a list +","कमांड प्रविष्ट कर एक अनुप्रयोग चलाएँ या सूची से चुनकर +","command prvisht kar ek application chalaen ya list se chunakar +",7,3 +"So, a smaller group, whether it is called a steering committee or something else, is needed which can be more active and can meet more frequently and with less expenses. +","इसीलिये एक ज्यादा छोटे समूह की जरूरत है, चाहे उसे आप कार्य संचालन समिति कहें या कुछ और, जो साल में कई बार मिल सके, अधिक सक्रिय हो सके और कम खर्च से काम चला सके। +","isiliye ek jyada smaller group ki jaroorat hai, chahe use aap kary snchalan samiti kahen ya kuchh aur, jo sal men kee bar mil sake, adhik sakriy ho sake aur kam kharch se kam chala sake. +",6,4 +"The production of a play is an exacting experience in planning and organization, hence it should not be done until children are ready to take responsibility and to profit by the work necessary for it. +","नाटक तैयार करने के लिए जिस योजना तथा संगठन की आवश्यकता होती है, उसे जुटा पाना आसान नहीं है; अतः इस कार्य को तभी हाथ में लेना चाहिए जब बच्चे उत्तरदायित्व को निभाने और आवश्यक परिश्रम से पूरा लाभ उठाने के लिए तैयार हों। +","play ready karne ke lie jis planning tatha organization ki necessary hoti hai , use juta pana aasan nahin hai hence is work ko tabhi hath men lena chahie jab children responsibility ko nibhane aur aavashyak parishram se poora experience uthane ke lie ready hon. +",8,4 +"His ominous tone echoed Pakistani concerns about the lack of representation of the majority Pashtoon community within the Northern Alliance. +","उनकी तल्खी से एलयंस में भ-संयक पतून समुदाय का प्रतिनिधित्व न होने को लेकर पाकिस्तान की चिंता ज्ह्लकती थी. +","unki tone se northern men bh-snyak pashtoon community ka representation n hone ko lekar pakistani ki concerns jhlakti thi +",7,1 +"9. For general advice please contact our general enquiry service 9 +","आम सलाह के लिए कृपया हमारी आम पूछताछ सेवा पर संपर्क करें। +","aam salah ke lie kripya hamari aam enquiry service par snpark advice +",7,3 +"Besides the above, there are other symbols of the village gods. +","इनके अतिरिक्त, ग्रामीण देवताओं के अन्य प्रतीक भी हैं। +","inke above , village gods ke other symbols bhi hain. +",7,3 +"All his reviews are based on this criterion and hence do not go further than assessing the thought and discussing the language. +","उनकी समीक्षायें इन्हीं मापदण्डों पर आधारित होती हैं, अतः वह विचारों के मूल्यांकन और भाषा की चर्चा से आगे नहीं बढ़ पाते। +","unki reviews inhin mapadandon par aadharit hoti hain , ata vah thought ke moolyankan aur language ki charcha se criterion nahin ba pate. +",8,0 +"Many of them are likely to return to India, but while they live abroad, all of them are vulnerable in many ways owing to the fact that they do not enjoy the privileges of citizenship in their host country. +","उनमें से बहुतों के भारत लौटने की संभावना है परंतु विदेश में रहने पर वे सभी इस सच्चाई की वजह से असुरक्षित हैं कि उन्हें अपने मेजबान देश की नागरिकता के लाभ नहीं मिलते हैं। +","unmen se bahuton ke bharat lautne ki snbhavna hai parntu videsh men rahne par ve sabhi is sachchaee ki vajah se asurakshit hain ki unhen apne mejban desh ki nagrikta ke labh nahin milte hain. +",9,1 +"The amount of space between two consecutive rows +","दो लगातार पंक्तियों के बीच की दूरी +","do consecutive amount of space ki doori +",5,0 +"He was complaining of retching since two days. +","वह दो दिनों से उबकाई की शिकायत कर रहा था. +","vah do days se ubkaee ki shikayat kar raha tha +",9,2 +"Quotation is invited for purchase of note briquettes of 40 Kgs (approx) per bag in sealed cover superscribed “Quotation for Purchase of Note Briquettes” and addressed to the General Manager, Issue Department, Reserve Bank of India, Kolkata - 700001” so as to reach the office on or before 14: 00 hrs on June 24, 2015 on the following terms and conditions. +","निम्नलिखित नियमों और शर्तों पर मुहरबंद लिफाफे में, जिसके ऊपर ‘नोट ब्रिकेट्स की खरीद के लिए निविदा ‘ लिखा हो और जो महाप्रबंधक, निर्गम विभाग, भारतीय रिज़र्व बैंक, कोलकाता – 700 001 को संबोधित हो, प्रति बैग 40 किलोग्राम (लगभग) के नोट ब्रिकेट्स की खरीद के लिए कोटेशन का आमंत्रण इस तरह से किया जाता है कि यह 24 जून 2015 को 14:00 बजे अथवा उसके पूर्व कार्यालय में पहुंच जाए। +","cover niymon aur conditions par sealed liphaphe men , jiske issue india note quotation ki purchase ke lie nivida india likha ho aur jo general , nirgam department , bhartiy rizarv bank , kolkata 700 001 ko snbodhit ho , prti bag 40 kgs approx ke note quotation ki purchase ke lie koteshan ka aamntran is tarah se kiya jata hai ki yah 24 june 2015 ko 14:00 hrs athva uske poorv karyalay men pahunch jae. +",7,2 +"If 20gms of the magaj is soaked in one cup of lukewarm water, a brown coloured colour of Burgundy wine, mildly aromatic drink is obtained. +","यदि 20 ग्राम मगज एक कप गुनगुने पानी में अवशोषित किया जाये तो भूरे रंग बर्गंडी वाइन का रंग का हल्का सुंगधित पेय तैयार हो जायेगा। +","yadi 20 gram magaj ek cup lukewarm water men avshoshit kiya jaye to brown colour bargndi wine ka colour ka halka sungdhit drink taiyar ho jayega. +",8,0 +"A time of acute difficulty in financial matters. +","वित्तीय मामलों में संकट की घडी। +","financial time of acute ki ghadi. +",6,2 +"All data is encrypted with your sync passphrase +","सभी डेटा आपके समन्वयन पासफ़्रेज़ के साथ एन्क्रिप्ट किया जाएगा +","sabhi data aapke sync passphrase ke sath enkript kiya jaega +",7,3 +"Ever since Mamata broke away to form the Trinamool in 1997 , there has been a string of desertions from the Congress . +","ममता ने 1997 में पार्टी से अलग होकर तृकां बनाई थी तबसे पार्टी से नेताओं के जाने का सिलसिल जारी है . +","mamta ne 1997 men parti se alag hokar trikan banaee thi tabse parti se netaon ke string of desertions jari hai +",8,1 +"In order to be possessor of his being with any complete reality of freedom and mastery, man must find out his highest self, the real man or highest Purusha in him, which is free and master in its own inalienable power. +","मनुष्य को किसी पूर्ण रूप से सच्ची स्वतन्त्रता और प्रभुता के साथ अपनी सत्ता का स्वामी बनने के लिये अपनी उच्चतम आत्मा को, अपने अन्दर के उस वास्तविक मनुष्य या उच्चतम पुरुष को, ढूंढ़ना होगा जो स्वतन्त्र है तथा अपनी अविच्छेद्य शक्ति का स्वामी है। +","freedom ko kisi complete roop se sachchi svatantrta aur mastery ke sath apni reality ka possessor banne ke liye apni highest order ko , apne andar ke us real freedom ya highest purush ko , dhoonna hoga jo svatantr hai tatha apni avichchhedy shakti ka possessor hai. +",7,2 +"With the fingerprints of the man in their custody matching Chhota Rajan 's specimen prints provided by the Mumbai police, the Thai police are clear about his identity. +","थाई पुलिस अपनी हिरासत में मौजूद व्यैक्त की उंगलियों के निशान मुंबई पुलिस द्वारा भेजे गए छोटा राजन की उंगलियों के निशान से मिलने से उसकी पहचान को लेकर निश्चिंत है. +","thai police apni hirasat men maujood vyaikt ki ungliyon ke nishan munbee pulis dvara bheje ge chhota specimen prints provided ke nishan se milne se uski pahchan ko lekar nishchint hai +",6,3 +"yet there are over you watchers +","जबकि तुमपर निगरानी करनेवाले नियुक्त हैं +","jabki tumapar watchers karnevale niyukt hain +",7,1 +"All right, this is another one that should be cut and pasted. +","सब ठीक है, यह एक और एक कि काटा और चिपकाया जाना चाहिए है। +","sab thik hai, yah ek aur ek ki cut and pasted jana chahie cut +",8,0 +"He spread out the earth for the people. +","और उसी ने लोगों के नफे क़े लिए ज़मीन बनायी +","aur usi ne logon ke naphe e lie earth banayi +",9,0 +"WHAT WILL I EARN? 20 +","मेरी आमदनी क्या होगी? 25। +","meri aamadni kya hogi 25. +",8,4 +"Sudhir, run and call Panu Babu. +","सुधीर, तुम दौड़कर जाओ, पानू बाबू को फौरन बुला लाओ। +","sudhir, tum daurakar jao, panoo baboo ko phauran bula lao. +",8,0 +"What is today 's status of Consolidated Stock? +","समेकित स्टॉक की आज की स्थिति क्या है। +","consolidated stock ki aaj ki status kya stock +",7,4 +"For services in Wales contact: Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. +","वेल्स में सेवाओं के लिए सम्पर्क:-Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. टेलीफ़ोन नम्बर ०२२२ ८२५१११ +","wales men services ke lie contact : -Welsh Office Drugs Unit , Welsh Office , Cathays office , Cardiff CF1 3NQ telifon nambar ०२२२ ८२५१११ +",8,1 +"Device does not support FILTER _ SLOT property. +","उपकरण में FILTER _ SLOT गुण समर्थन उपलब्ध नहीं है. +","upakaran men FILTER _ SLOT gun samarthan upalabdh nahin hai +",8,3 +"And that He may punish the Hypocrites, men and women, and the Polytheists men and women, who imagine an evil opinion of Allah. On them is a round of Evil: the Wrath of Allah is on them: He has cursed them and got Hell ready for them: and evil is it for a destination. +","और मुनाफिक़ मर्द और मुनाफ़िक़ औरतों और मुशरिक मर्द और मुशरिक औरतों पर जो ख़ुदा के हक़ में बुरे बुरे ख्याल रखते हैं अज़ाब नाज़िल करे उन पर (मुसीबत की) बड़ी गर्दिश है (और ख़ुदा) उन पर ग़ज़बनाक है और उसने उस पर लानत की है और उनके लिए जहन्नुम को तैयार कर रखा है और वह (क्या) बुरी जगह है +","aur hypocrites men aur munafi aurton aur polytheists men aur polytheists aurton par jo evil ke ha men bure bure opinion rakhte hain wrath nazil kare un par musibat ki round gardish hai aur evil un par zabnak hai aur usne us par lanat ki hai aur unke lie jahannum ko ready kar rakha hai aur vah destination buri jagah hai +",7,2 +"The tribals also depend on the bamboo to augment their incomes . +","आदिवासी अपनी आय बढने के लिए भी बांस पर निर्भर रहते हैं . +","tribals apni incomes badhne ke lie bhi bamboo par nirbhar rahte hain +",7,1 +"organs superficially appear to be similar and perform the same function. +","बाहरी दिखावे में अंग एक जैसे दिखें और एक ही प्रकार का कार्य कर रहे हों। +","bahri function perform ang ek jaise dikhen aur ek hi prkar ka kary kar rahe hon. +",6,2 +"He usually speaks impeccable English and you think for a moment that you are perhaps better off here than in China. +","वे आम तौर पर अच्छी अंग्रेजी बोलते हैं और एक क्षण के लिए लगेगा कि चीन की तुलना में शायद यहां बेहतर स्थिति है. +","ve aam taur par achchhi angreji bolte hain aur ek kshan ke lie lagega ki chin ki tulna men shayad yahan behatar sthiti hai +",10,0 +"Server 's certificate cannot be checked. +","सर्वर प्रमाणपत्र की जांच नहीं की जा सकती. +","server certificate ki janch nahin ki ja sakti +",10,0 +"Therefore that process is not sufficient for our Yoga; something else is needed more embracingly positive. +","इसलिये वह विधि हमारे योग के लिये पर्याप्त नहीं; किसी और साधन की भी आवश्यकता है जो अधिक सर्वग्राही रूप में भावात्मक हो। +","isliye vah process hamare yoga ke liye sufficient nahin kisi aur sadhan ki bhi aavashyakta hai jo adhik sarvagrahi roop men positive ho. +",8,3 +"to the focus points and saying it 's a constant. +","यह एक निरंतर ध्यान केंद्रित अंक और कह रही करने के लिए है। +","yah ek constant focus kendrit points aur kah rahi karne ke lie hai. +",8,0 +"View the output produced by the last executed command +","अंतिम कार्यान्वित कमांड द्वारा उत्पादित आउटपुट देखेंFile +","antim executed command dvara output produced dekhenFile +",8,2 +"So from A, we look at the neighbors of A. The neighbors of A are B and C. +","इसलिए A से, हम ए के पड़ोसियों में देखो B और c. A के पड़ोसी हैं +","islie A se , ham b ke neighbors men dekho B aur c A ke parosi hain +",6,4 +"Will you sing me a Beatles' song? +","तुम मेरे लिए एक बीटल्स का गाना गा सकते हो क्या? +","tum mere lie ek bitals ka song ga sakte ho kya +",10,0 +"The Arya Samaj preacher is never so happy as when he is reviling other religions. +","आर्य समाजी उपदेशकों को जो मजा दूसरे धर्मो पर कीचड़ उछालने में आता है, वह मजा और किसी बात में नहीं आता। +","samaj preacher updeshkon ko jo maja doosre dharmo par kichar uchhalne men aata hai, vah maja aur kisi bat men nahin aata. +",5,6 +"A tape with a magnetizable layer on which data can be stored. +","चुंबकीय परत वाला एक टेप, जिसपर डेटा संग्रहीत किया जा सकता है. +","chunbkiy layer vala ek tape , jisapar data sngrhit kiya ja sakta hai +",8,1 +"“O sister of Haroon, neither was your father an evil man nor was your mother of poor conduct! ” +","हे हारून की बहन! न तो तेरा बाप ही कोई बुरा आदमी था और न तेरी माँ ही बदचलन थी। "" +","he haroon ki sister! n to tera bap hi koee evil man tha aur n teri man hi badachalan thi. +",7,2 +"When I used dynamic fonts on a colored background, the color around the text is different from the rest of the background, only in a Netscape browser. +","जब मैंने एक रंगीन पृष्ठभूमि में डायनामिक फ़ॉन्ट का उपयोग किया, टेक्स्ट के आसपास का रंग पृष्ठभूमि के बाकी हिस्सों के रंग से अलग था जो केवल एक नेटस्केप ब्राउज़र में होता है. +","jab mainne ek rngin background men dynamic text ka upyog kiya , tekst ke aaspas ka i background ke rest hisson ke i se different tha jo keval ek netscape browser men hota hai +",7,5 +"When Manohar was transferred to Amudalavalasa , the couple put their through the weight-training regimen at the Ammi Naidu gym in the district headquarters town of Srikakulam . +","मनोहर का तबादल अमूदलवलसा हा तो वहां दोनों ने श्रीकाकुलम जिल मुयालय स्थित अमी नायड़ू जिम में अयास जारी रखा . +","manohar ka town couple ha to vahan donon ne shrikakulam district headquarters sthit ammi naidu gym men ayas jari rakha +",8,0 +"The Rajghat Dam is almost complete. +","राजघाट बांध का निर्माण कार्य लगभग पूरा हो चुका है। +","rajghat dam ka nirman kary lagabhag poora ho chuka complete +",3,5 +"Administer to any party to arbitration +","पंच निर्णय के लिए पक्षकार को सौंप देना +","arbitration nirnay ke lie party ko saunp administer +",6,0 +"Realizing the growth of embedded systems in day - to - day life and the need for trained manpower in this promising area, C - DAC has launched a Diploma in Embedded Systems Design (DESD) for Engineers in computers, electronics and IT. +","दैनिक जीवन में एंबेडेड सिस्टम एवं महत्वपूर्ण क्षेत्रों में प्रशिक्षित मानव संसाधन की बढ़ती आवश्यकता को ध्यान में रख कर सी-डैक ने कम्प्यूटर, इलेक्ट्रॉनिक्स और आइटी इंजीनियरों के लिए एंबेडेड सिस्टम डिजाइन में डिप्लोमा () पाठ्यक्रम की शुरूआत की है। +","day life men embedded sistam evn mahatvpoorn area men trained manav snsadhan ki bati need ko dhyan men growth kar si-daik ne computers , electronics aur aaiti engineers ke lie embedded sistam dijain men diploma pathyakram ki shurooaat ki hai. +",7,1 +"This vagueness persisted in the dynamical equations for the particles. +","यह अस्पष्टता कणों के गतिकीय समीकरणों में चलती रही। +","yah vagueness particles ke dynamical equations men chalti rahi. +",10,0 +"Goods which have not been given a final shape. +","वह माल जिसे अभी अंतिम रूप दिया जाना बाकी है। +","vah goods jise abhi final shape diya jana baki hai. +",9,2 +"And if terrorist is impolite, adjectives such as Islamist, Islamic, and Muslim become unmentionable. My blog titled “Not Calling Islamism the Enemy ” provides copious examples of this avoidance, along with its motives. In short, those who would replace War on Terror with A Global Struggle for Security and Progress imagine this linguistic gambit will win over Muslim hearts and minds. +","और यदि आतंकवादी असभ्य हैं तो इस्लामवादी, इस्लामी और मुस्लिम का उल्लेख करने से परहेज किया जाता है। मेरे ब्लाग Not calling Islamism the Enemy में इस बात के उदाहरण दिये गये हैं कि इससे परहेज क्यों किया जाता है और इसका उद्देश्य क्या है? संक्षेप में जो लोग आतंक के विरुद्ध युद्ध को सुरक्षा और विकास के लिये वैश्विक संघर्ष के रूप में नया नाम देना चाहते हैं उन्हें कल्पना है कि इस प्रकार भाषा बदल कर वे मुस्लिम ह्रदय और मस्तिष्क को विजित कर सकेंगे। +","aur yadi aatnkvadi asabhy hain to islamvadi, islami aur muslim ka ullekh karne se parhej kiya jata hai. mere blag Not calling Islamism the Enemy men is bat ke udaharan diye gaye hain ki isse parhej kyon kiya jata hai aur iska uddeshy kya hai snkshep men jo log aatnk ke viruddh yuddh ko suraksha aur vikas ke liye vaishvik sngharsh ke roop men naya nam dena chahte hain unhen kalpna hai ki is prkar bhasha badal kar ve muslim hraday aur mastishk ko vijit kar sakenge. +",5,6 +"To go to residences to provide some service. +","कोई सेवा प्रदान करने के लिए निजी घरों पर जाने वाला। +","koee service provide karne ke lie niji residences par jane vala. +",8,1 +"Update the files in the archive “%s”? +","फ़ाइलों “%s” अभिलेख में अद्यतन करें? +","files s archive men adyatan karen +",7,2 +"The only other way is the socialist way. +","दूसरा रास्ता सिर्फ समाजवाद का रास्ता है। +","doosra rasta sirph samajvad ka rasta hai. +",10,0 +"It cannot be said that the product was unknown in India. +","ऐसा नहीं कहा जा सकता है कि यह उत्पाद भारत में अनजान था +","aesa nahin kaha ja sakta hai ki yah product unknown in india tha +",6,1 +"But in this plot he followed the SRI method of nursery preparation. +","लेकिन इस प्लॉट में उन्होंने नर्सरी तैयार करने के लिए श्री पद्धति का अनुसरण किया। +","lekin is plot men unhonne narsri preparation karne ke lie sri method ka anusaran kiya. +",7,5 +"And proclaim His Purity, morning and evening. +","सुबह व शाम उसकी तसबीह करते रहो +","morning v evening purity tasbih karte raho +",8,1 +"Since Bala himself will be speaking at TED +","क्योंकि बाला खुद बाद में TED में बोल रहे हैं +","kyonki bala khud bad men TED men bala rahe hain +",7,1 +"This is surely in the earlier Books, +","निस्संदेह यही बात पहले की किताबों में भी है; +","surely yahi bat pahle ki earlier books bhi hai +",6,5 +"But any one of these eight million odd different sperms may fertilise any one of the same number of possible ova at the time of conception to form a genotype consisting of 23 pairs of chromosomes. +","इन अस्सी लाख शुक्राणुओं में से कोई भी एक उतनी ही बड़ी संख्या के डिंबों में से किसी एक को संषेचित कर एक नया आनुवंशिक रूप उत्पन्न कर सकता है। +","in assi consisting sperms men se koee bhi ek same hi bari number ke dinbon men se kisi ek ko conception kar ek odd different roop utpann kar sakta time +",3,3 +"Ayurveda teaches us how to age with dignity and grace. +","आयुर्वेद हमें सिखाता है कि हम बूढ़े भी हों तो गरिमा और शालीनता के साथ इस अवस्था में कैसे पहुंचें। +","ayurveda teaches sikhata hai ki ham booe bhi hon to dignity and grace ke sath is avastha men kaise pahunchen. +",7,1 +"“ The States , ” he says , ” are still so numerous in India that they offer a grave conundrum in evolution to which no solution is at present forthcoming . +","वह लिखतें : हिंदुस्तान में इतनी ज़्यादा रियासतें हैं कि वे यहां की तरक़्की के रास्ते में एक बहुत बड़ी पहेली हैं . +","vah states : india men itni zyada riyasten hain ki ve yahan ki taraki ke raste men ek bahut bari conundrum hain +",8,1 +"This momentous decision to go to England to become a barrister took place when Badruddin was fifteen years old, a year after the mutiny. +","बैरिस्टर बनने के लिए इंग़्लैड जाने का यह महत्वपूर्ण निर्णय बगावत के एक वर्ष बाद लिया गया जब बदरूद्दीन पंद्रह वर्ष के थें. +","bairistar banne ke lie inlaid jane ka yah momentous decision bagavat ke ek varsh bad liya gaya jab badrooddin fifteen years ke then +",6,6 +"Among the Garo the household is known as the Nok. +","गारो जनजाति में गृहस्थी को नोक कहा जाता है। +","garo janjati men grihasthi ko nok kaha jata hai. +",9,1 +"The time remaining when action is taken +","बचा समय जब क्रिया की जाती है +","bacha time jab action ki jati hai +",7,3 +"The backend for this address book refused to perform this query.% s +","इस पता पुस्तिका के लिए बैकेंड यह प्रश्न करने से मना किया.% s +","is address book ke lie perform this query karne se refused kiya s +",8,1 +"Sacred place of Hindus located in the district of Faizabad in the state of Uttar Pradesh. +","उत्तर प्रदेश राज्य में फैज़ाबाद जिले में स्थित हिन्दूओं की एक पवित्र जगह। +","district pradesh state men faizabad jile men sthit hindus ki ek sacred place +",6,1 +"And that He may punish the Hypocrites, men and women, and the Polytheists men and women, who imagine an evil opinion of Allah. On them is a round of Evil: the Wrath of Allah is on them: He has cursed them and got Hell ready for them: and evil is it for a destination. +","और मुनाफिक़ मर्द और मुनाफ़िक़ औरतों और मुशरिक मर्द और मुशरिक औरतों पर जो ख़ुदा के हक़ में बुरे बुरे ख्याल रखते हैं अज़ाब नाज़िल करे उन पर (मुसीबत की) बड़ी गर्दिश है (और ख़ुदा) उन पर ग़ज़बनाक है और उसने उस पर लानत की है और उनके लिए जहन्नुम को तैयार कर रखा है और वह (क्या) बुरी जगह है +","aur munaphi mard aur munafi aurton aur mushrik men and women aurton par jo uda ke ha men bure bure khyal rakhte hain azab nazil kare un par musibat ki bari gardish hai aur uda un par zabnak hai aur usne us par lanat ki hai aur unke lie jahannum ko taiyar kar rakha hai aur vah kya buri jagah hai +",7,2 +"Those! theirs shall be a provision known: +","उनके वास्ते (बेहिश्त में) एक मुक़र्रर रोज़ी होगी +","unke vaste behisht men ek murrar rozi hogi +",9,2 +"You can search residential telephone numbers and local address from the directory listing. +","आप निर्देशिका लिस्टिंग से आवासीय टेलीफोन नम्बर और स्थानीय पता ढूँढ सकते हैं। +","aap directory listing se residential telephone numbers aur local address dhoondh sakte hain. +",10,0 +"computing will actually merge with the physical world. +","कम्प्यूटिंग यथार्थ में भौतिक संसार के साथ मिल जाएगी। +","computing yatharth men physical world ke sath mil jaegi. +",8,3 +"In this there is, certainly, evidence (of the Truth). But most of them have no faith. +","यक़ीनन इसमें (भी क़ुदरत) ख़ुदा की एक बड़ी निशानी है मगर उनमें से अक्सर ईमान लाने वाले ही नहीं +","truth ismen bhi udarat uda ki ek bari nishani hai magar unmen se aksar eeman lane vale hi nahin +",7,2 +"Belonging to a particular denomination, he had his own customs. +","एक विशिष्ट संप्रदाय का होने के नाते उसकी अपनी कुछ प्रथाएं थीं। +","ek vishisht belonging ka hone ke nate uski apni kuchh customs thin. +",7,1 +"Singan, the husband of the Kuratti, now comes in search of her. +","अब कुरत्ती का पति सिंगन उसे ढुंढता हुआ आता है। +","kuratti kuratti ka husband singan use dhundhta huaa aata hai. +",7,0 +"He agreed to Shri Duni Chand being appointed as his legal adviser. +","श्री दुनी चंद को अपना कानूनी परामर्शदाता नियुक्त करने पर वह सहमत हो गये। +","shri duni chnd ko apna legal paramarshdata niyukt karne par vah sahamat ho gaye. +",8,1 +"As the first woman from India to clinch this Grand Slam title,you have set a new benchmark of success for Tennis players that will inspire the youth of India, especially women. +","इस ग्रांड स्लाम खिताब को जीतने वाली भारत की पहली महिला के रूप में आपने टेनिस के खिलाड़ियों के लिए सफलता का एक नया कीर्तिमान स्थापित कर दिया है जो भारत के युवाओं,खासकर महिलाओं को प्रेरित करेगा। +","is grand slam khitab ko jitne vali bharat ki pahli mahila ke roop men aapne tenis ke khilariyon ke lie saphalta ka ek naya kirtiman sthapit kar diya hai jo bharat ke yuvaon,khasakar mahilaon ko prerit karega. +",8,3 +"It contains seven vertical strokes followed by this fish-like sign. +","समें सात ऊर्ध्वाधर रेखाओं के पीछे एक मछली का चिन्ह है। +","strokes sat vertical rekhaon ke pichhe ek machhli ka sign hai. +",6,1 +"They said: Hast come unto us that we should serve Allah alone, and forsake what our fathers worshipped? Then bring upon us that wherewith thou threatenest us if thou art of the truthful! +","तो वह लोग कहने लगे क्या तुम हमारे पास इसलिए आए हो कि सिर्फ ख़ुदा की तो इबादत करें और जिनको हमारे बाप दादा पूजते चले आए छोड़ बैठें पस अगर तुम सच्चे हो तो जिससे तुम हमको डराते हो हमारे पास लाओ +","to vah log kahne lage kya tum hamare pas islie aae ho ki sirph uda ki to ibadat karen aur jinko hamare bap dada poojte chale aae chhor baithen pas agar tum sachche ho to jisse tum hamko darate ho hamare pas lao +",8,1 +"This appeal has impugned the judgment and decree dated 20. 01. 2007 which had endorsed the judgment and decree of the trial judge dated 08. 11. 2005 decreeing the suit of the plaintiff for possession, declaration and mandatory injunction +","इस अपील ने २०. ०१. २००७ दिनांकित निर्णय और डिक्री पर आक्षेप किया है, जिसने ०८. ११. २००५ दिनांकित विचारण के निर्णय और डिक्री का समर्थन किया था, जिसमें वादी के कब्जे, घोषणा और अनिवार्य निषेधाज्ञा के वाद पर डिक्री की गई थी. +","is apil ne २० ०१ २००७ dinankit judgment and decree par aakshep kiya hai, jisne ०८ ११ २००५ dinankit vicharan ke judgment and decree ka samarthan kiya tha, jismen plaintiff for possession, ghoshna aur anivary nishedhajnja ke vad par dikri ki gee thi +",7,1 +"Anaerobic is a technical word which literally means without oxygen. +","अनॉक्सीय एक तांत्रिक शब्द है जिसका शाब्दिक अर्थ है बीना प्राणवायु के। +","anksiy ek tantrik shabd hai word which literally hai bina pranvayu ke. +",8,3 +"causing redness of the skin by increasing its blood flow +","उसके रक्त का प्रवाह बढ़ने के कारण त्वचा की लालिमा. +","uske blood ka flow bane ke karan skin ki redness +",8,3 +"The lightning almost snatches their sight away. Whenever it illuminates for them, they walk in it; but when it grows dark over them, they stand still. Had God willed, He could have taken away their hearing and their sight. God is capable of everything. +","क़रीब है कि बिजली उनकी ऑंखों को चौन्धिया दे जब उनके आगे बिजली चमकी तो उस रौशनी में चल खड़े हुए और जब उन पर अंधेरा छा गया तो (ठिठके के) खड़े हो गए और खुदा चाहता तो यूँ भी उनके देखने और सुनने की कूवतें छीन लेता बेशक खुदा हर चीज़ पर क़ादिर है +","rib hai ki lightning unki ऑnkhon ko chaundhiya everything jab unke aage lightning chamki to us raushni men capable god hue aur jab un par dark chha gaya to thithke ke god ho ge aur sight chahta to yoon bhi unke dekhne aur sunne ki koovten chhin leta beshak sight har chiz par adir hai +",3,3 +"Our media can play a major role in creating awareness and projecting positive stories in this respect. +","इस संबंध में हमारा मीडिया जागरूकता पैदा करने और सकारात्मक जागरूकता प्रस्तुत करने में एक महत्वपूर्ण भूमिका निभा सकता है। +","is snbndh men hamara midiya jagrookta paida karne aur sakaratmak jagrookta prastut karne men ek major role media can play +",8,1 +"Let's see, let's do minus 5 / 7 divided by 10 / 3. +","देखे, करे नकारात्मक 5/7 विभाजित है 10/3 से +","let , kare nakaratmak 57 vibhajit hai 103 se +",6,4 +"gradual recovery of health after illness +","रोगग्रस्त होने के बाद स्वास्थ्य में क्रमिक सुधार +","illness hone ke bad recovery men gradual sudhar +",7,4 +"One of them, 'Aman da Kafla' Caravan of Peace was then on the lips of almost everybody whether a progressive or not. +","उनमें से एक कविता अमन का काफिला अमन दा काफिला उस समय लगभग हर आदमी की जबान पर थी। +","unmen se ek kavita peace ka kaphila peace da kaphila us samay lagabhag har aadmi ki jaban par thi. +",9,0 +"Simulated papers do not create and legal right or entitlement. +","नकली कागज-पत्र/दस्तावेज कोई कानूनी अधिकार/प्राप्ति हक सृजित नहीं करते। +","nakli kagaj-patrdastavej koee legal adhikarprapti hak create nahin karte. +",8,3 +"Priyobroto had felt a wave of deep contentment. +","इससे पता नहीं कितना गहरा सुख उसे मिला था। +","isse pata nahin kitna deep wave use mila tha. +",9,1 +"The main qualification for this is: +","इसके लिए मुख्य योग्यता है :| +","iske lie main qualification hai : +",9,2 +"We gave the four a row and we gave the eight a row. +","हम 4 को एक पंक्ति देते है और 8 को एक पंक्ति देते हैं. +","ham 4 ko ek row gave hai aur 8 ko ek row gave hain +",4,5 +"Test the orphans until they reach the age of marriage, and then if you find them mature of mind hand over to them their property, and do not eat it up by either spending extravagantly or in haste, fearing that they would grow up (and claim it). If the guardian of the orphan is rich let him abstain entirely (from his ward 's property); and if he is poor, let him partake of it in a fair measure. When you hand over their property to them let there be witnesses on their behalf. Allah is sufficient to take account (of your deeds). +","और यतीमों को कारोबार में लगाए रहो यहॉ तक के ब्याहने के क़ाबिल हों फिर उस वक्त तुम उन्हे (एक महीने का ख़र्च) उनके हाथ से कराके अगर होशियार पाओ तो उनका माल उनके हवाले कर दो और (ख़बरदार) ऐसा न करना कि इस ख़ौफ़ से कि कहीं ये बड़े हो जाएंगे फ़ुज़ूल ख़र्ची करके झटपट उनका माल चट कर जाओ और जो (जो वली या सरपरस्त) दौलतमन्द हो तो वह (माले यतीम अपने ख़र्च में लाने से) बचता रहे और (हॉ) जो मोहताज हो वह अलबत्ता (वाजिबी) दस्तूर के मुताबिक़ खा सकता है पस जब उनके माल उनके हवाले करने लगो तो लोगों को उनका गवाह बना लो और (यूं तो) हिसाब लेने को ख़ुदा काफ़ी ही है +","aur test ko behalf men lagae let yah tak ke age ke abil mind phir us vakt account unhe ek mahine ka guardian unke mature se karake agar hoshiyar pao to unka property unke havale kar do aur bardar aesa n karna ki is auf se ki kahin ye bare ho jaenge haste rchi karke jhatapat unka property chat kar jao aur jo jo vali ya ward daulatamand ho to vah male orphan apne guardian men lane se bachta rahe aur h jo poor ho vah alabatta vajibi dastoor ke mutabi kha sakta hai pas jab unke property unke havale karne lago to logon ko unka gavah bana lo aur yoon to hisab lene ko uda measure hi hai +",7,2 +"The vertical text alignment, from 0 (top) to 1 (bottom). +","लंबबत पाठ समायोजन, 0 (शीर्ष) से 1 (तल) में +","vertical text alignment , 0 top se 1 bottom men +",8,4 +"A papilionaceous flower has a corolla, usually with five petals that include a large upper petal, the vexillum. +","एक कोरोला का तितली जैसा फूल जिस की पांच पंखुड़ियो में एक सबसे उपरी लंबी पत्ती जो होती है ध्वज। +","ek corolla ka titli jaisa phool jis ki panch pnkhuriyo men ek sabse upri lnbi patti jo hoti hai dhvaj. +",4,7 +"Price escalation will increase overall cost of the project. +","कीमत वृद्धि के कारण परियोजना की लागत में वृद्धि हो जायेगी। +","price escalation ke karan project ki cost men escalation ho jayegi. +",8,3 +"You have to put your tremendous expertise and experience to good use. +","आपको अपने वृहद् कौशल तथा अनुभव का उपयुक्त उपयोग करना होगा। +","aapko apne tremendous expertise tatha experience ka good use karna hoga. +",8,3 +"In summer he spends most of his time in the verandah and in winter he basks in the early sun bare - bodied. +","वे अकसर गमीँ के दिनों में बरामदे में और सर्दियों में सुबह की धूप में नंगे बदन बैठे मिल जाएंगे। +","ve most gamin ke time men verandah men aur winter men subah ki sun men bare summer baithe mil jaenge. +",5,5 +"Through its various schemes and financial assistance, and support in regular procurement of raw material by producers – as well as infrastructural support– Government of India has given critical backing to boost the existing coir industry and encourage new entrepreneurs. +","अपनी विभिन्न स्कीमों तथा वित्तीय सहयोग से तथा उत्पादकों द्वारा कच्चे माल की नियमित खरीदारी में सहायता देकर और अवसंरचना संबंधी सहयोग देकर भारत सरकार ने मौजूदा कॉयर उद्योग को बढ़ावा देने के लिए तथा नए उद्यमियों को प्रोत्साहित करने के लिए महत्त्वपूर्ण सहयोग दिया है। +","apni various schemes tatha financial producers se tatha utpadkon dvara raw mal ki regular procurement men assistance new aur infrastructural snbndhi producers new india government ne maujooda coir industry ko baava dene ke lie tatha ne entrepreneurs ko protsahit karne ke lie mahattvpoorn producers diya hai. +",7,1 +"Those whose striving goes astray in the present life, while they think that they are working good deeds. +","यो वे लोग है जिनका प्रयास सांसारिक जीवन में अकारथ गया और वे यही समझते है कि वे बहुत अच्छा कर्म कर रहे है +","yo ve log hai jinka present life working good deeds gaya aur ve yahi samajhte hai ki ve bahut achchha karm kar rahe hai +",5,2 +"Until he was eight,there was instability lagging to him for which no arrangement for education could be made. +","जब तक अकबर आठ वर्ष का हुआ जन्म से लेकर अब तक उसके सभी वर्ष भारी अस्थिरता में निकले थे जिसके कारण उसकी शिक्षा-दीक्षा का सही प्रबंध नहीं हो पाया था। +","jab tak akabar aath varsh ka huaa janm se lekar ab tak uske sabhi varsh bhari asthirta men nikle the jiske arrangement for education ka sahi prbndh nahin ho paya tha. +",5,4 +"I 've sinned, betrayed innocent blood. +","मैं ने पाप किया है, निर्दोष खून को धोखा दिया है. +","main ne sinned kiya hai, innocent betrayed innocent blood diya hai +",7,2 +"Look at the likes of Gandhi who achieved so much through pacifism. +","गांधी जैसे लोगों को देखें जिन्होनें शांतिवाद के माध्यम से महान उपलब्धियां हासिल की हैं. +","gandhi jaise much ko look jinhonen likes ke madhyam se mahan upalabdhiyan hasil ki hain +",5,3 +"How to claim see page 15. +","यह कैसे अर्जी भर के मिल सकता है इस के लिए पान क्रमांक 15 देखें । +","yah kaise page bhar ke mil sakta hai is ke lie pan krmank 15 dekhen . +",7,0 +"The birds are usually found in pairs in open country near cultivation, commonly seen perched on a mound or some other eminence, or flying at great speed at hedge - top height in search of small birds, rats, mice, lizards and large insects which comprise their prey. +","ये ज्यादातार जोड़े में खेतों के आसपास खुले मैदानों मे, किसी टीले पर या किसी दूर से दिखते स्थान पर बैठे पाए जाते हैं, अथवा छोटी चिड़ियों, चूहों, छिपकलियों और बड़े कीड़ों की खोज में बाड़ों की ऊंचाई पर तेजी से उड़ते भी पाए जा सकते हैं। +","ye found in pairs kheton ke aaspas khule maidanon me, kisi tile par ya kisi door se dikhte sthan par baithe pae jate hain, athva chhoti chiriyon, choohon, lizards and large kiron ki khoj men baron ki oonchaee par teji se urte bhi pae ja sakte hain. +",8,1 +"National Population Policy (File referring to external site opens in a new window) +","राष्ट्रीय जनसंख्या नीति (पीडीएफ फाइल जो नई विंडों में खुलती है) +","national population policy external file jo new vindon men khulti hai +",6,4 +"The Juvenile Justice Board apparently has given benefit to the appellant by treating his age to be 20 years as on 13. 08. 2003 which was on the lower side within the range of one year fixed by the Medical Board. +","किशोर न्याय बोर्ड ने प्रकट रूप से अपीलार्थी को, १३. ०८. २००३ पर उसकी आयु २० वर्ष मानकर, जो मेडिकल बोर्ड द्वारा तय एक वर्ष की सीमा के भीतर कमी की तरफ थी, लाभ दिया है. +","juvenile justice board ne prakat roop se apilarthi ko, १३ ०८ २००३ par uski aayu २० varsh manakar, jo medikal bord dvara tay ek varsh ki sima ke bhitar kami ki taraph thi, labh diya hai +",9,2 +"PRESIDENT OF INDIA’S MESSAGE ON THE EVE OF NATIONAL DAY OF SEYCHELLES, Rashtrapati Bhavan : 28.06.2017 +","सेशल्स के राष्ट्रीय दिवस की पूर्व संध्या पर भारत के राष्ट्रपति का संदेश, राष्ट्रपति भवन : 28.06.2017 +","seshals ke national day ki poorv sndhya par president of indias ka sndesh, rashtrapti bhavan : 28062017 +",6,3 +"This is composed of seven small islands that have been formed by volcanic eruptions and is connected to the mainland via a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska gathan lava nirmit sat small islands dvara huaa hai evn yah pul dvara prmukh bhoo-khnd ke sath jura huaa hai. +",8,4 +"The absence of the karnakutas in the hara of the top tala marks the first step towards the elimination of the hara itself, and the placement of the vahanas and lanchanas of the main deity at the corners in its place. +","ऊपरी तल के हार में कर्णकूटों की अनुपस्थित स्वंय हार के विलोपन और उसके स्थान पर कोनों पर मुख्य देवता के वाहनों और लांछनों के स्थापन की दिशा में पहला कदम हैं। +","oopri tal ke har men karnkooton ki anupasthit svny har ke vilopan aur uske sthan par konon par mukhy devta ke vahnon aur lanchhnon ke sthapan ki disha men pahla kadam hain. +",9,2 +"Opening the calendar. Please wait... +","पंचांग खोल रहा है. कृपया प्रतीक्षा करें... +","calendar opening raha hai kripya wait karen +",6,4 +"Never show the dialog again for all links of this type. +","इस प्रकार के सभी लिंक के लिए संवाद पुनः कभी न दिखाएं. +","is type ke sabhi links ke lie dialog puna kabhi n dikhaen +",9,2 +"Amount of wage paid for a day. +","दिनभर के लिए दी जाने वाली मजदूरी की राशि। +","day ke lie di jane vali amount ki rashi. +",7,1 +"You will be more likely to give up before the 30 minutes elapse compared to you. +","आप लोगों के छोड़ने की सम्भावना, आप लोगों से ज्यादा है। +","aap logon ke chhorne ki likely , aap logon se jyada hai. +",6,4 +"This Conference, by focusing on water use efficiency, will help to bring this important issue to the forefront of policy discourse. +","इस सम्मलेन के जल उपयोग दक्षता पर केन्द्रित होने से, यह महत्वपूर्ण मुद्दा नीति संबंधी परिचर्चा में शामिल हो पाएगा। +","is conference ke water use efficiency par kendrit hone se , yah important issue policy snbndhi discourse men shamil ho paega. +",8,0 +"In the Gardens of delight (Paradise). +","नेमत भरी जन्नतों में होंगे; +","delight bhari jannton men honge +",6,6 +"The most familiar representative of the family APODIDAE True Swifts is our House Swift Apus affinis PLATE 11. 55 bottom Hindi: Babila or Batasi. +","ऐपोडिडी परिवार की सबसे अधिक आम चिड़िया हमारी घरेलू बतासी या बबीला ही है Apus affinis-प्लेट 11.55-यह डीलडौल में गौरैया से छोटी धुएं जैसी काली होती है। +","aepodidi parivar ki sabse adhik aam chiriya hamari ghareloo batasi ya babila hi hai Apus affinis-plet 1155-yah dildaul men gauraiya se chhoti dhuen jaisi kali hoti hai. +",7,3 +"We have not appointed any one but angels as keepers of Hell, and their number that We have fixed is to make it a means of contention for disbelievers, so that those who were given the Book may be certain, and the faith of the believers may have greater increase, and the people of the Book and believers may not be deceived, and the sceptics and infidels may say: ""What does God mean by this parable?"" That is how God leads whosoever He will astray, and guides whosoever He will. None knows the armies of your Lord save Him self. This is no more than reminder for mankind. +","और हमने जहन्नुम का निगेहबान तो बस फरिश्तों को बनाया है और उनका ये शुमार भी काफिरों की आज़माइश के लिए मुक़र्रर किया ताकि अहले किताब (फौरन) यक़ीन कर लें और मोमिनो का ईमान और ज्यादा हो और अहले किताब और मोमिनीन (किसी तरह) शक़ न करें और जिन लोगों के दिल में (निफ़ाक का) मर्ज़ है (वह) और काफिर लोग कह बैठे कि इस मसल (के बयान करने) से ख़ुदा का क्या मतलब है यूँ ख़ुदा जिसे चाहता है गुमराही में छोड़ देता है और जिसे चाहता है हिदायत करता है और तुम्हारे परवरदिगार के लशकरों को उसके सिवा कोई नहीं जानता और ये तो आदमियों के लिए बस नसीहत है +","aur hamne jahannum ka nigehban to bas pharishton ko banaya hai aur unka ye shumar bhi kaphiron ki aazmaish ke lie murrar kiya taki ahle kitab phauran yain kar len aur momino ka eeman aur jyada ho aur ahle kitab aur mominin kisi tarah sha n karen aur jin logon ke dil men nifak ka marz hai vah aur kaphir log kah baithe ki is masal ke bayan karne se uda ka kya matalab hai yoon uda jise chahta hai gumrahi men chhor deta hai aur jise chahta hai hidayat karta hai aur tumhare paravardigar ke lashakron ko uske siva koee nahin janta aur ye to aadmiyon ke lie bas nasihat hai +",4,7 +"where they will hear no idle talk, +","वहाँ कोई लग़ो बात सुनेंगे ही नहीं +","vahan koee hear no idle hi nahin +",6,1 +"You need to log on to your account to take a printout of your admit card carrying your photograph. +","इसके लिए आपको आपके एकाउंट में लॉगइन करना होगा जिससे कि आप अपने फोटोयुक्त प्रवेश कार्ड के प्रिंट आउट ले सकें। +","iske lie aapko account ekaunt men lgin karna admit jisse ki aap apne photoyukt prvesh card ke print photograph printout saken. +",6,0 +"and I 'll send you back your poster. Join by groups +","और मैं आपके पोस्टर आपको वापस भेज दूंगा. इकट्ठे आइये +","aur main aapke back your poster bhej doonga ikatthe aaiye +",6,1 +"He debunked the popular misgivings about the concept of Nagalim . +","उन्होंने नगालिम की धारणा को लेकर आम लगों में फैली भ्रांतियों को भी स्पष्ट किया . +","unhonne debunked the popular ko lekar aam lagon men phaili bhrantiyon ko bhi spasht kiya +",6,2 +"If you are already a widow or widower, you can get up to 100% of your late husband 's or wife' s Additional Pension. +","अगर आप पहले से ही विधवा है या फिर विधुर है तो आप को आप के गुजरे हुए पती या फिर पत्नी का अतिरिक्त निवृत्ती वेतन 100% तक मिल सकता है। +","s aap pahle se hi widow hai ya phir widower hai to aap ko aap ke gujre hue late ya phir wife ka additional pension vetan 100 tak mil sakta hai. +",5,5 +"But the current is quite strong in the middle, so sit still. +","लेकिन बीच में धारा काफी तेज है, इसलिए पक्का होकर बैठना। +","lekin middle men current kaphi sit hai , islie strong hokar baithna. +",6,0 +"This is a Surah which We have sent down and We have made it mandatory, and We have sent down clear Commandments in it so that you may learn lessons. +","(ये) एक सूरा है जिसे हमने नाज़िल किया है और उस (के एहक़ाम) को फर्ज क़र दिया है और इसमें हमने वाज़ेए व रौशन आयतें नाज़िल की हैं ताकि तुम (ग़ौर करके) नसीहत हासिल करो +","ye ek soora hai jise hamne nazil kiya hai aur us ke made it mandatory r diya hai aur ismen hamne vazee v raushan aayten nazil ki hain taki tum aur karke nasihat learn lessons +",4,5 +"No, I understood perfectly. +","नहीं, मैंने ठीक से समझा है, दीदी। +","nahin, mainne thik se understood hai, didi. +",6,3 +"according to the Tulsidas at the top there was sri rama 's story where lord shanker was telling the story to mother parvati +","तुलसीदास जी के अनुसार सर्वप्रथम श्री राम की कथा भगवान श्री शंकर ने माता पार्वती जी को सुनाया था। +","tulsidas ji ke anusar sarvapratham shri story to mother bhagvan shri shnkar ne mother parvati ji ko sunaya tha. +",5,2 +"Another revolutionary ' action ' which took place a few months earlier also deserves notice . +","एक और क्रांतिकारी कार्यवाही भी , जो कुद महीनों पहले की गई थी , घ्यानाकर्षक है . +","ek aur revolutionary action bhi , jo kud months pahle ki place thi , ghyanakarshak hai +",8,0 +"Some establishments keep their books of accounts / ledgers based on loose leaf system. +","कुछ प्रतिष्ठान अपनी लेखा पुस्तकें खुले पन्नों की प्रणाली के आधार पर रखते हैं। +","kuchh establishments apni accounts books khule ledgers ki system ke aadhar par rakhte hain. +",7,1 +"Netaji received congratulations from Eamon De Velera , President of the Irish Free State . +","नेताजी को आइरिश फ्री स्टेट के अध्यक्ष इमौन डि बलेरा का बधाई संदेश भी मिला . +","netaji ko irish free state ke president eamon di velera ka congratulations sndesh bhi mila +",9,0 +"” You lived your life in a loving way , and died with dignity . +","‘ तुमने अपना जीवन बड़े प्यार से जिया और बड़े सम्मान के साथ ही तुमने अपना शरीर छोड़ा । +","tumne apna jivan bare pyar se jiya aur bare samman ke sath hi tumne apna sharir chhora . +",8,4 +"City Civic Centre Locations (External website that opens in a new window) +","शहर नागरिक केंद्र स्थान (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","city civic centre locations external website jo ek new vindon men khulti hain +",9,0 +"All the sadhaks are one in the Mother; all meditate in the presence of the Mother. +","सभी श्री मां की उपस्थिति में ध्यान करते हैं। +","sabhi shri mother ki presence men dhyan karte hain. +",9,1 +"No further items in the history. +","इतिहास में कोई अन्य वस्तु नहीं. +","history men koee any items nahin +",8,2 +"Ratnambar while defining sin at the end in Chitralekha, says' There is nothing that is wrong in the world, this is only another novel in the difference of attitudes in people. +","चित्रलेखा के अन्त में पाप की व्याख्या करते हुए रत्नाम्बर कहता हैः संसार में पाप कुछ भी नहीं है, वह केवल मनुष्य के दृष्टिकोण की विषमता का दूसरा नाम है। +","chitralekha ke end men sin ki vyakhya karte hue ratnambar kahta difference world men sin kuchh bhi nahin hai , vah nothing manushy ke attitudes ki vishamta ka novel nam hai. +",7,2 +"Dusty air coming towards Stratford, Texas. +","स्ट्रेटफोर्ड टेक्सास की और आने वाली धूल भरी आंधी (Stratford Texas). +","air coming ki aur aane vali dhool bhari aandhi Stratford Texas +",6,3 +"For this reason also I am unable to uphold the contention of the said plea being not available to the plaintiff. +","इस कारण से भी मैं कथित अभिवाक़ के वादी के लिए उपलब्ध न होने के तर्क का समर्थन करने में असमर्थ हूँ. +","is karan se bhi main kathit abhiva ke vadi ke lie upalabdh n hone ke uphold the contention karne men asamarth hoon +",8,2 +"Through its various schemes and financial assistance, and support in regular procurement of raw material by producers – as well as infrastructural support– Government of India has given critical backing to boost the existing coir industry and encourage new entrepreneurs. +","अपनी विभिन्न स्कीमों तथा वित्तीय सहयोग से तथा उत्पादकों द्वारा कच्चे माल की नियमित खरीदारी में सहायता देकर और अवसंरचना संबंधी सहयोग देकर भारत सरकार ने मौजूदा कॉयर उद्योग को बढ़ावा देने के लिए तथा नए उद्यमियों को प्रोत्साहित करने के लिए महत्त्वपूर्ण सहयोग दिया है। +","apni vibhinn schemes and financial sahyog se tatha utpadkon dvara kachche mal ki niymit kharidari men sahayta dekar aur avsnrachna snbndhi sahyog dekar bharat sarkar ne existing coir industry ko baava dene ke lie tatha ne udymiyon ko protsahit karne ke lie mahattvpoorn sahyog diya hai. +",7,1 +"Though they had improved upon it in some ways but ' the thing ' had become ' totally different from what it originally was . ' +","यद्यपि उन्होंने उसमें थोड़ा-बहुत संशोधन किया है ? किंतु जो असल बात थी वह बिलकुल बदल गई है . ? +","yadypi unhonne usmen thora-bhut snshodhan kiya hai kintu jo asal bat thi vah bilkul badal gee hai +",8,2 +"PRESIDENT RELEASES COMMEMORATIVE POSTAGE STAMP ON LATE SHRI RAMGOPAL JI MAHESHWARI, Rashtrapati Bhavan : 20.11.2012 +","राष्ट्रपति ने स्वर्गीय श्री रामगोपाल जी माहेश्वरी पर स्मारक डाक टिकट जारी किया, राष्ट्रपति भवन : 20.11.2012 +","president ne late shri ramgopal ji maheshvri par commemorative postage stamp jari kiya , president bhavan : 20112012 +",9,0 +"Now We have sent down to you a Book wherein is your Remembrance; will you not understand? +","हमने तो तुम लोगों के पास वह किताब (कुरान) नाज़िल की है जिसमें तुम्हारा (भी) ज़िक्रे (ख़ैर) है तो क्या तुम लोग (इतना भी) समझते +","hamne to tum logon ke pas vah book remembrance nazil ki hai wherein tumhara bhi zikre air hai to kya tum log itna bhi samajhte +",5,6 +"During 2010 - 11, the production of HINCOL was 159. 39 MT. +","वर्ष 2010-11 के दौरान, हिनकोल का उत्पादन 159.39 लाख टन था। +","varsh 2010-11 ke dauran , hincol ka production 15939 lakh mt tha. +",5,2 +"You have no recently reported crashes. Crashes that occurred when crash reporting was disabled will not appear here. +","आपके पास हाल ही में रिपोर्ट किए गए क्रैश नहीं हैं. क्रैश रिपोर्टिंग अक्षम होने के दौरान होने वाले क्रैश यहां दिखाई नहीं देंगे. +","aapke recently reported hi men riport kie ge crashes nahin hain occurred when crash hone ke dauran hone vale crashes yahan dikhaee nahin denge +",7,2 +"The Arya Samaj preacher is never so happy as when he is reviling other religions. +","आर्य समाजी उपदेशकों को जो मजा दूसरे धर्मो पर कीचड़ उछालने में आता है, वह मजा और किसी बात में नहीं आता। +","arya samaji updeshkon ko jo happy doosre religions par kichar uchhalne men other hai , vah happy aur kisi bat men nahin aata. +",7,2 +"He said: ” I ask you again to judge the accused by what is before you, on what you have heard in this room and what you have read of his writings. +","उन्होंने कहा ” मैं आपसे दोबारा आग्रह करता हूं कि आपके सामने जो आया है, आपने इस कक्ष में जो सुना है और जो अभियुक्त के लेखों में पढ़ा है, सिर्फ इसी आधार पर अभियुक्त पर फैसला दें. +","unhonne kaha i aapse dobara aagrah karta hoon ki aapke samne jo aaya hai , aapne is room men jo suna hai aur jo abhiyukt ke writings men paa hai , sirph isi aadhar par abhiyukt par phaisla den +",8,2 +"Persons taking sulphonylurea therapy and who have normal blood glucose values may need to reduce the sulphonylurea dose while on exercise programme. +","जिन रोगियों को सल्फोनाइलयूरिया दवाइयां दी जा रही हैं और उनका रक़्त ग़्लूकोज स्तर सामान्य है, उन्हें व्यायाम कार्यक्रम के दौरान इन दवाइयों इन दवाइयों की खुराक कम करने की आवश्यकता हो सकती +","jin persons ko sulphonylurea davaiyan di ja rahi hain aur unka glucose lookoj star normal hai , unhen exercise programme ke dauran in davaiyon in davaiyon ki dose kam karne ki aavashyakta ho sakti +",8,4 +"For the Indians in general, patriotism was the only meaning of the ideals and lessons preached by Gandhiji. +","भारतीय जन-मानस के समक्ष गाँधी द्वारा प्रादुर्भूत आदर्शों और उपदेशों का अर्थ मात्र देश-भक्ति था। +","indians jan-manas ke samaksh gandhiji dvara pradurbhoot ideals aur lessons ka meaning only desh-bhakti tha. +",7,6 +"Failed to write file '% s': fwrite () failed:% s'% s' +","फ़ाइल को लिखने में विफलः fwrite () विफलः% s +","failed ko failed to write fwrite viphla s +",4,4 +"Rate / water charges applicable as well as the common storage facility. +","दर/पानी प्रभार लागू और समान्य एकत्र करने की सुविधा। +","darpani charges applicable aur samany ekatr karne ki facility +",5,7 +"It is more important to do right thing than to do things right. +","काम को सही करने से अधिक महत्वपूर्ण यह है कि सही काम ही किये जावें। +","thing ko right karne se adhik important yah hai ki right thing hi kiye javen. +",9,1 +"The degree of blurring from 1 to 127. +","1 से 127 तक धुंधला की डिग्री. +","1 se 127 tak dhundhla ki degree +",9,1 +"They all < s > are major causes of serious illness or early death; +","गंभीर एवं जानलेवा बीमारियों के प्रमुख कारण हैं। +","illness or early bimariyon ke prmukh karan hain. +",7,4 +"And dread the Day when no one shall avail anyone in any way; nor shall any ransom be accepted from anyone; nor shall intercession profit any body; nor shall the offenders be helped from any quarter. +","और उस दिन से डरो जिस दिन कोई शख्स किसी की तरफ से न फिदया हो सकेगा और न उसकी तरफ से कोई मुआवेज़ा क़ुबूल किया जाएगा और न कोई सिफारिश ही फायदा पहुचाँ सकेगी, और न लोग मदद दिए जाएँगे +","aur us day se daro jis day koee shakhs kisi ki way se n phidya ho sakega aur n uski way se koee ransom ubool kiya jaega aur n koee sipharish hi profit pahuchan offenders , aur n log madad die jaenge +",4,5 +"The main plateaus are the Baghelkhand and the Chota Nagpur. +","इस क्षेत्र के प्रमुख पठार बघेलखंड तथा छोटा नागपुर हैं। +","is kshetr ke main plateaus baghelkhnd tatha chhota nagpur hain. +",9,2 +"he had spent most time in racing, wrestling and hunting and he never had interest in studies +","उसका काफी समय आखेट दौड़ व द्वंद्व कुश्ती आदि में बीता तथा शिक्षा में उसकी रुचि नहीं रही। +","uska most time hunting daur v dvndv kushti aadi men bita tatha shiksha men uski interest nahin rahi. +",7,1 +"No such interface ‘% s' +","कोई अंतरफलक ‘% s 'नहीं +","koee such s nhin +",5,3 +"He will forgive your sins and admit you into gardens with streams running in them, and into good dwellings in the Gardens of Eden; that is the great success. +","वह तुम्हारे गुनाहों को क्षमा कर देगा और तुम्हें ऐसे बागों में दाखिल करेगा जिनके नीचे नहरें बह रही होगी और उन अच्छे घरों में भी जो सदाबहार बाग़ों में होंगे। यही बड़ी सफलता है +","vah good sins ko kshma kar dega aur gardens aese eden men dakhil karega jinke niche nahren bah rahi hogi aur un achchhe dwellings men bhi jo sadabhar baon men honge. yahi bari success hai +",7,3 +"It will be easier if the boxes are fitted with bolts. +","बक्सों को बंद करने के लिए उनमें कब्जे और कुंडे हों तो सुविधा रहती है। +","boxes ko bnd karne ke lie unmen kabje aur kunde hon to suvidha rahti hai. +",9,0 +"Action is the foundational key to all success. +","कर्म सफलता का मूल है. +","foundational key ka mool hai +",2,3 +"He needed to authenticate the documents with signature. +","उसे दस्तावेज़ों को हस्ताक्षर द्वारा अधिप्रमाणित करने की आवश्यकता थी। +","use documents ko signature dvara adhiprmanit karne ki aavashyakta thi. +",9,1 +"It is, therefore, rare. +","इसलिए वह बहुत विरल होता है। +","islie vah bahut rare hota hai. +",5,6 +"After much exertion and pressure he was made to say 'No' only. +","काफी प्रयास करने और दबाव डालने के बाद वह जबाव में सिर्फ 'नहीं' कहकर चुप हो गये. +","kaphi pryas karne aur dabav dalne ke bad vah jabav men sirph nhin kahakar chup ho gaye +",8,4 +"Sometimes, the local craftsmen also display their items for sale in this emporium. +","कभी स्थानीय शिल्पकार भी अपनी कलाकृतियों को यहां पर बेचने के लिए रख देते हैं. +","kabhi local craftsmen bhi apni kalakritiyon ko yahan par bechne ke lie rakh dete hain +",8,0 +"Rate / water charges applicable as well as the common storage facility. +","दर/पानी प्रभार लागू और समान्य एकत्र करने की सुविधा। +","darpani water applicable aur common rate karne ki facility +",6,1 +"It is more important to do right thing than to do things right. +","काम को सही करने से अधिक महत्वपूर्ण यह है कि सही काम ही किये जावें। +","kam ko sahi karne se adhik mahatvpoorn yah hai ki sahi kam hi kiye thing +",4,6 +"""The wall belonged to two young orphans in the town whose father had been a righteous man, and a treasure of theirs lay underneath it. So your Lord wanted them to come of age and then to dig up their treasure as a mercy from Him. I did not do [it] of my own accord. That is the explanation of the things about which you were not able to restrain yourself."" +","और रही यह दीवार तो यह दो अनाथ बालकों की है जो इस नगर में रहते है। और इसके नीचे उनका ख़जाना मौजूद है। और उनका बाप नेक था, इसलिए तुम्हारे रब ने चाहा कि वे अपनी युवावस्था को पहुँच जाएँ और अपना ख़जाना निकाल लें। यह तुम्हारे रब की दयालुता के कारण हुआ। मैंने तो अपने अधिकार से कुछ नहीं किया। यह है वास्तविकता उसकी जिसपर तुम धैर्य न रख सके। "" +","aur rahi yah divar to yah do anath balkon ki hai jo is nagar men rahte hai. aur iske niche unka jana maujood hai. aur unka bap nek tha, islie tumhare rab ne chaha ki ve apni yuvavastha ko pahunch jaen aur apna jana nikal len. yah tumhare rab ki dayaluta ke karan huaa. mainne to apne adhikar se kuchh nahin kiya. yah hai vastvikta uski jisapar tum dhairy n rakh sake. +",8,1 +"Dump texture atlas changes to an image file +","एटलस के संरचना को छवि फाइल में बदल कर डंप करें +","atlas ke snrachna ko image file men badal kar dnp karen +",7,4 +"Then We awakened them to know which of the two groups could better calculate the length of their stay. +","फिर हमने उन्हें भेजा, ताकि मालूम करें कि दोनों गिरोहों में से किसने याद रखा है कि कितनी अवधि तक वे रहे +","phir hamne unhen bheja , stay maloom karen ki donon groups men se kisne yad rakha hai ki kitni length tak ve rahe +",6,1 +"virtual tor of Taj mahal in Internet. +","ताजमहल का इंटरनेट पर वर्चुअल टूर +","mahal in internet par virtual tor +",7,1 +"Until the Day of the time well - known. "" +","उस दिन तक के लिए जिसका समय ज्ञात एवं नियत है। "" +","us day tak ke lie jiska time jnjat evn niyat hai. +",9,0 +"""Adjournment of the sitting of the House""- Termination of the sitting of the House which meets again at the time appointed for the next sitting. +","""सभाकी बैठक का स्थगन"" -- स्थगन होने पर सभा की बैठक समाप्त हो जाती है और सभा अगली बैठक के लिए नियत समय पर पुनः समवेत होती है। +","sabhaki sitting ka adjournment -- adjournment hone par house ki sitting samapt ho jati hai aur house next sitting ke lie niyat time par puna samvet hoti hai. +",8,1 +"the light water reactor, the heavy water reactor would be around very long. They were just +","हल्के जल रिएक्टर, भारी जल रिएक्टर के आसपास बहुत लंबी होगी. वे सिर्फ थे +","light water reactor, heavy water reactor ke aaspas bahut lnbi hogi ve sirph the +",7,4 +"As a part of improvement of the infrastructure, Air India is in the process of creation of bases for new aircraft as under +","अधोसंरचना के विकास के लिए एयर इंडिया नए विमानों के लिए नए अड्डो के निर्माण की प्रक्रिया में लगा हुआ है। इसके अंतर्गत +","infrastructure ke improvement ke lie air indiya new aircraft ke lie new addo ke creation ki process men laga huaa part iske antargat +",6,3 +"When Manohar was transferred to Amudalavalasa , the couple put their through the weight-training regimen at the Ammi Naidu gym in the district headquarters town of Srikakulam . +","मनोहर का तबादल अमूदलवलसा हा तो वहां दोनों ने श्रीकाकुलम जिल मुयालय स्थित अमी नायड़ू जिम में अयास जारी रखा . +","manohar ka tabadal amoodalavalsa ha to vahan donon ne shrikakulam jil muyalay sthit ami nayaroo jim men ayas jari rakha +",8,2 +"The Krishna temple, Pattabhirama temple, Hazara Ramachandra and Chandrasekhara temple as also the Jain temples, are other examples. +","यहां स्थित कृष्ण मंदिर, पट्टाभिराम मंदिर, हजारा राम चंद्र और चंद्र शेखर मंदिर भी यहां के जैन मंदिर हैं जो अन्य उदाहरण हैं। +","yahan sthit krishn mndir, pattabhiram mndir, hajara ram chndr aur chndr shekhar mndir bhi yahan ke jain mndir hain jo any udaharan hain. +",4,7 +"what they want to learn to do. +","जो वो सीखना चाहते हैं. +","jo vo learn chahte hain +",4,3 +"And what can make you know what is the Striking Calamity? +","और तुम्हें क्या मालूम कि क्या है वह खड़खड़ानेवाली? +","aur tumhen kya maloom ki kya hai vah striking +",9,0 +"An organism in the early stages of development. +","विकास की प्रारम्भिक अवस्था में एक जीव +","early ki stages avastha men ek organism +",6,1 +"If TRUE, the selected month cannot be changed +","अगर सत्य तो चयनित माह नही बदला जा सकता +","agar true to chaynit month nahi badla ja sakta +",8,1 +"I am uncompromisingly against all destructive machinery. +","मै तमाम नाशकारी यंत्रोंका कट्टर विरोधी हूं। +","mai tamam nashkari yntronka kattar virodhi hoon. +",9,2 +"The place you go while you are staring at a computer that is processing something very slowly. +","वह स्थान जहाँ आप एक कंप्यूटर को घूर रहे हैं जबकि वह कंप्यूटर बहुत धीरे-धीरे कुछ प्रोसेसिंग कर रहा है। +","vah place jahan aap ek computer ko staring rahe hain jabki vah computer bahut slowly kuchh prosesing kar raha hai. +",6,1 +"Project Manager Plugin for Anjuta. +","परियोजना प्रबंधक प्लगइन के लिए Anjuta. +","project manager plugin ke lie Anjuta +",8,1 +"Child process stopped by signal %ld +","संतति प्रक्रिया %ld संकेत के द्वारा रोका गया +","child process ld signal ke dvara stopped gaya +",7,3 +"WHAT WILL I EARN? 20 +","मेरी आमदनी क्या होगी? 25। +","meri aamadni kya hogi 25. +",7,5 +"It is n 't a good idea to focus on the use of solvents. +","केवल सॉल्वैट्स के उपयोग पर ही सारा ध्यान केंद्रित कर देना कोई अच्छा विचार नहीं है. +","keval n ke use par hi sara dhyan kendrit kar dena koee good idea nahin hai +",5,4 +"He had atopic eczema as a child. +","उसे एक शिशु की तरह चोटी का पामा था. +","use ek child ki tarah choti ka eczema tha +",8,1 +"to beam a representation of our loved ones into our living rooms - +","हमारे चाहने वालों के प्रतिनिधित्व को बीम करने में- +","ones loved valon ke representation ko living karne men- +",6,2 +"We are now adding a ""digital"" dimension to this connectivity. +","अब हम इन संबंधों में ‘डिजिटल’ पहलू भी जोड़ रहे हैं। +","ab ham in connectivity men dijital dimension bhi jor rahe hain. +",9,2 +"(ii) continuous modernization as well as implementation of de - bottlenecking and technology upgradation schemes in the older plants; +",". पुराने संयंत्रों में निरंतर आधुनिकीकरण तथा बाधाओं को दूर करना और प्रौद्योगिकी उन्नयन +","older plants men continuous modernization tatha badhaon ko door karna aur technology upgradation +",6,8 +"he takes a nap in the afternoon, and I got to go. +","वे दोपहर में सोते हैं, और मुझे ज़रूरी जाना है. +","ve nap men sote hain , aur i zaroori jana hai +",5,1 +"It is also a matter of satisfaction that graduates of the centre have been recognised and valued. +","यह भी संतोष का विषय है कि इस सेंटर के स्नातकों को मान्यता और महत्व प्राप्त है। +","yah bhi matter of satisfaction hai ki is sentar ke snatkon ko recognised and valued prapt hai. +",6,0 +"it's like playing poker and going all in right away. +","यह पोकर में सारे पत्ते खोल देने जैसा है. +","yah poker men sare patte khol dene jaisa hai +",8,3 +"Generating tissues of predictable density and behavior +","उम्मीद के मुताबिक घनत्व और व्यवहार के ऊतक बनाना +","ummid ke mutabik predictable aur behavior ke tissues banana +",8,2 +"Purchase of machinery and implements / equipment +","मशीनों एवं उपकरणों/औजारों की खरीद। आवधिक ऋण: +","machinery evn upakarnonaujaron ki purchase aavdhik rin : +",9,0 +"She was touted as the next dream girl. +","मुद्दा उन्हें अगली स्वप्न सुंदरी करार दिया जा रहा था. +","mudda unhen agli dream girl karar diya ja raha tha +",9,0 +"Though a good deal of it has now become redundant or useless, there are seminal ideas in our past culture that can be of, great use in guiding our future. +","यद्यपि इसका एक ख़ासा भाग फ़ालतू या निरर्थक हो गया है, फिर भी हमारी पारम्परिक संस्कृति में कुछ प्रारम्भिक विचार हैं जो हमारे भावी पथ-प्रदर्शन में बहुत उपयोगी हो सकते हैं। +","yadypi iska ek asa bhag faltoo ya nirarthak ho gaya hai, phir bhi hamari paramprik snskriti men kuchh prarambhik vichar hain jo guiding our future men bahut upyogi ho sakte hain. +",5,3 +"Only Lolita acted as a bridge between these two households. +","इन दोनों के बीच अकेली ललिता ही सेतु-सी बनी रह गई। +","in donon ke bich akeli lalita hi setu-si bani households gee. +",6,4 +"Move% s onto% s. +","% s खिसकाएँ% s पर. +","s khiskaen s par +",9,0 +"Canada 's currently led by a party +","कनाडा में आज जिस पार्टी की सरकार है, +","canada men aaj jis parti ki sarkar hai, +",9,2 +"(i) it begins to manufacture or produce articles after the 30th day of September, 1977 but before the 1st day of April, 1990, in any rural area ; +","(i) यह किसी ग्रामीण क्षेत्र में वस्तुओं का विनिर्माण या उत्पादन 30 दिसम्बर, 1977 के पश्चात् किंतु 1 अप्रैल, 1990 के पूर्व प्रारंभ करता है; +","i yah kisi rural area men articles ka vinirman ya utpadan 30 september , 1977 ke pashchat kintu 1 april , 1990 ke poorv prarnbh karta hai +",8,1 +"The Chairman to the right and the Speaker to the left of the President who occupies the middle seat. +","बीच के आसन पर राष्ट्रपति बैठता है, उसके दायें राज्य सभा का सभापति और बायें लोक सभा का अध्यक्ष। +","bich ke aasan par rashtrapti baithta hai, uske dayen rajy sabha ka sabhapti aur bayen lok sabha ka adhyaksh. +",9,1 +"you have to learn to do that for your digital self. +","हमें यही सब अपने डिजिटल जीवन में भी करना सीखना पड़ता है. +","hamen yahi sab apne digital jivan men bhi karna learn parta hai +",7,1 +"Update the files in the archive “%s”? +","फ़ाइलों “%s” अभिलेख में अद्यतन करें? +","files s archive men update karen +",9,1 +"The writer of this monograph met her in October 1972 in Leningrad. +","इस पुस्तक के लेखक की अक्तूबर 1972 में, लेनिनग्राद में, लोला से, उनके घर पर भेंट हुई। +","is pustak ke lekhak ki october 1972 men, leninagrad men, lola se, unke ghar par bhent huee. +",8,0 +"He is the Lord of the heavens and the earth and all that is between them. He is the Beneficent God and no one will be able to address Him. +","वह आकाशों और धरती का और जो कुछ उनके बीच है सबका रब है, अत्यन्त कृपाशील है, उसके सामने बात करना उनके बस में नहीं होगा +","vah aakashon aur earth ka aur jo kuchh unke bich hai sabka rab hai, atyant kripashil hai, uske samne bat karna unke bas men nahin hoga +",8,1 +"They said, ‘O Moses! Will you throw first, or shall we? ’ +","वे बोले, ""ऐ मूसा! या तो तुम फेंको या फिर हम पहले फेंकते हैं।"" +","ve bole , moses ! ya to tum phenko ya phir ham pahle phenkte hain. +",8,2 +"243W. Powers, authority and responsibilities of Municipalities, etc.- +","243ब. नगरपालिकाओं, आदि की शक्तियाँ, प्राधिकार और उत्तरदायित्व- +","243b powers , aadi ki responsibilities , authority aur uttardayitv- +",6,4 +"of the banking system has attracted a lot of investment from outside. +","बैंकिंग प्रणाली की इस मज़बूती ने के बाहर से निवेश को भी बहुत आकर्षित किया है। +","banking system ki is mazbooti ne ke outside se investment ko bhi bahut aakarshit kiya lot +",7,2 +"Negativistic gnosticism treats the relationship of the spirit and the body as accidental and meaningless. +","नकारात्मक ज्ञानवाद शरीर और आत्मा के संबध को संयोगात्मक और अर्थहीन मानता है। +","nakaratmak jnjanvad body aur spirit ke relationship ko snyogatmak aur meaningless manta hai. +",10,0 +"Panini not only in India, but the world 's biggest linguist, who did extensive studies and vivid descriptive language. +","पाणिनि न केवल भारत के, अपितु संसार के सबसे बड़े भाषाविज्ञानी हैं, जिन्होंने वर्णनात्मक रूप में भाषा का विशद एवं व्यापक अध्ययन किया। +","panini n keval india ke , apitu world ke sabse bare linguist hain , jinhonne descriptive roop men language ka vivid evn extensive studies kiya. +",9,2 +"THE PLAYS OF BHAVABHUT1 But the main spring of dramatic action in the Uttararamacharita is psychological. +","किन्तु उत्तर-रामचरित में नाटकीय क्रियाकलापों का मुख्य स्रोत मनोवैज्ञानिक है। +","kintu dramatic action natkiy kriyaklapon ka mukhy srot manovaijnjanik hai. +",6,2 +"If 20gms of the magaj is soaked in one cup of lukewarm water, a brown coloured colour of Burgundy wine, mildly aromatic drink is obtained. +","यदि 20 ग्राम मगज एक कप गुनगुने पानी में अवशोषित किया जाये तो भूरे रंग बर्गंडी वाइन का रंग का हल्का सुंगधित पेय तैयार हो जायेगा। +","yadi 20 gram magaj ek kap lukewarm water men avshoshit kiya jaye to brown coloured colour vain ka rng ka halka sungdhit pey taiyar ho jayega. +",8,3 +"Each vertex has a label, and these labels must have the following property. +","प्रत्येक वर्टेक्स एक लेबल है, और इन लेबल निम्न गुण होना आवश्यक है। +","pratyek vertex ek label hai , aur in label following property hona aavashyak hai. +",8,3 +"If such a declaration or public recognition is not made to begin with by the British Government, even so it must be clearly understood that we can only talk on this basis and on no other. 2. +","यदि आरंभ में ब्रिटिश सरकार द्वारा ऐसी धारणा सार्वजनिक स्वीकृति न की जाय, तो भी यह स्पष्ट रूप से समझ लिया जाना चाहिये कि हम केवल इसी आधार पर बातचीत कर सकते हैं, अन्य किसी आधार पर नहीं। +","yadi aarnbh men british government dvara aesi dharna public recognition n ki jay , to bhi yah spasht roop se understood liya jana declaration ki ham keval isi basis par batchit kar sakte hain , other kisi basis par nahin. +",7,1 +"May be, they laughed at something in the concert. +","संगीत के किसी बात पर हँस रही हों। +","concert ke kisi something par hns rahi hon. +",8,1 +"Language model adapts as you write. +","भाषा मॉडल अनुकूलित करता है जैसे आप लिखते हैं +","language model adapts karta hai jaise aap likhte hain +",9,1 +"The Department of Agriculture organizes Pre - Kharif and Pre - Rabi Programme Planning Workshops that are attended by department officers, field level functionaries, university of agricultural sciences scientists, officers of line departments and related input agencies. +","कृषि विभाग खरीफ पूर्व और रबी पूर्व कार्यक्रम आयोजना कार्यशालाओं का आयोजन करता है जिसमें विभाग के अधिकारी, क्षेत्रीय स्तर के कार्यकर्ता, कृषि विज्ञान वैज्ञानिक विश्वविद्यालय इसी तरह के विभागों के अधिकारी और संबंधित निवेश एजेंसियों के अधिकारी भाग लेते हैं। +","agriculture department kharif pre aur rabi pre programme aayojna workshops ka planning karta hai jismen department ke officers , kshetriy level ke karyakarta , agriculture sciences scientists university isi tarah ke departments ke officers aur related input agencies ke officers bhag lete hain. +",6,5 +"Though the poem was not later included in his Collected Works, it did help to establish his reputation on its first appearance. +","भले ही यह कविता उनकी समग्र रचनावली में संकलित होने से रह गई थी, तो भी अपनी पहली उपस्थिति से उसकी प्रतिष्ठा स्थापित करने में सहायता मिली थी. +","bhale hi yah kavita unki samagr rachnavli men snklit hone se rah gee thi, to bhi apni pahli upasthiti se establish his reputation karne men sahayta mili thi +",7,3 +"The optical photo conductor is no longer functioning +","ऑप्टिकल फोटो कंडक्टर कामकाज नहीं रहा है +","optical photo conductor functioning nahin raha hai +",8,0 +"Error sending ""% s"" to% s +","""% s"" को% s में भेजने में त्रुटि +","s ko s men sending men error +",5,1 +"The Indian Council of Cultural Relations carried on its role of acting as a cultural ambassador for the country. +","सांस्कृतिक सम्बन्ध भारतीय सांस्कृतिक सम्बन्ध परिषद देश के सांस्कृतिक दूत की भूमिका निभा रही है। +","cultural relations indian cultural relations council country ke cultural ambassador ki role nibha rahi hai. +",7,1 +"He propagated the principles of Hinduism. +","उसने हिन्दुत्व के नियमों का प्रचार किया। +","usne hinduism ke principles ka prchar kiya. +",9,2 +"Third Party guarantee (if mortgage could not be created before or at the time of disbursement). +","तृतीय पक्ष गारंटी (अगर संवितरण के समय या इससे पहले बंधक का सृजन नहीं किया जा सका है)। +","tritiy party guarantee agar time of disbursement ya isse pahle bndhak ka srijan nahin kiya ja saka hai. +",7,3 +"44 year old JNU is well known in India and abroad as a University with a ‘difference’. +","44 वर्ष पुराना जवाहरलाल नेहरू विश्वविद्यालय भारत और विदेश में एक ‘अलग’ तरह के विश्वविद्यालय के रूप में सुविख्यात है। +","44 year old javaharlal nehroo jnu india aur videsh men ek difference tarah ke jnu ke roop men suvikhyat hai. +",7,1 +"""and it 's going to be a $40 billion business in the next 7 years."" +","""और यह एक 40 अरब डॉलर कारोबार अगले 7 वर्षों में होने जा रहा है."" +","aur yah ek 40 arab dlar business next 7 varshon men hone ja raha hai +",7,0 +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","track the actor par nazar rakhne ke lie clip region ko set karen +",7,0 +"The tribals also depend on the bamboo to augment their incomes . +","आदिवासी अपनी आय बढने के लिए भी बांस पर निर्भर रहते हैं . +","tribals apni aay augment ke lie bhi bamboo par depend rahte hain +",7,0 +"Pirates of the Caribbean: Dead Man's Chest +","समुंदर के लुटेरे: मुर्दे का खज़ाना +","pirates ke caribbean : murde ka man +",4,0 +"His duty is scheduled at night shift. +","उसकी ड्यूटी रात की पारी में सूचित है। +","uski duty night ki shift men soochit hai. +",9,2 +"A type of vein arrangement in leaf where veins run parallel to each other from the poin they strat to the end. +","पत्ती में पाया जाने वाला एक प्रकार का शिरा विन्यास जहां अपने आरंभ होने के स्थान से अंत होने के स्थान तक शिराएं एक दूसरे के समांतर होती हैं +","leaf men paya jane vala ek type ka vein arrangement jahan apne aarnbh hone ke other se end hone ke other tak shiraen ek doosre ke samantar hoti hain +",7,3 +"""What was it that brought you to Hell?"" +","""तुम्हे क्या चीज़ सकंर (जहन्नम) में ले आई?"" +","brought kya chiz saknr jahannam men le aaee +",7,2 +"Our immediate aim should be to eradicate communicable diseases and control the non-communicable ones. +","हमारा तात्कालिक लक्ष्य संचारी बीमारियों का उन्मूलन तथा गैर-संचारी बीमारियों पर नियंत्रण होना चाहिए। +","hamara tatkalik lakshy snchari bimariyon ka unmoolan eradicate communicable diseases par niyntran hona chahie. +",8,0 +"The Cyber City is operational since then. +","यह साइबर सिटी तभी से चालू है। +","yah cyber city tabhi se operational hai. +",8,1 +"The Indian Government has been disinvesting from the basic education for last 5 years. +","भारतीय सरकार पिछले 5 वर्षों से बुनियादी शिक्षा से विनिवेश कर रही है। +","indian government pichhle 5 varshon se basic education se vinivesh kar rahi hai. +",8,2 +"(That) We sent it down one night of blessing - - so that We could warn - - +","निस्संदेह हमने उसे एक बरकत भरी रात में अवतरित किया है।-निश्चय ही हम सावधान करनेवाले है।- +","nissndeh hamne use ek barakat bhari rat men avatrit kiya hai.-nishchay hi ham savdhan karnevale hai.- +",5,8 +"And then you know what we do? We negotiate. +","और फ़िर हम क्या करते है? हम सौदा तय करते हैं। +","aur fir ham kya karte hai ham negotiate tay karte hain. +",8,2 +"Language can't math me. +","भाषा मेरा गणित नहीं समेट सकती. +","language mera math nahin samet sakti +",9,2 +"Motions, though they cover a variety of proceedings of the House, fall into three principal categories namely, Substantive Motions, Substitute Motions, and Subsidiary Motions. +","यद्यपि प्रस्ताव सदन की विभिन्न कार्यवाहियों से संबंधित होते हैं तथापि उन्हें तीन प्रमुख श्रेणियों में रखा जा सकता है, अर्थात मूल (सब्सटेंटिव) प्रस्ताव, स्थानापन्न (सबस्टीट्यूट) प्रस्ताव और सहायक (सब्सीडियरी) प्रस्ताव. +","yadypi motions house ki variety proceedings se snbndhit hote hain tathapi unhen tin principal fall men rakha ja sakta hai , arthat mool sabstentiv motions , substitute sabastityoot motions aur subsidiary sabsidiyri motions +",6,2 +"But your Lord does not destroy habitations without having sent an apostle to their metropolis to read out Our commandments to them. We would never have destroyed cities if their inhabitants were not given to wickedness. +","तेरा रब तो बस्तियों को विनष्ट करनेवाला नहीं जब तक कि उनकी केन्द्रीय बस्ती में कोई रसूल न भेज दे, जो हमारी आयतें सुनाए। और हम बस्तियों को विनष्ट करनेवाले नहीं सिवाय इस स्थिति के कि वहाँ के रहनेवाले ज़ालिम हों +","tera rab to bastiyon ko vinasht karnevala nahin jab tak ki unki metropolis to read koee rasool n bhej de, jo hamari aayten sunae. aur ham bastiyon ko vinasht karnevale nahin sivay is sthiti ke ki vahan ke rahnevale zalim hon +",4,3 +"And that 's the same thing as 0. 75x. +","जैसे 1X माइनस 0.25X के जैसे लिखा और वह समान चीज़ है जैसे 0.75X +","jaise 1X mainas 025X ke jaise likha aur vah saman chiz hai jaise 075X +",7,4 +"unusual trapping or confinement of a part in the body +","यारीर में किसी अंग का असामान्य रूप से फंसना या सीमित हो जाना +","yarir part kisi ang ka asamany roop se phnsna ya simit ho jana +",6,3 +"The certificate “$1%{CERTIFICATENAME}” represents a Certification Authority. +","प्रमाणपत्र “%{CERTIFICATENAME}” एक प्रमाणन प्राधिकरण का प्रतिनिधित्व करता है. +","certificate CERTIFICATENAME ek certification authority ka prtinidhitv karta hai +",8,2 +"These are the ones who found their fathers steeped in error, +","उन लोगों ने अपन बाप दादा को गुमराह पाया था +","un ones ne error fathers dada ko gumrah paya tha +",6,3 +"The meeting was held that very night at about 11 or 12 p. m. +","रातके लगभग 11 या 12 बजें यह सभा हुई। +","meeting lagabhag 11 ya 12 meeting was held huee. +",5,1 +"“If you prick us, do we not bleed, +","“अगर तुम हमें काटते हो, तो क्या हमारा खून नहीं बहता, +","agar tum hamen katte ho, to kya hamara khoon nahin bahta, +",9,2 +"The following rules have been notified under the Environment Protection Act, 1986: i Manufacture, Storage and Import of Hazardous Chemicals, 1989; ii Hazardous Wasles Management and Handling Rules, 1989; and iii Manufacture, Use, Import, Export and Environment Storage of Hazardous Micro - organisms / Genetically Engineered Organisms or Cell, 1989 and iv Biomedical Waste Rules, 1998. +","इन गतिविधियों को चलाने के लिए पर्यावरण संरक्षण अधिनियम, 1986 के अंतर्गत निम्नलिखित नियम अधिसूचित किए गए हैं: 1 खतरनाक रसायनों का उत्पादन, भंडारण तथा आयात नियम, 1989:2 खतरनाक अपशिष्ट पदार्थ प्रबंध तथा हैंडलिंग नियम-1989:3 खतरनाक सूक्ष्म जीव/आनुवांशिकी इंजीनियरी जन्य जीवों अथवा कोशिकाओं का उत्पादन, उपयोग, निर्यात एवं आयात तथा भंडारण नियम 1989: और 4 जैव-चिकित्सा अपशिष्ट नियम, 1998। +","in gatividhiyon ko chalane ke lie environment protection act , 1986 ke antargat following rules adhisoochit kie biomedical hain : 1 hazardous chemicals ka manufacture , storage tatha import rules , 1989:2 hazardous waste padarth management tatha handling niyam-1989:3 hazardous sookshm jivaanuvanshiki injiniyri jany organisms athva cell ka manufacture , use , export evn import tatha storage rules 1989 : aur 4 jaiv-chikitsa waste rules , 1998. +",7,2 +"Blend File / Folder with diff Output +","डिफ़ आउटपुट के साथ फ़ाइल/फ़ोल्डर ब्लैंड करें +","diff output ke sath failfoldar blend karen +",7,3 +"The premature death a day earlier of her fourth son Bhupendranath at the age of thirteen, must have precipi - tated her own. +","इससे एक दिन पहले उनके चौथे पुत्र भूपेन्द्रनाथ की तेरह वर्ष की आयु में अकाल मृत्यु ने भी जल्द ही उनकी जीवनलीला समाप्त करने में मदद की होगी। +","isse ek din pahle unke fourth son age of thirteen varsh ki aayu men akal mrityu ne bhi jald hi unki jivanlila samapt karne men madad ki hogi. +",5,4 +"'The first short story of Prem Chand, Duniya ka Sabse Anmol Ratan' The Most Precious Jewel in the World, appeared in 1907. +","प्रेमचन्द के अनुसार उनकी पहली कहानी, दुनिया का सबसे अनमोल रतन, सन् 1907 में प्रकाशित हुई। +","prem ke short unki first story , world ka sabse precious ratan , san 1907 men prkashit huee. +",6,1 +"He said: ""I do not want India to be a country in which millions of people say ""yes” to one man, I want a strong opposition.” +","उन्होंने कहा था :‘‘मैं नहीं चाहता कि भारत ऐसा देश बने जहां लाखों लोग एक व्यक्ति की‘हां’में हां मिलाएं, मैं एक मजबूत विपक्ष चाहता हूं।’’ +","unhonne kaha tha : i nahin chahta ki india aesa country bane jahan millions people ek man ki han men han milaen , i ek strong opposition chahta hoon. +",6,1 +"A conflict or disagreement comes into being or originates. +","कोई टकराव या असहमति पैदा होती है या अस्तित्व में आती है। +","koee conflict ya disagreement originates hoti hai ya astitv men aati hai. +",9,2 +"Accursed wherever they are found, [being] seized and massacred completely. +","फिटकारे हुए होंगे। जहाँ कही पाए गए पकड़े जाएँगे और बुरी तरह जान से मारे जाएँगे +","phitkare hue honge. jahan kahi pae ge pakare jaenge aur buri tarah jan se mare jaenge +",4,7 +"The males die and are absorbed. +","नर कृमि नष्ट होकर अवशोषित कर लिए जाते हैं। +","nar males nasht hokar avshoshit kar lie jate hain. +",8,2 +"Whether the label widget should fill all available horizontal space +","क्या लेबल विजेट सभी उपलब्ध क्षैतिज स्थान को भरना चहिए +","kya label widget sabhi available horizontal space ko bharna chahie +",9,1 +"The duplicitous salesman sold the sculpture to someone else even though he had promised to sell it to us. +","धोखेबाज़ बिक्रीकर्ता ने प्रतिमा हमें बेचने का वायदा करने के बावजूद उसे किसी और को बेच दी। +","dhokhebaz duplicitous salesman sold hamen promised to sell karne ke bavjood use kisi aur ko bech di. +",5,1 +"Malik Bhago, the chief of the place invites the Guru to partake food from the rich feast arranged by him. +","स्थान मुखिया, मलिक भागो गुरूजी को अपने द्वारा सुशेभित की हुई शानदार द़ावत में भोजन ग्रहण करने के लिए कहता है। +","sthan mukhiya, malik bhago gurooji ko apne dvara sushebhit ki huee shandar avat men bhojan grahan karne ke lie kahta hai. +",4,7 +"Specify the size and location of the main window +","आकार और स्थान का मुख्य विंडो +","size and location ka main window +",7,6 +"Dhartnavaram Ramakrishnamacharyulu As mentioned earlier, except for a few, the modern theatrical plays were the result of the influence of English literature, which had then became a fashion. +","जैसे कि पहले कहा जा चुका है कि बहुत कम उदाहरणों को छोडकर आधुनिक रंगमंच के नाटकों की रचना तथा प्रदर्शन अंग्रेजी साहित्य के प्रभाव से ही आरंभ हुए हैं। +","jaise ki pahle kaha ja chuka hai ki bahut few udaharnon ko chhodakar modern rngmnch ke plays ki literature tatha pradarshan english sahity ke influence se hi aarnbh hue hain. +",8,3 +"and their hearts are preoccupied with trivial matters. The unjust ones whisper to each other and say, ""Is he (Muhammad) more than a mere mortal like you? How can you follow that which you know is only a magic?"" +","उनके दिल दिलचस्पियों में खोए हुए होते है। उन्होंने चुपके-चुपके कानाफूसी की-अर्थात अत्याचार की नीति अपनानेवालों ने कि ""यह तो बस तुम जैसा ही एक मनुष्य है। फिर क्या तुम देखते-बूझते जादू में फँस जाओगे?"" +","unke dil dilachaspiyon men khoe hue hote hai. unhonne chupke-chupke unjust ones whisper ki niti apnanevalon ne ki yah to bas tum jaisa hi ek manushy hai. phir kya tum dekhte-boojhte jadoo men phns jaoge +",6,5 +"I have pointed out the mistakes in these translations. +","मैं अनुवादों की अशुद्धियां दिखा चुका हूं। +","i translations ki ashuddhiyan dikha chuka hoon. +",7,2 +"In the year 712, Mohammad Bin Kasim, the commander of Persia defeated the King of Sindh. +","सन् 712 में फारस के सेनापति मुहम्मद बिन क़ासिम ने सिन्ध के राजा को हरा दिया । +","san 712 men commander of persia muhammad bin kasim ne king of sindh ko hara diya . +",9,2 +"Cash, silver and gold ornaments, coconuts, fruits and flowers are offered to the Lord. +","नकद रुपये, चांदी और सोने के आभूषण, नारियल, फल, फूल देवता को भेंट में चढ़ाये जाते हैं। +","cash rupye , silver aur sone ke aabhooshan , coconuts , fruits , flowers lord ko bhent men chaaye jate hain. +",8,3 +"The result was discord and loss of peace in the family. +","इससे घर में कलह मच गया। +","result ghar family kalah mach gaya. +",5,1 +"The Government of India had no adequate plans and arrangements for the country 's defence. +","भारत सरकार के पास देश की रक्षा के लिए पर्याप्त योजनाएं व इंतजाम न थे. +","india government ke pas desh ki raksha ke lie paryapt plans and arrangements n the +",8,2 +"that's right, a $1 billion - +","जी हाँ, 10 करोड़ डॉलर्ज़ - +","ji right , 10 karor dlarz - +",6,1 +"Whether to show contacts that are offline in the contact list. +","क्या संपर्कों को दिखाना है जो संपर्क सूची में ऑफ़लाइन हैं. +","contact list ko show hai jo snpark soochi men ऑflain hain +",3,3 +"Proctosigmoidoscopy is a very important instrument used by the doctor for examining the disease. +","मलाशय-अवग्रहांत्रदर्शन रोगों की जांच के लिए चिकित्सक द्वारा प्रयोग किया जाने वाला एक बहुत ही महत्वपूर्ण उपकरण है. +","malashay-avagrhantradarshan examining the disease ke lie doctor dvara pryog kiya jane vala ek bahut hi important instrument hai +",7,0 +"The court said that the words were merely laughable and incapable of producing any effect on the readers. +","न्यायालय ने कहा कि वे शब्द सिर्फ हास्यास्पद थे और पाठकों पर कोई प्रभाव डालने में अक्षम थे। +","court ne kaha ki ve words sirph laughable the aur readers par koee effect dalne men incapable the. +",9,1 +"My devotees! no fear shall be on you that Day, nor shall ye grieve, - +","""ऐ मेरे बन्दों! आज न तुम्हें कोई भय है और न तुम शोकाकुल होगे।""- +","ae mere devotees ! aaj n tumhen koee fear hai aur n tum shokakul hoge. - +",9,1 +"Brmaha is Unique, only Unique. +","ब्रह्म एक और सिर्फ़ एक ही है। +","brmaha ek aur sirf ek hi hai. +",10,0 +"Please add songs to the project. +","कृपया गाने को परियोजना में जोड़ें. +","kripya songs ko project men add +",9,0 +"Can 't pass document URIs to a' Type = Link 'desktop entry +","दस्तावेज़ URI को 'Type = Link' डेस्कटॉप प्रविष्टि में भेज नहीं सकता है +","pass URI ko Type Link desktop entry men bhej nahin sakta hai +",7,1 +"Evidence of satisfactory completion of institutional arrangements +","संस्थागत व्यवस्था के संतोषजनक पूरा होने की साक्ष्य +","institutional arrangements ke satisfactory poora hone ki evidence +",10,0 +"Somebody sang before him a song which goes thus: ” I feel I am a poor man when people do n 't ask gifts of me. +","किसी ने उसके सामने इसक प्रकार का गीत गाया: ” जब लोग मुझसे दान नहीं मांगते तो जान पड़ता है कि दरिद्र व्यक़्ति हूं. +","kisi ne uske samne isak prkar ka git gaya: jab log mujhse dan nahin mangte to jan parta hai ki daridr vyati hoon +",7,3 +"He grow up together and remains friends life long. +","ये एक साथ ही पले और बढ़े और आजीवन मित्र रहे। +","ye ek sath hi pale aur bae aur life friends rahe. +",6,5 +"Something which is dangerous or risky for survival. +","ऐसी वस्तू जो जीवन या उत्पति के लिए संकटजन्य है +","something vastoo jo jivan ya utpti ke lie dangerous hai +",7,2 +"Opposition politicians such as those of the rightist Jamaat - e - Islami are already criticising the General 's alleged gullibility in putting his faith on the US. +","दक्षिणपंथी जमाते-इस्लमी जैसी विपक्षी पार्टियां अमेरिका पर भरोसा करने की जनरल की कथित मूर्खता की आलचना कर रही हैं. +","rightist jamate-islmi such opposition partiyan amerika par faith karne ki general ki alleged moorkhta ki aalachna kar e hain +",5,2 +"India and Togo enjoy warm and friendly relations. +","भारत और टोगो के प्रगाढ़ और मैत्रीपूर्ण संबंध हैं। +","india aur togo ke warm and friendly snbndh hain. +",7,1 +"He met hundreds of people from all religions to share in their suffering. +","उन्होंने सभी धर्मों के सैकड़ों लोगों से मिलकर उनके दुःख में अपनी भागीदारी जतायी। +","unhonne sabhi hundreds of people logon se milakar unke duakh men apni bhagidari jatayi. +",6,2 +"Yet his novel could not attain perfect fusion of content and form. +","फिर भी उनके उपन्यास में विषय वस्तु और रूपविधान की दृष्टि से तालमेल नहीं रह सका। +","phir bhi unke novel men content vastu aur form ki drishti se talmel nahin perfect saka. +",8,1 +"We have a fully autonomous vehicle +","हमारे पास पूरी तरह से स्वचालित वाहन है +","hamare pas fully tarah se autonomous vehicle hai +",8,0 +"that is why sapta sindhu language (relion language of parsi) has got converted to hafta hindu. +","इसलिये सप्त सिन्धु अवेस्तन भाषा (पारसियों की धर्मभाषा) मे जाकर हफ्त हिन्दु मे परिवर्तित हो गया (अवेस्ता: वेन्दीदाद फ़र्गर्द 1.18)। +","isliye sapta sindhu hindu language relion ki dharmbhasha me jakar hapht hindu me parivartit ho gaya avesta : vendidad fargard 118 . +",8,1 +"Thus did a frustrated, enraged, and powerless people overwhelm their authorities and target close-by innocents. +","इस प्रकार शक्तिहीन, कुण्ठित, क्रोधित लोगों ने अपने अधिकारियों पर गुस्सा दिखाया तथा अपने निकट के निर्दोष लोगों को निशाना बनाया. +","is prkar powerless , innocents , krodhit people ne apne authorities par gussa dikhaya tatha apne nikat ke nirdosh people ko nishana banaya +",9,0 +"The deceased was doing a private job at the time of the accident. +","मृतक दुर्घटना के समय एक निजी काम कर रहा था. +","mritak accident ke time ek private job kar raha tha +",8,1 +"plus i, and then you pay your monthly payment. +","इसके अलावा i, और फिर आप अपने मासिक भुगतान का भुगतान। +","iske i i , aur phir aap apne monthly payment ka bhugtan. +",7,1 +"Those are the ones whom Allah has guided, so from their guidance take an example. Say, ""I ask of you for this message no payment. It is not but a reminder for the worlds."" +","वे (पिछले पैग़म्बर) ऐसे लोग थे, जिन्हें अल्लाह ने मार्ग दिखाया था, तो तुम उन्हीं के मार्ग का अनुसरण करो। कह दो, ""मैं तुमसे उसका कोई प्रतिदान नहीं माँगता। वह तो सम्पूर्ण संसार के लिए बस एक प्रबोध है।"" +","ve pichhle paimbar aese log the, jinhen allah ne marg dikhaya tha, to tum unhin ke marg ka anusaran karo. kah do, main tumse uska koee prtidan nahin mangta. vah to sampoorn snsar ke lie bas ek prbodh hai. +",5,9 +"Inspired Teachers’ by their own example can instill good moral values in their students. +","प्रेरित शिक्षक’ अपने उदाहरण से अपने विद्यार्थियों में अच्छे नैतिक मूल्यों का समावेश कर सकते हैं। +","inspired teachers apne udaharan se apne students men good moral moolyon ka samavesh kar sakte hain. +",8,4 +"Connection refused through SOCKSv5 proxy. SOCKSv5 +","प्रॉक्सी के माध्यम से कनेक्शन से इनकार कर दिया. +","proxy ke madhyam se connection se refused kar diya +",8,0 +"We've driven from San Francisco to Los Angeles on Highway 1. +","हमने इसे हाईवे 1 पर सैन फ्रांसिस्को से लॉस एंजेलेस तक चलाया है +","hamne ise highway 1 par san francisco se angeles enjeles tak chalaya hai +",8,1 +"I know that the Bodhisattva lovingly regards all living creatures to deliver them from misery! +","मै जानता हूं कि बोधिसत्व सभी प्राणियों पर अपनी कृपा भाव बिखेरे हुए हैं! +","i janta hoon ki bodhisattva sabhi living par apni kripa bhav bikhere hue hain ! +",7,1 +"Radha today these eyes beheld; A maid she is unparalleled. +","राधा को देखा है इन आँखों ने आज, वह बाला है अप्रतिभ। +","radha ko eyes hai in aankhon ne today , vah bala hai aprtibh. +",6,2 +"My daughter provided me with a well - written chronicle of events in the first year of her elementary school. +","मुझे मेरी बेटी ने उसके प्राथमिक विद्यालय के पहले वर्ष की घटनाओं का अच्छी तरह से लिखा हुआ वृत्तान्त दिया है। +","well meri daughter ne uske first school ke pahle year ki events ka achchhi tarah se likha huaa chronicle diya hai. +",7,2 +"Cannot authenticate MAPI accounts in offline mode +","ऑफलाइन मोड में MAPI खाता सत्यापित नहीं कर सकता है +","mapi mode men MAPI accounts satyapit nahin kar sakta hai +",5,1 +"An unknown application wants to change the password for the default keyring. You have to choose the password you want to use for it. +","एक अनजान अनुप्रयोग तयशुदा कीरिंग के लिए कूटशब्द बदलना चाहता है. आपको कूटशब्द चुनना है जिसे आप इसके लिये प्रयोग करना चाहते हैं. +","ek unknown application tayshuda keyring ke lie password badalna chahta hai aapko password chunna hai jise aap iske liye pryog karna chahte hain +",8,1 +"And their words were not but that they said, ""Our Lord, forgive us our sins and the excess [committed] in our affairs and plant firmly our feet and give us victory over the disbelieving people."" +","उन्होंने कुछ नहीं कहा सिवाय इसके कि ""ऐ हमारे रब! तू हमारे गुनाहों को और हमारे अपने मामले में जो ज़्यादती हमसे हो गई हो, उसे क्षमा कर दे और हमारे क़दम जमाए रख, और इनकार करनेवाले लोगों के मुक़ाबले में हमारी सहायता कर।"" +","words kuchh nahin kaha affairs iske ki forgive lord sins ! too lord gunahon ko aur lord apne mamle men jo excess hamse ho gee ho , use kshma kar de aur lord plant disbelieving rakh , aur inkar karnevale logon ke muable men hamari sahayta kar. +",6,1 +"The adjacent to the foot path all around the garden and the central foot path may be utilised for growing different short duration green vegetables like Coriander, spinach, fenugreek, Alternanthera etc. +","बगीचा के चारों ओर तथा आने-जाने के रास्ते का उपयोग विभिन्न अल्पावधि हरी साग-सब्जी जैसे-धनिया, पालक, मेथी, पुदीना आदि उगाने के लिए किया जा सकता है। +","garden ke charon or tatha aane-jane ke path ka upyog different short green sag-sabji jaise-dhniya , spinach , fenugreek , pudina aadi ugane ke lie kiya ja sakta central +",9,0 +"A staff of GUARD then brought 2 kg. of earthworms which costed Chandranna Rs. 300. +","के स्टाफ के एक सदस्य ने उसके बाद 2 किलोग्राम केंचुए लाकर दिए, जिसकी कीमत चन्द्रण्णा को 300 रुपये देनी पड़ी। +","ke staff ke ek sadasy ne uske bad guard kg earthworms lakar die , jiski kimat chandranna ko 300 rupye deni pari. +",4,1 +"Are you sure you want to delete these {0} tasks? +","क्या आप निश्चित हैं कि आप इन {0} कार्यों को मिटाना चाहते हैं? +","kya aap nishchit hain ki aap in 0 tasks ko delete chahte hain +",7,3 +"The construction of this temple was taken place in 4 century. +","मूल रूप से इस मंदिर का निर्माण चौथी शताब्दी के आस-पास हुआ था। +","mool roop se is temple ka construction place century ke aas-pas huaa tha. +",7,1 +"There is in this audience and all around us a large number of elders who are making extremely valuable contributions to our country and to our society. +","इस सभा में तथा हमारे आसपास ऐसे बहुत से वयोवृद्ध हैं जो कि हमारे देश तथा समाज के लिए बहुमूल्य सहयोग प्रदान कर रहे हैं। +","is large number tatha hamare aaspas aese bahut se vayovriddh hain jo ki hamare desh tatha samaj ke lie bahumooly sahyog prdan kar rahe hain. +",8,1 +"Failed to move temporary file “%s” to final location “%s”: %s +","“%s” अस्थायी फ़ाइल को अंतिम अवस्थिति “%s” में भेजने में विफल: %s +","file temporary fail ko final location file men bhejne men viphal : file +",7,2 +"Your midwife or doctor should give advice on how you can best look after yourself and your baby while you are pregnant. +","जब आप गर्भावस्था में हैं, आप अपनी और बच्चे की किस प्रकार से देखभाल कर सकती हैं, इस बारे आप की मिडवाईफ़ या आपके डाक्टर को परामर्श देना चाहिये। +","jab aap pregnant men hain , aap apni aur look ki kis prkar se dekhbhal kar sakti hain , is bare aap ki midwife ya aapke doctor ko advice dena chahiye. +",7,1 +"Negative 3, the opposite is 3. +","नकारात्मक 3, विपरीत 3 है. +","negative 3 , opposite 3 hai +",9,2 +"of what there is to fear and to hate. +","हमे किससे डरना चाहिये और बचना चाहिये. +","hame kisse darna chahiye aur bachna chahiye +",8,4 +"They taste not death therein, save the first death. And He hath saved them from the doom of hell, +","वहाँ पहली दफ़ा की मौत के सिवा उनको मौत की तलख़ी चख़नी ही न पड़ेगी और ख़ुदा उनको दोज़ख़ के अज़ाब से महफूज़ रखेगा +","vahan pahli dafa ki maut ke siva unko maut ki talai chani hi n paregi aur uda unko doom of hell se mahphooz rakhega +",4,6 +"Traditional Indian family values are observed with great honor. +","पारंपरिक भारतीय पारिवारिक मूल्यों को काफी आदर की दृष्टि से देखा जाता है। +","traditional indian family moolyon ko kaphi aadar ki drishti se dekha jata hai. +",8,0 +"One article from devoting air dispersion modeling and transformation for technical quality and air dispersion modeling of air pollution. +","वायु प्रकीर्णन मॉडलिंग और रुपान्तरण फ़ार्मुले छह से एक लेख समर्पित करने के लिए तकनीकी गुणवत्ता और वायु प्रदूषण के वायु प्रकीर्णन मॉडलिंग +","air dispersion mdling aur transformation farmule chhah se ek article samarpit karne ke lie technical quality aur air pollution ke air dispersion mdling +",5,0 +"His old friend Amar Singh helped him, when his company ABCL failed and he had to thereby face financial trouble. +","उनके पुराने मित्र अमरसिंह (Amar Singh) ने इनकी कंपनी एबीसीएल के फेल हो जाने के कारण आर्थिक संकट के समय इनकी मदद कीं। +","unke old friend singh Amar Singh ne inki company abcl ke phel ho jane ke karan financial face ke samay inki madad kin. +",8,1 +"In order to make it a warning for you, and that the ear retentive may preserve it. +","ताकि हम उसे तुम्हारे लिए यादगार बनाएं और उसे याद रखने वाले कान सुनकर याद रखें +","order ham use tumhare lie retentive banaen aur use yad rakhne vale ear sunakar yad rakhen +",7,2 +"For services in Wales contact: Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. +","वेल्स में सेवाओं के लिए सम्पर्क:-Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ. टेलीफ़ोन नम्बर ०२२२ ८२५१११ +","services in wales ke lie sampark:-Welsh Office Drugs Unit, Welsh Office, Cathays Park, Cardiff CF1 3NQ telifon nambar ०२२२ ८२५१११ +",8,1 +"Ice bag is used for the application to reduce local swelling and pain +","स्थानीय सूजन तथा दर्द को कम करने हेतु बर्फ की थैली का प्रयोग किया जाता है। +","reduce local swelling dard ko kam karne hetu barph ki thaili ka pryog kiya jata hai. +",7,1 +"For a country of this small size, the geographical variations are astonishing. +","एक छोटे से क्षेत्र के लिए नेपाल की भौगोलिक विविधता बहुत उल्लेखनीय है। +","ek small se country ke lie nepal ki geographical vividhta bahut ullekhniy hai. +",7,5 +"Surely the pious shall be in bliss, +","निस्संदेह अच्छे लोग नेमतों में होंगे, +","nissndeh achchhe log pious men honge , +",8,2 +"and their hearts are preoccupied with trivial matters. The unjust ones whisper to each other and say, ""Is he (Muhammad) more than a mere mortal like you? How can you follow that which you know is only a magic?"" +","उनके दिल दिलचस्पियों में खोए हुए होते है। उन्होंने चुपके-चुपके कानाफूसी की-अर्थात अत्याचार की नीति अपनानेवालों ने कि ""यह तो बस तुम जैसा ही एक मनुष्य है। फिर क्या तुम देखते-बूझते जादू में फँस जाओगे?"" +","unke hearts dilachaspiyon men trivial hue hote matters unhonne chupke-chupke kanaphoosi ki-arthat unjust ki niti apnanevalon ne ki yah to bas other jaisa hi ek mortal matters phir kya other dekhte-boojhte magic men phns jaoge +",6,4 +"I have complete knowledge of debenture bond. +","डिबेंचर बांड के बारे में मुझे समस्त जानकारी है। +","debenture bond ke bare men mujhe samast complete knowledge +",6,0 +"The flow of thought ran through my mind. +","दिमाग से विचार का प्रवाह निकल गया। +","flow of thought ka flow nikal thought +",4,1 +"A component of a chemical compound which is essential. +","किसी रासायनिक यौगिक का घटक जो आवश्यक होता है. +","kisi chemical compound ka component jo aavashyak hota hai +",8,3 +"And it 's good to always do a reality check after every step. +","और यह हमेशा हर कदम के बाद एक वास्तविकता की जांच करने के लिए अच्छा है। +","aur yah hamesha har step ke bad ek reality ki janch karne ke lie good hai. +",9,1 +"And send down (to prey) upon them birds in flocks, +","और उन पर झुन्ड की झुन्ड चिड़ियाँ भेज दीं +","aur un par flocks ki flocks birds send din +",5,1 +"and We made them a thing of the past, and We made them an example to later people. +","अतः हमने उन्हें अग्रगामी और बादवालों के लिए शिक्षाप्रद उदाहरण बना दिया +","ata hamne unhen thing aur past ke lie shikshaprad udaharan bana diya +",6,1 +"Every soul shall have a taste of death: And only on the Day of Judgment shall you be paid your full recompense. Only he who is saved far from the Fire and admitted to the Garden will have attained the object (of Life): For the life of this world is but goods and chattels of deception. +","प्रत्येक जीव मृत्यु का मज़ा चखनेवाला है, और तुम्हें तो क़ियामत के दिन पूरा-पूरा बदला दे दिया जाएगा। अतः जिसे आग (जहन्नम) से हटाकर जन्नत में दाख़िल कर दिया गया, वह सफल रहा। रहा सांसारिक जीवन, तो वह माया-सामग्री के सिवा कुछ भी नहीं +","full object death ka taste chakhnevala hai , aur tumhen to judgment ke day poora-poora badla de diya jaega. ata jise fire jahannam se hatakar garden men dail kar diya gaya , vah saphal raha. raha sansarik soul , to vah maya-samagri ke siva kuchh bhi nahin +",7,2 +"The Englishman ' s eyes lit up . +","अंग्रेज की आंखों में चमक आ गई , +","englishman ki eyes men chamak aa gee , +",9,2 +"In most of the Committees, public is directly or indirectly associated when memoranda containing suggestions are received. +","अधिकांश समितियों में जनता प्रत्यक्ष अथवा अप्रत्यक्ष ढ़ंग से तब संबद्ध होती है जब उनसे सुझावों संबंधी ज्ञापन प्राप्त होते हैं। +","most committees men public pratyaksh athva apratyaksh ng se tab snbaddh hoti hai jab unse memoranda snbndhi jnjapan prapt hote hain. +",8,1 +"But Nanak was for more knowledgeable than his teachers. +","लेकिन नानक का ज्ञान गुरु से कहीं बढ़-चढ़ कर था। +","lekin nanak ka jnjan guru se kahin ba-cha kar tha. +",4,6 +"the form f of x is greater than a. +","जे का फ बड़ा है आ से +","je ka ph greater hai aa se +",5,5 +"Suddenly , one of the hawks made a flashing dive through the sky , attacking the other . +","अकस्मात एक चील ने आसमान में तेजी से डुबकी लगाई और दूसरी चील पर हमला कर दिया । +","akasmat ek hawks ne sky men teji se dive lagaee aur doosri hawks par hamla kar diya . +",8,3 +"“ Well , then , why do we need all these books ? ” the boy asked . +","“ तो फिर तुम्हें इन ढेर सारी किताबों की क्या जरूरत है ? ” +","to phir tumhen in books sari kitabon ki kya jaroorat hai +",7,2 +"Folder '{0}' doesn 't contain any duplicate message. +","फोल्डर '{0}' में कोई दोहरा संदेश नहीं है. +","folder doesn men koee duplicate message nahin hai +",8,0 +"He was never to look back again. +","उन्होंने फिर कभी मुड़कर नहीं देखा. +","unhonne phir kabhi murakar nahin dekha +",5,8 +"you have to learn to do that for your digital self. +","हमें यही सब अपने डिजिटल जीवन में भी करना सीखना पड़ता है. +","hamen yahi sab apne digital jivan men bhi karna sikhna parta hai +",9,0 +"Shimla can be reached by rail, road or air. +","शिमला, रेल, सड़क और वायु मार्ग से पहुंचा जा सकता है। +","shimla, rail, road or air marg se reached ja sakta hai. +",8,1 +"The phase of cell cycle in which the size of the cell is increase and copy of a DNA is made. +","कोशिका चक्र में चरण जिसमें कोशिका के आकार में वद्धि होती है तथा डीएनए की प्रतिकृति निर्मित होती है +","cell cycle men phase jismen cell ke size men vaddhi hoti hai tatha dna ki prtikriti nirmit hoti hai +",8,0 +"The international community must work together now, with wisdom, to create tolerance and understanding for addressing the complex issues confronting mankind. +","अंतरराष्ट्रीय समुदाय को अब मानव के सम्मुख जटिल मुद्दों के समाधान हेतु सहिष्णुता और सद्भावना पैदा करने के लिए मिलकर बुद्धिमतापूर्वक मिलकर कार्य करना चाहिए। +","international community ko ab manav ke sammukh complex issues ke samadhan hetu tolerance aur sadbhavna paida karne ke lie mankind wisdom mankind kary karna chahie. +",7,5 +"Notification area applet for managing your network devices and connections. +","आपके संजाल युक्तियां और कनेक्शन को प्रबंधित करने के लिए अधिसूचना क्षेत्र एप्लेट. +","aapke snjal devices and connections ko prbndhit karne ke lie notification area applet +",8,0 +"and I 'll send you back your poster. Join by groups +","और मैं आपके पोस्टर आपको वापस भेज दूंगा. इकट्ठे आइये +","aur main aapke poster join vapas bhej groups ikatthe aaiye +",3,1 +"that the world, because of people like Tony Blair and Bono +","कि ये संसार, टोनी ब्लेयर और बोनो और +","ki ye world , tony blair aur bono aur +",8,1 +"You can do the number line if you need to. +","आप इसे नंबर लाइन कर सकते हैं यदि आपको ज़रूरत पड़े तो. +","aap ise number line kar sakte hain yadi aapko zaroorat pare to +",9,2 +"This is necessary if we have to reach the goal of creating a hunger - free society by doubling our food production in the next ten years. +","यह जरूरी है क्योंकि अगले 10 वर्षों में समाज से भुखमरी दूर करने के लिए खाद्य-उत्पादन दुगुना करना होगा। +","yah necessary hai years next ten varshon men society se hunger door karne ke lie khady-utpadan production karna hoga. +",8,0 +"This message is encrypted, with a strong encryption algorithm. It would be very difficult for an outsider to view the content of this message in a practical amount of time. +","यह संदेश गुप्त है, एक मजबूत गोपन एलागरिथम के साथ. किसी बाहरी के लिए प्रायोगिक समय सीमा में संदेश की सामग्री देखना बहुत कठिन होगा. +","yah message content hai , ek strong encryption algorithm ke sath kisi bahri ke lie prayogik time sima men message ki samagri dekhna bahut difficult hoga +",6,4 +"The following clusters have been chosen for intervention: +","इस मदद हेतु निम्नांकित समूहों को चुना गया है +","is madad hetu nimnankit samoohon ko chuna gaya hai +",8,2 +"The first signs of ill-health are the cessation of rumination , and drop in milk yield . +","बीमारी का पहला लक्षण तो यह है कि जानवर जुगाली करना बंद कर देता है.दूध भी वह कम मात्रा में देने लगता है . +","signs ka first lakshan to yah hai ki milk cessation karna bnd kar deta haidoodh bhi vah kam drop men dene lagta hai +",4,1 +"115AB. (1) Where the total income of an assessee, being an overseas financial organisation (hereinafter referred to as Offshore Fund) includes— +","115कख. (1) जहां किसी निर्धारिती की, जो विदेशी वित्तीय संगठन है (जिसे इसमें इसके पश्चात् ''अपतट निधि'' कहा गया है) कुल आय में,– +","115kakh 1 jahan kisi assessee ki , jo overseas financial organisation hai jise ismen iske hereinafter apatat fund kaha gaya hai kul total men , +",7,2 +"In a condolence message, the President has said, ""It was with profound sorrow that I learnt of the passing away ofShri Justice V.R. Krishna Iyer. +","राष्ट्रपति ने एक शोक संदेश में कहा है , "" मुझे न्यायमूर्तिश्रीवी आर कृष्ण अय्यर के निधन के बारे में जानकर अत्यंत दुःख हुआ है। +","rashtrapti ne ek condolence message men kaha hai , mujhe nyaymoortishrivi aar krishn ayyar ke nidhan ke bare men janakar atynt duakh huaa hai. +",9,0 +"While primay matter and the Universals are eternal, it is the individuals which are produced and are perishable. +","जहां मूल द्रव्य और सामान्य शाश्वत होते है, वही व्यक्तियो की उत्पति होती है और नश्वर होते है। +","jahan mool dravy aur samany shashvat hote hai, vahi vyaktiyo ki utpti hoti hai aur nashvar hote hai. +",9,2 +"A market study shows that a male turkey sold at 24 weeks of age weighing 10 to 20 kg with expenditure of Rs. 300 to 450 will give a profit of Rs. 500 to 600. +","एक अध्ययन के अनुसार 24 सप्ताह की आयु और 10-20 किलो ग्राम वजन वाले नर मादा को यदि 300 से 450 रुपये में बेचा जाता है तो इसमें करीब 500 से 600 रुपये का लाभ होता है। +","ek adhyayan ke anusar 24 weeks of age aur 10-20 kilo gram vajan vale nar mada ko yadi 300 se 450 rupye men becha jata hai to ismen karib 500 se 600 rupye ka labh hota hai. +",9,0 +"Without having tried it and found out all its qualities, how would they prescribe it for rulers, kings and men, low and high? +","बिना परीक्षण किए वे अपने राजा, दरबारियों, सामंतों तथा प्रजा को इसके उपयोग की स्वीकृति कैसे दे सकते हैं। +","bina parikshan kie ve apne rulers , darbariyon , samnton tatha men ko iske low ki svikriti kaise high sakte hain. +",3,4 +"By the time father and son reached the foot of the Himalayas it was April . +","पिता और पुत्र जब हिमालय की घाटी में पहुंचे तब अप्रैल का महीन शुरू हो चुका था . +","father aur son jab himalayas ki ghati men time tab aprail ka foot shuroo ho chuka tha +",7,2 +"but whoever seeks beyond that—it is they who are the transgressors) +","किन्तु जिस किसी ने इसके अतिरिक्त कुछ और चाहा तो ऐसे ही लोग सीमा का उल्लंघन करनेवाले है।- +","kintu jis kisi ne iske atirikt kuchh aur chaha to aese hi log sima ka ullnghan karnevale transgressors +",7,1 +"The body of humans are prone to destruction but destruction never occurs to the soul. +","मनुष्य का शरीर विनाशशील है किंतु आत्मा का कभी नाश नहीं होता। +","humans ka body prone hai kintu soul ka kabhi destruction nahin hota. +",8,2 +"Exactly how LSD acts on the mind is not really known at present. +","एल. एस. डी. मस्तिष्क पर किस प्रकार असर डालती है, यह वर्तमान में ठीक-ठीक पता नहीं है। +","el es di mastishk par kis prkar asar dalti hai, yah present men thik-thik pata nahin hai. +",9,0 +"But, so this is the first quadrant intersection. +","लेकिन, तो यह पहली वृत्त का चतुर्थ भाग मिलन बिंदु है। +","lekin , to yah first quadrant ka intersection bhag milan bindu hai. +",8,2 +"Whether menu items should have accelerators +","क्या मेन्यू मद में त्वरक होने चाहिए +","kya menu items men accelerators hone chahie +",9,2 +"Sayings on Hindi by various great personalities +","हिन्दी के बारे में विभिन्न महापुरुषों के वचन +","hindi ke bare men various great ke sayings +",7,2 +"And the plants and the trees prostrate (for Him). +","और बूटियाँ बेलें, और दरख्त (उसी को) सजदा करते हैं +","aur plants belen, aur trees prostrate ko sajda karte hain +",7,4 +"Following problems were found with the data you entered: +","डाटा जो आपने भरा है उसके कारण निम्न समस्याएँ मिलींः +","data jo aapne bhara hai uske karan nimn problems milina +",8,1 +"I told him that the Congress bow was a hefty bow and had many strings to it and many more would be added to it. +","मैंने उसे बतायाZ कि कांग्रेस वैसे ही एक ताकतवर संस्था है, इसकी कई शाखाएं-प्रशाखाएं हैं तथा इसमें कुछ और भी जुड़ेंगी. +","mainne use batayaZ ki congress vaise hi ek takatavar snstha hai, iski kee shakhaen-prshakhaen hain tatha ismen kuchh aur bhi added +",7,3 +"The complement of any maxterm is a minterm. +","किसी भी योगपद का पूरक एक गुणद होता है। +","kisi bhi maxterm ka complement ek gunad hota hai. +",9,2 +"How soon can you have this dress ready? +","इस ड्रेस को कितनी जल्दी तैयार कर सकते हो? +","is dress ko kitni jaldi ready kar sakte ho +",10,0 +"Panini not only in India, but the world 's biggest linguist, who did extensive studies and vivid descriptive language. +","पाणिनि न केवल भारत के, अपितु संसार के सबसे बड़े भाषाविज्ञानी हैं, जिन्होंने वर्णनात्मक रूप में भाषा का विशद एवं व्यापक अध्ययन किया। +","panini n keval bharat ke, apitu snsar ke sabse biggest linguist hain, jinhonne varnnatmak roop men bhasha ka vishad evn vyapak adhyayan kiya. +",8,2 +"[it will be] lowering and exalting. +","कि किसी को पस्त करेगी किसी को बुलन्द +","ki kisi ko exalting karegi kisi ko buland +",8,2 +"Vrindavanlal Verma wrote. another play Mahoba Sangram Battle of Mahoba in which he glorified armed struggle for independence. +","एक और नाटक 'महोबा संग्राम' भी वर्मा जी ने लिखा, जिसमें देश की स्वतंत्रता के लिए सशस्त्र संघर्ष की महत्ता दिखायी थी। +","ek aur play mhoba sangram bhi vrindavanlal mahoba ne likha , jismen desh ki independence ke lie sashastr struggle ki mahatta dikhayi thi. +",6,5 +"And here you'll see Daniel throw this hoop into the air, +","और यहाँ आप देखेंगे डानिएल हूप को ऊपर उड़ाते हुए, +","aur yahan aap dekhenge daniel hoop ko oopar urate hue , +",8,1 +"And the Word will be fulfilled against them, because of their wrong - doing, and they will be unable to speak (in plea). +","इन पर (अज़ाब का) वायदा पूरा हो गया फिर ये लोग कुछ बोल भी तो न सकेंगें +","in par word ka vayda poora ho gaya phir ye log kuchh speak bhi to n wrong +",7,2 +"Are you sure you want to delete these {0} tasks? +","क्या आप निश्चित हैं कि आप इन {0} कार्यों को मिटाना चाहते हैं? +","kya aap sure hain ki aap in 0 tasks ko mitana chahte hain +",9,2 +"Average feed consumption upto marketable age +","बेचने योग्य होने की आयु तक पहुँचने तक भोजन की औसत खपत +","upto yogy hone ki age tak pahunchne tak feed ki average consumption +",6,1 +"A typical exploitation of the horizontal instability is by tampering with regions of higher albedo like the polar ice caps. +","क्षैतिज अस्थिरता के समुपयोजन का एक प्रारुपिक उदाहरण ध्रवीय बर्फ-टोपी जैसे उच्च एल्बडो के क्षेत्र में हस्तक्षेप है। +","horizontal instability ke exploitation ka ek typical udaharan polar barph-topi jaise higher elbdo ke regions men hastakshep hai. +",9,1 +"Then We raised up after them another generation. +","फिर हमने उनके बाद एक और क़ौम को (समूद) को पैदा किया +","phir hamne unke bad ek aur aum ko generation ko paida kiya +",8,0 +"This is essentially necessary in the evolution of laws and norms regarding the resources of the sea and of new technology involving outer space. +","यह बात विशेषतः समुद्र सम्बंधी तथा बाह्य अंतरिक्ष विषयक टेक्नोलाजी के विकास से सम्बद्ध कानूनों और मानदंडों के बारे में लागू होनी चाहिए। +","yah new visheshta sea sambndhi tatha outer space vishayak technology ke evolution se sambaddh laws aur norms ke bare men lagoo resources chahie. +",6,2 +"camouflage worn by bullies who are dangerously armed +","बदमाश छलावरण पहने हैं जो खतरनाक हथियारों से लैस हैं +","badmash camouflage pahne hain jo khatarnak hathiyaron se lais hain +",9,0 +"unusual trapping or confinement of a part in the body +","यारीर में किसी अंग का असामान्य रूप से फंसना या सीमित हो जाना +","body men kisi part ka unusual roop se trapping ya simit ho jana +",8,1 +"There were great rulers holding sway over vast areas as well as minor chieftains who paid tributes to them and ruled over limited areas. +","उन दिनो अगर एक और बडे बडे भूभागो पर राज करने वाले और उनके अधीन सांमती करने वाले ऐसे छोटे छोटे सांमत सरदार भी थे जो सीमित भूभागो का शासन किया करते थे। +","un dino agar ek aur bade bade bhoobhago par raj karne vale aur unke adhin sanmti karne vale aese chhote minor chieftains sardar bhi the jo simit bhoobhago ka shasan kiya karte the. +",7,6 +"Democracy implies the existence of representative institutions, the expression of the will of the people as to who their representatives would be and the participation of the people in national tasks. +","लोकतंत्र में यह अंतर्निहत है कि प्रतिनिधित्वपूर्ण संस्थाएं काम करें और लोग स्वतंत्र रूप से राय दे सकें कि उनमें प्रतिनिधि कौन होंगे तथा राष्ट्रीय क्रियाकलापों में जनता की भागीदारी रहे। +","democracy men yah antarnihat hai ki prtinidhitvpoorn institutions tasks karen aur people svtntr participation se ray expression saken ki existence representative kaun honge tatha national kriyaklapon men janta ki bhagidari rahe. +",7,1 +"When they entered unto him, and said: Salaman (peace)! [Ibrahim (Abraham)] said: ""Indeed! We are afraid of you."" +","कि जब ये इबराहीम के पास आए तो (पहले) उन्होंने सलाम किया इबराहीम ने (जवाब सलाम के बाद) कहा हमको तो तुम से डर मालूम होता है +","ki jab ye peace ke pas aae to pahle unhonne salam kiya peace ne afraid salam ke bad kaha hamko to tum se salaman maloom hota hai +",4,4 +"The first Sthai inhabitants took its from about 1000 years back | +","प्रथम स्थाई बस्तियों ने ९००० वर्ष पूर्व स्वरुप लिया। +","pratham sthaee bastiyon ne ९००० years back svrup liya. +",5,7 +"But this exclusive consummation is not the sole or inevitable result of the Path of Knowledge. +","किन्तु यह एकाग्डी अत्युच्च अवस्था ही ज्ञान के मार्ग का अकेला या अनिवार्य परिणाम नहीं। +","kintu yah ekagdi atyuchch avastha hi path of knowledge ka sole or inevitable parinam nahin. +",9,2 +"The First Appellate Authority can give either a ""spoken"" order or a written order +","प्रथम अपीलीय अधिकारी मौखिक या लिखित किसी भी रूप में आदेश दे सकते हैं। +","first appellate authority spoken ya likhit kisi bhi roop men order de sakte hain. +",8,3 +"Until the Day of the time well - known. "" +","उस दिन तक के लिए जिसका समय ज्ञात एवं नियत है। "" +","us din tak ke lie jiska samay jnjat evn niyat day +",9,2 +"The place where Bapu lost his life cannot but continue to be a spot attracting visits from devotees, tourists and others. +","जिस स्थान में बापू की हत्या हुई, वह उनके भक्तों, यात्रियों तथा अन्य लोगों को सदा ही आकर्षित करता रहेगा। +","jis sthan men bapoo ki hatya huee, vah unke bhakton, yatriyon tatha any logon ko sada hi aakarshit karta rahega. +",5,8 +"Shahjahan arrange to built it in memory of his wife Mumtaz Mahal. +","यह मुगल बादशाह शाहजहां ने अपनी बेगम मुमताज महल की याद में बनवाया था। +","yah mugal badshah shahajhan ne apni begam mumtaj mahal ki yad men banvaya tha. +",9,1 +"This is true even if the larval stage has been artificially fed on capsularis diet. +","यह उस स्थिति में भी सत्य है जब लार्वा कैपसुलैरिस आहार ग्रहण करे। +","yah us stage men bhi true hai jab larval capsularis diet grahan kare. +",9,2 +"Info to be shown for this item +","इस मद के लिए दिखाए जाने के लिए जानकारी +","is mad ke lie shown jane ke lie info +",6,3 +"So the fence would have been broken if there really had been a leopard. +","अतः यदि चीता वहां सचमुच में गया होता तो बाड़ी कहीं से टूटी मिलती। +","ata yadi chita vahan sachmuch men gaya hota to bari kahin se tooti milti. +",7,5 +"Then we can sit down and discuss all aspects of the matter. +","उस हालत में हम मिल बैठकर सभी पक्षों पर विचार कर सकते हैं। +","us halat men ham mil sit sabhi pakshon par vichar kar sakte hain. +",5,5 +"There are four to five generations in a year and generally the pest overwinters as nymph which develops into adult in early spring. +","वर्ष में चार-पांच पीढ़ियां पूरी हो जाती हैं और यह पीड़क निम्फ के रूप में सर्दियां पार करके बसंत के आरंभ में प्रौढ़ बन जाता है। +","year men char-panch generations poori ho jati hain aur yah pirak nimph ke roop men sardiyan par karke spring ke aarnbh men adult nymph jata hai. +",8,1 +"(9) The person from whose custody any books of account or other documents are seized under sub-section (1) or sub-section (1A) may make copies thereof, or take extracts therefrom, in the presence of the authorised officer or any other person empowered by him in this behalf, at such place and time as the authorised officer may appoint in this behalf. +","(9) वह व्यक्ति, जिसकी अभिरक्षा से कोर्इ लेखा बहियां या अन्य दस्तावेज उपधारा (1) या उपधारा (1क) के अधीन अभिगृहीत किए जाते हैं, उनकी नकलें या उनसे उद्धरण प्राधिकृत अधिकारी या उस निमित्त उसके द्वारा सशक्त किसी अन्य व्यक्ति की उपस्थिति में ऐसे स्थान और समय पर जो प्राधिकृत अधिकारी इस निमित्त नियत करें ले सकेगा। +","9 vah vyakti, jiski abhiraksha se kori lekha bahiyan ya any dastavej updhara 1 ya updhara 1k ke adhin abhigrihit kie jate hain, unki naklen ya unse uddharan authorised officer ya us nimitt uske dvara sashakt kisi any vyakti ki upasthiti men aese sthan aur samay par jo authorised officer is nimitt niyat karen le sakega. +",4,5 +"Officials from the Ministry of External Affairs and the Ministry of Defence participated. +","इसमें भारतीय रक्षा मंत्रालय के अधिकारियों ने भाग लिया। +","ismen bhartiy defence ministry ke officials ne bhag liya. +",10,0 +"Water is major constituents of all living matters. +","पानी सभी जीवित पदार्थों का मुख्य घटक है. +","water sabhi living padarthon ka major ghatak hai +",8,2 +"For more than four decades, Gurbakhsh Singh prevailed over Punjabi journalism. +","चार दशकों से अधिक, गुरबख्श सिंह पंजाबी पत्रकारिता पर आच्छादित रहे। +","char dashkon se adhik, gurabakhsh sinh punjabi journalism par aachchhadit rahe. +",10,0 +"But then how to act compassionately if you don't have compassion? +","पर आप सहानुभूति पूर्वक कार्य कैसे करोगे अगर आप में करुणा न हो +","par aap compassion poorvak kary kaise karoge agar aap men karuna n ho +",8,4 +"And two pairs of light, strong and comfortable shoes for walking. +","और ये देखिए जूते दो जोड़ी, हल्के और मजबूत, चलने मे आराम देह। +","aur ye dekhie joote do pairs, light aur strong, walking me aaram deh. +",9,1 +"I wonder if I could rightly call it a meeting. +","पर इसको सभा कहा भी जाए या नहीं? +","par i meeting kaha bhi jae ya nahin +",7,4 +"Ratnambar while defining sin at the end in Chitralekha, says' There is nothing that is wrong in the world, this is only another novel in the difference of attitudes in people. +","चित्रलेखा के अन्त में पाप की व्याख्या करते हुए रत्नाम्बर कहता हैः संसार में पाप कुछ भी नहीं है, वह केवल मनुष्य के दृष्टिकोण की विषमता का दूसरा नाम है। +","chitrlekha ke ant men pap ki vyakhya karte hue ratnambar kahta haia snsar men pap kuchh bhi nahin hai, vah keval manushy ke drishtikon ki vishamta ka doosra nam hai. +",8,2 +"It is free, and borrowing books is free. +","यह सेवा निःशुल्क (मुफ़्त) है और (पढ़ कर लौटा दी जाने वाली) किताबें मुफ़्त में मिलेंगी. +","yah seva free muft hai aur books kar lauta di jane vali kitaben muft men milengi +",6,1 +"The peasant was shaken up and he began to emerge from his quiescent shell . +","किसान झकझोर उठा और वह अपनी खामोश झोपडियों में से निकल कर बाहर झांकने लगा . +","kisan jhakjhor utha aur vah apni began to emerge se nikal kar bahar jhankne laga +",5,2 +"Nobody cared why my intellect was rusting. +","किसीको यह परवाह नहीं थी कि मेरी बुद्धि पर क्यों जंग लगाया जा रहा है। +","kisiko yah cared nahin thi ki meri buddhi par kyon jng lagaya ja raha hai. +",8,0 +"God has sealed their hearts and hearing and their vision is veiled; a great punishment awaits them. +","अल्लाह ने उनके दिलों पर और कानों पर मुहर लगा दी है और उनकी आँखों पर परदा पड़ा है, और उनके लिए बड़ी यातना है +","allah ne unke dilon par aur sealed their hearts laga di hai aur unki aankhon par parda para hai, aur unke lie great punishment hai +",7,3 +"XML parsing error: '%s' at line %d +","एक्सएम एल पदभंजन त्रुटि: '%s' %d पंक्ति पर +","parsing el padbhnjan error: s d line par +",5,2 +"VIP s shild issue passes for gallery. +","विशिष्ट दर्शक गॅलरी के पास जारी करें। +","vishisht darshak glri ke s issue karen. +",7,0 +"We have told you the stories of the prophets to make your heart firm and in these accounts truth has come to you, with an exhortation and a reminder for the believers. +","और (ऐ रसूल) पैग़म्बरों के हालत में से हम उन तमाम क़िस्सों को तुम से बयान किए देते हैं जिनसे हम तुम्हारे दिल को मज़बूत कर देगें और उन्हीं क़िस्सों में तुम्हारे पास हक़ (क़ुरान) और मोमिनीन के लिए नसीहत और याद दहानी भी आ गई +","aur ae heart firm ke halat men se ham un tamam isson ko tum se bayan kie dete hain jinse ham tumhare dil ko mazboot kar degen aur unhin isson men tumhare accounts truth uran aur mominin ke lie nasihat aur yad dahani bhi aa gee +",5,5 +"Hell shall be their bed, and over them will be coverings of fire, thus shall We reward the wrongdoers. +","और उनके ऊपर से (आग ही का) ओढ़ना भी और हम ज़ालिमों को ऐसी ही सज़ा देते हैं और जिन लोगों ने ईमान कुबुल किया +","aur unke wrongdoers se hell hi ka bed bhi aur ham zalimon ko aesi hi saza dete hain aur jin logon ne eeman kubul kiya +",4,5 +"Vast majority suffered, died or lived disabled. +","अधिकांश लोग तो पीड़ित रहे, मर गए अथवा विकलीकृत disabled हो गए। +","vast log to pirit rahe , mar ge athva viklikrit disabled ho ge. +",7,1 +"I was born in Mexico, I grew up in Mexico +","मैं मेक्सिको में पैदा हुआ, मेक्सिको में बड़ा हुआ +","main born men paida huaa, born men bara huaa +",5,3 +"In order to make it a warning for you, and that the ear retentive may preserve it. +","ताकि हम उसे तुम्हारे लिए यादगार बनाएं और उसे याद रखने वाले कान सुनकर याद रखें +","order ham use order to make banaen aur use yad rakhne vale kan sunakar yad rakhen +",5,3 +"When I used dynamic fonts on a colored background, the color around the text is different from the rest of the background, only in a Netscape browser. +","जब मैंने एक रंगीन पृष्ठभूमि में डायनामिक फ़ॉन्ट का उपयोग किया, टेक्स्ट के आसपास का रंग पृष्ठभूमि के बाकी हिस्सों के रंग से अलग था जो केवल एक नेटस्केप ब्राउज़र में होता है. +","jab mainne ek rngin prishthbhoomi men dynamic fonts ka upyog kiya, tekst ke aaspas ka rng prishthbhoomi ke baki hisson ke rng se alag tha jo keval ek netaskep brauzar men hota hai +",6,6 +"Notify when remote emails are queued +","जब रिमोट ई-मेल क़तारबद्ध हों तो सूचित करें +","jab remote ee-mel tarabaddh emails to soochit karen +",5,3 +"The birds are usually found in pairs in open country near cultivation, commonly seen perched on a mound or some other eminence, or flying at great speed at hedge - top height in search of small birds, rats, mice, lizards and large insects which comprise their prey. +","ये ज्यादातार जोड़े में खेतों के आसपास खुले मैदानों मे, किसी टीले पर या किसी दूर से दिखते स्थान पर बैठे पाए जाते हैं, अथवा छोटी चिड़ियों, चूहों, छिपकलियों और बड़े कीड़ों की खोज में बाड़ों की ऊंचाई पर तेजी से उड़ते भी पाए जा सकते हैं। +","ye jyadatar pairs men cultivation ke aaspas open maidanon me , kisi mound par ya kisi door se dikhte great par baithe hedge jate hain , athva chhoti birds , rats , lizards aur bare country ki search men baron ki height par speed se urte bhi hedge ja sakte hain. +",7,0 +"As a leading agency in all international initiatives UNESCO Education for All goals is to get the force and unity. +","एक अग्रणी अभिकरण के रूप में यूनेस्को सभी अन्तरराष्ट्रीय पहल को सबके लिए शिक्षा के लक्ष्य को पाने की ओर प्रवृत एवं एकजुट कर रही है। +","ek agrni agency ke roop men unesco sabhi antarrashtriy initiatives ko force lie education ke goals ko pane ki or prvrit evn unity kar rahi hai. +",6,0 +"He had atopic eczema as a child. +","उसे एक शिशु की तरह चोटी का पामा था. +","use ek child ki tarah choti ka pama tha +",9,1 +"And he said: You have only taken for yourselves idols besides Allah by way of friendship between you in this world 's life, then on the resurrection day some of you shall deny others, and some of you shall curse others, and your abode is the fire, and you shall not have any helpers. +","और इबराहीम ने (अपनी क़ौम से) कहा कि तुम लोगों ने ख़ुदा को छोड़कर बुतो को सिर्फ दुनिया की ज़िन्दगी में बाहम मोहब्त करने की वजह से (ख़ुदा) बना रखा है फिर क़यामत के दिन तुम में से एक का एक इनकार करेगा और एक दूसरे पर लानत करेगा और (आख़िर) तुम लोगों का ठिकाना जहन्नुम है और (उस वक्त तुम्हारा कोई भी मददगार न होगा) +","aur ibrahim ne apni aum se kaha ki idols way ne yourselves ko fire friendship ko sirph world ki zindgi men baham mohabt karne ki vajah se yourselves bana rakha hai phir yamat ke day idols men se ek ka ek inkar resurrection aur ek doosre par lanat resurrection aur aair idols way ka abode jahannum hai aur us vakt tumhara koee bhi helpers n hoga +",4,0 +"Dinkar looked at them suspiciously. +","दिनकर उनकी तरफ शंका से देखा। +","dinakar unki taraph shnka se looked +",7,2 +"Unable to open lock file. +","लाक फ़ाइल खोलने में अक्षम. +","open lock file men unable +",5,3 +"The period of compulsory isolation to control the spread of infectious disease. +","संक्रामक रोग के प्रसार को नियंत्रित करने के लिए अनिवार्य अलगाव की अवधि. +","infectious disease ke spread ko niyntrit karne ke lie compulsory isolation ki period +",8,2 +"We should view the going of such a person not so much with sorrow, but with gratitude that we had the privilege of knowing her, that we had the privilege of her affection, that we had the privilege of being within her circle of radiance. +","ऐसी विभूति के प्रयाण पर हमें दुखी न होकर कृतज्ञता महसूस करनी चाहिए कि हमने उन्हें जाना, उनका प्यार पाया, उनके व्यक्तित्व के प्रभामंडल में रहने का गौरव प्राप्त किया। +","aesi vibhooti ke pryan par much sorrow n hokar gratitude affection person chahie ki hamne unhen jana , unka pyar paya , unke vyaktitv ke prbhamndal men rahne ka privilege prapt kiya. +",7,2 +"GNOME Theme% s correctly installed Gnome +","थीम% s ठीक से अधिष्ठापित है +","thim s correctly se installed hai +",4,5 +"But they also built a playhouse in 1753 which closed down when the Fort and Calcutta were lost in battle to Nawab Siraj - ud - Dowla in 1756. +","किंतु उन्होंने सन् 1753 में एक नाटकघर भी बनवाया, जो कि सन् 1756 के युद्ध में किले और कलकत्ता के नवाब सिराजुद्दौला के हाथ में चले जाने पर बंद हो गया। +","kintu unhonne san 1753 men ek natakaghar bhi banvaya, jo ki san 1756 ke yuddh men kile aur kalakatta ke navab sirajuddaula ke hath men chale jane par bnd ho gaya. +",5,7 +"9. For general advice please contact our general enquiry service 9 +","आम सलाह के लिए कृपया हमारी आम पूछताछ सेवा पर संपर्क करें। +","general advice ke lie please hamari general enquiry service par snpark karen. +",10,0 +"So it tasted the evil result of its conduct, and the end of its affair was perdition. +","तो उन्होने अपने काम की सज़ा का मज़ा चख लिया और उनके काम का अन्जाम घाटा ही था +","to unhone apne affair ki evil ka maza chakh liya aur unke affair ka anjam ghata hi tha +",6,5 +"We then put him ashore on a plain, and he was sick. +","अन्ततः हमने उसे इस दशा में कि वह निढ़ाल था, साफ़ मैदान में डाल दिया। +","antta hamne use is dasha men ki vah nial tha, saf maidan men dal diya. +",8,1 +"I take this opportunity to convey my best wishes for your Excellency’s well being and for the continued progress and prosperity of the friendly people of Saint Vincent and the Grenadines. +","मैं इस अवसर पर महामहिम की कुशलता तथा सेंट विंसेंट एवं ग्रेनडीन की मित्र जनता की निरंतर प्रगति और समृद्धि के लिए अपनी मेरी शुभकामनाएं देता हूं। +","i is opportunity par excellency ki kushalta tatha saint vincent evn friendly ki mitr people ki continued progress aur prosperity ke lie apni best wishes deta hoon. +",7,4 +"The verses of Hindu poets are also marked by this dawning romanticism. +","हिंदू कवियों को कवितांए भी स्व्च्छंतावाद के इस उदय को प्रकट करती हैं. +","hindu poets ko verses bhi romanticism ke is uday ko prakat karti hain +",10,0 +"An error occurred while trying to set up sync. +","सिंक सेट अप करने का प्रयास करते समय एक त्रुटि उत्पन्न हुई. +","sync set ap karne ka pryas karte samay ek error occurred huee +",8,0 +"Till, when the Messengers despaired, deeming they were counted liars, Our help came to them and whosoever We willed was delivered. Our might will never be turned back from the people of the sinners. +","पहले के पैग़म्बरो ने तबलीग़े रिसालत यहाँ वक कि जब (क़ौम के ईमान लाने से) पैग़म्बर मायूस हो गए और उन लोगों ने समझ लिया कि वह झुठलाए गए तो उनके पास हमारी (ख़ास) मदद आ पहुँची तो जिसे हमने चाहा नजात दी और हमारा अज़ाब गुनेहगार लोगों के सर से तो टाला नहीं जाता +","pahle ke paimbro ne tablie risalat yahan vak ki jab aum ke eeman lane se paimbar mayoos ho ge aur un logon ne samajh liya ki vah jhuthlae ge to unke pas hamari as madad aa pahunchi to jise hamne chaha najat di aur hamara azab gunehgar logon ke sar se to tala nahin jata +",3,5 +"She bent over Mohan and hiccupped. +","वह मोहन पर झुक गयी और हिलक उठी। +","vah mohan par jhuk gayi aur hilak uthi. +",10,0 +"The result was discord and loss of peace in the family. +","इससे घर में कलह मच गया। +","result ghar men discord family gaya. +",3,5 +"Only Lolita acted as a bridge between these two households. +","इन दोनों के बीच अकेली ललिता ही सेतु-सी बनी रह गई। +","in donon ke bich akeli acted hi setu-si bani rah gee. +",5,7 +"Before an action or occurrence took place. +","एक क्रिया या घटना होने के पहले +","ek action ya occurrence hone ke pahle +",10,0 +"Human body consists of head, neck, torso, arms and legs. +","मनुष्य शरीर में शीश, गर्दन, धड़, बाजु तथा टांगें होती हैं +","human body consists shish, neck, torso, baju tatha tangen hoti hain +",7,2 +"Display options for Brasero - burn library +","ब्रैसेरो बर्न लाइब्रेरी के लिए प्रदर्शक विकल्प +","brasero burn library ke lie display options +",9,1 +"You should pay grand rent. +","तुम्हें जमीन का भाड़ा अदा करना चाहिए। +","tumhen jamin ka rent ada karna chahie. +",7,2 +"""% s"" could not be found in the path +","""% s"" को पथ में नहीं पाया जा सका +","s ko path men nahin paya ja saka +",9,0 +"install the standard and TSC pumps +","मानक और टीएससी पंप स्थापित करें +","standard aur tsc pumps sthapit karen +",9,2 +"Brmaha is Unique, only Unique. +","ब्रह्म एक और सिर्फ़ एक ही है। +","brahm ek aur sirf ek hi hai. +",8,3 +"The average annual clip is about one kilogram. +","वर्षभर में औसतन लगभग एक किलोग्राम ऊन एक भेड़ से उतरती है। +","average annual clip lagabhag ek kilogram oon ek bher se utarti hai. +",9,0 +"But there was music in the family. +","लेकिन परिवार का वातावरण संगीतमय था। +","lekin family ka vatavaran music tha. +",9,2 +"they've calculated that Congo may have lost +","उसने यह अनुमान लगाया है कि कोंगों का नुकसान +","usne yah anuman lagaya hai ki lost ka nuksan +",5,3 +"Ther are many product, device, or equipment in adaptive technology which include large - key keyboards, alternative input devices, like touch screen displays, speech recognition programs, text reader etc.. +","अनुकूली तकनीक में अनेक उत्पाद, उपकरण या उपस्कर हैं, जिनमें बड़ी कुंजी वाले कुंजीपटल, वैकल्पिक इनपुट उपकरण, जैसे-स्पर्श स्क्रीन प्रदर्श, भाषण पहचान प्रोग्राम, तथा पाठ्यांश वाचक आदि शामिल हैं +","adaptive technology men many product , device ya upaskar hain , jinmen large key vale keyboards , alternative input device , jaise-sparsh touch displays , speech recognition programs , tatha pathyansh ther aadi shamil hain +",8,2 +"I mean, I think that looks like some sort of flying animal or beast. +","शायद यह एक उड़ने वाले जानवर जैसा दिखता है. +","shayad yah ek animal or beast jaisa dikhta hai +",7,1 +"Drayage from port to warehouse is borne by the importer. +","बन्दरगाह से गोदाम तक माल की ढुलाई का व्यय आयातक द्वारा वहन किया जाता है। +","port se godam tak mal ki dhulaee ka vyay importer dvara vahan kiya jata hai. +",9,2 +"God is the most exalted King and the Supreme Truth. He is the only God and the Lord of the Gracious Throne. +","तो ख़ुदा जो सच्चा बादशाह (हर चीज़ से) बरतर व आला है उसके सिवा कोई माबूद नहीं (वहीं) अर्श बुर्जुग़ का मालिक है +","to uda jo sachcha badshah har chiz se baratar v aala hai uske siva koee mabood nahin vhin throne burju ka malik hai +",4,5 +"It was difficult not to think about what he had left behind. +","जो कुछ वह पीछे छोड़कर आया है, उसके बारे में एकदम कुछ न सोचना उसके लिए बहुत मुश्किल था। +","jo kuchh vah pichhe chhorakar aaya hai, uske bare men ekadam kuchh n sochna uske lie bahut mushkil tha. +",5,8 +"Disables saving browser history in %{PRODUCTNAME} and prevents users from changing this setting. If this setting is enabled, browsing history is not saved. If this setting is disabled or not set, browsing history is saved. +","%{PRODUCTNAME} में ब्राउज़र इतिहास सहेजना अक्षम करती है और उपयोगकर्ताओं को यह सेटिंग बदलने से रोकती है. यदि यह सेटिंग सक्षम है, तो ब्राउज़िंग इतिहास सहेजा नहीं जाता है. यदि यह सेटिंग अक्षम है या कॉन्फ़िगर नहीं है, तो ब्राउज़िंग इतिहास सहेजा जाता है. +","PRODUCTNAME men browser history sahejna disables karti hai aur users ko yah setting badalne se prevents hai yadi yah setting saksham hai , to productname history saheja nahin jata hai yadi yah setting disables hai ya knfigar nahin hai , to productname history saheja jata hai +",6,5 +"Here's a really short text. +","यहाँ एक बहुत छोटा वाक्य है। +","yahan ek bahut short text text +",6,3 +"The person who carries out survey or a profession engaged in survey work. +","वह व्यक्ति जो सर्वेक्षण करता हो अथवा जो सर्वेक्षण के व्यवसाय में संलग्न हो। +","vah vyakti jo survey karta ho athva jo survey ke vyavsay person who carries +",5,1 +"and the smell of the earth, the wheat, the grass, the charged particles. +","और मिट्टी, गेहूं, घास की गंध। +","aur earth, wheat, grass ki gndh. +",8,3 +"An invalid three-wheeler supplied by the DSS +","गलत तीन पैयो वाली गाडी ढ्श्श् ने सहायता के लिए दी हो ? +","invalid tin dss vali gadi dhshsh ne sahayta ke lie three-wheeler ho +",5,3 +"Swelling of the rectum and the colon. +","मलाशय और बृहदान्त्र का सूजन. +","rectum aur brihdantr ka swelling +",8,1 +"In the absence of organised marketing for small agricultural products producers do not get good price realisation. +","लघु कृषि उत्पादों के लिए संगठित विद्यमान व्यवस्था के अभाव में उत्पादकों को उनकी उपज का अच्छा मूल्य नहीं मिल पाता। +","small agricultural products ke lie sngthit vidyman vyavastha ke abhav men utpadkon ko unki upaj ka achchha mooly nahin mil pata. +",7,3 +"The Council has 28 members - 20 from the newspaper world, five are Members of Parliament three nominated by the Speaker of the Lok Sabha and two by the Chairman of the Rajya Sabha and remaining three are nominated by the Sahitya Akademi, the Bar Council of India and the University Grants Commission. +","परिषद में 28 सदस्य होते है-20 समाचार जगत से, पॉँच संसद-सदस्य तीन को लोकसभा के अध्यक्ष और दो को राज्यसभा के सभापति नामजद करते है और शेष तीन का नामांकन साहित्य अकादमी, भारत के बार कौसिल और विश्विलय अनुदान आयोग द्वारा किया ताजा है। +","council men 28 members hote hai-20 newspaper world se , pnch snsad-sadasy tin ko lok ke speaker aur do ko rajyasbha ke sabhapti namajad karte hai aur shesh tin ka namankan sahity akademi , india ke bar kausil aur university grants commission dvara kiya taja hai. +",8,4 +"We have a fully autonomous vehicle +","हमारे पास पूरी तरह से स्वचालित वाहन है +","hamare pas poori tarah se autonomous vehicle hai +",8,0 +"The famous 'Chauri Chaura' and 'Meerut conspiracy' case are few cases wherein this Court delivered memorable judgments upholding the concept of liberty. +","प्रसिद्ध चौरी-चौरा तथा मेरठ षडयंत्र कुछ ऐसे मामले हैं जिनमें न्यायालय ने स्वतंत्रता की अवधारणा बनाए रखते हुए स्मरणीय निर्णय दिए। +","famous chauri-chaura few chaura conspiracy kuchh aese case hain jinmen court ne liberty ki concept banae rakhte hue memorable judgments die. +",6,3 +"Elsewhere, he expressed surprise over the ‘symptoms of of utter confusion in its value system’ displayed by the Indian society in a period of change. +","अन्यत्र, उन्होंने भारतीय समाज द्वारा बदलते हुए समय के साथ ""अपनी मूल्य व्यवस्था में नितांत भ्रम के लक्षणों"" के प्रति आश्चर्य प्रकट किया। +","anyatr, unhonne indian society dvara badalte hue samay ke sath apni mooly vyavastha men nitant bhram ke lakshnon ke prti aashchary prakat kiya. +",9,1 +"(iii) ""contract"" shall include sub-contract; +","(iii) ""संविदा"" के अंतर्गत उपसंविदा भी है; +","iii contract ke antargat upsnvida bhi hai +",8,2 +"Hence he came to be called Padmapada. +","इसी से उसका नाम पद्मपाद पड गया। +","isi se uska nam padmpad hence gaya. +",5,5 +"Plan your work and work your plan. +","अपने कार्य की योजना बनाएं तथा अपनी योजना पर कार्य करें. +","apne work and work banaen tatha apni plan par work karen +",5,0 +"The centrally governed parts of land are called union territories +","केन्द्रीय प्रशासित भू-भागों को संघराज्य क्षेत्र कहा जाता है। +","kendriy prshasit called union territories kshetr kaha jata hai. +",7,2 +"Unable to send memo information, the memo does not exist +","ज्ञापन सूचना देने में असमर्थ, यह ज्ञापन मौजूद नहीं है +","memo information dene men unable , yah memo maujood nahin hai +",8,4 +"Test the orphans until they reach the age of marriage, and then if you find them mature of mind hand over to them their property, and do not eat it up by either spending extravagantly or in haste, fearing that they would grow up (and claim it). If the guardian of the orphan is rich let him abstain entirely (from his ward 's property); and if he is poor, let him partake of it in a fair measure. When you hand over their property to them let there be witnesses on their behalf. Allah is sufficient to take account (of your deeds). +","और यतीमों को कारोबार में लगाए रहो यहॉ तक के ब्याहने के क़ाबिल हों फिर उस वक्त तुम उन्हे (एक महीने का ख़र्च) उनके हाथ से कराके अगर होशियार पाओ तो उनका माल उनके हवाले कर दो और (ख़बरदार) ऐसा न करना कि इस ख़ौफ़ से कि कहीं ये बड़े हो जाएंगे फ़ुज़ूल ख़र्ची करके झटपट उनका माल चट कर जाओ और जो (जो वली या सरपरस्त) दौलतमन्द हो तो वह (माले यतीम अपने ख़र्च में लाने से) बचता रहे और (हॉ) जो मोहताज हो वह अलबत्ता (वाजिबी) दस्तूर के मुताबिक़ खा सकता है पस जब उनके माल उनके हवाले करने लगो तो लोगों को उनका गवाह बना लो और (यूं तो) हिसाब लेने को ख़ुदा काफ़ी ही है +","aur yatimon ko karobar men lagae raho yah tak ke byahne ke abil hon phir us vakt tum unhe ek mahine ka rch unke hath se karake agar hoshiyar pao to unka mal unke havale kar do aur bardar aesa n karna ki is auf se ki kahin ye bare ho jaenge fuzool rchi karke jhatapat unka mal chat kar jao aur jo jo vali ya saraparast daulatamand ho to vah male yatim apne rch men lane se bachta rahe aur h jo mohtaj ho vah alabatta vajibi dastoor ke mutabi kha sakta hai pas jab unke mal unke havale karne lago to logon ko unka gavah bana lo aur yoon to hisab lene ko uda kafi hi hai +",4,6 +"Originally, the reservation was for ten years but it is being extended every time for the next ten years - LRB - articles 330 and 334 - RRB -. +","मूलतया आरक्षण दस वर्षों के लिए था लेकिन उसे हर बार अगले दस वर्षों के लिए बढ़ाया जा रहा है (अनुच्छेद 330 तथा 334). +","lrb reservation ten years ke lie tha lekin use har time agle ten years ke lie baaya ja raha hai anuchchhed 330 tatha 334 +",8,2 +"Delhi fort is also called as red fort since it is red in color. +","दिल्ली के किले को लाल-किला भी कहते हैं क्योंकि यह लाल रंग का है। +","delhi ke fort ko lal-kila bhi kahte hain kyonki yah red color ka hai. +",10,0 +"Those who have gone before them belied, yet they did not reach a tenth of what We gave them; yet they belied My Messengers. And how was (My) rejection (their destruction)! +","और झूठलाया उन लोगों ने भी जो उनसे पहले थे। और जो कुछ हमने उन्हें दिया था ये तो उसके दसवें भाग को भी नहीं पहुँचे है। तो उन्होंने मेरे रसूलों को झुठलाया। तो फिर कैसी रही मेरी यातना! +","aur messengers un destruction ne bhi jo unse pahle the. aur jo kuchh hamne unhen diya tha ye to uske tenth bhag ko bhi nahin pahunche hai. to unhonne mere rasoolon ko jhuthlaya. to phir kaisi rahi meri rejection ! +",5,6 +"But, so this is the first quadrant intersection. +","लेकिन, तो यह पहली वृत्त का चतुर्थ भाग मिलन बिंदु है। +","lekin, to yah pahli vritt ka quadrant intersection milan bindu hai. +",5,3 +"And although , in the short term , the truth has many facets , the long-term truth is only one and unmistakable . +","और अल्पकाल में तो सत्य के कई पहलू हो सकते हैं , दीर्धकालीन सत्य केवल एक और सुस्पष्ट होता है . +","aur short men to truth ke kee facets ho sakte hain , term truth keval ek aur suspasht hota hai +",6,5 +"Video output for Windows 7/Windows Vista with Platform update +","प्लेटफार्म अद्यतन के साथ Windows 7/Windows Vista के लिए वीडियो आउटपुट +","platform update ke sath Windows 7Windows vista ke lie video output +",9,1 +"The presiding officer of each House or any other officer or Member of Parliament who is for the time being vested with the powers to regulate procedure , or to enforce or carry out the decision of either House of Parliament , is not subject to the jurisdiction of the courts in exercise of those powers -LRB- articles 122 -LRB- 2 -RRB- and 105 -LRB- 3 -RRB- -RRB- . +","प्रत्येक सदन का पीठासीन अधिकारी या कोई अधिकारी या संसद-सदस्य जिनमें अस्थायी रूप में प्रक्रिया या कार्य-संचालन को विनियमित करने की तथा संसद के किसी सदन के निर्णय को लागू करने की शक्तियां निहित हों , इन शक्तियों के प्रयोग के विषय में किसी न्यायालय की अधिकारिता के अधीन नहीं होगा [अनुच्छेद 122 ( 2 ) तथा 105 ( 3 ) ] . +","pratyek sadan ka presiding officer ya koee adhikari ya snsad-sadasy jinmen asthayi roop men prakriya ya kary-snchalan ko viniymit karne ki tatha snsad ke kisi sadan ke nirnay ko lagoo karne ki shaktiyan nihit hon , in shaktiyon ke pryog ke vishay men kisi nyayalay ki adhikarita ke adhin nahin hoga anuchchhed 122 2 tatha 105 3 +",5,6 +"Beside these, the Peepal tree, Banana tree and Bilva have been also placed in appropriate locations in the Vatika bringing the total to 51 trees/plants. +","इनके अलावा, पीपल वृक्ष, केला वृक्ष तथा बिल्व भी वाटिका के उपयुक्त स्थलों पर लगाए गए हैं जिससे कुल 51 वृक्ष/पौधे हो गए हैं। +","inke alava, peepal tree, banana tree tatha bilv bhi vatika ke upyukt sthlon par lagae ge hain jisse kul 51 vrikshpaudhe ho ge hain. +",8,2 +"from the evil of what He has created, +","हर चीज़ की बुराई से जो उसने पैदा की पनाह माँगता हूँ +","har created ki evil se jo usne paida ki panah mangta hoon +",5,1 +"which obeys really strict rules. +","जो वास्तव में कड़े नियमों का अनुसरण करता है। +","jo vastav men strict rules ka anusaran karta hai. +",8,4 +"Process ID assigned a unique number to every process running in the system. +","प्रोसेस आईडी, प्रणाली में चालू प्रत्येक प्रक्रिया के लिए एक विशिष्ट संख्या आवंटित करता है। +","proses aaeedi, process running chaloo pratyek prakriya ke lie ek vishisht snkhya aavntit karta hai. +",8,0 +"115WF. If any person, being an employer— +","115बच.यदि कोर्इ व्यक्ति, जो नियोजक है– +","115bachydi kori person , jo niyojak hai +",7,1 +"The poet is trying to create an image of a woman whose whole body is pining away, every limb is turning and twisting and, as described in a sloka mentioned above, the very bed and bed - sheets have become symbols of anguish and torture. +","कवि यहां एक ऐसी नारी के बिम्ब की उदभावना में लगा है जिसकी देह झुर रही है, अंग-अंग मरोड़ खा रहा है और, जैसा एक अन्य सलोक में कहा गया, बिछौना और चादर भी यन्त्रणा का प्रतिरूप बन उठे हैं। +","kavi yahan ek aesi nari ke bimb ki udbhavna men laga hai jiski deh jhur rahi hai, ang-ang maror kha raha hai aur, jaisa ek any salok men kaha gaya, bed and bed bhi yantrna ka prtiroop ban uthe hain. +",8,1 +"Cash, silver and gold ornaments, coconuts, fruits and flowers are offered to the Lord. +","नकद रुपये, चांदी और सोने के आभूषण, नारियल, फल, फूल देवता को भेंट में चढ़ाये जाते हैं। +","nakad rupye, silver and gold ke aabhooshan, coconuts, phal, phool devta ko bhent men chaaye jate hain. +",8,2 +"Indeed for Allah only is the kingship of the heavens and the earth; He gives life and He gives death; and other than Allah, you have neither a Protector nor any Supporter. +","इसमें तो शक़ ही नहीं कि सारे आसमान व ज़मीन की हुकूमत ख़ुदा ही के लिए ख़ास है वही (जिसे चाहे) जिलाता है और (जिसे चाहे) मारता है और तुम लोगों का ख़ुदा के सिवा न कोई सरपरस्त है न मददगार +","ismen to sha hi nahin ki sare aasman v zamin ki hukoomat uda hi ke lie as hai vahi jise chahe jilata hai aur jise chahe marta hai aur tum logon ka uda ke siva n koee saraparast hai n madadgar +",8,1 +"Then if they deny you, [O Muhammad] - so were messengers denied before you, who brought clear proofs and written ordinances and the enlightening Scripture. +","फिर यदि वे तुम्हें झुठलाते ही रहें, तो तुमसे पहले भी कितने ही रसूल झुठलाए जा चुके है, जो खुली निशानियाँ, 'ज़बूरें' और प्रकाशमान किताब लेकर आए थे +","phir yadi ve o jhuthlate hi rahen , to scripture pahle bhi kitne hi proofs jhuthlae ja chuke hai , jo clear nishaniyan , ordinances aur prkashman kitab lekar aae the +",7,0 +"He agreed to Shri Duni Chand being appointed as his legal adviser. +","श्री दुनी चंद को अपना कानूनी परामर्शदाता नियुक्त करने पर वह सहमत हो गये। +","shri duni chnd ko apna legal adviser niyukt karne par vah sahamat ho gaye. +",9,2 +"Adopting measures to get incentive prices for coconut and its products. +","नारियल और इसके उत्पादों के लिए प्रोत्साहन मूल्य पाने के उपाय अपनाना। +","coconut aur iske products ke lie incentive prices pane ke adopting measures +",6,3 +"Sugar Machinery: - domestic manufacturers occupy predominant position in the global scenario and are capable of manufacturing from concept to commissioning stage sugar plants of latest design for a capacity upto 10, 000 TCD (tons crushing per day). +","वर्तमान में संपूर्ण चीनी संयंत्रों के विनिर्माण के लिए संगठित क्षेत्र में 2 इकाइयां हैं और प्रति वर्ष लगभग 200 करोड़ की संस्थापित क्षमता वाले पुर्जे हैं। +","vartman men snpoorn chini snyntron ke vinirman ke lie sngthit kshetr men 2 ikaiyan hain aur prti varsh lagabhag 200 karor ki snsthapit kshamta vale purje hain. +",4,6 +"In order to be possessor of his being with any complete reality of freedom and mastery, man must find out his highest self, the real man or highest Purusha in him, which is free and master in its own inalienable power. +","मनुष्य को किसी पूर्ण रूप से सच्ची स्वतन्त्रता और प्रभुता के साथ अपनी सत्ता का स्वामी बनने के लिये अपनी उच्चतम आत्मा को, अपने अन्दर के उस वास्तविक मनुष्य या उच्चतम पुरुष को, ढूंढ़ना होगा जो स्वतन्त्र है तथा अपनी अविच्छेद्य शक्ति का स्वामी है। +","manushy ko kisi poorn roop se sachchi freedom and mastery ke sath apni satta ka svami banne ke liye apni uchchatam aatma ko, apne andar ke us vastvik manushy ya uchchatam purush ko, dhoonna hoga jo svatantr hai tatha apni inalienable power ka svami hai. +",9,0 +"In India, various agencies and organisations conduct studies and surveys as well as publish reports on a regular basis covering diverse aspects of the economy. +","भारत में अनेक अधिकरण और संगठन अध्ययन और सर्वेक्षणों का आयोजन करते हैं, साथ ही अर्थव्यवस्था की विविध पहलुओं शामिल करते हुए एक नियमित आधार पर रिपोर्ट प्रकाशित करते हैं। +","india men various agencies aur organisations studies aur sarvekshnon ka aayojan karte hain , sath hi economy ki diverse aspects shamil karte hue ek regular basis par reports prkashit karte hain. +",9,1 +"and on the mountains, how they are firmly set up, +","और पहाड़ो की ओर कि कैसे खड़े किए गए? +","aur mountains ki or ki kaise khare kie ge +",8,3 +"But they had not been sent as guardians over them. +","हालाँकि वे उनपर कोई निगरानी करनेवाले बनाकर नहीं भेजे गए थे +","halanki ve unapar koee guardians karnevale banakar nahin bheje ge the +",9,0 +"Before road transport developed, the principal arteries of communication during those days were the river routes. +","सड़कों के विकास के पहले उन दिनों नदियों के मार्ग ही यातायात के प्रमुख साधन थे। +","sarkon ke vikas ke pahle un days river ke road hi transport ke principal communication the. +",8,0 +"In Terms of its geographic size India is the seventh largest country in The World. +","भारत भौगोलिक क्षेत्रफल के आधार पर विश्व का सातवाँ सबसे बड़ा राष्ट्र है। +","terms geographic kshetraphal ke aadhar par largest ka seventh sabse bara country hai. +",6,1 +"21 th edition (10 January - 10 December): WC3 focused on India. +","21वां अंक (10 जनवरी-10 दिसंबर): 3 भारत पर केंद्रित. +","21van edition 10 janavri-10 disnbar: 3 focused on india +",8,1 +"To change time or date settings, you need to authenticate. +","समय या दिनांक सेटिंग्स को बदलने के लिए, आपको प्रमाणित करने की जरूरत है. +","time ya dinank settings ko badalne ke lie , aapko prmanit karne ki jaroorat hai +",9,0 +"And the overturned towns He hurled down +","उलट जानेवाली बस्ती को भी फेंक दिया। +","overturned janevali basti ko bhi hurled diya. +",6,3 +"If the opinion so declared is again challenged, the Speaker directs that the votes be recorded either by operating the automatic vote recorder or by using 'Aye' and 'No' slips in the House or by members going into the lobbies. +","यदि इस प्रकार घोषित राय को पुन: चुनौती दी जाती है तो अध्यसक्ष आदेश देता है कि या तो स्वचालित मत अभिलेखन उपकरण को चालू करके या सदन में? हां? या? या? की पर्चियों का प्रयोग करके या सदस्यों द्वारा लाबियों में जाकर मत अभिलिखित किए जाएं. +","yadi is prkar ghoshit ray ko pun : chunauti di jati hai to speaker aadesh deta hai ki ya to automatic opinion abhilekhan upakaran ko chaloo karke ya house men han ya ya ki slips ka pryog karke ya members dvara lobbies men jakar opinion abhilikhit kie jaen +",5,2 +"He raised the heavens and set up everything in balance, +","उसने आकाश को ऊँचा किया और संतुलन स्थापित किया- +","usne heavens ko everything kiya aur balance sthapit kiya- +",5,1 +"this order was made applicable to State Governments including the State of Uttar Pradesh. +","इस आदेश को उत्तर प्रदेश राज्य सहित समस्त राज्य सरकारों को लागू किया गया था. +","is aadesh ko uttar prdesh rajy sahit samast rajy order was made kiya gaya tha +",5,2 +"As for the good land, vegetation comes forth in abundance by the command of its Lord, whereas from the bad land, only poor vegetation comes forth. Thus do We expound Our signs in diverse ways for a people who are grateful. +","और अच्छी भूमि के पेड़-पौधे उसके रब के आदेश से निकलते है और जो भूमि ख़राब हो गई है तो उससे निकम्मी पैदावार के अतिरिक्त कुछ नहीं निकलता। इसी प्रकार हम निशानियों को उन लोगों के लिए तरह-तरह से बयान करते है, जो कृतज्ञता दिखानेवाले है +","aur good land ke per-paudhe uske lord ke command se nikalte hai aur jo land poor ho diverse hai to usse nikammi paidavar ke atirikt kuchh nahin nikalta. isi ways ham nishaniyon ko un logon ke lie tarah-tarah se bayan karte hai , jo grateful dikhanevale hai +",5,3 +"[This is] a promise of Allah: Allah does not break His promise, but most people do not know. +","(ये) ख़ुदा का वायदा है) ख़ुदा अपने वायदे के ख़िलाफ नहीं किया करता मगर अकसर लोग नहीं जानते हैं +","ye allah ka promise hai allah apne vayde ke ilaph nahin kiya karta magar most people nahin jante hain +",8,1 +"As a barrister, I was well aware of the difficulties of proving the truth of statements giving rise to libel proceedings. +","एक वकीलके नाते मैं मानहानिवाल बातोंको सिद्ध करनेकी कठिनाइयोंको जानता था। +","ek vakilke nate main manhanival batonko siddh karneki kathinaiyonko janta tha. +",7,3 +"Your upcoming events will be displayed here when you select a date with events. +","आपकी आने वाली घटनाओं को प्रदर्शित किया जाएगा जब आप घटनाओं के साथ एक तिथि का चयन करेंगे. +","aapki aane vali date with events kiya jaega jab aap ghatnaon ke sath ek select a date karenge +",5,1 +"In short they were now in a mood to send their sons to any school which the Anjuman set up. +","संक्षिप्त में, अब अंजुमन द्वारा स्थापित स्कूल में अपने पुत्रों के भेजने का उनका मन हो गया। +","short men, ab anjuman dvara sthapit skool men apne send their sons ka unka man ho gaya. +",6,1 +"We have told you the stories of the prophets to make your heart firm and in these accounts truth has come to you, with an exhortation and a reminder for the believers. +","और (ऐ रसूल) पैग़म्बरों के हालत में से हम उन तमाम क़िस्सों को तुम से बयान किए देते हैं जिनसे हम तुम्हारे दिल को मज़बूत कर देगें और उन्हीं क़िस्सों में तुम्हारे पास हक़ (क़ुरान) और मोमिनीन के लिए नसीहत और याद दहानी भी आ गई +","aur ae firm prophets ke halat men se believers un tamam stories ko tum se bayan kie dete hain jinse believers truth heart ko mazboot kar degen aur unhin stories men truth pas ha reminder aur mominin ke lie exhortation aur yad dahani bhi aa gee +",7,4 +"It appears that he was solely interested in saving his own life and that of his queen who by that time hated him. +","ऐसा लगता है कि उनका एकमात्र सरोकार अपनी और उस बेगम की जान बचाना था जो उस समय तक उनसे नफरत करने लगी थी। +","aesa lagta hai ki unka ekmatr sarokar apni aur us begam ki solely interested tha jo us samay tak unse napharat karne lagi thi. +",6,4 +"There did Zakariya pray to his Lord; he said: My Lord! grant me from Thee good offspring; surely Thou art the Hearer of prayer. +","(ये माजरा देखते ही) उसी वक्त ज़करिया ने अपने परवरदिगार से दुआ कि और अर्ज क़ी ऐ मेरे पालने वाले तू मुझको (भी) अपनी बारगाह से पाकीज़ा औलाद अता फ़रमा बेशक तू ही दुआ का सुनने वाला है +","ye offspring dekhte hi usi vakt zakriya ne apne paravardigar se pray ki aur arj i ae mere palne vale too mujhko bhi apni bargah se pakiza aulad ata farma beshak too hi pray ka sunne vala hai +",6,5 +"He added that HE had expressed by telegram and letter in emphatic terms his complete confidence in me but that the days when this would be enough were over. 10. +","गवर्नर-जनरल ने यह भी कहा कि निजाम ने तार द्वारा जोरदार शब्दों में मुझ पर संपूर्ण विश्वास वयक्त किया है, परन्तु वे दिन चले गये जब इतना कहना काफी हो सकता था। +","gavarnar-janaral ne yah bhi kaha ki nijam ne tar dvara jordar shabdon men mujh par snpoorn vishvas vayakt kiya hai, parantu ve din chale gaye jab itna kahna kaphi ho sakta tha. +",6,5 +"The worth of the security for sale or purchase. +","प्रतिभूति का मूल्य जो खरीद या बिक्री के लिए हो। +","security ka worth jo purchase ya sale ke lie ho. +",7,3 +"This bushy plant is a host in a plant pathosystem. +","यह झाड़ीदार पौधा पादप रोग-तंत्र में एक परपोषी है। +","yah jharidar paudha padap rog-tntr men ek parposhi hai. +",8,4 +"A book in which the business transactions of an agent are posted in the form of debits and credits. +","एक बही जिसमें किसी अभिकर्ता के व्यावसायिक लेन-देन लेनदारी व देनदारी के रूप में दर्ज़ होते हैं। +","ek bahi jismen kisi agent ke business len-den lendari v dendari ke form men book hote hain. +",7,1 +"and in the mornings they would ask for forgiveness; +","और वही प्रातः की घड़ियों में क्षमा की प्रार्थना करते थे +","aur vahi prata ki ghariyon men kshma ki prarthna karte the +",9,2 +"He was complaining of retching since two days. +","वह दो दिनों से उबकाई की शिकायत कर रहा था. +","vah do days se ubkaee ki complaining kar raha tha +",8,1 +"by 5, so 1 times 5 is 5. +","तो 1 गुना 5 बराबर है 5के. +","to 1 times 5 barabar hai 5ke +",6,7 +"Mr. Vagish Shastri has bestowed scientific nature to Sanskrit Grammar. +","संस्कृत के व्याकरण को वागीश शास्त्री ने वैज्ञानिक स्वरूप प्रदान किया है। +","snskrit ke vyakaran ko vagish shastri ne bestowed scientific nature kiya hai. +",8,1 +"They stretch when the heart pumps blood through them. +","जब हृदय उनमें से रक्त संचार करता है तो वे फैलती है। +","jab heart unmen se blood snchar karta hai to ve phailti hai. +",8,1 +"And never [O Muhammad] pray for one of them who dies, nor stand by his grave. For they denied God and His Messenger, and died rebellious. +","औऱ उनमें से जिस किसी व्यक्ति की मृत्यु हो उसकी जनाज़े की नमाज़ कभी न पढ़ना और न कभी उसकी क़ब्र पर खड़े होना। उन्होंने तो अल्लाह और उसके रसूल के साथ कुफ़्र किया और मरे इस दशा में कि अवज्ञाकारी थे +","au unmen se jis kisi vyakti ki mrityu ho uski janaze ki namaz kabhi n pana aur n kabhi uski br par khare hona. unhonne to allah aur uske rasool ke sath kufr kiya aur mare is dasha men ki avajnjakari the +",7,3 +"Primary center connects toll centers. +","प्राथमिक केंद्र, शुल्क केन्द्रों (टोल केन्द्रों) को जोड़ता है। +","primary center , shulk centers toll centers ko jorta hai. +",9,0 +"Provided that where in respect of any such consideration, the equalisation levy has been deducted in any subsequent year or has been deducted during the previous year but paid after the due date specified in sub-section (1) of section 139, such sum shall be allowed as a deduction in computing the income of the previous year in which such levy has been paid; +","परंतु जहां ऐसे किसी प्रतिफल के संबंध में किसी पश्चात्वर्ती वर्ष में समकरण उद्ग्रहण की कटौती की गर्इ है या पूर्ववर्ष के दौरान कटौती की गर्इ है किंतु धारा 139 की उपधारा (1) में विनिर्दिष्ट नियत तारीख के पश्चात् संदत्त किया गया है तो ऐसी राशि को पूर्ववर्ष जिसमें ऐसे उद्ग्रहण का संदाय किया गया है कि आय की संगणना में कटौती के रूप में अनुज्ञात किया जाएगा। +","parntu jahan aese kisi consideration ke snbndh men kisi subsequent year men equalisation levy ki respect ki such hai ya previous ke dauran respect ki such hai kintu section 139 ki updhara 1 men vinirdisht due date ke pashchat sndatt kiya gaya hai to aesi sum ko previous jismen aese levy ka snday kiya gaya hai ki income ki snganna men respect ke roop men anujnjat kiya jaega. +",4,3 +"you haven 't heard from in years. +","जिनसे काफी दिनों से बात नहीं हुई हो। +","jinse years dinon se bat nahin huee heard +",5,3 +"Asavari resigned herself to further reading. +","हारकर आसावरी ने आगे पढ़ना शुरू किया। +","harakar reading ne aage pana shuroo kiya. +",6,3 +"And [Yusuf (Joseph)] told his servants to put their money (with which they had bought the corn) into their bags, so that they might know it when they go back to their people, in order that they might come back. +","और हम ज़रुर इस काम को पूरा करेंगें और यूसुफ ने अपने मुलाज़िमों (नौकरों) को हुक्म दिया कि उनकी (जमा) पूंजी उनके बोरो में (चूपके से) रख दो ताकि जब ये लोग अपने एहलो (अयाल) के पास लौट कर जाएं तो अपनी पूंजी को पहचान ले. +","aur ham zarur is kam ko poora karengen aur yusuf ne apne mulazimon servants ko order diya ki unki bags money unke boro men choopke se rakh do taki jab ye people apne ehlo ayal ke pas laut kar jaen to apni money ko pahchan le +",7,0 +"O Prophet, say to your wives: 'If you seek this life and its finery, come, I will release you with a fine release. +","ऐ रसूल अपनी बीवियों से कह दो कि अगर तुम (फक़त) दुनियावी ज़िन्दगी और उसकी आराइश व ज़ीनत की ख्वाहॉ हो तो उधर आओ मैं तुम लोगों को कुछ साज़ो सामान दे दूँ और उनवाने शाइस्ता से रूख़सत कर दूँ +","ae rasool apni biviyon se kah do ki agar tum phat duniyavi zindgi aur uski aaraish v zinat ki khvah ho to udhar aao main tum logon ko kuchh sazo saman de doon aur unvane shaista se roosat kar doon +",6,6 +"While primay matter and the Universals are eternal, it is the individuals which are produced and are perishable. +","जहां मूल द्रव्य और सामान्य शाश्वत होते है, वही व्यक्तियो की उत्पति होती है और नश्वर होते है। +","jahan individuals matter aur samany eternal hote hai , vahi vyaktiyo ki utpti hoti hai aur perishable hote hai. +",8,1 +"Does he not know that God sees? +","क्या उसने नहीं जाना कि अल्लाह देख रहा है? +","kya usne nahin jana ki allah dekh raha hai +",5,8 +"The Government , therefore , decided that an amendment of the Constitution was not necessary . +","अत : सरकार ने निश्चय किया कि संविधान का संशोधन जरूरी नहीं है . +","at : government ne decided kiya ki constitution ka amendment jaroori nahin hai +",9,0 +"The resource base of the Union government today is an ocean compared to that drop. +","आज केन्द्र सरकार के संसाधन उस बूंद की तुलना में एक महासागर के समान हैं। +","aaj base sarkar ke snsadhan us boond ki tulna men ek mahasagar ke saman hain. +",8,1 +"It indicates the expenses and earnings of the firm as well as the amount of its debits and credits. +","यह फर्म के व्यय और आमदनी तथा साथ ही इसके नामे और जमा की राशि को भी दर्शाता है। +","yah firm ke expenses and earnings tatha sath hi iske debits and credits ki rashi ko bhi darshata expenses +",8,2 +"On the Day when you witness it, the suckling woman shall utterly neglect the infant she suckles, and every pregnant woman shall cast her burden, and you will see people as though they are drunk, when they are not drunk; but dreadful shall be Allah 's chastisement. +","जिस दिन तुम उसे देख लोगे तो हर दूध पिलाने वाली (डर के मारे) अपने दूध पीते (बच्चे) को भूल जायेगी और सारी हामला औरते अपने-अपने हमल (बेहिश्त से) गिरा देगी और (घबराहट में) लोग तुझे मतवाले मालूम होंगे हालाँकि वह मतवाले नहीं हैं बल्कि खुदा का अज़ाब बहुत सख्त है कि लोग बदहवास हो रहे हैं +","jis day tum use chastisement loge to har doodh infant burden woman ke mare apne doodh pite bachche ko bhool jayegi aur sari hamla aurte apne-apne pregnant behisht se gira degi aur ghabrahat men people tujhe drunk maloom honge halanki vah drunk nahin hain balki khuda ka azab bahut sakht hai ki people badahvas ho rahe hain +",8,0 +"Saccus endolymphaticus is also known as endolymphatic sac. +","अन्तरुदक कोश को अन्तः कर्णोदक कोश के रूप में भी जाना जाता है. +","antrudak kosh ko anta endolymphatic sac ke roop men bhi jana jata hai +",8,4 +"After much exertion and pressure he was made to say 'No' only. +","काफी प्रयास करने और दबाव डालने के बाद वह जबाव में सिर्फ 'नहीं' कहकर चुप हो गये. +","much exertion karne aur pressure dalne ke bad vah jabav men sirph nhin kahakar chup ho gaye +",9,2 +"These cows have straight top lines , level rumps , and sharp withers . +","इस नस्ल की गायों की सीधी ऊपरी रेखाएं , सम पिछली पीठ और नुकीले कन्धे होते हैं . +","is level ki cows ki top oopri rumps , sam pichhli pith aur nukile kandhe hote hain +",6,1 +"He further said, ” That the issue of the said periodical work of the said 28th day of April, 1883 was made up and published entirely on my responsibility, and to the best of my knowledge, information and belief, the said Ramcoomar Dey did not read anything contained therein in the editorial columns before the publication thereof. +","उन्होंने आगे कहा: ” कि उक्त पत्र का 28 अप्रैल 1883 का अंक पूरी तरह मेरी जिम्मेदारी पर तैयार हुआ और छपा. मेरी सर्वाधिक जानकारी, सूचना और विश्वास के अनुसार रामकुमार डे ने प्रकाशन से पहले इसके संपादकीय की सामग्री को नहीं पढ़ा +","unhonne aage kaha: ki ukt patr ka 28 april 1883 ka ank poori tarah meri jimmedari par taiyar huaa aur chhapa meri sarvadhik jankari, soochna aur vishvas ke anusar ramkumar de ne prkashan se pahle iske snpadkiy ki samagri ko nahin paa +",4,7 +"Nobody cared why my intellect was rusting. +","किसीको यह परवाह नहीं थी कि मेरी बुद्धि पर क्यों जंग लगाया जा रहा है। +","kisiko yah nobody nahin thi ki meri intellect par kyon jng lagaya ja raha hai. +",6,0 +"Savarkar 's counsel, Mr Baptista, also raised the point that Savarkar' s arrest on French soil was illegal. +","सावरकर के वकील श्री बप्तिस्ता ने भी यह मुद्दा उठाया कि फ्रांसिसी भूमि पर सावरकर की गिफ्तारी गैर-कानूनी है। +","savarakar ke vakil shri baptista ne bhi yah mudda uthaya ki phransisi bhoomi par savarakar ki soil was illegal +",9,2 +"Harnessing modern biology in agriculture is the need of the hour. +","कृषि में आधुनिक जीवविज्ञान का उपयोग आज की जरूरत है। +","agriculture men modern biology ka upyog aaj ki jaroorat hai. +",8,1 +"A sliding Vicryl noose is used in postoperative suture adjustment of extraocular muscles. +","खिसकने वाली विक्राइल फंदे का प्रयोग शल्यक्रिया के बाद नेत्रेतर मांसपेशियों की सीवन के समन्वयन हेतु किया जाता है। +","khisakne vali vikrail adjustment ka pryog shalyakriya ke bad netretar muscles ki suture ke samanvayan hetu kiya jata hai. +",7,1 +"The amount that has been set aside to meet the possible liability / risk. +","ऐसी राशि जिसे किसी संभावित दायित्व/जोखिम की पूर्ति के लिए अलग से रख दिया गया हो। +","aesi amount jise kisi possible dayitvjokhim ki poorti ke lie alag se risk diya gaya ho. +",8,1 +"Shares of best companies which have very important effect on the share market. +","श्रेष्ठ कंपनियों के शेयर्स जो शेयर बाजार को बहुत प्रभावित करने वाले हों। +","best companies ke effect jo shares bajar ko bahut prbhavit karne vale hon. +",9,1 +"Benefits of information technology to the common man can only access the software tools and man - machine interface of systems are available in your language. +","सूचना प्रौद्योगिकी के लाभ आम आदमी तक केवल तभी पहुंच सकते हैं जब सॉफ्टवेयर टूल्स और मानव-मशीन इंटरफेस प्रणालियां लोगों की अपनी भाषा में उपलब्ध हों +","information technology ke benefits common man tak keval tabhi access sakte hain jab software tools aur manav-mshin interface prnaliyan logon ki apni language men available hon +",8,1 +"With momentum of time Marathi literature also became modern. +","मराठी साहित्य भी समय की गति क साथ साथ आधुनिक हो चुका है। +","marathi literature bhi momentum of time k sath sath aadhunik ho chuka hai. +",9,2 +"Neutrophilic leukocytes with respect to phagocytes, release histolytic enzymes. +","भक्षक कोशिकाओं के संबंध में न्यूट्रोफिलिक श्वेताणु ऊतकीय एंजाइमों को मुक्त करते हैं +","bhakshak koshikaon ke snbndh men nyootrophilik shvetanu ootkiy enjaimon ko mukt karte hain +",4,7 +"DLA for children under age 16 < s > You can claim DLA for a child with a severe physical or mental disability if they need much more help or looking after than other children of the same age because of their illness or disability +","जिन बच्चोंको गंभीर शारीरीक और मानसिक विकलांगता है जिस के कारण उनको उनकी विकलांगता और बीमारी की वजह से उन्हीं की आयु के बच्चों से अधिकतर मदद या फिर देखभाल की जरुरत लगती है तो आपको DLA के लिए अर्जी भर सकते है। +","jin children severe sharirik aur mental physical hai jis ke s unko unki physical aur other ki vajah se unhin ki age ke child se more help ya phir dekhbhal ki jarurat lagti hai to aapko DLA ke lie arji dla sakte hai. +",7,2 +"Connection refused through SOCKSv5 proxy. SOCKSv5 +","प्रॉक्सी के माध्यम से कनेक्शन से इनकार कर दिया. +","proxy ke madhyam se connection se inkar kar diya +",9,1 +"It is n 't a good idea to focus on the use of solvents. +","केवल सॉल्वैट्स के उपयोग पर ही सारा ध्यान केंद्रित कर देना कोई अच्छा विचार नहीं है. +","keval idea to focus par hi sara good kendrit kar dena koee good idea nahin hai +",5,0 +"When something is routed through the account belonging to oneself. +","जब कोई सौदा या लेन-देन ऐसे खाते के माध्यम से किया जा रहा हो जो स्वयं का हो। +","jab koee account ya len-den aese khate ke madhyam se kiya ja raha ho jo svyn ka something +",4,5 +"Brittani officer has captured the jewelery and her husband 's debt has been accounted from the queens yearly maintenance. +","ब्रितानी अधिकारियों ने राज्य का खजाना ज़ब्त कर लिया और उनके पति के कर्ज़ को रानी के सालाना खर्च में से काट लिया गया। +","britani adhikariyon ne rajy ka khajana zabt kar liya aur unke pati ke karz ko rani ke salana kharch men se kat liya gaya. +",5,8 +"When you go in these developing societies, +","जब आप इन विकासशील इलाकों में जाते हैं, +","jab aap in societies ilakon men jate hain , +",6,6 +"Continue applying patches with resolved conflicts +","जारी रखें लागू कर रहा है के साथ परस्पर विरोध +","continue applying patches kar raha hai ke sath resolved conflicts +",4,3 +"Guard against the disgrace and misery of the day when you shall return to Allah: there everyone shall be paid in full, for the good or evil one has earned and none shall be wronged. +","और उस दिन का डर रखो जबकि तुम अल्लाह की ओर लौटोगे, फिर प्रत्येक व्यक्ति को जो कुछ उसने कमाया पूरा-पूरा मिल जाएगा और उनके साथ कदापि कोई अन्याय न होगा +","aur us din ka dar rakho jabki tum allah ki or lautoge, phir pratyek vyakti ko jo kuchh usne kamaya poora-poora mil jaega aur unke sath kadapi koee anyay n hoga +",9,1 +"She answered, This is their home. +","उत्तर था, यह उनका घर है। +","answered tha, yah unka ghar hai. +",7,1 +"Your midwife or doctor should give advice on how you can best look after yourself and your baby while you are pregnant. +","जब आप गर्भावस्था में हैं, आप अपनी और बच्चे की किस प्रकार से देखभाल कर सकती हैं, इस बारे आप की मिडवाईफ़ या आपके डाक्टर को परामर्श देना चाहिये। +","jab aap garbhavastha men hain, aap apni aur bachche ki kis prkar se dekhbhal kar sakti hain, is bare aap ki midvaeef ya aapke doctor should give dena chahiye. +",4,5 +"Many of them are likely to return to India, but while they live abroad, all of them are vulnerable in many ways owing to the fact that they do not enjoy the privileges of citizenship in their host country. +","उनमें से बहुतों के भारत लौटने की संभावना है परंतु विदेश में रहने पर वे सभी इस सच्चाई की वजह से असुरक्षित हैं कि उन्हें अपने मेजबान देश की नागरिकता के लाभ नहीं मिलते हैं। +","many se bahuton ke bharat lautne ki likely hai parntu videsh men rahne par ve sabhi is fact ki vajah se vulnerable hain ki unhen apne host country ki citizenship ke privileges nahin milte hain. +",6,1 +"Lala Hardayal was building up his revolutionary Gaddar Party in America. +","उन दिनों अमेरिका में लाला हरदयाल की ‘गदर पार्टी’ एक क्रांतिकारी संगठन का रुप ले रही थी। +","un dinon america men lala hardayal ki gadar party ek revolutionary sngathan ka rup le rahi thi. +",9,0 +"A plugin sending events to Zeitgeist +","जेटगीइस्ट में कार्यक्रम भेजने के लिए प्लगइन +","events men karyakram bhejne ke lie plugin +",6,4 +"% s is inviting you to join% s +","% s आपको% s में शामिल होने के लिए आमंत्रित कर रहा है +","s inviting s men shamil hone ke lie aamntrit kar raha hai +",4,7 +"And we know how to write that in decimal form. +","और हम जानते हैं की इसे कैसे दसमलव के रूप में लिखते. +","aur ham jante hain ki ise kaise decimal ke form men write +",7,1 +"Sarah Palin entered the fray yesterday. In a high-profile interview yesterday with Chris Wallace , she spontaneously brought up the topic of Obama's winning a second term by bombing Iran: +","साराह पालिन इस बहस में कल शामिल हो गयीं। कल एक व्यापक चर्चित साक्षात्कार में क्रिस वालेस के साथ उन्होंने स्वतः ही इस विषय को चर्चा में ला दिया कि ईरान पर बम गिराकर ओबामा दूसरा कार्यकाल विजित कर सकते हैं। +","sarah palin is bahas men yesterday shamil ho gayin. yesterday ek vyapak charchit interview men chris wallace ke sath unhonne svta hi is topic ko charcha men la diya ki iran par bam girakar obama second karykal vijit kar sakte hain. +",9,2 +"camouflage worn by bullies who are dangerously armed +","बदमाश छलावरण पहने हैं जो खतरनाक हथियारों से लैस हैं +","worn by bullies hain jo khatarnak hathiyaron se lais hain +",6,3 +"With the result , our rivers which we consider holy are no longer so but are laden with pollutants , making them unsuitable for providing water for drinking and other purposes . +","इसके परिणामस्वरूप जिन नदियों को हम पूजनीय मानते थे , अब वे वैसी नहीं रही हैं बल्कि प्रदूषकों से भर गयी हैं जिसकी वजह से उनका पानी पीने तथा अन्य दूसरे कार्यों के लिए उपयुक्त नहीं रह गया है . +","iske result jin rivers ko ham holy mante the , ab ve vaisi nahin rahi hain balki pollutants se bhar gayi hain jiski vajah se unka water drinking tatha other doosre purposes ke lie upyukt nahin rah gaya hai +",8,2 +"Vaccine is available and cannot be given during pregnancy. Women vaccincated against varicella should not try to conceive for at least one month after vaccination. +","टीका उपलब्ध है और गर्भवती स्त्रियों को नहीं दिया जा सकता है. टीका लेने के बाद स्त्रियों को कम से कम एक महीने तक गर्भधारण नहीं करना चाहिये. +","vaccine upalabdh hai aur conceive women ko nahin diya ja sakta hai vaccine lene ke bad women ko kam se kam ek mahine tak garbhdharan nahin karna chahiye +",8,1 +"Products with factory price are available in show room +","फैक्टरी कीमत पर उत्पाद शो रूम में उपलब्ध है। +","factory price par products show room men available hai. +",10,0 +"The pumping system draws water from the open well, bore well, stream, pond, canal etc. +","पम्पिंग प्रणाली जल को खुले कुएं, बोरवेल, जल-धारा, तालाब, नहर आदि से खींचती है। +","pumping system jal ko khule kuen, bore, stream, pond, nahar aadi se khinchti hai. +",9,2 +"Much of the work done by Bose were on loose sheets of paper which he never bothered to preserve. +","बोस द्वारा किये गये अधिकतर कार्य बिखरे हुए कागज के पन्नों पर थे जिन्हें सुरक्षित रखने का उन्होंने कभी कष्ट नहीं उठाया। +","bos dvara kiye gaye adhikatar kary bikhre hue kagaj ke pannon par the jinhen surakshit rakhne ka unhonne kabhi kasht nahin uthaya. +",9,0 +"Apply the given geometry to the main window +","मुख्य विंडो के लिए दिए गए ज्यामिति को लागू करें +","main window ke lie die ge geometry ko lagoo karen +",9,1 +"O believers, if you listen to the infidels they will make you turn your backs, and you will be the losers. +","ऐ ईमानदारों अगर तुम लोगों ने काफ़िरों की पैरवी कर ली तो (याद रखो) वह तुमको उलटे पॉव (कुफ़्र की तरफ़) फेर कर ले जाऐंगे फिर उलटे तुम ही घाटे में आ जाओगे +","ae eemandaron agar o logon ne infidels ki pairvi kar li to yad rakho vah tumko ulte pv kufr ki taraf backs kar le losers phir ulte o hi ghate men aa jaoge +",3,4 +"He debunked the popular misgivings about the concept of Nagalim . +","उन्होंने नगालिम की धारणा को लेकर आम लगों में फैली भ्रांतियों को भी स्पष्ट किया . +","unhonne popular ki dharna ko lekar aam lagon men phaili bhrantiyon ko bhi spasht kiya +",7,1 +"Bull 's stomach has blown up. +","बैल का पेट फूल जाता है। +","stomach has blown phool jata hai. +",4,1 +"The certificate has already been imported. +","प्रमाणपत्र पहले ही आयातित किया जा चुका है. +","certificate pahle hi imported kiya ja chuka hai +",7,2 +"Let 's draw this on the number line. +","चलो यह संख्या लाइन पर आरेखित करें। +","let yah number line par aarekhit karen. +",6,4 +"and when the Koran is recited to them they do not bow? +","और जब उन्हें कुरआन पढ़कर सुनाया जाता है तो सजदे में नहीं गिर पड़ते? +","aur jab unhen koran pakar sunaya jata hai to sajde men nahin gir parte +",4,6 +"Chandrashekhar himself is undecided as to what he should do. +","स्वयं चंद्रशेखर इस संदर्भ में अनिश्चित है कि उसे क्या करना चाहिए। +","svyn chndrshekhar is sndarbh men anishchit hai ki use kya karna chahie. +",9,1 +"Surely the Day of Judgement has an appointed time; +","निस्संदेह फ़ैसले का दिन एक नियत समय है, +","surely day of judgement ek appointed time hai, +",8,4 +"Internal error: UID in invalid format: %s +","आंतरिक त्रुटि:अवैध प्रारूप में UID: %s +","internal error : invalid format men UID : uid +",7,1 +"The house around them was settling down into unquiet sleep, but they were both wide awake. +","चारों ओर से उन्हें घेरता हुआ मकान अशान्त निद्रा में सो रहा था, किन्तु वे दोनों जाग रहे थे। +","charon or se unhen gherta huaa house unquiet sleep men so raha tha , kintu ve donon wide rahe the. +",5,6 +"Non - Political Terrorism - Terrorism is not aimed for the political purposes “”designed to create and maintain fear Ssacen Uchcha Sthar force for the purposes of display, but ultimately a political objective the achievement of personal or collective gain rather than“” +","गैर राजनीतिक आतंकवाद-कि आतंकवाद के उद्देश्य से नहीं है राजनीतिक प्रयोजनों पर जो सचेत डिजाइन बनाने और बनाये रखने के डर के उच्च स्तर के लिए प्रदर्शन बलपूर्वक (coercive) प्रयोजनों लेकिन अंत व्यक्तिगत हो या सामूहिक एक राजनीतिक उद्देश्य की प्राप्ति के बजाए लाभ. +","non political aatnkvad-ki terrorism ke objective se nahin hai political purposes par jo sachet dijain banane aur force rakhne ke fear ke uchch star ke lie display balpoorvak ssacen purposes lekin ant personal ho ya collective ek political objective ki achievement ke bajae labh +",7,1 +"things that didn 't quite exist physically like insurance, stocks and bonds, enterprise softwares, +","चीजें हैं जो काफी शारीरिक रूप से मौजूद नहीं था बीमा, स्टॉक्स और बांड्स, उद्यम सॉफ्टवेयर की तरह, +","things hain jo kaphi sharirik stocks se maujood nahin tha insurance , stks aur bonds , enterprise softwares ki tarah , +",7,1 +"This is convenient as the members of the family can give a constant care to the vegetables during leisure and the wastewater from the bathrooms and kitchen can easily be diverted to the vegetable beds. +","यह सुविधाजनक स्थान होता है क्योंकि परिवार के सदस्य खाली समय में साग-सब्जियों पर ध्यान दे सकते हैं तथा रसोईघर व स्नानघर से निकले पानी आसानी से सब्जी की क्यारी की ओर घुमाया जा सकता है। +","yah convenient sthan hota hai kyonki members ke sadasy khali samay men sag-sabjiyon par care constant sakte hain tatha rasoeeghar v wastewater se nikle pani aasani se vegetables ki kyari ki or ghumaya ja sakta hai. +",7,1 +"God will say, ""Enter the Fire and join the bands of jinn and men that have gone before you."" Every time a host enters [the fire], it will curse its fellow - host, then, when they are all gathered there, the last of them will say of the first, ""Our Lord, it was they who led us astray: give them double punishment in the Fire,"" - - God will say, ""Every one of you will have double punishment, though you do not know it"" - - +","वह कहेगा, ""जिन्न और इनसान के जो गिरोह तुमसे पहले गुज़रे हैं, उन्हीं के साथ सम्मिलित होकर तुम भी आग में प्रवेश करो।"" जब भी कोई जमाअत प्रवेश करेगी, तो वह अपनी बहन पर लानत करेगी, यहाँ तक कि जब सब उसमें रल-मिल जाएँगे तो उनमें से बाद में आनेवाले अपने से पहलेवाले के विषय में कहेंगे, ""हमारे रब! हमें इन्हीं लोगों ने गुमराह किया था; तो तू इन्हें आग की दोहरी यातना दे।"" वह कहेगा, ""हरेक के लिए दोहरी ही है। किन्तु तुम नहीं जानते।"" +","vah jinn , time aur first ke jo host tumse pahle punishment hain , unhin ke sath sammilit hokar tum bhi fire men enters karo. jab bhi koee jamaat enters karegi , to vah apni fellow par lanat karegi , yahan tak ki jab sab usmen ral-mil jaenge to unmen se bad men aanevale apne se pahlevale ke vishay men kahenge , hamare god ! hamen inhin logon ne astray kiya tha to too inhen fire ki double yatna de. vah jinn , harek ke lie double hi hai. kintu tum nahin jante. +",5,1 +"Cannot attach CMS Enveloped data +","CMS लिफाफाकृत आंकड़ा संलग्न नहीं कर सकता है +","CMS cms data snlagn nahin kar sakta hai +",5,7 +"Thereafter, some disputes arose between the parties, who started living separately. +","इसके बाद, दलों के बीच कुछ विवाद उठे, जिन्होंने अलग रहना शुरू कर दिया. +","iske bad , parties ke bich kuchh disputes uthe , jinhonne alag rahna shuroo kar diya +",9,2 +"These powers of the Supreme Court to grant special leave to appeal are far wider than the High Courts' power to grant certificates to appeal to the Supreme Court under article 134. +","अनुच्छेद 134 के अधीन उच्चतम न्यायालय में अपील के लिए प्रमाणपत्र देने की जो शक्ति उच्च न्यायालय को प्राप्त है, उससे कहीं अधिक व्यापक उच्चतम न्यायालय की ये शक्तियां अपील की विशेष इजाजत देने के बारे में हैं. +","anuchchhed 134 ke adhin uchchatam nyayalay men apil ke lie prmanapatr dene ki jo shakti uchch nyayalay ko prapt hai, usse kahin adhik vyapak uchchatam nyayalay ki ye shaktiyan apil ki grant special leave ke bare men hain +",5,3 +"In those days i. e. before 1947 Urdu was the State language of the Punjab, and Punjabi was grossly neglected by the intellectuals, most of who behaved like 'Sahibs' in their speech, mannerisms, etc. +","उन दिनों 1947 से पूर्व उर्दू पंजाब की राजभाषा थी और बुद्धिजीवी जिनमें से अधिकांश तो अपनी बातचीत व व्यवहार में साहिबों जैसा व्यवहार करते थे तछा पंजाबी की पूरी तरह उपेक्षा करते थे। +","un dinon 1947 se poorv state language ki rajbhasha thi aur buddhijivi jinmen se adhikansh to apni batchit v vyavhar men sahibon jaisa vyavhar karte the tachha pnjabi ki poori tarah upeksha karte the. +",6,4 +"Sarah Palin entered the fray yesterday. In a high-profile interview yesterday with Chris Wallace , she spontaneously brought up the topic of Obama's winning a second term by bombing Iran: +","साराह पालिन इस बहस में कल शामिल हो गयीं। कल एक व्यापक चर्चित साक्षात्कार में क्रिस वालेस के साथ उन्होंने स्वतः ही इस विषय को चर्चा में ला दिया कि ईरान पर बम गिराकर ओबामा दूसरा कार्यकाल विजित कर सकते हैं। +","sarah palin is bahas men kal shamil ho gayin. kal ek vyapak charchit sakshatkar men kris vales ke sath unhonne svta hi is vishay ko charcha men la diya ki eeran par bam girakar obama doosra karykal vijit kar sakte hain. +",5,8 +"And that 's probably the key lesson to my short talk here, is that +","और मेरे छोटे व्याख्यान का शायद महत्वपूर्ण सबक है, +","aur mere short talk ka shayad key lesson hai , +",7,5 +"(iii) ""contract"" shall include sub-contract; +","(iii) ""संविदा"" के अंतर्गत उपसंविदा भी है; +","iii snvida ke include contract bhi hai +",6,2 +"And the Word will be fulfilled against them, because of their wrong - doing, and they will be unable to speak (in plea). +","इन पर (अज़ाब का) वायदा पूरा हो गया फिर ये लोग कुछ बोल भी तो न सकेंगें +","in par word ka vayda poora ho gaya phir ye log kuchh plea bhi to n wrong +",6,2 +"Sonabadra District in Uttar Pradesh is the one and only place whose borders touches four other districts | +","उत्तर प्रदेश का सोनभद्र जिला देश का एक मात्र ऐसा जिला है जिसकी सीमाएँ सर्व चार प्रदेशों को छूती है। +","uttar pradesh ka sonabadra district one ka ek only aesa district hai jiski simaen sarv char prdeshon ko chhooti hai. +",8,2 +"Canada 's currently led by a party +","कनाडा में आज जिस पार्टी की सरकार है, +","canada men aaj jis party ki sarkar hai , +",9,1 +"Droupadi is an emanation of Mahashakti, the Power Creatrix, as well. +","द्रौपदी महाशक्ति का भी स्रोत है और सृष्टि सत्ता का भी। +","draupdi emanation ka bhi srot hai aur srishti satta ka bhi. +",8,4 +"However, the suit was filed immediately thereafter, without waiting for two months +","हालाँकि मुकदमा तुरंत ही दायर कर दिया गया था बिना दो महीने इंतज़ार करे ही. +","halanki suit turnt hi dayar kar diya gaya tha bina do months intazar kare hi +",7,1 +"Dr. Ambedkar was at pains to emphasise that the new republic would be a ""Union” of States, as opposed to a"" Federation” of States. The States would have no right to secede. +","डॉ. अंबेडकर ने बहुत परिश्रम से यह बताने का प्रयास किया था कि नया गणतंत्र राज्यों के ‘परिसंघ’के बजाय राज्यों का ‘संघ’ होगा। राज्यों को अलग होने का अधिकार नहीं होगा। +","pains ambedkar ne bahut parishram se yah batane ka pryas kiya tha ki new republic states ke parisngh ke bajay states ka union hoga. states ko alag hone ka right nahin hoga. +",7,0 +"that we should abolish this age - discriminatory word +","कि हमें इस उम्र-पक्षपाती शब्द को मिटा ही देना चाहिए +","ki hamen is umr-pakshpati age ko discriminatory hi dena chahie +",7,1 +"For the Indians in general, patriotism was the only meaning of the ideals and lessons preached by Gandhiji. +","भारतीय जन-मानस के समक्ष गाँधी द्वारा प्रादुर्भूत आदर्शों और उपदेशों का अर्थ मात्र देश-भक्ति था। +","bhartiy jan-manas ke samaksh gandhi dvara pradurbhoot ideals and lessons ka arth matr desh-bhakti tha. +",8,4 +"XRC resource: Incorrect colour specification '%s' for property '%s'. +","एक्सआरसी स्रोतसाधन: गलत रंग विशिष्टता '%s' गुणधर्म '%s' के लिए। +","eksaarsi srotsadhan: incorrect colour specification s gunadharm s ke lie. +",7,1 +"Another intriguing structure at the Imambara is the five - storied baoli (step well), which belongs to the pre - Nawabi era. +","इमामबाड़े की एक और विहित संरचना 5 मंजिला बावड़ी (सीढ़ीदार कुंआ) है, जो पूर्व नवाबी युग की है। +","imambara ki ek aur vihit structure intriguing mnjila bavari siidar kunaa hai , jo pre nawabi era ki hai. +",5,2 +"Please accept, Excellency, my good wishes for your personal health and well-being, as well as for the progress and prosperity of the friendly people of the Republic of Equatorial Guinea. +","कृपया अपने व्यक्तिगत स्वास्थ्य तथा कुशलता और भूमध्यवर्ती गिनी गणराज्य की मैत्रीपूर्ण जनता की प्रगति और समृद्धि के लिए मेरी शुभकामनाएं स्वीकार करें। +","please apne good health tatha kushalta aur equatorial guinea republic ki friendly people ki progress aur prosperity ke lie meri wishes svikar karen. +",9,2 +"With such modes and conventions ruling the stage, it is plausible to assume further that playwrights started preparing their scripts suitably and incorporated directives for acting and representation. +","मंचन को नियंत्रित करना भी संगत होगा कि नाटककार तदनुसार अपनी पांडुलिपियाँ तेयार करने लगे होंगे तथा अभिनय और प्रस्तुतीकरण के निर्देशों का समावेश करने लगे होंगे। +","scripts ko niyntrit karna bhi sngat further ki playwrights tadnusar apni pandulipiyan teyar karne such honge tatha stage aur representation ke directives ka incorporated karne such honge. +",7,3 +"He commenced writing it on August 2, 1888, completed it on September 9, 1888, and released it in December. +","दूसरी अगस्त सन् 1888 को लिखनी शुरु की और 9 सितम्बर सन् 1888 को उसे पूर्ण किया तथा दिसम्बर में प्रकाशित किया। +","doosri agast san 1888 ko commenced writing ki aur 9 sitambar san 1888 ko use poorn kiya tatha disambar men prkashit kiya. +",6,5 +"working together for a common goal +","किसी सामान्य उद्देश्य के लिए मिलकर काम करना +","kisi common goal ke lie milakar kam karna +",8,1 +"and on the mountains, how they are firmly set up, +","और पहाड़ो की ओर कि कैसे खड़े किए गए? +","aur mountains ki or ki firmly set kie ge +",8,2 +"Technologies that enable efficient use of biomass are becoming prevalent in rural areas. +","जैव ईंधन के प्रभावी उपयोग को सुरक्षित करती प्रौद्योगिकियाँ ग्रामीण क्षेत्रों में फैल रहीं हैं। +","technologies eendhan ke efficient use ko surakshit karti praudyogikiyan rural areas men phail rahin hain. +",6,0 +"The file does not appear to be a playlist +","यह फ़ाइल प्लेलिस्ट नहीं दिखता है +","yah file playlist nahin dikhta hai +",9,1 +"Pakistani territory of today has been witness to many cultures +","आज का पाकिस्तानी भूभाग कई संस्कृतियों का गवाह रहा है। +","aaj ka pakistani territory kee cultures ka witness raha today +",7,0 +"User 's $HOME /. dmrc file is being ignored. This prevents the default session and language from being saved. File should be owned by user and have 644 permissions. User' s $HOME directory must be owned by user and not writable by other users. +","उपयोक्ता का $HOME/. dmrc फाइल अनदेखा किया जा रहा है. यह मूलभूत सत्र और भाषा को सहेजे जाने से रोकता है. फाइल को उपयोक्ता के द्वारा स्वामित्व दिया जाना चाहिये और 644 अनुमति रखना चाहिये. उपयोक्ता की $HOME निर्देशिका उपयोक्ता के द्वारा जरूर स्वामित्व में रखनी चाहिये और अन्य उपयोक्ता द्वारा नहीं लिखने योग्य होना चाहिये. +","user ka HOME dmrc file andekha kiya ja raha hai yah moolbhoot satr aur bhasha ko saheje jane se rokta hai file ko user ke dvara owned diya jana chahiye aur 644 anumti rakhna chahiye user ki HOME nirdeshika user ke dvara jaroor owned men rakhni chahiye aur any user dvara nahin likhne yogy hona chahiye +",9,0 +"On GRETIL thousands of Sanskrit text in various encoding. GRETIL +","पर सहस्रों संस्कृत ग्रन्थ अनेक स्रोतों से अनेक इनकोडिंग में +","par gretil sanskrit text various sroton se various inkoding men +",6,6 +"Daar ji let our friendship grow but asked him to get permission of his parents for this match so that there was no problem later on. +","दार जी ने हमारी मित्रता को पल्लवित-पुष्पित होने दिया, परन्तु इनको कहा कि तुम भी अपने घरवालों से इस संबंध में सहमति ले लो, ताकि बाद में कोई कठिनाई न हो। +","daar ji ne hamari friendship ko pallvit-pushpit hone diya , match inko kaha ki tum bhi apne gharvalon se is snbndh men permission grow parents , taki bad men koee problem n ho. +",5,5 +"After Gandhiji initiated the Non - Cooperation Movement, Azad was trying to choose whether to follow the ways of Gandhiji or the violent ways of the revolution. +","गांधीजी के असहयोग आन्दोलन छिड़ने के बाद वे गांधीजी के तरीकों और हिंसक आन्दोलन में से अपने लिए रास्ता चुनने लगे। +","gandhiji ke cooperation movement chhirne ke bad ve gandhiji ke tarikon aur hinsak aandolan men se apne lie rasta chunne lage. +",7,0 +"He instilled the core values of this organization, the three I’s i. e. industry, impartiality and integrity in the organization. +","उन्होंने इस संगठन में तीन प्रमुख मूल्यों परिश्रम, निष्पक्षता और ईमानदारी का समावेश किया। +","unhonne is sngathan men tin prmukh moolyon parishram, impartiality and integrity ka samavesh kiya. +",8,3 +"All the appellants pleaded not guilty to the charge and claimed to be tried +","सभी अपीलकर्ताओं ने अपराध स्वीकार नहीं किया और मुक़दमा चलाये जाने की मांग की. +","sabhi appellants ne apradh svikar nahin kiya aur mudma chalaye jane ki mang ki +",9,0 +"This has happened in India, too. +","ऐसा भारत में भी हुआ है। +","happened in india bhi huaa hai. +",4,3 +"Because over here, on this line, let 's take +","क्योंकि अधिक यहाँ, इस पंक्ति पर, चलो ले +","kyonki adhik yahan, is line par, chalo le +",6,8 +"The first gurus were Chunakkara Achutha Varier and Sankara Varier. +","प्रथम गुरु चुनक्करा अच्युत वारियर और शंकर वारियर रहे। +","first gurus chunakkra achyut variyar aur sankara variyar rahe. +",6,4 +"He covered the vacuum tube with black paper and with card - board through which no visible light could pass. +","उन्होंने निर्यात ट्यूब को काले कागज और कार्डबोर्ड से ढंक दिया, जिससे होकर कोई दृश्य प्रकाश एक और से दूसरी और नहीं गुजर सकता था। +","unhonne card tube ko black paper aur board se vacuum diya , jisse hokar koee visible light ek aur se doosri aur nahin gujar sakta tha. +",5,2 +"Error: Object path is not specified +","त्रुटि: ऑब्जेक्ट पथ निर्दिष्ट नहीं है +","error: object path nirdisht nahin hai +",9,1 +"Set the row to use as dynamic column headers when speaking calc cells. +","गतिशील कॉलम हेडर के रूप में प्रयोग के लिए पंक्ति सेट करें जब कैल्क सेल बोला जा रहा हो. +","dynamic klam headers ke roop men pryog ke lie row set karen jab calc sel bola ja raha ho +",7,2 +"It is today a premier organization for industry, trade and service sectors in Karnataka. +","आज यह कर्नाटक के उद्योग,व्यापार तथा सेवा क्षेत्र का एक प्रमुख संगठन है। +","aaj yah karnatak ke udyog,trade and service kshetr ka ek today a premier +",6,2 +"Northeastern India The area covering the Indian States of Assam, Arunachal Pradesh, Meghalaya, Manipur and Tripura, and neighbouring areas of Bangladesh and Burma are one of the most earthquake - prone regions of the world. +","यह क्षेत्र, भारतीयक राज्यों यथा असम, अरूणाचल प्रदेश, मेघालय, मणिपुर, तथा त्रिपुरा एवं निकटवर्ती बांग्लादेश तथा वर्मा को आच्छादित करता है, जो विश्व का सर्वाधिक भूकंप प्रभावित क्षेत्र है। +","yah kshetr, bhartiyak rajyon yatha asam, aroonachal prdesh, meghalay, manipur, tatha tripura evn nikatavarti bangladesh tatha varma ko aachchhadit karta hai, jo vishv ka sarvadhik bhooknp prbhavit kshetr hai. +",4,7 +"You are now connected to the WiMAX network. +","आप अभी WiMAX संजाल से कनेक्टेड हैं. +","aap abhi WiMAX network se connected hain +",9,0 +"Unto this, then, summon (O Muhammad). And be thou upright as thou art commanded, and follow not their lusts, but say: I believe in whatever scripture Allah hath sent down, and I am commanded to be just among you. Allah is our Lord and your Lord. Unto us our works and unto you your works; no argument between us and you. Allah will bring us together, and unto Him is the journeying. +","अतः इसी लिए (उन्हें सत्य की ओर) बुलाओ, और जैसा कि तुम्हें हुक्म दिया गया है स्वयं क़ायम रहो, और उनकी इच्छाओं का पालन न करना और कह दो, ""अल्लाह ने जो किताब अवतरित की है, मैं उसपर ईमान लाया। मुझे तो आदेश हुआ है कि मैं तुम्हारे बीच न्याय करूँ। अल्लाह ही हमारा भी रब है और तुम्हारा भी। हमारे लिए हमारे कर्म है और तुम्हारे लिए तुम्हारे कर्म। हममें और तुममें कोई झगड़ा नहीं। अल्लाह हम सबको इकट्ठा करेगा और अन्ततः उसी की ओर जाना है।"" +","ata isi lie unhen saty ki or bulao, aur jaisa ki tumhen hukm diya gaya hai svyn ayam raho, aur unki ichchhaon ka palan n karna aur kah do, allah ne jo kitab avatrit ki hai, main usapar eeman laya. mujhe to aadesh huaa hai ki main tumhare bich nyay karoon. allah hi hamara bhi rab hai aur tumhara bhi. hamare lie hamare karm hai aur tumhare lie tumhare karm. hammen aur tummen koee jhagara nahin. allah ham sabko ikattha karega aur antta usi ki or jana hai. +",9,2 +"Truly, to Us is their return; +","बेशक उनको हमारी तरफ़ लौट कर आना है +","beshak unko hamari return laut kar aana hai +",7,1 +"He worked there with utmost steadfastness and devotion. +","उन्होंने वहॉं रहकर दत्तचित्तता के साथ काम किया। +","unhonne vahn rahakar dattchittta ke sath kam kiya. +",9,1 +"But his words fell on deaf ears, for was he not the poet of a nation defeated and enslaved? +","लेकिन उनकी वाणी किन्हीं बहरे कानों में पड़ रही थी, क्या वे स्वयं एकपराजित और परतंत्र देश के कवि नहीं थे? +","lekin unki vani kinhin fell on deaf par rahi thi, kya ve svyn ekaprajit aur partntr desh ke kavi nahin the +",7,2 +"Some months ago there were normal democratic elections there and as a result a popular radical party a joint popular front came into power . +","कुछ महीने हुए वहां सामान्य लोकतांत्रिक चुनाव हुए और फलस्वरूप वहां एक लोकप्रिय रेडिकल पार्टी-संयुक़्त लोकप्रिय मोर्चा-सत्ता में आयी . +","kuchh months hue vahan normal democratic elections hue aur result vahan ek popular radical parti-snyut popular morcha-satta men front +",7,3 +"Loan amount up to Rs. 7. 50 lacs: 10 years. +","रु. 7.50 तक की ऋण के लिए: 10 वर्ष +","amount 750 tak ki loan ke lie : 10 years +",6,3 +"The best thing is to go to doctor to monitor the size of uterus and how much amniotic fluid is in womb. +","चिकीत्सक द्वारा गर्भाशय के आकार व कोख में स्थित उल्वद्रव की मात्रा की निगरानी की जानी चाहिये +","chikitsak dvara uterus ke size v thing men sthit amniotic ki matra ki nigrani ki jani chahiye +",8,2 +"The magicians said: ""Moses, will you throw down or shall we be the first to throw?"" +","ग़रज़ जादूगरों ने कहा (ऐ मूसा) या तो तुम ही (अपने जादू) फेंको और या ये कि पहले जो जादू फेंके वह हम ही हों +","raz magicians ne kaha ae moses ya to tum hi apne first phenko aur ya ye ki pahle jo first phenke vah ham hi hon +",7,1 +"The magicians answered: ""By Him Who has created us, we shall never prefer you to the Truth after manifest Signs have come to us. So decree whatever you will. Your decree will pertain, at the most, to the present life of the world. +","जादूगर बोले कि ऐसे वाजेए व रौशन मौजिज़ात जो हमारे सामने आए उन पर और जिस (खुदा) ने हमको पैदा किया उस पर तो हम तुमको किसी तरह तरजीह नहीं दे सकते तो जो तुझे करना हो कर गुज़र तो बस दुनिया की (इसी ज़रा) ज़िन्दगी पर हुकूमत कर सकता है +","jadoogar bole ki aese vajee v manifest signs jo hamare samne aae un par aur jis khuda ne hamko paida kiya us par to ham tumko kisi tarah tarjih nahin de sakte to jo tujhe karna ho kar guzar to bas duniya ki isi zara zindgi par hukoomat kar sakta hai +",4,6 +"ATAL BIHARI VAJPAYEE: SELECTED SPEECHES Firstly, it helps correct a grave distortion that has taken place in public consciousness. +","पहला, इससे जन-चेतना में आने वाली एक गंभीर विकृति को दूर करने में मदद मिलती है। +","pahla , isse jan-chetna men aane place ek grave distortion ko door karne men public milti atal +",4,1 +"The presiding officer of each House or any other officer or Member of Parliament who is for the time being vested with the powers to regulate procedure , or to enforce or carry out the decision of either House of Parliament , is not subject to the jurisdiction of the courts in exercise of those powers -LRB- articles 122 -LRB- 2 -RRB- and 105 -LRB- 3 -RRB- -RRB- . +","प्रत्येक सदन का पीठासीन अधिकारी या कोई अधिकारी या संसद-सदस्य जिनमें अस्थायी रूप में प्रक्रिया या कार्य-संचालन को विनियमित करने की तथा संसद के किसी सदन के निर्णय को लागू करने की शक्तियां निहित हों , इन शक्तियों के प्रयोग के विषय में किसी न्यायालय की अधिकारिता के अधीन नहीं होगा [अनुच्छेद 122 ( 2 ) तथा 105 ( 3 ) ] . +","jurisdiction house ka member officer ya koee officer ya snsad-sadasy jinmen asthayi roop men procedure ya kary-snchalan ko viniymit karne ki time parliament ke kisi house ke decision ko lagoo karne ki powers nihit hon , in shaktiyon ke pryog ke subject men kisi nyayalay ki adhikarita ke articles nahin hoga anuchchhed 122 2 time 105 3 +",7,3 +"A certificate indicating reputation for financial integrity. +","ऐसा प्रमाणपत्र जो वित्तीय मामलों में निष्ठा सम्बन्धी व्यवहार को प्रकट करने वाला हो। +","aesa prmanapatr jo vittiy mamlon men nishtha sambandhi vyavhar ko prakat karne vala ho. +",9,1 +"When they came upon you from above you and from below you, and when eyes turned aside and hearts reached to the gullets, and of Allah ye were imagining various things. +","जिस वक्त वह लोग तुम पर तुम्हारे ऊपर से आ पड़े और तुम्हारे नीचे की तरफ से भी पिल गए और जिस वक्त (उनकी कसरत से) तुम्हारी ऑंखें ख़ैरा हो गयीं थी और (ख़ौफ से) कलेजे मुँह को आ गए थे और ख़ुदा पर तरह-तरह के (बुरे) ख्याल करने लगे थे। +","jis allah vah log tum par tumhare oopar se aa pare aur tumhare niche ki taraph se bhi gullets hearts aur jis allah unki kasarat se eyes ऑnkhen aira ho gayin thi aur auph se kaleje munh ko aa hearts the aur uda par tarah-tarah ke various khyal karne lage the. +",4,6 +"Both J. P. and Vinoba supported the war. +","जे. पी. और विनोबा दोनों ने उस युद्ध का समर्थन किया। +","je pi aur vinoba donon ne us supported the war kiya. +",5,5 +"to go out and continue this very important thing +","जिससे कि वो इस बहुत ही महत्वपूर्ण काम को जारी रख सकें +","jisse ki vo is bahut hi important thing ko jari rakh saken +",8,2 +"I ask no recompense of you; my reward is only with the Lord of the Universe. +","मैं इस काम पर तुमसे कोई प्रतिदान नहीं माँगता। मेरा प्रतिदान तो बस सारे संसार के रब के ज़ि्म्मे है। +","main is kam par tumse koee prtidan nahin mangta. mera prtidan to bas sare snsar ke rab ke zimme hai. +",9,2 +"View the output produced by the last executed command +","अंतिम कार्यान्वित कमांड द्वारा उत्पादित आउटपुट देखेंFile +","last executed command dvara utpadit output dekhenFile +",8,1 +"It is divided into six parts , five of which deal with cosmic matters . +","यह छह भागों में विभक़्त है जिनमें से पांच में ब्रह्मांड से संबंधित विषयों पर चर्चा की गई है . +","yah chhah bhagon men vibhat hai jinmen se deal with cosmic se snbndhit vishyon par charcha ki gee hai +",4,5 +"Usman Riaz: Yes, that was the first one. And then I - +","उस्मान रियाजः हाँ, यह पहला था. और फिर मैं... +","usman riyaja han, yah pahla tha aur phir main +",9,1 +"- Harper Lee, To Kill a Mocking Bird - +","हार्पर ली, टु किल ए मॉकिंग बर्ड +","harper bird , tu kil e lee bard +",7,1 +"Split Mode (Equal Split) +","स्प्लिट मोड (बराबर स्प्लिट) +","split mode equal split +",7,3 +"Why give BCG vaccine only on the left upper arm? +","बीसीजी का टीका केवल बाईं भुजा पर ऊपर क्यों लगाया जाता है? +","bisiji ka tika left upper arm par oopar kyon lagaya jata hai +",8,2 +"It was karthik month when the candle was lit +","कार्तिक मास की सघन काली अमावस्या की वह रात्रि दीयों की रोशनी से जगमगा उठी। +","kartik month ki saghan kali amavasya ki vah ratri candle ki roshni se jagamga uthi. +",8,1 +"Then it goes back to potential energy again. +","तो यह वापस संभावित ऊर्जा को फिर से चला जाता है। +","to yah back to potential ko phir se chala jata hai. +",6,1 +"And if terrorist is impolite, adjectives such as Islamist, Islamic, and Muslim become unmentionable. My blog titled “Not Calling Islamism the Enemy ” provides copious examples of this avoidance, along with its motives. In short, those who would replace War on Terror with A Global Struggle for Security and Progress imagine this linguistic gambit will win over Muslim hearts and minds. +","और यदि आतंकवादी असभ्य हैं तो इस्लामवादी, इस्लामी और मुस्लिम का उल्लेख करने से परहेज किया जाता है। मेरे ब्लाग Not calling Islamism the Enemy में इस बात के उदाहरण दिये गये हैं कि इससे परहेज क्यों किया जाता है और इसका उद्देश्य क्या है? संक्षेप में जो लोग आतंक के विरुद्ध युद्ध को सुरक्षा और विकास के लिये वैश्विक संघर्ष के रूप में नया नाम देना चाहते हैं उन्हें कल्पना है कि इस प्रकार भाषा बदल कर वे मुस्लिम ह्रदय और मस्तिष्क को विजित कर सकेंगे। +","aur yadi terrorist asabhy hain to islamist , islamic aur muslim ka short karne se avoidance kiya jata islamism mere blog gambit calling Islamism the Enemy men is bat ke udaharan diye gaye hain ki isse avoidance kyon kiya jata hai aur iska uddeshy kya hai snkshep men jo log terror ke viruddh war ko security aur progress ke liye vaishvik struggle ke roop men naya nam dena chahte hain unhen kalpna hai ki is prkar linguistic badal kar ve muslim hearts aur minds ko vijit kar sakenge. +",7,3 +"Then as for him whose good deeds are preponderant, these are the successful. +","फिर जिनके पलड़े भारी हुए तॊ वही हैं जो सफल। +","phir good deeds bhari hue t vahi hain jo good +",5,3 +"And now we can just unwind this. +","और अब हम सिर्फ यह खोलना कर सकते हैं। +","aur ab ham sirph yah unwind kar sakte hain. +",8,2 +"As for the good land, vegetation comes forth in abundance by the command of its Lord, whereas from the bad land, only poor vegetation comes forth. Thus do We expound Our signs in diverse ways for a people who are grateful. +","और अच्छी भूमि के पेड़-पौधे उसके रब के आदेश से निकलते है और जो भूमि ख़राब हो गई है तो उससे निकम्मी पैदावार के अतिरिक्त कुछ नहीं निकलता। इसी प्रकार हम निशानियों को उन लोगों के लिए तरह-तरह से बयान करते है, जो कृतज्ञता दिखानेवाले है +","aur good land ke per-paudhe uske rab ke aadesh se nikalte hai aur jo bhoomi rab ho gee hai to usse nikammi paidavar ke atirikt kuchh nahin nikalta. isi prkar ham nishaniyon ko un logon ke lie tarah-tarah se bayan karte hai, jo kritajnjta dikhanevale hai +",4,5 +"There is another gurudwara in Great Nicobar at Campbell Bay . +","एक अन्य गुरुद्वारा ग्रेट निकोबार के कैम्पल बे में है . +","ek great gurudwara gret nicobar ke campbell be men hai +",6,5 +"Thou mayest defer (the turn of) any of them that thou pleasest, and thou mayest receive any thou pleasest: and there is no blame on thee if thou invite one whose (turn) thou hadst set aside. This were nigher to the cooling of their eyes, the prevention of their grief, and their satisfaction - that of all of them - with that which thou hast to give them: and Allah knows (all) that is in your hearts: and Allah is All - Knowing, Most Forbearing. +","इनमें से जिसको (जब) चाहो अलग कर दो और जिसको (जब तक) चाहो अपने पास रखो और जिन औरतों को तुमने अलग कर दिया था अगर फिर तुम उनके ख्वाहॉ हो तो भी तुम पर कोई मज़ाएक़ा नहीं है ये (अख़तेयार जो तुमको दिया गया है) ज़रूर इस क़ाबिल है कि तुम्हारी बीवियों की ऑंखें ठन्डी रहे और आर्जूदा ख़ातिर न हो और वो कुछ तुम उन्हें दे दो सबकी सब उस पर राज़ी रहें और जो कुछ तुम्हारे दिलों में है खुदा उसको ख़ुब जानता है और खुदा तो बड़ा वाक़िफकार बुर्दबार है +","inmen se jisko jab mayest hadst kar do aur jisko jab tak mayest apne pas rakho aur jin aurton ko tumne hadst kar diya tha agar phir thou unke khvah ho to bhi thou par koee blame nahin hai ye ateyar jo thee diya gaya hai zaroor is abil hai ki tumhari biviyon ki ऑnkhen thandi rahe aur aarjooda atir n ho aur knowing kuchh thou unhen grief do sabki sab us par prevention rahen aur jo kuchh tumhare hearts men hai eyes usko ub janta hai aur eyes to bara vaiphkar forbearing hai +",4,3 +"There is a great percentage of poetry in his so - called dramas, also there is music in them. +","उनके तथाकथित नाटकों में, कविताओं का अंश मुख्य है, उनमें संगीत भी शामिल है। +","unke called dramas men, percentage of poetry mukhy hai, unmen sngit bhi shamil hai. +",7,1 +"budha 's birthday is still conducted in theravada countries and his mother got death after 7 days of his birth +","बुद्ध का जन्म दिन व्यापक रूप से थएरावदा देशों में मनाया जाता है उनकी माता का उनके जन्म के सात दिन बाद निधन हो गया था। +","buddh ka birthday death vyapak roop se theravada countries men manaya jata hai unki mother ka unke birthday ke sat death bad budha ho gaya tha. +",7,2 +"Iraqi maltreatment of Iranian dissidents both raises humanitarian concerns and points to the MeK's larger importance as a mechanism to thwart the U.S. goal of minimizing Tehran's influence in Iraq. +","ईरान के विद्रोहियों के साथ इराक द्वारा किये जा रहे दुर्व्यवहार से जो प्रश्न खडे होते हैं उनमें मानवता के आधार पर चिन्ता तो है ही यह इराक में तेहारान के प्रभाव को बढने से रोकने में मुजाहिदीने खल्क की महती भूमिका को भी अवरुद्ध करता है। +","eeran ke vidrohiyon ke sath irak dvara kiye ja rahe durvyavhar se jo prashn khade hote hain unmen manavta ke aadhar par chinta to hai hi yah irak men goal of minimizing ko badhne se rokne men mujahidine khalk ki mahti bhoomika ko bhi avruddh karta hai. +",7,6 +"% s is inviting you to join% s +","% s आपको% s में शामिल होने के लिए आमंत्रित कर रहा है +","s aapko s men shamil hone ke lie aamntrit kar raha hai +",8,1 +"The cyst got intumesce as it was not treated. +","छाले का इलाज न होने के कारण वह सूज गया है. +","chhale ka treated n hone ke karan vah sooj gaya hai +",8,1 +"Thank you for your letter dated 24 May 1947 regarding the situation in Lahore. 2. +","ता. 30-5-1947 लाहौर की स्थिति के विषय में लिखे गये आपके 24 मई के पत्र के लिए धन्यवाद। +","ta 30-5-1947 lahore ki situation ke vishay men likhe gaye aapke 24 mee ke letter ke lie thank +",8,0 +"The absence of the karnakutas in the hara of the top tala marks the first step towards the elimination of the hara itself, and the placement of the vahanas and lanchanas of the main deity at the corners in its place. +","ऊपरी तल के हार में कर्णकूटों की अनुपस्थित स्वंय हार के विलोपन और उसके स्थान पर कोनों पर मुख्य देवता के वाहनों और लांछनों के स्थापन की दिशा में पहला कदम हैं। +","oopri tala ke hara men karnakutas ki absence svny hara ke elimination aur uske place par corners par top deity ke vahanas aur lanchanas ke placement ki disha men first step hain. +",6,1 +"Drayage from port to warehouse is borne by the importer. +","बन्दरगाह से गोदाम तक माल की ढुलाई का व्यय आयातक द्वारा वहन किया जाता है। +","port to warehouse tak mal ki dhulaee ka vyay aayatak dvara vahan kiya jata hai. +",6,7 +"On the other hand, Pranayama awakens the coiled - up serpent of the Pranic dynamism in the vital sheath and opens to the Yogin fields of consciousness, ranges of experience, abnormal faculties denied to the ordinary human life while it puissantly intensifies such normal powers and faculties as he already possesses. +","दूसरी ओर, प्राणायाम प्राणकोष में प्राणिक सक्रियता की सर्पाकार कुंडलिनी-शक्ति को जगा देता है तथा योगी के सामने चेतना के ऐसे क्षेत्र, अनुभव की ऐसी शृंखलांए तथा असामान्य शक्तियां खोलकर रख देता है जो सामान्य मानव-जीवन में प्राप्त नहीं होतीं, साथ ही वह उन सामान्य शक्तियों एवं क्षमताओं को भी जो उसके पास पहले से हैं अतिशय सबल बना देता है। +","doosri or, pranayam prankosh men pranik sakriyta ki sarpakar kundlini-shakti ko jaga deta hai tatha yogi ke samne chetna ke aese kshetr, anubhav ki aesi shrinkhlane tatha asamany shaktiyan kholakar rakh deta hai jo samany manav-jivan men prapt nahin hotin, sath hi vah un samany shaktiyon evn kshamtaon ko bhi jo uske pas pahle se hain atishay sabal bana deta hai. +",8,2 +"Central European (_ MacCE) +","मध्य यूरोपीय (_ MacCE) +","central european _ MacCE +",4,7 +"Negativistic gnosticism treats the relationship of the spirit and the body as accidental and meaningless. +","नकारात्मक ज्ञानवाद शरीर और आत्मा के संबध को संयोगात्मक और अर्थहीन मानता है। +","nakaratmak jnjanvad sharir aur aatma ke snbadh ko snyogatmak aur arthhin manta hai. +",4,7 +"Thus did a frustrated, enraged, and powerless people overwhelm their authorities and target close-by innocents. +","इस प्रकार शक्तिहीन, कुण्ठित, क्रोधित लोगों ने अपने अधिकारियों पर गुस्सा दिखाया तथा अपने निकट के निर्दोष लोगों को निशाना बनाया. +","is prkar shaktihin, kunthit, krodhit logon ne apne adhikariyon par gussa dikhaya tatha apne nikat ke nirdosh logon ko nishana banaya +",8,4 +"Were this true, science as an accurate, dependable and useful branch of knowledge would not have been possible; nature would have been all chaos and confusion; there would have been no permanent laws to discover, no fixed relationship between one fact or event and another; and past experiences would not have been able to give guidance to actions of man. +","यदि यह सच होता तो विज्ञान ज्ञान की एक यथार्थ, विश्वसनीय और उपयोगी शाखा नहीं होती; प्रकृति में चारों तरफ अव्यवस्था और भ्रम व्याप्त होता; खोजने के लिए कोई स्थायी नियम होते और न ही एक दूसरे तथ्यों, एक दूसरी घटनाओं के बीच कोई निश्चित संबंध होते; और न ही पिछले अनुभवों से मनुष्य को अपने कार्यों के लिए कोई मार्गदर्शन मिलता। +","yadi yah sach hota to vijnjan jnjan ki ek yatharth, vishvasniy aur upyogi shakha nahin hoti prkriti give guidance taraph avyavastha aur bhram vyapt hota khojne ke lie koee sthayi niyam hote aur n hi ek doosre tathyon, ek doosri ghatnaon ke bich koee nishchit snbndh hote aur n hi pichhle anubhvon se manushy ko apne karyon ke lie koee margadarshan milta. +",8,2 +"to the focus points and saying it 's a constant. +","यह एक निरंतर ध्यान केंद्रित अंक और कह रही करने के लिए है। +","yah ek constant dhyan focus points aur kah rahi karne ke lie focus +",7,0 +"They said: Swear to each other by Allah that we will certainly make a sudden attack on him and his family by night, then we will say to his heir: We did not witness the destruction of his family, and we are most surely truthful. +","वे आपस में अल्लाह की क़समें खाकर बोले, ""हम अवश्य उसपर और उसके घरवालों पर रात को छापा मारेंगे। फिर उसके वली (परिजन) से कह देंगे कि हम उसके घरवालों के विनाश के अवसर पर मौजूद न थे। और हम बिलकुल सच्चे है।"" +","ve aapas men allah ki smen khakar bole, ham avashy usapar aur uske gharvalon par rat ko chhapa marenge. phir uske vali prijan se kah denge ki ham uske gharvalon ke vinash ke avasar par maujood n the. aur ham bilkul surely truthful +",7,2 +"all powered on that coal. +","साब कोयले की ताकत पे खड़े हुए +","powered coal ki takat pe khare hue +",7,2 +"a protection against every rebel satan; +","और प्रत्येक सरकश शैतान से सुरक्षित रखने के लिए +","aur pratyek protection satan se surakshit rakhne ke lie +",5,5 +"Likewise, the two lateral walls of the mandapa are relieved five times, corresponding to the hara elements, the central one on each side being a devakoshtha which is again found on either wing of the front eastern wall on either side of the shrine entrance. +","इसी प्रकार मंडप की दो पाश्चवर्ती दीवारों में पाँच उभार हार तत्वों के अनुरूप हैं जिसमें से हर दिशा में मध्यवर्ती एक देवकोष्ठ है जो पुनः मंदिर प्रवेश के दोनों और सामने की पूर्वी दीवार के दोनों खंडों पर प्राप्य है। +","isi prkar mndap ki do relieved five times panch ubhar har tatvon ke anuroop hain jismen se har disha men madhyavarti ek devkoshth hai jo puna mndir prvesh ke donon aur samne ki poorvi divar ke donon khndon par prapy hai. +",8,1 +"The Weights and Measures unit in the Ministry of Consumer Affairs, Food and Public Distribution is the nodal agency for all activities relating to the subject. +","नागरिक आपूर्ति और उपभोक्ता मामले तथा सार्वजनिक वितरण मंञालय में माप-तोल निदेशालय इस विषय से संबंधित सभी गतिविधियों को देखने वाली प्रमुख एजेंसी हैं। +","nagrik aapoorti aur upbhokta mamle tatha sarvajnik vitaran weights and measures nideshalay is vishay se snbndhit sabhi gatividhiyon ko dekhne vali prmukh ejensi hain. +",5,4 +"Please confirm whether Is duly sanctioned or not? +","प्राण विधिवत मंजूर किया हुआ है-पुष्टि भेजें। +","confirm vidhivat mnjoor kiya huaa hai-pushti bhejen. +",5,7 +"Recognizing this mantra of statecraft, Karnataka pursues the deepening of bond between the government and the governed. +","शासनकला के इस मंत्र को पहचानते हुए, कर्नाटक द्वारा शासन और शासित के बीच संबंधों को घनिष्ठ बनाने का प्रयास किया जा रहा है। +","shasanakla ke is mntr ko pahchante hue, karnatak dvara shasan aur shasit ke bich snbndhon ko ghanishth banane ka pryas kiya ja raha hai. +",9,2 +"However, the international standards offer some guidelines, including the requirement Resident aliens in India are not given right to political participation, including voting rights but they are assured all other basic rights and freedoms. that every individual must have a remedy when a violation of rights is alleged. +","किंतु अंतर्राष्ट्रीय मानदंड से कुछ निर्देश मिलते हैं जिनमें यह भी शामिल है कि यदि अधिकार-हनन की शिकायत हो तो प्रत्येक व्यक्ति उसका समाधान पा सके। +","kintu international standards se kuchh nirdesh milte hain jinmen yah bhi shamil hai ki yadi adhikar-hanan ki shikayat ho to pratyek vyakti uska samadhan pa sake. +",5,6 +"So 8 is 2 times 2 times 2. +","तो 8 होता है 2 गुना 2 गुना 2 +","to 8 hota hai 2 times 2 times 2 +",10,0 +"Ever since Mamata broke away to form the Trinamool in 1997 , there has been a string of desertions from the Congress . +","ममता ने 1997 में पार्टी से अलग होकर तृकां बनाई थी तबसे पार्टी से नेताओं के जाने का सिलसिल जारी है . +","mamata ne 1997 men parti se alag hokar trinamool banaee thi tabse parti se congress ke jane ka string jari hai +",7,2 +"Repel evil by what is best; We know best what they describe. +","और बुरी बात के जवाब में ऐसी बात कहो जो निहायत अच्छी हो जो कुछ ये लोग (तुम्हारी निस्बत) बयान करते हैं उससे हम ख़ूब वाक़िफ हैं +","aur evil best ke javab men aesi best kaho jo nihayat achchhi ho jo kuchh ye log tumhari nisbat bayan karte hain usse ham oob vaiph hain +",5,4 +"Thou mayest defer (the turn of) any of them that thou pleasest, and thou mayest receive any thou pleasest: and there is no blame on thee if thou invite one whose (turn) thou hadst set aside. This were nigher to the cooling of their eyes, the prevention of their grief, and their satisfaction - that of all of them - with that which thou hast to give them: and Allah knows (all) that is in your hearts: and Allah is All - Knowing, Most Forbearing. +","इनमें से जिसको (जब) चाहो अलग कर दो और जिसको (जब तक) चाहो अपने पास रखो और जिन औरतों को तुमने अलग कर दिया था अगर फिर तुम उनके ख्वाहॉ हो तो भी तुम पर कोई मज़ाएक़ा नहीं है ये (अख़तेयार जो तुमको दिया गया है) ज़रूर इस क़ाबिल है कि तुम्हारी बीवियों की ऑंखें ठन्डी रहे और आर्जूदा ख़ातिर न हो और वो कुछ तुम उन्हें दे दो सबकी सब उस पर राज़ी रहें और जो कुछ तुम्हारे दिलों में है खुदा उसको ख़ुब जानता है और खुदा तो बड़ा वाक़िफकार बुर्दबार है +","inmen se jisko jab chaho alag kar do aur jisko jab tak chaho apne pas rakho aur jin aurton ko tumne alag kar diya tha agar phir tum unke khvah ho to bhi tum par koee mazaea nahin hai ye thou hadst set diya gaya hai zaroor is abil hai ki tumhari biviyon ki ऑnkhen thandi rahe aur aarjooda atir n ho aur vo kuchh tum unhen de do sabki sab us par razi rahen aur jo kuchh tumhare dilon men hai khuda usko ub janta hai aur khuda to bara vaiphkar burdbar hai +",7,3 +"The Indian Council of Cultural Relations carried on its role of acting as a cultural ambassador for the country. +","सांस्कृतिक सम्बन्ध भारतीय सांस्कृतिक सम्बन्ध परिषद देश के सांस्कृतिक दूत की भूमिका निभा रही है। +","cultural relations bhartiy cultural relations parishad desh ke sanskritik doot ki bhoomika nibha rahi hai. +",7,1 +"They were compelled to pay many illegal dues and cesses and were often required to perform forced labour or begar . +","उन्हें न केवल बहुत से गैरकानूनी कर और महसूल देने को मजबूर किया जाता बल्कि उनसे बेगार भी करायी जाती थी . +","unhen n keval bahut se gairkanooni kar aur mahsool compelled to pay kiya jata perform forced labour bhi karayi jati thi +",6,1 +"They said: Hast come unto us that we should serve Allah alone, and forsake what our fathers worshipped? Then bring upon us that wherewith thou threatenest us if thou art of the truthful! +","तो वह लोग कहने लगे क्या तुम हमारे पास इसलिए आए हो कि सिर्फ ख़ुदा की तो इबादत करें और जिनको हमारे बाप दादा पूजते चले आए छोड़ बैठें पस अगर तुम सच्चे हो तो जिससे तुम हमको डराते हो हमारे पास लाओ +","to vah log kahne lage kya unto hamare pas islie hast ho ki sirph uda ki to ibadat karen aur jinko hamare fathers dada poojte chale hast chhor baithen pas agar unto truthful ho to jisse unto hamko darate ho hamare pas lao +",6,1 +"SLR investments amounted to 49938 crore where as non - SLR investments stood at 60746 crore. +","एक ओर जहाँ सांविधिक चलनिधि अनुपात (एसएलआर) में निवेश की राशि 49938 करोड़ थी वहीं दूसरी ओर गैर-सांविधिक चलनिधि अनुपात में निवेश की राशि 60746 करोड़ रही. हाल +","ek or jahan sanvidhik chalnidhi anupat eselaar men nivesh ki rashi 49938 karor thi vahin doosri or gair-sanvidhik chalnidhi anupat men nivesh ki rashi 60746 karor rahi hal +",7,3 +"In this, the role of Akbar was played by Prithviraj Kapoor. +","इसमें अकबर का पात्र पृथ्वीराज कपूर ने निभाया था। +","ismen role of akbar prithviraj played by prithviraj tha. +",4,1 +"Both J. P. and Vinoba supported the war. +","जे. पी. और विनोबा दोनों ने उस युद्ध का समर्थन किया। +","je pi aur vinoba donon ne us war ka samarthan kiya. +",6,6 +"If I haven 't covered something, feel free to write a comment on +","अगर मैं कुछ शामिल नहीं किया है, पर एक टिप्पणी लिखने के लिए मुक्त महसूस करता हूँ +","agar free kuchh covered nahin kiya hai, par ek comment likhne ke lie feel free karta hoon +",6,4 +"and there did not come to them any apostle but that they used to deride him. +","और (उनकी भी यही हालत थी कि) उनके पास कोई रसूल न आया मगर उन लोगों ने उसकी हँसी ज़रुर उड़ाई +","aur unki bhi yahi halat thi ki unke pas koee apostle n aaya magar un logon ne uski hnsi zarur uraee +",8,3 +"In an irritated voice, they said, +","एक परेशान आवाज़ में, उन्होंने कहा कि, +","ek irritated voice men, unhonne kaha ki, +",9,1 +"Greek 'ouranos' for 'heaven'. Named after the planet Uranus. +","'स्वर्ग' के लिए यूनानी में 'क्वारानोस'. यूरेनस ग्रह के ऊपर नाम रखा गया +","svarg ke lie greek men kvaranos uranus planet ke oopar nam rakha gaya +",8,4 +"You do not have the permissions necessary to save the file. +","फ़ाइल सहेजने के लिए आपके पास आवश्यक अनुमति नहीं है. +","file sahejne ke lie aapke pas necessary permissions nahin hai +",8,2 +"Veer Savarkar 's Trial A number of people on the quay commenced to shout,' arretezle '. +","तट पर अनेक व्यक्ति अरेटेजेल पकड़ो... चिल्लाने लगे। +","tat par anek quay commenced pakaro chillane lage. +",6,3 +"""% s"" could not be found in the path +","""% s"" को पथ में नहीं पाया जा सका +","s ko path men nahin paya ja saka +",9,1 +"Without bridging the information gap, such disparity will persist. +","सूचना के इस अंतर को पाटे बिना ऐसी असमानता बनी रहेगी। +","information ke is gap ko pate bina aesi disparity will persist +",8,2 +"A large number of water birds visit this area. +","इस क्षेत्र में अनेकों पक्षी आते है। +","is kshetr large number birds visit number +",5,3 +"Military action had been so scattered and sporadic that our people , often leaderless and without the means of getting news from remote places , perhaps did not even have a very clear picture of what was happening to their country . +","फौजी कार्रवाई इतनी छितरी हुई और छुटपुट थी कि हमारी जनता , जिनका न कोई नेता था और न ही जिसके पास दूर-दराज के इलाकों तक संचार के कोई साधन थे , शायद स्पष्ट रूप से यह जानती तक नहीं थी कि उनके देश को क़्या हो रहा +","military action itni scattered huee aur sporadic thi ki hamari people , jinka n koee neta tha aur n hi jiske pas door-draj ke remote tak snchar ke koee means the , shayad clear roop se yah janti tak nahin thi ki unke country ko ya ho raha +",7,5 +"I shall not , however , attempt to infer that these murders must have been previously sanctioned by the prisoner ; mere inference on such a point cannot be accepted in a court of justice . +","बहरहाल , मैं यह अनुमान नहीं लगाना चाहता था कि बंदी ने पहले ही इन हत्याओं को मंजूरी दी थी या नहीं , क्योंकि न्याय की अदालत में सिर्फ ऐसे अनुमान को स्वीकार नहीं किया +","baharhal , main yah anuman nahin lagana chahta tha ki bndi ne pahle hi in attempt to infer di thi ya nahin , kyonki court of justice men sirph aese anuman ko svikar nahin kiya +",7,1 +"It was no exotic music which enthralled him. +","उन्हें विदेशी संगीत भाव-विभोर नहीं कर पाता था। +","unhen exotic music bhav-vibhor nahin kar pata tha. +",9,2 +"The amount that has been set aside to meet the possible liability / risk. +","ऐसी राशि जिसे किसी संभावित दायित्व/जोखिम की पूर्ति के लिए अलग से रख दिया गया हो। +","amount rashi jise kisi snbhavit dayitvjokhim ki poorti ke lie set se rakh diya gaya ho. +",8,0 +"Could not transfer data to window +","डाटा को खिड़की पर स्थानान्तरित किया जा सका +","data to window par transfer kiya ja saka +",8,0 +"The nation was therefore indebted to such inspired teachers. +","इसलिए देश ऐसे प्रेरित शिक्षकों का ऋणि है। +","such nation aese inspired teachers ka rini hai. +",7,1 +"It provided for mastery over Sanskrit literature to gain power of expression in Bengali, followed by acquaintance with Bengali literature and, thirdly, access to English education as was then being imparted by the Hindu College and the colleges set up by the Christian missionaries. +","ये पुस्तकें बंगला में अभिव्यक्ति की क्षमता बढ़ाने के लिए संस्कृत साहित्य पर अधिकार करके बंगला साहित्य से घनिष्ठ सम्पर्क तक और हिन्दू कालेज तथा मिशनरियों द्वारा स्थापित कालेजों में दी जाने वाली अंग्रेज़ी शिक्षा तक पहुँचाने का काम निभाने वाली थीं। +","ye pustken bngla men abhivyakti ki kshamta baane ke lie snskrit sahity par adhikar karke bngla sahity se ghanishth sampark tak aur hindoo kalej tatha mishanriyon dvara sthapit kalejon men di jane vali angrezi shiksha tak pahunchane ka kam nibhane vali thin. +",9,1 +"Persons taking sulphonylurea therapy and who have normal blood glucose values may need to reduce the sulphonylurea dose while on exercise programme. +","जिन रोगियों को सल्फोनाइलयूरिया दवाइयां दी जा रही हैं और उनका रक़्त ग़्लूकोज स्तर सामान्य है, उन्हें व्यायाम कार्यक्रम के दौरान इन दवाइयों इन दवाइयों की खुराक कम करने की आवश्यकता हो सकती +","jin persons taking sulphonylurea davaiyan di ja rahi hain aur unka blood glucose star samany hai, unhen exercise programme ke dauran in davaiyon in davaiyon ki khurak kam karne ki aavashyakta ho sakti +",6,2 +"Mark the selected messages as having been read +","चयनित संदेश पढ़े गए के रूप में चिह्नित करें +","selected messages pae ge ke roop men chihnit karen +",8,1 +"User for login if not current user. +","उपभोक्ता का नाम बताएं अगर आप वर्तमान उपभोक्ता नही है +","user ka nam bataen agar aap current user nahi hai +",9,0 +"Repayment (can be customized) Highly flexible - maximum 30 yrs. +","चुकौती (कस्टमाइज़ किया जा सकता है) बहुत अधिक फ़्लेक्सिबल – अधिकतम 30 वर्ष। +","repayment kastmaiz kiya ja sakta hai bahut highly fleksibal maximum 30 varsh. +",5,7 +"And they used to persist in the great violation, +","और बड़े गुनाह पर अड़े रहते थे +","aur great gunah par violation rahte the +",5,1 +"Microscope was used to observe the tissue. +","ऊतकों को देखने के लिए सूक्ष्मदर्शी प्रयोग किया गया +","tissue ko dekhne ke lie microscope pryog kiya gaya +",9,0 +"'The first short story of Prem Chand, Duniya ka Sabse Anmol Ratan' The Most Precious Jewel in the World, appeared in 1907. +","प्रेमचन्द के अनुसार उनकी पहली कहानी, दुनिया का सबसे अनमोल रतन, सन् 1907 में प्रकाशित हुई। +","premachand ke anusar unki short story, duniya ka sabse precious jewel, san 1907 men prkashit huee. +",7,1 +"Whether you say a thing secretly or openly, He knows the innermost secrets of your hearts. +","और तुम अपनी बात छिपकर कहो या खुल्लम खुल्ला वह तो दिल के भेदों तक से ख़ूब वाक़िफ़ है +","aur tum apni thing secretly kaho ya khullam khulla vah to dil ke bhedon tak se oob vaif hai +",8,0 +"Habitat They live near water in open tree - and shrub - grasslands. +","निवास: ये पेड़ और घास वाले खुले मैदानों में रहते हैं। +","live: ye per aur ghas vale khule maidanon live near water +",6,2 +"The magicians said: ""Moses, will you throw down or shall we be the first to throw?"" +","ग़रज़ जादूगरों ने कहा (ऐ मूसा) या तो तुम ही (अपने जादू) फेंको और या ये कि पहले जो जादू फेंके वह हम ही हों +","raz magicians ne kaha ae moosa ya to tum hi apne jadoo phenko aur ya ye ki pahle jo jadoo phenke vah ham hi hon +",9,2 +"that we should abolish this age - discriminatory word +","कि हमें इस उम्र-पक्षपाती शब्द को मिटा ही देना चाहिए +","ki hamen is word shabd ko mita hi dena chahie +",7,4 +"The peasant was shaken up and he began to emerge from his quiescent shell . +","किसान झकझोर उठा और वह अपनी खामोश झोपडियों में से निकल कर बाहर झांकने लगा . +","peasant jhakjhor utha aur vah apni quiescent shell men se nikal kar bahar jhankne laga +",7,3 +"What they will gain will be the condemnation of God, the angels, and all people, +","उन लोगों का बदला यही है कि उनपर अल्लाह और फ़रिश्तों और सारे मनुष्यों की लानत है +","un god ka badla yahi hai ki unapar allah aur angels aur sare manushyon ki condemnation hai +",6,0 +"Now We have sent down to you a Book wherein is your Remembrance; will you not understand? +","हमने तो तुम लोगों के पास वह किताब (कुरान) नाज़िल की है जिसमें तुम्हारा (भी) ज़िक्रे (ख़ैर) है तो क्या तुम लोग (इतना भी) समझते +","hamne to tum logon ke pas vah kitab kuran nazil ki hai jismen tumhara bhi zikre air hai to kya tum log itna bhi samajhte +",4,7 +"Bug Buddy is not installed. +","बग बड्डी संस्थापित नहीं है. +","bug baddi snsthapit nahin hai +",9,2 +"that 's the same thing as multiplying by +","कि से गुणा करने के रूप में एक ही बात है +","ki se multiplying karne ke roop men ek hi thing hai +",7,2 +"We saw earlier that thousands of devotees were visiting his house and that he used to spend the nights with them, singing devotional songs and speaking of Shiva. +","हम पहले देख चुके हैं कि हजारो भक़्त बसव के घर आते थे और वह भक़्तिपद गाता हुआ, शिव के बारे में बातें करता हुआ रातें उन्हीं के साथ बिताता था. +","thousands pahle dekh chuke hain ki hajaro shiva basav ke ghar house the aur vah bhatipad gata huaa , shiv ke bare men speaking karta huaa nights unhin ke sath bitata tha +",6,1 +"DNA- RNA- Protein All the aforementioned steps can be carried out in the test-tube if the building blocks , enzymes and ribosome 's are provided as well as the nucleic acid to give primary information sequence . +","डी.एन.एआर.एन.ए . प्रोटीन उपर्यु> सारी इऋयाएं एक परखनली में भी की जा सकती हैं बशर्ते इसके लिए आवशऋ-ऊण्श्छ्ष्-यक एंजाइम तथा राइबोसोम आदि पदार्थ उपलबऋ-ऊण्श्छ्ष्-ध हों.प्रारंभिक जानकारी का ऋम देने हेतु नऋ-ऊण्श्छ्ष्-यूकऋ-ऊण्श्छ्ष्-लिइक अमऋ-ऊण्श्छ्ष्-ल भी उपलबऋ-ऊण्श्छ्ष्-ध हो . +","dieneaarene protein building acid iriyaen ek parakhanli men bhi ki ja sakti hain basharte iske lie aavshri-oonshchhsh-yak sequence tatha ribosome aadi padarth upalbri-oonshchhsh-dh honprarnbhik information ka rim dene hetu nri-oonshchhsh-yookri-oonshchhsh-liik amri-oonshchhsh-l bhi upalbri-oonshchhsh-dh ho +",8,2 +"They are outstanding engineering feats. +","ये परियोजनाएं इंजीनियरों के अनूठे कारनामे हैं। +","ye pariyojnaen injiniyron ke anoothe karname hain. +",7,3 +"It is sensible to approach the trader first . +","पहले व्यापारी से संपर्क करना बुद्घिमानी होगी । +","pahle approach the trader karna budghimani hogi . +",8,0 +"Ice bag is used for the application to reduce local swelling and pain +","स्थानीय सूजन तथा दर्द को कम करने हेतु बर्फ की थैली का प्रयोग किया जाता है। +","local bag tatha pain ko kam karne hetu ice ki thaili ka application kiya jata hai. +",6,1 +"The officer who is entitled with the responsibility of arbitration. +","वह अधिकारी जिसे मध्यस्थता करने की जिम्मेदारी सौंपी गयी है। +","vah officer jise arbitration karne ki responsibility saunpi gayi hai. +",8,3 +"Trap shooter Anwar Sultan 's family complains that he has grown silent and introspective . +","ट्रैप शूटर अनवर सुल्तान के परिवार की शिकायत है कि वे बेहद शांत रहने लगे हैं . +","trap shooter anavar sultan ke family ki shikayat hai ki ve behad silent rahne lage hain +",9,0 +"And We gave to Abraham, Isaac and Jacob - all [of them] We guided. And Noah, We guided before; and among his descendants, David and Solomon and Job and Joseph and Moses and Aaron. Thus do We reward the doers of good. +","और हमने इबराहीम को इसहाक़ वा याक़ूब (सा बेटा पोता) अता किया हमने सबकी हिदायत की और उनसे पहले नूह को (भी) हम ही ने हिदायत की और उन्हीं (इबराहीम) को औलाद से दाऊद व सुलेमान व अय्यूब व यूसुफ व मूसा व हारुन (सब की हमने हिदायत की) और नेकों कारों को हम ऐसा ही इल्म अता फरमाते हैं +","aur hamne ibrahim ko isha va yaoob sa beta pota ata kiya hamne sabki hidayat ki aur unse pahle nooh ko bhi ham hi ne hidayat ki aur unhin ibrahim ko aulad se daood v suleman v ayyoob v yoosuph v moosa v harun sab ki hamne hidayat ki aur nekon karon ko ham aesa hi ilm ata pharmate hain +",8,0 +"""As to these folk, - the cult they are in is (but) a fragment of a ruin, and vain is the (worship) which they practise."" +","“निश्चय ही वह लोग लगे हुए है, बरबाद होकर रहेगा। और जो कुछ ये कर रहे है सर्वथा व्यर्थ है। "" +","worship hi vah log lage hue hai, ruin hokar rahega. aur jo kuchh ye kar rahe hai sarvtha vyarth hai. +",7,1 +"Purchasing of commodities in the market is such a way that the buyers are in a position to have control over the price. +","बाजार में निहित स्वार्थों वाले व्यक्तियों द्वारा माल की इस प्रकार खरीद करना जिससे वे बाजार पर मूल्य नियन्त्रण स्थापित करने में सफल हो जाएं। +","market men nihit svarthon vale vyaktiyon dvara commodities ki is way purchasing karna jisse ve market par price control sthapit karne men saphal ho jaen. +",8,4 +"[country music plays, alarm beeping] +","[देश संगीत नाटकों, अलार्म beeping] +","country music plays, alarm beeping +",8,4 +"Uncus is any hook - shaped process or part +","अंकुश एक हुक आकारीय प्रक्रिया अथवा भाग है। +","hook ek uncus shaped process athva part hai. +",4,1 +"Nematodes are also known as nema. +","सूत्रकृमि सूत्रक या नेमा के रूप में भी जाने जाते हैं +","nematodes sootrak ya nema ke roop men bhi jane jate hain +",9,0 +"he is linking up something very creative. +","ये कुछ बेहद रचनात्मक कर रहे हैं । +","ye kuchh linking creative kar rahe hain . +",5,1 +"We have first a body supported by the physical life - force, the physical prana which courses through the whole nervous system and gives its stamp to our corporeal action, so that all is of the character of the action of a living and not an inert mechanical body. +","सबसे पहले है हमारा शरीर जिसे भौतिक प्राणशक्ति अर्थात् स्थूल प्राण धारण किये है; यह प्राण समपूर्ण स्नायुमण्डल में गति करता है और हमारे शरीर के कार्य पर अपनी छाप लगा देता हैं परिणामस्वरूप, इसके सभी कार्य किसी जड़-यान्त्रिक शरीर की नहीं, बल्कि एक सजीव की क्रिया का स्वभाव धारण किये रहते हैं। +","sabse pahle hai hamara sharir jise bhautik pranashakti arthat sthool pran dharan kiye hai yah pran sampoorn snayumandal men gati karta hai aur hamare sharir ke kary par apni chhap laga deta hain parinamasvroop, iske sabhi kary kisi jar-yantrik sharir ki nahin, balki ek sajiv ki kriya ka svbhav dharan kiye rahte hain. +",4,6 +"Harimohini came near the staircase and coughed a couple of times, but to no avail. +","हरिमोहिनी ने सीढी के पास आकर दो-तीन बार खाँसा भी, लेकिन उसका कोई असर नहीं हुआ। +","harimohini ne staircase ke pas aakar do-tin times khansa bhi , lekin uska koee avail nahin huaa. +",9,2 +"2. Parliament government is more useful watching the India's variety all category of people can be taken in ministry. +","2. भारत की विविधता को देखते हुए संसदीय शासन ज्यादा उपयोगी है इस मे देश के सभी वर्गों के लोग मंत्रि परिषद मे लिये जा सकते है +","2 india ki variety ko dekhte hue parliament government jyada useful hai is me desh ke sabhi vargon ke people mntri parishad me liye ja sakte hai +",8,1 +"Alas the woe that day for those who deny! +","तबाही है उस दिन झुठलानेवालों की +","alas hai us day deny ki +",2,1 +"I am angry with Megan because she did not invite me to her party. +","मैं मेगन से क्रुद्ध हूं क्योंकि उसने अपने पार्टी में मुझे आमंत्रित नहीं किया था। +","i megan se angry hoon kyonki usne apne party men mujhe aamntrit nahin kiya tha. +",8,0 +"In the past year Germany also expressed its willingness to tap the vast skilled manpower pool India enjoys in the area of Information Technology. +","गत वर्ष जर्मनी ने इच्छा प्रकट की कि सूचना प्रौद्योगिकी के क्षेत्र में प्रशिक्षित भारतीयों की प्रतिभा का लाभ जर्मनी उठाना चाहता है। +","past year germany ne willingness prakat ki ki information manpower ke vast men skilled bhartiyon ki prtibha ka labh germany uthana chahta hai. +",6,3 +"I think it starts household by household, under the same roof. +","मैं सोचती हूँ यह घर से शुरू होती है, एक ही छत के नीचे। +","household by household yah ghar se shuroo hoti hai, ek hi chhat ke niche. +",6,1 +"I usually get up at eight o 'clock. +","मैं आमतौर आठ बजे सोकर उठता हूँ। +","main aamtaur aath baje sokar uthta hoon. +",7,5 +"I am uncompromisingly against all destructive machinery. +","मै तमाम नाशकारी यंत्रोंका कट्टर विरोधी हूं। +","i tamam nashkari machinery kattar virodhi hoon. +",7,0 +"Our immediate aim should be to eradicate communicable diseases and control the non-communicable ones. +","हमारा तात्कालिक लक्ष्य संचारी बीमारियों का उन्मूलन तथा गैर-संचारी बीमारियों पर नियंत्रण होना चाहिए। +","ones immediate aim communicable diseases ka unmoolan tatha gair-snchari diseases par niyntran hona chahie. +",8,2 +"The Vision Statement highlighting the Perspective Plan 2015 of the Department of Ocean Development was formulated in the year 2002 stipulating the Vision, the Mission, the Mandate and the Priority Areas, to be pursued by the Department over the next decade. +","विभाग के लिए परिदृश्य परिसंकल्प 2015 को 2002 में बनाया गया था। इसमें अगले दशक के दौरान उन विभिन्न मिशनों, प्राथमिकता क्षेत्रों, दायित्वों आदि की पहचान की गई है जिन्हें विभाग प्राप्त करने का प्रयास करेगा। +","vibhag ke lie paridrishy parisnkalp 2015 ko 2002 men banaya gaya tha. ismen agle dashak ke dauran un vibhinn mishnon, priority areas, dayitvon aadi ki pahchan ki gee hai jinhen vibhag prapt karne ka pryas karega. +",8,2 +"It provided for mastery over Sanskrit literature to gain power of expression in Bengali, followed by acquaintance with Bengali literature and, thirdly, access to English education as was then being imparted by the Hindu College and the colleges set up by the Christian missionaries. +","ये पुस्तकें बंगला में अभिव्यक्ति की क्षमता बढ़ाने के लिए संस्कृत साहित्य पर अधिकार करके बंगला साहित्य से घनिष्ठ सम्पर्क तक और हिन्दू कालेज तथा मिशनरियों द्वारा स्थापित कालेजों में दी जाने वाली अंग्रेज़ी शिक्षा तक पहुँचाने का काम निभाने वाली थीं। +","ye pustken sanskrit men expression ki power baane ke lie snskrit literature par mastery karke sanskrit literature se ghanishth acquaintance tak aur hindu college tatha christian dvara sthapit kalejon men access jane vali angrezi education tak pahunchane ka kam nibhane vali thin. +",6,3 +"It will be the Kingdom of God on earth. +","वह इस धरती पर प्रभुका राज्य होगा। +","vah is earth par prbhuka kingdom god +",7,0 +"A plugin sending events to Zeitgeist +","जेटगीइस्ट में कार्यक्रम भेजने के लिए प्लगइन +","sending events karyakram bhejne ke lie plugin +",6,2 +"If a landlord uses language or physical behaviour which is threatening or violent against the tenant, the latter should consult his or her local authority or other advice centre. +","मकान मालिक ने शोर-शरबा, दंगे या फिर लैंगिक और जात पात का भाव रख कर घटिया व्यवहार किया हो । +","tenant malik ne shor-sharba, dnge ya phir laingik aur jat pat ka bhav rakh kar local authority kiya ho . +",6,2 +"- Leonardo da Vinci (1452 - 1519), Italian Artist, Composer and Scientist - +","लेओनार्दो दा विंची (१४५२-१५१९), इतालवी कलाकार, संगीतकार एवं वैज्ञानिक +","leonardo da vinci १४५२-१५१९ , italian artist , composer evn scientist +",8,4 +"Failed to write file '% s': fwrite () failed:% s'% s' +","फ़ाइल को लिखने में विफलः fwrite () विफलः% s +","fail ko likhne men file fwrite file s +",5,1 +"There is another gurudwara in Great Nicobar at Campbell Bay . +","एक अन्य गुरुद्वारा ग्रेट निकोबार के कैम्पल बे में है . +","ek any gurudwara gret nikobar ke kaimpal be men hai +",6,4 +"Split Mode (Equal Split) +","स्प्लिट मोड (बराबर स्प्लिट) +","split mode brabar split +",7,3 +"Singan, the husband of the Kuratti, now comes in search of her. +","अब कुरत्ती का पति सिंगन उसे ढुंढता हुआ आता है। +","ab kuratti ka pati singan use dhundhta huaa aata husband +",8,0 +"“ That ' s the gospel truth , ” Čepek enthusiastically agreed . +","“ आपकी बात सोलह आने सही है । ” चेपक ने उत्साहपूर्वक हामी भरी । +","aapki bat solah aane sahi hai . s chepak ne utsahpoorvak hami bhari . +",7,3 +"Time after which to automatically increase speed (secs) +","समय जिसके बाद गति को स्वतः बढ़ाना है (सेकेंड) +","samay jiske bad gati ko increase speed hai sekend +",4,3 +"With focus on Per Drop More Crop and ""Har Khet ko Pani”, coverage under Pradhan Mantri Krishi Sinchayee Yojana has been expanded. +","हर बूंद अधिक फसल तथा‘‘हर खेत को पानी’’को ध्यान में रखते हुए प्रधान मंत्री कृषि सिंचाई योजनाका कवरेज बढ़ाया गया है। +","har drop adhik crop tatha har khet ko pani ko focus men rakhte hue pradhan mantri krishi sinchaee ko coverage baaya gaya hai. +",7,3 +"If I add 2, I get 30. If I add 3, I get 31. +","तो मुझे 29 मिलता है, यदि 2 जोड़ता हूँ तो 30,3 जोड़ता हूँ तो 31. +","to i 29 milta hai , yadi 2 jorta hoon to 30,3 jorta hoon to 31 +",6,2 +"God created the heavens and the earth with the truth; surely in that is a sign to the believers. +","अल्लाह ने आकाशों और धरती को सत्य के साथ पैदा किया। निश्चय ही इसमें ईमानवालों के लिए एक बड़ी निशानी है +","created the heavens aur earth ko saty ke sath paida kiya. nishchay hi ismen eemanvalon ke lie ek bari nishani hai +",8,1 +"That however, at least as a practical force, comes in at a later stage of high perfection. +","किन्तु यह स्थिति, कम-से-कम एक व्यावहारिक शक्ति के रूप में, उच्च सिद्धि की एक बाद की अवस्था में ही प्राप्त होती है। +","kintu yah stage, kam-se-kam ek practical force ke roop men, high perfection ki ek bad ki avastha men hi prapt hoti hai. +",8,3 +"All these forms have their own specialised areas of operating and organising business activities. +","इन सभी रूपों का परिचालन एवं व्यापार कार्यकलाप आयोजित करने के विशिष्टा क्षेत्र हैं। +","in sabhi areas of operating evn organising business activities karne ke vishishta business activities +",5,0 +"Quotation is invited for purchase of note briquettes of 40 Kgs (approx) per bag in sealed cover superscribed “Quotation for Purchase of Note Briquettes” and addressed to the General Manager, Issue Department, Reserve Bank of India, Kolkata - 700001” so as to reach the office on or before 14: 00 hrs on June 24, 2015 on the following terms and conditions. +","निम्नलिखित नियमों और शर्तों पर मुहरबंद लिफाफे में, जिसके ऊपर ‘नोट ब्रिकेट्स की खरीद के लिए निविदा ‘ लिखा हो और जो महाप्रबंधक, निर्गम विभाग, भारतीय रिज़र्व बैंक, कोलकाता – 700 001 को संबोधित हो, प्रति बैग 40 किलोग्राम (लगभग) के नोट ब्रिकेट्स की खरीद के लिए कोटेशन का आमंत्रण इस तरह से किया जाता है कि यह 24 जून 2015 को 14:00 बजे अथवा उसके पूर्व कार्यालय में पहुंच जाए। +","nimnlikhit niymon aur sharton par muharbnd liphaphe men, jiske oopar not brikets ki kharid ke lie nivida likha ho aur jo mahaprbndhak, issue department, bhartiy rizarv baink, kolkata 700 001 ko snbodhit ho, prti baig 40 kilogram lagabhag ke not brikets ki kharid ke lie koteshan ka aamntran is tarah se kiya jata hai ki yah 24 joon 2015 ko 14:00 baje athva uske poorv karyalay men pahunch jae. +",5,6 +"The Act seeks to facilitate the development of these enterprises as also enhance their competitiveness. +","अधिनियम में यह भी उनकी प्रतिस्पर्धात्मकता बढ़ाने के रूप में इन उद्यमों के विकास की सुविधा के लिए करना चाहता है। +","act men yah bhi unki competitiveness baane ke roop men in enterprises ke development ki suvidha ke lie karna chahta hai. +",7,0 +"During sunset Puksi region of Shanghai- Sun is still not under the horizon but has reached the line of dense smog. +","सूर्यास्त के समय शंघाई का पुक्सी क्षेत्र अब तक सूरज अपने क्षितिज के नीचे तक नहीं डूबा है बल्कि यह धुंध (smog) की रेखा तक पहुँच गया है. +","sun ke samay region of shanghai kshetr ab tak sooraj apne kshitij ke niche tak nahin dooba hai balki yah dhundh smog ki rekha tak pahunch gaya hai +",4,5 +"The duplicitous salesman sold the sculpture to someone else even though he had promised to sell it to us. +","धोखेबाज़ बिक्रीकर्ता ने प्रतिमा हमें बेचने का वायदा करने के बावजूद उसे किसी और को बेच दी। +","duplicitous salesman ne prtima hamen bechne ka vayda karne ke bavjood use kisi aur ko bech di. +",5,6 +"And who has a better religion than he who submits himself entirely to Allah? And he is the doer of good (to others) and follows the faith of Ibrahim, the upright one, and Allah took Ibrahim as a friend. +","और दीन (धर्म) की स्पष्ट से उस व्यक्ति से अच्छा कौन हो सकता है, जिसने अपने आपको अल्लाह के आगे झुका दिया और इबराहीम के तरीक़े का अनुसरण करे, जो सबसे कटकर एक का हो गया था? अल्लाह ने इबराहीम को अपना घनिष्ठ मित्र बनाया था +","aur religion dharm ki spasht se us vyakti se achchha kaun ho sakta hai, jisne apne aapko allah ke aage jhuka diya aur ibrahim ke tarie ka anusaran kare, jo sabse katakar ek ka ho gaya tha allah ne ibrahim ko apna ghanishth mitr banaya tha +",4,6 +"Cricket has been played in India since 1721 . +","क्रिकेट का खेलभारत में क्रिकेट के खेल का आरम्भ 1721 में हुआ . +","cricket ka khelbharat men cricket ke khel ka aarambh 1721 men huaa +",4,5 +"He gone to Kerodemal College of Delhi University, where he taken Science Graduate Degree. +","उन्होंने बाद अध्ययन करने के लिए ये दिल्ली विश्वविद्यालय के किरोड़ीमल कॉलेज चले गए जहां इन्होंने विज्ञान स्नातक की उपाधि प्राप्त की। +","unhonne bad adhyayan karne ke lie ye delhi university ke kirorimal klej chale ge jahan science graduate degree ki upadhi prapt ki. +",6,4 +"Discard the current modified project? +","मौजूदा परिवर्तित परियोजना को छोड़ें? +","current modified project ko chhoren +",8,2 +"“Taste your ordeal. This is what you used to challenge. ” +","(और उनसे कहा जाएगा) अपने अज़ाब का मज़ा चखो ये वही है जिसकी तुम जल्दी मचाया करते थे +","aur unse kaha taste apne azab ka ordeal chakho ye vahi hai jiski tum jaldi machaya karte the +",8,2 +"Those whose striving goes astray in the present life, while they think that they are working good deeds. +","यो वे लोग है जिनका प्रयास सांसारिक जीवन में अकारथ गया और वे यही समझते है कि वे बहुत अच्छा कर्म कर रहे है +","deeds ve log hai present striving sansarik life men akarath gaya aur ve yahi samajhte hai ki ve bahut good karm kar rahe hai +",6,1 +"The Backward Classes Commission was marred in conspiracy from the very beginning. +","पिछड़े वर्गों का आयोग बिल्कुल प्रारंभ से ही विवादों से घिरा रहा। +","backward backward classes commission bilkul prarnbh se hi vivadon se ghira raha. +",8,2 +"Ready to create file systems and mount partitions? +","फाइलतंत्र व माउन्ट प्वाइंट्स बनाने के लिए तैयार हैं? +","file v partitions pvaints banane ke lie ready hain +",7,3 +"Whether you say a thing secretly or openly, He knows the innermost secrets of your hearts. +","और तुम अपनी बात छिपकर कहो या खुल्लम खुल्ला वह तो दिल के भेदों तक से ख़ूब वाक़िफ़ है +","aur tum apni thing hearts kaho ya khullam khulla vah to dil ke innermost tak se oob vaif hai +",6,0 +"The famous 'Chauri Chaura' and 'Meerut conspiracy' case are few cases wherein this Court delivered memorable judgments upholding the concept of liberty. +","प्रसिद्ध चौरी-चौरा तथा मेरठ षडयंत्र कुछ ऐसे मामले हैं जिनमें न्यायालय ने स्वतंत्रता की अवधारणा बनाए रखते हुए स्मरणीय निर्णय दिए। +","prsiddh chauri-chaura tatha merath shadyntr kuchh aese mamle hain jinmen nyayalay ne svtntrta ki avdharna banae rakhte hue delivered memorable judgments +",7,2 +"Wait until we are told to show the window before executing the command +","कमांड चलाने से पहले इंतजार करें जब तक कि विंडो दिखाने के लिए कहा जाए +","command chalane se pahle wait karen jab tak ki window dikhane ke lie kaha jae +",10,0 +"You may bring up to two witnesses to the hearing . +","आप अधिक से अधिक सुनवाई में दो गवाह ला सकते हैं . +","aap adhik se adhik hearing men do witnesses la sakte hain +",9,2 +"And so as these elements come together, +","और इस तरह ये सभी एक साथ होकर, +","aur is tarah ye sabhi ek sath hokar, +",9,1 +"You can expect to receive a visit from your health visitor: +","आप अपेक्षा कर सकते है कि आपका आरोग्य अधिकारी आपको मिलने के लिए आये ः | +","aap expect kar sakte hai ki health visitor expect to receive ke lie visit a +",3,3 +"I got confirmation for this post. +","मेरी इस पोस्ट पर पुष्टि हो गई है। +","meri is post par confirmation ho gee hai. +",9,0 +"The story of 'Sudas' is taken from the Rig Veda. +","सुदामा की कहानी ऋग्वेद से ली है। +","sudama ki story rig se li hai. +",7,4 +"I wonder if I could rightly call it a meeting. +","पर इसको सभा कहा भी जाए या नहीं? +","par isko meeting kaha bhi jae ya nahin +",9,2 +"Pirates of the Caribbean: Dead Man's Chest +","समुंदर के लुटेरे: मुर्दे का खज़ाना +","samundar ke lutere: dead ka khazana +",5,6 +"is an extension of the distance formula, which is really just +","दूरी फार्मूला है, जो वास्तव में सिर्फ है का विस्तार है +","distance formula hai, jo vastav men sirph hai ka extension hai +",6,1 +"So the product rules help us. +","तो उत्पाद नियम हमें मदद करते हैं। +","to product rules hamen madad karte hain. +",8,3 +"The company has subsequently moved the Supreme Court . +","उसके बाद कंपनी ने सुप्रीम कोर्ट का दरवाजा खटखटाया . +","uske bad company ne supreme court ka darvaja moved +",6,4 +"But if he was of the deniers [who were] astray, +","और अगर झुठलाने वाले गुमराहों में से है +","aur agar jhuthlane vale astray men se hai +",9,0 +"We also sent down blessed water from the heaven, wherewith We caused gardens and harvest - grain to grow, +","और हमने आसमान से बरकत वाला पानी बरसाया तो उससे बाग़ (के दरख्त) उगाए और खेती का अनाज और लम्बी लम्बी खजूरें +","aur hamne heaven se barakat vala water barsaya to usse gardens ke grain ugae aur kheti ka anaj aur lambi lambi khajooren +",8,2 +"However, in respect of factory building, plant and machinery and self fabricated machinery, vouchers to the extent of Rs. 41, 19, 260 / -, Rs. 1, 66, 64, 271 / and Rs. 1, 66, 64, 271 / respectively, could not be produced by the assessee. +","हालांकि, कारखाने के भवन, संयंत्र और मशीनरी और स्व-विरचित मशीनरी के संबंध में क्रमशः रु. ४१, १९, २६०/-, रु. १, ६६, ६४, २७१/- और रु. १, ६६, ६४, २७१/- तक के वाउचर निर्धारिती द्वारा प्रस्तुत नहीं किए जा सके. +","halanki, karkhane ke bhavan, plant and machinery aur sv-virchit machinery ke snbndh men kramsha ru ४१, १९, २६०-, ru १, ६६, ६४, २७१- aur ru १, ६६, ६४, २७१- tak ke vauchar nirdhariti dvara prastut nahin kie ja sake +",6,4 +"Payment of property tax, electricity bills and water bills of colonies and office premises bills of vendors +","कालोनियों और कार्यालय परिसरों और प्रधान कार्यालय का संपत्ति कर, बिजली के बिलों, पानी के बिलों और विक्रताओं के बिलों का भुगतान +","colonies and office parisron aur prdhan karyalay ka snpatti kar, payment of property, pani ke bilon aur vikrtaon ke bilon ka bhugtan +",7,5 +"XRC resource: Incorrect colour specification '%s' for property '%s'. +","एक्सआरसी स्रोतसाधन: गलत रंग विशिष्टता '%s' गुणधर्म '%s' के लिए। +","xrc srotsadhan : incorrect colour specification s gunadharm s ke lie. +",7,1 +"You mustn 't deceive yourself in a serious matter like this. +","लेकिन इतने बड़े महत्व के मामले में यों अपनी आँखों में धूल डालने की कोशिश न कर। +","lekin itne bare matter ke mamle men yon apni aankhon men deceive dalne ki koshish n kar. +",7,1 +"Public meetings of sympathy for me and of protest against the judgment of the High Court, were held in almost every considerable town. +","हर शहर में मेरे समर्थन में और उच्च न्यायालय के फैसले के विरोध में सार्वजनिक सभाएं हुईं. +","har shahar men mere samarthan men aur high court ke phaisle ke virodh meetings of sympathy hueen +",7,4 +"While the US urged India to begin a process of negotiation with the Kashmiri leadership, Clinton made it clear to General Pervez Musharraf that the US expected him to rein in the terrorists Pakistan was arming and training. +","जहां अमेरिका ने भारत से कश्मीरी नेतृत्व के साथ बातचीत की प्रक्रिया शुरू करने का अनुरोध किया, वहीं इंक्लटन ने परवेज़ मुशर्रफ से साफ कहा कि वे उन आतंकवादियों पर लगाम लगाएं, जिन्हें पाकिस्तान हथियार और प्रशिक्षण दे रहा है. +","jahan amerika ne bharat se kashmiri netritv ke sath batchit ki prakriya shuroo karne ka anurodh kiya, vahin inklatan ne parvez clear to general kaha ki ve un aatnkvadiyon par lagam lagaen, jinhen pakistan hathiyar aur prshikshan de raha hai +",8,0 +"It 's easy on synthetic data, yeah. +","यह हाँ पर सिंथेटिक डेटा, आसान है। +","yah yeah par synthetic data , easy hai. +",7,4 +"There are many particles in air which can harm the health of plans and animals (including humans) or can damage their eyesight. These are produced due to natural process and human activities. The particles not found in the air naturally or or more frequently or different than generic particles are called as pollutants. +","वायु में बहुत से तत्त्व होते हैं जो पौधों और पशुओं (मानव समेत) का स्वास्थ्य कर सकते हैं या नजर ख़राब कर सकते हैं यह प्राकृतिक प्रक्रियाओं तथा मानव गतिविधियों दोनों से उत्पन्न होते हैं. वायु में प्राकृतिक रूप से नहीं पाए जाने वाले तत्व या अधिक सांद्रता के साथ या सामान्य से अलग तत्वों को प्रदूषक कहा जाता है. +","air men bahut se tattv hote hain jo paudhon aur plans many particles ka health kar sakte hain ya najar rab kar sakte hain yah natural prakriyaon tatha many activities donon se utpann hote hain air men natural roop se nahin pae jane vale tatv ya adhik sandrta ke sath ya generic se different tatvon ko prdooshak kaha jata hai +",7,1 +"Danaus Umniace is another common butterfly of the plains, with black wings, marked with bluish - white streaks. +","मैदानों की दूसरी सामान्य तितली डेनॉस लिम्निएस है जिसके काले पंखों पर नीलाभ-सफेद रेखाएं होती हैं। +","maidanon ki doosri common butterfly dens limnies hai jiske kale pnkhon par nilabh-sphed rekhaen hoti hain. +",8,1 +"The game has no solution. Undo or start again. +","खेल के पास कोई हल नहीं है. वापस ले या फिर शुरू करें. +","game ke pas koee hal nahin hai vapas le ya phir start karen +",8,2 +"Your Lord knows better than you (people). He will have mercy on you or will punish you as He wills. We have not sent you to watch over them. Your Lord knows best about those in the heavens and the earth. +","तुम्हारा परवरदिगार तुम्हारे हाल से खूब वाक़िफ है अगर चाहेगा तुम पर रहम करेगा और अगर चाहेगा तुम पर अज़ाब करेगा और (ऐ रसूल) हमने तुमको कुछ उन लोगों का ज़िम्मेदार बनाकर नहीं भेजा है +","tumhara paravardigar tumhare hal se khoob vaiph hai earth better lord par raham people aur earth better lord par azab people aur ae heavens hamne tumko kuchh un logon ka zimmedar banakar nahin bheja hai +",5,3 +"In our Milky Way alone, there are 40, 000 crore stars. +","केवल हमारी आकाशगंगा में ही 40,000 करोड़ सितारे है। +","keval hamari aakashgnga men hi 40,000 crore stars hai. +",9,2 +"This called for an additional capacity of about 18 million tonnes, raising the total capacity to 43 million tonnes in 1980 - 85. +","इसका अर्थ था लगभग 180 लाख टन की अतिरिकत क्षमता इससे सन् 1980-85 में कुल क्षमता बढ़ाकर 430 लाख हो जायेगी. +","iska arth tha tonnes 180 total tan ki atirikat additional isse san 1980-85 men kul additional baakar 430 total ho jayegi +",6,2 +"Then if they deny you, [O Muhammad] - so were messengers denied before you, who brought clear proofs and written ordinances and the enlightening Scripture. +","फिर यदि वे तुम्हें झुठलाते ही रहें, तो तुमसे पहले भी कितने ही रसूल झुठलाए जा चुके है, जो खुली निशानियाँ, 'ज़बूरें' और प्रकाशमान किताब लेकर आए थे +","phir yadi ve tumhen jhuthlate hi rahen, to tumse pahle bhi kitne hi messengers denied ja chuke hai, jo brought clear, zbooren aur enlightening scripture lekar aae the +",7,1 +"Thus decision to provide following facilities to jail inmates was taken: +","अतः जेल के कारावासियों को निम्नलिखित सुविधाएं प्रदान करने का निर्णय लिया गयाः +","ata facilities to jail ko provide following facilities karne ka nirnay liya gayaa +",4,2 +"I am extremely happy that Raipur Airport has been named after the saint / philosopher and visionary Swami Vivekananda. After Kolkata, Raipur is the place Swamiji spent the largest number of years of his life. +","मुझे यह जानकर बहुत खुशी हुई है कि रायपुर हवाई अड्डे का नाम संत/दार्शनिक तथा स्वपनद्रष्टा स्वामी विवेकानंद के नाम पर रखा गया है। +","i yah janakar bahut khushi huee hai ki raipur airport adde ka nam sntdarshnik swamiji svapanadrashta swami vivekananda ke nam par place gaya number +",7,1 +"Underline color for misspelled words when using inline spelling. +","इनलाइन वर्तनी प्रयोग के दौरान गलत वर्तनी वाले शब्द रंग से रेखांकित करें. +","underline spelling pryog ke dauran galat spelling vale words color se rekhankit karen +",7,3 +"The outer circle shows what exercises they were focused on. +","ये बाहरी गोला दिखा रहा है कि किन सवालों पर उन्होंने ध्यान दिया। +","ye outer circle dikha raha hai ki kin savalon par unhonne dhyan diya. +",10,0 +"The First T-10 Tournament of the Rashtrapati Bhavan was won by Household Royals led by Meher Chand and Runners up was PBG Chargers led by Major Amit Bharadwaj. +","राष्ट्रपति भवन का पहला टी-10 टूर्नामेंट मेहरचंद के नेतृत्व में हाउस होल्ड रॉयल्स ने जीता तथा उप-विजेता टीम मेजर अमित भारद्वाज के नेतृत्व में पी बी जी चारजर्स रही। +","rashtrapati bhavan ka first ti-10 tournament meharchnd ke netritv men haus hold household ne jita chand up-vijeta tim major amit bharadwaj ke netritv men runners bi ji pbg rahi. +",7,0 +"% s,% d%% done,% s remaining +","% s,% d%% संपन्न,% s शेषशेष +","s, d snpann, s remaining +",8,2 +"Realizing the growth of embedded systems in day - to - day life and the need for trained manpower in this promising area, C - DAC has launched a Diploma in Embedded Systems Design (DESD) for Engineers in computers, electronics and IT. +","दैनिक जीवन में एंबेडेड सिस्टम एवं महत्वपूर्ण क्षेत्रों में प्रशिक्षित मानव संसाधन की बढ़ती आवश्यकता को ध्यान में रख कर सी-डैक ने कम्प्यूटर, इलेक्ट्रॉनिक्स और आइटी इंजीनियरों के लिए एंबेडेड सिस्टम डिजाइन में डिप्लोमा () पाठ्यक्रम की शुरूआत की है। +","dainik jivan men enbeded sistam evn mahatvpoorn kshetron men prshikshit manav snsadhan ki bati aavashyakta ko dhyan men rakh kar si-daik ne kampyootar, ilektrniks aur aaiti injiniyron ke lie embedded systems design men diploma pathyakram ki shurooaat ki hai. +",5,3 +"The trained phone operators can fill in your form over the telephone. +","फोन पर प्रशिक्षित आप्रेटरज़ क्लेम फार्म भी भर सकते हैं। +","telephone par trained phone operators pharm bhi bhar sakte hain. +",9,1 +"He could earn Rs. 41, 700 from sale of 275 kg. worms (at Rs. 150 / kg.) and Rs. 11, 500 from the sale of 23 q. compost at Rs. 500 / q +","उन्होंने 275 किलो कीटों के विक्रय से (150 रुपये/किलो की दर से) 41,700 रुपये कमाए तथा 500 रुपये/क्विंटल की दर से 23 क्विंटल कम्पोस्ट बेचकर 11,500 रुपये कमाए। +","unhonne 275 kilo kiton ke vikray se 150 rupyekilo ki dar se 41,700 rupye kamae tatha 500 rupyekvintal ki dar se 23 kvintal kampost bechakar 11,500 rupye kamae. +",7,3 +"Imagine all that comes with it. +","और पूलिस के साथ क्या क्या आ जाता है। +","aur poolis ke sath kya kya aa jata hai. +",9,2 +"We have created the heavens and the earth and all that is between the two in accordance with the requirements of truth and wisdom. The Hour is surely coming. So overlook [their faults] with gracious forgiveness. +","हमने तो आकाशों और धरती को और जो कुछ उनके मध्य है, सोद्देश्य पैदा किया है, और वह क़ियामत की घड़ी तो अनिवार्यतः आनेवाली है। अतः तुम भली प्रकार दरगुज़र (क्षमा) से काम लो +","hamne to heavens aur earth ko aur jo kuchh unke madhy hai , truth paida kiya hai , aur vah hour ki ghari to anivaryta aanevali hai. ata tum gracious prkar overlook forgiveness se kam requirements +",7,1 +"It administers the Urban Land (Ceiling & Regulation) Act, 1976 as well as the Urban Land (Ceiling & Regulation) Repeal Act, 1999. +","यह शहरी भूमि (उच्चितम सीमा और विनियमन), अधिनियम, 1976 तथा शहरी भूमि (उच्च तम सीमा और विनियमन) निरसन अधिनियम, 1999. का प्रशासन करता है। +","yah urban land uchchitam sima aur viniyaman, adhiniyam, 1976 tatha urban land uchch tam sima aur viniyaman repeal act, 1999 ka prshasan karta hai. +",8,1 +"going to be aligned at the center of the cell. +","कोशिका के केंद्र में पंक्ति बद्ध होंगे. +","cell ke center men pnkti baddh honge +",9,0 +"Sending a message with an empty subject line +","कोई रिक्त विषय पंक्ति के साथ एक संदेश भेजें (e) +","koee empty subject line ke sath ek message bhejen e +",9,2 +"Show the properties and metadata of the selected image +","चयनित छवि की मेटाडेटा व गुण दिखाएँ +","chaynit image ki properties v gun dikhaen +",7,0 +"what they want to learn to do. +","जो वो सीखना चाहते हैं. +","jo vo sikhna chahte hain +",8,1 +"Where there is no economic change, there the position of women remains the same. +","जहां कहीं आर्थिक स्थिति नहीं बदली है, वहां स्त्रियों का दर्जा भी अपरिवर्तनीय रहा है। +","jahan kahin economic position nahin change hai , vahan women ka darja bhi aprivartniy raha same +",6,1 +"You should pay grand rent. +","तुम्हें जमीन का भाड़ा अदा करना चाहिए। +","tumhen jamin ka rent grand karna chahie. +",5,1 +"An institution which provides academic education +","ऐसी संस्था जो शात्रीय शिक्षा उपलब्ध कराती है +","aesi institution jo academic education upalabdh karati hai +",8,3 +"But that brings me to lesson number two: +","तो इस तरह मैं अपने दूसरे सबक तक पहुँचती हूँ। +","to is tarah main apne doosre brings tak pahunchti hoon. +",3,5 +"I got up and, taking hold of his bloodstained clothes, pulled his leg out. +","मैं उठी और खून से सने उसके कपडों को पकड़ उसकी टांग ऊपर उठा आयी। +","i uthi aur khoon se bloodstained uske clothes ko pakar uski leg oopar utha aayi. +",8,3 +"It was presented to the Legislative Council in 1856 and was passed in 1860. +","इसे 1856 में विधायी परिषद के समक्ष प्रस्तुत किया गया और1860 में पारित किया गया। +","ise 1856 men legislative council ke samaksh prastut kiya gaya aur1860 men parit kiya gaya. +",7,3 +"And that 's a fun problem, and this is often kind of given as +","और वह एक मजेदार है समस्या है, और यह अक्सर के रूप में दिए गए की तरह है +","aur vah ek fun hai problem hai , aur yah aksar ke kind men die ge ki tarah hai +",5,2 +"Web Server to Predict Hub Proteins +","हब प्रोटीन की भविष्यवाणी हेतु वैब सर्वर +","hub proteins ki bhavishyvani hetu web server +",9,1 +"Mr. Vagish Shastri has bestowed scientific nature to Sanskrit Grammar. +","संस्कृत के व्याकरण को वागीश शास्त्री ने वैज्ञानिक स्वरूप प्रदान किया है। +","snskrit ke grammar ko vagish shastri ne scientific nature prdan kiya hai. +",8,1 +"Repayment (can be customized) Highly flexible - maximum 30 yrs. +","चुकौती (कस्टमाइज़ किया जा सकता है) बहुत अधिक फ़्लेक्सिबल – अधिकतम 30 वर्ष। +","repayment kastmaiz kiya ja sakta hai bahut adhik fleksibal yrs maximum flexible varsh. +",4,5 +"Ask your council about anything in the tenancy agreement you do not understand. +","यदि किरायेदारी के समझोते में कोई बात आपको समझ नहीं आती, तो आ कौंसिल को पूँछे। +","yadi kirayedari ke samjhote men koee bat aapko samajh nahin aati, to aa kaunsil ko poonchhe. +",8,2 +"The so-called philosopher king who could rise above the stereotypes of his own party . +","एक तथाकथित दार्शनिक शासक , जो अपनी पार्टी के मानदंड़ों से ऊपर है . +","ek so-called philosopher king , jo apni party ke stereotypes se oopar hai +",9,0 +"In summer he spends most of his time in the verandah and in winter he basks in the early sun bare - bodied. +","वे अकसर गमीँ के दिनों में बरामदे में और सर्दियों में सुबह की धूप में नंगे बदन बैठे मिल जाएंगे। +","ve akasar gamin ke dinon men baramde men aur sardiyon men subah ki dhoop men nnge badan baithe mil jaenge. +",8,4 +"And in that, we have to look at not only the long - term strength of the country and the society, but also we have to see the short - term needs which we simply cannot ignore. +","और ऐसा करते हुए हमें केवल समाज और देश की दीर्घकालीन मजबूत को ध्यान में रखना है बल्कि अल्पकालिक जरूरतों को भी देखना है जिनकी अनदेखी नहीं की जा सकती। +","aur aesa karte hue needs short society aur country ki long strength ko dhyan men rakhna hai balki alpkalik jaroorton ko bhi dekhna hai jinki andekhi nahin ki ja sakti. +",4,5 +"These laboratories have a total annual analyzing capacity of 1. 31 lakh samples. +","इन प्रयोगशालाओं में वर्ष में 1.31 लाख नमूनों की जांच करने की क्षमता है। +","in pryogshalaon men varsh men 131 lakh samples ki janch karne ki kshamta total +",5,3 +"yet there are over you watchers +","जबकि तुमपर निगरानी करनेवाले नियुक्त हैं +","jabki tumapar watchers karnevale niyukt hain +",7,1 +"It is He who is God in heaven, and God on earth. He is the Wise, the Knower. +","वही है जो आकाशों में भी पूज्य है और धरती में भी पूज्य है और वह तत्वदर्शी, सर्वज्ञ है +","knower hai jo aakashon men bhi heaven hai aur earth men bhi heaven hai aur vah tatvadarshi , sarvajnj hai +",4,3 +"All that wouldn 't have mattered if Bhasmasura had been a friendly, good demon. +","इन बातों का कोई मतलब न होता अगर भस्मासूर एक अच्छा राक्षस होता और सबसे मित्रता रखता। +","in baton ka koee matalab n hota agar bhasmasura ek good demon hota aur sabse friendly rakhta. +",8,1 +"The Weights and Measures unit in the Ministry of Consumer Affairs, Food and Public Distribution is the nodal agency for all activities relating to the subject. +","नागरिक आपूर्ति और उपभोक्ता मामले तथा सार्वजनिक वितरण मंञालय में माप-तोल निदेशालय इस विषय से संबंधित सभी गतिविधियों को देखने वाली प्रमुख एजेंसी हैं। +","nagrik food aur weights mamle tatha public distribution ministry men map-tol measures is subject se snbndhit sabhi gatividhiyon ko dekhne vali prmukh nodal hain. +",5,1 +"But we will come back, once again, +","लेकिन हम वापस आ गए हैं, दोबारा, +","lekin ham vapas aa ge hain, dobara, +",3,7 +"India exchanges mail with more than 217 countries by air and surface. +","भारत 217 से भी अधिक देशों के साथ स्थलीय और विमान सेवा द्वारा पत्रो का आदान-प्रदान करता है। +","india 217 se bhi adhik countries ke sath sthliy aur viman seva dvara patro ka aadan-prdan karta hai. +",8,3 +"(b) no election to either House of Parliament or to the House or either House of the Legislature of a State shall be called in question except by an election petition presented to such authority and in such manner as may be provided for by or under any law made by the appropriate Legislature. +","(ख) संसद के प्रत्येक सदन या किसी राज्य के विधान-मंडल के सदन या प्रत्येक सदन के लिए कोई निर्वाचन ऐसी निर्वाचन अर्जी पर ही प्रश्नगत किया जाएगा, जो ऐसे प्राधिकारी को और ऐसी रीति से प्रस्तुत की गई है जिसका समुचित विधान-मंडल द्वारा बनाई गई विधि द्वारा या उसके अधीन उपबंध किया जाए, अन्यथा नहीं। +","kh snsad ke pratyek sadan ya kisi rajy ke vidhan-mndal ke sadan ya pratyek sadan ke lie koee nirvachan aesi nirvachan arji par hi called in question, jo aese pradhikari ko aur aesi riti se prastut ki gee hai jiska samuchit vidhan-mndal dvara banaee gee vidhi dvara ya uske adhin upbndh kiya jae, anytha nahin. +",7,4 +"The nation was therefore indebted to such inspired teachers. +","इसलिए देश ऐसे प्रेरित शिक्षकों का ऋणि है। +","islie nation aese inspired teachers ka rini hai. +",9,1 +"SLR investments amounted to 49938 crore where as non - SLR investments stood at 60746 crore. +","एक ओर जहाँ सांविधिक चलनिधि अनुपात (एसएलआर) में निवेश की राशि 49938 करोड़ थी वहीं दूसरी ओर गैर-सांविधिक चलनिधि अनुपात में निवेश की राशि 60746 करोड़ रही. हाल +","ek or jahan sanvidhik slr non eselaar men investments ki rashi 49938 crore thi vahin doosri or gair-sanvidhik slr non men investments ki rashi 60746 crore rahi hal +",4,4 +"Any one document which provides customer information to the satisfaction of the bank will suffice +","कोई एक ऐसा दस्तावेज काफी होगा, जिसमें बैंक की संतुष्टि के अनुरूप ग्राहक सूचना हो +","koee ek aesa dastavej kaphi hoga, jismen baink ki sntushti ke anuroop grahak soochna ho +",9,1 +"Harishchandra, however, submitted that if he be given half an hour, he could do it. +","परन्तु हरिश्चन्द्र का आग्रह था कि यदि उन्हें आध घण्टा का भी समय दिया जाए तो वह उसे याद कर लेंगे। +","parantu harishchandr ka aagrah tha ki yadi unhen aadh ghanta ka bhi samay diya jae to vah use yad kar lenge. +",8,3 +"One of the historical structures in Mumbai used to be Governor 's residence. +","मुंबई में ऐतिहासिक संरचना जहां राज्यपाल निवास करते थे। +","mumbai men historical structures jahan governor residence karte the. +",5,1 +"Particulars to be furnished in respect of gratuity funds. +","उपदान निधियों की बाबत दी जाने वाली विशिष्टियां +","gratuity nidhiyon ki respect di jane vali particulars +",7,0 +"The whole film proceeds with computer graphics and animated figures. +","कंप्यूटर ग्राफिक्स और एनिमेटेड आंकड़े के साथ पूरी फिल्म आय. +","computer graphics and animated figures ke sath poori film aay +",7,3 +"The prevailing colour of this breed is black and white. +","इस नस्ल का सामान्य रंग काला और सफेद होता है. +","is breed is black colour black and white hota hai +",7,0 +"Auto Generate Assoc Accessors (Java) +","एसॉक एक्सेसर्स स्वचालित जनरेट करें (जावा) +","esk accessors auto generate karen java +",8,2 +"It is the pivot on which the political system of the country revolves . +","यह वह धुरी है , जो देश के राजनीतिक व्यवस्था की नींव है . +","yah vah pivot hai , jo country ke political system ki ninv hai +",8,1 +"Chandrashekhar himself is undecided as to what he should do. +","स्वयं चंद्रशेखर इस संदर्भ में अनिश्चित है कि उसे क्या करना चाहिए। +","svyn chandrashekhar is sndarbh men anishchit hai ki use kya karna chahie. +",9,1 +"This message does not contain the header information required for this action. +","संदेश शीर्षिका सूचना नहीं रखता है इस क्रिया के लिए जरूरी. +","message header information nahin rakhta hai is action ke lie jaroori +",8,0 +"Setting up of EIL - R & D Centre to support National Laboratories +","राष्ट्रीय प्रयोगशालाओं के सहयोग के लिए र्इ. आर्इ. एल.-आर. एण्ड डी. सेन्टर की स्थापना। +","national support national laboratories ke lie ri aari el-aar end di centre ki sthapna. +",3,1 +"Thus a binary series of numbers would be transmitted. +","इस प्रकार दिवचर श्रेणी की संख्याओं को प्रेषित किया जा सकता हैं। +","is prkar binary series of numbers ko preshit kiya ja sakta hain. +",9,1 +"Speech by The President of India,Shri Pranab Mukherjee at The National Education Day celebrations and the inauguration of 40th Jawaharlal Nehru National Science, Mathematics and Environment Exhibition for children - 2013 +","राष्ट्रीय शिक्षा दिवस समारोह तथा 40वीं जवाहरलाल नेहरू राष्ट्रीय बाल विज्ञान, गणित और पर्यावरण प्रदर्शनी - 2013 के उद्घाटन के अवसर पर भारत के राष्ट्रपति का अभिभाषण +","national education day samaroh tatha 40vin jawaharlal nehru national bal vijnjan, ganit aur paryavaran pradarshni - 2013 ke udghatan ke avasar par bharat ke rashtrapti ka abhibhashan +",8,4 +"The square aditala outer wall carries on top over its prastara four karnakutas at the corners and four salas in between over the central bays of the wall The adhishthana below is extended forward and widened to form the base of the wider square mandapa in front . +","वर्गाकार आदितल की बाहरी दीवार पर उसके प्रस्तर के ऊपर कोनों पर चार कर्णकूट और दीवार के मध्यम खंडों के ऊपर बीच में चार शाला हैं.नीचे अधिष्ठान को आगे बढ़ाकर चौड़ा कर दिया गया है , ताकि सामने एक अधिक बड़े वर्गाकार मंडकप का आधार बन सके . +","vargakar aadital ki bahri divar par uske prastar ke oopar konon par char karnkoot aur divar ke madhyam khndon ke oopar bich men char shala hainniche adhishthan ko aage baakar chaura kar diya gaya hai , taki samne ek adhik wider square mandapa ka aadhar ban sake +",3,5 +"Let not those grieve thee who rush headlong into Unbelief: Not the least harm will they do to Allah: Allah 's plan is that He will give them no portion in the Hereafter, but a severe punishment. +","और (ऐ रसूल) जो लोग कुफ़्र की (मदद) में पेश क़दमी कर जाते हैं उनकी वजह से तुम रन्ज न करो क्योंकि ये लोग ख़ुदा को कुछ ज़रर नहीं पहुँचा सकते (बल्कि) ख़ुदा तो ये चाहता है कि आख़ेरत में उनका हिस्सा न क़रार दे और उनके लिए बड़ा (सख्त) अज़ाब है +","aur ae rasool jo log kufr ki madad men pesh dmi kar jate hain unki vajah se tum ranj n karo kyonki ye log uda ko kuchh zarar nahin pahuncha sakte balki uda to ye chahta hai ki aaerat men unka hissa n rar de aur unke lie bara sakht azab hai +",4,6 +"However, the international standards offer some guidelines, including the requirement Resident aliens in India are not given right to political participation, including voting rights but they are assured all other basic rights and freedoms. that every individual must have a remedy when a violation of rights is alleged. +","किंतु अंतर्राष्ट्रीय मानदंड से कुछ निर्देश मिलते हैं जिनमें यह भी शामिल है कि यदि अधिकार-हनन की शिकायत हो तो प्रत्येक व्यक्ति उसका समाधान पा सके। +","kintu international standards se kuchh guidelines other hain india yah bhi resident hai ki yadi adhikar-hanan ki shikayat ho to pratyek individual uska samadhan rights sake. +",6,0 +"is an extension of the distance formula, which is really just +","दूरी फार्मूला है, जो वास्तव में सिर्फ है का विस्तार है +","distance formula hai , jo vastav men sirph hai ka extension hai +",7,2 +"The process of arbitration that has to be followed compulsorily as per law. +","किसी मामले में पंचनिर्णय की प्रक्रिया जो कानूनन अनिवार्य रूप से पालन करनी होगी। +","kisi mamle men process of arbitration jo kanoonan anivary roop se palan karni hogi. +",8,2 +"“ We have always supported the UDF and have a right to nominate those whom we believe will help us , ” says Monsignor Paul Kakkassery , the diocese 's spokesman . +","उनके प्रवक्ता मॉनसिग्नोर पॉल कक्कास्सेरी ने कहा भी , ' ' हमने हमेशा संलमो का समर्थन किया है.इसलिए हमें ऐसे लगों को मनोनीत करने का अधिकार है जिनके बारे में हमारा मानना है कि वे हमारी मदद करेंगे . ' ' +","unke pravakta mnsignor pl kakkasseri ne kaha bhi , hamne hamesha snlmo ka samarthan kiya haiislie hamen aese lagon ko manonit karne ka adhikar hai jinke bare men hamara manna hai ki ve hamari madad karenge +",4,7 +"And when it was said to them: Reside in this town and eat from it wherever you wish, and say, Put down from us our heavy burdens: and enter the gate making obeisance, We will forgive you your wrongs: We will give more to those who do good (to others). +","और जब उनसे कहा गया कि उस गाँव में जाकर रहो सहो और उसके मेवों से जहाँ तुम्हारा जी चाहे (शौक़ से) खाओ (पियो) और मुँह से हुतमा कहते और सजदा करते हुए दरवाजे में दाखिल हो तो हम तुम्हारी ख़ताए बख्श देगें और नेकी करने वालों को हम कुछ ज्यादा ही देगें +","aur jab unse kaha gaya ki us ganv men jakar raho saho aur uske mevon se jahan tumhara ji chahe shau se khao piyo aur munh se hutma kahte aur sajda karte hue gate making obeisance ho to ham tumhari tae bakhsh degen aur neki karne valon ko ham kuchh jyada hi degen +",6,1 +"When your gums and jawbone have healed , a crown -LRB- artificial tooth -RRB- is constructed , then screwed or cemented to the post . +","जब आपके मसूड़ों और जबड़े की हड्डी के घाव भर जाते हैं तो एक क्राउन ( नकली दाँत ) बनाकर , खंभे पर कस दिया जाता है या सीमेंट द्वारा चिपका दिया जाता है . +","jab aapke gums and jawbone ki haddi ke ghav bhar jate hain to ek kraun artificial tooth banakar , khnbhe par kas diya jata hai ya siment dvara chipka diya jata hai +",6,1 +"In the year 1985-86, the erstwhile Ministry of Welfare was bifurcated into the Department of Women and Child Development and the Department of Welfare. +","वर्ष 1985-86 में पूर्ववर्ती कल्याण मंत्रालय को महिला एवं बाल विकास विभाग तथा कल्याण विभाग में विभक्त किया गया था। +","year 1985-86 men poorvavarti kalyan mntralay ko mahila evn bal vikas vibhag tatha kalyan vibhag men vibhakt kiya gaya tha. +",10,0 +"The Pandiya King immediately fainted and died. +","पांडिय राजा उसी दम मूर्छित होकर गिर पड़े और मृत्यु ग्रस्त हो गये। +","pandiya raja usi dam moorchhit hokar gir pare aur mrityu grast ho gaye. +",8,3 +"“Before I die, I want to ... ” +","“ अपनी मृत्यु से पहले, मैं .... करना चाहता हूँ।” +","apni die se pahle, main karna chahta hoon. +",9,0 +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","actor ka allocation par nazar rakhne ke lie clip region ko sets karen +",8,2 +"He was with Washington University, St. Louis, Mo., USA from 1961 to 1971. +","वह 1961 से 1971तक अमेरिका के वाशिंगटन विश्वविद्यालय के साथ जुड़े रहे। +","vah 1961 se 1971tak amerika ke vashingatan university ke sath jure rahe. +",8,1 +"In this, the role of Akbar was played by Prithviraj Kapoor. +","इसमें अकबर का पात्र पृथ्वीराज कपूर ने निभाया था। +","ismen akbar ka patr prithviraj kapoor ne role tha. +",5,1 +"So the fact that when we tried to figure out x 's that would +","तो सच है कि जब हम बाहर एक्स कि होता यह पता लगाने की कोशिश की +","to sach hai ki jab ham bahar eks ki hota yah pata lagane ki koshish ki +",6,7 +"Delirium produced due to the action of a poison is known as toxic delirium. +","विष की क्रिया के कारण उत्पन्न चित्त विपर्यय को विषजन्य चित्त विपर्यय कहा जाता है। +","poison ki due ke karan utpann chitt viparyay ko vishajany chitt viparyay kaha jata hai. +",6,2 +"Develop Goa as the 'Export / Import Hub' and thus encourage export - oriented industries +","गोवा को ‘आयात/निर्यात हब’ के रूप में विकसित करना और इस प्रकार से निर्यात केंद्रित उद्योगों को बढावा देना। +","goa ko import aayatniryat hub ke roop men viksit karna aur is prkar se export kendrit industries ko badhava dena. +",8,0 +"“ Aren ' t you a tiny bit superstitious ? ” +","“ क्या तुम खुद बिलकुल भी अन्धविश्वासी नहीं हो ? ” +","aren tum khud bilkul bhi tiny nahin ho +",4,1 +"The following clusters have been chosen for intervention: +","इस मदद हेतु निम्नांकित समूहों को चुना गया है +","is madad hetu intervention clusters ko chuna gaya hai +",7,3 +"The benevolent aspects of treating the labour. +","जब श्रम के मानवीय पक्षों पर विचार किया जाता हो। +","jab labour ke benevolent aspects par vichar kiya jata ho. +",10,0 +"Automatic limit for rows in a join when using - safe - updates - safe - updates +","का उपयोग करते समय ज्वाइन में स्वतः पंक्ति-गणना को सीमित करे. +","ka upyog karte limit join men automatic pnkti-ganna ko simit updates +",5,0 +"In Mumbai average annual temperature, and the average annual precipitation table +","मुंबई में औसत तापमान एवं वर्षण (प्रैसिपिटेशन) की सारणी +","mumbai men average temperature evn precipitation table ki sarni +",8,2 +"II. Muslims Rejected Or will the door be shut in their face? American columnist Ralph Peters dismisses the first scenario: “Far from enjoying the prospect of taking over Europe by having babies, Europe's Muslims are living on borrowed time. … predictions of a Muslim takeover of Europe … ignore history and Europe's ineradicable viciousness.” Instead, depicting Europe as the place “that perfected genocide and ethnic cleansing,” he predicts its Muslims “will be lucky just to be deported,” and not killed. Claire Berlinski , in Menace in Europe: Why the Continent's Crisis Is America's, Too , implicitly agrees, pointing to the “ancient conflicts and patterns … now shambling out of the mists of European history ” which could well trigger violence. +","संक्षेप में पहला तर्क दर्शाता है कि मुसलमानों की सक्रियता और यूरोप की निष्क्रियता के कारण यूरोप का इस्लामीकरण होगा और अपने धिम्मी स्तर के साथ वह इस्लाम में धर्मान्तरित हो जायेगा। उच्च और निम्न धार्मिकता, उच्च और निम्न जन्म दर तथा उच्च और निम्न सास्कृतिक आत्मविश्वास के कारण यह सम्भव होगा। यूरोप एक खुला द्वार है जिसमें मुसलमान टहल रहे हैं। +","ii men first tark darshata hai ki muslims ki sakriyta aur s ki nishkriyta ke karan s ka columnist hoga aur apne dhimmi star ke sath vah history men dharmantrit ho jayega. uchch aur prospect , uchch aur janm ignore tatha uchch aur borrowed aatmvishvas ke karan yah crisis patterns s ek khula door hai jismen muslim genocide rahe takeover +",4,1 +"Just write your query on this postcard and send it to Google office via Snail Mail. +","आप अपनी पृच्छा इस पोस्टकार्ड पर लिखकर स्नेल मेल के द्वारा गूगल कार्यालय को भेज दें। +","aap apni query is postcard par likhakar snel snail ke dvara googal office ko bhej den. +",7,4 +"They all < s > are major causes of serious illness or early death; +","गंभीर एवं जानलेवा बीमारियों के प्रमुख कारण हैं। +","serious evn s bimariyon ke major karan hain. +",6,4 +"And that 's the same thing as 0. 75x. +","जैसे 1X माइनस 0.25X के जैसे लिखा और वह समान चीज़ है जैसे 0.75X +","jaise 1X mainas 025X ke jaise likha aur vah same chiz hai jaise 075X +",8,1 +"(ii) the Minister for Tuensang affairs shall deal with, and have direct access to the Governor on, all matters relating to the Tuensang district but he shall keep the Chief Minister informed about the same; +","(ii) त्युएनसांग कार्य मंत्री त्युएनसांग जिले से संबंधित सभी विषयों की बाबत कार्य करेगा और उनके संबंध में राज्यपाल के पास उसकी सीधी पहुँच होगी किंतु वह उनके संबंध में मुख्यमंत्री को जानकारी देता रहेगा; +","ii tyuensang kary mntri tyuensang jile se snbndhit sabhi vishyon ki babat kary karega aur unke snbndh men rajypal ke pas uski sidhi pahunch hogi kintu vah unke snbndh men mukhymntri ko jankari deta rahega +",4,6 +"You have made changes to this memo, but not yet saved them. +","आपने इस ज्ञापन में परिवर्तन किया है लेकिन अबतक सहेजा नहीं है. +","aapne is memo men parivartan kiya hai lekin abatak saheja nahin hai +",9,1 +"At the end of second act dialogue between Raja Sruthoson and the music composer Nanda mentions the name of Brahmadutt. +","दूसरे अंक के अंत मे राजा सुतसोम और गाथाकार नन्द की बातचीत है जिसमे भी ब्रह्रादत का उल्लेख होता है। +","doosre act ke end me raja brahmadutt aur gathakar nanda ki dialogue hai jisme bhi brahradat ka name hota second +",4,1 +"8.Volunteers for assisting disabled persons and senior citizens +","8. निःशक्त तथा वरिष्ठ नागरिकों की सहायतार्थ स्वयं सेवक। +","8 disabled tatha senior citizens ki sahaytarth svyn sevak. +",8,0 +"A bone which forms the front part of the skull housing the brain. +","एक अस्थि जो कपाल का अग्र भाग निर्मित करती है जिसमें मस्तिष्क होता है +","ek bone jo kapal ka agr forms the front hai jismen mastishk hota hai +",7,2 +"Kanta gets herself a job, but because of Madhab, she cannot consider herself 'free'. +","कांता एक नौकरी ढूंढ़ लेती है पर माधव की वजह से वह अपने को स्वतंत्र नहीं समझ पाती है। +","kanta ek naukri dhoon leti hai par madhav ki vajah se vah apne ko svtntr nahin samajh pati hai. +",8,1 +"When Gora entered Krishnadayal 's room, he found Krishnadayal lying in bed, with Anandamayi sitting nearby and gently massaging his feet. +","'>> कृष्णदयाल के कमरे में पहुँचकर गोरा ने देखा वह बिस्तर पर लेटे हुए हैं और आनन्दमयी उनके पैरों के पास बैठी पाँव सहला रही है। +","krishnadyal ke kamre men pahunchakar gora ne dekha vah bistar par lete hue hain aur aanandamyi unke pairon ke pas baithi panv sahla rahi hai. +",9,2 +"The indemnifier after performing his part of the promise has no rights against the third party and he can sue the third party only if there is an assignment in his favour. +","वचन के अपने भाग का निष्पानदन करने के पश्चामत क्षति्पूर्तिकर्ता तृतीय पक्षकार के विरूद्ध कोई अधिकार शेष नहीं रहते तथा वह तृतीय पक्षकार पर तभी मुकदमा चल सकता है जब उसके पक्ष में कोई समनुदेशन हो। +","vachan ke apne bhag ka nishpanadan karne ke pashchamat kshtipoortikarta tritiy pakshkar ke virooddh koee adhikar shesh nahin rahte tatha vah tritiy pakshkar par tabhi mukadma chal sakta hai jab uske paksh men koee samnudeshan ho. +",7,4 +"Reminds you when you forgot to add an attachment to a mail message. +","आपको याद दिलाता है जब आप डाक संदेश के लिए एक संलग्नक जोड़ना भूल गए. +","aapko yad dilata hai jab aap mail message ke lie ek forgot to add ge +",6,3 +"All the sadhaks are one in the Mother; all meditate in the presence of the Mother. +","सभी श्री मां की उपस्थिति में ध्यान करते हैं। +","sabhi shri mother ki presence men meditate karte hain. +",9,2 +"PRESIDENT OF INDIA TO INAUGURATE AN INTERNATIONAL CONVENTION ON HOMOEOPATHY TOMORROW, Rashtrapati Bhavan : 08.04.2016 +","भारत के राष्ट्रपति कल होमियोपैथी पर एक अंतरराष्ट्रीय अभिसमय का उद्घाटन करेंगे।, राष्ट्रपति भवन : 08.04.2016 +","president of india kal homiyopaithi par ek international convention ka udghatan karenge., president bhavan : 08042016 +",8,3 +"But those who deny Our messages will be seized by nemesis for being disobedient. +","रहे वे लोग, जिन्होंने हमारी आयतों को झुठलाया, उन्हें यातना पहुँचकर रहेगी, क्योंकि वे अवज्ञा करते रहे है +","rahe ve log , jinhonne hamari messages ko jhuthlaya , unhen yatna pahunchakar rahegi , kyonki ve avajnja karte rahe hai +",7,3 +"A complaint was also made about the delay in the Industrial Relations Bill. +","औद्योगिक सम्बंध विधेयक में देरी की भी एक शिकायत मिली है। +","industrial relations bill men deri ki bhi ek shikayat mili hai. +",9,1 +"Sales costs: Product inventory, raw materials, manufacturing equipment +","बिक्री लागतः उत्पाद सूची, कच्चा माल, निर्माण उपकरण +","product lagta product inventory, raw materials, manufacturing equipment +",4,3 +"Colostrum, which is the first yellowish secretion from the breast, is full of substances that protect the baby from getting an infection; it 's almost like a vaccine. +","स्तन से निकलनेवाला पीले रंग का द्रव, जिसे कोलोस्ट्रम कहते हैं, शिशु को संक्रमण से बचाने और उसकी प्रतिरोधक क्षमता को मजबूत करने का सबसे अच्छा उपाय है। यह एक टीका है। +","stan se nikalnevala pile rng ka drav, jise kolostram kahte hain, shishu ko snkraman se bachane aur uski prtirodhak kshamta ko majboot karne ka sabse achchha upay hai. yah ek tika hai. +",7,4 +"Nature is to the Divine Self as character is to the human self. ” +","जिस प्रकार चरित्र मनुष्य के लिए होता है, उसी प्रकार दैवी आत्मा के लिए प्रकृति है. ” +","jis prkar character human ke lie hota hai, usi prkar divine aatma ke lie prkriti hai +",9,2 +"Sallow refers to sickly yellowish complexion. +","पाण्डुवर्ण या पीतवर्ण पीलेपन को निर्दिष्ट करता है. +","panduvarn ya pitavarn pilepan ko refers karta hai +",8,4 +"The place you go while you are staring at a computer that is processing something very slowly. +","वह स्थान जहाँ आप एक कंप्यूटर को घूर रहे हैं जबकि वह कंप्यूटर बहुत धीरे-धीरे कुछ प्रोसेसिंग कर रहा है। +","vah place jahan aap ek computer ko ghoor rahe hain jabki vah computer bahut dhire-dhire kuchh prosesing kar raha something +",5,1 +"The most famous ballad is about 'Desingu Rajan', of Gingee in South Arcot district, who built two fortresses and died in the 17th century, fighting against a Muslim prince. +","इस राजा ने दो सुदृढ़ गढ़ बनवाये थे और सत्रहवीं शताब्दी में मुसलमानों के विरूद्ध लड़ते हुए वह मारा गया था। +","is south ne do sudri famous banvaye the aur satrahvin century men muslim ke virooddh larte hue vah mara gaya tha. +",7,2 +"The complement of any maxterm is a minterm. +","किसी भी योगपद का पूरक एक गुणद होता है। +","kisi bhi minterm ka complement ek gunad hota hai. +",8,1 +"so that he could make coats of mail and properly measure their rings. We told him and his people to act righteously. We are Well - Aware of what you do. +","कि फँराख़ व कुशादा जिरह बनाओ और (कड़ियों के) जोड़ने में अन्दाज़े का ख्याल रखो और तुम सब के सब अच्छे (अच्छे) काम करो वो कुछ तुम लोग करते हो मैं यक़ीनन देख रहा हूँ +","ki phnra v kushada jirah banao aur kariyon ke jorne men andaze ka khyal rakho aur tum sab ke sab achchhe achchhe kam karo vo kuchh tum log karte ho main yainan dekh raha hoon +",6,4 +"Or the thought may come not as silent perception but as speech self - born out of the truth and complete in its own right and carrying in itself its own vision and knowledge. +","अथवा विचार एक मौन अनुभव के रूप में नहीं बल्कि एक ऐसी वाणी के रूप में प्रकट हो सकता है जो सत्य में से स्वयमेव जन्म लेती है और अपने निज अधिकार के बल पर ही पूर्ण होती है और अपना अन्तर्दर्शन और ज्ञान अपने ही अन्दर धारण किये होती है। +","athva vichar ek maun truth and complete men nahin balki ek aesi vani ke roop men prakat ho sakta hai jo saty men se svaymev janm leti hai aur apne nij adhikar ke bal par hi poorn hoti hai aur apna antardarshan aur jnjan apne hi andar dharan kiye hoti hai. +",8,0 +"Could not transfer data to window +","डाटा को खिड़की पर स्थानान्तरित किया जा सका +","data ko khirki par sthanantrit kiya ja saka +",8,1 +"a Messenger from Allah, reciting from Purified Scrolls; +","(यानि) ख़ुदा के रसूल जो पाक औराक़ पढ़ते हैं (आए और) +","yani uda ke messenger jo reciting from purified hain aae aur +",5,2 +"and there's been a lot of talk about how life-changing this conference is +","और बहुत बातें हो रहीं हैं कि यह कांफ्रेंस कितनी असाधारण है, कायापलट कर देती है, +","aur bahut lot ho rahin hain ki yah conference kitni asadharan hai , kayapalat kar deti hai , +",7,0 +"that 's the same thing as multiplying by +","कि से गुणा करने के रूप में एक ही बात है +","ki se multiplying karne ke roop men ek hi same hai +",5,1 +"Nominal check of the attendance is advisable. +","उपस्थिति की नाममात्र जांच उचित है। +","attendance ki nominal check uchit check +",6,5 +"So just to remind ourselves, 5 and 5 / 8 is the exact same thing +","तो खुद को याद दिलाने के लिए, 5 और 5/8 बिल्कुल एक ही +","to khud ko yad dilane ke lie, 5 aur 58 exact ek hi +",5,5 +"This is necessary if we have to reach the goal of creating a hunger - free society by doubling our food production in the next ten years. +","यह जरूरी है क्योंकि अगले 10 वर्षों में समाज से भुखमरी दूर करने के लिए खाद्य-उत्पादन दुगुना करना होगा। +","yah jaroori hai kyonki agle 10 varshon men samaj se bhukhamri door karne ke lie food production karna hoga. +",9,0 +"Lamas practice dance, sing and play on pipes and horns. Many Lamas get religious training here. +","यहां लामा नृत्य, गीत गायन और नाटकों में पाइपों तथा सींगों का इस्तेमाल करते हैं। अनेक लामा यहां धार्मिक प्रशिक्षण प्राप्त करते हैं। +","yahan lama nrity, git gayan aur natkon men pipes and horns ka istemal karte hain. anek lama yahan dharmik prshikshan prapt karte hain. +",8,1 +"When Gora entered Krishnadayal 's room, he found Krishnadayal lying in bed, with Anandamayi sitting nearby and gently massaging his feet. +","'>> कृष्णदयाल के कमरे में पहुँचकर गोरा ने देखा वह बिस्तर पर लेटे हुए हैं और आनन्दमयी उनके पैरों के पास बैठी पाँव सहला रही है। +","krishnadayal ke room men pahunchakar gora ne dekha vah bed par lying hue hain aur aanandamyi unke feet ke pas baithi panv sahla rahi hai. +",8,3 +"when the earth shall be rocked +","जब धरती थरथराकर काँप उठेगी; +","jab earth tharathrakar kanp uthegi +",10,0 +"There are cases in which the constituencies are more than 200 miles away from Lucknow. +","ऐसे भी निर्वाचन-क्षेत्र हैं, जो लखनऊसे दो सौ मीलसे भी ज्यादा दूर हैं। +","aese bhi constituencies hain, jo lakhnoose do sau milse bhi jyada door cases +",8,0 +"Nearest - neighbor interpolation is an algorithm is used to map a screen pixel to the corresponding point on the texture map. +","निकटतम पड़ोसी-प्रक्षेप, एक कलन विधि (एल्गोरिथ्म) होती है, जो स्क्रीन के पिक्सेल को प्रतिचित्रण पर बिंदु के अनुरूप प्रतिचित्रतित करती है। +","nearest parosi-prakshep , ek algorithm vidhi map hoti hai , jo screen ke pixel ko prtichitran par point ke corresponding texture karti hai. +",9,2 +"Why welding and why not computers? +","झाल लगाना की क्यों, कंप्यूटर क्यों नहीं? +","welding lagana ki kyon, computers kyon nahin +",8,1 +"as well as to applied science +","साथ ही साथ व्यावहारिक विज्ञानं दोनों को लाभ थे | +","sath hi sath applied science donon ko labh the +",9,1 +"Without bridging the information gap, such disparity will persist. Of course, thanks to modern communication system, the asymmetry in information access is slowly getting eroded. +","सूचना के इस अंतर को पाटे बिना ऐसी असमानता बनी रहेगी। वास्तव में आधुनिक संचार प्रणाली का धन्यवाद, जिससे सूचना तक पहुंच में यह असंतुलन धीरे-धीरे समाप्त हो रहा है। +","soochna ke is antar ko pate bina aesi asmanta bani rahegi. vastav men modern communication system ka dhanyvad, jisse soochna tak pahunch men yah asntulan dhire-dhire samapt ho raha hai. +",9,1 +"We have not appointed any one but angels as keepers of Hell, and their number that We have fixed is to make it a means of contention for disbelievers, so that those who were given the Book may be certain, and the faith of the believers may have greater increase, and the people of the Book and believers may not be deceived, and the sceptics and infidels may say: ""What does God mean by this parable?"" That is how God leads whosoever He will astray, and guides whosoever He will. None knows the armies of your Lord save Him self. This is no more than reminder for mankind. +","और हमने जहन्नुम का निगेहबान तो बस फरिश्तों को बनाया है और उनका ये शुमार भी काफिरों की आज़माइश के लिए मुक़र्रर किया ताकि अहले किताब (फौरन) यक़ीन कर लें और मोमिनो का ईमान और ज्यादा हो और अहले किताब और मोमिनीन (किसी तरह) शक़ न करें और जिन लोगों के दिल में (निफ़ाक का) मर्ज़ है (वह) और काफिर लोग कह बैठे कि इस मसल (के बयान करने) से ख़ुदा का क्या मतलब है यूँ ख़ुदा जिसे चाहता है गुमराही में छोड़ देता है और जिसे चाहता है हिदायत करता है और तुम्हारे परवरदिगार के लशकरों को उसके सिवा कोई नहीं जानता और ये तो आदमियों के लिए बस नसीहत है +","aur hamne hell ka keepers to means pharishton ko banaya hai aur unka ye number bhi infidels ki contention ke lie murrar kiya taki ahle book phauran greater kar guides aur increase ka eeman aur jyada ho aur ahle book aur mominin kisi tarah sha n karen aur jin logon ke dil men parable ka marz hai vah aur kaphir people kah baithe ki is sceptics ke bayan karne se uda ka kya matalab hai yoon uda jise chahta hai gumrahi men chhor deta hai aur jise chahta hai hidayat karta hai aur tumhare paravardigar ke armies ko uske siva koee nahin janta aur ye to aadmiyon ke lie means nasihat hai +",7,3 +"The President said that Legislative Assembly is the master of Executive in matters of taxation and finance. +","राष्ट्रपति ने कहा कि विधान सभा करारोपण तथा वित्त के मामले में कार्यपालिका की स्वामी है। +","president ne kaha ki legislative assembly taxation tatha finance ke mamle men executive ki master hai. +",9,0 +"From 1998 - 99, various poverty alleviation and employment generation programmes are grouped under two broad categories of: +","वर्ष 1998-99 से चलने वाले कई तरह के गरीबी उन्मूलन तथा रोजगार सृजन कार्यक्रमों को व्यापक रूप से दो वर्गों में रखे गए हैंः +","varsh 1998-99 se chalne vale kee tarah ke poverty alleviation tatha employment generation programmes ko vyapak roop se do vargon men rakhe ge haina +",8,0 +"_ Apply filters to new messages in Inbox on this server +","इस सर्वर पर इनबाक्स में नए संदेश के लिए फिल्टर चलाएँ (_ A) +","is server par inbox apply ne messages ke lie filters chalaen _ A +",7,1 +"He stuck to the practices he had learnt during training. +","उन्होंने प्रशिक्षण के दौरान सीखी पद्धतियों का ही पालन किया। +","unhonne training ke dauran sikhi paddhtiyon ka hi palan kiya. +",9,1 +"When they came to a gutter filled with rain water, they plunged in, scream - ing with laughter. +","छोकरे जब बारिश के पानी से भरा नाली के निकट पहुंचे, तो उसी में कूद पड़े और धमाचौकड़ी मचाते हुए हो-हल्ला करने लगे। +","chhokre jab barish ke filled with rain nali ke nikat pahunche, to usi men kood pare aur dhamachaukari machate hue ho-halla karne lage. +",7,1 +"(That) We sent it down one night of blessing - - so that We could warn - - +","निस्संदेह हमने उसे एक बरकत भरी रात में अवतरित किया है।-निश्चय ही हम सावधान करनेवाले है।- +","nissndeh hamne use ek barakat bhari night men avatrit kiya hai.-nishchay hi ham savdhan karnevale hai.- +",5,4 +"Could not rename '% s' to% s:% s +","`% s 'का% s यह पुनर्नामकरण नहीं कर सकाः% s +","s ka s yah rename nahin kar sakaa s +",8,0 +"You must enable remote connections if you want to use Chromoting to access this computer. +","यदि आप इस कंप्यूटर पर पहुंचने के लिए Chromoting का उपयोग करना चाहते हैं, तो आपको दूरस्थ कनेक्शन सक्षम करने होंगे. +","yadi aap is access par pahunchne ke lie Chromoting ka upyog karna chahte hain , to aapko remote connections saksham karne honge +",7,1 +"It is divided into six parts , five of which deal with cosmic matters . +","यह छह भागों में विभक़्त है जिनमें से पांच में ब्रह्मांड से संबंधित विषयों पर चर्चा की गई है . +","yah chhah parts men deal hai jinmen se panch men cosmic se snbndhit matters par charcha ki gee hai +",6,4 +"than about capturing a moment really. +","बजाय सच में एक पल को खींचने के | +","bajay sach men ek moment ko khinchne ke +",9,1 +"And she conceived him, and she withdrew with him to a far place. +","फिर उसे उस (बच्चे) का गर्भ रह गया और वह उसे लिए हुए एक दूर के स्थान पर अलग चली गई। +","phir use us bachche ka garbh rah gaya aur vah use lie hue ek door ke place par alag chali gee. +",8,4 +"They said: ""We swear by Allah! Indeed Allah has chosen you in preference to us and we were truly guilty."" +","उन्होंने कहा, ""अल्लाह की क़सम! आपको अल्लाह ने हमारे मुक़ाबले में पसन्द किया और निश्चय ही चूक तो हमसे हुई।"" +","unhonne kaha, allah ki swear! aapko allah ne hamare muable men pasand kiya aur nishchay hi chook to hamse chosen +",8,1 +"The type ""% s"" is not a valid type. +","% s नियमित फाइल नहीं है +","type niymit phail nahin hai +",7,1 +"he had spent most time in racing, wrestling and hunting and he never had interest in studies +","उसका काफी समय आखेट दौड़ व द्वंद्व कुश्ती आदि में बीता तथा शिक्षा में उसकी रुचि नहीं रही। +","uska kaphi time in racing v dvndv kushti aadi men bita tatha shiksha men uski ruchi nahin rahi. +",7,1 +"A pangolin 's territory is around 3 square miles 8 sq km. +","पैंगोलिन का क्षेत्र लगभग आठ वर्ग किलोमीटर का होता है। +","paingolin ka kshetr lagabhag aath varg miles ka hota hai. +",4,7 +"Brittani officer has captured the jewelery and her husband 's debt has been accounted from the queens yearly maintenance. +","ब्रितानी अधिकारियों ने राज्य का खजाना ज़ब्त कर लिया और उनके पति के कर्ज़ को रानी के सालाना खर्च में से काट लिया गया। +","britani officer ne rajy ka khajana zabt kar liya aur unke husband ke debt ko rani ke salana maintenance men se jewelery liya gaya. +",6,2 +"But nay! I swear by the sunset redness, +","तो मुझे शाम की मुर्ख़ी की क़सम +","to mujhe sunset ki muri ki swear +",7,5 +"And what can make you know what is the Striking Calamity? +","और तुम्हें क्या मालूम कि क्या है वह खड़खड़ानेवाली? +","aur tumhen kya maloom ki kya hai vah kharakharanevali +",10,0 +"A component of a chemical compound which is essential. +","किसी रासायनिक यौगिक का घटक जो आवश्यक होता है. +","kisi chemical compound ka component jo essential hota hai +",7,5 +"(Unbelievers) whose eyes had been under a veil from remembrance of Me, and who had been unable even to hear. +","जिनके नेत्र मेरी अनुस्मृति की ओर से परदे में थे और जो कुछ सुन भी नहीं सकते थे +","jinke eyes meri remembrance ki or se veil men the aur jo kuchh unable bhi nahin sakte the +",5,3 +"Central Excise, Customs and Service Tax, Patna +","केन्द्रीय उत्पाद शुल्क, सीमा शुल्क और सेवा कर, पटना +","central excise tax, sima customs and service kar, patna +",7,0 +"City Civic Centre Locations (External website that opens in a new window) +","शहर नागरिक केंद्र स्थान (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","shahar civic centre locations bahri vebsait jo ek nee vindon website that opens +",5,4 +"Advanced training of intelligence officers is conducted by the Intelligence Bureau. +","गुप्तचर अधिकारियों के उन्नत प्रशिक्षण का काम गुप्तचर विभाग द्वारा किया जाता है। +","intelligence officers ke unnat training of intelligence intelligence bureau dvara kiya jata hai. +",4,6 +"writing in the 1850s about how the railroad, the steam ship, +","कैसे रेल, स्टीमर के बारे में 1850 के दशक में लेखन, +","kaise rel , stimar ke bare men 1850 ke dashak men railroad , +",7,1 +"Leaving them like chewed - up leaves. +","अन्ततः उन्हें ऐसा कर दिया, जैसे खाने का भूसा हो +","antta unhen aesa kar diya, jaise khane ka chewed ho +",3,5 +"Where the front skin join with the area under the penis. called as joint of front s4kin (farunulum). +","शिश्न के निचली ओर का वह क्षेत्र जहाँ से अग्रत्वचा जुड़ी रहती है अग्रत्वचा का बंध (फेरुनुलम) कहलाता है। +","penis ke nichli or ka vah kshetr jahan se front skin join hai agratvcha ka join pherunulam kahlata hai. +",7,5 +"In the moulded type a full human or animal figure is fashioned. +","ढलाई में मानव और पशुओं की पूरी आकृति बनायी जाती है। +","dhalaee men human or animal ki poori aakriti banayi jati hai. +",10,0 +"Radhakrishnan returned to the Madras Presidency College in 1911. +","मद्रास प्रेसीडेंसी कॉलेज में राधाकृष्णन 1911 में लौटे। +","madras presidency college men radhakrishnan 1911 men laute. +",10,0 +"“ Look ! ” he said . +","“ देखो ! ” उसने कहा । +","dekho ! s usne kaha . +",9,2 +"In kwick cricket the bowlers don't wait for the batsmen to be ready. This one has been designed for youngsters as it is more tiring and is usually presented during P.E. classes in English schools. Another change has been made to the games to make it faster, which is 'tip and run'. 'Tipty' run, 'Tipsy' run or 'Tippy-Go' rule. In this when the ball touches the bat, the batsman has to take a run even if he has not touched the ball deliberately. This rule can only be observed during instant play. In this instead of the batsman slowing the ball by his touch increases the speed. +","क्विक क्रिकेट (Kwik cricket)में गेंदबाज बल्लेबाज के तैयार होने का इन्तजार नहीं करता है यह अधिक थका देने वाला खेल बच्चों के लिए डिज़ाइन किया गया है. यह अक्सर अंग्रेजी स्कूलों में पी ई पाठ के लिए प्रयुक्त किया जाता है. इस खेल की गति बढ़ाने के लिए इसमें एक और संशोधन किया गया है ये हैं टिप और रन “टिप्टी” रन” टिप्सी रन या टिप्पी- गो नियम.इसमें जब गेंद बल्ले को छूती है तो बल्लेबाज को भागना ही होता है चाहे यह स्पर्श जान बूझ कर न किया गया हो या बहुत ही कम हो. यह नियम तत्काल खेल में ही देखा जा सकता है इसमें बल्लेबाज के द्वारा गेंद को रोकने के अधिकार को हटा कर इसकी गति को बढ़ने की कोशिश की गई है. +","kvik kriket Kwik cricketmen gendbaj ballebaj ke taiyar hone ka intjar nahin karta hai yah adhik thaka dene vala khel bachchon ke lie dizain kiya gaya hai yah aksar angreji skoolon men pi ee path ke lie pryukt kiya jata hai is khel ki gati baane ke lie ismen ek aur snshodhan kiya gaya hai ye hain tip aur ran tipti ran tipsi ran ya tippi- go niyamismen jab gend balle ko chhooti hai to ballebaj ko bhagna hi hota hai chahe yah sparsh jan boojh kar n kiya gaya ho ya bahut hi kam ho yah niyam tatkal khel men hi dekha ja sakta hai ismen ballebaj ke dvara gend ko rokne ke adhikar ko hata kar iski gati ko bane ki koshish ki gee hai +",8,3 +"A new idea with another turn of the logical machine revolts against it and breaks up the machinery, but A new idea with another turn of the logical machine revolts against it and breaks up the machinery, +","तब एक नया विचार इस तर्कसंगत यन्त्र की एक और प्रवृति को लिए हुए उसके विरुद्ध खड़ा हो जाता है और उस यन्त्र को तोड़-फोड़ देता है, किन्तु वह उसे इसलिए तो तोड़ता है कि अन्त में वह उसके स्थान पर एक दूसरी यांत्रिक प्रणाली की, किसी अन्य मत सिद्धान्त या आचार-पद्धति की स्थापना कर सके। +","tab ek naya vichar is tarksngat yantr ki ek aur prvriti ko lie hue uske viruddh khara ho jata hai aur us yantr ko tor-phor deta hai, kintu vah use islie to torta hai ki ant men vah uske sthan par ek doosri yantrik prnali ki, kisi any mat siddhant ya aachar-paddhti ki sthapna kar sake. +",7,3 +"he is linking up something very creative. +","ये कुछ बेहद रचनात्मक कर रहे हैं । +","ye kuchh behad creative kar rahe hain something +",8,2 +"Mangle From: / To: headers in replies to replies +","जवाब के जवाब में द्वाराः/कोः हेडर्स बिगड़े +","replies ke replies men headers in replies +",6,3 +"We have tried to correct them. +","हमने उन्हें सुधारने की कोशिश की है। +","hamne unhen correct ki koshish ki hai. +",8,2 +"I think we have a problem in Mexico. +","मैं सोचता हूँ कि हमारे पास मेक्सिको में समस्या है | +","i sochta hoon ki hamare pas mexico men problem hai +",7,1 +"Please circulate deposit book to new members. +","जमा हुंडी नये लोगों को वितरित कर दो। +","deposit hundi new logon ko vitrit kar do. +",8,0 +"Error verifying signature:% s +","हस्ताक्षर प्रमाणित करते समय त्रुटिः% s +","verifying signature karte samay error s +",9,2 +"and there are any disturbances, you know what happens. +","और कुछ गड़बड़ी हो, आप जानते क्या होता है | +","aur kuchh disturbances ho , aap jante kya hota hai +",9,2 +"Long term loan for agricultural appliances is admissible. +","कृषि उपकरण के लिए दीर्घकालीन ऋण उपलब्ध हैं। +","agricultural appliances ke lie long loan upalabdh hain. +",8,2 +"Renicapsule refers to the capsule in the kidney. +","अधिवृक्क-पिण्ड वृक्क में संपुटक को निर्दिष्ट करता है. +","adhikidney-pind kidney men capsule ko nirdisht karta hai +",8,1 +"It was a frightening bet . +","बड़ी भयावह बाजी थी यह । +","bari bhayavah bet thi yah . +",4,7 +"This is not the case . +","लेकिन यह बात नही है . +","lekin yah bat nahi hai +",10,0 +"(a) no deduction shall be admissible under this section to the amalgamating or the demerged company for the previous year in which the amalgamation or the demerger takes place; and +","(क) समामेलक या अविलयित कंपनी को, उस पूर्ववर्ष के लिए, जिसमें समामेलन या अविलयन होता है, इस धारा के अधीन कोर्इ कटौती अनुज्ञेय नहीं होगी; और +","k samamelak ya demerged company ko, us poorvavarsh ke lie, jismen samamelan ya avilayan hota hai, is dhara ke adhin kori katauti anujnjey nahin hogi aur +",7,6 +"But we know we're not perfect , and if you're not happy with what Social Services has done , you've got the right to complain about it . +","लेकिन हमें पता है हम परिपक्व नही हैं , और अगर आप सामाजिक सेवाएं के काम से नाराज हैं तो आपको शिकायत करने का अधिकार है | +","lekin hamen pata hai ham perfect nahi hain , aur agar aap social services ke kam se happy hain to aapko shikayat karne ka right hai +",6,1 +"Doubt that anyone charged with and tried for the 7/7 attacks would receive a fair trial: 44 percent. +","44 प्रतिशत मुसलमानों को इस बात में संशय है कि 7 जुलाई के विस्फोटों के आरोपियों पर निष्पक्ष मुकदमा चल सकेगा. +","44 percent musalmanon ko is anyone men doubt hai ki 7 julaee ke attacks ke trial par fair mukadma chal sakega +",6,3 +"I am learning for you. +","मैं आपके लिये ज्ञान/विद्या अर्जित कर रहा हूँ। +","i aapke liye jnjanvidya arjit kar raha hoon. +",6,6 +"Tansen fell ill and it was two months before he could return to the court. +","लगातार दो महिने तक वह बीमार रहा। +","lagatar do months tak vah bimar raha. +",8,0 +"Nanalal was not merely a new signature but a new voice in modern Gujarati poetry. +","नानालाल गुजराती आधुनिक काव्य में एक नये हस्ताक्षर ही नहीं, एक नये स्वर भी थे। +","modern gujarati poetry kavy men ek naye hastakshar hi nahin, ek naye svar bhi the. +",4,1 +"The cumulative size of all web databases in the security origin +","सुरक्षा उद्गम में सभी वेब डेटाबेस के संचयी आकार +","security origin men sabhi web databases ke cumulative size +",8,4 +"As I knew about it I instantly asked with great curiosity, I had an Indian friend. +","जैसे ही मुझकों इसका पता चला, मैंने तुरंत ही बड़ी जिज्ञासा के साथ उनसे पूछा, मेरे एक हिंदुस्तानी मित्र थे। +","jaise hi i iska pata indian , mainne turnt hi great curiosity ke sath unse poochha , mere ek hindustani friend the. +",6,3 +"I am concerned with matters of consequence. +","मैं … मैं गंभीर व्यक्ति हूँ न, मुझे बेकार की बातों से कोई दिलचस्पी नहीं। +","i i matters vyakti hoon n , mujhe bekar ki baton se koee consequence nahin. +",3,1 +"We need really to see it. And instead of looking at this, +","हमें वास्तव में इसे देखने की ज़रूरत है और इसे देखने की अपेक्षा +","hamen vastav men ise dekhne ki zaroorat hai aur ise dekhne ki apeksha +",5,8 +"then do not put me, my Lord, among the wrongdoing lot. ’ +","तो मेरे रब! मुझे उन अत्याचारी लोगों में सम्मिलित न करना। "" +","to mere rab! mujhe un wrongdoing logon lot sammilit n put +",6,4 +"This was essentially Earth. Obviously, Earth got changed +","यह अनिवार्य रूप से पृथ्वी था। जाहिर है, पृथ्वी बदला मिल गया +","yah anivary roop se earth tha. jahir hai , earth badla mil gaya +",6,1 +"The higher education sector is witnessing sweeping changes the world over. +","उच्च शिक्षा क्षेत्र में पूरे विश्व में तीव्र बदलाव आ रहे हैं। +","higher education sector men poore vishv men tivr badlav aa rahe hain. +",8,3 +"And certainly We gave Musa the Book that they may follow a right direction. +","और हमने मूसा को किताब प्रदान की, ताकि वे लोग मार्ग पा सकें +","aur hamne moosa ko book prdan ki , taki ve log marg direction saken +",6,3 +"User for login if not current user. +","उपभोक्ता का नाम बताएं अगर आप वर्तमान उपभोक्ता नही है +","user ka nam login agar aap current user nahi hai +",8,0 +"He said, “O my son, do not relate your vision to your brothers, lest they plot and scheme against you. Satan is man 's sworn enemy. +","याक़ूब ने कहा ऐ बेटा (देखो ख़बरदार) कहीं अपना ख्वाब अपने भाईयों से न दोहराना (वरना) वह लोग तुम्हारे लिए मक्कारी की तदबीर करने लगेगें इसमें तो शक़ ही नहीं कि शैतान आदमी का खुला हुआ दुश्मन है +","yaoob ne kaha ae beta dekho bardar kahin apna khvab apne bhaeeyon se n dohrana varna vah log plot and scheme ki tadbir karne lagegen ismen to sha hi nahin ki shaitan aadmi ka khula huaa dushman hai +",4,6 +"Where there is no economic change, there the position of women remains the same. +","जहां कहीं आर्थिक स्थिति नहीं बदली है, वहां स्त्रियों का दर्जा भी अपरिवर्तनीय रहा है। +","jahan kahin aarthik sthiti nahin badli hai, vahan position of women bhi aprivartniy raha hai. +",7,1 +"Sucharita shut the kitchen door noisily and sank to the floor, bursting into sobs. +",">> सुचरिता ने धड़ाके से रसोई का दरवाज़ा बन्द कर दिया और फर्श पर बैठ गई। +","sucharita ne dharake se kitchen ka door band kar diya aur floor par sobs gee. +",7,1 +"Amritsar is famous for the Golden Temple. +","अमृतसर स्वर्ण मंदिर के लिए प्रसिद्ध है। +","amritasar golden temple ke lie prsiddh famous +",9,0 +"The main plateaus are the Baghelkhand and the Chota Nagpur. +","इस क्षेत्र के प्रमुख पठार बघेलखंड तथा छोटा नागपुर हैं। +","is kshetr ke main plateaus baghelkhand tatha chhota nagpur hain. +",9,1 +"The Congress called the plan 'preposterous'. +","कांग्रेस ने योनजा को ‘असंगत’ कहा। +","congress ne yonja ko asngat plan kaha. +",9,1 +"(c) assessment or reassessment, if any, has been made, before the date of receiving the books of account or documents or assets seized or requisitioned by the Assessing Officer having jurisdiction over such other person, such Assessing Officer shall issue the notice and assess or reassess total income of such other person of such assessment year in the manner provided in section 153A. +","(ग) निर्धारण या पुनर्निर्धारण, यदि कोर्इ हो, किया गया है, वहां ऐसा निर्धारण अधिकारी धारा 153क में उपबंधित रीति में सूचना जारी करेगा और उस निर्धारण वर्ष के लिए ऐसे अन्य व्यक्ति की कुल आय का निर्धारण या पुनर्निर्धारण करेगा। +","c assessment ya reassess , yadi kori ho , kiya gaya hai , vahan such assessment officer section 153k men upbndhit manner men notice jari karega aur us assessment year ke lie aese other person ki kul income ka assessment ya reassess karega. +",5,2 +"Shortly after taking up the job, he was married in 1912 to Shivdayee, with whom he was betrothed since infancy. +","काम पर लगने के शीघ्र बाद ही 1912 मे शिवदाई के साथ उनका विवाह हो गया, जिसके साथ जन्म से ही उनकी मँगनी हो चुकी जीवन 19 थी। +","job par lagne ke shighr bad hi 1912 me shivdaee ke sath unka vivah ho gaya , jiske sath janm se hi unki mngni ho chuki jivan infancy thi. +",6,4 +"The Ministry of Labour & Employment, Government of India, instituted the National Safety Awards (Mines) in 1983 for the contest year 1982 to promote a competitive spirit amongst mine operators for the betterment of safety standards in mines and to give due recognition to outstanding safety performance at the national level. +","श्रम और रोजगार मंत्रालय, भारत सरकार ने खानों में सुरक्षा मानकों की बेहतरी तथा राष्ट्रीय स्तर पर उल्लेखनीय सुरक्षा निष्पादन को उचित महत्त्व देने के लिए खान संचालकों में प्रतिस्पर्धा की भावना को बढ़ावा देने के लिए प्रतियोगिता वर्ष के लिए 1983 में राष्ट्रीय सुरक्षा पुरस्कार (खान) आरम्भ किए थे। +","shram aur rojgar mntralay, bharat sarkar ne khanon men suraksha mankon ki behatri tatha rashtriy star par outstanding safety performance ko give due recognition ke lie khan snchalkon men prtispardha ki bhavna ko baava dene ke lie prtiyogita varsh ke lie 1983 men national safety awards khan aarambh kie the. +",6,5 +"A sudden involuntary contraction of one or more muscle +","अचानक होने वाला एक या अधिक मांसपेशियों का संकुचन +","sudden hone vala ek ya more muscle ka involuntary +",6,2 +"We're going to go back to the moon ... 50 years later? +","हम चाँद पे फिर से जा रहे हैं - 50 साल बाद - +","ham moon pe phir se ja rahe hain - 50 years bad - +",9,0 +"Everyday, she has to get up at 4 o’clock in the morning to cook for her husband who leaves at 5 o’clock in the morning to work at the industrial unit in neighbouring Gamharia town. Earlier she could barely see what she was grinding on the pestle stone. +","प्रतिदिन, उन्हें अपने पति के लिए भोजन तैयार करने के लिए प्रातः 4 बजे उठना पड़ता है, जो पास के गम्हारिया कस्बे में एक औद्योगिक इकाई में काम करने के लिए प्रातः 5 बजे घर से निकल पड़ते हैं। +","prtidin, unhen apne pati ke lie bhojan taiyar karne ke lie prata 4 baje uthna parta hai, jo pas ke gamhariya kasbe men ek audyogik ikaee men kam karne ke lie prata 5 baje ghar se nikal parte hain. +",7,2 +"Dak Babu was absorbed in his work. +","डाक बाबू अपने काम में व्यस्त थे। +","dak babu apne kam men vyast the. +",10,0 +"where god shanker was telling the story to parvatijiof ram story there was a crow 's nest and inside the nest crow was also listenng the story +","जहाँ पर भगवान शंकर पार्वती जी को भगवान श्री राम की कथा सुना रहे थे वहाँ कागा (कौवा) का एक घोसला था और उसके भीतर बैठा कागा भी उस कथा को सुन रहा था। +","jahan par god shnkar parvti ji ko god shri ram ki story suna rahe the vahan kaga shanker ka ek ghosla tha aur uske bhitar baitha kaga bhi us story ko sun raha tha. +",7,1 +"When they are cast into it they will hear it sighing, the while it boils +","जब वे उसमें डाले जाएँगे तो उसकी दहाड़ने की भयानक आवाज़ सुनेंगे और वह प्रकोप से बिफर रही होगी। +","jab ve usmen dale jaenge to uski daharne ki bhayanak aavaz sunenge aur vah prkop se biphar rahi hogi. +",5,8 +"These were the ushnisa or turban, a pair of flywhisks, umbrella, sword, sandals, and the royal standard. +","ये थे; पगड़ी, चंवरों की जोड़ी, छतरी, खड़ग, चप्पल तथा राजसी ठाट-बाट से रहना। +","ye the turban, chnvron ki jori, umbrella, sword, chappal tatha rajsi that-bat se rahna. +",8,0 +"The company 's new project employed 2500 people, including 300 expatriates and 2200 locals. +","कम्पनी की नई परियोजना में कुल 2500 लोगों में से 300 प्रवासी थे और बाकी 2200 लोग देशी। +","company ki nee pariyojna men kul 2500 locals men se 300 expatriates the aur baki 2200 log including +",6,3 +"With the fingerprints of the man in their custody matching Chhota Rajan 's specimen prints provided by the Mumbai police, the Thai police are clear about his identity. +","थाई पुलिस अपनी हिरासत में मौजूद व्यैक्त की उंगलियों के निशान मुंबई पुलिस द्वारा भेजे गए छोटा राजन की उंगलियों के निशान से मिलने से उसकी पहचान को लेकर निश्चिंत है. +","thai police apni custody men man vyaikt ki prints ke nishan mumbai police dvara bheje ge chhota chhota ki prints ke nishan se milne se uski fingerprints ko lekar nishchint hai +",6,3 +"Lala Hardayal was building up his revolutionary Gaddar Party in America. +","उन दिनों अमेरिका में लाला हरदयाल की ‘गदर पार्टी’ एक क्रांतिकारी संगठन का रुप ले रही थी। +","un party in america lala haradyal ki gadar parti ek krantikari sngathan ka rup le rahi thi. +",8,2 +"Notify when remote emails are queued +","जब रिमोट ई-मेल क़तारबद्ध हों तो सूचित करें +","jab remote emails are queued to soochit karen +",7,1 +"I convey my special greetings to members of our Armed Forces, Para-military Forces and Internal Security Forces. +","मैं सशस्त्र बलों, अर्द्धसैनिक बलों और आंतरिक सुरक्षा बलों के सदस्यों को अपनी विशेष बधाई देता हूं। +","i armed forces , arddhsainik forces aur internal security forces ke members ko apni special greetings deta hoon. +",8,2 +"Convenient to man (giver), inconvenient to man (giver), pleasure to man (giver). +","· पुरुष (Giver) को सहूलियत ☻☻☻☻ · पुरुष (Giver) को परेशानी ☺ · पुरुष (Giver) को आनंद ☻☻☻☻ ☺ +","man Giver ko sahooliyat man Giver ko pareshani man Giver ko pleasure +",7,1 +"Unable to connect to the Internet +","इंटरनेट से कनेक्ट होने में असमर्थ +","internet se kanekt hone men unable +",7,3 +"A dvitala and hence ashtanga, or ashtavarga vimana of the same Nagara order, square from base to apex is illustrated in the incomplete Valaiyankuttai ratha facing east. +","उसी नागर श्रेणी का एक द्वितल और इसलिए अष्टांग या अष्टवर्ग, आधार से शिखर तक वर्गाकार विमान, पूर्वाभिमुख अपूर्ण वलैयांकुट्टई रथ के रूप में देखा जा सकता है। +","usi nagara shreni ka ek dvitala aur hence ashtanga ya ashtavarga , base se shikhar tak square viman , east incomplete valaiyankuttai ratha ke roop men dekha ja sakta hai. +",8,2 +"Do you call on Ba 'lan (the idol Baal) and abandon the Best Creator, +","क्या तुम 'बअत' (देवता) को पुकारते हो और सर्वोत्तम सृष्टा। को छोड़ देते हो; +","kya tum bat devta ko call ho aur sarvottam abandon ko chhor dete ho +",3,3 +"Indeed for Allah only is the kingship of the heavens and the earth; He gives life and He gives death; and other than Allah, you have neither a Protector nor any Supporter. +","इसमें तो शक़ ही नहीं कि सारे आसमान व ज़मीन की हुकूमत ख़ुदा ही के लिए ख़ास है वही (जिसे चाहे) जिलाता है और (जिसे चाहे) मारता है और तुम लोगों का ख़ुदा के सिवा न कोई सरपरस्त है न मददगार +","ismen to sha hi nahin ki kingship heavens v life ki hukoomat allah hi ke lie as hai vahi jise chahe death hai aur jise chahe marta hai aur tum logon ka allah ke siva n koee supporter hai n madadgar +",6,0 +"Those who have gone before them belied, yet they did not reach a tenth of what We gave them; yet they belied My Messengers. And how was (My) rejection (their destruction)! +","और झूठलाया उन लोगों ने भी जो उनसे पहले थे। और जो कुछ हमने उन्हें दिया था ये तो उसके दसवें भाग को भी नहीं पहुँचे है। तो उन्होंने मेरे रसूलों को झुठलाया। तो फिर कैसी रही मेरी यातना! +","aur jhoothlaya un logon ne bhi jo unse pahle the. aur jo kuchh hamne unhen diya tha ye to uske dasven bhag ko bhi nahin pahunche hai. to unhonne mere rasoolon ko jhuthlaya. to phir kaisi rahi meri yatna! +",6,5 +"This called for an additional capacity of about 18 million tonnes, raising the total capacity to 43 million tonnes in 1980 - 85. +","इसका अर्थ था लगभग 180 लाख टन की अतिरिकत क्षमता इससे सन् 1980-85 में कुल क्षमता बढ़ाकर 430 लाख हो जायेगी. +","iska arth tha lagabhag 180 lakh tan ki atirikat kshamta isse san 1980-85 men kul additional capacity 430 lakh ho jayegi +",7,3 +"your council's decisions on housing issues are more open and accountable to you; +","रिहाइशी मामलों के बारे में आपकी कौंसिल के फ़ैसलें अधिक सार्वजनिक होंगे और कौंसिल आपके सामने अधिक जवाब देह होगी | +","housing issues ke bare men aapki kaunsil ke decisions on housing honge aur kaunsil aapke samne adhik javab deh hogi +",8,0 +"'This, is the reward for what your hands have forwarded. Allah is not unjust to the worshipers' +","(कहा जाएगा,) यह उसके कारण है जो तेरे हाथों ने आगे भेजा था और इसलिए कि अल्लाह बन्दों पर तनिक भी ज़ुल्म करनेवाला नहीं +","kha jaega, yah uske karan hai jo tere hands have forwarded bheja tha aur islie ki allah bandon par tanik bhi zulm karnevala nahin +",6,3 +"ganga vally is the biggest in India +","गंगा नदी प्रणाली भारत की सबसे बड़ी नदी प्रणाली है। +","ganga vally prnali bharat ki sabse bari vally prnali hai. +",7,1 +"The Organisation has three Regional Headquarters i. e. Mumbai, Chennai, and Port Blair. +","इसके तीन क्षेत्रीय मुख्यालय, मुंबई, चेन्नई और पोर्ट ब्लेयर में हैं। +","iske tin regional headquarters, mumbai, chennee aur port blair men hain. +",9,0 +"and there did not come to them any apostle but that they used to deride him. +","और (उनकी भी यही हालत थी कि) उनके पास कोई रसूल न आया मगर उन लोगों ने उसकी हँसी ज़रुर उड़ाई +","aur unki bhi yahi halat thi ki unke pas koee rasool n aaya magar un logon ne uski hnsi zarur uraee +",8,3 +"How [dreadful] was My punishment and My warning! +","तो (उनको) मेरा अज़ाब और डराना कैसा था +","to unko punishment warning aur dreadful kaisa tha +",4,3 +"In 1895 she went to england for higher studies and along with studies she also wrote poetry. +","वे १८९५ में उच्च शिक्षा प्राप्त करने के लिए इंग्लैंड गईं और पढ़ाई के साथ-साथ कविताएँ भी लिखती रहीं। +","ve १८९५ men higher studies prapt karne ke lie inglaind geen aur paaee ke wrote poetry bhi likhti rahin. +",6,1 +"They are allowed to accept / renew public deposits for a minimum period of 12 months and maximum period of 60 months. +","उनके लिए कम से कम 12 माह की अवधि के लिए और अधिकतम 60 माह की अवधि के लिए सार्वजनिक जमाओं को स्वीककार/नवीकरण करने की अनुमति है। +","unke lie kam se kam 12 months ki avdhi ke lie aur adhikatam 60 months ki avdhi ke lie public deposits ko svikkarnvikaran karne ki anumti hai. +",9,2 +"They were as good as the babies in Taiwan +","वो ताइवान वाले शिशुओं जीतने अच्छे थे +","vo taiwan vale babies jitne good the +",9,1 +"The only other way is the socialist way. +","दूसरा रास्ता सिर्फ समाजवाद का रास्ता है। +","other only sirph socialist ka only hai. +",5,2 +"she 's standing, those Rockports slightly apart, but grounded. +","वो खड़ी हैं, उनके रौकपोर्ट जूते एक-दूसरे से थोड़े दूर, पर ज़मीन पर अच्छी तरह जमे हुए. +","vo standing hain , unke rockports joote ek-doosre se thore door , par zamin par achchhi tarah jame hue +",8,2 +"She 's a woman of mental clarity and administrative purposefulness. +","वे साफ सोच और प्रशासन को उद्देश्यपूर्ण काम में लगाए रखने वाली महिल हैं. +","ve saph soch aur prshasan ko uddeshypoorn kam men lagae rakhne vali mahil hain +",4,7 +"All data is encrypted with your sync passphrase +","सभी डेटा आपके समन्वयन पासफ़्रेज़ के साथ एन्क्रिप्ट किया जाएगा +","sabhi data aapke sync passphrase ke sath enkript kiya jaega +",8,1 +"So, when you are free, strive hard, +","अतः जब निवृत हो तो परिश्रम में लग जाओ, +","ata jab free ho to parishram men lag jao , +",9,1 +"The cap is designed to create an almost air tight seal around the cervical opening. +","कैप को इस तरह बनाया गया है कि यह गर्भाशय के मुख को इस तरह बंद कर देता है कि हवा भी भीतर नहीं जा सकती। +","cap ko is tarah create gaya hai ki yah garbhashay ke opening ko is tarah bnd kar deta hai ki hava bhi bhitar nahin ja sakti. +",8,2 +"So sometimes you 'll say morula, +","तो कभी कभी आप morula कहता हूँ, +","to kabhi kabhi aap morula kahta hoon, +",8,0 +"and it 's not finally, we could keep going - - +","नही, यह फईनल नहीं है हम आगे जा सकते है. +","nahi, yah pheenal nahin hai ham aage ja sakte hai +",8,3 +"They swear to you that you may be reconciled to them. But even if you are reconciled to them, Allah shall not be reconciled to the transgressing lot. +","वे तुम्हारे सामने क़समें खाएँगे ताकि तुम उनसे राज़ी हो जाओ, किन्तु यदि तुम उनसे राज़ी भी हो गए तो अल्लाह ऐसे लोगो से कदापि राज़ी न होगा, जो अवज्ञाकारी है +","ve tumhare samne smen khaenge taki tum unse razi ho transgressing , kintu yadi tum unse razi bhi ho ge to allah aese logo se kadapi razi n hoga , jo avajnjakari hai +",6,1 +"Or the thought may come not as silent perception but as speech self - born out of the truth and complete in its own right and carrying in itself its own vision and knowledge. +","अथवा विचार एक मौन अनुभव के रूप में नहीं बल्कि एक ऐसी वाणी के रूप में प्रकट हो सकता है जो सत्य में से स्वयमेव जन्म लेती है और अपने निज अधिकार के बल पर ही पूर्ण होती है और अपना अन्तर्दर्शन और ज्ञान अपने ही अन्दर धारण किये होती है। +","athva thought ek silent perception ke truth men nahin balki ek aesi speech ke truth men prakat ho sakta hai jo saty men se svaymev janm leti hai aur apne nij right ke bal par hi complete hoti hai aur apna vision aur knowledge apne hi andar dharan kiye hoti hai. +",6,1 +"organs superficially appear to be similar and perform the same function. +","बाहरी दिखावे में अंग एक जैसे दिखें और एक ही प्रकार का कार्य कर रहे हों। +","bahri dikhave men organs ek jaise dikhen aur ek hi similar ka function kar rahe hon. +",7,5 +"In India, various agencies and organisations conduct studies and surveys as well as publish reports on a regular basis covering diverse aspects of the economy. +","भारत में अनेक अधिकरण और संगठन अध्ययन और सर्वेक्षणों का आयोजन करते हैं, साथ ही अर्थव्यवस्था की विविध पहलुओं शामिल करते हुए एक नियमित आधार पर रिपोर्ट प्रकाशित करते हैं। +","bharat men anek adhikaran aur sngathan studies and surveys ka aayojan karte hain, sath hi arthavyavastha ki vividh pahluon shamil karte hue ek niymit aadhar par riport prkashit karte hain. +",8,2 +"""Peace and salutation to Noah among the nations!"" +","कि ""सलाम है नूह पर सम्पूर्ण संसारवालों में!"" +","ki peace and salutation par sampoorn peace men! +",5,4 +"Failed to remove a persona from store:% s +","भंडार से एक व्यक्तित्व को हटाने में विफलः% s +","store se ek persona ko s men viphla s +",3,1 +"A Plugin to synchronize pictures' metadata with a GPS device +","जीपीएस उपकरण से छवि मेटाडाटा को सिंक्रोनाइज करने का एक प्लगइन +","pictures device se chhavi metadata ko sinkronaij karne ka ek plugin +",7,3 +"It is He who gave you hearing, sight, and hearts, but only few of you give thanks. +","हालाँकि वही वह (मेहरबान खुदा) है जिसने तुम्हारे लिए कान और ऑंखें और दिल पैदा किये (मगर) तुम लोग हो ही बहुत कम शुक्र करने वाले +","halanki vahi vah meharban khuda hai jisne tumhare lie kan aur ऑnkhen aur dil paida kiye magar tum log ho hi bahut kam shukr karne vale +",9,0 +"Last week , transporters in Delhi were up in arms against him , and , on April 10 , the first fir alleging a case of cheating and detailing his role in the CNG kit scam , was lodged at a Delhi police station . +","दिल्ली के ट्रांसपोर्टरों ने एकजुट हो 10 अप्रैल को उनके खिलफ धोखाधड़ी के आरोप के साथ सीएनजी किट घोटाले में उनकी भूमिका बताते हे प्राथमिकी दर्ज करवाई . +","dilli ke transportron ne ekjut ho 10 aprail ko unke khilaph dhokhadhari ke aarop ke sath sienji kit scam men unki bhoomika batate he prathmiki darj karvaee +",4,7 +"These are gross and obvious examples but there are infinite and subtle gradations in the misunderstandings which can arise between people and the ways in which the law can tangle with traditional ways. +","यह सकल और स्पष्ट उदाहरण है, परंतु लोगों के बीच असंख्य और सूक्ष्म कारणों से अनेक गलत फहमियां पैदा हो सकती हैं और कानून कई तरह से परंपरागत रास्तों में उलझ सकता है। +","yah gross and obvious udaharan hai, parntu logon ke bich asnkhy aur sookshm karnon se anek galat phahmiyan paida ho sakti hain aur kanoon kee tarah se parnpragat raston men law can tangle +",7,1 +"And do not be chary of pursuing them. If you suffer, they shall also suffer like you. But while you have hope (of success) from God, they have none. Surely God is all - knowing and all - wise. +","और उन लोगों का पीछा करने में सुस्ती न दिखाओ। यदि तुम्हें दुख पहुँचता है; तो उन्हें भी दुख पहुँचता है, जिस तरह तुमको दुख पहुँचता है। और तुम अल्लाह से उस चीज़ की आशा करते हो, जिस चीज़ की वे आशा नहीं करते। अल्लाह तो सब कुछ जाननेवाला, तत्वदर्शी है +","aur un logon ka pichha karne men susti n dikhao. yadi tumhen dukh pahunchta hai to unhen bhi dukh pahunchta hai, jis tarah tumko dukh pahunchta hai. aur tum allah se us chiz ki aasha karte ho, jis chiz ki ve aasha nahin karte. allah to sab kuchh jannevala, tatvadarshi hai +",5,8 +"The file ""% s"" is read - only! Edit anyway? +","फ़ाइल से. है पढ़ें संपादन? +","file se hai read edit +",5,5 +"Folder '{0}' doesn 't contain any duplicate message. +","फोल्डर '{0}' में कोई दोहरा संदेश नहीं है. +","folder 0 men koee duplicate message nahin hai +",8,1 +"List of Governors of Tamil Nadu +","तमिल नाडु के राज्यपालों की सूची +","tamil governors of tamil ki list +",4,7 +"Allows you to drag a Bugzilla URL from your browser directly into a Gnote note. The bug number is inserted as a link with a little bug icon next to it. +","आपको बगजिला URL खींचना चाहिए सीधे जीनोट में. बग संख्या को बतौर कड़ी जोड़ा जाता है इसे निकट कोई छोटा बग चिह्न के साथ. +","aapko bagjila URL khinchna chahie sidhe jinot men bag snkhya ko bataur kari jora jata hai ise nikat koee chhota bag chihn ke sath +",9,2 +"The description is required in your bug report. This should not happen with the latest Bug Buddy. +","आपके बग रिपोर्ट में विवरण की जरूरत है. नवीनतम बग बड्डी में ऐसा नहीं होना चाहिए. +","aapke bug report men description ki jaroorat hai latest bug baddi men aesa nahin hona chahie +",8,4 +"And that 's probably the key lesson to my short talk here, is that +","और मेरे छोटे व्याख्यान का शायद महत्वपूर्ण सबक है, +","aur mere short talk ka shayad key lesson hai, +",9,2 +"Generating tissues of predictable density and behavior +","उम्मीद के मुताबिक घनत्व और व्यवहार के ऊतक बनाना +","ummid ke mutabik density and behavior ke ootak banana +",9,1 +"When after executing an order of the buyer the amount that remains at his credit. +","क्रेता के खरीद आदेश को सम्पन्न करने के बाद उसके खाते में जो राशि शेष जमा दिख रही है। +","buyer the amount aadesh ko sampann karne ke bad uske khate men jo rashi amount that remains rahi hai. +",4,1 +"Ripe plantains, some sweets and other ingredients of worship are also put in the donga filled with rice. +","जिस डोंगे में चावल भरा होता है, उसमें पके केले, कुछ मिष्ठान और पूजा-सामग्री भी रख दी जाती है। +","jis donga men rice bhara hota hai , other ripe plantains , kuchh sweets aur pooja-samagri bhi ingredients worship jati hai. +",6,1 +"Move ~ a onto the five of spades. +","~ a को एक हुकुम का पंजा पर ले जाएँ +","a ko ek spades ka pnja par move jaen +",7,2 +"They had grown in self - respect and self - confidence. +","उनमें आत्मसम्मान और आत्मविश्वास का विकास हुआ। +","unmen respect aur confidence ka vikas huaa. +",9,1 +"If I had a dozen of a dozen eggs - - a dozen is twelve. +","अगर मेरे पास 1 दर्ज़न के दर्ज़न अंडे हैं-- एक दर्ज़न 12 के बराबर होता है. +","agar mere pas dozen darzan ke darzan ande hain -- ek darzan 12 ke barabar hota hai +",4,5 +"The whole of Rashtrapati Bhavan would be with them in their efforts to bring up their children. +","उनके बच्चों की परवरिश में पूरा राष्ट्रपति भवन उनके साथ है। +","unke bachchon ki paravrish men poora rashtrapti bhavan unke sath children +",8,3 +"But the very spirit of Yoga is this, to make the exceptional normal, and to turn that which is above us and greater than our normal selves into our own constant consciousness. +","परन्तु योग की वास्तविक भावना ही यह है कि अपवाद को सामान्य बनाया जाये और जो हमारे ऊपर है, हमारे साधारण स्व से महत्तर है उसे अपनी शाश्वत चेतना बना लिया जाये। +","parantu yog ki vastvik bhavna hi yah hai ki make the exceptional banaya jaye aur jo hamare oopar hai, hamare sadharan sv se mahattar hai use apni shashvat chetna bana liya jaye. +",7,4 +"Alaukik Laukikata Formality with a Supernatural Touch is one of his most remarkable stories of this period. +","इस दौर में लिखी माणिक की एक अद्वितीय कहानी है अलौकिक लौकिकता। +","is period men likhi remarkable ki ek advitiy stories hai supernatural laukikta. +",4,5 +"The quantitative relation between the targets and the achievement. +","लक्ष्य तथा उनके विरूद्ध कार्य सम्पादन के संदर्भ में संख्यात्मक अनुपात। +","targets tatha unke virooddh kary quantitative ke relation men snkhyatmak anupat. +",8,2 +"Her history remains alive and vibrant in the thoughts, actions, customs and rituals of her people. +","इसका इतिहास इसके लोगों के विचारों, कार्यों, रीति-रिवाजों और धार्मिक कृत्यों से परिपूर्ण और सजीव बना रहा। +","iska history iske people ke thoughts , alive , riti-rivajon aur dharmik krityon se paripoorn aur customs bana raha. +",7,4 +"The Englishman ' s eyes lit up . +","अंग्रेज की आंखों में चमक आ गई , +","angrej ki aankhon eyes lit aa gee , +",6,1 +"But, rising wage bill of IT professionals and global financial meltdown is challenging India 's position as a preferred destination for outsourcing business processes. +","तथापि, आईटी व्यथवसायियों के बढ़ते वेतन बिल तथा वैश्विक वित्तीय मंदी आउट सोर्सिंग व्यपवसाय प्रक्रियाओं के लिए एक वरीय गंतव्यव स्थैल के रूप में भारत की स्थिति को चुनौती दे रही है। +","tathapi, aaeeti vyathavsayiyon ke rising wage bill tatha global financial meltdown aaut outsourcing business processes ke lie ek variy gntavyav sthail ke roop men bharat ki sthiti ko chunauti de rahi hai. +",8,4 +"and in the mornings they would ask for forgiveness; +","और वही प्रातः की घड़ियों में क्षमा की प्रार्थना करते थे +","aur vahi mornings ki ghariyon men forgiveness ki prarthna karte the +",7,3 +"""The wall belonged to two young orphans in the town whose father had been a righteous man, and a treasure of theirs lay underneath it. So your Lord wanted them to come of age and then to dig up their treasure as a mercy from Him. I did not do [it] of my own accord. That is the explanation of the things about which you were not able to restrain yourself."" +","और रही यह दीवार तो यह दो अनाथ बालकों की है जो इस नगर में रहते है। और इसके नीचे उनका ख़जाना मौजूद है। और उनका बाप नेक था, इसलिए तुम्हारे रब ने चाहा कि वे अपनी युवावस्था को पहुँच जाएँ और अपना ख़जाना निकाल लें। यह तुम्हारे रब की दयालुता के कारण हुआ। मैंने तो अपने अधिकार से कुछ नहीं किया। यह है वास्तविकता उसकी जिसपर तुम धैर्य न रख सके। "" +","aur able yah wall to yah do orphans young ki hai jo is town men rahte lord aur iske niche unka treasure righteous lord aur unka father theirs tha , islie mercy rab ne chaha ki ve apni yuvavastha ko pahunch lay aur apna treasure nikal len. yah mercy rab ki dayaluta ke karan huaa. mainne to apne adhikar se kuchh nahin kiya. yah hai vastvikta uski jisapar man dhairy n rakh sake. +",5,3 +"Adopting measures to get incentive prices for coconut and its products. +","नारियल और इसके उत्पादों के लिए प्रोत्साहन मूल्य पाने के उपाय अपनाना। +","coconut aur iske products ke lie incentive prices pane ke measures apnana. +",8,4 +"He will forgive your sins and admit you into gardens with streams running in them, and into good dwellings in the Gardens of Eden; that is the great success. +","वह तुम्हारे गुनाहों को क्षमा कर देगा और तुम्हें ऐसे बागों में दाखिल करेगा जिनके नीचे नहरें बह रही होगी और उन अच्छे घरों में भी जो सदाबहार बाग़ों में होंगे। यही बड़ी सफलता है +","vah tumhare forgive your sins kar dega aur tumhen aese bagon men dakhil karega jinke niche nahren bah rahi hogi aur un achchhe gharon men bhi jo gardens with streams honge. yahi bari saphalta hai +",7,0 +"In Open office 2. 0 (or higher) for adding on Hindi spelling check +","ओपनऑफ़िस 2.0 (या अधिक) में हिन्दी वर्तनी जाँचक शामिल करने के लिए +","open 20 ya adhik hindi spelling check janchak shamil karne ke lie +",6,2 +"For God is sufficient as witness between us and you we were not aware of your worship. "" +","""हमारे और तुम्हारे बीच अल्लाह ही एक गवाह काफ़ी है। हमें तो तुम्हारी बन्दगी की ख़बर तक न थी।"" +","hamare aur god bich aware hi ek witness sufficient hai. hamen to tumhari bandgi ki bar tak n thi. +",4,1 +"Perhaps, you know by what name the generality of people call extraordinary ideas, uncommon actions, extraordinary high aspirations. +","शायद तुम जानती होगी कि आम लोग असाधारण विचारों, असाधारण कार्यों और असाधारण उच्चाकांक्षाओं को किस नाम से जानते हैं। +","shayad tum janti hogi ki generality people extraordinary ideas , extraordinary actions aur extraordinary high ko kis name se jante hain. +",8,4 +"that could be created by things like cosmic rays, +","जो ब्रह्माण्डीय किरणो जैसी चीज के कारण होता है, +","jo created by things chij ke karan hota hai, +",6,2 +"The process by which ammonia is converted to nitrites and then to nitrates. +","वह प्रक्रिया जिसके द्वारा अमोनिया को नाइट्राइटिस एवं तत्पश्चात नाइट्रेट्स में परिवर्तित किया जाता है +","vah prakriya jiske dvara amoniya ko naitraitis evn tatpashchat naitrets men parivartit kiya jata hai +",9,1 +"More recently, it appears that none of the millions of antiwar demonstrators have a bad word to say about Saddam Hussein nor an iota of sympathy for those oppressed, tortured and murdered by his regime. Instead, they vent fury against the American president and British prime minister. +","अभी हाल में यह देखने में आया है कि लाखों युद्ध विरोधी प्रदर्शनकारियों ने सद्दाम हुसैन के विरूद्ध एक भी शब्द नहीं कहा और न ही उनके शासन में पीड़ित हत्या के शिकार हुए लोगों के प्रति एक भी सहानुभूति का शब्द निकाला। इसके बजाय उन्होंने अमेरिकी राष्ट्रपति और व्रिटेन के प्रधानमंत्री के विरूद्ध आक्रोश प्रदर्शित किया। +","abhi hal men yah fury men none hai ki millions yuddh virodhi antiwar ne saddam husain ke virooddh ek bhi word nahin kaha aur n hi unke regime men pirit hatya ke shikar hue logon ke prti ek bhi sympathy ka word nikala. iske bajay unhonne ameriki president aur iota ke minister ke virooddh aakrosh pradarshit kiya. +",6,1 +"& Choose which service to edit: +","चुनें कि कौन सी सेवा संपादित करनी हैः (C) +","choose ki kaun si service to edit haia C +",6,3 +"If we start translating, we can only say the sun 's colour was slightly reddish. +","अगर हमें अनुवाद करना हो तो हम कहेंगे कि सूर्य का रंग लोहित था। +","agar hamen anuvad karna ho to ham kahenge ki soory ka rng lohit tha. +",9,1 +"An organism in the early stages of development. +","विकास की प्रारम्भिक अवस्था में एक जीव +","stages of development avastha men ek organism +",4,1 +"'. After the 25th, Prem Chand did not have good sleep. +","25 की रात के बाद ठीक से कभी सो न सके। +","25 ki rat ke bad good se kabhi so n sake. +",7,1 +"Certain persons were proceeded against under the Orissa Maintenance of Public Order Act, 1948, and it appears that,Certain persons were proceeded against under the Orissa Maintenance of Public Order Act, 1948, and it appears that, +","कुछ व्यक्तियों के विरूद्ध 'उडिसा मैंटेन्स आँफ पब्लिक आँर्डर एक्ट-1948 के अधीन कानूनी कार्रवाई की गई थी, और ऐसा लगता है कि इन भूतपूर्व राजाओं के, खास तौर पर कालाहांडी के राजा के, प्रोत्साहन और आर्थिक सहायता से ये लोग उस करार की कसौटी करने के लिए हाईकोर्ट तक गये हैं, जो आगे की कानूनी कार्रवाई के मूल में हैं। +","kuchh vyaktiyon ke virooddh udisa maintens aanph pablik aanrdar ekt-1948 ke adhin kanooni karrvaee ki gee thi, aur aesa lagta hai ki in bhootpoorv rajaon ke, khas taur par kalahandi ke raja ke, protsahan aur aarthik sahayta se ye log us karar ki kasauti karne ke lie haeekort tak gaye hain, jo aage ki kanooni karrvaee ke mool men hain. +",4,7 +"Error: Object path is not specified +","त्रुटि: ऑब्जेक्ट पथ निर्दिष्ट नहीं है +","error : object path nirdisht nahin hai +",9,1 +"Have you not regarded those who style themselves as pure? Indeed, it is Allah who purifies whomever He wishes, and they will not be wronged [so much as] a single date - thread. +","(ऐ रसूल) क्या तुमने उन लोगों के हाल पर नज़र नहीं की जो आप बड़े मुक़द्दस बनते हैं (मगर उससे क्या होता है) बल्कि ख़ुदा जिसे चाहता है मुक़द्दस बनाता है और ज़ुल्म तो किसी पर धागे के बराबर हो ही गा नहीं +","ae rasool kya tumne un logon ke hal par nazar nahin ki jo aap bare muddas bante hain magar usse kya hota hai balki uda jise chahta hai muddas banata hai aur zulm to kisi par dhage ke barabar ho hi ga nahin +",4,7 +"Sector that includes entire wants and needs satisfying population of the country. +","वह क्षेत्र जिसमें देश की वह समस्त आबादी जो अपनी इच्छाओं और आवश्यकताओं की पूर्ति में संलग्न हो शामिल होती हो। +","vah sector that includes ki vah samast aabadi jo apni ichchhaon aur aavashyaktaon ki poorti men snlagn ho shamil hoti ho. +",5,5 +"” Tonight, it will be a year … ” +","आज रात एक साल पूरा हो जाएगा। +","tonight ek year poora ho jaega. +",8,2 +"the form f of x is greater than a. +","जे का फ बड़ा है आ से +","f ka ph bara hai aa se +",5,7 +"Punctuation level set to most. +","विराम चिह्न स्तर सबसे करने के लिए निर्धारित किया है. +","punctuation chihn level sabse karne ke lie nirdharit kiya hai +",6,1 +"The market rates are going down. +","बाजार दर जल्दी नीचे जा रहे हैं। +","market dar jaldi niche ja rahe hain. +",9,1 +"and you take a glass of wine and you put your feet up. +","और आप वाइन के एक गिलास के साथ आराम से अपने पैर ऊपर कर के बैठते हैं. +","aur aap vain ke ek glass ke sath aaram se apne feet oopar kar ke baithte hain +",8,4 +"And We have not created the heaven and the earth and all that is between them without purpose; this is what the disbelievers assume; therefore ruin is for the disbelievers, by the fire. +","हमने आकाश और धरती को और जो कुछ उनके बीच है, व्यर्थ नहीं पैदा किया। यह तो उन लोगों का गुमान है जिन्होंने इनकार किया। अतः आग में झोंके जाने के कारण इनकार करनेवालों की बड़ी दुर्गति है +","hamne aakash aur dharti ko aur jo kuchh unke bich hai, vyarth nahin paida kiya. yah to un logon ka guman hai jinhonne inkar kiya. ata aag men jhonke jane ke karan inkar karnevalon ki bari durgti hai +",8,4 +"Amount of wage paid for a day. +","दिनभर के लिए दी जाने वाली मजदूरी की राशि। +","dinabhar ke lie di jane vali amount of wage +",8,2 +"Harishchandra, however, submitted that if he be given half an hour, he could do it. +","परन्तु हरिश्चन्द्र का आग्रह था कि यदि उन्हें आध घण्टा का भी समय दिया जाए तो वह उसे याद कर लेंगे। +","parantu harishchandra ka aagrah tha ki yadi unhen aadh hour ka bhi samay diya jae to vah use yad kar lenge. +",8,1 +"Kalpana was the first Indian born woman to fly into space and she was the second person of Indian origin to go into space. +","कल्पना जी अंतरिक्ष में उड़ने वाली प्रथम भारत में जन्मी महिला थीं और अंतरिक्ष में उड़ाने वाली भारतीय मूल की दूसरी व्यक्ति थीं। +","kalpana ji space men urne vali first bharat men janmi woman thin aur space men urane vali indian origin ki doosri person thin. +",8,3 +"The Chairman to the right and the Speaker to the left of the President who occupies the middle seat. +","बीच के आसन पर राष्ट्रपति बैठता है, उसके दायें राज्य सभा का सभापति और बायें लोक सभा का अध्यक्ष। +","right ke seat par president baithta hai , uske dayen speaker sabha ka chairman aur left lok sabha ka adhyaksh. +",7,2 +"The muscle present below the perineum in both females and males. +","पुरूषों तथा स्त्रियों दोनों में मूलाधार से नीचे विद्यमान पेशियां +","females and males donon men mooladhar se niche muscle present +",8,2 +"is a lot of material that was already here, +","उसमें लगाई गई बहुत सी सामग्री ऎसी है जो पहले से ही मौजूद थी, +","usmen lot gee bahut si material ऎsi hai jo pahle se hi maujood thi , +",7,2 +"PROVISIONS AS TO THE COMPTROLLER AND AUDITOR-GENERAL OF INDIA +","भारत के नियंत्रक-महालेखापरीक्षक के बारे में उपबंध +","india ke niyntrak-mhalekhaprikshak ke bare men provisions +",8,1 +"You are now connected to the WiMAX network. +","आप अभी WiMAX संजाल से कनेक्टेड हैं. +","aap abhi WiMAX network se kanekted hain +",8,1 +"If you are not happy with the decision, you can take court action, using the conciliator 's findings if you wish. +","अगर आप उसके निर्णय से संतुष्ट नहीं है, तो चाहें तो कंसिलिएटर को पूछ-ताछ के नतीजों को लेकर आप कानूनी कार्यवाही शुरू कर सकते हैं। +","agar aap uske nirnay se sntusht nahin hai, to chahen to knsilietar ko poochh-tachh ke natijon ko lekar aap kanooni karyvahi shuroo kar sakte hain. +",9,2 +"At its tip it is toothed and sharply hooked. +","इसकी नोक दांतेदार और तीखे हुक वाली होती है. +","iski tip toothed and sharply huk vali hoti hai +",7,1 +"The outer circle shows what exercises they were focused on. +","ये बाहरी गोला दिखा रहा है कि किन सवालों पर उन्होंने ध्यान दिया। +","ye outer circle shows raha hai ki kin savalon par unhonne dhyan diya. +",8,1 +"And may it run forever, because it gives people like me a living. +","और ये हमेशा चलता रहे , क्योंकि ये मुझ जैसे लोगों को जीविका देती है. +","aur ye run forever rahe , kyonki ye mujh jaise people ko jivika deti hai +",7,0 +"Application of mud to all part of the body. +","शरीर के सभी हिस्सों पर कीचड़ का आलेपन +","body ke sabhi part par application of mud +",7,3 +"Then we can make this same statement again. +","तो हम इस एक ही बयान पुनः बना सकते हैं। +","to same is ek hi statement puna bana sakte hain. +",8,2 +"“ Well , then , why do we need all these books ? ” the boy asked . +","“ तो फिर तुम्हें इन ढेर सारी किताबों की क्या जरूरत है ? ” +","to phir tumhen in boy sari books ki kya jaroorat hai +",7,1 +"Partially ordered set is the intuitive concept of an ordering and sequencing, or arrangement of the elements of a set. +","अंशतः क्रमित समुच्चय, समुच्चय के तत्वों के अनुक्रमण तथा प्रबंधन का एक सहजज्ञ सिद्धांत होता है। +","anshta krmit set , set ke elements ke sequencing tatha prbndhan ka ek intuitive siddhant hota hai. +",8,1 +"ANF 8 for Claiming Duty Drawback on All Industry Rates / Fixation of Drawback Rates / Refund of Terminal Excise Duty +","एएनएफ 8 सभी उद्योग किराये पर ड्यूटी ड्राबैक/शुल्क वापसी का निर्धारण/टर्मिनल उत्पाद शुल्क की वापसी का दावा करने के लिए +","eeneph fixation sabhi industry rates par duty drabaikshulk drawback ka nirdharantarminal excise shulk ki drawback ka dava karne ke lie +",7,2 +"The Backward Classes Commission was marred in conspiracy from the very beginning. +","पिछड़े वर्गों का आयोग बिल्कुल प्रारंभ से ही विवादों से घिरा रहा। +","backward vargon ka commission bilkul beginning se hi vivadon se conspiracy raha. +",7,3 +"He could put up with any and everything but opposition to Urdu and the Anjuman was something he could not bear. +","जो कुछ कमाया वह या तो उर्दू पर निछावर कर दिया या दोस्तों और शार्गिदों पर खर्च कर दिया। +","jo kuchh kamaya vah ya to urdu par nichhavar kar diya ya doston aur shargidon par kharch kar put +",4,7 +"This was essentially Earth. Obviously, Earth got changed +","यह अनिवार्य रूप से पृथ्वी था। जाहिर है, पृथ्वी बदला मिल गया +","yah essentially roop se earth tha. jahir hai, earth got changed gaya +",8,0 +"He would search for sure - fire devices of making bombs. +","बम बनाने के नुस्ख़े तलाश करता। +","bam making ke nuse search karta. +",8,1 +"Those before them had denied, then punishment had overtaken them is from a quarter they did not suspect. +","जो लोग उनसे पहले गुज़र गए उन्होंने भी (पैग़म्बरों को) झुठलाया तो उन पर अज़ाब इस तरह आ पहुँचा कि उन्हें ख़बर भी न हुई +","jo log unse pahle guzar ge unhonne bhi denied ko jhuthlaya to un par azab is tarah aa pahuncha ki unhen bar bhi n huee +",6,1 +"S35: This material and its container must be disposed of in a safe way +","S35: यह पदार्थ तथा इसके मर्तबान को सुरक्षित तरीके से फेंका जाना चाहिएPlease take the official translations! You find them here: http:// europa. eu. int/eur-lex/lex/LexUriServ/LexUriServ. do? uri = CELEX: 32001L0059: EN: HTML +","S35 : yah material tatha iske martban ko safe tarike se phenka jana chahiePlease take the official container ! You find them here : http : europa eu inteur-lexlexLexUriServLexUriServ do uri CELEX : 32001L0059 : EN : HTML +",9,0 +"Acharya Ramchandra Sukal has written about Surdas- in the field of parental affection so much Surdas has written with close eyes, no other poet has done so much. +","सूरदास के बारे में आचार्य रामचंद्र शुक्ल ने लिखा है- वात्सल्य के क्षेत्र में जितना अधिक उद्धाटन सूर ने अपनी बंद आँखों से किया इतना किसी ओर कवि ने नहीं। +","surdas ke bare men acharya ramchandra sukal ne eyes hai- parental ke field men jitna much uddhatan soor ne apni close aankhon se kiya itna kisi or poet ne nahin. +",8,2 +"The indemnifier after performing his part of the promise has no rights against the third party and he can sue the third party only if there is an assignment in his favour. +","वचन के अपने भाग का निष्पानदन करने के पश्चामत क्षति्पूर्तिकर्ता तृतीय पक्षकार के विरूद्ध कोई अधिकार शेष नहीं रहते तथा वह तृतीय पक्षकार पर तभी मुकदमा चल सकता है जब उसके पक्ष में कोई समनुदेशन हो। +","promise ke apne part ka nishpanadan karne ke pashchamat kshtipoortikarta third favour ke virooddh koee adhikar shesh nahin rahte tatha vah third favour par tabhi mukadma indemnifier sakta hai jab uske paksh men koee assignment ho. +",8,4 +"But they say, “We found our parents on a course, and we are guided in their footsteps. ” +","बल्कि ये लोग तो ये कहते हैं कि हमने अपने बाप दादाओं को एक तरीके पर पाया और हम उनको क़दम ब क़दम ठीक रास्ते पर चले जा रहें हैं +","balki ye course to ye kahte hain ki hamne apne parents dadaon ko ek tarike par paya aur ham unko footsteps b footsteps thik raste par chale ja rahen hain +",6,3 +"It indicates the expenses and earnings of the firm as well as the amount of its debits and credits. +","यह फर्म के व्यय और आमदनी तथा साथ ही इसके नामे और जमा की राशि को भी दर्शाता है। +","yah firm ke expenses aur earnings tatha sath hi iske debits aur jama ki amount ko bhi darshata hai. +",9,2 +"Build but do not install the target. +","बिल्ड नहीं अधिष्ठापित करें लक्ष्य. +","build nahin adhishthapit karen target +",7,0 +"If we start translating, we can only say the sun 's colour was slightly reddish. +","अगर हमें अनुवाद करना हो तो हम कहेंगे कि सूर्य का रंग लोहित था। +","agar hamen anuvad karna ho to reddish kahenge ki sun ka colour lohit tha. +",6,1 +"and what will make you understand what the 'Illiyyin is? - - +","और तुमको क्या मालूम कि इल्लीयीन क्या है वह एक लिखा हुआ दफ़तर है +","aur make you understand ki illiyin kya hai vah ek likha huaa dafatar hai +",7,0 +"Children from the lowest social class are five times more likely to die in road accidents than those from the highest social class. +","समाज के सब से नीचे वाले वर्ग के बच्चों की सड़क दुर्घटना में मौत होने का खतरा सब से उँचे वर्ग वाले बच्चों से पाँच गुना अधिक है। +","social ke sab se niche vale varg ke children ki road accidents men maut hone ka khatra sab se lowest varg vale children se panch times adhik hai. +",8,2 +"Download in progress. Do you want to save the task? +","डाउनलोड प्रगति में है. क्या आप इस कार्य को सहेजना चाहते हैं? +","download in progress hai kya aap is kary ko sahejna chahte hain +",8,2 +"I had my own doubts of the success of the programme in Bihar. +","मुझे भी इस कार्यक्रम की सफलता में काफी संदेह था। +","i bhi is programme ki success men kaphi doubts own +",5,1 +"Check that the spelling is correct and that your proxy settings are correct. +","जांच लें कि वर्तनी सही है और आपके प्रॉक्सी विन्यास सही हैं. +","janch len ki vartni correct hai aur aapke proxy settings correct hain +",9,0 +"Such an institution is no good for building the nation. +","यह संस्था राष्ट्र के नव निर्माण की दृष्टि से उपयोगी नहीं है। +","yah such nation ke nav nirman ki drishti se good nahin hai. +",7,1 +"(9) The person from whose custody any books of account or other documents are seized under sub-section (1) or sub-section (1A) may make copies thereof, or take extracts therefrom, in the presence of the authorised officer or any other person empowered by him in this behalf, at such place and time as the authorised officer may appoint in this behalf. +","(9) वह व्यक्ति, जिसकी अभिरक्षा से कोर्इ लेखा बहियां या अन्य दस्तावेज उपधारा (1) या उपधारा (1क) के अधीन अभिगृहीत किए जाते हैं, उनकी नकलें या उनसे उद्धरण प्राधिकृत अधिकारी या उस निमित्त उसके द्वारा सशक्त किसी अन्य व्यक्ति की उपस्थिति में ऐसे स्थान और समय पर जो प्राधिकृत अधिकारी इस निमित्त नियत करें ले सकेगा। +","9 vah person , jiski custody se kori account books ya other documents updhara 1 ya updhara 1k ke adhin abhigrihit kie jate hain , unki copies ya unse uddharan authorised officer ya us nimitt uske dvara sashakt kisi other person ki presence men aese place aur time par jo authorised officer is nimitt niyat karen le sakega. +",8,3 +"Partially ordered set is the intuitive concept of an ordering and sequencing, or arrangement of the elements of a set. +","अंशतः क्रमित समुच्चय, समुच्चय के तत्वों के अनुक्रमण तथा प्रबंधन का एक सहजज्ञ सिद्धांत होता है। +","partially ordered set, samuchchay ke tatvon ke anukraman tatha prbndhan ka ek intuitive concept hota hai. +",9,0 +"OPV can be given to children till 5 years of age. +","बच्चों को ओपीवी 5 वर्ष की आयु तक दिया जा सकता है +","children ko opv 5 years ki age tak diya ja sakta hai +",10,0 +"Though the poem was not later included in his Collected Works, it did help to establish his reputation on its first appearance. +","भले ही यह कविता उनकी समग्र रचनावली में संकलित होने से रह गई थी, तो भी अपनी पहली उपस्थिति से उसकी प्रतिष्ठा स्थापित करने में सहायता मिली थी. +","bhale hi yah poem unki samagr collected men snklit hone se rah gee thi , to bhi apni pahli appearance se uski reputation sthapit karne men sahayta mili thi +",8,1 +"A person who attends a service to another. +","एक व्यक्ति जो दूसरों को सेवा प्रदान करता है। +","ek person jo doosron ko service prdan karta hai. +",9,2 +"Call them (adopted sons) by (the names of) their fathers, that is more just with Allah. But if you know not their father 's (names, call them) your brothers in faith and Mawalikum (your freed slaves). And there is no sin on you if you make a mistake therein, except in regard to what your hearts deliberately intend. And Allah is Ever OftForgiving, Most Merciful. +","उन्हें उनके बापों का बेटा करकर पुकारो। अल्लाह के यहाँ यही अधिक न्यायसंगत बात है। और यदि तुम उनके बापों को न जानते हो, तो धर्म में वे तुम्हारे भाई तो है ही और तुम्हारे सहचर भी। इस सिलसिले में तुमसे जो ग़लती हुई हो उसमें तुमपर कोई गुनाह नहीं, किन्तु जिसका संकल्प तुम्हारे दिलों ने कर लिया, उसकी बात और है। वास्तव में अल्लाह अत्यन्त क्षमाशील, दयावान है +","unhen unke bapon ka beta karakar pukaro. allah ke yahan yahi adhik nyaysngat bat hai. aur yadi tum unke bapon ko n jante ho, to dharm men ve tumhare bhaee to hai hi aur tumhare sahachar bhi. is silsile men tumse jo lti huee ho usmen tumapar koee gunah nahin, kintu jiska snkalp tumhare dilon ne kar liya, uski bat aur hai. vastav men allah atyant kshmashil, dayavan hai +",7,3 +"Add one or more images to the panorama +","परिदृश्य में एक या अधिक छवियाँ जोड़ें +","panorama men ek ya more images joren +",8,3 +"The application for registration of a plant variety may be filed by a breeder or his assignee in the prescribed form with the prescribed fee to the Authority including particulars such as the name of variety, source of parental line, or name of variety used to develop the variety in question, essential characteristics conferring distinctiveness, denomination and geographical location of the variety and claims. +","वनस्पिति प्रकार के पंजीकरण हेतु आवेदन प्रजनक अथवा उसके अधिन्याससी द्वारा निर्धारित शुल्को के साथ निर्धारित प्रपत्र में प्रकार के नाम, पैतृक प्रकार का स्रोत, अथवा पंजीकृत किए जाने वाले प्रकार के विकास में प्रयुक्तथ प्रकार का नाम, प्रकार के वैशिष्ट्ये, अंकन एवं भौगोलिक स्थाकन को दर्शाती आवश्य क विशेषताओं एवं दावों जैसे विवरणों सहित प्राधिकार को दी जा सकती है। +","vanaspiti prkar ke pnjikaran hetu aavedan prajanak athva uske adhinyassi dvara nirdharit shulko ke sath nirdharit prapatr men prkar ke nam, paitrik prkar ka srot, athva pnjikrit kie jane vale prkar ke vikas men pryuktath prkar ka nam, prkar ke vaishishtye, ankan evn bhaugolik sthakan ko darshati aavashy k visheshtaon evn davon jaise vivarnon sahit pradhikar ko di ja sakti hai. +",6,5 +"I am a trustworthy messenger to you: +","मै तो यक़ीनन तुम्हारा अमानतदार पैग़म्बर हूँ तो ख़ुदा से डरो +","i to yainan tumhara trustworthy paimbar hoon to uda se daro +",6,1 +"he was arrested while aboard on an unregistered ship +","उसे एक अपंजीकृत जहाज के फलक पर गिरफ्तार किया गया +","use ek unregistered aboard ke phalak par giraphtar kiya gaya +",7,2 +"who are true to their trusts and their covenants, +","और जो अपनी अमानतों और अपने एहद का लिहाज़ रखते हैं +","aur jo apni true aur apne ehad ka lihaz rakhte hain +",8,1 +"Some may go to out-of-the-way places to sniff which can add to the dangers . +","कुछ लोग संभवतः सुँघनी लेने के लिए कोई अनजानी जगह भी चुन सकते हैं , जिससे ख़तरे और बढ़ सकते हैं . +","kuchh log snbhavta sunghni lene ke lie koee anjani jagah bhi chun sakte hain , jisse tre aur ba sakte hain +",5,5 +"A person who attends a service to another. +","एक व्यक्ति जो दूसरों को सेवा प्रदान करता है। +","ek vyakti jo doosron ko service prdan karta hai. +",9,1 +"of the banking system has attracted a lot of investment from outside. +","बैंकिंग प्रणाली की इस मज़बूती ने के बाहर से निवेश को भी बहुत आकर्षित किया है। +","banking system ki is mazbooti ne ke bahar se investment ko bhi bahut attracted kiya hai. +",8,2 +"Unless you realise that the world is a manifestation of divinity , as long as you do not realise within yourself that the world you see around you , the country in which you live are manifestations of divinity , then all these are unreal . +","जब तक आप यह अनुभूति नहीं करते हैं कि सारा विश्व ईश्वरत्व की अभिव्यक्ति है , जब तक आप अपने भीतर यह अनुभव नहीं करते हैं कि यह संसार जिसे आप अपने चारों और देखते हैं , और यह देश , जिसमें आप रहते हैं , ईश्वरत्व की अभिव्यक्ति है , तब तक ये सभी अवास्तविक हैं . +","jab tak aap yah anubhooti nahin karte hain ki sara world manifestation of divinity hai , jab tak aap apne bhitar yah anubhav nahin karte hain ki yah snsar jise aap apne charon aur dekhte hain , aur yah country , jismen aap rahte hain , manifestation of divinity hai , tab tak ye sabhi avastvik hain +",9,1 +"The answer to this was ready in Satish 's mind. +","'>> इसका जवाब सतीश के मन में तैयार था। +","iska answer satish ke mind men ready tha. +",7,3 +"a Messenger from Allah, reciting from Purified Scrolls; +","(यानि) ख़ुदा के रसूल जो पाक औराक़ पढ़ते हैं (आए और) +","allah uda ke messenger jo pak aura pate hain scrolls aur +",6,2 +"Could not rename partial file% 1. Please check permissions. +","आधा-अधूरा फ़ाइल% 1 का नाम बदल नहीं सकता. कृपया अनुमतियाँ जाँचें. +","partial file 1 ka nam badal nahin sakta check permissions janchen +",8,2 +"There are some reserved parking zones for those car who show the orange badge on their windscreen, or you can sometimes park where generally parking is not permitted. < s > You and Your Body (उपयोगी +","संस्थाओं के पते पृष्ठ ३९ पर हैं) कई स्थानों पर पार्किंग स्थान, विशेषकर, उन कारों के लिये रिज़र्व रखे गये हैं जो अपने विंडस्क्रीन पर ओरेंज बैज का प्रगर्शन करते हैं, और आप सीमित समय के लिये उन स्थानों पर भी रूक सकते हैं, प्रायः जहां पार्क करने की अनुमति नहीं हैं। +","body ke s prishth ३९ par hain kee sthanon par parking sthan , visheshakar , un karon ke liye rizarv rakhe gaye hain jo apne zones par orange badge ka pragarshan karte hain , aur aap simit samay ke liye un sthanon par bhi rook sakte hain , praya jahan park karne ki anumti nahin hain. +",8,1 +"Writing the lead - out may take some time. +","लीड-आउट लिखने में कुछ समय लग सकता है. +","lid-aaut likhne men kuchh time lead sakta hai +",6,2 +"57. Sam Sand dunes are a gift of nature to man. +","57. सम रेत के टीले मानव को प्रकृति का सर्वोत्तम उपहार है। +","57 sam sand ke tile man ko nature ka sarvottam gift hai. +",8,1 +"As a leading agency in all international initiatives UNESCO Education for All goals is to get the force and unity. +","एक अग्रणी अभिकरण के रूप में यूनेस्को सभी अन्तरराष्ट्रीय पहल को सबके लिए शिक्षा के लक्ष्य को पाने की ओर प्रवृत एवं एकजुट कर रही है। +","ek leading agency ke roop men yoonesko sabhi international initiatives ko sabke lie shiksha ke lakshy ko pane ki or prvrit evn ekjut kar rahi hai. +",7,1 +"du of dx is equal to cosine of x. +","du dx की कोज्या एक्स के लिए बराबर है। +","du dx ki kojya x ke lie barabar hai. +",9,2 +"In fact, clans or families which succeeded in winning chieftainship were readily admitted into the frame of Hindu polity as Kshatriyas or Rajputs. +","वास्तव में सरदार का पद जीतनेवाले वंशों या परिवारों को हिंदू राजनीतिक व्यवस्था में आसानी से क्षत्रियों या राजपूतों के रूप में स्वीकार कर लिया जाता था। +","fact men sardar ka frame jitnevale vnshon ya families ko hindu rajnitik polity men aasani se kshatriyas ya rajputs ke roop men svikar kar clans jata tha. +",7,3 +"Among them 13, 74, 283 lives were under subsidised category and 61, 133 lives were under General non - subsidised category. +","इनमें क्रमशः13,74,283 और 61,133 व्यक्ति सब्सिडी पाने वाले वर्ग में थे और 61,135 पूरा प्रीमियम देने वालों में थे। +","inmen kramsha13,74,283 aur 61,133 vyakti subsidised general vale varg men the aur 61,135 poora primiyam lives valon men the. +",8,1 +"The British press, condemning this demonstra - tion in strong words, stated that, by allowing Phadke to talk freely at every station, it looked as if he was an honour - able state guest instead of a convict going to Kalapani - LRB - Andamans - RRB -. +","अंग्रेजों के अखबार ने भी इस प्रदर्शन की कटु आलोचना करते हुए लिखा-सभी स्टेशनों पर रेल के डिब्बों से बाहर की ओर मुंह निकालकर उसे लोगों से बातचीत करने की इस प्रकार छूट दी गयी, जैसे कि वह काला पानी जाने वाला कैदी न होकर सरकार का कोई सम्मानित अतिथि है. +","british ke press ne bhi is pradarshan ki strong aalochna karte hue likha-sbhi station par rel ke dibbon se bahar ki or munh nikalakar use honour se able karne ki is prkar chhoot di gayi , jaise ki vah kala pani jane vala convict n hokar state ka koee sammanit guest hai +",8,3 +"There is no state you are in, whether reading from the Qur 'an, or doing something else, but We are watching you as you are engaged in it. There is not the weight of an atom on the earth and in the heavens that is hidden from your Lord, nor is there anything smaller or greater than this but is recorded in the perspicuous Book. +","तुम जिस दशा में भी होते हो और क़ुरआन से जो कुछ भी पढ़ते हो और तुम लोग जो काम भी करते हो हम तुम्हें देख रहे होते है, जब तुम उसमें लगे होते हो। और तुम्हारे रब से कण भर भी कोई चीज़ छिपी नहीं है, न धरती में न आकाश में और न उससे छोटी और न बड़ी कोई त चीज़ ऐसी है जो एक स्पष्ट किताब में मौजूद न हो +","tum jis dasha men bhi hote ho aur uraan se jo kuchh bhi pate ho aur tum log jo kam bhi karte ho ham tumhen dekh rahe hote hai, jab tum usmen lage hote ho. aur tumhare rab se kan bhar bhi koee chiz chhipi nahin hai, n dharti men n aakash men aur n usse chhoti aur n bari koee t chiz aesi hai jo ek perspicuous book men maujood n ho +",6,3 +"Computers which are connected by internet can do exchange of their information through rules of internet. +","अंतरजाल से जुडे हुए संगणक आपस मे अंतरजाल नियमावली () के जरिए सूचना का आदान-प्रदान करते है। +","connected by internet hue snganak aapas me antarjal rules ke jarie soochna ka aadan-prdan karte connected +",8,2 +"Mass unemployment in the country is a matter of grave concern. +","देश में व्यापक बरोजगारी एक बडी चिन्ता का विषय है। +","grave concern vyapak barojgari ek badi chinta ka vishay hai. +",7,1 +"Why, is he better who founded his building upon the fear of God and His good pleasure, or he who founded his building upon the brink of a crumbling bank that has tumbled with him into the fire of Gehenna? And God guides not the people of the evildoers. +","क्या जिस शख़्स ने ख़ुदा के ख़ौफ और ख़ुशनूदी पर अपनी इमारत की बुनियाद डाली हो वह ज्यादा अच्छा है या वह शख़्स जिसने अपनी इमारत की बुनियाद इस बोदे किनारे के लब पर रखी हो जिसमें दरार पड़ चुकी हो और अगर वह चाहता हो फिर उसे ले दे के जहन्नुम की आग में फट पडे और ख़ुदा ज़ालिम लोगों को मंज़िलें मक़सूद तक नहीं पहुंचाया करता +","kya jis shas ne uda ke auph aur ushnoodi par apni imarat ki buniyad dali ho vah good pleasure hai ya vah shas jisne apni imarat ki buniyad is crumbling bank ke lab par rakhi ho jismen darar par chuki ho aur agar vah chahta ho phir use le de ke jahannum ki aag men phat pade aur uda zalim logon ko mnzilen masood tak nahin pahunchaya karta +",5,3 +"The first gurus were Chunakkara Achutha Varier and Sankara Varier. +","प्रथम गुरु चुनक्करा अच्युत वारियर और शंकर वारियर रहे। +","pratham guru chunakkra achyut variyar aur shnkar variyar rahe. +",6,3 +"A tape with a magnetizable layer on which data can be stored. +","चुंबकीय परत वाला एक टेप, जिसपर डेटा संग्रहीत किया जा सकता है. +","chunbkiy parat vala ek tep, jisapar deta sngrhit kiya ja sakta hai +",9,2 +"It is also possible that with limited opportunities , there may be a competition amongst the ' old ' themselves not to talk of their conflicts with younger generations . +","यह भी संभव है कि सीमित अवसरों के कारण नौजवान पीढ़ी से प्रतिस्पर्धा की कौन कहे वृद्धों में आपस में ही प्रतिस्पर्धा हो जाए . +","yah bhi snbhav hai ki limited opportunities ke karan younger generations se prtispardha ki kaun kahe vriddhon men aapas men hi prtispardha ho jae +",8,1 +"that God may distinguish the corrupt from the good, and place the corrupt one upon another, and so heap them up all together, and put them in Gehenna; those are the losers. +","ताकि अल्लाह नापाक को पाक से छाँटकर अलग करे और नापाकों को आपस में एक-दूसरे पर रखकर ढेर बनाए, फिर उसे जहन्नम में डाल दे। यही लोग घाटे में पड़नेवाले है +","good god corrupt ko pak se chhantakar alag kare aur napakon ko aapas men ek-doosre par rakhakar dher banae , phir use gehenna men dal de. yahi log losers men parnevale hai +",7,2 +"PARTLY flattered by Mussolini 's courtship and partly curious to see for himself this colourful personality and its impact on an ancient and lively culture, Tagore accepted an invitation from Italy and sailed for Naples on 15 May 1926. +","कुछ तो मुसोलिनी के सम्मान निवेदन से प्रसन्न होकर और कुछ उसके रंगारंग व्यक्तित्व और प्राचीन तथा जीवंत संस्कृति पर उसके प्रभाव को देखने की चाह से रवीन्द्रनाथ ने इटली का आमंत्रण स्वीकार किया. वे 15 मई 1926 को नेपल्स के लिए रवाना हुए. +","kuchh to mussolini ke samman nivedan se prasann hokar aur kuchh uske colourful personality aur ancient tatha lively culture par uske impact ko dekhne ki chah se ravindrnath ne italy ka invitation svikar kiya ve 15 curious 1926 ko naples ke lie ravana hue +",6,3 +"and you take a glass of wine and you put your feet up. +","और आप वाइन के एक गिलास के साथ आराम से अपने पैर ऊपर कर के बैठते हैं. +","aur aap wine ke ek glass ke sath aaram se apne feet oopar kar ke baithte hain +",8,4 +"Law is an expression of the urge towards discipline, and self - control that has to be fostered in men and in social institutions. +","कानून उस अनुशासन और आत्म-संयम की प्रेरक अभिव्यक्ति है जिसका अनुपालन व्यक्तियों और सामाजिक संस्थाओं को करना होता है। +","law us discipline aur aatm-snyam ki urge expression hai jiska anupalan towards aur social institutions ko karna hota control +",7,2 +"Nominee of the insurance has to be a near relative of the subscriber. +","बीमा का नामित व्यक्ति अभिदाता का निकट संबंधी होगा। +","insurance ka nominee vyakti subscriber ka near snbndhi hoga. +",8,1 +"And I said, “What do you do?” +","और मैंने कहा, “तुम क्या करते हो” +","aur i kaha , tum kya karte ho +",5,2 +"To Ravana's question, Hanuman in his answer introduced himself as Ram's messenger. +","रावण के प्रश्न के उत्तर में हनुमान ने अपना परिचय राम के दूत के रूप में दिया। +","ravan ke prashn ke answer introduced hanuman ne apna parichay ram ke doot ke roop men diya. +",5,2 +"LEVEL : NEWS PAPERS IN HINDI LANGUAGE +","श्रेणी:हिन्दी भाषा के समाचार पत्र +","hindi language ke samachar papers +",8,1 +"There are probably other things in the world that the sheep can 't teach me, thought the boy as he regarded the old merchant. +","दुनिया में ऐसी कई और भी चीजें हैं, जो भेड़ें नहीं सिखा सकती। +","other men boy kee aur bhi things hain , jo sheep nahin sikha sakti. +",5,0 +"(a) the provisions of any existing law; or +","(क) किसी वर्तमान विधि के उपबंधों पर, अथवा +","k kisi existing law ke provisions par, athva +",8,4 +"With such modes and conventions ruling the stage, it is plausible to assume further that playwrights started preparing their scripts suitably and incorporated directives for acting and representation. +","मंचन को नियंत्रित करना भी संगत होगा कि नाटककार तदनुसार अपनी पांडुलिपियाँ तेयार करने लगे होंगे तथा अभिनय और प्रस्तुतीकरण के निर्देशों का समावेश करने लगे होंगे। +","mnchan ko niyntrit karna bhi sngat hoga ki natakkar tadnusar apni pandulipiyan teyar karne lage honge tatha abhinay aur prastutikaran ke nirdeshon ka samavesh karne lage honge. +",8,1 +"Badi Maa and Dana Pani were written for Hindi films. +","बडी मॉँ और दाणा पाणी हिन्दी फिल्मों के लिए लिखे गए थे। +","badi mn aur dana pani hindi films ke lie likhe ge the. +",9,0 +"We want you to rewrite this integral when +","हम आपको इस अभिन्न जब फिर से लिखना करने के लिए चाहता हूँ +","ham aapko is integral jab phir se likhna karne ke lie chahta hoon +",9,0 +"The degree of blurring from 1 to 127. +","1 से 127 तक धुंधला की डिग्री. +","1 se 127 tak degree of blurring +",8,3 +"He said, “Do not fear, I am with you, I hear and I see. +","फ़रमाया तुम डरो नहीं मैं तुम्हारे साथ हूँ (सब कुछ) सुनता और देखता हूँ +","farmaya tum daro nahin i tumhare sath see sab kuchh sunta aur dekhta see +",5,5 +"You can build your relationship together through those sometimes difficult teenage years . +","आप उसकी किशोरावस्था के दौरान , जो कभी-कभी बड़ी कठिन अवस्था होती है , उससे अपना निजी अंतरंग सम्बंध स्थापित कर सकते हैं . +","aap uski difficult teenage years , jo kabhi-kbhi bari kathin avastha hoti hai , usse apna niji antrng sambndh sthapit kar sakte hain +",6,4 +"In India 64. 8% literacy is there, in which 75. 3% men and 53. 7% woman are literate. +","भारत में ६४. ८ प्रतिशत साक्षरता है जिसमे से ७५. ३% पुरुष और ५३. ७% स्त्रियाँ साक्षर है। +","india men ६४ ८ prtishat literacy hai jisme se ७५ ३ men aur ५३ ७ striyan sakshar hai. +",8,2 +"The next thing is that, if you want to predict +","दूसरी ये कि, यदि आप पूर्वानुमानित करना चाहें +","doosri ye ki, yadi aap predict karna chahen +",8,1 +"And whomever We give a long life, We cause him to regress in creation. Then, will they not exercise their reason? +","और हम जिस शख्स को (बहुत) ज्यादा उम्र देते हैं तो उसे ख़िलक़त में उलट (कर बच्चों की तरह मजबूर कर) देते हैं तो क्या वह लोग समझते नहीं +","aur ham jis shakhs ko bahut long umr life hain to use ilat men ulat kar bachchon ki tarah majboor kar life hain to kya vah log reason nahin +",4,4 +"With momentum of time Marathi literature also became modern. +","मराठी साहित्य भी समय की गति क साथ साथ आधुनिक हो चुका है। +","marathi literature bhi time ki momentum k sath sath modern ho chuka hai. +",9,1 +"Mankind were one community, and Allah sent (unto them) prophets as bearers of good tidings and as warners, and revealed therewith the Scripture with the truth that it might judge between mankind concerning that wherein they differed. And only those unto whom (the Scripture) was given differed concerning it, after clear proofs had come unto them, through hatred one of another. And Allah by His Will guided those who believe unto the truth of that concerning which they differed. Allah guideth whom He will unto a straight path. +","(पहले) सब लोग एक ही दीन रखते थे (फिर आपस में झगड़ने लगे तब) ख़ुदा ने नजात से ख़ुश ख़बरी देने वाले और अज़ाब से डराने वाले पैग़म्बरों को भेजा और इन पैग़म्बरों के साथ बरहक़ किताब भी नाज़िल की ताकि जिन बातों में लोग झगड़ते थे किताबे ख़ुदा (उसका) फ़ैसला कर दे और फिर अफ़सोस तो ये है कि इस हुक्म से इख्तेलाफ किया भी तो उन्हीं लोगों ने जिन को किताब दी गयी थी और वह भी जब उन के पास ख़ुदा के साफ एहकाम आ चुके उसके बाद और वह भी आपस की शरारत से तब ख़ुदा ने अपनी मेहरबानी से (ख़ालिस) ईमानदारों को वह राहे हक़ दिखा दी जिस में उन लोगों ने इख्तेलाफ डाल रखा था और ख़ुदा जिस को चाहे राहे रास्त की हिदायत करता है +","pahle sab log ek hi din rakhte the phir aapas men jhagarne lage tab uda ne najat se ush bri dene vale aur azab se darane vale paimbron ko bheja aur in paimbron ke sath baraha kitab bhi nazil ki taki jin baton men log jhagarte the kitabe uda uska faisla kar de aur phir afsos to ye hai ki is hukm se ikhtelaph kiya bhi to unhin logon ne jin ko kitab di gayi thi aur vah bhi jab un ke pas uda ke saph ehkam aa chuke uske bad aur vah bhi aapas ki shararat se tab uda ne apni meharbani se alis eemandaron ko vah rahe ha dikha di jis men un logon ne ikhtelaph dal rakha tha aur uda jis ko chahe rahe rast ki hidayat karta hai +",6,3 +"What is today 's status of Consolidated Stock? +","समेकित स्टॉक की आज की स्थिति क्या है। +","consolidated stock ki today ki status kya hai. +",8,3 +"They are nocturnal animals, sleeping during the day and hunting at night, singly or in pairs. +","दिन में यह सोती रहती है और रात में अकेले या जोड़े में शिकार करती है। +","din men yah soti rahti hai aur rat men akele ya jore men day and hunting +",4,4 +"Bridge critical gaps in local infrastructure and other development requirements that are not being adequately met through existing inflows. +","स्थानीय बुनियादी ढांचे और अन्य विकास की महत्वपूर्ण आवश्यकताओं के बीच के अंतर को पाटना, जिसे मौजूदा विकास प्रवाह में भली प्रकार से दूर नहीं किया जा रहा है। +","local infrastructure dhanche aur any vikas ki mahatvpoorn aavashyaktaon ke bich ke gaps in local, jise maujooda vikas prvah men bhali prkar se door nahin kiya ja raha hai. +",6,3 +"Amazed at the strength of her love and at the same time ardently desiring to get rid of herYama granted a series of boons to her, in course of which, in a psychological moment, Savitri made him grant that she would have a hundred sons by Satyavan! +","सावित्री के प्रेम की शक्ति से चकित होकर तथा इसी के साथ उससे पीछा छुड़ाने की उत्कट इच्छा से यम ने उसे कई वरदान दिए और उन्हीं वरदानों के क्रम में सावित्री ने एक मनोवैज्ञानिक क्षण में उनसे यह भी स्वीकार कराया कि उसे सत्यवान से सौ पुत्रों की प्राप्ति हो। +","savitri ke prem ki shakti se chakit hokar tatha isi ke sath usse pichha chhurane ki utkat ichchha se yam ne use kee vardan die aur unhin vardanon ke kram men savitri ne ek manovaijnjanik kshan men unse yah bhi svikar karaya ki use satyvan se sau putron ki prapti ho. +",6,5 +"I usually get up at eight o 'clock. +","मैं आमतौर आठ बजे सोकर उठता हूँ। +","i aamtaur aath baje sokar uthta hoon. +",7,4 +"And it 's good to always do a reality check after every step. +","और यह हमेशा हर कदम के बाद एक वास्तविकता की जांच करने के लिए अच्छा है। +","aur yah hamesha har step ke bad ek reality ki janch karne ke lie achchha good +",8,1 +"Who avoid the deadly sins, immoral acts, and forgive when they are angered, +","जो बड़े-बड़े गुनाहों और अश्लील कर्मों से बचते है और जब उन्हे (किसी पर) क्रोध आता है तो वे क्षमा कर देते हैं; +","jo bare-bare sins aur ashlil avoid the deadly hai aur jab unhe kisi par krodh aata hai to ve kshma kar dete hain +",4,5 +"Human body consists of head, neck, torso, arms and legs. +","मनुष्य शरीर में शीश, गर्दन, धड़, बाजु तथा टांगें होती हैं +","human body men torso , neck , dhar , baju tatha tangen hoti hain +",9,2 +"Child - 3: Tell us now, Grandpa! +","बच्चा 3: फिर सुनाओ, दादा! +","child 3: phir sunao, grandpa! +",10,0 +"The requested device could not be initialized (""mounted""). The reported error was:% 1 +","निवेदित उपकरण इनिशियलाइज़ (""माउन्टेड"") नहीं किया जा सकता. रिपोर्ट की गई त्रुटि हैः% 1 +","requested device inishiylaiz maunted nahin kiya ja sakta riport ki gee reported error 1 +",5,7 +"The location “% s” does not exist. +","स्थान “% s” मौज़ूद नहीं है. +","location s mauzood nahin hai +",9,0 +"follow the line all the way from B to E, +","बी से ई तक की रेखा के पीछे पूरे रास्ते चलिए, +","b se ee tak ki line ke way poore raste chalie , +",7,2 +"was that it was legal to sell you +","ये कानूनन सही है कि आपको बेचा जाय +","ye legal sahi hai ki aapko becha jay +",7,1 +"Surely the Day of Judgement has an appointed time; +","निस्संदेह फ़ैसले का दिन एक नियत समय है, +","nissndeh judgement ka day ek niyat time hai , +",9,1 +"In our own area, we are striving ceaselessly to clear old suspicions, to remove barriers to understanding and to create conditions for an enduring friendship between Bangladesh, Pakistan and ourselves. +","स्वयं अपने क्षेत्र में हम लगातार कोशिश कर रहे है कि पुराने संदेह दूर हो, आपसी समझ की राह खुले और बंगलादेश, पाकिस्तान तथा भारत के बीच स्थायी मित्रता के लिए परिस्थितियां अनुकूल बने। +","own apne area men old lagatar koshish kar rahe hai ki purane suspicions clear ho , aapsi samajh ki barriers khule aur bangladesh , pakistan tatha bharat ke bich sthayi friendship ke lie paristhitiyan anukool bane. +",7,0 +"Jute plants need a temperature ranging from 21 to 38 degrees Celsius and relative humidity of 70 to 80 per cent. +","पटसन के पौधों को 21 से 38 डिग्री सेलसियस तापमान तथा 70 से 80 प्रतिशत सापेक्ष आर्द्रता की जरूरत पड़ती हैं। +","jute ke plants ko 21 se 38 degrees selsiyas temperature tatha 70 se 80 cent relative humidity ki jaroorat parti hain. +",9,0 +"In the interview , Bharali has given a blow-by-blow account of what supposedly happened after the “ marriage ” . +","अपने इंटरव्यू में भराली ने ' शादी के बाद ' की हर घटना का क्रमवार यौरा दिया है . +","apne interview men bharali ne marriage ke bad ki har happened ka kramvar yaura diya hai +",7,1 +"In the recent past, bilateral cooperation has seen significant acceleration and expansion to include almost all areas of mutual interest. +","पिछले दिनों द्विपक्षीय संबंधों में काफी गति तथा विस्तार हुआ है और उसमें लगभग सभी क्षेत्र शामिल हैं। +","recent dinon bilateral snbndhon men significant acceleration tatha expansion huaa hai aur usmen interest sabhi kshetr shamil hain. +",8,2 +"Example: in the panel [XML:: RSS] (panel) [mygape] (PHP), [rom] (java) etc. +","उदाहरणः सीपैन में [XML:: RSS] (पर्ल) [मैगपी] (पीएचपी) [रोम] (जावा) आदि। +","example sipain men XML : : panel etc xml php rom java aadi. +",7,2 +"Sugar Machinery: - domestic manufacturers occupy predominant position in the global scenario and are capable of manufacturing from concept to commissioning stage sugar plants of latest design for a capacity upto 10, 000 TCD (tons crushing per day). +","वर्तमान में संपूर्ण चीनी संयंत्रों के विनिर्माण के लिए संगठित क्षेत्र में 2 इकाइयां हैं और प्रति वर्ष लगभग 200 करोड़ की संस्थापित क्षमता वाले पुर्जे हैं। +","latest men snpoorn sugar domestic ke manufacturers ke lie sngthit kshetr men tons ikaiyan hain aur prti varsh global 200 position ki snsthapit capable vale purje hain. +",7,1 +"Unfortunately, some people who have been the victim of crime are more vulnerable, in the short term, to further crime. +","दुर्भाग्यवश , अपराध के शिकार हुए कुछ लोगों में फिर से उसके शिकार बनने की अधिक प्रवृत्ति होती है | +","people , crime ke victim hue kuchh logon men phir se uske victim banne ki further prvritti hoti hai +",7,1 +"We're going to go back to the moon ... 50 years later? +","हम चाँद पे फिर से जा रहे हैं - 50 साल बाद - +","ham moon pe phir se ja rahe hain - 50 years bad - +",9,0 +"We also sent down blessed water from the heaven, wherewith We caused gardens and harvest - grain to grow, +","और हमने आसमान से बरकत वाला पानी बरसाया तो उससे बाग़ (के दरख्त) उगाए और खेती का अनाज और लम्बी लम्बी खजूरें +","aur hamne aasman se barakat vala pani wherewith we caused ba ke darakht ugae aur kheti ka anaj aur lambi lambi khajooren +",7,2 +"Let all those who care and long for freedom and the independence of India meet this test with strength and confidence, and march together to the free India of our dreams. 1 do not think that the Hindu Mahasabha can get any seat except in Bengal. +","जो लोग भारत की आजादी के लिए चिन्ता करते हैं और उसके इच्छुक हैं, वे सब शान्ति और विश्वास के साथ इस कसौटी का सामना करें और हमारे सपनों के स्वतंत्र भारत की दिशा में कंधे से कंधा मिलाकर आगे बढें। +","jo strength india ki freedom ke lie chinta karte hain aur uske ichchhuk hain , ve mahasabha shanti aur confidence ke sath is test ka meet karen aur hamare dreams ke independence india ki disha men kndhe se kndha milakar aage badhen. +",6,3 +"The Kalam - pattu in the Vaikkom temple is sung inside a big thatched shed in the extensive courtyard on the northern side of the temple. +","वैकोम के मंदिर में कलमपट्ट एक बहुत बड़ी झोपड़ी में बैठकर गाया जाता है जो मंदिर के बहुत बड़े प्रांगण के उत्तरी भाग में स्थित है। +","vaikom ke mndir men kalamapatt ek bahut big thatched shed baithakar gaya jata hai jo mndir ke bahut bare prangan ke uttri bhag inside a big +",7,1 +"She was, in the words of Stocqueler, 'for talents and personal attractions without a rival even in England. +","स्टॉक्वेलर के शब्दों में वह प्रतिभा और व्यक्तिगत आकर्षण में इंगलैंड भर में अपना सानी नहीं रखती थी। +","stkvelar ke shabdon men vah talents and personal aakarshan men inglaind bhar men apna sani nahin rakhti thi. +",7,0 +"I hurried so as not to miss the train. +","मैंने जल्दी करी जिससे कि ट्रेन न छूट जाए। +","mainne jaldi kari jisse ki tren n chhoot jae. +",9,1 +"Provided that the amount of income-tax calculated on the income by way of short-term capital gains referred to in section 111A shall be at the rate of fifteen per cent; +","परंतु धारा 111क में उल्लिखित अल्पकालिक पूंजी अभिलाभों के रूप में आय पर परिकलित आय-कर की रकम पंद्रह प्रतिशत की दर से होगी; +","parntu section 111k men ullikhit alpkalik way abhilabhon ke roop men income par pariklit aay-kar ki amount fifteen prtishat ki rate se hogi +",7,4 +"As for the landlords, who in many provinces formed the link between the Government and the cultivators, as a class they did not stir a finger to help or encourage their tenants. +","जहां तक मालगुजारों का संबध था, जो कई प्रांतों में Zकिसान और सरकार के बीच संबंध बनाये हुये थे. एक वर्ग के रूप में उन्होने अपने किरायेदारों की सहायता या प्रोत्साहन के लिए उंगली तक नहीं हिलाई. +","jahan tak malgujaron ka snbadh tha, jo kee provinces formed Zkisan aur sarkar ke bich snbndh banaye huye the ek varg ke roop men unhone apne kirayedaron ki sahayta ya protsahan ke lie ungli tak nahin hilaee +",4,7 +"Reading is a complex cognitive process of decoding symbols for the purpose of deriving meanings. +","पाठन, अर्थ प्राप्त करने के उद्देश्य से प्रतीकों के विकोडन की एक जटिल संज्ञानात्मक प्रक्रिया है। +","reading , meanings prapt karne ke purpose se symbols ke vikodan ki ek complex cognitive process hai. +",8,4 +"This term is used to mention two parts or components usually in pairs. +","सामान्यतः एक वस्तु के दो भाग या उपकरणों की जोड़ियों केलिए इस पद का प्रयोग किया जाता है। +","samanyta ek vastu ke do parts ya upakarnon ki pairs kelie is term ka pryog kiya jata hai. +",9,2 +"The sikhara on top also appears to have been square. +","ऊपर शिखर भी वर्गाकार रहा होगा. +","oopar sikhara bhi square raha hoga +",9,1 +"And all that which they used to earn availed them not. +","फिर जो कुछ वे कमाते रहे, वह उनके कुछ काम न आ सका +","phir jo kuchh ve kamate rahe , vah unke kuchh kam n aa saka +",9,1 +"The first signs of ill-health are the cessation of rumination , and drop in milk yield . +","बीमारी का पहला लक्षण तो यह है कि जानवर जुगाली करना बंद कर देता है.दूध भी वह कम मात्रा में देने लगता है . +","bimari ka pahla lakshan to yah hai ki janavar jugali karna bnd kar deta haidoodh bhi vah kam matra men dene lagta hai +",9,1 +"and, when reminded, do not remember +","और जब उन्हें याद दिलाया जाता है, तो वे याद नहीं करते, +","aur jab unhen remember dilaya jata hai, to ve remember nahin karte, +",8,1 +"Font for text with fixed width, such as code examples. +","कोड उदाहरण के रूप में, फिक्स्ड चौड़ाई के साथ पाठ के लिए फ़ॉन्ट. +","code such ke roop men , fixed chauraee ke sath text ke lie font +",7,2 +"The highest amount of money that is required to be paid. +","अधिक से अधिक राशि जो मूल्य रुप मे दी जानी हो। +","highest se highest amount jo mooly rup me di jani ho. +",9,1 +"Ladies and Gentlemen,I invite you to please join me in raising a toast: +","देवियो और सज्जनो, आइए हम सब मिलकरः +","ladies aur gentlemen , aaie ham sab milakra +",6,7 +"The male condom is any of the effective and safe method of contraception. +","पुरुष कंडोम गर्भ-निरोधक का सबसे प्रभावी और सुरक्षित उपाय है। +","male condom garbh-nirodhak ka sabse effective and safe upay effective +",6,1 +"Welcome to Evolution. The next few screens will allow Evolution to connect to your email accounts, and to import files from other applications. +","एवोल्यूशन में स्वागत है. अगला कुछ स्क्रीन आपके एवोल्यूशन को आपके ईमेल खाते से जुड़ने में सक्षम बनायेगा, और अन्य अनुप्रयोगों से फ़ाइल को आयात करेगा. +","evolution men welcome hai next kuchh screens aapke evolution ko aapke email accounts se jurne men saksham few , aur other applications se fail ko aayat karega +",5,5 +"If I had a dozen of a dozen eggs - - a dozen is twelve. +","अगर मेरे पास 1 दर्ज़न के दर्ज़न अंडे हैं-- एक दर्ज़न 12 के बराबर होता है. +","agar mere pas 1 twelve ke twelve eggs hain-- ek twelve 12 ke barabar hota hai +",3,6 +"Now, let 's think about what that is +","तो हम इसके बारे मे सोचते हैं वो क्या है +","to ham iske bare me sochte hain vo kya hai +",9,1 +"Her body stiffened as the spur thrust, and slackened again. +","भूख के पंजों की चुम्बन महसूस होते ही उसकी देह ऐंठ जाती और फिर दुबारा ढीली पड़ जाती। +","thrust ke pnjon ki chumban mahsoos hote hi uski body aenth jati aur phir dubara dhili par jati. +",7,1 +"Dr Bhanu may have been persuaded to step in because a business partner is close to former chief minister S. Bangarappa, who in turn is related to Rajkumar. +","भानु को भूमिका निभाने के लिए शायद इसलिए तैयार किया गया कि एक व्यावसायिक साज्हीदार के पूर्व मुयमंत्री एस. बंगारप्पा से, जो राजकुमार के रिश्तेदार हैं, निकट संबंध हैं. +","bhanu ko bhoomika nibhane ke lie shayad islie taiyar kiya gaya ki ek business partner ke chief minister es bngarappa se, jo rajkumar ke rishtedar hain, nikat snbndh hain +",7,3 +"But he who is given the Record behind his back, +","और रह वह व्यक्ति जिसका कर्म-पत्र (उसके बाएँ हाथ में) उसकी पीठ के पीछे से दिया गया, +","aur record vah vyakti jiska karm-patr uske baen hath men uski back ke pichhe se diya gaya , +",7,1 +"So just to remind ourselves, 5 and 5 / 8 is the exact same thing +","तो खुद को याद दिलाने के लिए, 5 और 5/8 बिल्कुल एक ही +","to khud ko yad dilane ke lie , thing aur 58 exact ek hi +",4,2 +"Products with factory price are available in show room +","फैक्टरी कीमत पर उत्पाद शो रूम में उपलब्ध है। +","factory price par utpad sho room men upalabdh hai. +",6,5 +"Excepting those who thereafter shall repent and make amends. Verily Allah is Forgiving, Merciful. +","सिवाय उन लोगों के जो इसके पश्चात तौबा कर लें और सुधार कर लें। तो निश्चय ही अल्लाह बहुत क्षमाशील, अत्यन्त दयावान है +","sivay un logon ke jo iske merciful amends kar len aur sudhar kar len. to nishchay hi allah bahut kshmashil , atyant dayavan hai +",8,2 +"But any one of these eight million odd different sperms may fertilise any one of the same number of possible ova at the time of conception to form a genotype consisting of 23 pairs of chromosomes. +","इन अस्सी लाख शुक्राणुओं में से कोई भी एक उतनी ही बड़ी संख्या के डिंबों में से किसी एक को संषेचित कर एक नया आनुवंशिक रूप उत्पन्न कर सकता है। +","in assi lakh shukranuon men se koee bhi ek utni hi bari snkhya ke dinbon men se kisi ek ko snshechit kar ek form a genotype utpann kar sakta hai. +",7,1 +"Something which is dangerous or risky for survival. +","ऐसी वस्तू जो जीवन या उत्पति के लिए संकटजन्य है +","aesi vastoo jo jivan ya utpti ke lie snkatajany hai +",4,7 +"Bharavi was almost a contemporary of Kalidasa. +","भारवि करीब करीब कालिदास के समकालीन थे. +","bharvi karib karib kalidas ke contemporary the +",9,1 +"Following problems were found with the data you entered: +","डाटा जो आपने भरा है उसके कारण निम्न समस्याएँ मिलींः +","data you entered bhara hai uske karan nimn samasyaen milina +",6,1 +"This is a case of congenital megalogastria. +","यह जन्मजात उदरविस्फार की स्थिती है. +","yah congenital udarvisphar ki case hai +",8,1 +"Water resources development and management will have to be planned for a hydrological unit. +","एक हाइड्रोलॉजिकल इकाई के लिए जल संसाधन विकास और प्रबंधन की योजना बनानी होगी। +","ek hydrological unit ke lie water resources development aur management ki yojna banani hogi. +",10,0 +"if culture changes us, as indeed it does, +","अगर संस्कृति हमें परिवर्तित करती हो, जो कि वह वाकई करती है - +","agar culture hamen changes karti ho , jo ki vah vakee karti hai - +",7,1 +"plus i, and then you pay your monthly payment. +","इसके अलावा i, और फिर आप अपने मासिक भुगतान का भुगतान। +","iske alava i, aur phir aap apne monthly payment ka payment +",8,1 +"Family Planning Association of India and Branch offices. +","भारतीय परिवार नियोजन संघ और शाखा कार्यालय। +","india family planning association aur shakha karyalay. +",7,1 +"Such drafts which are presented for payment not accompanied by the advice from the remitter bank. +","ऐसे ड्राफ्ट जिन्हें भुगतान के लिए बिना प्रेषक बैंक द्वारा जारी सूचना पत्र के प्राप्त हुए प्रस्तुत किया जाए। +","aese drafts jinhen such ke lie bina remitter bank dvara jari advice patr ke prapt hue prastut kiya jae. +",6,3 +"Habitat They live near water in open tree - and shrub - grasslands. +","निवास: ये पेड़ और घास वाले खुले मैदानों में रहते हैं। +","habitat : ye tree aur ghas vale khule near men rahte water +",6,1 +"If the children have had some experience in play - making before they do this project, the making of the story will go more quickly than if they have not had previous experience. +","यदि बच्चों को, इस परियोजना से पूर्व नाट्य रचना का कुछ अनुभव है, तो परियोजना की कथा को बनाने में उन्हें कम समय लगेगा। +","yadi children ko , is project se previous play rachna ka kuchh experience hai , to project ki story ko banane men unhen kam samay lagega. +",9,2 +"Whether the image gallery pane should be resizable. +","क्या छवि गैलरी फलक बदलने योग्य होना चाहिए. +","kya image gallery pane badalne yogy hona chahie +",8,3 +"Do you call on Ba 'lan (the idol Baal) and abandon the Best Creator, +","क्या तुम 'बअत' (देवता) को पुकारते हो और सर्वोत्तम सृष्टा। को छोड़ देते हो; +","kya tum bat ba ko pukarte ho aur best creator ko chhor dete ho +",6,1 +"The notion of CSR is not new to India. +","कॉरपोरेट सामाजिक उत्तरदायित्व का विचार भारत के लिए नया नहीं है। +","csr samajik uttardayitv ka notion bharat ke lie new nahin hai. +",9,0 +"& Choose which service to edit: +","चुनें कि कौन सी सेवा संपादित करनी हैः (C) +","chunen ki kaun si service snpadit karni haia C +",5,6 +"Another intriguing structure at the Imambara is the five - storied baoli (step well), which belongs to the pre - Nawabi era. +","इमामबाड़े की एक और विहित संरचना 5 मंजिला बावड़ी (सीढ़ीदार कुंआ) है, जो पूर्व नवाबी युग की है। +","imambare ki ek aur vihit snrachna 5 mnjila bavari siidar kunaa hai, jo poorv navabi yug ki hai. +",4,7 +"The Soviet Union shares the Indian view on the maintenance of peace and the elimination of racialism and colonialism. +","शांति बनाए रखने और रंगभेद तथा उपनिवेशवाद को समाप्त करने के बारे मे सोवयत संघ और भारत के विचार एक जैसे हैं। +","indian maintenance rakhne aur racialism soviet colonialism ko elimination karne ke bare me sovayat union aur bharat ke view ek jaise hain. +",7,2 +"And of His signs is the creation of the heavens and earth and the crawling things He has scattered abroad in them; and He is able to gather them whenever He will. +","और उसी की (क़ुदरत की) निशानियों में से सारे आसमान व ज़मीन का पैदा करना और उन जानदारों का भी जो उसने आसमान व ज़मीन में फैला रखे हैं और जब चाहे उनके जमा कर लेने पर (भी) क़ादिर है +","aur usi ki udarat ki nishaniyon men se sare heavens and earth ka paida karna aur un jandaron ka bhi jo usne heavens and earth men scattered abroad hain aur jab chahe unke jama kar lene par bhi adir hai +",7,2 +"working together for a common goal +","किसी सामान्य उद्देश्य के लिए मिलकर काम करना +","kisi common goal ke lie milakar kam karna +",8,0 +"Mangle From: / To: headers in replies to replies +","जवाब के जवाब में द्वाराः/कोः हेडर्स बिगड़े +","replies ke replies men dvaraakoa headers bigare +",6,0 +"The Skene 's glands is more commonly known as the G - spot. +","स्कीन ग्रन्थियाँ सामान्यतः जी-स्पॉट के रूप में जानी जाती हैं. +","skin granthiyan samanyta ji-spt ke roop men jani jati hain +",9,2 +"In tha Law there are a number of bylaws under one law. +","विधि में एक नियम के अंतर्गत कई उप नियम होते हैं। +","vidhi men ek law ke number kee tha law hote hain. +",6,3 +"Disable the new tab page menu for accessing tabs on other devices. +","अन्य उपकरणों पर टैब पर पहुंचने के लिए नया टैब पृष्ठ अक्षम करें. +","new devices par tab par menu ke lie naya tab page aksham karen +",8,3 +"Moreover , even if we resolved the dispute by circumscribing its scope to some particular field of human endeavour and did agree on what is ' excellence ' , there is no knowing that it would be passed on to children . +","और किसी विशिष्ट क्षेत्र के संदर्भ में उत्कृष्टता का अर्थ क़्या होगा , इस बात का निर्णय हम लोगों ने कर भी लिया तब भी आनेवाली पीढ़ी की संतानों में यह गुण दिखाई देगा , इस बात की कोई गारंटी नहीं दी जा सकती . +","aur kisi vishisht kshetr ke sndarbh men utkrishtta ka arth ya hoga , is bat ka nirnay ham logon ne kar bhi liya tab bhi aanevali pii ki sntanon men yah gun dikhaee dega , is bat ki koee garnti nahin di ja sakti +",4,6 +"There is a proposal to renew the outstanding bonds by exercising option. +","विकल्प द्वारा आशोधित बांड के नवीकरण का प्रस्ताव विचाराधीन है। +","option dvara aashodhit band ke navikaran ka prastav vicharadhin hai. +",8,1 +"Vaccine is available and cannot be given during pregnancy. Women vaccincated against varicella should not try to conceive for at least one month after vaccination. +","टीका उपलब्ध है और गर्भवती स्त्रियों को नहीं दिया जा सकता है. टीका लेने के बाद स्त्रियों को कम से कम एक महीने तक गर्भधारण नहीं करना चाहिये. +","vaccine available hai aur pregnancy women ko nahin diya ja sakta hai vaccine lene ke bad women ko least se least ek month tak garbhdharan nahin karna chahiye +",7,4 +"going to be aligned at the center of the cell. +","कोशिका के केंद्र में पंक्ति बद्ध होंगे. +","cell ke kendr men pnkti baddh honge +",6,5 +"budha 's birthday is still conducted in theravada countries and his mother got death after 7 days of his birth +","बुद्ध का जन्म दिन व्यापक रूप से थएरावदा देशों में मनाया जाता है उनकी माता का उनके जन्म के सात दिन बाद निधन हो गया था। +","buddh ka janm din vyapak roop se theravda deshon men manaya jata hai unki mata ka unke janm ke sat din bad nidhan ho gaya tha. +",9,1 +"Then came forward Rajaraja Varma, diffident and nervous. +","इसके बाद भयभीत और आशंका से भरे राजराज वर्मा सामने आए। +","iske bad bhaybhit aur aashnka se bhare rajraj varma samne forward +",7,0 +"After a few minutes' silence, Gora said, Please don 't involve me in all this. +",">> गोरा ने थोड़ी देर चुप रहकर कहा, देखिए, इन सब मामलों में मुझे न फँसाइये। +","gora ne thori der chup rahakar kaha, dekhie, in sab mamlon men mujhe n phnsaiye. +",5,8 +"Another program on your computer added an extension that may change the way Chrome works. +","आपके कंप्यूटर पर किसी अन्य प्रोग्राम ने एक्सटेंशन जोड़ा है, जो Chrome के काम करने के तरीके को बदल सकता है. +","aapke computer par kisi any program ne extension jora hai , jo Chrome ke works karne ke tarike ko chrome sakta hai +",8,0 +"This vagueness persisted in the dynamical equations for the particles. +","यह अस्पष्टता कणों के गतिकीय समीकरणों में चलती रही। +","yah aspashtta kanon ke dynamical equations men chalti rahi. +",7,5 +"In India 64. 8% literacy is there, in which 75. 3% men and 53. 7% woman are literate. +","भारत में ६४. ८ प्रतिशत साक्षरता है जिसमे से ७५. ३% पुरुष और ५३. ७% स्त्रियाँ साक्षर है। +","india men ६४ ८ prtishat literacy hai jisme se ७५ ३ men aur ५३ ७ striyan literate hai. +",9,1 +"Don 't bunt. Aim out of the ball park. Aim for the company of immortals. +","गेंद को दो रन के लिए सरकाइए मत। उसे मैदान से बाहर पहुँचाने के लिए निशाना साधिए। अमर व्यक्तियों के साथ का लक्ष्य बनाइए। +","ball ko do ran ke lie don mat. use park se bahar pahunchane ke lie aim sadhie. amar vyaktiyon ke sath ka lakshy company +",5,0 +"The festivities last ten days and nights, the first nine nights of which are the 'Navaratri', dedicated to the worship of different aspects of Durga in some areas and also of Lakshmi or Saraswati in others. +","यह उत्सव दस दिनों चल चलता है, जिनमें से पहली नौ रातें कई क्षेत्रों में दुर्गा और कई क्षेत्रों में लक्ष्मी या सरस्वती को समर्पित होती हैं। +","yah festivities ten last first chalta hai , jinmen se pahli others nights kee aspects men durga aur kee aspects men lakshmi ya saraswati ko samarpit hoti hain. +",7,1 +"Hence he came to be called Padmapada. +","इसी से उसका नाम पद्मपाद पड गया। +","isi se uska called padmpad pad gaya. +",6,8 +"2. Parliament government is more useful watching the India's variety all category of people can be taken in ministry. +","2. भारत की विविधता को देखते हुए संसदीय शासन ज्यादा उपयोगी है इस मे देश के सभी वर्गों के लोग मंत्रि परिषद मे लिये जा सकते है +","2 bharat ki vividhta ko dekhte hue parliament government jyada upyogi hai is me desh ke sabhi vargon ke log mntri parishad me liye ja sakte hai +",5,6 +"that's been viewed four million times. +","और उसको भी चालीस लाख बार देखा गया है। +","aur usko bhi chalis lakh times dekha gaya hai. +",8,2 +"The court said that the words were merely laughable and incapable of producing any effect on the readers. +","न्यायालय ने कहा कि वे शब्द सिर्फ हास्यास्पद थे और पाठकों पर कोई प्रभाव डालने में अक्षम थे। +","nyayalay ne kaha ki ve shabd sirph hasyaspad the aur pathkon par koee prbhav incapable of producing the. +",8,1 +"By contrast , one LSD trip might result in psychological damage to somebody with latent mental illness . +","इसके विपरीत एलएसडी का एक ही बार दम लगाने से किसी प्रच्छन्न दिमाग़ी रोग वाले व्यक्ति को मनोवैग्यानिक हानि पहुँचने की संभावना हो सकती है । +","iske viprit elesdi ka ek hi bar dam lagane se kisi latent mental illness vale vyakti ko manovaigyanik hani pahunchne ki snbhavna ho sakti hai . +",6,6 +"The violin bow might well have grown out of the act of fire-making by scraping one rod over another . +","बहुत संभव है कि वायलिन का गज भी एक छड़ी को दूसरी छड़ी पर रगड़कर आग जलाने वाली सामान्य जीवन की क्रिया का ही विकसित रूप हो . +","bahut snbhav hai ki violin ka bow bhi ek rod ko doosri rod par act aag jalane vali samany jivan ki kriya ka hi viksit roop ho +",6,5 +"An error occurred while trying to set up sync. +","सिंक सेट अप करने का प्रयास करते समय एक त्रुटि उत्पन्न हुई. +","sync set ap karne ka pryas karte samay ek error utpann huee +",9,0 +"An amount of notes and cashes that the cashier maintain in his cash - box for operations. +","नोटों या सिक्कों की ऐसी राशि जो खजांची दैनिक कार्य व्यवहार के लिए अपने नकदी बॉक्स में रखता हो। +","notes ya sikkon ki aesi amount jo cashes dainik kary vyavhar ke lie apne nakdi box men rakhta ho. +",7,2 +"And the plants and the trees prostrate (for Him). +","और बूटियाँ बेलें, और दरख्त (उसी को) सजदा करते हैं +","aur plants belen , aur darakht usi ko sajda karte hain +",7,1 +"Speaking on the occasion, the President said India is fortunate to have a large young population to take forward her aspirational agenda of change. +","इस अवसर पर, राष्ट्रपति ने कहा कि, भारत सौभाग्यशाली है कि उसके पास परिवर्तन की आकांक्षापूर्ण कार्यसूची की प्राप्ति के लिए विशाल युवा पीढ़ी है। +","is occasion par , president ne kaha ki , india fortunate hai ki uske pas change ki population agenda ki prapti ke lie large young pii hai. +",7,3 +"At 13, Teleza is the chairperson of her school 's anti - HIV / AIDS club as well as president of the local Girl Guides chapter. +","13 वर्ष की तेलेज़ा अपने स्कूल के एचआईवी/एड्स रोकथाम क्लब व स्थानीय गल्स्र गाइड शाखा की अध्यक्ष है। +","girl varsh ki teleza apne school ke echaaeevieds roktham club v local galsr guides chapter ki chairperson hai. +",5,3 +"Many scholars - and , of course , there are many who dispute the point - are of the opinion that quite possibly the idea of making a harp originated in the twang of the hunting or martial bow and the plectrum in the arrow . +","हालांकि अनेक विद्वान इस मत का विरोध करते हैं , फिर भी बहुत से विद्वानों की यह मान्यता है कि तंत्र-वाद्य के निर्माण का विचार संभवत : शिकारी या युद्ध संबंधी धनुष और बाण के कोण द्वारा उत्पन्न टंकार से दिमाग में आया होगा . +","course many vidvan is point ka virodh karte hain , phir bhi bahut se scholars ki yah manyta hai ki tntr-vady ke nirman ka vichar snbhavat : hunting ya martial snbndhi harp aur arrow ke kon dvara utpann twang se dimag men aaya hoga +",7,1 +"Corporal punishment should be banished from schools and students should be encouraged to take positive initiatives. +","स्कूलों में बच्चों को शारीरिक दण्ड देने पर रोक होनी चाहिए और विद्यार्थियों को रचनात्मक पहल करने के लिए प्रोत्साहित किया जाना चाहिए। +","schools men students ko corporal punishment dene par rok honi chahie aur vidyarthiyon ko positive initiatives karne ke lie protsahit kiya jana chahie. +",7,5 +"Suddenly, Uttama spotted a peculiar object lying among the coral. +","अचानक उत्तम को मूंगे की चटटानों के बीच में एक विचित्र सी चीज पडी हुई दिखाई दी। +","achanak uttam ko coral ki chattanon ke bich men ek peculiar si object lying huee dikhaee di. +",8,2 +"Chromium is no longer updating because your operating system is obsolete. +","क्रोमियम अब और अपडेट नहीं कर रहा है क्योंकि आपका ऑपरेटिंग सिस्टम अप्रचलित है. +","chromium ab aur updating nahin kar raha hai kyonki aapka operating system aprachlit hai +",9,0 +"An elementary Hindi translation of Srimad Bhagwat Geeta. +","श्रीमद् भगवद्गीता का सरल हिन्दी मे आनुवाद +","shrimad bhagavadgita ka saral elementary hindi translation +",8,1 +"Element of cost cannot be ignored while preparing a project. +","किसी परियोजना को बनाने में लागत तत्व की उपेक्षा नहीं की जा सकती। +","kisi project ko banane men cost element ki upeksha nahin ki ja sakti. +",8,3 +"The movement holds in its embrace not only the trees of Shri Bhatt’s beloved Gharwal but all creation across the world. +","आंदोलन में न केवल श्री भट्ट के प्रिय गढ़वाल के वृक्ष बल्कि विश्वभर की सारी सृष्टि भी शामिल हैं। +","movement men n keval shri bhatt ke priy embrace ke trees balki world ki sari creation bhi shamil +",6,1 +"Nematodes are also known as nema. +","सूत्रकृमि सूत्रक या नेमा के रूप में भी जाने जाते हैं +","nematodes sootrak ya nema ke roop men bhi jane jate hain +",9,0 +"“I am a fox, ” the fox said.“ +","मैं लोमड़ी हूँ! ” लोमड़ी ने कहा। +","main fox hoon! s fox ne kaha. +",8,3 +"Here's a really short text. +","यहाँ एक बहुत छोटा वाक्य है। +","yahan ek bahut short text hai. +",9,1 +"Gandhiji claimed the defeat of Sitarmayya as his own defeat and told his colleagues that if they are not satisfied by Subhashbabu's methods, they can leave the Congress. +","गाँधीजी ने पट्टाभी सितारमैय्या की हार को अपनी हार बताकर अपने साथीयों से कह दिया कि अगर वें सुभाषबाबू के तरिकों से सहमत नहीं हैं तो वें कांग्रेस से हट सकतें हैं। +","gandhiji ne gandhiji claimed ki har ko apni har told his colleagues se kah diya ki agar ven leave the congress se sahamat nahin hain to ven kangres se hat sakten hain. +",3,2 +"your council's decisions on housing issues are more open and accountable to you; +","रिहाइशी मामलों के बारे में आपकी कौंसिल के फ़ैसलें अधिक सार्वजनिक होंगे और कौंसिल आपके सामने अधिक जवाब देह होगी | +","decisions issues ke bare men aapki council ke open more sarvajnik honge aur council aapke samne more javab deh hogi +",5,0 +"Didn 't he conquer Bengal *? +","उसने तो बंगाल को जीत लिया था न? +","usne to bengal ko jit liya tha n +",8,1 +"Let 's draw this on the number line. +","चलो यह संख्या लाइन पर आरेखित करें। +","chalo yah number line par aarekhit karen. +",8,3 +"The decree that the court gave was an appealable decree. +","अदालत ने जो डेक्री दी वह एक अपीलनीय डेक्री थी। +","court ne jo decree di vah ek appealable decree thi. +",9,1 +"21.Lovhaghat also called Iron Fort,it is one of the greatest attractions of Bharathpur. +","21. लौहागढ़ आयरन फोर्ट के रूप में भी जाना जाता है लौहागढ़ भरतपुर के प्रमुख ऐतिहासिक आकर्षणों में से एक है। +","21 fort aayaran phort ke roop men bhi jana jata hai fort bharatpur ke prmukh aetihasik aakarshnon men se ek it +",6,1 +"Rest house means a building used for shelter by travelers. +","विश्राम गृह का अर्थ उस इमारत से होता है, जिसका प्रयोग यात्रियों द्वारा आश्रय के लिए किया जाता है। +","rest house ka arth us building se hota hai , jiska pryog travelers dvara shelter ke lie kiya jata hai. +",9,1 +"For more than four decades, Gurbakhsh Singh prevailed over Punjabi journalism. +","चार दशकों से अधिक, गुरबख्श सिंह पंजाबी पत्रकारिता पर आच्छादित रहे। +","char decades se more , gurbakhsh sinh punjabi journalism par aachchhadit rahe. +",8,4 +"The President of India, Shri Pranab Mukherjee has called for changing negative perceptions about women. +","भारत के राष्ट्रपति, श्री प्रणब मुखर्जी ने महिलाओं के बारे में नकारात्मक धारणाओं को बदलने का आग्रह किया। +","india ke president , shri pranab mukharji ne women ke bare men negative perceptions ko badalne ka aagrah kiya. +",9,1 +"Sometimes, the local craftsmen also display their items for sale in this emporium. +","कभी स्थानीय शिल्पकार भी अपनी कलाकृतियों को यहां पर बेचने के लिए रख देते हैं. +","kabhi local craftsmen bhi apni kalakritiyon ko yahan par sale ke lie rakh dete hain +",8,2 +"Device does not support FILTER _ SLOT property. +","उपकरण में FILTER _ SLOT गुण समर्थन उपलब्ध नहीं है. +","device men FILTER _ SLOT property samarthan upalabdh nahin hai +",7,2 +"It is the best source of soluble fibre. +","यह घुलनशील रेशे का सर्वश्रेष्ठ स्रोत है। +","yah soluble fibre ka best source hai. +",9,1 +"God has sealed their hearts and hearing and their vision is veiled; a great punishment awaits them. +","अल्लाह ने उनके दिलों पर और कानों पर मुहर लगा दी है और उनकी आँखों पर परदा पड़ा है, और उनके लिए बड़ी यातना है +","god ne unke hearts par aur vision par muhar laga di hai aur unki aankhon par parda punishment hai , aur unke lie bari yatna hai +",6,1 +"This will be our tribute to Mahatma Gandhi on his 150th birth anniversary to be celebrated in the year 2019. +","ऐसा करना महात्मा गांधी को उनकी 150वीं जयंती पर हमारी श्रद्धांजलि होगी जो वर्ष2019 में मनाई जाएगी।’ +","aesa karna mahatma gandhi ko unki 150birth anniversary par hamari shraddhanjli hogi jo varsh2019 men manaee jaegi. +",7,4 +"And to Thamud We sent their brother Sali 'h. He said:' My people! Serve Allah; you have no god other than Him. He brought you into being out of the earth, and has made you dwell in it. So ask Him to forgive you, and do turn towards Him in repentance. Indeed My Lord is near, responsive to prayers. +","और (हमने) क़ौमे समूद के पास उनके भाई सालेह को (पैग़म्बर बनाकर भेजा) तो उन्होंने (अपनी क़ौम से) कहा ऐ मेरी क़ौम ख़ुदा ही की परसतिश करो उसके सिवा कोई तुम्हारा माबूद नहीं उसी ने तुमको ज़मीन (की मिट्टी) से पैदा किया और तुमको उसमें बसाया तो उससे मग़फिरत की दुआ मॉगों फिर उसकी बारगाह में तौबा करो (बेशक मेरा परवरदिगार (हर शख़्श के) क़रीब और सबकी सुनता और दुआ क़ुबूल करता है +","aur serve aume samood ke pas unke brother saleh ko paimbar banakar bheja to unhonne apni people se kaha h meri people uda hi ki parastish god uske siva koee tumhara mabood nahin usi ne tumko zamin ki earth se paida kiya aur tumko usmen basaya to usse maphirat ki lord mgon phir uski bargah men repentance god responsive mera paravardigar har shash ke rib aur sabki sunta aur lord ubool karta hai +",5,1 +"And do not be chary of pursuing them. If you suffer, they shall also suffer like you. But while you have hope (of success) from God, they have none. Surely God is all - knowing and all - wise. +","और उन लोगों का पीछा करने में सुस्ती न दिखाओ। यदि तुम्हें दुख पहुँचता है; तो उन्हें भी दुख पहुँचता है, जिस तरह तुमको दुख पहुँचता है। और तुम अल्लाह से उस चीज़ की आशा करते हो, जिस चीज़ की वे आशा नहीं करते। अल्लाह तो सब कुछ जाननेवाला, तत्वदर्शी है +","aur un logon ka pichha karne men susti n dikhao. yadi tumhen none god hai to unhen bhi none god hai , jis tarah tumko none god success aur tum knowing se us chiz ki aasha karte ho , jis chiz ki ve aasha nahin karte. knowing to chary kuchh jannevala , tatvadarshi hai +",3,3 +"This is not even 2 feet. +","यह 2 फीट भी नही है. +","yah 2 feet bhi nahi hai +",10,0 +"Your local social services department will tell you about other local organisations. +","आप की लोकल कौंसिल की सेवाएं वाला विभाग आप को आप के स्थानीय समूहों के बारे में बतायेगा। +","aap ki local social ki sevaen other department aap ko aap ke sthaniy organisations ke bare men batayega. +",6,1 +"In most of the Committees, public is directly or indirectly associated when memoranda containing suggestions are received. +","अधिकांश समितियों में जनता प्रत्यक्ष अथवा अप्रत्यक्ष ढ़ंग से तब संबद्ध होती है जब उनसे सुझावों संबंधी ज्ञापन प्राप्त होते हैं। +","adhikansh samitiyon public is directly athva apratyaksh ng se tab snbaddh hoti hai jab memoranda containing suggestions jnjapan prapt hote hain. +",6,0 +"When Rano reached Kak at the dead of night, Natar tried to dissuade him from going up to Mumai 's chamber telling him that Mumal had taken another lover. +","जब आधी रात के समय, राणो काकमहल पहुँचा तो नातर ने उसे मूमल के कक्ष में यह कहकर जाने से मना किया कि मुमल अब और किसी से प्रेम करती है। +","jab aadhi dead of night, rano kakamahal pahuncha to natar ne use moomal ke kaksh men yah kahakar jane se mana kiya ki mumal ab aur kisi se prem karti hai. +",7,3 +"The unexpected leaders were chosen in polling. +","असंभावित नेताओं को इस मतदान में चुना गया। +","unexpected leaders ko is polling men chuna gaya. +",10,0 +"The other two members will have knowledge and experience of special educational needs . +","बाकी के दो सदस्यों के पास या तो विशेष शैक्षिक आवश्यकताओं या स्थानीय सरकार या दोनों ही के बारे में ञान तथा अनुभव होगा . +","baki ke do sadasyon ke pas ya to special educational aavashyaktaon ya sthaniy sarkar ya donon hi ke bare knowledge and experience anubhav hoga +",6,6 +"So the product rules help us. +","तो उत्पाद नियम हमें मदद करते हैं। +","to product rules hamen madad karte hain. +",10,0 +"Search all% {DRIVENAME} +","सभी% {DRIVENAME} खोजें +","sabhi DRIVENAME search +",8,3 +"And having thus turned back the clock , We can regenerate the stock , Proceeding to our final goal By race , as well as birth control . +","इस प्रकार घडऋई का उलटी चलाकर , हम अपना मूल वंश पुनर्जीवित कर सकते हैं , हमारा लक्षऋ-ऊण्श्छ्ष्-य हम वांशिक रूप से तथा परिवार नियोजन से प्राप्त कर सकते हैं +","is prkar back the clock chalakar , ham apna mool vnsh punarjivit kar sakte hain , hamara lakshri-oonshchhsh-y ham final goal se tatha parivar niyojan se prapt kar sakte hain +",5,4 +"There is in this audience and all around us a large number of elders who are making extremely valuable contributions to our country and to our society. +","इस सभा में तथा हमारे आसपास ऐसे बहुत से वयोवृद्ध हैं जो कि हमारे देश तथा समाज के लिए बहुमूल्य सहयोग प्रदान कर रहे हैं। +","is audience men tatha large aaspas aese bahut se elders hain jo ki large country tatha samaj ke lie valuable sahyog prdan kar rahe hain. +",8,2 +"So if we get rid of the percent sign, +","इस लिए अगर हम पर्सेंटेज के निशान को हटा देते हैं तो, हम दशमलव को +","is lie agar ham percent ke nishan ko hata dete hain to, ham dashamalav ko +",8,2 +"Harnessing modern biology in agriculture is the need of the hour. +","कृषि में आधुनिक जीवविज्ञान का उपयोग आज की जरूरत है। +","agriculture men modern biology ka upyog need ki jaroorat hai. +",7,2 +"Shortly after taking up the job, he was married in 1912 to Shivdayee, with whom he was betrothed since infancy. +","काम पर लगने के शीघ्र बाद ही 1912 मे शिवदाई के साथ उनका विवाह हो गया, जिसके साथ जन्म से ही उनकी मँगनी हो चुकी जीवन 19 थी। +","job par lagne ke shighr bad hi 1912 me shivdaee ke sath unka vivah ho gaya, jiske sath janm se hi unki mngni ho chuki jivan 19 thi. +",6,5 +"And in all cases we have to ask - +","और सभी मामलों में हमे पूछना है +","aur sabhi cases men hame poochhna hai +",10,0 +"When they are cast into it they will hear it sighing, the while it boils +","जब वे उसमें डाले जाएँगे तो उसकी दहाड़ने की भयानक आवाज़ सुनेंगे और वह प्रकोप से बिफर रही होगी। +","jab ve usmen dale jaenge to uski daharne ki bhayanak aavaz sunenge aur vah prkop se while rahi hogi. +",4,4 +"We think doodling is something you do when you lose focus, +","ऐसा माना जाता है कि डूडल करने वाले का ध्यान भंग हो चुका है, +","something mana jata hai ki focus karne vale ka dhyan bhng ho chuka hai , +",5,1 +"Project Manager Plugin for Anjuta. +","परियोजना प्रबंधक प्लगइन के लिए Anjuta. +","project manager plugin ke lie Anjuta +",8,1 +"What quantity should be added to both sides of this equation +","क्या मात्रा इस समीकरण के दोनों पक्षों के लिए शामिल किया जाना चाहिए +","kya quantity is equation ke donon pakshon ke lie shamil kiya jana chahie +",9,2 +"A typical exploitation of the horizontal instability is by tampering with regions of higher albedo like the polar ice caps. +","क्षैतिज अस्थिरता के समुपयोजन का एक प्रारुपिक उदाहरण ध्रवीय बर्फ-टोपी जैसे उच्च एल्बडो के क्षेत्र में हस्तक्षेप है। +","horizontal instability ke samupyojan ka ek prarupik udaharan dhrviy barph-topi jaise uchch elbdo ke tampering with regions hai. +",8,2 +"The Government , therefore , decided that an amendment of the Constitution was not necessary . +","अत : सरकार ने निश्चय किया कि संविधान का संशोधन जरूरी नहीं है . +","at : government ne nishchay kiya ki constitution ka amendment necessary nahin hai +",9,0 +"The e-hospital and e-project programmes taken up by NIMHANS are, therefore, excellent initiatives, worthy of emulation by other institutions. +","इसलिए निमहैन्स द्वारा आरंभ किए गए ई-हास्पिटल और ई-प्रोजेक्ट कार्यक्रम उत्कृष्ट पहल हैं, अन्य संस्थाओं द्वारा अनुकरण किए जाने योग्य है। +","islie nimhains dvara aarnbh kie ge ee-haspital aur ee-projekt karyakram utkrisht pahal hain, any snsthaon dvara anukaran kie jane yogy hai. +",7,2 +"In 'Ad (also is a sign), when We sent a blasting wind against them, +","और आद में भी (तुम्हारे लिए निशानी है) जबकि हमने उनपर अशुभ वायु चला दी +","aur blasting men bhi sign lie nishani hai jabki hamne unapar wind vayu chala di +",5,3 +"On top of this building there is a big tomb +","इस इमारत के ऊपर एक वृहत गुम्बद सुशोभित है। +","is imarat ke top ek big tomb sushobhit building +",7,3 +"A type of vein arrangement in leaf where veins run parallel to each other from the poin they strat to the end. +","पत्ती में पाया जाने वाला एक प्रकार का शिरा विन्यास जहां अपने आरंभ होने के स्थान से अंत होने के स्थान तक शिराएं एक दूसरे के समांतर होती हैं +","patti men paya jane vala ek type of vein vinyas jahan apne aarnbh hone ke sthan se ant hone ke sthan tak shiraen ek doosre ke samantar hoti hain +",6,8 +"So We took retribution from them, and We drowned them in the sea because they denied Our signs and were heedless of them. +","तब आख़िर हमने उनसे (उनकी शरारत का) बदला लिया तो चूंकि वह लोग हमारी आयतों को झुटलाते थे और उनसे ग़ाफिल रहते थे हमने उन्हें दरिया में डुबो दिया +","tab signs retribution unse unki shararat ka badla liya to choonki vah log hamari aayton ko sea the aur unse heedless rahte the retribution unhen dariya men dubo diya +",4,1 +"They felt there wasn 't enough progress +","उन्होंने महसूस किया कि वहाँ पर्याप्त प्रगति नहीं थी +","unhonne wasn kiya ki vahan enough progress nahin thi +",7,2 +"Discussions in the assembly were marked by elements of purity, fairness, frankness and freedom. +","सभा में चर्चाएं स्वतंत्र, स्वच्छ एवं निर्बाध हुआ करती थीं. +","assembly men discussions svtntr , svachchh evn nirbadh huaa karti thin +",6,5 +"In March 2010, Vice President Joe Biden, Clinton, and Obama then picked the same fight with Israel all over again, now over Jerusalem specifically. This time, the administration needed only six weeks to retreat from its foolishness, as signaled by James Jones' speech at the Washington Institute and Elie Wiesel 's lunch at the White House. +","मार्च 2010 में उपराष्ट्रपति जोय बिडेन, क्लिंटन और ओबामा ने एक बार फिर इजरायल के साथ वही संघर्ष ठान लिया और इस बार विशेष रूप से जेरुसलम के साथ। इस बार तो प्रशासन को अपनी मूर्खता से कदम वापस खींचने में केवल छह सप्ताह लगे जैसा कि वाशिंगटन इंस्टीट्यूट में जेम्स जोंस के भाषण और व्हाइट हाउस पर एली विसेल के भोजन से संकेत मिला। +","march 2010 men uprashtrapti joy biden, klintan aur obama ne ek bar phir ijrayal ke sath vahi sngharsh than liya aur is bar vishesh roop se jerusalam ke sath. is bar to prshasan ko apni moorkhta se kadam vapas khinchne men keval chhah saptah lage jaisa ki vashingatan instityoot men jems jons ke bhashan aur vhait haus par eli visel ke bhojan se snket mila. +",9,0 +"Select the number of horizontal video windows in which to split the video +","वीडियो विभाजित करने के लिए क्षैतिज वीडियो विंडोज़ की संख्या का चुनाव करें +","video number karne ke lie horizontal video windows ki select the number karen +",5,1 +"PRESIDENT OF INDIA TO INAUGURATE AN INTERNATIONAL CONVENTION ON HOMOEOPATHY TOMORROW, Rashtrapati Bhavan : 08.04.2016 +","भारत के राष्ट्रपति कल होमियोपैथी पर एक अंतरराष्ट्रीय अभिसमय का उद्घाटन करेंगे।, राष्ट्रपति भवन : 08.04.2016 +","india ke president tomorrow homoeopathy par ek international convention ka udghatan karenge. , president bhavan : 08042016 +",7,2 +"Nobody knows what matter might crop up during this period or what kind of attack might be launched against the government. +","यह कोई नहीं कह सकता कि इस काल के दौरान कौन-सा मामला उठ खड़ा हो या सरकार पर किस तरह का आक्रमण कर दिया जाए. +","yah koee nahin kah sakta ki is kal ke matter might crop uth khara ho ya sarkar par kis tarah ka aakraman kar diya jae +",6,1 +"The best thing is to go to doctor to monitor the size of uterus and how much amniotic fluid is in womb. +","चिकीत्सक द्वारा गर्भाशय के आकार व कोख में स्थित उल्वद्रव की मात्रा की निगरानी की जानी चाहिये +","chikitsak dvara size of uterus v kokh men amniotic fluid ki matra ki nigrani ki jani chahiye +",8,1 +"Somehow or other we want something which we can touch, something which we can see, something before which we can kneel down. +","चाहे जिस कारण भी हो हम कोइ ऐसी वस्तु चाहते हैं जिसका हम स्पर्श कर सकें, जिसें देख सकें और जिसके समक्ष श्रद्धापूर्वक विनत हो सकें। +","chahe jis karan bhi ho other koi aesi vastu chahte hain jiska other sparsh kar something , jisen dekh something aur jiske samaksh shraddhapoorvak vinat ho saken. +",6,1 +"And their words were not but that they said, ""Our Lord, forgive us our sins and the excess [committed] in our affairs and plant firmly our feet and give us victory over the disbelieving people."" +","उन्होंने कुछ नहीं कहा सिवाय इसके कि ""ऐ हमारे रब! तू हमारे गुनाहों को और हमारे अपने मामले में जो ज़्यादती हमसे हो गई हो, उसे क्षमा कर दे और हमारे क़दम जमाए रख, और इनकार करनेवाले लोगों के मुक़ाबले में हमारी सहायता कर।"" +","unhonne kuchh nahin kaha sivay iske ki ae hamare rab! too hamare gunahon ko aur hamare apne mamle men jo zyadti hamse ho gee ho, use kshma kar de aur firmly our feet rakh, aur inkar karnevale logon ke muable men give us victory +",9,0 +"Publication of Rashtriya Bank Srijana: +","राष्ट्रीय बैंक सृजना का प्रकाशन: +","rashtriy bank srijna ka publication: +",8,3 +"Hanafi clan - its followers are in South Asia and Central Asia. +","हनफी पन्थ-इसके अनुयायी दक्षिण एशिया और मध्य एशिया में हैं। +","hanphi panth-iske anuyayi south asia aur madhy eshiya men hain. +",6,4 +"In the absence of organised marketing for small agricultural products producers do not get good price realisation. +","लघु कृषि उत्पादों के लिए संगठित विद्यमान व्यवस्था के अभाव में उत्पादकों को उनकी उपज का अच्छा मूल्य नहीं मिल पाता। +","small agricultural products ke lie organised vidyman vyavastha ke absence men producers ko unki upaj ka good price nahin mil pata. +",9,2 +"The process of retaining of a rate of exchange in order to stabilise the market (generally by govt. or authority concerned). +","बाजार में स्थायित्व बनाए रखने के लिए विनिमय दरों को बनाए रखना (सामान्यतः यह कार्य सरकार या संबंधित प्राधिकृति द्वारा किया जाता है)। +","stabilise the market banae rakhne ke lie vinimay daron ko banae rakhna samanyta yah kary sarkar ya snbndhit pradhikriti dvara kiya jata hai. +",8,1 +"Have they not realised that God knows their secrets and their confidential talk, and that God has the knowledge of unknown things? +","क्या उन्हें खबर नहीं कि अल्लाह उनका भेद और उनकी कानाफुसियों को अच्छी तरह जानता है और यह कि अल्लाह परोक्ष की सारी बातों को भली-भाँति जानता है +","talk unhen khabar nahin ki god unka secrets aur unki kanaphusiyon ko achchhi tarah janta hai aur yah ki god unknown ki sari baton ko bhali-bhanti janta hai +",6,6 +"This option will connect to the server using Kerberos 5 authentication. +","Kerberos 5 सत्यापन के उपयोग से यह विकल्प सर्वर से जोड़ेगा. +","Kerberos 5 authentication ke upyog se yah option server se jorega +",9,1 +"Shape actor with alpha channel when picking +","चुनने के दौरान अल्फा चैनल के साथ कर्ता को आकार दें +","chunne ke channel when picking ke sath karta ko aakar den +",6,0 +"Eat of the lawful and good things God has provided for you, and be thankful for God’s blessings, if it is Him that you serve. +","फिर अज़ाब (ख़ुदा) ने उन्हें ले डाला और वह ज़ालिम थे ही तो ख़ुदा ने जो कुछ तुम्हें हलाल तय्यब (ताहिर) रोज़ी दी है उसको (शौक़ से) खाओ और अगर तुम खुदा ही की परसतिश (का दावा करते हो) +","phir azab uda ne unhen le dala aur vah zalim the hi to uda ne jo kuchh tumhen halal tayyab tahir rozi di hai good things se khao aur agar tum khuda hi ki parastish ka dava karte ho +",7,1 +"When composite tender is invited for various types of works / activities. +","जब विविध प्रकार के कार्यों के लिए एक ही संयुक्त टेन्डर जारी किया जाता हो। +","jab activities types of works ke lie ek hi composite tender jari kiya jata ho. +",7,4 +"Nominal check of the attendance is advisable. +","उपस्थिति की नाममात्र जांच उचित है। +","attendance ki nominal check advisable hai. +",9,1 +"(b) where the marriage of his parents does not subsist, in the net wealth of that parent who maintains the minor child in the previous year as defined in section 3 of the Income-tax Act, and where any such assets are once included in the net wealth of either parent, any such assets shall not be included in the net wealth of the other parent in any succeeding year unless the Assessing Officer is satisfied, after giving that parent an opportunity of being heard, that it is necessary so to do ; +","(ख) जहां उसके माता या पिता का विवाह अस्तित्व में नहीं है वहां उस माता या पिता के शुद्ध धन में सम्मिलित की जाएंगी जिसने आय-कर अधिनियम की धारा 3 में परिभाषित पूर्ववर्ष में अवयस्क संतान का भरणपोषण किया है, और जहां ऐसी कोर्इ आस्तियां माता या पिता में से किसी एक के शुद्ध धन में एक बार सम्मिलित कर ली जाती हैं वहां ऐसी कोर्इ आस्तियां, किसी उत्तरवर्ती वर्ष में माता या पिता में से किसी अन्य के शुद्ध धन में तब तक सम्मिलित नहीं की जाएंगी जब तक निर्धारण अधिकारी का, उस माता या पिता को सुनवार्इ का अवसर देने के पश्चात्, यह समाधान नहीं हो जाता है कि ऐसा करना आवश्यक है; +","kh jahan uske mata ya pita ka vivah astitv men nahin hai vahan us mata ya pita ke shuddh dhan men sammilit ki jaengi jisne aay-kar adhiniyam ki dhara 3 men paribhashit poorvavarsh men avayask sntan ka bharanposhan kiya hai, aur jahan aesi kori aastiyan mata ya pita men se kisi ek ke shuddh dhan men ek bar sammilit kar li jati hain vahan aesi kori aastiyan, kisi uttaravarti varsh men mata ya pita men se kisi any ke shuddh dhan men tab tak sammilit nahin ki jaengi jab tak nirdharan adhikari ka, us mata ya pita ko sunvari ka avasar dene ke pashchat, yah samadhan nahin ho jata hai ki aesa karna aavashyak hai +",4,6 +"The whole film proceeds with computer graphics and animated figures. +","कंप्यूटर ग्राफिक्स और एनिमेटेड आंकड़े के साथ पूरी फिल्म आय. +","computer graphics aur animated aankare ke sath whole film proceeds +",7,6 +"A reward from your Lord, a gift according to a reckoning: +","(ये) तुम्हारे परवरदिगार की तरफ से काफ़ी इनाम और सिला है +","ye tumhare lord ki taraph se kafi reward aur sila hai +",9,0 +"It has been called Chhath because of fast of Suryashashthi. +","मूलतः सूर्य षष्ठी व्रत होनेके कारण इसे छठ कहा गया है। +","moolta soory shashthi vrat honeke karan ise chhath kaha gaya hai. +",9,2 +"His life and the lives of those nearest and dearest to him would be forfeit if he refused to do the bidding of his lord. +","अगर अपने राजा की बात को मानने से इन्कार करता है तो उसके तथा उसके निकट संबंधियों की जान जाती है। +","agar apne raja ki bat ko manne se inkar karta hai to uske tatha uske lives snbndhiyon ki life jati lord +",5,5 +"He also recalled the insinuation made the other day by Haran about Binoy. +","विनय के बारे में हारान बाबू उस दिन जो इशारा कर गये थे, वह भी उन्हें याद आया। +","vinay ke bare men haran baboo us din jo ishara kar gaye the, vah bhi unhen yad aaya. +",9,1 +"Do not be like those who, after they had been given clear evidence, split into factions and differed among themselves: a terrible punishment awaits such people. +","तुम उन लोगों की तरह न हो जाना जो विभेद में पड़ गए, और इसके पश्चात कि उनके पास खुली निशानियाँ आ चुकी थी, वे विभेद में पड़ गए। ये वही लोग है, जिनके लिए बड़ी (घोर) यातना है। (यह यातना उस दिन होगी) +","awaits such people ki tarah n ho jana jo vibhed men par ge, aur iske pashchat ki unke pas clear evidence aa chuki thi, ve vibhed men par ge. ye vahi log hai, jinke lie bari ghor yatna hai. yah yatna us din hogi +",5,4 +"This movement was a plan to mobilize the support of the governments of Afghanistan and Turkey in organizing a revolt within India to overthrow the British rule. +","यह आंदोलन वास्तव में, अंग्रेजों के शासन का तख्ता पलटने के लिए भारत के अंदर विद्रोह को आयोजित करने में अफगानिस्तान और तुर्की की सरकारों का समर्थन हासिल करने की एक योजना थी। +","yah movement vastav men , british ke rule ka takhta palatne ke lie india ke andar revolt ko aayojit karne men afghanistan aur turkey ki governments ka support hasil karne ki ek plan thi. +",8,0 +"Said he, 'My Lord, respite me till the day they shall be raised.' +","उसने कहा, ""ऐ मेरे रब! फिर तू मुझे उस दिन तक के लिए मुहल्लत दे, जबकि लोग (जीवित करके) उठाए जाएँगे।"" +","usne kaha, ae mere rab! phir too mujhe us day tak ke lie muhallat de, jabki log jivit karke uthae till +",8,4 +"smallest absolute value, at which the normal line can +","छोटी से छोटी निरपेक्ष मूल्य, जिस पर सामान्य लाइन कर सकते हैं +","smallest se smallest absolute value , jis par normal line kar sakte hain +",7,0 +"He was elected president of the Muslim Conference formed in October, 1932. +","उन्हें अक्तूबर 1932 में स्थापित मुस्लिम कांफ्रेस का अध्यक्ष भी बनाया गया। +","unhen october 1932 men sthapit muslim conference ka president bhi banaya gaya. +",9,1 +"The Madras High Court was a pioneer in the enrolment of women. +","मद्रास उच्च न्यायालय महिलाओं के प्रवेश में भी अग्रणी रहा। +","madras high court enrolment of women men bhi agrni raha. +",7,3 +"The chiefs of those who disbelieved among his people said: we behold thee except as a human being like us, and we behold not any follow thee except the meanest of us, by an immature opinion; nor We behold in you any exellency over us; nay! we deem you liars. +","इसपर उसकी क़ौम के सरदार, जिन्होंने इनकार किया था, कहने लगे, ""हमारी दृष्टि में तो तुम हमारे ही जैसे आदमी हो और हम देखते है कि बस कुछ ऐसे लोग ही तुम्हारे अनुयायी है जो पहली स्पष्ट में हमारे यहाँ के नीच है। हम अपने मुक़ाबले में तुममें कोई बड़ाई नहीं देखते, बल्कि हम तो तुम्हें झूठा समझते है।"" +","isapar uski aum ke sardar , jinhonne inkar kiya tha , kahne lage , hamari drishti men to follow hamare hi jaise aadmi ho aur ham thee hai ki bas kuchh aese people hi tumhare anuyayi hai jo pahli spasht men hamare yahan ke opinion chiefs ham apne muable men tummen koee baraee nahin thee , balki ham to tumhen jhootha samajhte chiefs +",8,2 +"To some extent , Farooq is nervous about the ongoing secret talks between the Hurriyat and Delhi 's non-official negotiators . +","फारूक ह्र्रियत और दिल्ली के गैर-सरकारी वार्ताकारों के बीच चलती बातचीत से कुछ बेचैन हैं . +","farooq hurriyat aur delhi ke gair-sarkari extent ke bich chalti talks se kuchh nervous hain +",7,5 +"Goods sent on consignment basis remain in possession and custody of the consignee. +","परेषण-आधार पर भेजा गया माल परेषिती के सुरक्षा व धारिता में रहता है। +","pareshan-aadhar par bheja gaya mal pareshiti ke suraksha v dharita men rahta hai. +",6,6 +"he was arrested while aboard on an unregistered ship +","उसे एक अपंजीकृत जहाज के फलक पर गिरफ्तार किया गया +","use ek unregistered ship ke phalak par arrested kiya gaya +",7,2 +"Please enter a float value > =% 1 +","कृपया एक फ्लोट मूल्य भरें> =% 1 +","kripya ek float value bharen 1 +",9,0 +"they've calculated that Congo may have lost +","उसने यह अनुमान लगाया है कि कोंगों का नुकसान +","usne yah anuman lagaya hai ki congo ka nuksan +",8,0 +"But, with respect to potassic fertilizers, there are no known commercially exploitable reserves of potash in the country and the entire requirement of these fertilizers is met through imports. +","परन्तु पोटाश उर्वरक के संबंध में देश में पोटाश का कोई दोहन करने योग्य ज्ञात भंडार नहीं है और इन उर्वरकों की समस्त आवश्यकताएं आयात के माध्यम से पूरी की जाती हैं। +","parantu potassic entire ke respect men country men potassic ka koee exploitable karne yogy jnjat reserves nahin hai aur in fertilizers ki samast requirement imports ke madhyam se poori ki jati hain. +",8,0 +"1. This does not function within defined time frame. +","1. ये नियमित अंतराल से काम नहीं करती है +","1 ye niymit defined time frame nahin karti hai +",6,2 +"because we can say one hundred will go into seven hundred and twenty - three. +","क्योंकि हम कह सकते हैं एक सौ सात सौ और बीस-तीन में जाना होगा। +","kyonki ham kah sakte hain ek sau sat sau aur bis-tin men jana hoga. +",5,3 +"C _ heck for new messages in all folders +","सभी फ़ोल्डर में नये संदेश के लिये जांचें (_ h) +","sabhi folders men naye messages ke liye janchen _ h +",7,1 +"Among the principal 'infant' industries of this period mention must be made of sugar, paper, and matches. +","छोटे छोटे शिशु उद्योग इस समय के मुखऋ-ऊण्श्छ्ष्-य शिशु उद्योगों में चीनी, कागज और दियासलाऋ की चर्चा की जा सकती है. +","chhote chhote shishu udyog is period ke mukhri-oonshchhsh-y shishu industries men sugar , paper aur principal ki mention ki ja sakti hai +",8,3 +"The Congress called the plan 'preposterous'. +","कांग्रेस ने योनजा को ‘असंगत’ कहा। +","congress ne yonja ko asngat called +",8,2 +"Presence of excess ammount of uric acid in the urine. +","मूत्र में यूरिक एसिड मे उपलब्ध अत्यधिक मात्रा। +","urine men uric presence me upalabdh excess matra. +",7,1 +"You know, my work is inspired +","आप जानते हैं, मेरा काम प्रभावित है +","aap jante hain , mera work prbhavit hai +",8,2 +"So We inspired him: “Build the Ark under Our observation and by Our inspiration. And when Our decree comes to pass, and the oven boils over, load into it two pairs of every kind, together with your family, except those of them against whom the word has already been pronounced. And do not speak to me concerning those who did wrong; for they are to be drowned. ” +","तब हमने उसकी ओर प्रकाशना की कि ""हमारी आँखों के सामने और हमारी प्रकाशना के अनुसार नौका बना और फिर जब हमारा आदेश आ जाए और तूफ़ान उमड़ पड़े तो प्रत्येक प्रजाति में से एक-एक जोड़ा उसमें रख ले और अपने लोगों को भी, सिवाय उनके जिनके विरुद्ध पहले फ़ैसला हो चुका है। और अत्याचारियों के विषय में मुझसे बात न करना। वे तो डूबकर रहेंगे +","tab hamne uski or inspiration ki ki ark aankhon ke kind aur ark inspiration ke anusar nauka family aur phir jab hamara decree aa jae aur toofan umar pare to pairs prjati men se ek-ek jora usmen load le aur apne logon ko bhi , sivay unke jinke viruddh pahle faisla ho chuka hai. aur atyachariyon ke vishay men mujhse word n karna. ve to doobakar rahenge +",6,2 +"They repeated their demand that the nuclear missiles on the earth must be defused and destroyed. +","उन्होने अपनी मांग को दोहराया कि पृथ्वी के नाभिकीय प्रक्षेपणास्त्रों को बेकार और नष्ट कर दिया जाए। +","unhone apni demand ko dohraya ki earth ke nuclear prakshepnastron ko bekar aur nasht kar diya jae. +",9,0 +"A preliminary outline of a proposal, speech, book, presentation. +","किसी प्रस्ताव, भाषण, पुस्तक अथवा प्रस्तुतिकरण इत्यादि के लिए तैयार किया गया प्रारम्भिक खाका/प्रारूप। +","kisi proposal, speech, book athva presentation ityadi ke lie taiyar kiya gaya prarambhik khakapraroop. +",8,1 +"about the kid who got this paper. +","उस बच्चे के विषय में जिसे यहपत्र मिला. +","us kid ke vishay men jise paper mila +",8,1 +"These laboratories have a total annual analyzing capacity of 1. 31 lakh samples. +","इन प्रयोगशालाओं में वर्ष में 1.31 लाख नमूनों की जांच करने की क्षमता है। +","in laboratories men total men 131 lakh samples ki janch karne ki capacity hai. +",8,1 +"Late Puranchandra Gupta never allowed any power to force him into restricting his freedom of press. +","स्वर्गीय पूरनचन्द्र गुप्ता कभी भी अपने समाचारपत्र साम्न्त बनने की अपनी इच्छाशक्ति से नहीं डगमगाए। +","svargiy pooranachandr gupta kabhi bhi apne samacharapatr samnt banne ki apni ichchhashakti se nahin dagamgae. +",7,3 +"things that didn 't quite exist physically like insurance, stocks and bonds, enterprise softwares, +","चीजें हैं जो काफी शारीरिक रूप से मौजूद नहीं था बीमा, स्टॉक्स और बांड्स, उद्यम सॉफ्टवेयर की तरह, +","things hain jo kaphi sharirik roop se maujood nahin tha insurance, stks aur bonds, udyam sphtveyar ki tarah, +",6,5 +"Traditionally, welding has been used as a means of fabrication. +","पारम्परिक रूप से वेल्डिंग को विनिर्माण के साधन के रूप में उपयोग किया गया है। +","paramprik roop se velding ko vinirman ke sadhan ke roop men upyog kiya gaya hai. +",7,3 +"We can talk to him as soon as we know that Binoy Babu is willing. +","विनय बाबू-राज है, यह जानकर ही तो उनसे कहूँगी। +","binoy baboo-raj hai , yah janakar hi to unse kahoongi. +",6,3 +"He listened to the wind, and felt the stones beneath his feet. +","उसे हवा की आवाज सुनाई दी और पैरों के नीचे पत्थर भी महसूस हुए। +","use wind ki aavaj sunaee di aur feet ke niche stones bhi mahsoos hue. +",10,0 +"Have you got your cord with you? +","तुम्हारे पास अपनी डोरी है न। +","tumhare pas apni cord hai n. +",7,1 +"Motions, though they cover a variety of proceedings of the House, fall into three principal categories namely, Substantive Motions, Substitute Motions, and Subsidiary Motions. +","यद्यपि प्रस्ताव सदन की विभिन्न कार्यवाहियों से संबंधित होते हैं तथापि उन्हें तीन प्रमुख श्रेणियों में रखा जा सकता है, अर्थात मूल (सब्सटेंटिव) प्रस्ताव, स्थानापन्न (सबस्टीट्यूट) प्रस्ताव और सहायक (सब्सीडियरी) प्रस्ताव. +","yadypi prastav sadan ki vibhinn karyvahiyon se snbndhit hote hain tathapi unhen tin prmukh shreniyon men rakha ja sakta hai, arthat mool sabstentiv prastav, sthanapann sabastityoot prastav aur sahayak sabsidiyri prastav +",4,6 +"In our Milky Way alone, there are 40, 000 crore stars. +","केवल हमारी आकाशगंगा में ही 40,000 करोड़ सितारे है। +","keval way milky men hi 40,000 crore stars hai. +",8,3 +"If you choose to create a new empty project, the file selection will be discarded. +","यदि आप नई रिक्त परियोजना बनाने के लिए चुनते हैं, सभी फ़ाइल चयन नष्ट हो जाएंगे. +","yadi aap nee empty project banane ke lie chunte hain, sabhi file selection nasht ho jaenge +",7,1 +"Failed to get folder properties:% s +","फ़ोल्डर विशेषता पाने में विफलः% s +","folder properties pane men viphla s +",8,0 +"44 year old JNU is well known in India and abroad as a University with a ‘difference’. +","44 वर्ष पुराना जवाहरलाल नेहरू विश्वविद्यालय भारत और विदेश में एक ‘अलग’ तरह के विश्वविद्यालय के रूप में सुविख्यात है। +","44 varsh purana javaharlal nehroo vishvvidyalay bharat aur videsh men ek alag tarah ke vishvvidyalay ke roop men suvikhyat hai. +",8,3 +"Is Taj Mahal in realty the Temple of Lord Shiva? +","क्या ताजमहल वास्तव में शिव मंदिर है? +","taj mahal vastav realty the temple hai +",7,0 +"In last six decades, the poverty ratio has declined from over 60 per cent to less than 30 per cent. +","जबकि निर्मूलन समयबद्ध लक्ष्य। पिछले छह दशकों में गरीबी का अनुपात 60 प्रतिशत से अधिक की पिछली दर से कम होकर30प्रतिशत से नीचे आ चुका है। +","jabki nirmoolan samayabaddh lakshy. pichhle chhah decades men poverty ka ratio 60 cent se adhik ki last dar se less hokar30prtishat se niche aa chuka hai. +",4,5 +"(4A) 59Every person in receipt of income derived from property held under trust or other legal obligation wholly for charitable or religious purposes or in part only for such purposes, or of income being voluntary contributions referred to in sub-clause (iia) of clause (24) of section 2, shall, if the total income in respect of which he is assessable as a representative assessee (the total income for this purpose being computed under this Act without giving effect to the provisions of sections 11 and 12) exceeds the maximum amount which is not chargeable to income-tax, furnish a return of such income of the previous year in the prescribed form and verified in the prescribed manner and setting forth such other particulars as may be prescribed and all the provisions of this Act shall, so far as may be, apply as if it were a return required to be furnished under sub-section (1). +","(4क) पूर्णतः पूर्त या धार्मिक प्रयोजन के लिए या भागतः ऐसे प्रयोजनों के लिए न्यास या अन्य विधिक बाध्यता के अधीन धारित सम्पत्ति से उद्भूत आय, या धारा 2 के खंड (24) के उपखंड (iiक) में निर्दिष्ट स्वैच्छिक अभिदाय के रूप में आय प्राप्त करने वाला हर व्यक्ति, यदि वह सकल आय, जिसकी बाबत वह प्रतिनिधि निर्धारिती के रूप में निर्धारणीय है, (इस प्रयोजन के लिए सकल आय धारा 11 और 12 के उपबंधों को लागू किए बिना इस अधिनियम के अधीन संगणित की जाएगी) उस अधिकतम रकम से अधिक है जो आय-कर से प्रभार्य नहीं है, तो विहित प्ररूप में और विहित रीति में सत्यापित करके और ऐसी अन्य विशिष्टियां देते हुए, जो विहित की जाएं, पूर्ववर्ष की ऐसी आय की विवरणी देगा और इस अधिनियम के सभी उपबंध, यथाशक्य, इस प्रकार लागू होंगे मानो वह उपधारा (1) के अधीन दिए जाने के लिए अपेक्षित विवरणी हो। +","4k poornta poort ya dharmik pryojan ke lie ya bhagta aese pryojnon ke lie nyas ya any vidhik badhyta ke adhin dharit sampatti se udbhoot aay, ya dhara 2 ke khnd 24 ke upkhnd iik men nirdisht svaichchhik abhiday ke roop men aay prapt karne vala har vyakti, yadi vah sakal aay, jiski babat vah prtinidhi nirdhariti ke roop men nirdharniy hai, is pryojan ke lie sakal aay dhara 11 aur 12 ke upbndhon ko lagoo kie bina is adhiniyam ke adhin sngnit ki jaegi us adhikatam rakam se adhik hai jo aay-kar se prbhary nahin hai, to vihit prroop men aur vihit riti men satyapit karke aur aesi any vishishtiyan dete hue, jo vihit ki jaen, poorvavarsh ki aesi aay ki vivarni dega aur is adhiniyam ke sabhi upbndh, yathashaky, is prkar lagoo honge mano vah updhara 1 ke adhin die jane ke lie apekshit vivarni ho. +",7,3 +"There were errors trying to start the X server. +","एक्स सर्वर प्रारंभ करने की कोशिश में त्रुटियाँ हुईं. +","eks sarvar prarnbh karne ki koshish men trutiyan hueen +",8,1 +"breast cancer, for the love of Lebanon, for peace, +","स्तन कैंसर, लेबनान के प्यार के लिए, शांति के लिए, +","breast cancer, love of lebanon ke lie, peace ke lie, +",9,0 +"The sikhara on top also appears to have been square. +","ऊपर शिखर भी वर्गाकार रहा होगा. +","oopar sikhara bhi square raha hoga +",9,1 +"And most surely of the followers of the Book there are those who believe in Allah and (in) that which has been revealed to you and (in) that which has been revealed to them, being lowly before Allah; they do not take a small price for the communications of Allah; these it is that have their reward with their Lord; surely Allah is quick in reckoning. +","और अहले किताब में से कुछ लोग तो ऐसे ज़रूर हैं जो ख़ुदा पर और जो (किताब) तुम पर नाज़िल हुई और जो (किताब) उनपर नाज़िल हुई (सब पर) ईमान रखते हैं ख़ुदा के आगे सर झुकाए हुए हैं और ख़ुदा की आयतों के बदले थोड़ी सी क़ीमत (दुनियावी फ़ायदे) नहीं लेते ऐसे ही लोगों के वास्ते उनके परवरदिगार के यहॉ अच्छा बदला है बेशक ख़ुदा बहुत जल्द हिसाब करने वाला है +","aur ahle kitab men se kuchh log to aese zaroor hain jo uda par aur jo kitab tum par nazil huee aur jo kitab unapar nazil huee sab par eeman rakhte hain uda ke aage sar jhukae hue hain aur uda ki aayton ke small price si imat duniyavi fayde nahin lete aese hi logon ke vaste unke paravardigar ke yah achchha badla hai beshak uda bahut jald hisab karne vala hai +",5,6 +"A helicopter has also been provided to Ministry of Home Affairs in the North - East for VIP transportation. +","अतिविशिष्ट व्यक्तियों (वी. आई. पी.) के इस्तेमाल के लिए गृह मंत्रालय को पूर्वोत्तर क्षेत्र हेतु हेलीकॉप्टर उपलब्ध कराया गया है। +","ativishisht vyaktiyon vi aaee pi ke istemal ke lie home ministry ko north kshetr hetu helikptar upalabdh karaya gaya hai. +",7,1 +"If proper training is made available, however, teachers will have a new and valuable approach to the development of the physical, mental and emotional needs of the child. +","यदि इसे अध्यापकों के प्रशिक्षण का अनिवार्य अंग मान लिया जाए, तो हम बच्चों को शारीरिक, मानसिक तथा भावनात्मक आवश्कयताओं की पूर्ति के लिए, अध्यापकों को एक नया और मूल्यवान साधन दे पाएंगे। +","yadi ise adhyapkon ke training is made ang man liya jae, to ham bachchon ko sharirik, mental and emotional aavashkaytaon ki poorti ke lie, adhyapkon ko ek naya aur moolyvan sadhan de paenge. +",7,0 +"And remember Our servants Ibrahim and Ishaq and Yaqoub, men of power and insight. +","और (ऐ रसूल) हमारे बन्दों में इबराहीम और इसहाक़ और याकूब को याद करो जो कुवत और बसीरत वाले थे +","aur servants rasool hamare bandon men ibrahim aur ishaq aur yakoob ko yad karo jo power aur insight vale the +",8,0 +"So from A, we look at the neighbors of A. The neighbors of A are B and C. +","इसलिए A से, हम ए के पड़ोसियों में देखो B और c. A के पड़ोसी हैं +","islie A se, ham e ke parosiyon men dekho B aur c A ke parosi hain +",6,4 +"Snow leopard hunts blue sheep in the Himalayas. +","हिम तेंदुआ हिमालय में नीली भेड़ का शिकार करता है। +","snow leopard himalayas men blue sheep ka hunts karta hai. +",7,1 +"The location “% s” does not exist. +","स्थान “% s” मौज़ूद नहीं है. +","location s exist nahin hai +",8,2 +"Soon he was seeking terms with the British. +","शीग्र ही मानसिंह अंग्रेजों के साथ सौदे बाजी करने तात्या टोपे लगा। +","shigr hi mansinh british ke sath terms baji karne tatya tope laga. +",7,1 +"Could not rename '% s' to% s:% s +","`% s 'का% s यह पुनर्नामकरण नहीं कर सकाः% s +","s ka s yah punarnamakaran nahin kar sakaa s +",4,7 +"""What was it that brought you to Hell?"" +","""तुम्हे क्या चीज़ सकंर (जहन्नम) में ले आई?"" +","tumhe kya chiz saknr jahannam men le aaee +",8,3 +"You have made changes to this memo, but not yet saved them. +","आपने इस ज्ञापन में परिवर्तन किया है लेकिन अबतक सहेजा नहीं है. +","aapne is memo men changes kiya hai lekin abatak saheja nahin hai +",9,0 +"Didn 't he conquer Bengal *? +","उसने तो बंगाल को जीत लिया था न? +","usne to bengal ko didn liya tha n +",6,6 +"Error verifying signature:% s +","हस्ताक्षर प्रमाणित करते समय त्रुटिः% s +","signature prmanit karte samay error s +",9,2 +"Rules for grant of leave to the employees of All India Services due to special disability. +","अखिल भारतीय सेवा के कर्मचारियों को विशेष निशक्तता के कारण छुट्टी देने के लिए नियम। +","india bhartiy services ke employees ko special due ke karan rules grant ke lie niyam. +",7,3 +"'After this clear explanation, I never referred to the subject again. +","” इतनी स्पष्ट बातचीत होनेके बाद दुबारा मैंने यह विषय डोकके सामने कभी नहीं छेड़ा। +","itni clear batchit honeke bad dubara mainne yah subject dokke samne explanation nahin chhera. +",6,2 +"Sucharita shut the kitchen door noisily and sank to the floor, bursting into sobs. +",">> सुचरिता ने धड़ाके से रसोई का दरवाज़ा बन्द कर दिया और फर्श पर बैठ गई। +","suchrita ne dharake se shut the kitchen band kar diya aur pharsh par baith gee. +",6,1 +"We've driven from San Francisco to Los Angeles on Highway 1. +","हमने इसे हाईवे 1 पर सैन फ्रांसिस्को से लॉस एंजेलेस तक चलाया है +","hamne ise haeeve 1 par san phransisko se ls enjeles tak chalaya hai +",7,3 +"have shown that people who punish cheaters in economic games +","दिखाया है कि जो लोग लेन-देन वाले खेलों में धोखेबाज़ों को सज़ा देते हैं, +","shown hai ki jo people len-den vale economic games people who punish dete hain, +",4,1 +"Somehow or other we want something which we can touch, something which we can see, something before which we can kneel down. +","चाहे जिस कारण भी हो हम कोइ ऐसी वस्तु चाहते हैं जिसका हम स्पर्श कर सकें, जिसें देख सकें और जिसके समक्ष श्रद्धापूर्वक विनत हो सकें। +","chahe jis karan bhi ho ham koi aesi vastu chahte hain jiska ham sparsh kar saken, jisen dekh saken aur jiske samaksh shraddhapoorvak vinat ho saken. +",9,0 +"learned the correct initial state for the 17 - bit LFSR, we will have also +","सही प्रारंभिक राज्य सीखा 17-बिट LFSR के लिए, हम भी करना होगा +","correct initial state learned 17-bit LFSR ke lie, ham bhi karna hoga +",9,2 +"Another revolutionary ' action ' which took place a few months earlier also deserves notice . +","एक और क्रांतिकारी कार्यवाही भी , जो कुद महीनों पहले की गई थी , घ्यानाकर्षक है . +","ek aur revolutionary action bhi , jo months earlier pahle ki gee thi , place hai +",6,2 +"1. Not formed by the decided number. +","1. निर्धारित संख्या मे गठन नहीं हुआ +","1 decided number me formed nahin huaa +",8,3 +"An institution which provides academic education +","ऐसी संस्था जो शात्रीय शिक्षा उपलब्ध कराती है +","aesi institution jo academic education upalabdh karati hai +",8,3 +"They taste not death therein, save the first death. And He hath saved them from the doom of hell, +","वहाँ पहली दफ़ा की मौत के सिवा उनको मौत की तलख़ी चख़नी ही न पड़ेगी और ख़ुदा उनको दोज़ख़ के अज़ाब से महफूज़ रखेगा +","vahan first dafa ki death ke hell unko death ki therein chani hi n paregi aur uda unko doza ke azab se mahphooz rakhega +",5,0 +"Dump texture atlas changes to an image file +","एटलस के संरचना को छवि फाइल में बदल कर डंप करें +","atlas ke texture ko image file men badal kar dump karen +",8,3 +"Issuer:% s Subject:% s Fingerprint:% s Signature:% s +","निर्गमकः% s विषयः% s फिंगरप्रिंटः% s हस्ताक्षरः% s +","issuer s vishya s fingerprint s signature s +",8,1 +"A revelation from the Beneficent, the Merciful Allah: +","यह अवतरण है बड़े कृपाशील, अत्यन्त दयावान की ओर से, +","yah revelation hai bare kripashil, atyant dayavan ki or se, +",9,1 +"he takes a nap in the afternoon, and I got to go. +","वे दोपहर में सोते हैं, और मुझे ज़रूरी जाना है. +","ve afternoon men sote hain, aur mujhe zaroori jana hai +",8,0 +"And among them are some that say, “Our Lord! Give us good in the world and good in the Hereafter, and save us from the punishment of fire! ” +","और बाज़ बन्दे ऐसे हैं कि जो दुआ करते हैं कि ऐ मेरे पालने वाले मुझे दुनिया में नेअमत दे और आख़िरत में सवाब दे और दोज़ख़ की बाग से बचा +","aur baz bande aese hain ki jo duaa karte hain ki ae mere palne vale mujhe duniya men neamat de aur aairat men savab de aur punishment of fire se bacha +",5,6 +"To some extent , Farooq is nervous about the ongoing secret talks between the Hurriyat and Delhi 's non-official negotiators . +","फारूक ह्र्रियत और दिल्ली के गैर-सरकारी वार्ताकारों के बीच चलती बातचीत से कुछ बेचैन हैं . +","pharook hrriyat aur dilli ke gair-sarkari ongoing secret talks chalti batchit se kuchh bechain hain +",5,5 +"The movement holds in its embrace not only the trees of Shri Bhatt’s beloved Gharwal but all creation across the world. +","आंदोलन में न केवल श्री भट्ट के प्रिय गढ़वाल के वृक्ष बल्कि विश्वभर की सारी सृष्टि भी शामिल हैं। +","aandolan men n keval shri bhatt ke priy gaval ke vriksh balki vishvabhar ki sari srishti bhi shamil hain. +",5,8 +"(18) ""company in which the public are substantially interested""a company is said to be a company in which the public are substantially interested— +","(18) ''वह कंपनी जिसमें जनता पर्याप्त हितबद्ध है''- किसी कंपनी को ऐसी कंपनी, जिसमें जनता82 पर्याप्त रूप से हितबद्ध है, तब कहा जाता है जब– +","18 vah knpni jismen public are substantially hai- kisi knpni ko aesi knpni, jismen janta82 paryapt roop se hitabaddh hai, tab kaha jata hai jab +",6,4 +"Wait until we are told to show the window before executing the command +","कमांड चलाने से पहले इंतजार करें जब तक कि विंडो दिखाने के लिए कहा जाए +","command chalane se pahle wait karen jab tak ki window show ke lie kaha jae +",9,0 +"Honestly - I was the same for a long time. +","मैं भी एक ज़माने मैं अनजान था. +","main bhi ek zamane main anjan tha +",5,8 +"Everything was in motionup and down and sideways and forwards. +","हर चीज हरकत में थी-ऊपर, नीचे, दायें, बायें, सामने। +","everything chij harakat men thi-oopar , niche , dayen , bayen , samne. +",8,0 +"But it won 't be as good as Johan. +","लेकिन मम्मी वह जोहान जैसा अच्छा तो नहीं होगा। +","lekin mammi vah johan jaisa good to nahin hoga. +",8,1 +"It is today a premier organization for industry, trade and service sectors in Karnataka. +","आज यह कर्नाटक के उद्योग,व्यापार तथा सेवा क्षेत्र का एक प्रमुख संगठन है। +","today yah karnataka ke industry , vyapar tatha service kshetr ka ek premier organization hai. +",7,4 +"Alaukik Laukikata Formality with a Supernatural Touch is one of his most remarkable stories of this period. +","इस दौर में लिखी माणिक की एक अद्वितीय कहानी है अलौकिक लौकिकता। +","is daur men likhi manik ki ek remarkable stories hai alaukik laukikta. +",9,2 +"Despite this ugly record, the U. S. government widely accepts CAIR as representing Islam. The White House invites it to functions, the State Department links to its Web page and Democratic senators rely on its research. In New York City, the mayor appoints its general counsel to the Human Rights Commission and the police department hosts its “sensitivity training” seminar. In Florida, public schools invite it to teach “diversity awareness. ” +","इस कुरूप रिकार्ड के बाद भी अमेरिका सरकार सी. ए. आई. आर को व्यापक रूप से इस्लाम को प्रतिनिधि मानती है। व्हाइट हाउस इसे कार्यक्रमों में बुलाता है, राज्य विभाग ने इसके वेब पृष्ठों के लिंक दिये हैं और डेमोक्रेट सीनेटर इसके शोध पर निर्भर करते हैं। न्यूयार्क शहर में इसके सदस्य को मानवाधिकार आयोग में नियुक्त किया जाता है और पुलिस इसके संवेदनशील प्रशिक्षण की निगरानी करती है। +","is sensitivity record ke bad bhi public government cair e aaee aar ko general roop se islam ko prtinidhi manti page white haus ise karyakrmon men bulata hai , rajy department ne iske web prishthon ke links diye hain aur democratic senators iske research par nirbhar karte hain. nyooyark shahar men iske sadasy ko manvadhikar commission men niyukt kiya jata hai aur police iske diversity training ki nigrani karti page +",7,3 +"If proper training is made available, however, teachers will have a new and valuable approach to the development of the physical, mental and emotional needs of the child. +","यदि इसे अध्यापकों के प्रशिक्षण का अनिवार्य अंग मान लिया जाए, तो हम बच्चों को शारीरिक, मानसिक तथा भावनात्मक आवश्कयताओं की पूर्ति के लिए, अध्यापकों को एक नया और मूल्यवान साधन दे पाएंगे। +","yadi ise teachers ke training ka anivary child man liya needs , to ham bachchon ko physical , mental tatha bhavnatmak aavashkaytaon ki poorti ke lie , teachers ko ek new aur valuable sadhan proper paenge. +",6,3 +"It was difficult not to think about what he had left behind. +","जो कुछ वह पीछे छोड़कर आया है, उसके बारे में एकदम कुछ न सोचना उसके लिए बहुत मुश्किल था। +","jo kuchh vah pichhe chhorakar aaya hai , uske bare men ekadam kuchh n sochna uske lie bahut difficult tha. +",5,6 +"The knife was used by the guide as a weapon. +","गाइड द्वारा एक हथियार के रूप में चाकू का इस्तेमाल किया गया था। +","guide dvara ek weapon ke roop men knife ka istemal kiya gaya tha. +",9,2 +"Elsewhere, he expressed surprise over the ‘symptoms of of utter confusion in its value system’ displayed by the Indian society in a period of change. +","अन्यत्र, उन्होंने भारतीय समाज द्वारा बदलते हुए समय के साथ ""अपनी मूल्य व्यवस्था में नितांत भ्रम के लक्षणों"" के प्रति आश्चर्य प्रकट किया। +","anyatr , indian society dvara badalte hue period ke sath apni value system men utter confusion ke symptoms ke prti surprise prakat kiya. +",8,2 +"You shall not attain righteousness until you spend out of what you love (in the way of Allah). Allah knows whatever you spend. +","तुम नेकी और वफ़ादारी के दर्जे को नहीं पहुँच सकते, जब तक कि उन चीज़ो को (अल्लाह के मार्ग में) ख़र्च न करो, जो तुम्हें प्रिय है। और जो चीज़ भी तुम ख़र्च करोगे, निश्चय ही अल्लाह को उसका ज्ञान होगा +","tum neki aur vafadari ke darje ko nahin pahunch sakte, jab tak ki un chizo ko allah ke marg men rch n karo, jo tumhen priy hai. aur jo chiz bhi tum rch karoge, nishchay hi allah ko uska jnjan hoga +",8,1 +"But they had not been sent as guardians over them. +","हालाँकि वे उनपर कोई निगरानी करनेवाले बनाकर नहीं भेजे गए थे +","halanki ve unapar koee guardians karnevale banakar nahin bheje ge the +",9,1 +"The doctor proscribed smoking in the waiting room of his clinic. +","डॉक्टर ने अपने क्लिनिक के प्रतीक्षा कक्ष में धूम्रपान की सख्त मनाही कर दी। +","doctor ne apne clinic ke prtiksha room men smoking ki sakht manahi kar di. +",9,2 +"It was karthik month when the candle was lit +","कार्तिक मास की सघन काली अमावस्या की वह रात्रि दीयों की रोशनी से जगमगा उठी। +","month mas ki saghan kali amavasya ki vah ratri candle was lit se jagamga uthi. +",5,3 +"In a Message, the President has said: +","एक संदेश में राष्ट्रपति ने कहा हैः +","ek message men president ne kaha haia +",7,3 +"% 1 has left this channel (% 2). +","(% 1)% 2 ने इस चैनल को छोड़ा. (% 3) +","1 2 ne is channel ko chhora 3 +",6,3 +"So my question is, if it can be done in Europe, +","तो मेरा प्रश्न है, कि यदि ये यूरोप में किया जा सकता है, +","to mera question hai , ki yadi ye europe men kiya ja sakta hai , +",8,3 +"In March 2010, Vice President Joe Biden, Clinton, and Obama then picked the same fight with Israel all over again, now over Jerusalem specifically. This time, the administration needed only six weeks to retreat from its foolishness, as signaled by James Jones' speech at the Washington Institute and Elie Wiesel 's lunch at the White House. +","मार्च 2010 में उपराष्ट्रपति जोय बिडेन, क्लिंटन और ओबामा ने एक बार फिर इजरायल के साथ वही संघर्ष ठान लिया और इस बार विशेष रूप से जेरुसलम के साथ। इस बार तो प्रशासन को अपनी मूर्खता से कदम वापस खींचने में केवल छह सप्ताह लगे जैसा कि वाशिंगटन इंस्टीट्यूट में जेम्स जोंस के भाषण और व्हाइट हाउस पर एली विसेल के भोजन से संकेत मिला। +","march 2010 men vice joe biden , clinton aur obama ne ek president phir jerusalem ke sath same fight than weeks aur is president vishesh roop se jerusalam ke sath. is president to administration ko apni foolishness se kadam jones khinchne men keval chhah saptah house jaisa ki washington institute men james jons ke speech aur white haus par elie wiesel ke bhojan se snket mila. +",6,3 +"Acharya Ramchandra Sukal has written about Surdas- in the field of parental affection so much Surdas has written with close eyes, no other poet has done so much. +","सूरदास के बारे में आचार्य रामचंद्र शुक्ल ने लिखा है- वात्सल्य के क्षेत्र में जितना अधिक उद्धाटन सूर ने अपनी बंद आँखों से किया इतना किसी ओर कवि ने नहीं। +","surdas has written men aachary ramchndr shukl ne likha hai- vatsaly ke kshetr men jitna adhik uddhatan soor ne apni bnd aankhon se kiya itna kisi or kavi ne nahin. +",3,5 +"The Cyber City is operational since then. +","यह साइबर सिटी तभी से चालू है। +","yah cyber city tabhi se chaloo operational +",6,1 +"where the entire revenue of the Afghan state +","जहां अफगान राज्य का पूरा राजस्व +","jahan aphgan state ka poora revenue +",5,9 +"This excessive amount of skin cells form the skin lesions of psoriasis. +","यही अधिकाधिक त्वचा कोशिकाओं का झड़ाव त्वचा पर छालरोग के घाव पैदा कर देता है। +","yahi adhikadhik skin cells ka jharav tvcha par lesions of psoriasis paida kar deta hai. +",7,3 +"You may bring up to two witnesses to the hearing . +","आप अधिक से अधिक सुनवाई में दो गवाह ला सकते हैं . +","aap adhik se adhik hearing men do witnesses la sakte hain +",9,2 +"Computers which are connected by internet can do exchange of their information through rules of internet. +","अंतरजाल से जुडे हुए संगणक आपस मे अंतरजाल नियमावली () के जरिए सूचना का आदान-प्रदान करते है। +","computers se jude hue snganak exchange me computers rules ke jarie information ka aadan-prdan karte hai. +",6,3 +"There were the usual speeches, garlanding and so on. +","उसमें, सामान्यतः जैसा होता है, मालाएं पहनाई गई और भाषण आदि हुए। +","usmen, usual jaisa hota hai, malaen pahnaee gee aur speeches aadi hue. +",7,2 +"In France, the news of one deed spreads like a flash and brings some pride to a disillusioned people. +","फ्रांस में इस एक कारनामे की खबर बिजली की तरह फैल जाती है और लोग भ्रम से मुक़्त होकर गर्व महसूस करते हैं. +","phrans men is ek flash and brings bijli ki tarah phail jati hai aur disillusioned people se mut hokar garv mahsoos karte hain +",6,0 +"You will be more likely to give up before the 30 minutes elapse compared to you. +","आप लोगों के छोड़ने की सम्भावना, आप लोगों से ज्यादा है। +","aap logon ke chhorne ki sambhavna, aap logon se jyada hai. +",8,4 +"Toggle display of the status bar. +","स्थिति पट्टी का प्रदर्शन टॉगल करें. +","status bar ka display toggle karen +",7,3 +"An Iranian government - sponsored radio station gleefully predicts that its brand of militant Islam within the United States will “provoke a dangerous and crucial confrontation” with the American authorities. +","ईरानी सरकार द्वारा प्रायोजित एक रेडियो स्टेशन ने अत्यंत प्रसन्नतापूर्वक भविष्यवाणी की कि उसके प्रकार का उग्रवादी इस्लाम अमेरिका में अमेरिकी अधिकारियों के साथ महत्वपूर्ण और खतरनाक संघर्ष को प्रोत्साहित कर देगा। +","iranian government dvara sponsored ek radio station ne crucial prasanntapoorvak bhavishyvani ki ki uske brand ka militant islam united men ameriki authorities ke sath mahatvpoorn aur dangerous confrontation ko protsahit kar dega. +",8,1 +"The pumping system draws water from the open well, bore well, stream, pond, canal etc. +","पम्पिंग प्रणाली जल को खुले कुएं, बोरवेल, जल-धारा, तालाब, नहर आदि से खींचती है। +","pumping system water ko open kuen , borvel , jal-dhara , pond , canal aadi se draws hai. +",8,0 +"(a) expenditure in connection with— +","(क) निम्नलिखित के संबंध में व्यय– +","expenditure nimnlikhit ke connection men vyay +",7,0 +"Color to draw the Marcus Bains Line in the Time bar (empty for default). +","Marcus Bains Line को समय पट्टी में दिखाने के लिए रंग (तयशुदा रूप से खाली). +","Marcus Bains Line ko time bar men dikhane ke lie color default roop se marcus +",8,2 +"These dealt with matters arising during periods of the first and second Emergencies proclaimed in 1962 and 1971. +","इनका संबंध उन मामलों से था जो 1962 और 1971 में उदघोषित आपात उपबंध पहले और दूसरे आपातो के दौरान पैदा हुए। +","inka first un matters se tha jo 1962 aur 1971 men udghoshit emergencies upbndh pahle aur doosre aapato ke dauran periods hue. +",6,0 +"It was presented to the Legislative Council in 1856 and was passed in 1860. +","इसे 1856 में विधायी परिषद के समक्ष प्रस्तुत किया गया और1860 में पारित किया गया। +","ise 1856 men legislative council ke samaksh prastut kiya gaya aur1860 men parit kiya gaya. +",8,1 +"how where they think the flag had been changes +","कैसे वो सोचते हैं कि कहाँ फ्लैग बदल गया है +","kaise vo sochte hain ki kahan flag badal gaya hai +",9,1 +"It is a great pleasure for me to visit the Kofi Annan Centre of Excellence in ICT. +","आईसीटी में कोफी अन्नान सेंटर ऑफ एक्सीलेंस में व्याख्या करना मेरे लिए एक आनंददायक अनुभूति है। +","ict men kofi annan centre ऑph eksilens men vyakhya karna mere lie ek pleasure anubhooti great +",7,2 +"If this option is checked, every new view will display marks for code folding, if code folding is available. +","यदि यह विकल्प चुना जाता है, हर नया दृश्य कोड फोल्डिंग के मार्क्स दिखाएगा, यदि कोड फोल्डिंग उपलब्ध है. +","yadi yah option is checked hai, har naya drishy code folding ke display marks, yadi code folding upalabdh hai +",6,2 +"Third, Islamism has historic and philosophic ties to Marxism-Leninism. Sayyid Qutb, the Egyptian Islamist thinker, accepted the Marxist notion of stages of history, only adding an Islamic postscript to them; he predicted that an eternal Islamic era would come after the collapse of capitalism and Communism. Ali Shariati , the key intellectual behind the Iranian revolution of 1978-79, translated Franz Fanon, Che Guevara, and Jean-Paul Sartre into Persian. More broadly, the Iranian analyst Azar Nafisi observes that Islamism “takes its language, goals, and aspirations as much from the crassest forms of Marxism as it does from religion. Its leaders are as influenced by Lenin, Sartre, Stalin, and Fanon as they are by the Prophet.” +","तीसरा, ऐतिहासिक रूप से इस्लामवाद का मार्क्सवाद और लेनिनवाद से ऐतिहासिक और दार्शनिक सम्बन्ध है। मिस्र के इस्लामवादी चिंतक सैयद कुत्ब ने इतिहास के मार्क्सवादी विकास के चरण की अवधारणा को स्वीकार किया था और इसे मात्र इस्लामी स्वरूप दिया और उन्होंने भविष्यवाणी की थी कि पूँजीवाद और कम्युनिज्म के पतन के उपरांत शाश्वत इस्लामी युग आयेगा। 1978-79 की ईरानी क्रांति के पीछे प्रमुख बौद्धिक व्यक्ति अली शरियाती ने चे गुवेरा, फ्रांज फानोन और जीन पाल सार्टर का फारसी में अनुवाद किया था। इससे भी विस्तृत रूप में ईरानी विश्लेषक अजार नफीसी ने पाया कि इस्लामवाद, “ अपनी भाषा, उद्देश्य और प्रेरणा मार्क्सवाद के नाजुक स्वरूप से लेता है जितना कि यह धर्म से। इसके नेता लेनिन, सार्टेर , स्टालिन और फैनोन से भी प्रभावित हैं जैसे पैगम्बर से”। +","third , forms roop se islamism ka marxism aur leninvad se forms aur philosophic ties hai. egyptian ke islamist thinker sayyid kutb ne history ke marxist vikas ke stages ki notion ko svikar kiya tha aur ise matr islamic svroop diya aur unhonne bhavishyvani ki thi ki capitalism aur kamyunijm ke collapse ke leaders eternal islamic era aayega. 1978-79 ki iranian revolution ke pichhe key intellectual vyakti ali shariati ne che qutb , translated sartre aur jin pal sartar ka pharsi men anuvad kiya tha. isse bhi vistrit roop men iranian analyst azar naphisi ne paya ki islamism , apni language , uddeshy aur prerna marxism ke najuk svroop se leta hai jitna ki yah religion se. iske neta lenin , sarter , stalin aur phainon se bhi prbhavit hain jaise prophet se . +",8,0 +"The rate of interest charged on cash credit and overdraft is relatively much higher than the rate of interest on bank deposits +","नकदी ऋण और ओवरड्राफ्ट पर प्रभावित ब्याज दर बैंक जमा की दर से अपेक्षाकृत बहुत अधिक होती है। +","cash rin aur overdraft par prbhavit interest rate bank credit ki rate se apekshakrit bahut much hoti hai. +",5,1 +"Proctosigmoidoscopy is a very important instrument used by the doctor for examining the disease. +","मलाशय-अवग्रहांत्रदर्शन रोगों की जांच के लिए चिकित्सक द्वारा प्रयोग किया जाने वाला एक बहुत ही महत्वपूर्ण उपकरण है. +","malashay-avagrhantradarshan disease ki janch ke lie doctor dvara pryog kiya jane vala ek bahut hi important instrument hai +",6,4 +"And establish prayer and give zakah and obey the Messenger - that you may receive mercy. +","नमाज़ का आयोजन करो और ज़कात दो और रसूल की आज्ञा का पालन करो, ताकि तुमपर दया की जाए +","namaz ka aayojan prayer aur zakah do aur rasool ki aajnja ka palan prayer , taki tumapar mercy ki jae +",6,2 +"The Type of Service (TOS) byte on outgoing RTP IP packets. This byte is used by the network to provide some level of Quality of Service (QoS). Default value 184 (0xB8) corresponds to Expedited Forwarding (EF) PHB as defined in RFC 3246. +","आउटगोइंड RTP IP पैकेट पर सेवा प्रकार (TOS). इस बाइट को संजाल के द्वारा समान स्तर की सेवा गुणवत्ता (QoS) देने के लिए प्रयोग की जाती है. तयशुदा मान 184 (0xB8) एक्सपेडीडेट फॉर्रवार्डिंग (EF) PHB के तदनुरूप है जैसा कि RFC 3246 में परिभाषित है. +","tos RTP ef packets par service type TOS is byte ko network ke dvara saman level ki service gunavatta QoS dene ke lie pryog ki jati hai default value 184 0xB8 corresponds forwarding EF PHB ke tadnuroop hai jaisa ki RFC 3246 men paribhashit hai +",7,2 +"If you smoke you are two and half times more likely to have a heart attack than a non smoker . +","यदि आप सिग्रेट पीते हैं , तो धूम्रपान न करने के वाले के स्थान पर आप को ढाई गुना अधिक दिल का दऔरा पड़ने की सभृभावना है . +","yadi aap smoke pite hain , to dhoomrpan n karne ke vale ke sthan par aap ko half times adhik dil ka daura parne ki sabhribhavna hai +",8,2 +"It is the pivot on which the political system of the country revolves . +","यह वह धुरी है , जो देश के राजनीतिक व्यवस्था की नींव है . +","yah vah pivot hai , jo country ke political system ki ninv hai +",8,1 +"Common software for accounting has been finalised by NABARD and sent to 20 States for implementation. +","लेखांकन के लिए कॉमन सॉफ्टवेयर को नाबार्ड द्वारा अंतिम रूप दिया गया और इसे कार्यान्वयन के लिए 20 राज्यों को भेज दिया गया है. +","accounting ke lie common software ko nabard dvara antim roop diya gaya aur ise karyanvayan ke lie 20 states ko bhej diya gaya hai +",8,0 +"Kalpana was the first Indian born woman to fly into space and she was the second person of Indian origin to go into space. +","कल्पना जी अंतरिक्ष में उड़ने वाली प्रथम भारत में जन्मी महिला थीं और अंतरिक्ष में उड़ाने वाली भारतीय मूल की दूसरी व्यक्ति थीं। +","kalpna ji fly into space vali pratham bharat woman to fly thin aur antriksh men urane vali bhartiy mool ki doosri vyakti thin. +",7,1 +"A drainage basin is an extent of land. +","मैले की द्रोणी जमीन के अंत में होती है। +","drainage ki basin land ke ant men hoti extent +",7,1 +"Disability and Housing Policy housingpolicy_disability@detr.gov.uk +","अपंग और रिहाइश के बारे में नीति housingpolicy_disability@detr.gov.uk +","apng aur housing ke bare men policy housingpolicy_disabilitydetrgovuk +",7,6 +"&Always Open Files of This Type +","इस प्रकार की फ़ाइलें &हमेशा खोलें +","is type ki files open kholen +",6,2 +"Checking for installed package '% s' +","संस्थापित संकुल '% s' के लिए जाँच रहा है +","installed package s ke lie checking raha hai +",7,3 +"The more mature the clinician , the more expert will be his physical examination . +","डाक़्टर जितना अनुभवी होगा उसके द्वारा की गयी शारीरिक जांच भी उतनी ही सटीक होगी . +","mature jitna anubhvi hoga uske dvara ki gayi physical examination bhi utni hi satik hogi +",6,2 +"It starts off at i and it just keeps digging itself deeper and deeper +","यह मैं पर बंद शुरू होता है और यह सिर्फ ही गहरी और गहरी खुदाई रहता है +","yah main par bnd starts hota hai aur yah sirph hi deeper aur digging itself deeper hai +",7,1 +"For example, in Silicon Valley, ethnic Indian technopreneurs form a significant constituency. +","उदाहरण के लिए सिलिकॉन घाटी में पारम्पफरिक भारतीय तकनीकी उद्यमी द्वारा एक महत्वलपूर्ण क्षेत्र रचित किया गया है। +","udaharan ke lie silicon valley men parampaphrik bhartiy takniki udymi dvara ek mahatvalpoorn kshetr rachit kiya gaya hai. +",7,3 +"Were this true, science as an accurate, dependable and useful branch of knowledge would not have been possible; nature would have been all chaos and confusion; there would have been no permanent laws to discover, no fixed relationship between one fact or event and another; and past experiences would not have been able to give guidance to actions of man. +","यदि यह सच होता तो विज्ञान ज्ञान की एक यथार्थ, विश्वसनीय और उपयोगी शाखा नहीं होती; प्रकृति में चारों तरफ अव्यवस्था और भ्रम व्याप्त होता; खोजने के लिए कोई स्थायी नियम होते और न ही एक दूसरे तथ्यों, एक दूसरी घटनाओं के बीच कोई निश्चित संबंध होते; और न ही पिछले अनुभवों से मनुष्य को अपने कार्यों के लिए कोई मार्गदर्शन मिलता। +","yadi yah true hota to science knowledge ki ek accurate , dependable aur useful branch nahin hoti nature men charon taraph chaos aur confusion vyapt hota khojne ke lie koee permanent laws hote aur n hi ek doosre tathyon , ek doosri event ke possible koee nishchit relationship hote aur n hi past experiences se man ko apne actions ke lie koee guidance milta. +",9,2 +"When it is said to them, ""Believe in that which Allah has sent down,"" they say, ""We believe only in that which has been sent to us"", and reject everything else, though it is the Truth and confirms what is with them. Well, ask them, ""If you sincerely believed in what was sent down to you, why did you kill the Messengers of Allah (who were sent to you from amongst yourselves)? +","और जब उनसे कहा गया कि (जो क़ुरान) खुदा ने नाज़िल किया है उस पर ईमान लाओ तो कहने लगे कि हम तो उसी किताब (तौरेत) पर ईमान लाए हैं जो हम पर नाज़िल की गई थी और उस किताब (कुरान) को जो उसके बाद आई है नहीं मानते हैं हालाँकि वह (क़ुरान) हक़ है और उस किताब (तौरेत) की जो उनके पास है तसदीक़ भी करती है मगर उस किताब कुरान का जो उसके बाद आई है इन्कार करते हैं (ऐ रसूल) उनसे ये तो पूछो कि तुम (तुम्हारे बुर्जुग़) अगर ईमानदार थे तो फिर क्यों खुदा के पैग़म्बरों का साबिक़ क़त्ल करते थे +","aur jab unse kaha gaya ki jo uran khuda ne nazil kiya hai us par eeman lao to kahne lage ki everything to usi allah tauret par eeman lae hain jo everything par nazil ki gee thi aur us allah kuran ko jo uske bad yourselves hai nahin mante hain halanki vah uran ha hai aur us allah tauret ki jo unke pas hai tasdi bhi karti hai magar us allah kuran ka jo uske bad yourselves hai inkar karte hain ae rasool unse ye to poochho ki tum tumhare burju agar eemandar the to phir kyon khuda ke paimbron ka sabi tl karte the +",7,1 +"Static economy will dislocate all the developmental plans. +","स्थिर अर्थव्यवस्था सभी विकासात्मक योजनाओं को अस्त-व्यस्त कर देगी। +","static economy sabhi developmental plans ko ast-vyast kar degi. +",10,0 +"Please fill in empty pile first. +","कृपया खाली ढेर को पहले भरें. +","please empty pile ko pahle fill +",8,2 +"Automatic limit for rows in a join when using - safe - updates - safe - updates +","का उपयोग करते समय ज्वाइन में स्वतः पंक्ति-गणना को सीमित करे. +","ka upyog karte samay jvain automatic limit limit for rows kare +",6,0 +"Under the Act, the Controller - General of Patents, Designs and Trade Marks under Department of Industrial Policy and promotion, Ministry of Commerce and Industry is the Controller of Designs. +","अधिनियम के तहत, महानियंत्रक, पेटेंट, डिज़ाइन और ट्रेड मार्क वाणिज्यय एवं उद्योग मंत्रालय, औद्योगिक नीति एवं प्रवर्तन विभाग के अंतर्गत डिज़ाइनों का नियंत्रक है। +","adhiniyam ke tahat, mahaniyntrak, petent, designs and trade mark vanijyay evn udyog mntralay, audyogik policy and promotion vibhag ke antargat dizainon ka niyntrak hai. +",5,5 +"For this reason first he went to Brahma samaaj but his mind was not happy there. +","इस हेतु वे पहले ब्रह्म समाज में गए किंतु वहाँ उनके चित्त को संतोष नहीं हुआ। +","is reason ve pahle brahm samaj men ge kintu vahan unke samaaj ko sntosh nahin huaa. +",7,1 +"Detracter, spreader abroad of slanders, +","कचोके लगाता, चुग़लियाँ खाता फिरता हैं, +","kachoke spreader , chuliyan slanders phirta hain , +",3,4 +"Indian states ranking by media exposure +","मीडिया की पहुँच के आधार पर भारत के राज्य +","media ki exposure ke ranking par indian states ranking +",7,2 +"It enables the company to adopt a stable dividend policy +","इससे कंपनी की लाभांश नीति को स्थिरता मिलती है। +","isse company ki dividend policy ko stable milti hai. +",7,4 +"The following rules have been notified under the Environment Protection Act, 1986: i Manufacture, Storage and Import of Hazardous Chemicals, 1989; ii Hazardous Wasles Management and Handling Rules, 1989; and iii Manufacture, Use, Import, Export and Environment Storage of Hazardous Micro - organisms / Genetically Engineered Organisms or Cell, 1989 and iv Biomedical Waste Rules, 1998. +","इन गतिविधियों को चलाने के लिए पर्यावरण संरक्षण अधिनियम, 1986 के अंतर्गत निम्नलिखित नियम अधिसूचित किए गए हैं: 1 खतरनाक रसायनों का उत्पादन, भंडारण तथा आयात नियम, 1989:2 खतरनाक अपशिष्ट पदार्थ प्रबंध तथा हैंडलिंग नियम-1989:3 खतरनाक सूक्ष्म जीव/आनुवांशिकी इंजीनियरी जन्य जीवों अथवा कोशिकाओं का उत्पादन, उपयोग, निर्यात एवं आयात तथा भंडारण नियम 1989: और 4 जैव-चिकित्सा अपशिष्ट नियम, 1998। +","in gatividhiyon ko chalane ke lie environment protection act, 1986 ke antargat nimnlikhit niyam adhisoochit kie ge hain: 1 khatarnak rasaynon ka utpadan, bhndaran tatha aayat niyam, 1989:2 khatarnak apshisht padarth prbndh tatha haindling niyam-1989:3 khatarnak sookshm jivaanuvanshiki injiniyri jany jivon athva koshikaon ka utpadan, upyog, niryat evn aayat tatha bhndaran niyam 1989: aur 4 jaiv-chikitsa apshisht niyam, 1998. +",6,5 +"The Budget is presented with a Budget Speech which is , in fact , one of the most important speeches in Parliament . +","बजट पेश करते हुए बजट भाषण दिया जाता है जो वास्तव में संसद में सबसे महत्वपूर्ण भाषणों में से एक होता है . +","budget fact karte hue budget speech diya jata hai jo vastav men parliament men sabse important bhashnon men se ek hota hai +",7,1 +"Click here to restore hidden windows. +","छुपे विंडोज़ पुनर्स्थापित करने हेतु यहां क्लिक करें. +","restore hidden windows karne hetu yahan klik karen +",8,2 +"Eat of the lawful and good things God has provided for you, and be thankful for God’s blessings, if it is Him that you serve. +","फिर अज़ाब (ख़ुदा) ने उन्हें ले डाला और वह ज़ालिम थे ही तो ख़ुदा ने जो कुछ तुम्हें हलाल तय्यब (ताहिर) रोज़ी दी है उसको (शौक़ से) खाओ और अगर तुम खुदा ही की परसतिश (का दावा करते हो) +","phir azab god ne unhen eat dala aur vah good the hi to god ne jo kuchh tumhen lawful tayyab thankful s di hai usko shau se khao aur agar tum khuda hi ki parastish ka dava karte ho +",6,1 +"The blisters break, leaving tender ulcers (sores) that may take two to four weeks to heal the first time they occur. +","फफोले फूट जाते हैं और नरम फुंसिया रह जाती हैं जिन्हें ठीक होने में दो से चार सप्ताह लग जाते हैं। ऐसा पहली बार होता है। +","blisters break jate hain aur naram phunsiya rah jati hain jinhen time they occur do se char saptah lag jate hain. aesa pahli bar hota hai. +",7,2 +"Accessory products are to be purchased. +","होत्पादन को खरीदा जाने वाला है। +","hotpadan ko products jane accessory hai. +",3,3 +"I can't find my provider and I wish to enter it manually: +","मैं अपने प्रदाता नहीं ढूँढ़ सकता हूँ और मैं इसे दस्ती रूप से दाखिल करना चाहता हूँ (m): +","i apne provider nahin dhoon sakta hoon aur i ise dasti roop se dakhil karna chahta hoon m : +",6,4 +"Unable to build an audio track list. +","एक ऑडियो ट्रैक सूची की रचना करने में असमर्थ! +","ek audio track list ki rachna karne men unable! +",9,2 +"I do not feel unnecessarily elated in a happy situation and do not despair in moments of troubles and tragedies. +","मैं प्रसन्नता वाली स्थिति में असाधारण रूप से उल्लसित नहीं होती और मुसीबतों तथा दुखद परिस्थितियों में निराश नहीं हो जाती। +","i happy vali situation men asadharan roop se ullsit nahin hoti aur troubles tatha moments paristhitiyon men nirash nahin ho jati. +",7,1 +"As the first woman from India to clinch this Grand Slam title,you have set a new benchmark of success for Tennis players that will inspire the youth of India, especially women. +","इस ग्रांड स्लाम खिताब को जीतने वाली भारत की पहली महिला के रूप में आपने टेनिस के खिलाड़ियों के लिए सफलता का एक नया कीर्तिमान स्थापित कर दिया है जो भारत के युवाओं,खासकर महिलाओं को प्रेरित करेगा। +","is grand slam khitab ko jitne vali india ki first woman ke roop men aapne tennis ke players ke lie success ka ek new kirtiman sthapit kar diya hai jo india ke youth , khasakar women ko prerit karega. +",9,2 +"Candytuft is mostly cultivated for ornamental purposes. +","चांदी टफ या कैंडीटफ्ट मुख्यत सजावटी उद्देश्यों के लिए उगाए जाते हैं +","chandi taph ya kainditapht mukhyat ornamental purposes ke lie ugae jate hain +",8,2 +"Your local social services department will tell you about other local organisations. +","आप की लोकल कौंसिल की सेवाएं वाला विभाग आप को आप के स्थानीय समूहों के बारे में बतायेगा। +","aap ki lokal local social services vala vibhag aap ko aap ke local organisations ke bare men batayega. +",7,1 +"It gives me great pleasure to address this distinguished gathering of business participants. Other than working on business deals, such events are important platforms for deepening mutual engagement and interaction, and providing an opportunity to think creatively about ways to develop the potential of our relationship. +","मुझे व्यापार प्रतिभागियों के इस विशिष्ट समूह को संबोधित करते हुए अत्यंत प्रसन्नता हो रही है। व्यापार सौदों पर कार्य करने के अलावा, ऐसे समारोह परस्पर सम्बन्ध और बातचीत में घनिष्ठता लाने तथा अपने रिश्तों की संभावनाएं पैदा करने के तरीकों के बारे में रचनात्मक ढंग से विचार करने के महत्त्वपूर्ण मंच होते हैं। +","mujhe vyapar prtibhagiyon ke is vishisht samooh ko snbodhit karte hue atynt prasannta ho rahi hai. vyapar saudon par kary karne ke alava, aese samaroh paraspar sambandh aur batchit men ghanishthta lane tatha apne rishton ki snbhavnaen paida karne ke tarikon ke bare men rachnatmak dhng se vichar karne ke mahattvpoorn mnch hote hain. +",7,3 +"You can select one or more devices. +","आप एक या अधिक उपकरण चुन सकते हैं. +","aap ek ya more devices chun sakte hain +",9,1 +"Can 't pass document URIs to a' Type = Link 'desktop entry +","दस्तावेज़ URI को 'Type = Link' डेस्कटॉप प्रविष्टि में भेज नहीं सकता है +","pass URI ko Type type deskatp entry men uris nahin sakta hai +",5,6 +"Ardhendu Mustafi 's habit of teaching without discrimination endeared him to his fellow men. +","बिना भेदभाव के सिखाने वाले अपने स्वभाव के कारण अर्धेन्दु मुस्तफी अपने सहकर्मियों में लोकप्रिय थे। +","bina discrimination ke sikhane vale apne habit ke karan ardhendu mustphi apne fellow men lokapriy the. +",8,3 +"But there's another way, and I leave you with this. +","पर एक और तरीका है, और मैं आपको बता कर जा रही हूँ। +","par ek aur tarika hai, aur main aapko bata kar ja rahi hoon. +",9,1 +"And do not approach the orphan 's property except in a way that is best until he reaches maturity. And give full measure and weight in justice. We do not charge any soul except [with that within] its capacity. And when you testify, be just, even if [it concerns] a near relative. And the covenant of Allah fulfill. This has He instructed you that you may remember. +","""और अनाथ के धन को हाथ न लगाओ, किन्तु ऐसे तरीक़े से जो उत्तम हो, यहाँ तक कि वह अपनी युवावस्था को पहुँच जाए। और इनसाफ़ के साथ पूरा-पूरा नापो और तौलो। हम किसी व्यक्ति पर उसी काम की ज़िम्मेदारी का बोझ डालते हैं जो उसकी सामर्थ्य में हो। और जब बात कहो, तो न्याय की कहो, चाहे मामला अपने नातेदार ही का क्यों न हो, और अल्लाह की प्रतिज्ञा को पूरा करो। ये बातें हैं, जिनकी उसने तुम्हें ताकीद की है। आशा है तुम ध्यान रखोगे +","aur anath ke dhan ko hath n lagao, kintu aese tarie se jo uttam ho, yahan tak ki vah apni yuvavastha ko pahunch jae. aur insaf ke sath poora-poora napo aur taulo. ham kisi vyakti par usi kam ki zimmedari ka bojh dalte hain jo uski samarthy men ho. aur jab bat kaho, to nyay ki kaho, chahe mamla apne natedar hi ka kyon n ho, aur allah ki prtijnja ko poora karo. ye baten hain, jinki usne tumhen takid ki hai. aasha hai tum dhyan rakhoge +",4,7 +"An effective regulatory and legal framework is indispensable for the proper and sustained growth of the company. +","कंपनी की उचित तथा स्थाथयी संवृद्धि के लिए एक प्रभावपूर्ण विनियामक तथा कानूनी ढांचा अपरिहार्य है। +","effective ki proper tatha sthathyi growth ke lie ek prbhavpoorn regulatory tatha legal framework indispensable hai. +",5,4 +"Compete with one another to achieve forgiveness from your Lord and to reach Paradise, which is as vast as the heavens and the earth, and is prepared for those who believe in God and His Messenger. This is the blessing of God and He grants it to whomever He wants. The blessings of God are great. +","तुम अपने परवरदिगार के (सबब) बख़्शिस की और बेहिश्त की तरफ लपक के आगे बढ़ जाओ जिसका अर्ज़ आसमान और ज़मीन के अर्ज़ के बराबर है जो उन लोगों के लिए तैयार की गयी है जो ख़ुदा पर और उसके रसूलों पर ईमान लाए हैं ये ख़ुदा का फज़ल है जिसे चाहे अता करे और ख़ुदा का फज़ल (व क़रम) तो बहुत बड़ा है +","blessing apne paravardigar ke paradise forgiveness ki aur behisht ki taraph messenger ke aage heavens jao jiska arz aasman aur zamin ke arz ke barabar hai jo un logon ke lie taiyar ki gayi hai jo lord par aur uske rasoolon par eeman lae hain ye lord ka great hai jise chahe ata kare aur lord ka great v ram to bahut bara hai +",6,1 +"Thus decision to provide following facilities to jail inmates was taken: +","अतः जेल के कारावासियों को निम्नलिखित सुविधाएं प्रदान करने का निर्णय लिया गयाः +","ata jel ke inmates ko nimnlikhit facilities prdan karne ka decision liya gayaa +",8,4 +"Two days prior to that, his pains had abated and he told his disciples and others that he was feeling a great calm. +","मृत्यु से दो दिन पूर्व उन्होंने अपने शिष्यों को बताया कि उनका दर्द काफी कम है और वे काफी राहत महसूस कर रहे हैं। +","mrityu se do din poorv unhonne apne disciples ko others ki unka pains days calm hai aur ve days rahat mahsoos kar rahe hain. +",6,4 +"He congratulated NIFM for choosing this motto. +","उन्होंने एनआईएफएम को इस सिद्धांत को चुनने के लिए बधाई दी थी। +","unhonne enaaeeephem ko is siddhant ko chunne ke lie badhaee motto thi. +",6,5 +"They accept that they do know each other directly at see. +","वे स्वीकार करते हैं कि वे एक दूसरे पर सीधे देख पता है। +","ve accept karte hain ki ve ek doosre par directly dekh pata hai. +",8,3 +"Thus there was an inadequate appreciation of the necessity for speedy action in a vital sector. +","इस प्रकार इस महत्वपूर्ण क्षेत्र में तेजी से काम करने की आवश्यकता पर कोई ध्यान नहीं दिया गया. +","is prkar is vital sector men inadequate se action karne ki necessity par koee dhyan nahin diya gaya +",9,0 +"K. G. M Khan, a dweeler of lahore, made a pure gold urn. +","का़जि़म खान लाहौर का निवासी ने ठोस सुवर्ण कलश निर्मित किया। +","kjm khan lahaur ka nivasi ne thos suvarn kalash nirmit kiya. +",9,1 +"No, it was not there +","नही, वो उधर नही था +","nahi, vo udhar nahi tha +",9,1 +"Saponification literally means soap making. +","साबुनीकरण या साबुनीभवन का शाब्दिक अर्थ साबुन निर्माण है. +","sabunikaran ya sabunibhavan ka shabdik arth soap making hai +",8,3 +"Flies carry diseases from infected persons to healthy persons. +","मक्खियां संक्रमित व्यक्तियों से स्वस्थ व्यक्तियों में बीमारियाँ फैलाती हैं। +","flies infected persons se healthy persons men diseases phailati hain. +",10,0 +"We cannot become what we need to be by remaining what we are +","हम जो हैं वही बने रहकर वह नहीं बन सकते जो कि हम बनना चाहते हैं। +","ham jo hain vahi bane remaining vah nahin ban sakte jo ki ham banna chahte hain. +",8,2 +"Doppler radar is generally used in police radar systems and also for measuring the velocity of hurricanes. +","डॉपलर रडार का उपयोग आम तौर पर पुलिस रडार प्रणालियों में किया जाता है, इसके साथ ही इसका इस्तेमाल तूफान के वेग को मापने के लिए भी किया जाता है +","doppler radar ka upyog aam taur par police radar systems men kiya jata hai, iske sath hi iska istemal velocity of hurricanes ko mapne ke lie bhi kiya jata hai +",7,3 +"Ther are many product, device, or equipment in adaptive technology which include large - key keyboards, alternative input devices, like touch screen displays, speech recognition programs, text reader etc.. +","अनुकूली तकनीक में अनेक उत्पाद, उपकरण या उपस्कर हैं, जिनमें बड़ी कुंजी वाले कुंजीपटल, वैकल्पिक इनपुट उपकरण, जैसे-स्पर्श स्क्रीन प्रदर्श, भाषण पहचान प्रोग्राम, तथा पाठ्यांश वाचक आदि शामिल हैं +","anukooli taknik men anek utpad, upakaran ya upaskar hain, jinmen bari kunji vale kunjipatal, alternative input devices, jaise-sparsh skrin pradarsh, speech recognition programs, tatha text reader etc shamil hain +",8,2 +"And in this state, he is married and brings home a wife. +","इसी हालत मके उसका विवाह हो जाता है और पत्नी घर में ले आता है। +","isi halat make uska vivah ho jata hai aur patni ghar men le aata married +",5,5 +"In such courts, one can expect to get justice. +","ऐसी अदालतों में न्याय पाने की उम्मीद की जा सकती है. +","aesi courts men nyay pane ki ummid ki ja sakti hai +",9,1 +"“ Aren ' t you a tiny bit superstitious ? ” +","“ क्या तुम खुद बिलकुल भी अन्धविश्वासी नहीं हो ? ” +","kya tum khud bilkul bhi superstitious nahin ho +",10,0 +"The quantitative relation between the targets and the achievement. +","लक्ष्य तथा उनके विरूद्ध कार्य सम्पादन के संदर्भ में संख्यात्मक अनुपात। +","lakshy tatha unke virooddh kary sampadan ke sndarbh men snkhyatmak anupat. +",8,1 +"The writer of this monograph met her in October 1972 in Leningrad. +","इस पुस्तक के लेखक की अक्तूबर 1972 में, लेनिनग्राद में, लोला से, उनके घर पर भेंट हुई। +","is pustak ke writer ki october monograph men , leningrad men , lola se , unke ghar par bhent huee. +",7,1 +"A sudden state of danger in financial matters. +","वित्तीय मामलों में उपस्थित आकस्मिक आपात स्थिति। +","danger in financial upasthit aakasmik sudden state +",6,2 +"It enables the company to adopt a stable dividend policy +","इससे कंपनी की लाभांश नीति को स्थिरता मिलती है। +","isse company ki dividend policy ko sthirta milti hai. +",10,0 +"Ask your council about anything in the tenancy agreement you do not understand. +","यदि किरायेदारी के समझोते में कोई बात आपको समझ नहीं आती, तो आ कौंसिल को पूँछे। +","yadi council ke samjhote men koee anything aapko samajh nahin aati , to aa kaunsil ko poonchhe. +",5,2 +"“ We have always supported the UDF and have a right to nominate those whom we believe will help us , ” says Monsignor Paul Kakkassery , the diocese 's spokesman . +","उनके प्रवक्ता मॉनसिग्नोर पॉल कक्कास्सेरी ने कहा भी , ' ' हमने हमेशा संलमो का समर्थन किया है.इसलिए हमें ऐसे लगों को मनोनीत करने का अधिकार है जिनके बारे में हमारा मानना है कि वे हमारी मदद करेंगे . ' ' +","unke spokesman monsignor paul kakkassery ne kaha bhi , hamne hamesha udf ka samarthan kiya haiislie hamen aese lagon ko manonit karne ka right hai jinke bare men hamara manna hai ki ve hamari madad karenge +",4,5 +"'In exercise of the powers vested in him by Rule 58 1 paragraph b of the Defence of Hyderabad Rules which correspond to the Defence of India Rules, it is hereby ordered that no person shall unfurl in a ceremonial fashion at any public function the flag of any foreign country nor salute it. +","हैदराबाद रक्षा-कानूनों जो भारत रक्षा-कानूनों के जैसे ही है की धारा-58 1 के पैरा ब द्वारा उनमें निजाम में निहित सत्ताओं का अमल करके यह आदेश दिया जाता है कि कोई भी व्यक्ति किसी भी सार्वजनिक समारोह में विधिवत् किसी विदेश के झंडे को न तो फहरायेगा और न उसे सलामी देगा। +","hyderabad raksha-kanoonon jo rule raksha-kanoonon ke jaise hi hai ki dhara-58 1 ke paragraph powers dvara unmen nijam men nihit sattaon ka amal karke yah aadesh diya jata hai ki koee bhi person kisi bhi public defence men vidhivat kisi foreign ke exercise ko n to phahrayega aur n use salute dega. +",8,2 +"Special schemes for SHGs and to empower women folk +","स्वयं सहायता समूह के लिए विशेष योजना और महिलाओं को सशक्त बनाना +","shgs sahayta samooh ke lie special schemes aur women ko sashakt banana +",8,2 +"The process of arbitration that has to be followed compulsorily as per law. +","किसी मामले में पंचनिर्णय की प्रक्रिया जो कानूनन अनिवार्य रूप से पालन करनी होगी। +","kisi mamle men arbitration ki process jo law anivary roop se palan karni hogi. +",7,1 +"Let not those grieve thee who rush headlong into Unbelief: Not the least harm will they do to Allah: Allah 's plan is that He will give them no portion in the Hereafter, but a severe punishment. +","और (ऐ रसूल) जो लोग कुफ़्र की (मदद) में पेश क़दमी कर जाते हैं उनकी वजह से तुम रन्ज न करो क्योंकि ये लोग ख़ुदा को कुछ ज़रर नहीं पहुँचा सकते (बल्कि) ख़ुदा तो ये चाहता है कि आख़ेरत में उनका हिस्सा न क़रार दे और उनके लिए बड़ा (सख्त) अज़ाब है +","aur plan rasool jo let unbelief ki madad men pesh dmi kar jate hain unki least se tum grieve n hereafter kyonki ye let uda ko kuchh zarar nahin pahuncha sakte balki uda to ye chahta hai ki aaerat men unka portion n rar de aur unke lie severe sakht azab hai +",4,1 +"Now who will take rebukes on my behalf. +",", अब वहाँ मेरे स्थान पर कौन झिड़किए खायेगा? +",", behalf vahan mere sthan par kaun jhirkie khayega +",8,0 +"The extant colophons indicate that the art of the parivadini a stringed lute called Vidya - parivadini was enunciated by a Gunasena, and the notations were got inscribed for the benefit of the votaries by a king who was a great Saiva or Paramamahesvara, and a disciple of Rudracharya. +","विद्यमान पुष्पिकाएं संकेत देती है कि परिवादिनी तंत्रीयुक्त वीणा की कला या विद्या परिवादिनी किसी गुणसेन द्वारा प्रतिपादित की गई थी और एक महान शैव या परममाहेश्वर नरेश और रूद्राचार्य के शिष्य द्वारा शौकीनों के लाभ के लिए उत्कीर्ण करवाई गई थी। +","extant colophons snket deti hai ki parivadini tntriyukt lute ki art ya vidya parivadini kisi votaries dvara prtipadit ki gee thi aur ek great saiva ya parammaheshvar king aur notations ke disciple dvara shaukinon ke benefit ke lie utkirn karvaee gee thi. +",8,1 +"I take this opportunity to convey my best wishes for your Excellency’s well being and for the continued progress and prosperity of the friendly people of Saint Vincent and the Grenadines. +","मैं इस अवसर पर महामहिम की कुशलता तथा सेंट विंसेंट एवं ग्रेनडीन की मित्र जनता की निरंतर प्रगति और समृद्धि के लिए अपनी मेरी शुभकामनाएं देता हूं। +","main is avasar par mahamhim ki kushalta tatha sent vinsent evn grendin ki mitr janta ki nirntar pragti aur samriddhi ke lie apni meri shubhkamnaen deta hoon. +",4,7 +"Occurrences when an extension was installed +","एक्सटेंशन इंस्टॉल किए जाने की पुनरावृत्तियां +","extension instl kie jane ki occurrences +",8,1 +"Finance Bill 2008 was published on 27th March. +","वित्त विधेयक 29 मार्च 2000 को प्रकाशित किया गया था। +","finance bill 29 march 2000 ko prkashit kiya gaya tha. +",8,1 +"Then We destroyed the others. +","फिर हमने बाक़ी लोगों को तबाह व बर्बाद कर दिया +","phir hamne bai logon ko tabah v barbad kar diya +",5,6 +"Mountain Biking (External website that opens in a new window) +","माउंटेन बाइकेन (बाहरी वेबसाइट जो एक नई विंडों में खुलती हैं) +","mountain baiken external website jo ek new vindon men khulti hain +",6,4 +"TRUE if this printer can accept PDF +","सही अगर यह मुद्रक PDF स्वीकार कर सकता है +","true agar yah printer PDF accept kar sakta hai +",10,0 +"The Ministry of Education may take action: - +","शिक्षा मंत्रालय निम्नलिखित विषय में कार्रवाई करें-- +","education mntralay nimnlikhit vishay men karrvaee karen-- +",9,2 +"141. [Omitted by the Taxation Laws (Amendment) Act, 1970, w.e.f. 1-4-1971.] +","141. [कराधान विधि (संशोधन) अधिनियम, 1970 द्वारा 1.4.1971 से लोप किया गया।] +","141 kradhan laws snshodhan act, 1970 dvara 141971 se omitted kiya gaya. +",7,4 +"The Reserve Bank has stated that the company has passed resolutions at its Board of Directors’ level and a special resolution by the shareholders, agreeing for enhancing the limit for the purchase of its equity shares and convertible debentures by FIIs / RFPIs. +","रिज़र्व बैंक ने बताया है कि कंपनी ने अपने निदेशक मंडल स्तर पर संकल्प पारित किए हैं और शेयरधारकों द्वारा एक विशेष संकल्प पारित किया गया है जिसमें एफआईआई/आरएफपीआई द्वारा इसके इक्विटी शेयरों और परिवर्तनीय डिबेंचरों की खरीद की सीमा में वृद्धि करने पर सहमति बनी है। +","reserve bank ne bataya hai ki company ne apne board mndal level par resolutions parit fiis hain aur shareholders dvara ek special resolutions parit kiya gaya hai jismen ephaaeeaaeeaarephpiaaee dvara iske equity sheyron aur convertible debentures ki purchase ki limit men vriddhi karne par sahamti bani hai. +",8,1 +"And in that, we have to look at not only the long - term strength of the country and the society, but also we have to see the short - term needs which we simply cannot ignore. +","और ऐसा करते हुए हमें केवल समाज और देश की दीर्घकालीन मजबूत को ध्यान में रखना है बल्कि अल्पकालिक जरूरतों को भी देखना है जिनकी अनदेखी नहीं की जा सकती। +","aur aesa karte hue hamen keval samaj aur desh ki term strength ko dhyan men rakhna hai balki alpkalik jaroorton ko bhi dekhna hai jinki andekhi nahin ki ja sakti. +",4,6 +"Could not start% 1 application. +","अनुप्रयोग% 1 चला नहीं सका. +","application 1 chala nahin saka +",8,3 +"This is how We reward the doers of good. +","मुबारक हम नेकोकारों को ऐसा ही बदला दिया करते हैं +","mubarak ham reward the doers hi badla diya karte hain +",6,4 +"follow the line all the way from B to E, +","बी से ई तक की रेखा के पीछे पूरे रास्ते चलिए, +","bi se ee tak ki rekha ke follow follow the line, +",6,1 +"In short they were now in a mood to send their sons to any school which the Anjuman set up. +","संक्षिप्त में, अब अंजुमन द्वारा स्थापित स्कूल में अपने पुत्रों के भेजने का उनका मन हो गया। +","short men , ab anjuman dvara sthapit school men apne sons ke bhejne ka unka mood ho gaya. +",8,0 +"and there go round them youths, their own, as if they were hidden pearls. +","(और ख़िदमत के लिए) नौजवान लड़के उनके आस पास चक्कर लगाया करेंगे वह (हुस्न व जमाल में) गोया एहतियात से रखे हुए मोती हैं +","aur youths ke lie naujvan own unke aas pas chakkar lagaya karenge vah pearls v jamal men goya ehtiyat se rakhe hue moti hain +",4,2 +"Even younger women pull the strings from behind. +","कम उम्र की स्त्रियां भी पर्दे के पीछे से सूत्रधार बनी रहती हैं। +","kam younger ki women bhi parde ke pichhe se sootrdhar bani rahti hain. +",7,1 +"In fact, someone on Reddit thought, +","बल्कि, रेडिट पे किसी नें सोचा, +","fact , reddit pe kisi nen thought , +",5,1 +"Circulation of water from the tank through the collectors and back to the tank continues automatically due to density difference between hot and cold water (thermosyphon effect). +","टंकी से संग्राहक तक पानी की धारा का प्रवाह गर्म और ठंडे पानी के घनत्व में अंतर (थर्मोसाइफन प्रभाव) के कारण हमेशा स्वचालित ढंग से बना रहता है। +","tank se collectors tak water ki dhara ka circulation hot aur thnde water ke ghanatv men difference tharmosaiphan effect ke karan hamesha svchalit dhng se bana rahta hai. +",6,5 +"When the eye is bewildered, +","तो जब निगाह चौंधिया जाएगी, +","to jab eye chaundhiya jaegi , +",9,1 +"Program module is a file that contains instructions which are either in the form of source code or machine language. +","माड्यूल, एक संचिका होती है, जिसमें या तो स्रोत कोड या मशीन भाषा के रूप में अनुदेश निहित होते हैं। +","madyool, ek snchika hoti hai, jismen ya to srot code or machine bhasha ke roop men anudesh nihit hote hain. +",8,1 +"To help minimise the noise pollution caused by necessary construction and demolition works , the local authority has the power under section 60 of the Control of Pollution Act 1974 to specify the way in which the work must be carried out . +","आवश्यक निर्माण व ढहानेसे उत्पन्न शोर -दूषण को कम से कम करने के लिए कंट्रोल अऑफ पॉप्यूलेशन ऐक्ट 1974 के सेक्शन 60 के अंतरगत लोकल अथॉरिटी को अधिकार है कि वह काम किस प्रकार किए जाए इस बारे में विशेष निर्देश दे . +","necessary construction v pollution utpann noise -dooshan ko kam se kam karne ke lie control aऑph ppyooleshan aekt 1974 ke sekshan 60 ke antaragat local athriti ko authority hai ki vah work kis way kie jae is bare men vishesh nirdesh de +",6,3 +"Since, most of the producer organizations are at nascent stage, their focus is mainly on production and to some extent the aggregation. +","चूंकि अधिकतर उत्पावदक संगठन शुरूआती अवस्थाथ में हैं, अतः उनका मुख्य फोकस उत्पादन और कुछ हद तक संग्रहण पर है. +","choonki most producer sngathan stage nascent men hain , ata unka mukhy focus production aur kuchh extent tak sngrahan par hai +",6,3 +"An effective regulatory and legal framework is indispensable for the proper and sustained growth of the company. +","कंपनी की उचित तथा स्थाथयी संवृद्धि के लिए एक प्रभावपूर्ण विनियामक तथा कानूनी ढांचा अपरिहार्य है। +","knpni ki uchit tatha sthathyi snvriddhi ke lie ek prbhavpoorn regulatory and legal framework is indispensable +",6,3 +"” I hold the power of life and death for every person I take with me . +","“ जो भी मेरे साथ चलता है उसकी जिंदगी और मौत मेरे हाथों में होती है । +","jo bhi i sath chalta hai uski life aur death i hathon men hoti hai . +",5,3 +"associated or substantially identical trade marks +","सहयुक्त या सारत तदरूप व्यापार चिह्न +","sahyukt ya sarat identical trade marks +",8,2 +"It is now our duty to produce from their literature some clear testimonies as to this subject and cognate theories of other nations. +","अब उनके (हिन्दुओं के) साहित्य से इस विषय और अन्य जातियों के सजातीय सिद्धांतों के संबंध में कुछ स्पष्ट साक्ष्य प्रस्तुत करना हमारा कर्तव्य हो जाता है. +","ab unke hinduon ke literature se is subject aur other nations ke testimonies theories ke snbndh men kuchh clear sakshy prastut karna hamara duty ho jata hai +",9,0 +"and that they who have been given knowledge may know that it is the truth from thy Lord and believe in it, and so their hearts be humble unto Him; and assuredly God ever guides those who believe to a straight path. +","और ताकि वे लोग जिन्हें ज्ञान मिला है, जान लें कि यह तुम्हारे रब की ओर से सत्य है। अतः वे इसपर ईमान लाएँ और उसके सामने उनके दिल झुक जाएँ और निश्चय ही अल्लाह ईमान लानेवालों को अवश्य सीधा मार्ग दिखाता है +","aur taki ve log jinhen jnjan mila hai, jan len ki yah tumhare rab ki or se saty hai. ata ve isapar eeman laen aur uske samne unke hearts be humble aur nishchay hi allah eeman lanevalon ko avashy sidha marg dikhata hai +",8,1 +"Or, listen to Basava: The root is the mouth of the tree, pour water there at the bottom, and, look, it sprouts green at the top. +","अथवा बासव की बात सुनें, जड़ पेड़ का मुख है, जड़ को सींचो और देखो वह चोटी पर हरा-भरा हो जाता है। +","athva basav ki look sunen , root per ka mouth hai , root ko sincho aur dekho vah top par hara-bhra ho jata hai. +",7,2 +"Before the boy could reply, a butterfly appeared and fluttered between him and the old man. +","इससे पहले कि लड़का कुछ जवाब देता एक तितली उन दोनों के बीच आकर अपने पर फड़फड़ाने लगी। +","old pahle ki boy kuchh javab deta ek butterfly un donon ke bich aakar apne par pharapharane lagi. +",7,0 +"Color to use for the bottom color - stop of the skydome - fallback gradient +","स्काइडोम फालबैक ढ़ाल के तलवर्ती रंग स्टॉप के लिए प्रयोग का रंग +","skydome fallback bottom ke talavarti color stop ke lie pryog ka color +",6,2 +"Siyaramsharan Gupta Brotherhood of communities and inter - religious interaction is the very basis of our Indian society. +","जातीय भाईचारा और साम्प्रदायिक मेल मिलाप भारतीय समाज के आधार है। +","jatiy bhaeechara aur samprdayik mel milap indian society ke aadhar hai. +",8,4 +"Our enemy is thoughtlessness. This is philosophy. ” +","अविचारशीलता हमारी शत्रु है। यह दर्शन है ” +","avicharshilta hamari enemy hai. yah darshan hai +",6,5 +"For more details log on to source link: http: / / www. orissa. gov. in / commerce% 26transport / +","अधिक जानकारी के लिए देखेंः http: / / www. orissa. gov. in / commerce% 26transport / +","more jankari ke lie source http : commerce orissa gov orissa commerce 26transport +",5,3 +"There were problems applying the diff% 1 to the file% 2. +","डिफ़% 1 को फ़ाइल% 2 में लागू करने में समस्याएँ हैं. +","problems 1 ko file 2 men lagoo karne men samasyaen hain +",7,2 +"Now, I don't know if she's toying with me, +","अब मुझे नहीं पता कि वो मेरे साथ खिलवाड़ कर रही हैं या नहीं, +","ab i nahin pata ki vo mere sath khilvar kar rahi hain ya nahin , +",7,3 +"Padhya and Brahmbhatt, who painstakingly gathered facts on the lake, produced satellite pictures that showed the presence of a lake. +","पाध्या और ब्रह्मंभट्टं ने पूरी कोशिश करके तथ्य जुटाए और उपग्रह से खींची गई तस्वीरें पेश की, जिनसे वहां ज्हील होने की पुष्टि होती थी. +","padhya aur brahmbhatt ne poori koshish karke facts lake aur satellite se khinchi gee pictures pesh ki , jinse vahan jhil hone ki pushti hoti thi +",9,1 +"He always enjoyed a fund of affection and goodwill from Mr. Ghosh, since the beginning of his political career in the early sixties. +","वह शुरुआती साठ के दशक में आरंभ अपने राजनीतिक जीवनवृत्त से श्री घोष का स्नेह और सद्भावना प्राप्त करते रहे। +","vah early sixties ke dashak men aarnbh apne political career se shri ghosh ka sneh aur sadbhavna prapt karte rahe. +",8,1 +"Later on, the recommendations have also been accepted by the State of Bihar +","बाद में, सिफारिशें भी बिहार राज्य द्वारा स्वीकार कर ली गयी हैं +","bad men , recommendations bhi bihar state dvara svikar kar li gayi hain +",9,1 +"From the preventive point of view, their offences merit severe punishment. +","अतः निवारक दृष्टिकोण से उनके अपराध कड़ी से कड़ी सजा की मांग करते हैं. +","ata preventive point se unke offences merit se merit punishment ki mang karte hain +",9,0 +"And that is for Allah not difficult. +","और ये कुछ खुदा के वास्ते दुशवार नहीं +","aur ye kuchh khuda ke vaste difficult nahin +",9,2 +"In the twenty first century Maoist 's rebel spread a lot. +","इक्कीसवीं सदी की शुरुआत में नेपाल में माओवादियों का आन्दोलन तेज होता गया। +","twenty century ki shuruaat men nepal men maoist ka aandolan tej hota gaya. +",5,7 +"All that wouldn 't have mattered if Bhasmasura had been a friendly, good demon. +","इन बातों का कोई मतलब न होता अगर भस्मासूर एक अच्छा राक्षस होता और सबसे मित्रता रखता। +","in baton ka koee matalab n hota agar bhasmasoor ek good demon hota aur sabse mitrta rakhta. +",8,3 +"A dvitala and hence ashtanga, or ashtavarga vimana of the same Nagara order, square from base to apex is illustrated in the incomplete Valaiyankuttai ratha facing east. +","उसी नागर श्रेणी का एक द्वितल और इसलिए अष्टांग या अष्टवर्ग, आधार से शिखर तक वर्गाकार विमान, पूर्वाभिमुख अपूर्ण वलैयांकुट्टई रथ के रूप में देखा जा सकता है। +","usi nagar shreni ka ek dvital aur islie ashtang ya ashtavarg, square from base tak vargakar viman, facing east valaiyankuttee rath ke roop men dekha ja sakta hai. +",7,3 +"Some of the accused protested against being treated as common cirminals, and not as political prisoners, who had declared open war against the Crown. +","कुछ अभियोगियों ने, जिन्होंने राज के खिलाफ खुले युद्ध की घोषणा की थी, अपने साथ राजनैतिक बंदियों की जगह पर आम अपराधियों जैसा व्यवहार किये जाने का विरोध किया। +","kuchh abhiyogiyon ne, jinhonne raj ke declared open war ki ghoshna ki thi, apne sath political prisoners ki jagah par aam apradhiyon jaisa vyavhar kiye jane ka virodh kiya. +",6,1 +"Rishi Srink is a love story of a Risi (Saint) +","ॠष्य ॠंग एक ॠषि की प्रेमकथा। +","rishi srink ek risi ki love +",8,0 +"Web Server to Predict Hub Proteins +","हब प्रोटीन की भविष्यवाणी हेतु वैब सर्वर +","hab proteins ki predict hetu web server +",9,1 +"(4A) 59Every person in receipt of income derived from property held under trust or other legal obligation wholly for charitable or religious purposes or in part only for such purposes, or of income being voluntary contributions referred to in sub-clause (iia) of clause (24) of section 2, shall, if the total income in respect of which he is assessable as a representative assessee (the total income for this purpose being computed under this Act without giving effect to the provisions of sections 11 and 12) exceeds the maximum amount which is not chargeable to income-tax, furnish a return of such income of the previous year in the prescribed form and verified in the prescribed manner and setting forth such other particulars as may be prescribed and all the provisions of this Act shall, so far as may be, apply as if it were a return required to be furnished under sub-section (1). +","(4क) पूर्णतः पूर्त या धार्मिक प्रयोजन के लिए या भागतः ऐसे प्रयोजनों के लिए न्यास या अन्य विधिक बाध्यता के अधीन धारित सम्पत्ति से उद्भूत आय, या धारा 2 के खंड (24) के उपखंड (iiक) में निर्दिष्ट स्वैच्छिक अभिदाय के रूप में आय प्राप्त करने वाला हर व्यक्ति, यदि वह सकल आय, जिसकी बाबत वह प्रतिनिधि निर्धारिती के रूप में निर्धारणीय है, (इस प्रयोजन के लिए सकल आय धारा 11 और 12 के उपबंधों को लागू किए बिना इस अधिनियम के अधीन संगणित की जाएगी) उस अधिकतम रकम से अधिक है जो आय-कर से प्रभार्य नहीं है, तो विहित प्ररूप में और विहित रीति में सत्यापित करके और ऐसी अन्य विशिष्टियां देते हुए, जो विहित की जाएं, पूर्ववर्ष की ऐसी आय की विवरणी देगा और इस अधिनियम के सभी उपबंध, यथाशक्य, इस प्रकार लागू होंगे मानो वह उपधारा (1) के अधीन दिए जाने के लिए अपेक्षित विवरणी हो। +","4k poornta poort ya religious charitable ke lie ya bhagta aese purposes ke lie trust ya other legal badhyta ke sections dharit property se udbhoot receipt , ya clause 2 ke part 24 ke iia iik men nirdisht voluntary contributions ke form men receipt prapt karne vala har person , yadi vah sakal receipt , jiski babat vah representative nirdhariti ke form men assessable hai , is charitable ke lie sakal receipt clause 11 aur 12 ke upbndhon ko year kie bina is act ke sections sngnit ki jaegi us maximum amount se adhik hai jo aay-kar se chargeable nahin hai , to such prroop men aur such manner men satyapit karke aur forth other particulars dete hue , jo such ki jaen , poorvavarsh ki forth receipt ki vivarni dega aur is act ke sabhi upbndh , yathashaky , is prkar year honge mano vah updhara 1 ke sections die jane ke lie apekshit vivarni ho. +",6,2 +"16. Pitchblende and other uranium ores. +","16. पिचब्लेंड और अन्य यूरेनियम अयस्क। +","pitchblende pichablend aur other uranium ores +",4,5 +"They are outstanding engineering feats. +","ये परियोजनाएं इंजीनियरों के अनूठे कारनामे हैं। +","ye pariyojnaen injiniyron ke outstanding karname hain. +",8,0 +"Indicates whether any trailing zeroes after the numeric point should be shown in the display value. +","बताता है कि कोई पश्चगामी शून्य जिसके बाद संख्या बिंदु को प्रदर्शन मान में दिखाया जाना चाहिए. +","batata hai ki koee trailing zeroes jiske bad snkhya bindu ko pradarshan man men dikhaya jana chahie +",9,0 +"Look for ABTA -LRB- Association of British Travel Agents -RRB- or AITO -LRB- Association of Independent Tour Operators -RRB- on brochures or invoices . +","सैर सपाटे की पुस्तकाओं या इंवाईसेज़ में आभ्ठा ( आस्सोचिअटिओन् ओङ् भ्रिटिस्ह् ठ्रवेल् आगेन्ट्स् ) या आईठौ ( आस्सोचिअटिओन् ओङ् ईन्डेपेन्डेन्ट् ठोउर् औपेरटोर्स् ) की तालाश कीजिए . +","tour operators ki pustkaon ya invaeesez men aabhtha aassochiation ong bhritish thrvel aagents ya aaeethau aassochiation ong eendependent thour aupertors ki talash kijie +",5,4 +"Drinking the way thirsty camels drink. +","और पियोगे भी तो प्यासे ऊँट का सा (डग डगा के) पीना +","aur piyoge bhi to thirsty camels ka way dag daga ke pina +",7,3 +"Apply Rajiv Gandhi Advocate’s Training Scheme +","राजीव गाँधी अधिवक्ता प्रशिक्षण हेतु आवेदन करना +","rajiv gandhi advocate training hetu karna +",9,0 +"VIP s shild issue passes for gallery. +","विशिष्ट दर्शक गॅलरी के पास जारी करें। +","vishisht gallery passes for gallery jari karen. +",6,2 +"Ne _ ver Add Such File +","कभी ऐसी फाइल मत जोड़ें (_ v) +","such aesi file mat ne _ ver +",6,2 +"The kutas and salas over the mandapa are of a smaller size than those over the aditala as usual. +","मंडप के ऊपर के कूट और शाला आदितल के ऊपर के कूटों और शलाओं से छोटे हैं जो कि सामान्य है। +","mndap ke oopar ke kutas and salas aadital ke oopar ke kooton aur shalaon se chhote hain jo ki samany hai. +",7,3 +"The meeting was held that very night at about 11 or 12 p. m. +","रातके लगभग 11 या 12 बजें यह सभा हुई। +","ratke lagabhag night ya 12 bajen yah meeting huee. +",4,4 +"It is right that we should put all our strength in the advancement of the cause that we hold dear. +","यह बहुत ठीक है कि जो मकसद हमें प्यारा है, उसको पूरा करने के लिए हम अपनी पूरी ताकत लगा दें। +","yah bahut right hai ki jo cause hamen dear hai , usko poora karne ke lie advancement apni poori strength laga den. +",7,1 +"Polar ice caps may melt further and increase the size of the oceans which may submerge large expanses of land - LRB - China, Egypt, Indonesia, Bangladesh and West Bengal face this threat - RRB -. +","अधिक मात्रा में ध्रुवों की बर्फ पिघलने से सागरों में जल का स्तर बढ़ जाएगा. जिससे पृथ्वी का काफी बड़ा भू-भाग इसमें डूब जाएगा. चीन, मिस्त्र, इन्डोनेशिया, बंग्लादेश और पश्चिम बंगाल के लिए यह खतरा मंडरा रहा है. +","large size men polar ki barph pighalne se oceans men indonesia ka star ba lrb jisse land ka kaphi bara bhoo-bhag ismen doob lrb china , egypt , indoneshiya , bangladesh aur west bengal ke lie yah threat mndra raha hai +",6,4 +"It ' s what turns lead into gold , and makes the gold return to the earth . ” +","यही चक्र सीसे को सोना बना देता है , और सोने को धरती में वापिस समावेश करा देता है । ” +","yahi chakr lead into gold bana deta hai , aur sone ko dharti men vapis samavesh kara deta hai . +",7,1 +"The President said the North Eastern Hill University (NEHU) has acted as a centre of empowerment of the people in North-Eastern region. He expressed his happiness over gender parity in the student population, with a 1:1 male-female ratio and the fact that women outperform men beyond the ratio. +","राष्ट्रपति ने कहा कि पूर्वोत्तर पर्वतीय विश्वविद्यालय ने पूर्वोत्तर क्षेत्र में लोगों के सशक्तीकरण के केन्द्र के रूप में काम किया है। उन्होंने विद्यार्थियों में 1:1 के पुरुष महिला अनुपात के साथ लैंगिक समानता पर तथा इस बात पर प्रसन्नता व्यक्त की कि महिलाओं ने पुरुषों को औसत से पीछे छोड़ दिया है। +","president ne kaha ki north parvtiy university ne north centre men population ke empowerment ke kendr ke roop men kam kiya people unhonne student men 1:1 ke purush mahila ratio ke sath laingik parity par tatha is bat par happiness vyakt ki ki women ne purushon ko ausat se pichhe chhor diya people +",8,4 +"The violin bow might well have grown out of the act of fire-making by scraping one rod over another . +","बहुत संभव है कि वायलिन का गज भी एक छड़ी को दूसरी छड़ी पर रगड़कर आग जलाने वाली सामान्य जीवन की क्रिया का ही विकसित रूप हो . +","bahut snbhav hai ki vaylin ka gaj bhi ek chhari ko doosri chhari par scraping one rod vali samany jivan ki kriya ka hi viksit roop ho +",5,3 +"In fact, clans or families which succeeded in winning chieftainship were readily admitted into the frame of Hindu polity as Kshatriyas or Rajputs. +","वास्तव में सरदार का पद जीतनेवाले वंशों या परिवारों को हिंदू राजनीतिक व्यवस्था में आसानी से क्षत्रियों या राजपूतों के रूप में स्वीकार कर लिया जाता था। +","vastav men sardar ka pad jitnevale vnshon ya parivaron ko hindoo rajnitik vyavastha men aasani se kshatriyon ya rajpooton ke roop men svikar kar liya jata tha. +",8,4 diff --git a/Dataset making/valid.csv b/Dataset making/valid.csv new file mode 100644 index 0000000..a6f85cc --- /dev/null +++ b/Dataset making/valid.csv @@ -0,0 +1,1581 @@ +English,Hindi,Hinglish,Average rating,Disagreement +"Are you sure you want to permanently delete these files? +","क्या आप इन फ़ाइलों को स्थायी रूप से हटाना चाहते हैं? +","kya aap in files ko sthayi roop se permanently delete hain +",6,4 +"Three public meetings were held in Bombay City to observe this day. +","उस अवसर पर बंबई में तीन सभाएं की गयीं। +","us avasar par bombay meetings were held ki gayin. +",7,1 +"Nominee of the insurance has to be a near relative of the subscriber. +","बीमा का नामित व्यक्ति अभिदाता का निकट संबंधी होगा। +","insurance ka namit vyakti abhidata ka nikat snbndhi hoga. +",9,2 +"Thus there was an inadequate appreciation of the necessity for speedy action in a vital sector. +","इस प्रकार इस महत्वपूर्ण क्षेत्र में तेजी से काम करने की आवश्यकता पर कोई ध्यान नहीं दिया गया. +","is prkar is vital sector inadequate appreciation se kam karne ki aavashyakta par koee dhyan nahin diya gaya +",9,0 +"The Arabs laughed at him , and the alchemist laughed along . +","अरब सैनिक उसकी बात सुनकर हंस पड़े । उनके साथ कीमियागर भी हंसने लगा । +","arab sainik uski bat sunakar hns pare arabs s unke sath alchemist bhi hnsne laga arabs +",8,1 +"It is free, and borrowing books is free. +","यह सेवा निःशुल्क (मुफ़्त) है और (पढ़ कर लौटा दी जाने वाली) किताबें मुफ़्त में मिलेंगी. +","yah seva niashulk muft hai aur pa kar lauta di jane vali books is free milengi +",8,0 +"Say: 'I warn you only by the Revelation' But the deaf hear nothing when they are warned. +","(ऐ रसूल) तुम कह दो कि मैं तो बस तुम लोगों को '' वही '' के मुताबिक़ (अज़ाब से) डराता हूँ (मगर तुम लोग गोया बहरे हो) और बहरों को जब डराया जाता है तो वह पुकारने ही को नहीं सुनते (डरें क्या ख़ाक) +","ae rasool tum kah do ki main to bas tum logon ko vahi ke mutabi azab se darata hoon magar tum log goya bahre ho aur bahron ko jab daraya jata hai to vah pukarne hi ko nahin sunte dren kya ak +",5,5 +"This is composed of seven small islands that have been formed by volcanic eruptions and is connected to the mainland via a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska gathan lava nirmit sat chhote-chhote small dvara huaa hai evn yah bridge dvara prmukh bhoo-khnd ke sath jura huaa hai. +",7,3 +"With the result , our rivers which we consider holy are no longer so but are laden with pollutants , making them unsuitable for providing water for drinking and other purposes . +","इसके परिणामस्वरूप जिन नदियों को हम पूजनीय मानते थे , अब वे वैसी नहीं रही हैं बल्कि प्रदूषकों से भर गयी हैं जिसकी वजह से उनका पानी पीने तथा अन्य दूसरे कार्यों के लिए उपयुक्त नहीं रह गया है . +","iske parinamasvroop jin nadiyon ko ham poojniy mante the , ab ve vaisi nahin rahi hain balki prdooshkon se bhar gayi hain jiski vajah se unka pani pine tatha any doosre karyon ke lie upyukt nahin rah gaya hai +",9,2 +"E language technology in the private - public partnerships to promote +","ङ. भाषा प्रौद्योगिकी में निजी-सार्वजनिक भागीदारी को बढ़ावा देना +","ng language technology men niji-sarvajnik partnerships ko baava dena +",6,1 +"And I want you to think about why that happens. +","और मैं चाहता हूँ की आप इसके बारे मे सोचे की वैसा क्यूँ होता है +","aur i chahta hoon ki aap iske bare me soche ki vaisa kyoon hota hai +",6,3 +"'After this clear explanation, I never referred to the subject again. +","” इतनी स्पष्ट बातचीत होनेके बाद दुबारा मैंने यह विषय डोकके सामने कभी नहीं छेड़ा। +","itni spasht batchit honeke bad dubara mainne yah vishay dokke samne kabhi nahin chhera. +",9,2 +"Madhya Pradesh occupies perhaps the oldest part of the subcontinent – called the Gondwana - the home of the Gonds. +","मध्य प्रदेश संभवतया उप महाद्वीप का संभतया सबसे पुराना स्थान है जिसे गोंडवाना कहते हैं अर्थात गोंड समुदाय का घर। +","pradesh occupies snbhavatya up mahadvip ka snbhatya sabse oldest part hai jise gondvana kahte hain arthat gond samuday ka ghar. +",7,0 +"From here the trekkers enter the deep valley and have to cross many small rivulets and huge rocks. +","यहां से ट्रैकर्स गहरी घाटी में प्रवेश करते हैं और उन्हें मार्ग में कई छोटे-छोटे नाले और बड़े-बड़े पत्थर पार करने पड़ते हैं। +","yahan se trekkers deep valley men prvesh karte hain aur unhen marg men kee chhote-chhote rivulets aur bare-bare rocks par karne parte small +",7,0 +"Action is the foundational key to all success. +","कर्म सफलता का मूल है. +","action success ka key hai +",5,6 +"I do not wish to take any hasty step, nor would you wish to take it. +","मैं जल्दबाजी में कोई कदम नहीं उठाना चाहता, न आप जल्दबाजी में कोई कदम उठाना चाहेंगे। +","main hasty step koee kadam nahin uthana chahta, n aap hasty step koee kadam uthana chahenge. +",5,1 +"and preached to them in public, and also addressed them in secret. +","""फिर मैंने उनसे खुले तौर पर भी बातें की और उनसे चुपके-चुपके भी बातें की +","phir mainne unse khule taur par bhi secret ki aur unse chupke-chupke bhi secret ki +",5,1 +"to pull money out of the air, +","पैसे हवा से बाहर खींचने के लिए, +","money air se bahar khinchne ke lie , +",9,2 +"As regards Central laws on matters relating to the Concurrent List, such as welfare measures, procedural laws, etc., the Constitution itself provides for the State Legislature to modify or repeal such Central laws after obtaining the President 's assent. +","जहां तक समवर्ती सूची वाले केन्द्रीय कानूनों का सम्बंध है, जैसे कल्याण कार्यों तथा कार्यविधि सम्बंधी कानून आदि, स्वयं संविधान में यह प्रावधान है कि राज्य विधान मंडल राष्ट्रपति की स्वीकृति लेकर ऐसे कानूनों में परिवर्तन कर सकते है या उन्हें निरस्त कर सकते है। +","jahan tak samavarti soochi vale kendriy kanoonon ka sambndh hai, jaise kalyan karyon tatha karyvidhi sambndhi kanoon aadi, svyn snvidhan men yah pravdhan hai ki rajy vidhan mndal rashtrapti ki svikriti lekar aese modify or repeal kar sakte hai ya unhen nirast kar sakte hai. +",4,7 +"I am learning for you. +","मैं आपके लिये ज्ञान/विद्या अर्जित कर रहा हूँ। +","main aapke liye jnjanvidya arjit kar raha hoon. +",8,2 +"Externally, the quadrangular open court is surrounded by a prakara with a cloister, or malika, locally called nalambalam or chuttambalam. +","बाह्य रूप से चतुर्भुज खुला प्रांगण एक प्राकार से घिरा होता है जिसमें एक विहार, या मालिका होती है जिसे स्थानीय रूप से नलांबलम या चुट्टांबलम कहा जाता हैं. +","bahy roop se quadrangular open prangan ek prakara se ghira hota hai jismen ek cloister , ya malika hoti hai jise sthaniy roop se nalambalam ya chuttambalam kaha jata hain +",9,2 +"Can be development very quickly of articles of short timed subjects in Wikipedia as articles of Mumbai blasts were present after few minutes of its happening along with reference links in English Wikipedia. +","विकिपिडीया मे काफी तेज़ी से समसामयिक विषयों के बारे में लेखो का विकास हो सकता है जैसे कि मुंबई विस्फोटों के खबर का ज़ाहिर होने के चंद मिनटों में ही उसके बारे में अंग्रेजी विकिपीडिया में प्रासंगिक कड़ियों के साथ लेख मौजूद था। +","vikipidiya me kaphi tezi se samsamyik vishyon ke bare men lekho ka vikas ho sakta hai jaise ki munbee visphoton ke khabar ka zahir hone ke chnd minton men hi uske bare men angreji vikipidiya men prasngik kariyon ke sath lekh maujood tha. +",7,3 +"The almost insoluble dilemma is that they benefit not only the ordinary citizen who occasionally finds himself in the coils of the law but the professional criminal who by long experience has learned to take advantage of all its defences. +","एक लगभग उपचारहीन दुविधा यह है कि इनका लाभ केवल उन साधारण नागरिकों को ही नहीं मिलता जो यदाकदा विधि के शिकंजे में फंस जाते हैं बल्कि उन पेशेवर अपराधियों को भी मिलता है जिन्होंने दीर्घ अनुभव से सभी प्रतिरक्षाओं का लाभ उठाने का गुर सीख लिया +","ek lagabhag insoluble dilemma yah hai ki inka advantage keval un ordinary nagrikon ko hi nahin milta jo yadakda law ke shiknje men phns jate hain balki un professional criminal ko bhi milta hai jinhonne long experience se sabhi defences ka advantage uthane ka gur sikh liya +",8,4 +"Failed to remove a persona from store:% s +","भंडार से एक व्यक्तित्व को हटाने में विफलः% s +","store se ek persona ko failed to remove s +",5,4 +"Dak Babu was absorbed in his work. +","डाक बाबू अपने काम में व्यस्त थे। +","dak babu apne work men vyast the. +",9,0 +"Much of the work done by Bose were on loose sheets of paper which he never bothered to preserve. +","बोस द्वारा किये गये अधिकतर कार्य बिखरे हुए कागज के पन्नों पर थे जिन्हें सुरक्षित रखने का उन्होंने कभी कष्ट नहीं उठाया। +","bose dvara kiye gaye adhikatar work bikhre hue paper ke loose par the jinhen surakshit rakhne ka unhonne kabhi kasht nahin uthaya. +",9,2 +"in 1998 while in school haris sheild match his co-partner vinod kamble and sachin made 664 runs together +","1988 मे स्कूल के एक हॅरिस शील्ड मॅच के दौरान साथी बल्लेबाज विनोद कांबली के साथ सचिन ने ऐतिहासिक 664 रनो की अविजित साझेदारी की। +","1988 me school ke ek hris haris sheild ke dauran sathi ballebaj vinod kanbli ke sath sachin ne aetihasik 664 kamble ki avijit sajhedari ki. +",8,1 +"and that they who have been given knowledge may know that it is the truth from thy Lord and believe in it, and so their hearts be humble unto Him; and assuredly God ever guides those who believe to a straight path. +","और ताकि वे लोग जिन्हें ज्ञान मिला है, जान लें कि यह तुम्हारे रब की ओर से सत्य है। अतः वे इसपर ईमान लाएँ और उसके सामने उनके दिल झुक जाएँ और निश्चय ही अल्लाह ईमान लानेवालों को अवश्य सीधा मार्ग दिखाता है +","aur lord ve log jinhen knowledge mila hai , truth thy ki yah tumhare god ki or se saty hai. ata ve isapar unto laen aur uske humble unke hearts jhuk jaen aur nishchay hi allah unto lanevalon ko avashy straight path dikhata hai +",6,0 +"These people , and hundreds of others like them , would remain unrecognised if it was n't for a media organisation that prepares annual reports for corporates . +","ऐसे सैकड़ें लग अनजान रह जाते , अगर कोलकाता स्थित मीड़िया संग न ' त्रिसीज ' न होता , जो कंपनियों की वार्षिक रिपोर्ट तैयार करता है . +","aese saikaren lag anjan rah jate , agar kolkata sthit miriya sng n trisij n hota , jo knpniyon ki prepares annual reports karta hai +",8,1 +"and it re-condenses in the other side. +","और वह फिर दूसरे पक्ष में गाढ़ी हो जाती है +","aur vah phir doosre side men gai ho jati hai +",7,3 +"Though Tilak was not a revolutionary and nor did he believe in violent methods, elaborate security arrangements were made to guard him while he was under arrest. +","हालांकि तिलक कोई क्रांतिकारी न थे और हिंसक तरीकों में विश्वास नहीं करते थे, फिर भी उन्हें गिरफ्तार कर कड़ी सुरक्षा-व्यवस्था में रखा गया। +","halanki tilak koee revolutionary n the aur violent methods men vishvas nahin karte the , phir bhi unhen arrest kar kari suraksha-vyavastha men security gaya. +",6,2 +"To Ravana's question, Hanuman in his answer introduced himself as Ram's messenger. +","रावण के प्रश्न के उत्तर में हनुमान ने अपना परिचय राम के दूत के रूप में दिया। +","ravan ke question ke answer men hanuman ne apna parichay ram ke messenger ke roop men diya. +",7,3 +"Modify network connections for all users +","सभी उपयोगकर्ताओं के लिए संजाल कनेक्शन संशोधित करें +","sabhi users ke lie network connections modify karen +",8,4 +"Inevitable losses is pushing the profit in unfavourable direction. +","अपरिहार्य हानियाँ लाभ को प्रतिकूल दिशा में धकेल रही हैं। +","inevitable losses profit in unfavourable disha men dhakel rahi hain. +",7,2 +"The e-hospital and e-project programmes taken up by NIMHANS are, therefore, excellent initiatives, worthy of emulation by other institutions. +","इसलिए निमहैन्स द्वारा आरंभ किए गए ई-हास्पिटल और ई-प्रोजेक्ट कार्यक्रम उत्कृष्ट पहल हैं, अन्य संस्थाओं द्वारा अनुकरण किए जाने योग्य है। +","islie nimhans dvara aarnbh kie emulation ee-haspital aur ee-projekt programmes excellent pahal hain , other institutions dvara anukaran kie jane worthy hai. +",6,3 +"Enquiries were constituted with a view to toning up the administration . +","प्रशासन में सुधार लाने की दृष्टि से जांच कमेटियां बिठायी गयीं . +","administration men sudhar lane ki view se janch kametiyan enquiries gayin +",6,2 +"And there came a caravan of travellers and they sent their water - drawer to draw water from the well. He let down his bucket into the well and he exclaimed, ""Oh, what a lucky find, here is a boy!"" They hid him like a piece of merchandise, but God knew well what they did. +","एक क़ाफ़िला आया। फिर उसने पनिहारा को भेजा। उसने अपना डोल ज्यों ही डाला तो पुकार उठा, ""अरे! कितनी ख़ुशी की बात है। यह तो एक लड़का है।"" उन्होंने उसे व्यापार का माल समझकर छुपा लिया। किन्तु जो कुछ वे कर रहे थे, अल्लाह तो उसे जानता ही था +","ek caravan aaya. phir water travellers ko bheja. water apna drawer jyon hi dala to pukar utha , merchandise ! kitni ushi ki bat well yah to ek boy well unhonne use vyapar ka mal samajhkar chhupa liya. kintu jo kuchh ve kar rahe the , allah to use janta hi tha +",4,3 +"An elementary Hindi translation of Srimad Bhagwat Geeta. +","श्रीमद् भगवद्गीता का सरल हिन्दी मे आनुवाद +","translation geeta ka saral hindi me elementary +",6,2 +"And you probably all have it, and if you haven't, you need to. +","और शायद आप सभी में भी वह होता है, और अगर वह आपके पास नहीं है तो आपको उसकी आवश्यकता है। +","aur shayad aap sabhi men bhi vah hota hai , aur agar vah aapke pas nahin hai to aapko uski aavashyakta hai. +",10,0 +"Sometimes the Idol of tenderness or affection of Ram makes him think him as his mother and he himself is his son| +","कभी-कभी वह राम को वात्सल्य मूर्ति के रूप में माँ मान लेते हैं और खुद को उनका पुत्र। +","kabhi-kbhi vah ram ko vatsaly moorti ke roop men man man lete hain aur khud ko unka putr. +",9,0 +"You need two numbers or string to do an addition +","जोड़ने के लिए आपको दो संख्या या वाक्यांश चाहिए +","addition ke lie aapko do numbers ya vakyansh chahie +",8,3 +"We are a nine through 12 public school, +","हम पब्लिक स्कूल हैं नवीं से बारहवीं तक, +","ham public school hain navin se barahvin tak , +",10,0 +"Change sound volume and sound events +","ध्वनि आवाज और ध्वनि घटना बदलें +","sound volume aur change sound volume +",5,2 +"It is He who prevails over His creatures, and He is all - wise and aware. +","उसे अपने बन्दों पर पूर्ण अधिकार प्राप्त है। और वह तत्वदर्शी, ख़बर रखनेवाला है +","use apne creatures par poorn adhikar prapt wise aur vah tatvadarshi , bar rakhnevala hai +",7,2 +"Revitalization of cooperative institutions is central to the success of this agenda. +","इस कार्यक्रम की सफलता के लिए सहकारी संस्थाओं को फिर से प्राणवंत बनाना अत्यंत आवश्यक है। +","is agenda ki success ke lie cooperative snsthaon ko phir se pranvnt banana atynt aavashyak central +",6,3 +"It is such a simple thing that everyone can learn it. +","वह इतनी आसान चीज है कि हर एक आदमी को उसे सीख लेना चाहिये। +","vah simple thing chij hai ki har ek aadmi ko use sikh lena chahiye. +",6,1 +"We are a nine through 12 public school, +","हम पब्लिक स्कूल हैं नवीं से बारहवीं तक, +","ham public school hain navin se barahvin tak, +",10,0 +"Equally evident are grounds for introspection. +","समान रूप से स्पष्ट आत्मनिरीक्षण के लिए आधार हैं। +","saman roop se evident introspection ke lie grounds hain. +",8,0 +"The damage caused by man - made pollution and its effects on the future of mankind are now being seriously studied by scientists in a number of countries. +","मानव निर्मित प्रदूषण से होने वाली क्षति और भविष्य में मानव जाति पर होने वाले उसके दुष्प्रभावों का अब अनेक देशों में गंभीरतापूर्वक वैज्ञानिकों के द्वारा अध्ययन किया जा रहा है। +","manav made pollution se hone damage caused aur future of mankind jati par hone vale uske dushprbhavon ka ab number of countries gnbhirtapoorvak vaijnjanikon ke dvara adhyayan kiya ja raha hai. +",7,2 +"The magicians answered: ""By Him Who has created us, we shall never prefer you to the Truth after manifest Signs have come to us. So decree whatever you will. Your decree will pertain, at the most, to the present life of the world. +","जादूगर बोले कि ऐसे वाजेए व रौशन मौजिज़ात जो हमारे सामने आए उन पर और जिस (खुदा) ने हमको पैदा किया उस पर तो हम तुमको किसी तरह तरजीह नहीं दे सकते तो जो तुझे करना हो कर गुज़र तो बस दुनिया की (इसी ज़रा) ज़िन्दगी पर हुकूमत कर सकता है +","magicians whatever ki aese manifest v raushan maujizat jo hamare present aae un par aur jis decree ne hamko life kiya us par to ham tumko kisi tarah tarjih nahin de sakte to jo tujhe karna ho kar guzar to bas world ki isi zara zindgi par hukoomat kar sakta hai +",7,2 +"8.Volunteers for assisting disabled persons and senior citizens +","8. निःशक्त तथा वरिष्ठ नागरिकों की सहायतार्थ स्वयं सेवक। +","8 disabled tatha senior citizens ki sahaytarth svyn sevak. +",8,0 +"He propagated the principles of Hinduism. +","उसने हिन्दुत्व के नियमों का प्रचार किया। +","usne principles of hinduism ka propagated kiya. +",6,4 +"On the other hand, Pranayama awakens the coiled - up serpent of the Pranic dynamism in the vital sheath and opens to the Yogin fields of consciousness, ranges of experience, abnormal faculties denied to the ordinary human life while it puissantly intensifies such normal powers and faculties as he already possesses. +","दूसरी ओर, प्राणायाम प्राणकोष में प्राणिक सक्रियता की सर्पाकार कुंडलिनी-शक्ति को जगा देता है तथा योगी के सामने चेतना के ऐसे क्षेत्र, अनुभव की ऐसी शृंखलांए तथा असामान्य शक्तियां खोलकर रख देता है जो सामान्य मानव-जीवन में प्राप्त नहीं होतीं, साथ ही वह उन सामान्य शक्तियों एवं क्षमताओं को भी जो उसके पास पहले से हैं अतिशय सबल बना देता है। +","hand or , pranayama prankosh men pranic dynamism ki sarpakar kundlini-shakti ko jaga other hai tatha yogin ke human consciousness ke aese fields , experience ki aesi shrinkhlane tatha abnormal powers kholakar sheath other hai jo ordinary manav-jivan men prapt nahin hotin , sath hi vah un ordinary faculties evn kshamtaon ko bhi jo uske pas pahle se hain atishay sabal bana other serpent +",6,3 +"Unable to launch %s: %s +","%s लांच करने में असमर्थ: %s +","s lanch karne men unable : s +",8,1 +"Preventer of good, aggressor, and doubter, +","जो (वाजिब हुकूक से) माल में बुख्ल करने वाला हद से बढ़ने वाला (दीन में) शक़ करने वाला था +","jo preventer hukook se mal men bukhl karne vala had se bane vala din men sha karne vala tha +",6,1 +"And now we want the mean of these two number, which is 108 / 2 or 54. +","और अब हम इन दो संख्या है, जो 108/2 या 54 का मतलब चाहते हैं। +","aur ab ham in do number hai , jo 1082 ya 54 ka mean chahte hain. +",7,0 +"Men (giver) the odds :):):):). Men (giver) the problem :). Men (giver) enjoy :):):):):) +","· पुरुष (Giver) को सहूलियत ☻☻☻☻ · पुरुष (Giver) को परेशानी ☺ · पुरुष (Giver) को आनंद ☻☻☻☻☺ +","purush Giver ko odds purush Giver ko problem purush Giver ko enjoy +",7,3 +"the order of left to right is using to keep close broken words. +","दायें-से-बायें क्रम का उपयोग तुकान्त शब्दों को पास-पास लाने के लिया किया जाता है। +","dayen-se-bayen order ka close broken words ko pas-pas lane ke liya kiya broken words +",4,7 +"At 13, Teleza is the chairperson of her school 's anti - HIV / AIDS club as well as president of the local Girl Guides chapter. +","13 वर्ष की तेलेज़ा अपने स्कूल के एचआईवी/एड्स रोकथाम क्लब व स्थानीय गल्स्र गाइड शाखा की अध्यक्ष है। +","13 varsh ki teleza apne skool ke echaaeevieds roktham klab v sthaniy galsr gaid shakha ki adhyaksh hai. +",7,2 +"So at very low frequencies, or very long wavelengths, +","ऐसा बहुत कम आवृत्तियों, या बहुत लंबे तरंग दैर्ध्य पर, +","aesa bahut low frequencies , ya bahut long wavelengths dairdhy par , +",6,3 +"The person who completes the action of ""behold"" meaning to see someone or something in an impressive manner. +","किसी को प्रभावशाली तरीके से देखने की क्रिया +","kisi ko something manner se person ki action +",6,6 +"In a Message, the President has said: +","एक संदेश में राष्ट्रपति ने कहा हैः +","ek message men president ne kaha haia +",9,1 +"as well as to applied science +","साथ ही साथ व्यावहारिक विज्ञानं दोनों को लाभ थे | +","sath hi sath vyavharik science donon ko labh the +",9,1 +"breast cancer, for the love of Lebanon, for peace, +","स्तन कैंसर, लेबनान के प्यार के लिए, शांति के लिए, +","breast cancer , lebanon ke love ke lie , peace ke lie , +",10,0 +"Query free / busy information for the attendees +","उपस्थित व्यक्ति के लिए रिक्त/व्यस्त सूचना प्रश्नगत करें +","upasthit vyakti ke lie riktvyast information prashnagat karen +",7,1 +"Ayurveda teaches us how to age with dignity and grace. +","आयुर्वेद हमें सिखाता है कि हम बूढ़े भी हों तो गरिमा और शालीनता के साथ इस अवस्था में कैसे पहुंचें। +","ayurveda teaches sikhata hai ki ham age bhi hon to dignity aur shalinta ke sath is avastha men kaise pahunchen. +",8,1 +"And that favour wherewith thou didst oblige me was that thou hadst enslaved the Children of Isra 'il? +","और ये भी कोई एहसान हे जिसे आप मुझ पर जता रहे है कि आप ने बनी इसराईल को ग़ुलाम बना रखा है +","aur ye bhi koee ehsan he jise aap mujh par wherewith rahe hai ki aap ne bani children ko ulam bana rakha hai +",4,4 +"Vedant philosophy has strengthened his faith. +","वेदांत-दर्शन से उनका विश्वास और भी दृढ़ हो गया है। +","vedant-darshan se unka faith aur bhi vedant ho gaya philosophy +",5,1 +"They are nocturnal animals, sleeping during the day and hunting at night, singly or in pairs. +","दिन में यह सोती रहती है और रात में अकेले या जोड़े में शिकार करती है। +","day men yah nocturnal rahti hai aur night men akele ya animals men hunting karti hai. +",5,3 +"Now, fixed price you can decide, well, how do I set that price. +","अब, तुम तय कर सकते हैं, अच्छी तरह से, कीमत तय कैसे मैं उस मूल्य निर्धारित करते हैं। +","ab , tum tay kar sakte hain , achchhi tarah se , price tay kaise main us mooly nirdharit karte hain. +",7,4 +"But during his father 's gall - bladder operation he admitted him to a paying bed at the Bangur Hospital. +","बाप के गाँल ब्लाडर का ऑपरेशन कराया बाँगुर हास्पीटल के पेइंग बेड भर्ती करा कर। +","father ke ganl bladder ka operation karaya bangur hospital ke peing bed bharti kara kar. +",6,3 +"The indo function is installed in all aircrafts of the company. +","कंपनी के सभी विमानों में इंडो फलन संस्थापित किया गया है। +","company ke sabhi aircrafts men indo function snsthapit kiya gaya hai. +",8,2 +"The adjacent to the foot path all around the garden and the central foot path may be utilised for growing different short duration green vegetables like Coriander, spinach, fenugreek, Alternanthera etc. +","बगीचा के चारों ओर तथा आने-जाने के रास्ते का उपयोग विभिन्न अल्पावधि हरी साग-सब्जी जैसे-धनिया, पालक, मेथी, पुदीना आदि उगाने के लिए किया जा सकता है। +","bagicha ke charon or tatha aane-jane ke raste ka upyog vibhinn alpavdhi hari sag-sabji jaise-dhniya, palak, methi, pudina aadi ugane ke lie kiya ja sakta hai. +",8,1 +"In such courts, one can expect to get justice. +","ऐसी अदालतों में न्याय पाने की उम्मीद की जा सकती है. +","such courts men justice pane ki ummid ki ja sakti hai +",9,2 +"Mrs de Leeuw then invited her to teach at a new school at London. +","इसके बाद श्रीमती डा. लीयू ने उसे लंदन के एक नए स्कूल में अध्यापन-कार्य के विए आमंत्रित किया। +","iske bad mrs da liyoo ne use london ke ek new school men adhyapan-kary ke vie aamntrit kiya. +",7,3 +"So we should do everything we can, +","तो हमें वो सब करना चाहिए, जो हम कर सकते है +","to hamen vo sab karna chahie, jo ham kar sakte hai +",5,9 +"Run an application by typing a command or choosing from a list +","कमांड प्रविष्ट कर एक अनुप्रयोग चलाएँ या सूची से चुनकर +","command prvisht kar ek application chalaen ya soochi se choosing +",8,0 +"Connecting to the server, please wait... +","सर्वर से कनेक्ट कर रहा है, कृपया इंतजार करें... +","server se connecting kar raha hai, kripya wait karen +",9,0 +"this order was made applicable to State Governments including the State of Uttar Pradesh. +","इस आदेश को उत्तर प्रदेश राज्य सहित समस्त राज्य सरकारों को लागू किया गया था. +","is order ko uttar pradesh state sahit samast state governments ko applicable kiya gaya tha +",10,0 +"Cannot send message: no recipients defined. +","संदेश नहीं भेज सकता हैः कोई प्राप्तकर्ता परिभाषित नहीं है. +","message nahin bhej sakta haia koee recipients paribhashit nahin hai +",8,2 +"User 's $HOME /. dmrc file is being ignored. This prevents the default session and language from being saved. File should be owned by user and have 644 permissions. User' s $HOME directory must be owned by user and not writable by other users. +","उपयोक्ता का $HOME/. dmrc फाइल अनदेखा किया जा रहा है. यह मूलभूत सत्र और भाषा को सहेजे जाने से रोकता है. फाइल को उपयोक्ता के द्वारा स्वामित्व दिया जाना चाहिये और 644 अनुमति रखना चाहिये. उपयोक्ता की $HOME निर्देशिका उपयोक्ता के द्वारा जरूर स्वामित्व में रखनी चाहिये और अन्य उपयोक्ता द्वारा नहीं लिखने योग्य होना चाहिये. +","user ka HOME dmrc file andekha kiya ja raha hai yah default session aur language ko saheje jane se rokta hai file ko user ke dvara svamitv diya jana chahiye aur dmrc permissions rakhna chahiye user ki HOME home user ke dvara jaroor svamitv men rakhni chahiye aur other user dvara nahin writable yogy hona chahiye +",8,2 +"As mentioned at the very beginning of this book, had it not been for these insects we would not have had our vegetation and landscape. +","जैसा कि इस पुस्तक के प्रारंभ में ही बताया जा चुका है अगर ये कीट न होते तो न तो हमारी वनस्पति होती और न हमें भूदृश्य देखने को मिलते. +","jaisa ki is book ke beginning men hi bataya ja chuka hai agar ye insects n hote to n to hamari vegetation hoti aur n hamen landscape dekhne ko milte +",8,1 +"The period of heat in ewes lasts from 3 to 70 hours , with an average of 27 hours . +","भेड़ें 3 से 70 घण्टे तक गर्मी में रहती हैं.गर्मी की औसत अवधि 27 घण्टे होती है . +","ewes 3 se 70 hours tak garmi men rahti haingarmi ki ausat avdhi 27 hours hoti hai +",7,3 +"When such a person comes to Us, he will say [to his comrade], ""If only you had been as far away from me as east is from west. What an evil comrade!"" +","यहाँ तक कि जब (क़यामत में) हमारे पास आएगा तो (अपने साथी शैतान से) कहेगा काश मुझमें और तुममें पूरब पश्चिम का फ़ासला होता ग़रज़ (शैतान भी) क्या ही बुरा रफीक़ है +","yahan tak ki jab yamat men hamare pas aaega to apne sathi shaitan se kahega kash mujhmen aur tummen poorab pashchim ka fasla hota raz shaitan bhi kya hi bura raphi hai +",4,6 +"Desai say this story is not suitable to him who frighted and win with died in real life why should i killed him in film. +","देसाई ने इनके बारे में कहा था कि ऐसे आदमी के लिए यह कहना बिल्कुल अनुपयुक्त होगा कि जो असली जीवन में मौत से लड़कर जीता हो उसे परदे पर मौत अपना ग्रास बना ले। +","desai ne inke bare men kaha tha ki aese aadmi ke lie yah kahna bilkul story hoga ki jo suitable life men maut se film jita ho use parde par maut apna gras bana le. +",3,4 +"In 2011 - 12 the share of construction sector in GDP was about 7. 8%. +","2011-12 में निर्माण सेक्टर का सकल घरेलू उत्पाद में लगभग 7.8 प्रतिशत हिस्सा था। +","share of construction sektar ka sakal ghareloo utpad men lagabhag 78 prtishat hissa tha. +",3,2 +"Benefits of information technology to the common man can only access the software tools and man - machine interface of systems are available in your language. +","सूचना प्रौद्योगिकी के लाभ आम आदमी तक केवल तभी पहुंच सकते हैं जब सॉफ्टवेयर टूल्स और मानव-मशीन इंटरफेस प्रणालियां लोगों की अपनी भाषा में उपलब्ध हों +","soochna benefits of information aam aadmi tak keval tabhi pahunch sakte hain jab sphtveyar tools aur manav-mshin intarphes prnaliyan logon ki apni bhasha men upalabdh hon +",5,4 +"Originally, the reservation was for ten years but it is being extended every time for the next ten years - LRB - articles 330 and 334 - RRB -. +","मूलतया आरक्षण दस वर्षों के लिए था लेकिन उसे हर बार अगले दस वर्षों के लिए बढ़ाया जा रहा है (अनुच्छेद 330 तथा 334). +","originally reservation das years ke lie tha lekin use har bar agle das years ke lie baaya ja raha hai articles 330 tatha 334 +",8,4 +"Most of them were religious fanatics who were keen on going to Turkey . +","उनमें से अधिकतर लोग कट्टर धार्मिक थे जो तुर्की जाने के लिए उत्सुक थे . +","most se adhikatar log fanatics religious the jo turki jane ke lie utsuk the +",6,2 +"it is clear that in vadic era puran and history were kept on the same level +","इनसे यह स्पष्ट है कि वैदिक काल में पुराण तथा इतिहास को समान स्तर पर रखा गया है। +","inse yah spasht hai ki vaidik vadic era puran tatha itihas ko saman star par rakha gaya hai. +",8,1 +"The first Sthai inhabitants took its from about 1000 years back | +","प्रथम स्थाई बस्तियों ने ९००० वर्ष पूर्व स्वरुप लिया। +","first sthai inhabitants ne years varsh poorv svrup liya. +",5,2 +"The whole realm of satire, humour, or fantasy is open to the puppet producer. +","पुतली निर्देशकों के समक्ष व्यग्य, परिहास एवं कल्पना शक्ति का संसार खुला पड़ा है। +","putli nirdeshkon ke samaksh vyagy, parihas evn kalpna shakti ka snsar khula para hai. +",8,1 +"A new idea with another turn of the logical machine revolts against it and breaks up the machinery, but A new idea with another turn of the logical machine revolts against it and breaks up the machinery, +","तब एक नया विचार इस तर्कसंगत यन्त्र की एक और प्रवृति को लिए हुए उसके विरुद्ध खड़ा हो जाता है और उस यन्त्र को तोड़-फोड़ देता है, किन्तु वह उसे इसलिए तो तोड़ता है कि अन्त में वह उसके स्थान पर एक दूसरी यांत्रिक प्रणाली की, किसी अन्य मत सिद्धान्त या आचार-पद्धति की स्थापना कर सके। +","tab ek new idea is logical machine ki ek aur prvriti ko lie hue uske viruddh khara ho jata hai aur us machine ko tor-phor deta hai , kintu vah use islie to torta hai ki ant men vah uske sthan par ek doosri yantrik prnali ki , kisi any revolts siddhant ya aachar-paddhti ki sthapna kar sake. +",7,4 +"And We gave to Abraham, Isaac and Jacob - all [of them] We guided. And Noah, We guided before; and among his descendants, David and Solomon and Job and Joseph and Moses and Aaron. Thus do We reward the doers of good. +","और हमने इबराहीम को इसहाक़ वा याक़ूब (सा बेटा पोता) अता किया हमने सबकी हिदायत की और उनसे पहले नूह को (भी) हम ही ने हिदायत की और उन्हीं (इबराहीम) को औलाद से दाऊद व सुलेमान व अय्यूब व यूसुफ व मूसा व हारुन (सब की हमने हिदायत की) और नेकों कारों को हम ऐसा ही इल्म अता फरमाते हैं +","aur hamne jacob ko isaac va joseph job david pota ata kiya hamne sabki hidayat ki aur unse pahle nooh ko bhi noah hi ne hidayat ki aur unhin jacob ko aulad se daood v suleman v ayyoob v yoosuph v moses v harun sab ki hamne hidayat ki aur nekon doers ko noah aesa hi ilm ata pharmate hain +",7,3 +"Parliamentary Forum on Water Conservation and Management; +","जल संरक्षण और प्रबंधन संबंधी संसदीय मंच; +","water conservation aur management snbndhi parliamentary forum +",10,0 +"They could not make the company earn a rupee in profit even when its line of credit with the bank was open. +","ये ही वे लोग हैं जो तब भी कंपनी को एक भी पैसे का मुनाफा नहीं कमा कर दे सके जब उसे बैंक से ऋण मिलता था. +","ye hi ve log hain jo tab bhi knpni ko ek bhi rupee in profit nahin earn kar de sake jab use baink se rin open tha +",7,0 +"A group of people who work together for a particular job / purpose. +","व्यक्तियों का ऐसा समूह जो सामूहिक रुप से किसी कार्य/प्रयोजन हेतु कार्यरत हो। +","people ka job group jo samoohik rup se kisi karypryojan purpose karyarat ho. +",6,2 +"Exposure time will be shifted forward by% d% s,% d% s,% d% s, and% d% s. +","एक्सपोजर समय आगे बढ़ा दिया जाएगा% d% s,% d% s,% d% s, और% d% s से. +","exposure time aage baa diya jaega d s , d s , d s , aur d s se +",8,0 +"I do not bother about any criticism. +","मुझे न निंदा की परवाह हे, न तोहमत की। +","mujhe n ninda ki parvah he, n tohamat ki. +",5,8 +"Section - 231, Income-tax Act, 1961-2018 +","धारा - 231, आय-कर अधिनियम, 1961-2018 +","section - 231, income-tax act, 1961-2018 +",10,0 +"There is a good deal of mixing - up of various Shaiva groups since Basava. +","बसव के पश्चात् विभिन्न शैव सम्प्रदायों में काफी मिश्रण हुआ है। +","basav ke pashchat vibhinn deal of mixing kaphi mishran huaa hai. +",5,4 +"She bent over Mohan and hiccupped. +","वह मोहन पर झुक गयी और हिलक उठी। +","vah mohan par bent gayi aur hilak uthi. +",8,1 +"The government official who supervises the matters related to the duty imposed on immovable property. +","वह सरकारी अधिकारी जो अचल संपत्ति पर लगे शुल्क से जुड़े मामलों की देखरेख करता है। +","vah government adhikari jo immovable snpatti par lage duty se jure matters ki dekhrekh karta hai. +",7,1 +"An organism or individual having a diploid set of chromosomes derived from each parent. +","कोई अवयव या जीव जिस में माता और पिता इन दोनों से ही प्राप्त गुणसुत्र का एक दोहरा गुट है। +","koee avayav ya organism jis men parent aur set in donon se hi prapt diploid ka ek dohra gut hai. +",8,2 +"Then We raised up after them another generation. +","फिर हमने उनके बाद एक और क़ौम को (समूद) को पैदा किया +","phir hamne unke bad ek aur aum ko smood ko paida kiya +",7,4 +"Raynaud 's disease is also called as Raynaud' s phenomenon. +","रेनाड रोग को रेनाड की घटना भी कहा जाता है. +","raynaud disease ko raynaud ki phenomenon bhi kaha jata hai +",8,3 +"He tried both allopathic and homeopathic medicines. +","उन्होंने एलोपैथी तथा होमियोपैथी दोनों प्रकार के इलाज करवाए। +","unhonne allopathic tatha homiyopaithi donon prkar ke medicines karvae. +",7,5 +"In 'Ad (also is a sign), when We sent a blasting wind against them, +","और आद में भी (तुम्हारे लिए निशानी है) जबकि हमने उनपर अशुभ वायु चला दी +","aur aad men bhi tumhare lie nishani hai jabki hamne unapar ashubh vayu chala di +",5,8 +"Mass unemployment in the country is a matter of grave concern. +","देश में व्यापक बरोजगारी एक बडी चिन्ता का विषय है। +","country men mass barojgari ek grave concern ka matter hai. +",7,3 +"This pertains to Panchayats and inter - alia provides that: i In every village, there shall be a Panchayat which will be a constitutional body. +","इस अधिनियम के मुख्य उपबंध इस प्रकार हैं: 1. हर गांव में एक पंचायत होगी जो एक संवैधानिक निकाय होगी। +","is pertains ke body upbndh is prkar hain: 1 har ganv men ek pnchayat hogi jo ek snvaidhanik nikay hogi. +",4,7 +"Sustainable Development of Sugarcane - Based Cropping System (SUBACS), and +","गन्ना फसल के सतत विकास के लिए, फसल आधारित प्रणाली +","sugarcane phasal ke sustainable development ke lie, based cropping system +",8,2 +"You can see a gleam in their eye. +","और आपको उनकी आँखों में एक चमक दिखेगी। +","aur aapko unki eye men ek chamak gleam +",7,2 +"Sucharita said, Does respectful regard always show us the truth? +",">> सुचरिता ने कहा, श्रद्धा के द्वारा हमे क्या सत्य ही मिलता है? +","suchrita ne kaha, regard ke dvara hame kya truth hi milta hai +",7,0 +"The Overseas Indian community estimated at over 25 million is spread across every major region in the world. +","प्रवासी भारतीय समुदाय अनुमानतः 2.5 करोड़ से अधिक है। जो विश्व के हर बड़े क्षेत्र में फैले हुए हैं। +","overseas indian community anumanta 25 karor se adhik hai. jo world ke har major region men phaile hue hain. +",9,0 +"The parent industry itself being in infancy , the market for machinery was limited and private enterprise was not expected to venture into this field . +","मूल उद्योग भी चूंकि अपनी शैशवावस्था में था , मशीनों के लिए बाजार सीमित था और निजी उद्यमियों से यह आशा नहीं की जा सकती थी कि वे इस क्षेत्र में आगे आयें . +","parent industry bhi choonki apni shaishvavastha men tha , mashinon ke lie bajar simit tha aur private enterprise se yah aasha nahin ki ja sakti thi ki ve is kshetr men aage aayen +",8,2 +"His ominous tone echoed Pakistani concerns about the lack of representation of the majority Pashtoon community within the Northern Alliance. +","उनकी तल्खी से एलयंस में भ-संयक पतून समुदाय का प्रतिनिधित्व न होने को लेकर पाकिस्तान की चिंता ज्ह्लकती थी. +","unki talkhi se elyns men bh-snyak patoon samuday ka prtinidhitv n hone ko lekar pakistan ki chinta jhlakti thi +",4,7 +"This has been built with seven small lave made island and connected to main land by a bridge. +","इसका गठन लावा निर्मित सात छोटे-छोटे द्वीपों द्वारा हुआ है एवं यह पुल द्वारा प्रमुख भू-खंड के साथ जुड़ा हुआ है। +","iska gathan lave nirmit sat chhote-chhote small dvara huaa hai evn yah bridge dvara main bhoo-khnd ke sath jura huaa land +",5,3 +"And in all cases we have to ask - +","और सभी मामलों में हमे पूछना है +","aur sabhi mamlon men hame poochhna hai +",10,0 +"The instinctive nature of man to form into groups and to dance and sing is as old as human existence. +","नृत्य और गायन मानव की आंतरिक प्रकृति है तथा मानव-जीवन के साथ-साथ ही इसका आरंभ हुआ। +","dance and sing manav ki instinctive nature hai tatha form into groups hi iska aarnbh huaa. +",5,7 +"Savarkar 's counsel, Mr Baptista, also raised the point that Savarkar' s arrest on French soil was illegal. +","सावरकर के वकील श्री बप्तिस्ता ने भी यह मुद्दा उठाया कि फ्रांसिसी भूमि पर सावरकर की गिफ्तारी गैर-कानूनी है। +","savarkar ke counsel mr baptista ne bhi yah point uthaya ki french soil par savarkar ki arrest gair-kanooni hai. +",9,2 +"Later on, the recommendations have also been accepted by the State of Bihar +","बाद में, सिफारिशें भी बिहार राज्य द्वारा स्वीकार कर ली गयी हैं +","bad men, recommendations bhi bihar rajy dvara accepted kar li gayi hain +",10,0 +"Ancient sculptures and murals , as can be expected , abound with illustrations of this instrument . +","प्राचीन चित्रों और मूर्तियों में जैसाकि स्पष्ट है , इस वाद्य को अंकित किया गया है . +","ancient sculptures aur moortiyon men jaisaki spasht hai , is vady ko ankit kiya gaya hai +",8,2 +"We are doing this by testing the blood from some patients, including babies. +","इस काम के लिए हम शिशुओं समेत कुछ रोगियों के खून की जाँच कर रहे हैं। +","is kam ke lie ham including babies kuchh patients ke testing the blood kar rahe hain. +",7,1 +"The average goat requires about 3. 5 kilograms of green fodder a day. +","एक बकरी को प्रतिदिन औसतन 3.5 किलोग्राम हरे चारे की आवश्यकता होती है। +","ek goat ko day average 35 kilograms green fodder ki aavashyakta hoti hai. +",7,0 +"And I want you to think about why that happens. +","और मैं चाहता हूँ की आप इसके बारे मे सोचे की वैसा क्यूँ होता है +","aur main chahta hoon ki aap iske bare me soche ki vaisa kyoon hota hai +",8,4 +"While one is the basic unit of life, the other is that of inanimate matter. +","एक जीवों की इकाई या मूल मात्रक है तो दूसरी जड़ पदार्थों की. +","ek unit of life ya inanimate matter hai to doosri jar padarthon ki +",5,5 +"Parallel transfers require multiple bit paths. +","समांतर अंतरण को बहुविध पथ की आवश्यकता होती है। +","parallel transfers ko multiple paths ki aavashyakta hoti hai. +",8,3 +"the fuel is just uranium. It 's no more radioactive than it was when you stuck it in, and it' s +","सिर्फ यूरेनियम ईंधन है. यह कोई रेडियोधर्मी अधिक की तुलना में यह जब आप इसे में अटक गया था, और यह है +","sirph uranium fuel hai yah koee rediyodharmi adhik ki tulna men yah jab aap ise men atak gaya tha, aur yah hai +",8,2 +"Today, the Allahabad High Court has jurisdiction over the largest state in India, covering nearly one-sixth of our total population. +","आज, इलाहाबाद उच्च न्यायालय का भारत के सबसे बड़े राज्य पर न्यायाधिकार है जिसमें हमारी जनसंख्या का लगभग छठा हिस्सा शामिल था। +","today , allahabad high court ka india ke sabse largest state par total hai jismen hamari population ka lagabhag chhatha hissa shamil tha. +",5,1 +"is I took all of the interviews +","कि मैंने उन सभी साक्षातकारों को लिया +","ki mainne un sabhi interviews ko liya +",10,0 +"She could see a roof covered with cracked tiles , sagging with age as if a giant had pressed it down with an invisible hand . +","सामने एक छत भी दिखाई देती है , मुद्दत पुरानी , इटी - फूटी शहतीरों से ढंकी हुई - मानो किसी विशाल दैत्य ने अपने अदृश्य हाथों से उसे मसोस डाला हो । +","hand ek roof bhi dikhaee deti hai , age purani , iti - phooti shahtiron se dhnki huee - mano kisi giant daity ne apne invisible hathon se use masos dala ho . +",6,1 +"Set the directory where to store temporary files +","निर्देशिका सेट करें जहाँ अस्थायी फाइल जमा करना है +","directory set karen jahan temporary phail jama karna hai +",8,2 +"Without having tried it and found out all its qualities, how would they prescribe it for rulers, kings and men, low and high? +","बिना परीक्षण किए वे अपने राजा, दरबारियों, सामंतों तथा प्रजा को इसके उपयोग की स्वीकृति कैसे दे सकते हैं। +","bina parikshan kie ve apne raja, darbariyon, samnton tatha prja ko iske upyog ki svikriti kaise de sakte hain. +",5,8 +"Import search engines from default browser on first run +","पहली बार चलाने पर डिफ़ॉल्ट ब्राउज़र से खोज इंजन आयात करें +","first bar run par default browser se search engines import karen +",7,0 +"The human and the divine, love of nature and of man, intuition and thought so mingle and interpenetrate in his consciousness that in his poetry, as in actual life, it is difficult to separate one from the other. +","मानवीय और दैवी, नैसर्गिक प्रेम और मानव-प्रेम, आत्म-बोध और विचार परस्पर उनकी चेतना में ठीक उसी प्रकार घुल-मिल जाते हैं जैसे कि उनके निजी जीवन में, और इन्हें एक-दूसरे से विलग करना कठिन हो जाता है। +","manviy aur daivi, naisargik prem aur manav-prem, intuition and thought paraspar unki chetna men thik usi prkar ghul-mil jate hain jaise ki unke niji jivan men, aur inhen ek-doosre se vilag karna kathin ho actual life +",7,6 +"Shimla can be reached by rail, road or air. +","शिमला, रेल, सड़क और वायु मार्ग से पहुंचा जा सकता है। +","shimla , rail , sarak aur air road se pahuncha ja sakta hai. +",7,3 +"Cement Machinery: - there are 18 units in the organized sector for the manufacture of complete cement plant machinery. +","सीमेंट मशीनरीः-पूर्ण सीमेंट संयंत्र मशीनरी के विनिर्माण के लिए संगठित क्षेत्रक में 18 यूनिट हैं। +","siment mashinria-poorn cement plant machinery ke vinirman ke lie organized sector men 18 yoonit hain. +",6,6 +"causing no headiness or intoxication. +","न उसमें कोई ख़ुमार होगा और न वे उससे निढाल और मदहोश होंगे। +","n usmen koee headiness hoga aur n ve usse nidhal aur madhosh honge. +",8,4 +"And establish prayer and give zakah and obey the Messenger - that you may receive mercy. +","नमाज़ का आयोजन करो और ज़कात दो और रसूल की आज्ञा का पालन करो, ताकि तुमपर दया की जाए +","namaz ka aayojan karo aur zakat do aur obey the messenger ka palan karo, taki receive mercy ki jae +",7,2 +"The Central Government too, has made assessment of the extent of damage caused to environment by plastic waste in the country by constituting Committees and a Task Force which studied the issue and made recommendations. +","केंद्रीय सरकार ने भी देश भर में प्लास्टिक से पर्यावरण को हो रहे नुकसान को रोकने के लिए एक समिति और टास्क फोर्स बनाई, जिसने अध्येयन किया और सिफारशें तैयार कीं। +","central government ne bhi country assessment men plastic se environment ko ho rahe extent ko rokne ke lie ek committees aur task phors banaee , jisne adhyeyan kiya aur sipharshen taiyar kin. +",7,1 +"He was elected president of the Muslim Conference formed in October, 1932. +","उन्हें अक्तूबर 1932 में स्थापित मुस्लिम कांफ्रेस का अध्यक्ष भी बनाया गया। +","unhen october 1932 men muslim conference formed ka adhyaksh bhi banaya gaya. +",7,3 +"Force Brasero to display the project selection page +","परियोजना चयन पृष्ठ दिखाने के लिए ब्रैसेरो को बाध्य करें +","project selection page dikhane ke lie force ko badhy karen +",6,6 +"If such a declaration or public recognition is not made to begin with by the British Government, even so it must be clearly understood that we can only talk on this basis and on no other. 2. +","यदि आरंभ में ब्रिटिश सरकार द्वारा ऐसी धारणा सार्वजनिक स्वीकृति न की जाय, तो भी यह स्पष्ट रूप से समझ लिया जाना चाहिये कि हम केवल इसी आधार पर बातचीत कर सकते हैं, अन्य किसी आधार पर नहीं। +","yadi aarnbh british government sarkar dvara aesi dharna sarvajnik svikriti n ki jay, to bhi yah spasht roop se samajh liya jana chahiye ki ham keval isi aadhar par batchit kar sakte hain, any kisi aadhar par nahin. +",5,5 +"When it is obvious that the goals cannot be reached, don 't adjust the goals, adjust the action steps. +","जब यह साफ हो कि लक्ष्यों को प्राप्त नहीं किया जा सकता है, तो लक्ष्यों में फेरबदल न करें, बल्कि अपनी प्रयासों में बदलाव करें. +","jab yah obvious ho ki goals ko prapt nahin kiya ja sakta hai , to goals men action n karen , balki apni pryason men badlav karen +",8,1 +"They have to be fired by the spirit of patriotism and a sense of social responsibility. +","उनमें देशभक्ति तथा सामाजिक उत्तरदायित्व का ज़ज्बा जगाने की जरूरत है। +","unmen deshabhakti tatha social responsibility ka zajba jagane ki jaroorat hai. +",9,0 +"Have you got your cord with you? +","तुम्हारे पास अपनी डोरी है न। +","tumhare pas apni cord hai n. +",5,8 +"(a) expenditure in connection with— +","(क) निम्नलिखित के संबंध में व्यय– +","k nimnlikhit ke connection men vyay +",8,0 +"There did Zakariya pray to his Lord; he said: My Lord! grant me from Thee good offspring; surely Thou art the Hearer of prayer. +","(ये माजरा देखते ही) उसी वक्त ज़करिया ने अपने परवरदिगार से दुआ कि और अर्ज क़ी ऐ मेरे पालने वाले तू मुझको (भी) अपनी बारगाह से पाकीज़ा औलाद अता फ़रमा बेशक तू ही दुआ का सुनने वाला है +","ye majra dekhte hi usi vakt zakriya ne apne paravardigar se duaa ki aur arj i ae mere palne vale too mujhko bhi apni bargah se pakiza aulad ata farma beshak too hi duaa ka sunne vala hai +",7,4 +"Indian states ranking by media exposure +","मीडिया की पहुँच के आधार पर भारत के राज्य +","media ki exposure ke aadhar par indian ke states +",7,1 +"Nor is it the speech of a soothsayer—little do you take heed. +","और न किसी काहिन की (ख्याली) बात है तुम लोग तो बहुत कम ग़ौर करते हो +","aur n kisi soothsayerlittle ki heed speech hai tum log to bahut kam aur karte ho +",7,1 +"My uncle has sent you the vegetables, Mr Vyas, Kapil said. +","मेरे चाचा ने आपके लिए तरकारी भेजी हे, कपिल ने कहा। +","mere uncle ne aapke lie tarkari bheji he, kapil ne kaha. +",8,1 +"No, it was not there +","नही, वो उधर नही था +","nahi , vo udhar nahi tha +",9,1 +"They said, ""By Allah, certainly has Allah preferred you over us, and indeed, we have been sinners."" +","उन्होंने कहा, ""अल्लाह की क़सम! आपको अल्लाह ने हमारे मुक़ाबले में पसन्द किया और निश्चय ही चूक तो हमसे हुई।"" +","unhonne kaha, allah ki sinners! aapko allah ne hamare muable men pasand kiya aur nishchay hi chook to hamse preferred +",6,3 +"and there are any disturbances, you know what happens. +","और कुछ गड़बड़ी हो, आप जानते क्या होता है | +","aur kuchh garabari ho, aap jante kya hota hai +",9,2 +"You have no recently reported crashes. Crashes that occurred when crash reporting was disabled will not appear here. +","आपके पास हाल ही में रिपोर्ट किए गए क्रैश नहीं हैं. क्रैश रिपोर्टिंग अक्षम होने के दौरान होने वाले क्रैश यहां दिखाई नहीं देंगे. +","aapke pas hal hi men reporting kie ge crashes nahin hain crashes riporting aksham hone ke dauran hone vale crashes yahan dikhaee nahin denge +",8,1 +"The cow is worshipped as a holy animal . +","गाय बड़ी पवित्र तथा पुज़्य मानी जाती है . +","cow bari holy tatha puzy mani jati hai +",8,0 +"The average annual clip is about one kilogram. +","वर्षभर में औसतन लगभग एक किलोग्राम ऊन एक भेड़ से उतरती है। +","annual men average lagabhag ek kilogram oon ek bher se utarti hai. +",8,0 +"The three saw a shepherd maid churning curd in front of her house and telling the children playing around her, 'Go away, you kids, lest the curd thumi droplet should spill upon you. +","उन तीनों ने एक ग्वालिन को देखा जो अपने घर के सामने दही मथ रही थी और अपने चारों तरफ खेलते हुए बच्चों से कह रही थी, भाग जाओ, बच्चो, नहीं तो दही की बूँदें थुमि तुम्हारे ऊपर उछलकर गिरेंगी। +","un tinon ne ek gvalin ko children jo apne ghar ke front curd maid rahi thi aur apne charon taraph khelte hue bachchon se kah rahi thi , bhag jao , bachcho , nahin to curd ki boonden thumi tumhare oopar uchhalakar girengi. +",7,2 +"But we have very special warmth for Nepal and we think that any relationship which we build up or trade relations or economic co - operation will be to our mutual benefit. +","लेकिन हमारे मन में नेपाल के लिए विशेष प्यार है और हम सोचते हैं कि उससे जो भी सम्बंध हम विकसित करेंगे, चाहे व्यापारिक सम्बंध हो या आथिर्क सहयोग वे दोनों ही देशों के लिए लाभदायक होंगे। +","lekin mutual warmth men nepal ke lie special pyar hai aur ham sochte hain ki usse jo bhi relationship ham viksit karenge , chahe trade relationship ho ya aathirk co ve donon hi deshon ke lie benefit honge. +",9,2 +"Most of them were religious fanatics who were keen on going to Turkey . +","उनमें से अधिकतर लोग कट्टर धार्मिक थे जो तुर्की जाने के लिए उत्सुक थे . +","unmen se adhikatar log religious fanatics the jo turki jane ke lie utsuk the +",8,2 +"The requested device could not be initialized (""mounted""). The reported error was:% 1 +","निवेदित उपकरण इनिशियलाइज़ (""माउन्टेड"") नहीं किया जा सकता. रिपोर्ट की गई त्रुटि हैः% 1 +","requested device inishiylaiz maunted nahin kiya ja sakta reported ki gee truti haia 1 +",7,3 +"This group traveled in two ships to reach Jeddah in year 1577 and left for Mecca and Madina. +","ये जत्था दो पोतों में सूरत से जेद्दाह बंदरगाह पर १५७७ में पहुंचा और मक्का और मदीना को अग्रसर हुआ। +","ye jattha do group traveled soorat se jeddah bndargah par १५७७ men pahuncha aur makka aur madina ko agrasar huaa. +",7,6 +"Ardhendu Mustafi 's habit of teaching without discrimination endeared him to his fellow men. +","बिना भेदभाव के सिखाने वाले अपने स्वभाव के कारण अर्धेन्दु मुस्तफी अपने सहकर्मियों में लोकप्रिय थे। +","bina teaching without discrimination vale apne svbhav ke karan ardhendu mustphi apne sahakarmiyon men lokapriy the. +",4,7 +"Say: “He is Allah, the One and Unique; +","(ऐ रसूल) तुम कह दो कि ख़ुदा एक है +","ae rasool tum kah do ki uda ek hai +",9,2 +"And send down (to prey) upon them birds in flocks, +","और उन पर झुन्ड की झुन्ड चिड़ियाँ भेज दीं +","aur un par birds ki birds chiriyan bhej din +",8,0 +"Simulated papers do not create and legal right or entitlement. +","नकली कागज-पत्र/दस्तावेज कोई कानूनी अधिकार/प्राप्ति हक सृजित नहीं करते। +","simulated kagaj-patrdastavej koee legal adhikarprapti right srijit nahin karte. +",8,2 +"In this way We showed Abraham Our kingdom of the heavens and the earth, so that he might have certainty of faith. +","और (जिस तरह हमने इबराहीम को दिखाया था कि बुत क़ाबिले परसतिश (पूजने के क़ाबिल) नहीं) उसी तरह हम इबराहीम को सारे आसमान और ज़मीन की सल्तनत का (इन्तज़ाम) दिखाते रहे ताकि वह (हमारी वहदानियत का) यक़ीन करने वालों से हो जाएं +","aur jis tarah hamne ibrahim ko dikhaya tha ki but abile parastish poojne ke abil nahin usi tarah ham ibrahim ko sare aasman aur zamin ki saltanat ka intazam dikhate rahe taki vah hmari vahdaniyat ka yain karne valon se ho jaen +",6,5 +"We can no longer accept many of the ancient beliefs and customs; we have no more faith in them, in Asia or in Europe or America. +","अब हम बहुत-से पुराने आचार-विचारों, पुराने रीति-रिवाजों को बदस्तूर नहीं कबूल करते। +","more america bahut-se many aachar-vicharon , many riti-rivajon ko badastoor nahin kabool karte. +",5,3 +"If you ask them, ""Who has created the heavens and the earth?"", they will surely answer, ""The Almighty, the All Knowing One has created them."" +","और (ऐ रसूल) अगर तुम उनसे पूछो कि सारे आसमान व ज़मीन को किसने पैदा किया तो वह ज़रूर कह देंगे कि उनको बड़े वाक़िफ़कार ज़बरदस्त (ख़ुदा ने) पैदा किया है +","aur ae rasool agar tum unse poochho ki sare aasman v zamin ko kisne paida kiya to vah zaroor kah denge ki unko bare vaifkar zabaradast uda ne paida kiya hai +",7,1 +"There is indeed not a single square centimetre on the Earth 's surface where one or another kind of insect is not found. * * How numerous are insects? +","वस्तुतया पृथ्वी की सतह पर एक वर्ग से. मी. जगह भी ऐसी नहीं है जहां कीट न मिलें। +","vastutya earth ki satah par ek varg se mi jagah bhi aesi nahin hai jahan single n kind +",4,2 +"Religions whether Christianity, Buddhism, Hinduism or Theosophy or any other system can only take us to the one point where all religions meet, and no further. +","धर्म-वह चाहे ईसाई, बौद्ध, हिंदू हो या थिसोसॉफी या कोई अन्य पंथ-हमें केवल उस बिंदु तक ले जा सकता है जहां सभी धर्म मिल जाते हैं, उससे आगे नहीं। +","dharm-vah chahe religions , buddhism , hindoo ho ya thisosphi ya koee other pnth-hmen keval us point tak system ja sakta hai jahan sabhi dharm mil jate hain , usse aage nahin. +",6,2 +"and encourage them to do the same. +","और उन्हें उत्साहित कीजिये ये करने के लिये। +","aur unhen utsahit same ye karne ke liye. +",9,0 +"Could not save attachment:% s +","% s नहीं बचाया जा सकाः% s +","attachment nahin bachaya ja sakaa attachment +",7,0 +"Smoking, drinking, stress, chemicals of the environment, high fructose corn syrup, Twinkies..... +","धूम्रपान, मदिरा सेवन, चिंता, प्रदुषण, अधिक मीठा +","smoking, madira sevan, chinta, prdushan, adhik mitha +",7,1 +"and We lay veils upon their hearts lest they understand it, and in their ears heaviness. And when thou mentionest thy Lord only in the Koran, they turn in their traces in aversion. +","और उनके दिलों पर भी परदे डाल देते है कि वे समझ न सकें। और उनके कानों में बोझ (कि वे सुन न सकें)। और जब तुम क़ुरआन के माध्यम से अपने रब का वर्णन उसे अकेला बताते हुए करते हो तो वे नफ़रत से अपनी पीठ फेरकर चल देते है +","aur unke hearts par bhi veils thou lord hai ki ve samajh n saken. aur unke ears men bojh ki ve sun n saken . aur jab thy koran ke madhyam se apne traces ka varnan use akela batate hue karte ho to ve aversion se apni pith pherakar chal lord hai +",7,0 +"God created the heavens and the earth with the truth; surely in that is a sign to the believers. +","अल्लाह ने आकाशों और धरती को सत्य के साथ पैदा किया। निश्चय ही इसमें ईमानवालों के लिए एक बड़ी निशानी है +","god ne heavens aur earth ko saty ke sath paida kiya. nishchay hi ismen eemanvalon ke lie ek sign nishani hai +",6,2 +"Opening the calendar. Please wait... +","पंचांग खोल रहा है. कृपया प्रतीक्षा करें... +","calendar khol raha hai kripya wait karen +",7,4 +"Wind speed = %d kilometers/hour +","हवा की गती = %d किलोमीटर/प्रतिघंटा +","wind ki speed d hour +",7,2 +"Adjustment in relation to circumstances. +","परिस्थितियों के अनुरुप ढालने की प्रक्रिया। +","relation to circumstances dhalne ki prakriya. +",6,1 +"This is a time of great opportunities in India. +","यह भारत के लिए सुनहरे अवसरों का दौर है। +","yah india ke lie sunahre avasron ka great opportunities +",6,3 +"The description is required in your bug report. This should not happen with the latest Bug Buddy. +","आपके बग रिपोर्ट में विवरण की जरूरत है. नवीनतम बग बड्डी में ऐसा नहीं होना चाहिए. +","aapke bag description is required ki jaroorat hai navinatam bag baddi men aesa nahin hona chahie +",6,3 +"A rule that elaborates equality in value. +","ऐसा नियम जो मूल्य में समानता की व्याख्या करता हो। +","aesa rule jo mooly men samanta ki vyakhya karta ho. +",5,5 +"India and Peru, two ancient civilizations of the world, traditionally enjoy warm and friendly relations. +","विश्व की दो प्राचीन सभ्यताओं, भारत और पेरू के पारंपरिक रूप से हार्दिक और मैत्रीपूर्ण संबंध रहे हैं। +","world ki do ancient civilizations , india aur peru ke parnprik roop se warm aur maitripoorn relations rahe hain. +",8,3 +"No other applications are available to view this file. If you copy this file onto your computer, you may be able to open it. +","इस फाइल को देखने के लिये कोई अन्य अनुप्रयोग उपलब्ध नहीं है. अगर आफ इस फाइल को कंप्यूटर पर कॉपी करते हैं, आप इसे खोलने में सक्षम हो सकते हैं. +","is file ko dekhne ke liye koee other applications available nahin hai agar aaph is file ko computer par kpi karte hain , aap ise kholne men able ho sakte hain +",8,1 +"They must align their activities with national development goals. +","उन्हें अपने कार्यकलापों को राष्ट्रीय विकास लक्ष्यों के साथ जोड़ देना चाहिए। +","unhen apne activities ko national development goals ke sath jor dena chahie. +",9,1 +"To the poor refugees who were driven out of their homes and their possessions, as they sought the favor of God and His approval, and came to the aid of God and His Messenger. These are the sincere. +","(इस माल में) उन मुफलिस मुहाजिरों का हिस्सा भी है जो अपने घरों से और मालों से निकाले (और अलग किए) गए (और) ख़ुदा के फ़ज़ल व ख़ुशनूदी के तलबगार हैं और ख़ुदा की और उसके रसूल की मदद करते हैं यही लोग सच्चे ईमानदार हैं और (उनका भी हिस्सा है) +","is mal men un poor refugees ka hissa bhi hai jo apne gharon se aur malon se nikale aur alag kie ge aur uda ke fazal v ushnoodi ke talabgar hain aur uda ki aur uske aid of god karte hain yahi log sachche eemandar hain aur unka bhi hissa hai +",6,3 +"He was never to look back again. +","उन्होंने फिर कभी मुड़कर नहीं देखा. +","unhonne phir kabhi back nahin dekha +",7,0 +"Equally important , Tata 's success buried once and for all many misconceptions , fostered mainly by the British , about the Indian people 's ability to venture into the unknown , or about the availability of capital and their readiness to risk it . +","इतना ही महत्वपूर्ण यह तथ्य है कि टाटा की सफलता में सदा के लिए उन गलत अवधारणाओं को समाप्त कर दिया जो मुख़्यत : ब्रिटेनवासियों ने ही , भारतीय लोगों की किसी नये उद्योग को शुरू करने की योग़्यता , पूंजी की उपलब्धता और उसके निवेश के लिए मानसिक तैयारी के बारे में , फैलायी थीं . +","itna hi mahatvpoorn yah tathy hai ki tata ki saphalta men sada ke lie un galat avdharnaon ko samapt kar diya jo muyat : britenvasiyon ne hi , indian people ki kisi naye udyog ko shuroo karne ki yoyta , availability of capital aur uske nivesh ke lie mansik taiyari ke bare men , phailayi thin +",7,6 +"It is such a simple thing that everyone can learn it. +","वह इतनी आसान चीज है कि हर एक आदमी को उसे सीख लेना चाहिये। +","vah such simple thing hai ki everyone ek aadmi ko use sikh lena chahiye. +",6,1 +"Legislators must always remember that as representatives of the people and custodians of public interests and rights, they have to be extremely careful in matters of legislation, money and finance. +","विधायकों को सदैव याद रखना चाहिए कि जन प्रतिनिधि और जनहित संरक्षक के रूप में उन्हें विधान, धन और वित्त संबंधी मामलों में अत्यंत सतर्क रहना होगा। +","vidhaykon ko sadaiv yad rakhna chahie ki jan prtinidhi aur janhit snrakshak ke roop men unhen vidhan, dhan aur vitt snbndhi mamlon men atynt satark rahna hoga. +",4,7 +"Pakistani territory of today has been witness to many cultures +","आज का पाकिस्तानी भूभाग कई संस्कृतियों का गवाह रहा है। +","today ka pakistani territory kee cultures ka witness raha many +",6,1 +"They, (the People of the Book), have said that God has taken for Himself a son. He is too glorious to have a son. To Him belongs all that is in the heavens and the earth. All pray in obedience to Him. +","कहते है, अल्लाह औलाद रखता है-महिमावाला है वह! (पूरब और पश्चिम हीं नहीं, बल्कि) आकाशों और धरती में जो कुछ भी है, उसी का है। सभी उसके आज्ञाकारी है +","kahte hai, allah aulad rakhta hai-mhimavala hai vah! poorab aur pashchim hin nahin, balki aakashon aur dharti men jo kuchh bhi hai, usi ka hai. sabhi uske aajnjakari hai +",5,8 +"He listened to the wind, and felt the stones beneath his feet. +","उसे हवा की आवाज सुनाई दी और पैरों के नीचे पत्थर भी महसूस हुए। +","use wind ki aavaj sunaee di aur feet ke niche stones bhi mahsoos hue. +",9,1 +"The President of India, Shri Pranab Mukherjee will visit Uttar Pradesh (Vrindavan, Mathura) tomorrow (November 18, 2015) where he will inaugurate the 500thyear celebrations of Sri Chaitanya Mahaprabhu’s advent in Vrindavan. He will also visit the Shri Radha Raman Temple. +","भारत के राष्ट्रपति श्री प्रणब मुखर्जी कल (18 नवम्बर, 2015) उत्तर प्रदेश (वृंदावन, मथुरा) की यात्रा करेंगे जहां वह श्री चैतन्य महाप्रभु के वृंदावन आगमन के 500वें वर्ष समारोह का उद्घाटन करेंगे। वह श्री राधा-रमण मंदिर के दर्शन करने भी जाएंगे। +","india ke president shri pranab mukharji tomorrow 18 november , 2015 uttar prdesh pradesh , mathura ki yatra karenge jahan vah shri chaitany mahaprabhu ke pradesh advent ke 500ven varsh celebrations ka udghatan karenge. vah shri radha-raman temple ke darshan karne bhi jaenge. +",9,0 +"So today We will save you in body that you may be to those who succeed you a sign. And indeed, many among the people, of Our signs, are heedless +","तो हम आज तेरी रुह को तो नहीं (मगर) तेरे बदन को (तह नशीन होने से) ब +","to ham aaj teri ruh ko to nahin magar tere badan ko tah save hone se b +",7,2 +"The Indian National Congress reacted sharply to the appointment of the Simon Commission . +","इंडियन नेशनल कांग्रेस ने साइमन कमीशन के गठन पर तीखी प्रतिक्रिया व्यक्त की . +","indiyan national congress ne saiman kamishan ke gathan par reacted sharply vyakt ki +",6,0 +"K. G. M Khan, a dweeler of lahore, made a pure gold urn. +","का़जि़म खान लाहौर का निवासी ने ठोस सुवर्ण कलश निर्मित किया। +","khan khan lahore ka nivasi ne thos gold urn nirmit kiya. +",6,3 +"started speaking to us in the 20th century, +","से हमारी बातचीत 20 वीं सदी में शुरू हुई, +","se hamari speaking 20 started sadi men shuroo huee, +",7,1 +"Unto this, then, summon (O Muhammad). And be thou upright as thou art commanded, and follow not their lusts, but say: I believe in whatever scripture Allah hath sent down, and I am commanded to be just among you. Allah is our Lord and your Lord. Unto us our works and unto you your works; no argument between us and you. Allah will bring us together, and unto Him is the journeying. +","अतः इसी लिए (उन्हें सत्य की ओर) बुलाओ, और जैसा कि तुम्हें हुक्म दिया गया है स्वयं क़ायम रहो, और उनकी इच्छाओं का पालन न करना और कह दो, ""अल्लाह ने जो किताब अवतरित की है, मैं उसपर ईमान लाया। मुझे तो आदेश हुआ है कि मैं तुम्हारे बीच न्याय करूँ। अल्लाह ही हमारा भी रब है और तुम्हारा भी। हमारे लिए हमारे कर्म है और तुम्हारे लिए तुम्हारे कर्म। हममें और तुममें कोई झगड़ा नहीं। अल्लाह हम सबको इकट्ठा करेगा और अन्ततः उसी की ओर जाना है।"" +","ata isi lie unhen saty ki or summon , aur jaisa ki tumhen hukm diya gaya hai svyn ayam raho , aur unki lusts ka palan n karna aur kah do , o ne jo scripture avatrit ki hai , i usapar eeman laya. mujhe to aadesh huaa hai ki i muhammad bich nyay karoon. o hi hamara bhi rab hai aur tumhara bhi. hamare lie hamare karm hai aur muhammad lie muhammad karm. hammen aur tummen koee argument nahin. o ham journeying ikattha karega aur antta usi ki or jana hai. +",5,2 +"The sheet which contains the details of allotment. +","आबंटन संबंधी विवरणों को दर्ज करने वाली शीट। +","allotment snbndhi details ko darj karne vali sheet +",10,0 +"You can search residential telephone numbers and local address from the directory listing. +","आप निर्देशिका लिस्टिंग से आवासीय टेलीफोन नम्बर और स्थानीय पता ढूँढ सकते हैं। +","aap directory listing se residential telephone numbers aur local address dhoondh sakte hain. +",10,0 +"The person who carries out survey or a profession engaged in survey work. +","वह व्यक्ति जो सर्वेक्षण करता हो अथवा जो सर्वेक्षण के व्यवसाय में संलग्न हो। +","vah person jo survey karta ho athva jo survey ke profession men work ho. +",7,2 +"Push it so as to cover the full length of the nozzle of the stove and the regulator. +","ट्यूब को अच्छी तरह लगाएं जिससे कि स्टोव और रेग्यू लेटर के नॉजल को पूरी तरह ढंका जा सके। +","tyoob ko achchhi tarah lagaen jisse ki stov aur regyoo letar ke njal ko poori tarah dhnka ja sake. +",7,2 +"but whoever goes beyond this is a transgressor; +","तो जो लोग उनके सिवा और के ख़ास्तगार हों तो यही लोग हद से बढ़ जाने वाले हैं +","to jo log unke siva aur ke astgar hon to yahi log had se ba jane vale hain +",4,7 +"I do not feel unnecessarily elated in a happy situation and do not despair in moments of troubles and tragedies. +","मैं प्रसन्नता वाली स्थिति में असाधारण रूप से उल्लसित नहीं होती और मुसीबतों तथा दुखद परिस्थितियों में निराश नहीं हो जाती। +","main prasannta vali sthiti men asadharan roop se ullsit nahin hoti aur musibton tatha dukhad paristhitiyon men nirash nahin ho jati. +",9,0 +"Premium rates depend on the ‘expected loss’, which in turn depends on the patterns of weather parameters of historical period of about 25 to 100 years in the context of ideal weather requirements of a crop. +","प्रीमियम दरें ‘अनुमानित नुकसान’ पर निर्भर करती हैं, जो कि एक फसल की आदर्श मौसम आवश्यकताओं के सन्दर्भ में लगभग 25-100 वर्षों के ऐतिहासिक काल के मौसम मानदण्ड़ के स्वपरूपों पर निर्भर करती हैं। +","premium rates anumanit loss par depends karti hain , jo ki ek years ki ideal weather parameters ke context men lagabhag 25-100 varshon ke historical period ke weather manadanr ke svaproopon par depends karti hain. +",7,6 +"A new computer center will come up for the poor children. +","गरीब बच्चों के लिए एक नया कंप्यूटर केन्द्र चालू होने वाला है। +","poor children ke lie ek naya computer center chaloo hone vala children +",7,3 +"Equally important , Tata 's success buried once and for all many misconceptions , fostered mainly by the British , about the Indian people 's ability to venture into the unknown , or about the availability of capital and their readiness to risk it . +","इतना ही महत्वपूर्ण यह तथ्य है कि टाटा की सफलता में सदा के लिए उन गलत अवधारणाओं को समाप्त कर दिया जो मुख़्यत : ब्रिटेनवासियों ने ही , भारतीय लोगों की किसी नये उद्योग को शुरू करने की योग़्यता , पूंजी की उपलब्धता और उसके निवेश के लिए मानसिक तैयारी के बारे में , फैलायी थीं . +","people hi important yah tathy hai ki tata ki success men sada ke lie un galat avdharnaon ko samapt kar diya jo muyat : many ne hi , indian logon ki kisi naye udyog ko shuroo karne ki ability , poonji ki availability aur uske nivesh ke lie mansik readiness ke bare men , phailayi thin +",6,5 +"Element of cost cannot be ignored while preparing a project. +","किसी परियोजना को बनाने में लागत तत्व की उपेक्षा नहीं की जा सकती। +","kisi preparing a project element of cost ki upeksha nahin ki ja sakti. +",6,1 +"Proceed to a shadow rising in three columns: +","(धुएँ के) साये की तरफ़ चलो जिसके तीन हिस्से हैं +","proceed ke saye ki taraf chalo jiske tin hisse hain +",6,3 +"Public meetings of sympathy for me and of protest against the judgment of the High Court, were held in almost every considerable town. +","हर शहर में मेरे समर्थन में और उच्च न्यायालय के फैसले के विरोध में सार्वजनिक सभाएं हुईं. +","har town men judgment sympathy men aur high court ke phaisle ke meetings men public considerable hueen +",6,2 +"The resource base of the Union government today is an ocean compared to that drop. +","आज केन्द्र सरकार के संसाधन उस बूंद की तुलना में एक महासागर के समान हैं। +","today base government ke resource us drop ki tulna men ek ocean ke saman hain. +",8,2 +"who are true to their trusts and their covenants, +","और जो अपनी अमानतों और अपने एहद का लिहाज़ रखते हैं +","aur jo apni trusts aur apne ehad ka lihaz rakhte hain +",9,0 +"The eastern regions of Salsette Island contain many quagmires (or is marshy), they are also biologically, very diverse. +","सैलसेट द्वीप की पूर्वी ओर दलदली इलाका है जो जैवभिन्नताओं से परिपूर्ण है। +","regions island ki eastern or marshy ilaka hai jo many se paripoorn hai. +",6,3 +"(1) The validity of any proceedings in Parliament shall not be called in question on the ground of any alleged irregularity of procedure. +","(1) संसद की किसी कार्यवाही की विधिमान्यता को प्रक्रिया की किसी अभिकथित अनियमितता के आधार पर प्रश्नगत नहीं किया जाएगा। +","1 parliament ki kisi proceedings ki validity ko procedure ki kisi alleged irregularity ke ground par question nahin kiya jaega. +",7,1 +"Place the ten of spades next to the nine of spades. +","हुकुम की दहला के बगल में हुकुम के नहला को रखें. +","place ki ten ke bagal men place ke nahla ko rakhen +",4,1 +"Who avoid the deadly sins, immoral acts, and forgive when they are angered, +","जो बड़े-बड़े गुनाहों और अश्लील कर्मों से बचते है और जब उन्हे (किसी पर) क्रोध आता है तो वे क्षमा कर देते हैं; +","jo bare-bare sins aur acts karmon se deadly hai aur jab unhe kisi par krodh immoral hai to ve kshma kar dete hain +",6,6 +"Then which of the favours of your Lord will ye deny? - +","अतः तुम दोनों अपने रब की अनुकम्पाओं में से किस-किस को झुठलाओगे? +","lord tum donon apne rab ki favours men se kis-kis ko jhuthlaoge +",8,0 +"In the recent past, bilateral cooperation has seen significant acceleration and expansion to include almost all areas of mutual interest. +","पिछले दिनों द्विपक्षीय संबंधों में काफी गति तथा विस्तार हुआ है और उसमें लगभग सभी क्षेत्र शामिल हैं। +","recent past dvipakshiy snbndhon men kaphi acceleration and expansion huaa hai aur usmen lagabhag sabhi kshetr shamil hain. +",9,2 +"and what will make you understand what the 'Illiyyin is? - - +","और तुमको क्या मालूम कि इल्लीयीन क्या है वह एक लिखा हुआ दफ़तर है +","aur tumko kya maloom ki illiyin kya hai vah ek likha huaa dafatar hai +",9,1 +"Indicates whether any trailing zeroes after the numeric point should be shown in the display value. +","बताता है कि कोई पश्चगामी शून्य जिसके बाद संख्या बिंदु को प्रदर्शन मान में दिखाया जाना चाहिए. +","batata hai ki koee trailing shoony jiske bad snkhya point ko display value men dikhaya jana chahie +",8,1 +"refuse him / her the permission to see your presence +","आपकी उपस्थिति को देखने के लिए उन्हें अनुमति मत दें +","aapki refuse ko dekhne ke lie unhen permission mat den +",7,3 +"In Uttarapatha there is a mention of a golden stupa at Mathura. +","उत्तरापथ में मथुरा में सुवर्णस्तूप होने का उल्लेख मिलता है। +","uttrapath men mathura men suvarnastoop hone ka ullekh milta hai. +",9,2 +"And Thamood—those who carved the rocks in the valley. +","और समूद के साथ (क्या किया) जो वादी (क़रा) में पत्थर तराश कर घर बनाते थे +","aur samood ke sath kya kiya jo valley rocks men patthar tarash kar ghar banate the +",9,0 +"Apart from working out all the sums from prescribed textbooks, Satyen would solve similar sums from subsidiary text - books. +","सत्येन निर्धारित पाठ्य-पुस्तकों में दिये हुए सब प्रश्नों को करने के अतिरिक्त सहायक पाठ्य-पुस्तकों से भी वैसे ही प्रश्नों को हल करते थे। +","satyen prescribed pathy-pustkon men diye hue sab prashnon ko karne ke atirikt subsidiary pathy-pustkon se bhi similar hi prashnon ko sums karte the. +",7,2 +"243W. Powers, authority and responsibilities of Municipalities, etc.- +","243ब. नगरपालिकाओं, आदि की शक्तियाँ, प्राधिकार और उत्तरदायित्व- +","243b municipalities, aadi ki powers, authority aur uttardayitv- +",6,5 +"They embrace the infinite coastline of the sea at their mouths. +","वे अपने मुहानों पर असीम समुद्रतट का आलिंगन करती हैं। +","ve apne coastline par infinite sea ka aalingan karti hain. +",7,5 +"Guard against the disgrace and misery of the day when you shall return to Allah: there everyone shall be paid in full, for the good or evil one has earned and none shall be wronged. +","और उस दिन का डर रखो जबकि तुम अल्लाह की ओर लौटोगे, फिर प्रत्येक व्यक्ति को जो कुछ उसने कमाया पूरा-पूरा मिल जाएगा और उनके साथ कदापि कोई अन्याय न होगा +","aur us day ka guard everyone jabki tum allah ki or lautoge , phir full vyakti ko jo kuchh usne kamaya poora-poora mil jaega aur unke sath kadapi koee anyay n hoga +",8,0 +"A staff of GUARD then brought 2 kg. of earthworms which costed Chandranna Rs. 300. +","के स्टाफ के एक सदस्य ने उसके बाद 2 किलोग्राम केंचुए लाकर दिए, जिसकी कीमत चन्द्रण्णा को 300 रुपये देनी पड़ी। +","ke staph ke ek sadasy ne uske bad 2 kilogram kenchue lakar die, jiski kimat chandranna ko 300 rupye deni pari. +",5,8 +"Our media can play a major role in creating awareness and projecting positive stories in this respect. +","इस संबंध में हमारा मीडिया जागरूकता पैदा करने और सकारात्मक जागरूकता प्रस्तुत करने में एक महत्वपूर्ण भूमिका निभा सकता है। +","is snbndh men hamara media awareness paida karne aur positive awareness prastut karne men ek major role stories sakta hai. +",7,2 +"God is the most exalted King and the Supreme Truth. He is the only God and the Lord of the Gracious Throne. +","तो ख़ुदा जो सच्चा बादशाह (हर चीज़ से) बरतर व आला है उसके सिवा कोई माबूद नहीं (वहीं) अर्श बुर्जुग़ का मालिक है +","to god jo truth exalted har chiz se baratar v supreme hai uske siva koee mabood nahin vahin throne burju ka lord hai +",5,1 +"Cannot authenticate MAPI accounts in offline mode +","ऑफलाइन मोड में MAPI खाता सत्यापित नहीं कर सकता है +","offline mode men MAPI khata satyapit nahin kar sakta hai +",8,1 +"You do not have the permissions necessary to save the file. +","फ़ाइल सहेजने के लिए आपके पास आवश्यक अनुमति नहीं है. +","file save ke lie aapke pas aavashyak anumti nahin hai +",7,0 +"And they used to persist in the great violation, +","और बड़े गुनाह पर अड़े रहते थे +","aur bare gunah par persist rahte the +",9,1 +"With these words, I have great pleasure to inaugurate this Congress. +","इन शब्दों के साथ मुझे इस सम्मेलन का उदघाटन करते हुए प्रसन्नता हो रही है। +","in shabdon ke sath mujhe is sammelan ka inaugurate karte hue pleasure ho rahi words +",8,2 +"The amount of space between two consecutive rows +","दो लगातार पंक्तियों के बीच की दूरी +","do consecutive amount ke bich ki space +",8,1 +"DLA for children under age 16 < s > You can claim DLA for a child with a severe physical or mental disability if they need much more help or looking after than other children of the same age because of their illness or disability +","जिन बच्चोंको गंभीर शारीरीक और मानसिक विकलांगता है जिस के कारण उनको उनकी विकलांगता और बीमारी की वजह से उन्हीं की आयु के बच्चों से अधिकतर मदद या फिर देखभाल की जरुरत लगती है तो आपको DLA के लिए अर्जी भर सकते है। +","jin bachchonko gnbhir physical or mental viklangta hai jis ke karan unko unki viklangta aur bimari ki vajah se unhin ki aayu ke bachchon se adhikatar madad ya phir dekhbhal ki jarurat lagti hai to aapko DLA ke lie arji bhar sakte hai. +",4,5 +"and who will be told, ""This is what you had called a lie"". +","फिर कहा जाएगा, ""यह वही है जिस तुम झुठलाते थे"" +","phir kaha lie , yah vahi hai jis tum jhuthlate the +",8,0 +"We will get the job done in anyway. +","हम किसी भी तरह से कार्य पूरा कर लेंगे। +","ham kisi bhi tarah se job poora kar lenge. +",9,2 +"Premium rates depend on the ‘expected loss’, which in turn depends on the patterns of weather parameters of historical period of about 25 to 100 years in the context of ideal weather requirements of a crop. +","प्रीमियम दरें ‘अनुमानित नुकसान’ पर निर्भर करती हैं, जो कि एक फसल की आदर्श मौसम आवश्यकताओं के सन्दर्भ में लगभग 25-100 वर्षों के ऐतिहासिक काल के मौसम मानदण्ड़ के स्वपरूपों पर निर्भर करती हैं। +","premium rates anumanit nuksan par nirbhar karti hain, jo ki ek phasal ki ideal weather requirements ke sandarbh men lagabhag 25-100 varshon ke aetihasik kal ke mausam manadanr ke svaproopon par nirbhar karti hain. +",9,0 +"While one is the basic unit of life, the other is that of inanimate matter. +","एक जीवों की इकाई या मूल मात्रक है तो दूसरी जड़ पदार्थों की. +","ek life ki unit ya basic inanimate hai to other jar padarthon ki +",6,4 +"Just write your query on this postcard and send it to Google office via Snail Mail. +","आप अपनी पृच्छा इस पोस्टकार्ड पर लिखकर स्नेल मेल के द्वारा गूगल कार्यालय को भेज दें। +","aap apni query is postkard par likhakar snel mel ke dvara google office ko bhej den. +",9,1 +"It could be that, other than fiscally, he is not a conservative but a moderate. It could be ego: the governor is just more brilliant than the rest of us. Or, as several analysts suggest, it could be cynical double pandering: Muslims get what they want most and Zionists what they want most, with each party ignoring what Christie does for the other. Interestingly, Senator Joseph Lieberman of Connecticut pursued this double track policy (soft on Islamism, staunch on Israel) and became the Democrats' VP candidate in 2000. < s > Whatever the reason, we conclude that Chris Christie lacks the moral compass, gravitas, and integrity needed to serve as vice - president of the United States. +","हो सकता है कि बजट घाटे के अतिरिक्त वे परम्परावादी न होकर नरमपंथी हों। या फिर अहंकार हो कि राज्यपाल से मेधावी कौन हो सकता है? या फिर जैसा कि अनेक विश्लेषक सुझाव देते हैं कि यह दोहरे तुष्टीकरण की नीति हो सकती हैः मुसलमानों को अधिक से अधिक वह मिले जो वह चाहते हैं और इजरायलवादियों को वह जो वह चाहते हैं और इस मामले में दोनों ही इस बात की परवाह नहीं करते कि क्रिस्टी दूसरों के लिये क्या कर रहे हैं? रोचक बात है कि कानेक्टीकट के सीनेटर जोसेफ लिबरमैन ने इस दोहरी नीति को अपनाया था (इस्लामवाद के प्रति नरम, इजरायल के प्रति रवैया) और 2000 मे डेमोक्रेट की ओर से उपराष्ट्रपति पद के प्रत्याशी बने थे। +","ho sakta hai ki bajat ghate ke atirikt ve parampravadi n hokar narampnthi hon. ya phir ahnkar ho ki rajypal se medhavi kaun ho sakta hai ya phir jaisa ki anek vishleshak sujhav dete hain ki yah dohre tushtikaran ki niti ho sakti haia musalmanon ko adhik se adhik vah mile jo vah chahte hain aur ijrayalvadiyon ko vah jo vah chahte hain aur is mamle men donon hi is bat ki parvah nahin karte ki kristi doosron ke liye kya kar rahe hain rochak bat hai ki kanektikat ke sinetar joseph libarmain ne is dohri niti ko apnaya tha islamvad ke prti naram, ijrayal ke prti ravaiya aur 2000 me demokret ki or se uprashtrapti pad ke pratyashi bane the. +",4,7 +"A book in which the business transactions of an agent are posted in the form of debits and credits. +","एक बही जिसमें किसी अभिकर्ता के व्यावसायिक लेन-देन लेनदारी व देनदारी के रूप में दर्ज़ होते हैं। +","ek bahi jismen kisi abhikarta ke business transactions lendari v dendari ke roop men darz hote hain. +",9,2 +"The Arabs laughed at him , and the alchemist laughed along . +","अरब सैनिक उसकी बात सुनकर हंस पड़े । उनके साथ कीमियागर भी हंसने लगा । +","arab sainik uski bat sunakar hns pare . s unke sath kimiyagar bhi hnsne laga . +",9,0 +"Example: in the panel [XML:: RSS] (panel) [mygape] (PHP), [rom] (java) etc. +","उदाहरणः सीपैन में [XML:: RSS] (पर्ल) [मैगपी] (पीएचपी) [रोम] (जावा) आदि। +","udaharna sipain men XML:: RSS parl maigpi piechpi rom java aadi. +",4,7 +"Could not rename partial file% 1. Please check permissions. +","आधा-अधूरा फ़ाइल% 1 का नाम बदल नहीं सकता. कृपया अनुमतियाँ जाँचें. +","aadha-adhoora file partial ka nam badal nahin sakta please permissions janchen +",8,2 +"The poet keeps thinking about the country all the time. +","कवि उठते-बैठते देश चिन्तन में मग्न रहा करता। +","kavi uthte-baithte desh chintan men magn raha karta. +",8,3 +"What actually happened was the impulses were reduced. +","असलियत में ये हुआ कि गतियाँ कम हो गयीं. +","asliyat men ye huaa ki gatiyan kam ho gayin +",9,1 +"(x) And do not even go near the property of the orphan - except that it be in the best manner - till he attains his maturity. (xi) And fulfil the covenant, for you will be called to account regarding the covenant. +","और अनाथ के माल को हाथ में लगाओ सिवाय उत्तम रीति के, यहाँ तक कि वह अपनी युवा अवस्था को पहुँच जाए, और प्रतिज्ञा पूरी करो। प्रतिज्ञा के विषय में अवश्य पूछा जाएगा +","aur anath ke mal ko attains his maturity sivay uttam riti ke, yahan tak ki vah apni yuva avastha ko pahunch jae, aur prtijnja poori karo. prtijnja ke vishay men avashy poochha jaega +",6,4 +"Can be development very quickly of articles of short timed subjects in Wikipedia as articles of Mumbai blasts were present after few minutes of its happening along with reference links in English Wikipedia. +","विकिपिडीया मे काफी तेज़ी से समसामयिक विषयों के बारे में लेखो का विकास हो सकता है जैसे कि मुंबई विस्फोटों के खबर का ज़ाहिर होने के चंद मिनटों में ही उसके बारे में अंग्रेजी विकिपीडिया में प्रासंगिक कड़ियों के साथ लेख मौजूद था। +","vikipidiya me few tezi se reference articles ke bare men lekho ka development ho sakta hai jaise ki mumbai blasts ke khabar ka zahir hone ke short minutes men hi uske bare men english wikipedia men prasngik links ke sath lekh present tha. +",7,4 +"This is an incorrect suggestion to solve this problem. +","यह इस समस्या को सुलझाने का गलत सुझाव है। +","yah is problem ko suljhane ka incorrect suggestion hai. +",9,1 +"So fear Allah as much as you are able and listen and obey and spend [in the way of Allah]; it is better for your selves. And whoever is protected from the stinginess of his soul - it is those who will be the successful. +","अतः जहाँ तक तुम्हारे बस में हो अल्लाह का डर रखो और सुनो और आज्ञापालन करो और ख़र्च करो अपनी भलाई के लिए। और जो अपने मन के लोभ एवं कृपणता से सुरक्षित रहा तो ऐसे ही लोग सफल है +","ata jahan tak tumhare bas men ho allah ka dar listen and obey aur aajnjapalan karo aur rch karo apni bhalaee ke lie. aur jo apne man ke lobh evn kripanta se surakshit raha to aese hi log saphal hai +",7,2 +"Electricity from these grids can be distributed to residential houses, community buildings and business centers through these equipments. +","इन संयंत्रों से ग्रिड स्तर की बिजली व्यक्तिगत आवासों सामुदायिक भवनों व व्यापारिक केन्द्रों को प्रदान की जा सकती है। +","in snyntron se grid star ki bijli residential houses samudayik bhavnon v vyaparik kendron ko prdan ki ja sakti hai. +",9,0 +"very small change in time, we have a roughly constant +","बहुत छोटे परिवर्तन के समय में, हम एक मोटे तौर पर निरंतर है +","bahut small change ke time men , ham ek mote taur par constant hai +",7,1 +"However, the suit was filed immediately thereafter, without waiting for two months +","हालाँकि मुकदमा तुरंत ही दायर कर दिया गया था बिना दो महीने इंतज़ार करे ही. +","halanki suit suit was filed kar diya gaya tha bina do mahine intazar kare hi +",5,1 +"In truth, when its desires are fulfilled, it returns to its own place and enjoys the happiness that is the Self. +","वस्तुतः जब उसकी इच्छाएँ पूरी हो जाती है तो वह अपने स्थान पर वापस आ जाता है, और आनंद का, आत्मा का उपयोग करता है। +","vastuta jab own desires poori ho jati hai to vah apne place par vapas truth jata hai , aur happiness ka , self ka upyog karta hai. +",7,3 +"And leave them desolate waste. +","और धरती को एक समतल चटियल मैदान बनाकर छोड़ेगा +","aur dharti ko ek samatal chatiyal leave them desolate +",6,2 +"It was Senator Obama when they created it. They changed the name later. +","जब उन्होंने इसे बनाया तो वह सेनेटर ऒबामा था. बाद में उन्होंने नाम बदल दिया. +","jab unhonne ise created to vah senator ऒbama tha bad men unhonne nam badal diya +",6,4 +"Shahjahan arrange to built it in memory of his wife Mumtaz Mahal. +","यह मुगल बादशाह शाहजहां ने अपनी बेगम मुमताज महल की याद में बनवाया था। +","yah mugal badshah shahjahan ne apni wife mumtaz mahal ki memory men banvaya tha. +",9,1 +"(4) Where the net tonnage of ships chartered in exceeds the limit under sub-section (1) during any previous year, the total income of such company in relation to that previous year shall be computed as if the option for tonnage tax scheme does not have effect for that previous year. +","(4) जहां भाड़े पर लिए गए पोतों का शुद्ध टनभार, किसी पूर्ववर्ष के दौरान उपधारा (1) के अधीन वर्णित सीमा से अधिक हो जाता है, वहां ऐसी कंपनी की, उस पूर्ववर्ष के संबंध में कुल आय की संगणना इस प्रकार की जाएगी मानो उस पूर्ववर्ष के लिए टनभार कर स्कीम संबंधी विकल्प का कोर्इ प्रभाव नहीं था। +","4 jahan bhare par lie ge ships ka net tonnage , kisi previous ke dauran updhara 1 ke adhin varnit limit se exceeds ho jata hai , vahan aesi company ki , us previous ke relation men kul income ki snganna is prkar ki jaegi mano us previous ke lie tonnage kar skim snbndhi option ka kori effect nahin tha. +",8,2 +"refer to teachings and examples of our prophet, +","हमारे पैगम्बर की शिक्षाओं और उदाहरणों को उद्धृत करते हैं, +","hamare prophet ki refer aur examples ko uddhrit karte hain , +",6,5 +"Whether to use the ""- - driver generic - mmc - raw"" flag with cdrdao +","क्या ""-- driver generic-mmc-raw"" का प्रयोग cdrdao के साथ करना है +","kya -- mmc generic-mmc-raw ka pryog cdrdao ke sath karna hai +",6,5 +"Sets the clip region to track the actor 's allocation +","कर्ता का आबंटन पर नज़र रखने के लिए क्लिप क्षेत्र को सेट करें. +","actor ka allocation par nazar rakhne ke lie clip region ko sets karen +",8,1 +"She said, “My Lord, how can I have a child, when no man has touched me? ” He said, “It will be so. God creates whatever He wills. To have anything done, He only says to it, ‘Be, ’ and it is. ” +","वह बोली, ""मेरे रब! मेरे यहाँ लड़का कहाँ से होगा, जबकि मुझे किसी आदमी ने छुआ तक नहीं?"" कहा, ""ऐसा ही होगा, अल्लाह जो चाहता है, पैदा करता है। जब वह किसी कार्य का निर्णय करता है तो उसको बस यही कहता है 'हो जा' तो वह हो जाता है +","vah boli, man rab! mere yahan larka kahan se hoga, jabki mujhe kisi man has touched tak nahin kaha, aesa hi hoga, allah jo chahta hai, paida karta hai. jab vah kisi kary ka nirnay karta hai to usko bas yahi kahta hai ho ja to vah ho jata hai +",8,1 +"you won the TED Prize 2011. +","तुम्हें २०११ का टेड प्राइज़ मिल गया है. +","tumhen २०११ ka ted praiz mil gaya hai +",9,1 +"Iraqi maltreatment of Iranian dissidents both raises humanitarian concerns and points to the MeK's larger importance as a mechanism to thwart the U.S. goal of minimizing Tehran's influence in Iraq. +","ईरान के विद्रोहियों के साथ इराक द्वारा किये जा रहे दुर्व्यवहार से जो प्रश्न खडे होते हैं उनमें मानवता के आधार पर चिन्ता तो है ही यह इराक में तेहारान के प्रभाव को बढने से रोकने में मुजाहिदीने खल्क की महती भूमिका को भी अवरुद्ध करता है। +","iranian ke dissidents ke sath iraqi dvara kiye ja rahe maltreatment se jo raises us hote hain concerns manavta ke aadhar par chinta to hai hi yah iraqi men humanitarian ke influence ko badhne se rokne men mek khalk ki mahti bhoomika ko bhi avruddh karta goal +",7,4 +"Should the reward of goodness be aught else but goodness? - - +","अच्छाई का बदला अच्छाई के सिवा और क्या हो सकता है? +","reward ka badla reward ke siva aur kya ho sakta hai +",4,7 +"Delete CA certificate “% {CERTIFICATENAME} ”? CA +","प्रमाणपत्र “% {CERTIFICATENAME} ” हटाएं? +","certificate CERTIFICATENAME hataen +",8,1 +"A large number of water birds visit this area. +","इस क्षेत्र में अनेकों पक्षी आते है। +","is area men large birds water hai. +",6,1 +"It is a great pleasure for me to visit the Kofi Annan Centre of Excellence in ICT. +","आईसीटी में कोफी अन्नान सेंटर ऑफ एक्सीलेंस में व्याख्या करना मेरे लिए एक आनंददायक अनुभूति है। +","aaeesiti men kophi annan sentar ऑph eksilens men vyakhya karna mere lie ek aannddayak anubhooti hai. +",6,3 +"Law is an expression of the urge towards discipline, and self - control that has to be fostered in men and in social institutions. +","कानून उस अनुशासन और आत्म-संयम की प्रेरक अभिव्यक्ति है जिसका अनुपालन व्यक्तियों और सामाजिक संस्थाओं को करना होता है। +","kanoon us anushasan aur aatm-snyam ki prerak abhivyakti hai jiska anupalan vyaktiyon aur social institutions ko karna hota hai. +",8,2 +"Allows to burn files not stored locally +","उन फाइलों को लिखने देता है जो स्थानीय रूप से जमा नहीं किए गए +","un files not stored deta hai jo locally roop se jama nahin kie ge +",7,2 +"The balance sheet reflects the historical strength of an organization, and has long been thought of as a ""snapshot"" of an entity 's financial position. +","तुलन पत्र किसी संगठन की ऐतिहासिक शक्ति को व्यक्त करता है जो लंबे समय से ""आशुचित्र"" के रूप में वित्तीय स्थिति का परिचायक होता है। +","balance sheet kisi sngathan ki aetihasik long been thought karta hai jo lnbe samay se aashuchitr ke roop men vittiy sthiti ka parichayak hota hai. +",4,4 +"Root node of '% s' must be < evoldap >, not <% s > '% s' +","का रूट नोड जरूर होनी चाहिये, न कि <% s> +","ka root nod evoldap s honi chahiye , n ki s +",8,2 +"Flies carry diseases from infected persons to healthy persons. +","मक्खियां संक्रमित व्यक्तियों से स्वस्थ व्यक्तियों में बीमारियाँ फैलाती हैं। +","flies carry vyaktiyon se persons to healthy bimariyan phailati hain. +",4,1 +"Such is the Garden which We give as an inheritance to those of Our servants who guard against Evil. +","यही वह बेिहश्त है कि हमारे बन्दों में से जो परहेज़गार होगा हम उसे उसका वारिस बनायेगे +","yahi vah garden hai ki such servants men se jo evil hoga ham use uska inheritance banayege +",6,2 +"A signal or symbol used for secret communication. +","गुप्त संचार/सम्प्रेषण के लिए प्रयोग में लाया जाने वाला कोई चिन्ह या संकेत। +","secret communication ke lie pryog men laya jane vala koee signal or symbol +",8,2 +"It 's better to die that way than live like this . ” +","इस तरह जीने से बेहतर है उस तरह मर जाना . ' ' +","is tarah jine se better hai us tarah mar jana +",10,0 +"(x) And do not even go near the property of the orphan - except that it be in the best manner - till he attains his maturity. (xi) And fulfil the covenant, for you will be called to account regarding the covenant. +","और अनाथ के माल को हाथ में लगाओ सिवाय उत्तम रीति के, यहाँ तक कि वह अपनी युवा अवस्था को पहुँच जाए, और प्रतिज्ञा पूरी करो। प्रतिज्ञा के विषय में अवश्य पूछा जाएगा +","aur orphan ke property ko hath men best sivay uttam manner ke , yahan tak ki vah apni yuva avastha ko pahunch jae , aur covenant poori karo. covenant ke vishay men avashy poochha jaega +",8,0 +"I think we have a problem in Mexico. +","मैं सोचता हूँ कि हमारे पास मेक्सिको में समस्या है | +","main sochta hoon ki hamare pas meksiko men samasya hai +",8,1 +"You need to restart the application. +","आपको अनुप्रयोग को फिर आरंभ करने की जरूरत है. +","aapko application ko phir aarnbh karne ki jaroorat hai +",8,2 +"I mean, I think that looks like some sort of flying animal or beast. +","शायद यह एक उड़ने वाले जानवर जैसा दिखता है. +","i yah ek sort vale animal jaisa dikhta hai +",6,4 +"I 've two more children from my second wife. +","दूसरी पत्नी से दो बच्चे और हैं। +","second more se do i aur hain. +",4,1 +"They both grew up in more or less the same atmosphere. +","दोनों कमोबेश एक ही वातावरण में पालित-पोषित हुए थे। +","donon same ek hi atmosphere men palit-poshit hue the. +",7,5 +"So be patient with gracious patience. +","अतः धैर्य से काम लो, उत्तम धैर्य +","ata patient with gracious lo, uttam patience +",4,4 +"He was friendly and helpful, charming and soft - spoken. +","वह मैत्रीपूर्ण, सहायताशील, आकर्षक और मृदुभाषी था. +","vah helpful , soft , aakarshak aur mridubhashi tha +",7,2 +"Items of export which are other than the crude oil. +","कच्चे तेल के अलावा निर्यात किया जाने वाला अन्य माल/सामान। +","crude oil ke alava export kiya jane vala other malsaman. +",8,2 +"Certain persons were proceeded against under the Orissa Maintenance of Public Order Act, 1948, and it appears that,Certain persons were proceeded against under the Orissa Maintenance of Public Order Act, 1948, and it appears that, +","कुछ व्यक्तियों के विरूद्ध 'उडिसा मैंटेन्स आँफ पब्लिक आँर्डर एक्ट-1948 के अधीन कानूनी कार्रवाई की गई थी, और ऐसा लगता है कि इन भूतपूर्व राजाओं के, खास तौर पर कालाहांडी के राजा के, प्रोत्साहन और आर्थिक सहायता से ये लोग उस करार की कसौटी करने के लिए हाईकोर्ट तक गये हैं, जो आगे की कानूनी कार्रवाई के मूल में हैं। +","kuchh persons ke virooddh udisa maintens aanph pablik aanrdar ekt-1948 ke adhin kanooni order ki maintenance thi , aur aesa lagta hai ki in bhootpoorv rajaon ke , certain taur par kalahandi ke raja ke , protsahan aur aarthik sahayta se ye public us karar ki kasauti karne ke lie haeekort tak gaye hain , jo aage ki kanooni order ke mool men hain. +",7,2 +"In kwick cricket the bowlers don't wait for the batsmen to be ready. This one has been designed for youngsters as it is more tiring and is usually presented during P.E. classes in English schools. Another change has been made to the games to make it faster, which is 'tip and run'. 'Tipty' run, 'Tipsy' run or 'Tippy-Go' rule. In this when the ball touches the bat, the batsman has to take a run even if he has not touched the ball deliberately. This rule can only be observed during instant play. In this instead of the batsman slowing the ball by his touch increases the speed. +","क्विक क्रिकेट (Kwik cricket)में गेंदबाज बल्लेबाज के तैयार होने का इन्तजार नहीं करता है यह अधिक थका देने वाला खेल बच्चों के लिए डिज़ाइन किया गया है. यह अक्सर अंग्रेजी स्कूलों में पी ई पाठ के लिए प्रयुक्त किया जाता है. इस खेल की गति बढ़ाने के लिए इसमें एक और संशोधन किया गया है ये हैं टिप और रन “टिप्टी” रन” टिप्सी रन या टिप्पी- गो नियम.इसमें जब गेंद बल्ले को छूती है तो बल्लेबाज को भागना ही होता है चाहे यह स्पर्श जान बूझ कर न किया गया हो या बहुत ही कम हो. यह नियम तत्काल खेल में ही देखा जा सकता है इसमें बल्लेबाज के द्वारा गेंद को रोकने के अधिकार को हटा कर इसकी गति को बढ़ने की कोशिश की गई है. +","kvik cricket Kwik cricket men bowlers batsmen ke ready hone ka youngsters nahin karta hai yah adhik tiring dene vala games bachchon ke lie dizain kiya gaya hai yah aksar english classes men pi ee path ke lie pryukt kiya bat hai is games ki change baane ke lie ismen ek aur snshodhan kiya gaya hai ye hain tip aur run faster run tipsi run ya tippi- go niyamismen jab ball balle ko chhooti hai to batsmen ko bhagna hi hota hai chahe yah touch jan boojh kar n kiya gaya ho ya bahut hi kam ho yah rule instant games men hi dekha ja sakta hai ismen batsmen ke dvara ball ko rokne ke adhikar ko hata kar iski change ko bane ki koshish ki gee hai +",6,2 +"Fluctuations in the production of raw jute, low yield, cost inflation, labour unrest, uncertain demand and obsolete machinery are some of its major problems. +","कच्चे जूट के उत्पादन में उतार-चढ़ाव, कम पैदावार, लागत स्फीती, श्रम असंतोष, अनिश्चित मांग, पुरानी मशीनें, कुछ इसकी प्रमुख समस्याऍं हैं. +","raw jute ke utpadan men utar-chaav, kam paidavar, cost inflation, labour unrest, uncertain demand, obsolete machinery, kuchh iski major problems hain +",8,1 +"This is true even if the larval stage has been artificially fed on capsularis diet. +","यह उस स्थिति में भी सत्य है जब लार्वा कैपसुलैरिस आहार ग्रहण करे। +","yah us sthiti men bhi saty hai jab larva capsularis diet grahan kare. +",6,5 +"Please enter a float value > =% 1 +","कृपया एक फ्लोट मूल्य भरें> =% 1 +","enter a float mooly enter 1 +",4,2 +"India and Peru, two ancient civilizations of the world, traditionally enjoy warm and friendly relations. +","विश्व की दो प्राचीन सभ्यताओं, भारत और पेरू के पारंपरिक रूप से हार्दिक और मैत्रीपूर्ण संबंध रहे हैं। +","world ki do ancient civilizations, bharat aur peroo ke parnprik roop se traditionally enjoy warm snbndh rahe hain. +",7,0 +"In this too, their situation was fundamentally different from mine. +","इस प्रश्न को लेकर भी मेरे और उनके दृष्टिकोण में भारी अन्तर था। +","is different ko lekar bhi mine aur unke drishtikon men bhari antar situation +",3,1 +"_ Apply filters to new messages in Inbox on this server +","इस सर्वर पर इनबाक्स में नए संदेश के लिए फिल्टर चलाएँ (_ A) +","is server par inbox men new messages ke lie filters chalaen _ A +",9,2 +"Really move all photos and videos to the trash? +","क्या आप वाकई रद्दी में सारे फोटो और वीडियो खिसकाना चाहते हैं? +","kya aap vakee trash men sare photos aur videos khiskana chahte hain +",9,0 +"""So we led you astray because we were ourselves astray."" +","हम खुद गुमराह थे तो तुम को भी गुमराह किया +","ham khud astray the to tum ko bhi astray kiya +",8,2 +"The cumulative size of all web databases in the security origin +","सुरक्षा उद्गम में सभी वेब डेटाबेस के संचयी आकार +","security origin men sabhi web databases ke cumulative size +",8,4 +"Nobody knows what matter might crop up during this period or what kind of attack might be launched against the government. +","यह कोई नहीं कह सकता कि इस काल के दौरान कौन-सा मामला उठ खड़ा हो या सरकार पर किस तरह का आक्रमण कर दिया जाए. +","yah koee nahin kah sakta ki is period ke dauran kaun-sa matter kind khara ho ya government par kis tarah ka attack kar diya jae +",8,0 +"They must align their activities with national development goals. +","उन्हें अपने कार्यकलापों को राष्ट्रीय विकास लक्ष्यों के साथ जोड़ देना चाहिए। +","unhen apne activities ko national development goals ke sath jor dena national +",7,3 +"The financial ill health of the State Electricity Boards is due to excessive cross - subsidization, poor economic efficiency, poor maintenance of network, and poor collection of revenue. +","राज्य बिजली बोर्डो की खस्ता हालत उनकी अत्यधिक सब्सिडी, खराब आर्थिक दक्षता, नेटवर्क का असंतोषजनक रख-रखाव और राजस्व की खराब वसूली के कारण है। +","state electricity boards ki khasta halat unki atydhik sabsidi, poor economic efficiency, netavark ka asntoshajanak rakh-rkhav aur rajasv ki kharab vasooli ke karan hai. +",8,0 +"It starts off at i and it just keeps digging itself deeper and deeper +","यह मैं पर बंद शुरू होता है और यह सिर्फ ही गहरी और गहरी खुदाई रहता है +","yah i par bnd shuroo hota hai aur yah sirph hi deeper aur deeper khudaee rahta hai +",7,3 +"The combined CPU usage of all processes related to% {SHORT _ PRODUCT _ NAME} +","%{SHORT _ PRODUCT _ NAME} से संबंधित सभी प्रक्रियाओं का संयुक्त CPU उपयोग +","SHORT _ PRODUCT _ NAME se snbndhit sabhi prakriyaon ka snyukt CPU usage +",9,0 +"And if - - just like when x was equal to 0, this term equaled +","और अगर बस जब एक्स इस अवधि equaled 0 के बराबर था की तरह- +","aur agar bas jab eks is term equaled 0 ke equal tha ki tarah- +",6,1 +"The number of columns that a child spans +","स्तंभों की संख्या जो संतति तक फैला है +","columns ki number jo child tak phaila hai +",6,3 +"A preliminary outline of a proposal, speech, book, presentation. +","किसी प्रस्ताव, भाषण, पुस्तक अथवा प्रस्तुतिकरण इत्यादि के लिए तैयार किया गया प्रारम्भिक खाका/प्रारूप। +","kisi proposal , speech , preliminary athva presentation ityadi ke lie taiyar kiya gaya prarambhik khakapraroop. +",7,2 +"They say: 'You to whom the Remembrance is sent down, you are indeed mad. +","वे कहते है, ""ऐ व्यक्ति, जिसपर अनुस्मरण अवतरित हुआ, तुम निश्चय ही दीवाने हो! +","ve kahte hai, ae vyakti, jisapar remembrance avatrit huaa, tum nishchay hi divane ho! +",8,1 +"get our egotism out of the way. +","अपने अहंकरवाद रास्ते से हटा देना है. +","apne egotism raste se hata dena hai +",9,0 +"If you ask them, ""Who has created the heavens and the earth?"", they will surely answer, ""The Almighty, the All Knowing One has created them."" +","और (ऐ रसूल) अगर तुम उनसे पूछो कि सारे आसमान व ज़मीन को किसने पैदा किया तो वह ज़रूर कह देंगे कि उनको बड़े वाक़िफ़कार ज़बरदस्त (ख़ुदा ने) पैदा किया है +","aur earth rasool agar tum unse poochho ki sare aasman v zamin ko kisne heavens kiya to vah zaroor kah denge ki unko bare almighty zabaradast uda ne heavens kiya hai +",6,1 +"Now, what stands in the way of this? +","अब इस सब के मार्ग में क्या अवरोध है ? +","ab is sab ke way men kya avrodh hai +",8,2 +"A reward from your Lord, a gift according to a reckoning: +","(ये) तुम्हारे परवरदिगार की तरफ से काफ़ी इनाम और सिला है +","ye lord paravardigar ki taraph se kafi reward aur sila hai +",7,2 +"Which (that Book with Allah) none can touch but the purified (i. e. the angels). +","इसको बस वही लोग छूते हैं जो पाक हैं +","isko allah vahi book purified hain jo angels hain +",5,4 +"computing will actually merge with the physical world. +","कम्प्यूटिंग यथार्थ में भौतिक संसार के साथ मिल जाएगी। +","kampyooting yatharth men physical world ke sath mil jaegi. +",7,1 +"The East India Company and the British authorities, however, treated him as a pensioner entitled only to the nominal status of a king whose jurisdiction lay within the walls of the Red Fort and who was entitled to a monthly stipend of Rs one lakh. +","यह अलग बात है कि ईस्ट इंडिया कंपनी और ब्रिटिश सरकार उन्हें सिर्फ एक पेंशनभोगी और नाममात्र का शासक समझती थी, जो हर माह एक लाख रूपए के वजीफे का हकदार था और जिसका अधिकार-क्षेत्र लाल किले की चारदीवारी तक सीमित था. +","yah alag bat hai ki east india company aur british sarkar unhen sirph ek penshanbhogi aur nammatr ka shasak samajhti thi, jo har mah ek lakh roope ke vajiphe ka hakdar tha aur jiska adhikar-kshetr lal kile ki chardivari tak simit tha +",8,1 +"National integration is essential for the idea of India to grow. +","भारत के विकास के विचार के लिए राष्ट्रीय अखंडता अत्यावश्यक है। +","india to grow ke vichar ke lie rashtriy integration is essential +",8,0 +"Detracter, spreader abroad of slanders, +","कचोके लगाता, चुग़लियाँ खाता फिरता हैं, +","kachoke lagata, spreader abroad phirta hain, +",4,5 +"Or you may be unable to work because of a serious illness or disability. +","या फिर आप किसी गंभीर बीमारी या फिर विकलांगता के कारण काम नही कर सकेंगे । +","ya phir aap kisi gnbhir illness ya phir illness or disability kam unable to work . +",4,1 +"ANF 8 for Claiming Duty Drawback on All Industry Rates / Fixation of Drawback Rates / Refund of Terminal Excise Duty +","एएनएफ 8 सभी उद्योग किराये पर ड्यूटी ड्राबैक/शुल्क वापसी का निर्धारण/टर्मिनल उत्पाद शुल्क की वापसी का दावा करने के लिए +","eeneph 8 sabhi udyog kiraye par dyooti drabaikshulk vapsi ka terminal excise duty ki vapsi ka dava karne ke lie +",7,0 +"They are allowed to accept / renew public deposits for a minimum period of 12 months and maximum period of 60 months. +","उनके लिए कम से कम 12 माह की अवधि के लिए और अधिकतम 60 माह की अवधि के लिए सार्वजनिक जमाओं को स्वीककार/नवीकरण करने की अनुमति है। +","unke lie minimum se minimum 12 months ki period ke lie aur maximum renew months ki period ke lie public deposits ko svikkarnvikaran karne ki anumti hai. +",8,1 +"Whether menu items should have accelerators +","क्या मेन्यू मद में त्वरक होने चाहिए +","kya menyoo mad men accelerators hone chahie +",8,3 +"As for the people of the right hand, how happy they will be! +","और दाहिने हाथ वाले (वाह) दाहिने हाथ वालों का क्या कहना है +","aur people hand vale happy people hand valon ka kya kahna hai +",6,2 +"to beam a representation of our loved ones into our living rooms - +","हमारे चाहने वालों के प्रतिनिधित्व को बीम करने में- +","hamare loved valon ke beam a representation karne men- +",6,1 +"Budget allocation under Plan Scheme for 2015 - 16 - Rs. 16. 11 Crores. +","वर्ष 2015-16 के लिए प्लान स्कीम के अंतर्गत बजट आवंटन 16.11 करोड़ रू. है। +","varsh 2015-16 ke lie plan scheme ke rs budget allocation 1611 crores roo hai. +",7,2 +"You need to restart the application. +","आपको अनुप्रयोग को फिर आरंभ करने की जरूरत है. +","aapko application ko phir restart karne ki jaroorat hai +",8,4 +"A structure above the surface. +","पृष्ठ या सतह से ऊपर संरचना. +","surface ya satah se oopar structure +",9,2 +"Rural electrification (Ekal Electric House) +","ग्रामीण विद्युतीकरण (एकल बिजली घर) +","rural electrification ekal electric ghar +",7,1 +"And that is for Allah not difficult. +","और ये कुछ खुदा के वास्ते दुशवार नहीं +","aur ye kuchh allah ke vaste difficult nahin +",8,3 +"He covered the vacuum tube with black paper and with card - board through which no visible light could pass. +","उन्होंने निर्यात ट्यूब को काले कागज और कार्डबोर्ड से ढंक दिया, जिससे होकर कोई दृश्य प्रकाश एक और से दूसरी और नहीं गुजर सकता था। +","unhonne niryat tube with black kagaj aur covered the vacuum diya, jisse hokar koee drishy prkash ek aur se doosri aur nahin gujar sakta tha. +",6,3 +"The Overseas Indian community estimated at over 25 million is spread across every major region in the world. +","प्रवासी भारतीय समुदाय अनुमानतः 2.5 करोड़ से अधिक है। जो विश्व के हर बड़े क्षेत्र में फैले हुए हैं। +","overseas indian community anumanta 25 karor se adhik hai. jo vishv ke har bare kshetr men phaile hue hain. +",7,1 +"Decisions in a proprietary concern are easy and prompt. +","स्वामित्व प्रतिष्ठान में निर्णय सुगमता से और त्वरित रूप में लिए जा सकते हैं। +","proprietary concern men decisions easy se aur prompt roop men lie ja sakte hain. +",8,1 +"Said He, 'This is for Me a straight path: +","ख़ुदा ने फरमाया कि यही राह सीधी है कि मुझ तक (पहुँचती) है +","uda ne pharmaya ki yahi path straight hai ki mujh tak pahunchti hai +",7,3 +"I am a trustworthy messenger to you: +","मै तो यक़ीनन तुम्हारा अमानतदार पैग़म्बर हूँ तो ख़ुदा से डरो +","mai to yainan trustworthy messenger paimbar hoon to uda se daro +",8,1 +"Delhi fort is also called as red fort since it is red in color. +","दिल्ली के किले को लाल-किला भी कहते हैं क्योंकि यह लाल रंग का है। +","called as red ko called bhi kahte hain kyonki yah lal red in color +",4,2 +"and while training, I was hit by a bus. +","अपने अभ्यास के दौरान, एक बस ने मुझे टक्कर मार दी। +","apne training ke dauran , ek bus ne i takkar mar di. +",8,1 +"We must now utilize our enlarged capacities to raise the general standards of living. +","हमें अब अपनी बढ़ी हुई क्षमता का उपयोग जीवन के आम स्तर को ऊंचा उठाने के लिए करना होगा। +","hamen ab apni bai huee capacities ka upyog living ke general standards ko ooncha uthane ke lie karna hoga. +",8,0 +"The type of navigation triggering this decision +","इस निर्णय को ट्रिगर करने वाले संचरण के प्रकार +","is triggering this decision karne vale type of navigation +",6,1 +"PRESIDENT OF INDIA’S MESSAGE ON THE EVE OF NATIONAL DAY OF SEYCHELLES, Rashtrapati Bhavan : 28.06.2017 +","सेशल्स के राष्ट्रीय दिवस की पूर्व संध्या पर भारत के राष्ट्रपति का संदेश, राष्ट्रपति भवन : 28.06.2017 +","seychelles ke national day ki poorv eve par india ke president ka message , president : 28062017 +",6,4 +"The Indo-Japanese forces advanced rapidly on all the three sectors of the wide front . +","भारतीय जापानी सेनाएं दीर्घ सीमांत के तीनों सेक़्टरों में तेजी से आगे बढ़ रही थीं . +","bhartiy japani forces dirgh simant ke tinon sectors men teji se front ba rahi thin +",7,2 +"A material which is gluey, transparent and colloidal present in the cell. +","कोशिका में स्थित एक पदार्थ जो लसीला, पारदर्शी तथा कलॉइडल होता है। +","cell men present ek material jo lasila , transparent colloidal kalidal hota hai. +",7,2 +"But those who deny Our messages will be seized by nemesis for being disobedient. +","रहे वे लोग, जिन्होंने हमारी आयतों को झुठलाया, उन्हें यातना पहुँचकर रहेगी, क्योंकि वे अवज्ञा करते रहे है +","rahe ve log, deny our messages ko jhuthlaya, unhen yatna pahunchakar rahegi, kyonki ve avajnja karte rahe hai +",7,1 +"His mother was darning a torn sock over a wooden mushroom. +","उसकी माँ लकड़ी के बने कुकुरमुत्ते पर कोई फटा मोज़ा सी रही थी। +","uski mother wooden ke bane mushroom par koee phata torn si rahi thi. +",7,4 +"He raised the heavens and set up everything in balance, +","उसने आकाश को ऊँचा किया और संतुलन स्थापित किया- +","usne raised the heavens kiya aur balance sthapit raised +",6,1 +"In most countries in the world, there are approximately 105 female births for every 100 males. +","विश्व के अधिकतर देशों में, प्रति 100 पुरुषों के पीछे लगभग 105 स्त्रियों का जन्म होता है, +","world ke adhikatar deshon men, prti 100 purushon ke pichhe lagabhag 105 striyon ka janm hota hai, +",8,3 +"Recycled paper uses less natural resources and less toxic chemicals in paper making process. +","कागज बनाते समय पुनः चक्रित कागज कम प्राकृतिक संसाधन और कम विषाक्त रसायन का उपयोग करता है। +","paper banate process recycled chakrit paper less natural resources aur less toxic chemicals ka upyog karta hai. +",7,2 +"You can expect to receive a visit from your health visitor: +","आप अपेक्षा कर सकते है कि आपका आरोग्य अधिकारी आपको मिलने के लिए आये ः | +","aap apeksha kar sakte hai ki aapka visit adhikari aapko milne ke lie aaye a +",6,1 +"This term is used to mention two parts or components usually in pairs. +","सामान्यतः एक वस्तु के दो भाग या उपकरणों की जोड़ियों केलिए इस पद का प्रयोग किया जाता है। +","term ek vastu ke do parts or components ki joriyon kelie is pad ka pryog kiya jata hai. +",6,4 +"In their case, it is included in the capitation fee upto a distance of 5 km. between the Clinic of IMP and IP 's residence. +","उनके मामले में, इसे बीमा चिकित्सा व्यवसायी के क्लीनिक और बीमाकृत व्यक्ति के आवास के बीच 5 कि. मी. की दूरी तक प्रति व्यक्ति शुल्क में शामिल किया जाता है। +","unke case men, ise bima chikitsa vyavsayi ke klinik aur bimakrit vyakti ke aavas ke bich 5 ki mi ki doori tak prti vyakti shulk men shamil kiya jata hai. +",8,4 +"Which (that Book with Allah) none can touch but the purified (i. e. the angels). +","इसको बस वही लोग छूते हैं जो पाक हैं +","isko bas vahi log chhoote hain jo pak hain +",8,4 +"Nor is it the speech of a soothsayer—little do you take heed. +","और न किसी काहिन की (ख्याली) बात है तुम लोग तो बहुत कम ग़ौर करते हो +","aur n kisi soothsayer ki khyali bat hai tum log to bahut kam aur karte ho +",7,4 +"The Council has 28 members - 20 from the newspaper world, five are Members of Parliament three nominated by the Speaker of the Lok Sabha and two by the Chairman of the Rajya Sabha and remaining three are nominated by the Sahitya Akademi, the Bar Council of India and the University Grants Commission. +","परिषद में 28 सदस्य होते है-20 समाचार जगत से, पॉँच संसद-सदस्य तीन को लोकसभा के अध्यक्ष और दो को राज्यसभा के सभापति नामजद करते है और शेष तीन का नामांकन साहित्य अकादमी, भारत के बार कौसिल और विश्विलय अनुदान आयोग द्वारा किया ताजा है। +","parishad men 28 sadasy hote hai-20 newspaper world se, pnch snsad-sadasy tin ko lokasbha ke adhyaksh aur do ko rajyasbha ke sabhapti namajad karte hai aur shesh tin ka namankan sahity akadmi, bharat ke bar kausil aur vishvilay anudan aayog dvara kiya taja hai. +",7,3 +"Auto Generate Assoc Accessors (Java) +","एसॉक एक्सेसर्स स्वचालित जनरेट करें (जावा) +","auto accessors svchalit janret karen java +",7,2 +"India is grateful for Tanzania’s support to India’s claim for permanent membership of the UN Security Council. +","भारत, संयुक्त राष्ट्र सुरक्षा परिषद की स्थायी सदस्यता की हमारी दावेदारी के प्रति तंजानिया के समर्थन के॒ लिए आभारी है। +","bharat, snyukt rashtr suraksha claim for permanent sadasyta ki hamari davedari ke prti tnjaniya ke samarthan ke lie aabhari hai. +",8,1 +"and there go round them youths, their own, as if they were hidden pearls. +","(और ख़िदमत के लिए) नौजवान लड़के उनके आस पास चक्कर लगाया करेंगे वह (हुस्न व जमाल में) गोया एहतियात से रखे हुए मोती हैं +","aur idamat ke lie naujvan larke unke aas pas chakkar lagaya karenge vah husn v jamal men goya ehtiyat se rakhe hue moti hain +",5,8 +"He said, “This is my staff; I support myself on it, and I knock down leaves for my sheep with it, and there are other uses for me in it. ” +","उसने कहा, ""यह मेरी लाठी है। मैं इसपर टेक लगाता हूँ और इससे अपनी बकरियों के लिए पत्ते झाड़ता हूँ और इससे मेरी दूसरी ज़रूरतें भी पूरी होती है।"" +","usne kaha, yah meri lathi hai. main isapar tek lagata hoon aur isse apni bakriyon ke lie patte jharta hoon aur isse meri doosri zaroorten bhi poori hoti hai. +",10,0 +"57. Sam Sand dunes are a gift of nature to man. +","57. सम रेत के टीले मानव को प्रकृति का सर्वोत्तम उपहार है। +","57 sam ret ke dunes man ko prkriti ka sarvottam uphar nature +",5,5 +"Pro tempore appointment means an appointment carrying a definite rate of pay sanctioned for a limited time only. +","अल्पकालीन नियुक्ति का अर्थ उस नियुक्ति से होता है, जिसमें मात्र एक निश्चित समयावधि के लिए ही निश्चित दर से वेतन स्वीकृत होता है। +","pro rate of pay us niyukti se hota hai, jismen matr ek definite rate ke lie hi nishchit dar se pay sanctioned hota hai. +",6,3 +"Together, we shall take India into the 21st century as a strong, self - confident, and prosperous nation. +","हम सब मिलकर सशक्त, आत्मविश्वास और समृद्ध राष्ट्र के रुप में भारत का 21वीं शताब्दि में पदार्पण कराएंगे। +","ham sab milakar strong , confident aur prosperous nation ke rup men india ka 21vin century men padarpan karaenge. +",9,2 +"Proceed to a shadow rising in three columns: +","(धुएँ के) साये की तरफ़ चलो जिसके तीन हिस्से हैं +","proceed ke saye ki taraf chalo jiske tin hisse hain +",6,2 +"When Rano reached Kak at the dead of night, Natar tried to dissuade him from going up to Mumai 's chamber telling him that Mumal had taken another lover. +","जब आधी रात के समय, राणो काकमहल पहुँचा तो नातर ने उसे मूमल के कक्ष में यह कहकर जाने से मना किया कि मुमल अब और किसी से प्रेम करती है। +","jab aadhi night ke samay , rano kak pahuncha to natar ne use moomal ke chamber men yah kahakar jane se mana kiya ki mumal ab aur kisi se lover karti dead +",5,4 +"In order to measure blood pressure the cuff is wound round the upper arm and the stethoscope is put below the cuff, over the artery, to hear the pulsation of blood passing through it. +","रक्तदाब या रक्तचाप मापने के लिए कफ को ऊपरी बाजू पर लपेट दिया जाता है और स्टैथोस्कोप उसके नीचे, धमनी के ऊपर रखा जाता है जिससे, उससे होकर गुजरने वाले रक्त के स्पंदन को सुना जा सके। +","pressure ya raktchap mapne ke lie cuff ko upper arm par lapet diya jata hai aur staithoskop uske niche , artery ke oopar rakha jata hai order , usse hokar passing vale blood ke pulsation ko suna ja sake. +",7,1 +"- Leonardo da Vinci (1452 - 1519), Italian Artist, Composer and Scientist - +","लेओनार्दो दा विंची (१४५२-१५१९), इतालवी कलाकार, संगीतकार एवं वैज्ञानिक +","leonardo da vinchi १४५२-१५१९, italian artist, composer and scientist +",8,4 +"But man wishes to do wrong (even) in the time in front of him. +","बल्कि मनुष्य चाहता है कि अपने आगे ढिठाई करता रहे +","balki man wishes hai ki apne front dhithaee karta rahe +",6,2 +"Setting up of EIL - R & D Centre to support National Laboratories +","राष्ट्रीय प्रयोगशालाओं के सहयोग के लिए र्इ. आर्इ. एल.-आर. एण्ड डी. सेन्टर की स्थापना। +","national laboratories ke centre ke lie ri aari el-aar end r sentar ki sthapna. +",4,3 +"And now we can just unwind this. +","और अब हम सिर्फ यह खोलना कर सकते हैं। +","aur ab ham sirph yah kholna kar sakte hain. +",5,8 +"Indeed in that are signs, and indeed, We are ever testing [Our servants]. +","इसमें शक नहीं कि हसमें (हमारी क़ुदरत की) बहुत सी निशानियाँ हैं और हमको तो बस उनका इम्तिहान लेना मंज़ूर था +","ismen shak nahin ki hasmen hmari udarat ki bahut si signs hain aur hamko to bas unka imtihan lena mnzoor tha +",7,1 +"I implicitly want to use log and exponential rules to do it. +","मैं संकेत भी यह करने के लिए लॉग इन करें और घातीय नियम उपयोग करना चाहते हैं। +","i snket bhi yah karne ke lie log in karen aur exponential rules upyog karna chahte hain. +",5,5 +"And most of them believe not in Allah without associating (other as partners) with Him! +","इनमें अधिकतर लोग अल्लाह को मानते भी है तो इस तरह कि वे साझी भी ठहराते है +","inmen adhikatar log allah ko mante bhi hai to is tarah ki ve sajhi bhi thahrate hai +",9,1 +"It provides the fundamental physics basis of nuclear energy development. +","यह मौलिक भौतिकी को न्यूक्लीय ऊर्जा विकास का आधार प्रदान करता है। +","yah fundamental physics ko nuclear energy development ka aadhar prdan karta hai. +",8,3 +"Please circulate deposit book to new members. +","जमा हुंडी नये लोगों को वितरित कर दो। +","deposit hundi naye logon ko vitrit kar do. +",8,1 +"On the passage from the Gate to the Central Hall from where the procession passes, red baize cloth is spread. +","जहाँ से शोभायात्रा गुजरती है अर्थात् मुख्य द्वार से केन्द्रीय कक्ष तक लाल कालीन बिछाया जाता है। +","jahan se procession passes hai arthat mukhy dvar se kendriy kaksh tak lal kalin bichhaya jata hai. +",8,1 +"But we know we're not perfect , and if you're not happy with what Social Services has done , you've got the right to complain about it . +","लेकिन हमें पता है हम परिपक्व नही हैं , और अगर आप सामाजिक सेवाएं के काम से नाराज हैं तो आपको शिकायत करने का अधिकार है | +","lekin hamen pata hai ham perfect nahi hain , aur agar aap social services ke kam se naraj hain to aapko shikayat karne ka adhikar hai +",10,0 +"A culture of prevention rather than a culture of reaction is required in the mining industry as a value-driven commitment towards zero tolerance to such incidents. +","ऐसी दुर्घटनाओं को बिलकुल सहन न करने की मूल्य प्रेरित प्रतिबद्धता के रूप में,खनन उद्योग में प्रतिक्रिया की संस्कृति के बजाय बचाव की संस्कृति की आवश्यकता है। +","aesi durghatnaon ko bilkul sahan n karne ki mooly prerit prtibaddhta ke roop men,mining industry men culture of reaction ke bajay culture of prevention ki aavashyakta hai. +",7,2 +"ODD (2) returns 3 +","ODD (2) का परिणाम होगा 3 +","ODD 2 ka returns hoga odd +",5,3 +"The tax paid by companies on their profits / capital gains. +","कंपनियों द्वारा उनके द्वारा कमाए गए लाभ/पूंजी लाभ पर दिया जाने वाला कर। +","tax dvara unke dvara kamae ge labhpoonji profits par diya jane vala kar. +",7,4 +"And We have not created the heaven and the earth and all that is between them without purpose; this is what the disbelievers assume; therefore ruin is for the disbelievers, by the fire. +","हमने आकाश और धरती को और जो कुछ उनके बीच है, व्यर्थ नहीं पैदा किया। यह तो उन लोगों का गुमान है जिन्होंने इनकार किया। अतः आग में झोंके जाने के कारण इनकार करनेवालों की बड़ी दुर्गति है +","hamne heaven aur earth ko aur jo kuchh unke bich hai , vyarth nahin paida purpose yah to un logon ka guman hai jinhonne disbelievers purpose ata fire men jhonke jane ke karan disbelievers karnevalon ki bari durgti hai +",7,0 +"There is no state you are in, whether reading from the Qur 'an, or doing something else, but We are watching you as you are engaged in it. There is not the weight of an atom on the earth and in the heavens that is hidden from your Lord, nor is there anything smaller or greater than this but is recorded in the perspicuous Book. +","तुम जिस दशा में भी होते हो और क़ुरआन से जो कुछ भी पढ़ते हो और तुम लोग जो काम भी करते हो हम तुम्हें देख रहे होते है, जब तुम उसमें लगे होते हो। और तुम्हारे रब से कण भर भी कोई चीज़ छिपी नहीं है, न धरती में न आकाश में और न उससे छोटी और न बड़ी कोई त चीज़ ऐसी है जो एक स्पष्ट किताब में मौजूद न हो +","lord jis state men bhi hote ho aur qur se jo kuchh bhi pate ho aur lord log jo kam bhi karte ho ham tumhen dekh rahe hote hai , jab lord usmen lage hote ho. aur tumhare rab se atom bhar bhi koee something chhipi nahin hai , n earth men n aakash men aur n usse chhoti aur n bari koee weight something aesi hai jo ek perspicuous book men maujood n ho +",8,0 +"The chiefs of those who disbelieved among his people said: we behold thee except as a human being like us, and we behold not any follow thee except the meanest of us, by an immature opinion; nor We behold in you any exellency over us; nay! we deem you liars. +","इसपर उसकी क़ौम के सरदार, जिन्होंने इनकार किया था, कहने लगे, ""हमारी दृष्टि में तो तुम हमारे ही जैसे आदमी हो और हम देखते है कि बस कुछ ऐसे लोग ही तुम्हारे अनुयायी है जो पहली स्पष्ट में हमारे यहाँ के नीच है। हम अपने मुक़ाबले में तुममें कोई बड़ाई नहीं देखते, बल्कि हम तो तुम्हें झूठा समझते है।"" +","isapar uski aum ke sardar, jinhonne inkar kiya tha, kahne lage, hmari drishti men to tum hamare hi jaise aadmi ho aur ham dekhte hai ki bas kuchh aese log hi tumhare anuyayi hai jo pahli spasht men hamare yahan ke nich hai. ham apne muable men tummen koee baraee nahin dekhte, balki ham to deem you liars hai. +",3,5 +"Your God is the One God. But the hearts of those who do not believe in the Hereafter are steeped in rejection of the Truth, and they are given to arrogance. +","तुम्हारा पूज्य-प्रभु अकेला प्रभु-पूज्य है। किन्तु जो आख़िरत में विश्वास नहीं रखते, उनके दिलों को इनकार है। वे अपने आपको बड़ा समझ रहे है +","tumhara poojy-prbhu akela prbhu-poojy hai. kintu jo aairat men vishvas nahin rakhte, unke dilon ko inkar hai. ve apne aapko bara samajh rahe hai +",7,6 +"Thus a binary series of numbers would be transmitted. +","इस प्रकार दिवचर श्रेणी की संख्याओं को प्रेषित किया जा सकता हैं। +","is prkar binary series ki numbers ko preshit kiya ja sakta hain. +",9,0 +"Lahore gate is the main entrance +","लाहौर गेट इसका मुख्य प्रवेशद्वार है। +","lahaur get iska mukhy main entrance +",6,2 +"One of my predecessors left on my table a framed quotation which reads: +","मेरे एक पूर्ववर्ती ने मेरी मेज पर फ्रेम किया हुआ कथन छोड़ा जो इस प्रकार थाः +","mere ek predecessors ne meri mej par phrem kiya huaa kathan chhora jo is prkar thaa +",8,3 +"For 5to 6days Suddodhana arranged a programme for naming ceremony and appointed 8 brahmin pandits to tell about the future. +","सुधोधना ने पांचवें दिन एक नामकरण समारोह आयोजित किया और आठ ब्राह्मण विद्वानों को भविष्य पढ़ने के लिए आमंत्रित किया। +","suddodhana ne panchven din ek namakaran ceremony aayojit kiya aur aath brahmin vidvanon ko future pane ke lie aamntrit kiya. +",7,3 +"Handa is charged with using his connections in the Congress to influence the Delhi government . +","हांड़ा पर दिल्ली सरकार को प्रभावित करने के लिए कांग्रेस में अपने संबंधों के इस्तेमाल का आरोप है . +","handa par delhi government ko prbhavit karne ke lie congress men apne snbndhon ke istemal ka aarop hai +",9,1 +"So too the world picture is perceived only in the reflected light of the Self through the darkness of avidya ignorance. +","इसी तरह विश्व-चित्र भी केवल अविद्या अज्ञान के अंधकार के बीच आत्मा के प्रतिबंबित प्रकाश में ही दिखाई पड़ता है। +","isi tarah vishv-chitr bhi avidya ignorance ajnjan ke andhkar ke bich aatma ke prtibnbit prkash men hi dikhaee parta hai. +",6,7 +"While the US urged India to begin a process of negotiation with the Kashmiri leadership, Clinton made it clear to General Pervez Musharraf that the US expected him to rein in the terrorists Pakistan was arming and training. +","जहां अमेरिका ने भारत से कश्मीरी नेतृत्व के साथ बातचीत की प्रक्रिया शुरू करने का अनुरोध किया, वहीं इंक्लटन ने परवेज़ मुशर्रफ से साफ कहा कि वे उन आतंकवादियों पर लगाम लगाएं, जिन्हें पाकिस्तान हथियार और प्रशिक्षण दे रहा है. +","jahan general ne india se kashmiri leadership ke sath negotiation ki process shuroo karne ka anurodh kiya , vahin clinton ne pervez musharraph se clear kaha ki ve un terrorists par lagam lagaen , jinhen pakistan hathiyar aur training de raha hai +",8,3 +"virtual tor of Taj mahal in Internet. +","ताजमहल का इंटरनेट पर वर्चुअल टूर +","taj ka internet par virtual tor +",9,0 +"Ripe plantains, some sweets and other ingredients of worship are also put in the donga filled with rice. +","जिस डोंगे में चावल भरा होता है, उसमें पके केले, कुछ मिष्ठान और पूजा-सामग्री भी रख दी जाती है। +","jis donge filled with rice hota hai, usmen pake kele, kuchh mishthan aur pooja-samagri bhi rakh di jati hai. +",8,0 +"They could not make the company earn a rupee in profit even when its line of credit with the bank was open. +","ये ही वे लोग हैं जो तब भी कंपनी को एक भी पैसे का मुनाफा नहीं कमा कर दे सके जब उसे बैंक से ऋण मिलता था. +","ye hi ve log hain jo tab bhi company ko ek bhi rupee ka profit nahin line kar de sake jab use credit se rin open tha +",7,3 +"I shall not , however , attempt to infer that these murders must have been previously sanctioned by the prisoner ; mere inference on such a point cannot be accepted in a court of justice . +","बहरहाल , मैं यह अनुमान नहीं लगाना चाहता था कि बंदी ने पहले ही इन हत्याओं को मंजूरी दी थी या नहीं , क्योंकि न्याय की अदालत में सिर्फ ऐसे अनुमान को स्वीकार नहीं किया +","baharhal , main yah inference nahin lagana chahta tha ki prisoner ne pahle hi in attempt ko mnjoori di thi ya nahin , kyonki justice ki court men sirph aese inference ko svikar nahin kiya +",8,1 +"that God may distinguish the corrupt from the good, and place the corrupt one upon another, and so heap them up all together, and put them in Gehenna; those are the losers. +","ताकि अल्लाह नापाक को पाक से छाँटकर अलग करे और नापाकों को आपस में एक-दूसरे पर रखकर ढेर बनाए, फिर उसे जहन्नम में डाल दे। यही लोग घाटे में पड़नेवाले है +","taki allah napak ko pak se chhantakar alag kare aur napakon ko aapas men ek-doosre par rakhakar dher banae, phir use jahannam men dal de. yahi log ghate men parnevale hai +",4,7 +"No such interface ‘% s' +","कोई अंतरफलक ‘% s 'नहीं +","koee interface s nhin +",8,0 +"Saccus endolymphaticus is also known as endolymphatic sac. +","अन्तरुदक कोश को अन्तः कर्णोदक कोश के रूप में भी जाना जाता है. +","antrudak sac ko anta endolymphatic sac ke roop men bhi jana jata hai +",7,1 +"Retrieving quota information for folder '% s' +","% s फ़ोल्डर के लिए के लिए कोटा प्राप्त कर रहा है +","s folder ke lie ke lie quota information kar raha hai +",4,5 +"The answer to this was ready in Satish 's mind. +","'>> इसका जवाब सतीश के मन में तैयार था। +","iska answer satish ke man men ready mind +",7,1 diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e687e19 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,18 @@ +# Use an official Python runtime as a parent image +FROM python:3.8 + +# Set the working directory to /app +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY . /app + +# Install any needed packages specified in requirements.txt +RUN pip install -r requirements.txt + +# Define environment variables +ENV FLASK_APP=app.py +ENV FLASK_RUN_HOST=0.0.0.0 + +# Run app.py when the container launches +CMD ["flask", "run"] \ No newline at end of file diff --git a/KNeighborsClassifier.pkl b/KNeighborsClassifier.pkl new file mode 100644 index 0000000..bcd2288 Binary files /dev/null and b/KNeighborsClassifier.pkl differ diff --git a/LinearSVC.pkl b/LinearSVC.pkl new file mode 100644 index 0000000..0ad9939 Binary files /dev/null and b/LinearSVC.pkl differ diff --git a/LogisticRegression.pkl b/LogisticRegression.pkl new file mode 100644 index 0000000..fb1cc8d Binary files /dev/null and b/LogisticRegression.pkl differ diff --git a/Model Training/LY_project_Grp_No_51_TFIDF.ipynb b/Model Training/LY_project_Grp_No_51_TFIDF.ipynb new file mode 100644 index 0000000..12e4c78 --- /dev/null +++ b/Model Training/LY_project_Grp_No_51_TFIDF.ipynb @@ -0,0 +1,1166 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "id": "BGQBf9kY70cO" + }, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'google.colab'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32mc:\\Aditya\\College Code\\VIPUL SIR\\Project\\Lasthope\\Model Training\\LY_project_Grp_No_51_TFIDF.ipynb Cell 1\u001b[0m line \u001b[0;36m2\n\u001b[0;32m 21\u001b[0m \u001b[39mfrom\u001b[39;00m \u001b[39msklearn\u001b[39;00m\u001b[39m.\u001b[39;00m\u001b[39mlinear_model\u001b[39;00m \u001b[39mimport\u001b[39;00m LogisticRegression, SGDClassifier\n\u001b[0;32m 22\u001b[0m \u001b[39mfrom\u001b[39;00m \u001b[39msklearn\u001b[39;00m\u001b[39m.\u001b[39;00m\u001b[39mneighbors\u001b[39;00m \u001b[39mimport\u001b[39;00m KNeighborsClassifier\n\u001b[1;32m---> 24\u001b[0m \u001b[39mfrom\u001b[39;00m \u001b[39mgoogle\u001b[39;00m\u001b[39m.\u001b[39;00m\u001b[39mcolab\u001b[39;00m \u001b[39mimport\u001b[39;00m files\n\u001b[0;32m 25\u001b[0m \u001b[39mfrom\u001b[39;00m \u001b[39mmatplotlib\u001b[39;00m \u001b[39mimport\u001b[39;00m pyplot \u001b[39mas\u001b[39;00m plt\n\u001b[0;32m 26\u001b[0m \u001b[39mimport\u001b[39;00m \u001b[39mpandas\u001b[39;00m \u001b[39mas\u001b[39;00m \u001b[39mpd\u001b[39;00m\n", + "\u001b[1;31mModuleNotFoundError\u001b[0m: No module named 'google.colab'" + ] + } + ], + "source": [ + "import numpy as np\n", + "import pandas as pd\n", + "import os\n", + "import seaborn as sns\n", + "\n", + "import re \n", + "import nltk \n", + "\n", + "from sklearn.feature_extraction.text import TfidfVectorizer, CountVectorizer, TfidfTransformer\n", + "from nltk import sent_tokenize, word_tokenize\n", + "from sklearn.metrics import f1_score, accuracy_score, precision_score, recall_score, make_scorer\n", + "\n", + "from sklearn.model_selection import train_test_split\n", + "from time import time\n", + "\n", + "import xgboost as xgb\n", + "from sklearn.naive_bayes import MultinomialNB\n", + "from sklearn.tree import DecisionTreeClassifier\n", + "from sklearn.svm import LinearSVC\n", + "from sklearn.ensemble import AdaBoostClassifier, RandomForestClassifier, BaggingClassifier\n", + "from sklearn.linear_model import LogisticRegression, SGDClassifier\n", + "from sklearn.neighbors import KNeighborsClassifier\n", + "\n", + "from google.colab import files\n", + "from matplotlib import pyplot as plt\n", + "import pandas as pd\n", + "import io\n", + "from sklearn.metrics import classification_report\n", + "import pickle" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 206 + }, + "id": "d6U1cXdm78Hv", + "outputId": "83053951-661a-4693-8f03-825c8b928cf7" + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
headlinelabel
0cock suck before you piss around on my work1
1you are gay or antisemmitian archangel white ...1
2fuck your filthy mother in the ass dry1
3get fuck ed up get fuck ed up got a drink t...1
4stupid peace of shit stop deleting my stuff ...1
\n", + "
" + ], + "text/plain": [ + " headline label\n", + "0 cock suck before you piss around on my work 1\n", + "1 you are gay or antisemmitian archangel white ... 1\n", + "2 fuck your filthy mother in the ass dry 1\n", + "3 get fuck ed up get fuck ed up got a drink t... 1\n", + "4 stupid peace of shit stop deleting my stuff ... 1" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#dataframe manipulation\n", + "def performDataFrameManipulation():\n", + " df = pd.read_csv('final_dataset_hinglish.csv')\n", + "\n", + " for index in df.index:\n", + " if df.loc[index,\"label\"]==-1:\n", + " df.loc[index,\"label\"]=1\n", + "\n", + " return df\n", + "\n", + "df=performDataFrameManipulation()\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 289 + }, + "id": "STFAMrOO78KZ", + "outputId": "e25a4bfe-c903-4b99-d70d-968d60729b2b" + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAnMAAAHKCAYAAABonc0uAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAACD0ElEQVR4nO3dd3hTZRsG8DujbdK9W6Ats+y9914yRWQpDpAhggMUUdzjE1AUFBBBkKUoKFPZW6ZsKHt2QAud6Uibfb4/YmNL00XTnqS9f9fVC5pzkjxp0+TOe97nPRKVSiWAiIiIiBySVOwCiIiIiOjxMcwREREROTCGOSIiIiIHxjBHRERE5MAY5oiIiIgcGMMcERERkQNjmCMiIiJyYAxzRERERA6MYY6IiIjIgTHMPab+/fvD29sb/fv3F7sUuxYTE4Np06ahWbNmCAoKgre3N7y9vfHLL7+IXVqpmjRpEry9vdGoUSOxSyEqE7NmzbL8fRM5Ikd+3ZYX9wqHDx/GwIEDLd/37dsXv/32W4HXmTVrFubMmQMAOHnyJGrXrl3cuyUHFBMTg65duyIpKanY1/3ll18wefLkEt1/aGgoIiIiSnQbJJ6crxsA8Pnnn2PKlCkFXqd///44evQoAgMDcePGjdIu0aYefW19XCqVquTFOAj+zKzT6/XYunUrNm/ejAsXLiAxMRE6nQ5ubm6oUqUKateujRYtWqBr164OGVwor2KHuUft3LkTZ86cQYsWLWxRD5Ujc+fORVJSEmQyGd5//3106NAB7u7uAIDKlSuLXB05mvnz52PMmDFwc3MTuxQim8keyZwxYwbefffdEt/e7du38fzzz+Py5ct5tqWmpiI1NRVXrlzB5s2bAXCApbwocZgDzJ+YN23aZIubonLk4MGDAMyjJVOnTi3Wdfv3749mzZpZ3fbgwQM89dRTAIB+/frh/ffft7qfs7Nzse7TlhYvXozFixeLdv/lUWJiIn744Qe8+eabYpdSKpo3b45jx47lu719+/YAgGbNmmHRokVlVVaRvfvuuzYJI8Xh6D8zW0tJScHAgQMRGxsLAGjXrh1GjBiBunXrwtXVFWlpabh+/TqOHTuGPXv2IC0tTeSKyVZKFOb8/PyQlJSEAwcO4OjRo+jQoYOt6qJyIC4uDgAQHh5e7OsWNPcm58iMl5cX6tev/1j1kePIfq1ZsGABxo0bBy8vL7FLsjk3N7ciPZddXV35nP8Xf2a5zZs3zxLkpk+fjvfeey/PPh07dsRLL70EjUaDP/74A56enmVdJpWCEjVAjB8/Hq6urgCA//3vfzYpiMoPnU4HAJDLbTIATBXYG2+8AcA8t2nhwoXiFkNkp7Zt2wYACAwMxDvvvFPgvgqFAqNHj0ZwcHBZlEalrERhLjAwEBMmTAAAHDt2DPv373+s2ylqZ+gvv/xiGbGJiorKs71Ro0bw9vbGpEmTAADnz5/H+PHj0aBBAwQHB6NZs2aYOXNmngn5//zzD1544QU0bNgQQUFBaNq0KT766COkp6cX+THcvn0bU6dORZMmTRAcHIzw8HCMGjUKhw4dKtL109PT8d133+GJJ55ArVq1EBAQgPDwcAwdOhRr166F0WjM97qPPu4LFy5gypQpllq8vb0fa4KvXq/HypUrMXjwYISHhyMgIAC1atXCoEGD8NNPP0Gv1+e5Ts7fUbY5c+ZYLivLDuDHqf/kyZPw8/Oz1GkymfK97S5dusDb2xvBwcF55qcUtSsqMzMTP/zwA4YMGYK6desiMDAQVapUQfv27fH6669j3759EAShyI/56NGjlp/zkiVLCt3/999/t+y/ffv2XNtMJhN+/fVXDBs2DHXr1kVAQABCQ0PRtGlTPPHEE/jf//6Hc+fOFbm2kujTpw9atWoFAPjhhx+QnJxcotu7d+8e3n//fbRv3x5hYWEIDg5G48aN8fLLL+Off/4p8LqP/r3dunULU6dORePGjREUFISaNWti+PDhRf7btyVBELBx40aMHDnS8jurXr06evfujW+//RZqtTrPdSIjIxEaGgpvb2+0atUKmZmZ+d7+yJEj4e3tDR8fnzyv90XtZtXr9fj5558xatQoNGjQAEFBQahUqRJatmyJCRMmYMuWLVb/NkvT5cuX8dZbb6FNmzYIDQ1FpUqV0KxZM0yZMgUXL160ep233nrL8nhXr16d722fPn0a/v7+8Pb2Rr9+/SyvKdnPo2yPvk7mfI4V1b179wAAYWFhkMlkxbruo06dOoXPP/8c/fv3R+3atS1//23atMG0adNw7dq1Aq//6Gvgw4cP8f7776NFixaoVKkS6tWrhxdffBFXr17Ndb2oqCi8/fbbaNGiheW9dPz48bh7926+9/Xocy8tLQ2zZ89G+/btERISgrCwMPTp0werV6/O9zW9OEryfg0AR44cwYQJE9C0aVNUqlQJwcHBaNiwIbp27Yrp06djx44dxXrdBwCoVCqhOF9//vmnAEAAIHzzzTfC3bt3BU9PTwGA0KJFC6vXmTFjhuU6J0+ezLO9Q4cOAgChQ4cOBd73okWLLLdz4cKFPNtDQ0MFAMKoUaOEH374QXB2drbsn/OrVq1awvXr1wWVSiV89tlngkQisbpfkyZNhHv37lmtJWfNv//+u+Du7m71NgAIb731VoGPa9u2bUJAQEC+1wcgtG7dWrh165bV6+d83PPnzxecnJzyXD8yMrJYv+dLly4J9evXL7CmunXrChEREfn+jvL7Kuz3XNjXhQsXLLc1atQom9avUqmEd99917LPhx9+aPX2X3vtNcs+s2fPzrN91KhRAgAhNDS0wN97UFBQoT8va8/1/L5SUlIsz4eWLVsWun/v3r0FAIKvr6+QkJBgufzevXtCx44dC62tKPfxuF+Pvm5s3rzZ8v1rr71W4N9lYGBgvrf7448/CgqFosDHNWHCBCE5ObnQv7eff/5ZcHNzy/d2vvzyS5v9PAr7+4mMjLQ8/vy+KleuLPz99995rrt48WLLPi+++KLV2587d65ln1deeaXA31d+j+H48eNCzZo1C31e/fnnn2XyM0tJSRHeeOMNQSqV5luLRCIRZs6cmee6cXFxQt26dQUAgpubm3D27Nk8+8TExAjVq1cXAAheXl65Xm+yn0cFfeX3+pbfV/Z78aN/z8X9KsrruEwmE+bOnZvvbeR8DTx8+HC+r3Vubm7Cjh07BJVKJWzZssXyGB798vb2Fo4fP17oa8WFCxeEGjVq5Ft3t27dhLi4uEJrzu9xlfT9esqUKYX+bAEIDx48KNbvrMTHv3x8fDBp0iTMmTMHZ86cwfbt29GvX7+S3myJXLp0CRs2bECNGjUwZcoUNGjQAOnp6fj555+xfv163Lp1Cx988AEGDBiADz74AK1atcKECRMQHh6OpKQkLFmyBLt378aFCxcwd+5cfPzxx/ne14MHDzBu3DhIJBLMnDkTnTt3hlwux4kTJzB//nwkJiZi7ty5qFy5MsaOHZvn+qdOncKQIUOg0+ng6+uL8ePHo0mTJqhcuTKSkpKwbds2rFq1CidPnsSzzz6Lv/76C05OTlZrOXfuHNavX49KlSphypQpaNGiBQRBwMmTJ4vVDKBWqzF48GDcvn0bANCrVy+88MILCAkJwf3797F69Wrs2rUL165dw8CBA3H48GF4eHgAyN24kD35+KWXXsJLL71kuf3sQ/OlpST1A+ZP3AcOHMCJEycwa9YsdOvWLVczxqFDhyyH+nr16oWJEycWu8YTJ07gySefhF6vh1QqxdChQzFgwABUrVoVer0et27dwoEDByyHTYpKIpFg2LBh+Oabb3D69GncvXsX1atXt7pvYmKiZXRlyJAhuZ5Xc+bMwZEjRyyPcfjw4QgNDYVSqURSUhIuX76MPXv2QKPRFPuxP66uXbuiQ4cOOHr0KJYtW4bJkycjKCioWLexd+9eTJgwAYIgQKlUYtKkSejZsydcXFxw7tw5zJ8/H/fu3cPSpUuhUCjw6aef5ntbV65cwaZNm+Dv728ZcZDJZDh69Cjmzp2LtLQ0vPfee+jatWupdwsajUaMGjUKx48fBwC0bt0aEydORM2aNZGYmIjff/8d69atQ2xsLAYNGoSjR4+iSpUqluuPGjUKe/bswcaNG7Fy5Ur06tUr1wj69evX8cEHHwAAGjZsiI8++qjYNd6+fRt9+vSxTLrv06cPnn76adSsWROCICAyMhKHDx+2dFmWhRkzZmDp0qUAgJYtW+K5555D9erV4enpiWvXrmHZsmU4ffo0vvjiC/j4+GD8+PGW6yqVSvz444/o2bMn1Go1xo0bh127duX6O3r77bctI0rz5s1DaGioZdumTZug0+nyfZ0EUOgo56MaN26MI0eOIDk5Ge+88w5mzZr1WI1gRqPRMpLYvn171KxZE66urnjw4AEuXLiAJUuWICkpCdOnT0d4eDi6dOmS721lZWVh9OjR0Ol0+PDDD9GhQwfIZDLs3bsX33zzDdRqNSZOnIjNmzdj9OjR8PT0xMyZM9GyZUsYDAZs3boVixcvhkqlwquvvoq9e/cWWPuYMWMQGRmJ559/HkOGDIGPjw+uXbuGhQsX4tKlSzhw4AAmT56Mn376qdg/l5K+X+/atcvy3lG/fn2MGTMGderUgbe3N9LT03Hjxg38/fff2LVrV7FrQ3ET+6MjcyqVSoiOjhZ8fHwEAELDhg2FlJSUfFNzWYzMARDatGkjxMbG5tln8ODBlk8VPj4+wqBBg4SkpKRc+yQlJQmtWrWyfMJJTEzMt2YAgqenp3Ds2LE8+1y8eNHyacTDw0O4c+dOru0JCQlC1apVBQBCx44dhZiYGKuPe926dZZPjt99912Bj7tu3brC3bt3H/sTmUqlEl5//fUCP4GrVLlHpvLbJ3v7jBkzSlTPo1+FjczZov4LFy5YPiHWrFlTuH//vqBSqYS7d+8KlStXFgAIAQEBwo0bN6zefkGf8B4+fCiEhIQIAASFQiFs3Lgx38d6586dfD9F5vd14sQJy2N79913893vyy+/tOy3a9euXNuy6xs4cGCB9/Xoc9qWX9ZeN3bs2GG5bMKECXmuU9DIXEJCglClShUBgKBUKoU9e/ZYfTy1a9cWAAhSqdTqKFbOv7dGjRpZHfX+66+/LPtMmjTJJj+P7Nuz9jr59ddfW7YPGjTI6qhizpG1AQMG5NkeGRlp+b37+voK165dE1QqlRAfHy80bNjQ8nM7ceJEob8va9tbtGhhGelatGhRvo/z3r17xT6S8Dg/s5wjvXPmzLF6/aSkJOHpp5+2vIZbq+t///uf5XamTZtmuXzFihWWy0eOHFlojbZ4nVyzZk2u0Z2AgADh+eefFxYtWiQcP34839HmR7+uXLli9f0z+ysqKkpo0KCBAEBo166d1X2yXwMBCH5+fsK5c+fy7PPVV19Z9vH39xdq1qxpdUQr5+v1oUOHCnzuARAWL16cZ5/4+PhcRxs2bdqUb83WXrdt8X49YsQIy+3nd9RPpTL/LT6aowr7sskZIDw9PfHaa68BMI+KleUnK2skEgm+++47qyNA2Z98jEYjtFotvv322zxzC2QyGV544QUAQHJycqFzA9566y2rnVJhYWGWUb309HT8+uuvubZv3LgRUVFRcHJywtKlS3ONDuXUp08fDBo0CAAKPXPC3Llz4ePjU+A+BdHpdFi1ahUAoHr16vjkk0+s7vfhhx9aulR//vlnZGVlPfZ92pKt6q9atSrmzp0LwDyikD2Z+PXXX7d0iy1cuBCBgYHFrnHdunWWuS3vvPMOunfvnu++vr6+UCqVxbr9unXronHjxgDMc+Lys379egDmx9qmTZtc2x4+fAgAhXao+/r6Fqu2kmrXrh169OgBAFi1apXl51gU27Ztw/379wEAr776qmUOXk6+vr6YP38+APOcwWXLlhV4m4sWLbI6etKxY0e0bNkSgHkeY2n78ccfAZhfi7/77jtIpXlf2seNG4fOnTsDALZv346YmJhc2729vbF06VJIpVIkJydj0qRJEAQBn3zyCS5dugQA+Oyzz1C3bt1i13fw4EGcOXMGgHnk5Nlnn813X3d39zI5i8S8efMAAL179853dF0mk2Hu3LlwcXFBeno6tmzZkmefV155xfI3PH/+fBw9ehT37t2zNO1Uq1YNX331Vek8iEcMHDgQ7733HiQSCQAgISEBq1evxuTJk9GuXTtUq1YNw4YNw5o1awp8za5cuXKBR1C8vLwwc+ZMAMDx48cLncP63nvvWT1CMHr0aCgUCgDmIwVz5syBv79/nv1yHtXKHn3OT+/evTFq1Kg8lzs7O2PhwoWW9/vsEdmissX7dXx8PACgSZMmljVXrfH29rb8DovKZqfzmjhxouWNbdasWYVOACxNDRo0QJ06daxuyzkhvWvXrvkGn4YNG1r+HxkZme99SSSSAl+YhgwZYllKI3vdtWzZE85bt25d6CK62UPxZ8+ehcFgsLpPSEgIOnbsWODtFObcuXNQ/dssMWrUqHwP6crlcsvjTktLw+nTp0t0v7Ziy/qHDx+O4cOHAwDWrFmD8ePHY+vWrQDMndx9+vR5rBp37twJAHBxcbF66N0Wsuu+desWzp49m2f73bt3LY952LBhebZnd7ht2rSpwAnxYsheV1Cr1RbrTfLAgQOW/z///PP57te+fXvLYdGc13lU/fr1LaHZmuxD8wW9ftjCgwcPLB84Bw0aVGAQevHFFwGYg+rff/+dZ3v79u0xbdo0AObHPm7cOHz//fcAzG9S48aNe6was5/zgDn8iC0tLc0yjWDw4MEF7uvt7Y169eoBMDdIPUoikeD777+Hn58fTCYTJk6ciPHjxyM1NRVyuRw//vhjvm/8pWH69Ok4cOAAhg4dmieQpaWlYc+ePXj11VfRsmXLAp/fOanVakRFReHq1au4cuUKrly5kuu1taAz7UgkEgwZMsTqNqVSiRo1agAw/5yzP6g9qlq1apafYWF/TwW9H1erVs3yHnn48OFiNUPY4v06+3X12LFjBTZ0PA6bhTlXV1fLwrA3btzAunXrbHXTxVarVq18t+Vcn6qg/XK+IGZkZOS7X9WqVeHn55fvdoVCgQYNGgBAno7H7E7AnB2I+X29/fbbAMydYCkpKVbvK/t+SiJnZ5G1kYucskceAPP8IXtg6/rnzp2LsLAwAP+NctWrVw+fffbZY9eY3R3XsGHDUlvj6emnn7Z8As0egcsp59/niBEj8mx/5plnAJg7vZs0aYK33noLW7ZssYzYialZs2aW+Vy//PJLkV8Us58blSpVQkhISIH7Zj83YmJi8u1qL2weXPZryKOvH2q12vKGaO2ruJ2cOZ+7tnjOv/POO5Yz+mzYsAGCICAoKKhEi+5euHABACwd5WK7ePGiZcBh8uTJhb7+nj9/HsB/IyuPCg4OxoIFCwCYO0qzR4/efvvtQn8npaFp06ZYvnw57ty5g23btuGzzz7D0KFDUalSJcs+9+/fx7Bhw/Ltuk5KSsKnn36Kli1bIiQkBE2aNEG7du3Qvn17tG/f3vKBEUCBI3N+fn4FHi3Kfk+uUaNGgaNR2fsV9H4MoNCzUWVvz8jIKNYHLVu8X2ePGCYnJ6Ndu3YYM2YM1qxZg5s3bxa5jvzYLMwB5qHQ7Em1X375ZZm3l2cr6LBUzsMPBe2X80lV0ChjQEBAofVk7/PoEz4xMbHQ61qT30iJLRZSzfnEszbcnVPOyef5BcyyZuv6PT098cUXX+S6bMmSJZZDA48j+/de3Mn7xREcHGw5pLZx48Y8z+HsYNqsWTOrizpPnz4dL774IiQSCRISErBs2TK88MILqFOnDlq1aoWPPvoI0dHRpVZ/YWbOnAmJRAKDwYBZs2YV6TrZv+PCnhdA0Z4bhR3+zn6tefTT/9mzZy1viNa+sg/jF5Wtn/NyudxyCDLbN998U6SfW36yl4Mqzed8cdj6tRcwn40mZ/Nf06ZNRT9biUKhQIcOHfDqq69i+fLlltN4ZY80GgwGvPnmm3mWwTh//jxatWqFb775Brdu3Sp0mYyCDtkW9e+ksP2y35MLO+pX2Htyzu3FWeLIFs+Zzp07Y968eXBzc4NGo8GmTZssUz5q166NV155pdClkfJj09VcXVxc8NZbb2Hq1KmIjIzEzz//jDFjxtjyLuxOcY9r55T9pOzSpUuR35CA/M9rWtJ1hR5VksdmD2xRvyAIeeZWHDhwoMDDa/Zi+PDhOHDgAOLj43Ho0CHLvJ4zZ85YOn2tHWIFzG/o8+fPx+TJk/HHH3/g8OHDOHv2LDQaDW7evIlvv/0WixcvxldffWWZX1qWGjRogKeeegobNmzAH3/8gTfffDPfqRWPcvTndUFs9dh++OGHXN/v37+/zNaHLAs5A8GcOXPQqVOnIl2voHlkN27cyHXY8vbt24iJiUG1atUeu05bk0gk6Nq1KzZt2oR27dohJSUFt27dQkREhOU1TafT4cUXX0RycjKcnJwwYcIE9OvXD7Vq1YK3tzdcXFwAmA93Nm3aFACKvyZaKSqtv29bvV+PGTMGgwYNwoYNGyyrJqSkpCA+Ph5r167F2rVr8dxzz+Hbb7+1Ovc1PzZfmn/06NH49ttvERkZiblz51oO1xQkv0+wj7K3uTtA/sPuOSUkJADIO1ncz88PsbGx0Gq1dnOqmZzD4dl15yfnIbeSNF3Ykq3rX7BggWVukaenJ9LS0vC///0PXbt2RZMmTR6rRj8/P9y/f7/UD1kOHDgQb775JjIzM7F+/XpLmMs+7CqTyfD0008XeBvh4eGWc25qtVqcOnUKmzdvxpo1a6DVajF16lQ0a9ZMlHD77rvvYvPmzTAajfjiiy8sjS/5yf4dF/a8AEr3ud2pUyfLvE5bsPVzfsuWLVi7di2A/57zy5cvR+/evR97nmj2VBR7OEwPINfUGKVSWeLXX51Oh3HjxiErKwsKhQImkwnp6ekYP348du7cafMP2iUVHByM3r17W6Zb3Llzx/I3/Pfff1sOP3799df5zi+1l6Mxj4qPjy9wGkXOv5HiNHDZ8v3az88PEyZMsCyTdOXKFWzfvh0//vgj4uPjsWbNGjRo0AAvv/xykW/TpodZAcDJyclyvPj+/ftFWsslu6sjNTW1wP1u3LhR8gJtLCoqKs8ZJXLSarWWuXKPPgGymzEuXLhgN0E1e/gdQKFNDdndaUDexyYWW9Z/8eJFfP755wDM8yz27dsHd3d36HQ6jB8//rE7eLNDYERERKme6Nrd3d1y2Gfbtm3IysqC0WjExo0bAZgbgIrTjevi4oKOHTti7ty5lvlTJpPJ0hRS1mrVqmWZ77d169Z8V+rPlv3ciIuLs3S15if7uREaGlqmk9cfhy2f8/fv38frr78OwNyNf/jwYcvIwpQpU4r04dWa7Od8QkKCTeYHlVTDhg0tIziFdUcWxeeff255/n3yySeWc6KeOnUKc+bMKfHtl4ac8+dyjmblnHecX+MCgDI7+0tx5XyOW5PdEObm5oaqVasW+XZL6/1aIpGgQYMGmD59Onbv3m0Z+SzuqiA2D3OAeUJ19uTgefPmFfqmlz0MfevWrXzf3LRaLf7880+b1mkLgiBYPsVas2nTJsspdLp27ZprW/Zhi6ysLKxYsaLUaiyOZs2aWSZur1u3Lt/OWYPBYGm79vT0zDWxWky2qj8rKwvjx4+HTqeDu7s7fvzxR4SHh2P27NkAzB8ssrsqi6tv374AzJ/mly9f/li3UVTZk5TT09Oxfft2HDhwwPLJNOcE5uLKuUhoQR9mStuMGTPg5OQEQRAKPT90t27dLP//+eef893vxIkTuH79ep7r2KtKlSpZlgv5888/C/xQnD16KZVKLXMqswmCgEmTJkGlUkEmk2Hp0qWoWrUqFi9ebJk7OWXKlMeq8YknnrD8P7s7Vkz+/v6W5Xi2bNlS7HmKOf3999+WhWB79uyJCRMm4NVXX7V0TX799dcFzoPKnn+bfS7rkijO4c6cYSxnqMl5CDq/0GIymQodCRdLQe/HUVFROHz4MADzCHlxRkzL4v26WrVqljxU3NfVUglzMpnMsi5X9nHggmSvZaXT6bB48eI82wVBwPTp0/HgwQPbF2sDX331ldW16O7du2dZ58zd3T3PIeeRI0daVgT/7LPPsG/fvgLvJyIiAjt27LBR1dY5Oztb5kDdunUr3zfI//3vf5aR0tGjRxd7LbTSYqv6P/jgA8sb+qxZsyzt86NHj7YsZbB8+fJcSy4U1YgRIyyNQnPmzCnwnMbJycklWsOve/fulgm/69evtxxidXV1zXcOVEpKCrZv317gG0POmq19us3u6irs3LQlVbVqVTz33HMAYDmrR3769+9v+bl/9913lg7FnFQqlWV9MIlE8thLcZS17DMTqFQqqxPaAWDFihWW5ZH69euX62wEQO4pBdOmTUPbtm0BmIN7dojbvXt3sdfnyr6N7KVaVq5cWeB7glqttulh6PxMnz4dgDmwPPfccwW+eRqNRqxbty7PiK5KpcKkSZNgMpng7++P77//HhKJBFKpFEuWLIG3tzeMRiMmTpyYb1d0dlOILZaq6NevH3777TdotdoC91u9erWlizUsLCzXlJHs1zog/2D0ySefWDqU7c2uXbusdvDrdDq89tprlrCa82weRWGL9+uNGzcWOKoXGRmJO3fuALD+uloQm8+ZyzZkyBB8/fXXuHz5cqFdIH369EHVqlURFRWF2bNnIzk5GYMHD4arqytu3ryJn376CcePH0fbtm1x4sSJ0ir5sdSsWRMJCQno3bs3XnvtNUva/+effzB//nzLKMhHH32U5/i8s7MzVq1ahX79+kGj0WDYsGEYNGgQBg0ahGrVqlk+DV+4cAE7d+7EmTNnMGXKlFyfckvD9OnT8ddff+H27duYN28erl69iueffx6VK1dGbGwsVq9ebQkx1apVw7vvvluq9RRXSevftWuXZbHYgQMHWsJCtvnz5+P06dO4f/8+pkyZgmPHjhX7cOXSpUsxePBgaDQaPP3003j66acxcOBAhIaGwmAw4M6dOzhw4AC2bt2KY8eOFfsPO5tcLseQIUOwdOlS7N+/33Jqn/79++e7aGVaWhqeeeYZhISEYODAgWjZsiXCwsLg5OSEhIQE7Nu3z/LJ1MPDo0QjfLbw1ltvYe3atdBoNAW+ITs5OeHbb7/FsGHDoFar0b9/f0yaNAk9evTIdTqv7MV0X331VYdodAHM68f98ccfOH78OP744w/cv38fEyZMQPXq1ZGUlIQ//vgDv/32GwBz0H700N+FCxcsUwpatmyJGTNm5Nr+wQcf4ODBg4iIiMBHH32Ezp07F3vx4KVLl6J79+5IT0/HK6+8gq1bt+Y6nVd0dDSOHDmCDRs2YPXq1UVuSnhcPXr0wJQpU7Bw4UKcOXMGrVu3xpgxY9ChQwf4+fkhKysLUVFROHnyJP788088fPgQx44dy3UatDfeeMMS8BYsWJDrdaBKlSqYN2+e5fRS06dPz9NYAgBt2rRBVFQUduzYgRUrVqBNmzaW0ToPD48irZiQ7fr163j55ZfxzjvvoF+/fmjTpg1q1qwJLy8vZGVl4fr169i8ebMliEgkEsyaNSvXYdYePXogICAACQkJ+PzzzxEdHY0BAwbAz88Pd+7cwapVq3Do0CG7fD8GgObNm+Pll1/GsWPHMGTIEHh5eeHGjRtYsGCBZT28wYMH57umXX5s8X790Ucf4Y033sATTzyBDh06oFatWnB3d0dKSgrOnj2LpUuXWlYBKe4apKUW5rLPVVrQAn7ZnJyc8OOPP+Kpp55CRkYGlixZgiVLluTaZ+rUqahVq5bdPXmCg4Mxa9YsjBkzxvJi+Kg33ngj308BzZs3x44dO/DCCy8gOjoamzdvLvBYeVnM33F3d8eWLVswfPhwXLlyBTt37rQ6AlW3bl2sX7/e7uYUlaT+nIeSKleujO+++y7P9Xx8fPD999/jySefRGJiIiZPnlzgmRas6dChAzZs2ICxY8ciKSkp16iZrY0YMcLyIpH9QlGUAHbv3j2rI+XZvL29sWrVqkIX0CxtlStXxpgxYwqsNVvPnj2xdOlSvPrqq1Cr1Zg7d67lTB85jR8/vsBzMtsbmUyGX3/9Fc8++yyOHj2K48ePW50LVrlyZfz222+5AklWVhYmTJhgmVKwdOlSyOW53xqcnZ2xbNkydO3aFVlZWRg3blyuDwdFER4ejm3btmH06NGIjo7O9++yLH3++efw9fXF7NmzkZSUlO/zATD/DHIuSfTLL79YXqvHjh1r9UP2kCFDsHv3bvz666/47bff0KdPnzzz0KZMmYItW7ZYGopyGjVqVJGe19mqVKmC5ORkqFQqS2dkfnx8fDB37tw8I/Rubm744Ycf8Oyzz0Kj0WDFihV5Dit27NgRX331Fdq1a1fk2srKTz/9hCeffBIrV67EypUr82zv3LlzsX6mOdni/TotLQ3r1q3Ldy1emUyGDz/8sNjnuC+1MAeYP/03b97c6gr0j2rdujUOHTqEr7/+GocOHUJ8fDx8fHzQrFkzTJw4Ed27dy/0VFZi6d27Nw4cOICFCxfi4MGDePjwIdzd3dGqVSu8/PLLeebKPapZs2Y4ffo01q1bh+3bt+PixYuW0UxfX1/UqlULbdu2Rf/+/S2t4KUtJCQEhw4dws8//4zNmzfj8uXLSE1NhaenJxo0aIDBgwfj+eefz/cMC2J73PqnTJmChIQEy6ru+XX8ZR96WrBgAfbs2YMlS5bke0qg/HTp0gXnz5/HihUrsHPnTly/fh2pqalQKBQICwtDmzZtMGTIkMcelcvWokUL1KpVC7du3QJgXmepoLlgYWFh2L9/P/bu3YuTJ08iOjoa8fHxyMjIgIeHB2rXro2ePXti7NixBS6YXZamTZuG1atXW+anFmTYsGFo164dfvjhB+zfvx8xMTHQ6XQIDAxE+/btMXbs2DynN3ME3t7e+Ouvv7Bx40asX78e58+fR3JyMtzc3FC7dm30798fL730Up4R2fymFDyqTp06+PTTTzF9+nRcunQJn3zySaHzFB/VuHFjnDp1Cr/88gv++usvXLp0CSkpKXByckJISAhatGiBgQMHWlbQLwvTpk3DsGHDsHLlShw8eBB3795FWloaFAoFgoOD0aBBA3Tt2hWDBg2yPN8jIyMtU4nCw8Pz/SAPmNdcPX78OCIjI/HGG2+gVatWubotGzdujN27d2PBggU4ceIEEhISCj1Mmp/Dhw/j4sWLOHjwIP755x/cvHkTcXFxyMzMhFKphK+vL+rXr48ePXpg2LBh+Z4tpEePHjhw4ADmzZuHw4cPIzExEV5eXqhTpw6GDx+O5557Ls/p4OxFtWrVcPDgQSxatAh//fUXoqOjIZVKUa9ePTzzzDN4/vnni7Xkx6NK8n79559/YteuXTh+/Dhu3ryJhIQEJCcnQ6lUIiwsDB06dMDYsWMf65R5kn9P9EtERETkcGbNmmWZOlAW8y3tUak0QBARERFR2WCYIyIiInJgDHNEREREDoxhjoiIiMiBMcwREREROTB2sxIRERE5MI7MERERETkwhjkiIiIiB8YwR0REROTAGOaIiIiIHBjDHBEREZEDY5gjIiIS0axZs+Dt7Y3Dhw+LXQo5KIY5IiKyuaioKHh7e8Pb2xtPPfWU1X1OnToFb29vTJo0qYyr+0+jRo0sdRblKyoqSrRaifIjF7sAIiIq3/bv349Dhw6hS5cuYpeSx6RJk5CamprrsrVr1yImJgYvv/wyvLy8cm179HtbmDBhAoYOHYqQkBCb3zZVDAxzRERUasLCwnDv3j18/PHH2L9/PyQSidgl5fLKK6/kuezIkSOIiYnBpEmTULVq1VKvwc/PD35+fqV+P1R+8TArERGVmvDwcIwYMQLnzp3Dpk2binSd6OhoTJkyBfXq1UNAQADq16+PKVOmICYmJs++/fv3h7e3N/R6PWbNmoVGjRohMDAQLVq0wLJly2z6WNRqNb744gu0atUKQUFBqFatGoYPH44TJ07k2m/q1Knw9vbGvHnz8txG9rb58+dbLitozlxERATGjx+P+vXrIzAwEHXq1MHQoUOxY8cOmz42cmwMc0REVKpmzpwJFxcXfP7559Dr9QXue+vWLXTv3h0///wzmjRpgilTpqBRo0b4+eef0a1bN9y6dcvq9V566SX88ssv6NGjB5577jmkpKTgrbfewqpVq2zyGDQaDQYNGoQvv/wSrq6umDRpEvr164fDhw+jf//+2Lx5s2XfL774AnXq1MEXX3yBs2fPWi7/888/sWLFCnTu3BmvvfZaofe5ZcsW9OjRA5s3b0aLFi0wZcoU9O7dG3FxcVizZo1NHheVDzzMSkREpSo0NBQTJkzAggULsGLFCkyYMCHffadOnYrExETMnz8fL774ouXyZcuW4a233sK0adOwdevWPNeLjY3FsWPH4OnpCQB4+eWX0a5dOyxcuBAvvPBCiR/Dt99+izNnzmD48OFYsmSJ5XDxxIkT0atXL7z++uvo0aMHPDw8oFQqsWzZMvTs2RMvvfQSDh8+jNTUVLz22mvw9fXFkiVLIJUWPJYSHx+PV155BU5OTti+fTuaNGmSa/v9+/dL/Jio/GCYI6JyTaPR4MGDB0hJSYFarUZmZiYyMzORlq6GKsP8lfbvV4Y6ExlqNbI0GjjJnaBwcYaLiwsULi5QuDhDoXCBq4uL+V+FM1wVCri5uMDfzwfBwcEICgpCYGAgnJycxH7YdufNN9/E6tWr8dVXX+GZZ56Bu7t7nn1iYmJw+PBh1K1bN08AGzt2LJYuXYq///4b9+7dy9Ms8OGHH1qCHGA+vNumTRscPXoU6enp8PDwKFH9v/76K5ycnPDRRx/lmvfXpEkTjBo1CqtWrcK2bdswcuRIAOYu2Y8//hjvvvsupk2bhtjYWKSkpGDt2rWoVKlSke5PrVbj7bffzhPkAKBKlSolejxUvjDMEZHDMhgMiI2NRVRUFO5ERuPS7UjcjoxGfGIStCZAaxSglzjB6BkAvcILBicl9HIldDIFTM5KwNkTcA4GnJVAoNL8r7MScFIARgNg0P33Zcz+vx5Q6XJtc9bchFvWcThnJEKakQRniQkuUsBFJkGAny9CKgejeuVg1AitjCpVqqB27dq5gkdF4O3tjalTp+Ljjz/GggUL8O677+bZJyIiAgDQoUOHPI0SUqkU7du3x40bNxAREZEnzDVt2jTP7WUHntTUVHh4eCAqKgpr167NtY+Xl5fVJoic0tLSEBkZiTp16lgNUZ06dcKqVasQERFhCXOAeXRw//79WL9+PQDzoeB+/foVeF/Zzpw5AwDo3r17kfanio1hjojsniAIiI6OxqVLl/D36Qs4E3EZyRlZ0AgyGD2DkOlRCekelQDflkCLQYCrN1DIYaxCObkAcCvSrrp/v/IwmYBMFZCWAMQkQHYlBh4Zp6BIvAulMQueCifUC6+Jtk0aoEnD+qhduzbc3Ip2n45o4sSJ+PHHH7Fo0SKMGzcuz/b09HQAQEBAgNXrBwUF5dovJ2vhWCaTAQCMRiMAc2PFnDlzcu0TGhpaaJh73LokEgn69++PPXv2AECBh5cflZaWBgBFGsUjYpgjIrui1Wpx9epVnLtoDm7Xb99Bms4EnVdlpPqHQxvcDOg13DyCZu+kUsDd1/xVuQ6MAFQ5txv1uJAQhXWnb8F79+9QJEZCYdLA29UZDeqEo33ThujQri3CwsLsbkmPx6FUKvHOO+/g1VdfxZw5czBixIhc27MPhSYkJFi9fnx8fK79iqtTp05QqVTFvt7j1hUZGYkPP/wQPj4+UKlUeO2117B9+3ZLyCxI9np2cXFxZbI8Cjk2hjkiElVKSgoO/X0YG3YdwLU7kVDDCRr/mlD5h8MUMgRoElryUTZ7JXMCgmtBCK6FlJyXG3Q4F38Xvx65Ab/fZ8M1LRZhQQHo1609unfqiPDwcIcNd8888wy+//57rFq1Cq1atcq1rVGjRgCAY8eOQRCEXI9REAQcO3Ys135lxdPTE9WqVcOdO3cQGxuLypUr59p+5MiRPHUZDAZMmDAB6enp2LRpE/bu3YuFCxdi9uzZeO+99wq9zxYtWmDLli3Yv38/2rZta9sHROUOwxwRlamMjAwcP34cG3YfxJmLl5Au90RKaAtoaw4HWoYCDhpSbErubB7Jq1wH8RgIAIjMSMaRy2fht/t7KJLuorKvF3p1aotenTugYcOGRRrtsQcymQwffPABnnnmGcyePTvXttDQUHTq1AmHDx/GmjVr8Pzzz1u2rVy5EtevX0fnzp1FOVPCqFGjMGvWLHzyySf44YcfLEHz0qVLWLt2LTw9PdG/f3/L/rNnz8bJkyfx6quvomvXrmjfvj0OHz6Mb775Bt26dUP79u0Lvb8vv/wSixYtwoABA9C4ceNc262FSqq4GOaIqFRptVqcOnUKW/YcxNHT55BilCMtpBnU1XsCw18uv6NutubuC1Ojnkho1BMAEJOVjn8iz2Pxl2uhjL+BQHcFhj7RE0MH9UdwcLDIxRasX79+aNeuHY4fP55n2zfffIO+ffvi9ddfx86dO1G3bl1cvXoVO3bsgL+/P7755hsRKgZef/117N69G+vWrcONGzfQpUsXJCQkYNOmTTAYDFiyZInlMOvRo0fxzTffoEmTJvjggw8AAM7Ozli2bBm6du2KCRMm4MiRI/D29s73/gICArB48WK89NJL6NGjB5544gmEh4cjKSkJp0+fRlhYWJ5mDqq4GOaIyObUajW27dyFn9ZvQUxyOtKrNEZatTbAkOcAGV92bELpAdTrhKR6nQAA97RqXLh6FN/9OQO+xnQM7NEFo54ahOrVq4tcqHUff/wx+vTpk+fy8PBwHDhwAHPmzMG+ffuwe/du+Pv749lnn8WMGTMQFhYmQrWAQqHA1q1bMX/+fGzatAnff/89lEolOnTogGnTpqFdu3YAAJVKhYkTJ0KpVGL58uVwdnbO9dhmzZqF1157Da+//nqhCxoPHDgQe/fuxbx583D06FHs2LEDfn5+aNSokU3WzqPyQ6JSqQSxiyAix5eZmYkdu3Zj2brNiErOQHLNTtDU7wG4+4hdWsVj0EFy6yQCbu6HR3osenZsi9FPDULDhg0ddq4dEeWPYY6IHltmZiZ27t6D5es2425SGpJrdDQHOA+eNNxumIxA5AX43TwA94QbaNu0EcYOfxKtW7dmsCMqJxjmiKhY9Ho9tu/chR9/24g78Sqk1OiIrAY9AA9/sUujwggCEHsd3lf3wOfBJQwf0BsTnn8Wfn4M30SOjGGOiIokLi4O85f+hO0HjyGpZmdkNuwDeFlfRJUcgNEA2fXDCIz4CzX9XPHWhBfQuVOnQs8ZSkT2h2GOiPIlCAL+PnwYcxb/hDtpBjxs+hSEmq25fEh5o3oAz3Ob4XPvDIb27YmXXxyNwMBAsasioiJimCOiPNLS0vDTmrVYvfEvJFVujNTmTwPeQWKXRaXNZIT0+jEERmxFdS8nTHvpOfTo0Z2jdUR2jmGOiCwuX76M2QuX4sytGCQ0HAB9g+7msxRQxZOaAM/zW+AbfRITRg3F2OeegUKhELsqIrKCYY6IcOzYMcz88lvck/khscUIoFItsUsie2HQQXFhB/wvb8PwJ3rg9YkvWc4bSkT2gWGOqAI7dvw4Zs6ehyhlCFLav8glRSh/JhPkVw8i8NwG9GzdCB+++Tr8/dnBTGQPGOaIKqDsEBetDEEyQxwVk+T2KQT/swbdmtbBx9PfYLMEkcgY5ogqkNwh7gWuDUclIrl7BkHHV6NL41r49O2pCApikwyRGBjmiCqAY8ePY+ac+YhWVGGII9u7ew7Bx1dgUIdm+Gj6VLi5uYldEVGFwjBHVI7duHEDr7z7Me7Ig5HcgSGOSpEgQH7tEIJP/oK3xj+H50eN4JImRGWEYY6oHEpLS8M7n83G3isxiO/+GuBbWeySqKIw6OB+ch1Coo9j3ifvol3btmJXRFTuMcwRlSOCIGDV2t8w98c1iGs/FsbwdmKXRBVVRgp8Dy5GY1ctFnzxEUJDQ8WuiKjcYpgjKicuXLiASe9+jOjKrZHRdhQX+yX7EHcLQQcXYlDbxvjo7alwd3cXuyKicodhjsjBJScnY+oHn+JoTBoSu78GeAWIXRJRboIA+bXDCD65BtNeGo0xo0dBwvP7EtkMwxyRgzIajfh+2Qos/nUT4rpMglCtmdglERXMqIfHsZ9RR3UJK7+bi5CQELErIioXGOaIHNCtW7fw/KvTEVm1EzJbPQ1IZWKXRFR08XcRvOsrTB39FCaMeZ6jdEQlxDBH5EAEQcC3P/yIxRt24WG/dwGfSmKXRPR4TEZ4HFuDuv+O0lWpUkXsiogcFsMckYOIjY3F81Om4Zpfc3ODA9fwovLg4R1U2j0XU59/GuNfGM1ROqLHwDBH5AB+Xv87/rd4NeL6TAeCaopdDpFtmYzwOLoadVOvYOV3X3GUjqiYGOaI7FhKSgrGvj4dZ0yBSOs6gcuNUPn28DaCd8/FtOeHcZSOqBgY5ojs1M49e/HW/77G/a6vQajaWOxyiMqG0QCPY6vRNOsWfv7hO3h5eYldEZHdY5gjsjMajQaT334PB2J1SO71OuCsFLskojInjTyHsL+/xy8Lv0KDBg3ELofIrjHMEdmR6OhoDB//Km41GQlDvc5il0MkrvQkBG79BO+OGYYxz44Uuxoiu8UwR2Qndu7Zi6n/m4+4AR8AflxMlQgAYDLCe98idPfTY/HcWXBxcRG7IiK7wzBHJDKTyYQPZ32FX/65iZT+7wLOCrFLIrI7zlcOotal37Fu6QKEhoaKXQ6RXeFCVUQi275jJ5YfikDKkx8zyBHlQ1e/K650n4E+z72MXXv3iV0OkV1hmCMSUZZWi5gMAzwz4oCoCLHLIbJv/mGIHfUdXln4G977fDZMJpPYFRHZBR5mJRJJXEISlv6xDTqDEXKJCatWroLq+QWAh7/YpRHZPdfTG9Ay5SzWLV8MpZId31SxcWSOSASnL9/AN2s2QCKVwN1VAYXSFUOHPAm3X2cABp3Y5RHZvcyWQ3G8Wn/0efpZpKSkiF0OkagY5ojK2Ia9h/HbroPw8XSHk1xuudw/uBK6tW4CxZYvRKyOyHHow9sjot0r6Pn0aMTExIhdDpFoGOaIylhqhhoucrnVUxU1aNwU9RRZkP/zuwiVETkeoUo93H7iQzzx3ERcunRJ7HKIRMEwR1TGRvfvAXdXJbQ664dTe/Z5AkGXtwORF8u4MiIH5ReCe0O/xNOvzsTBvw+LXQ1RmWOYIypjzk5OeHn4AGh0eqvdeFKpFE+PGAHvbbOA9EQRKiRyQO4+eDDyG4z/3yL8sv4PsashKlMMc0Qi8PH0wNjBfZGSlgFByNtQzoYIosfgrETCsDn4YO0ezPl2kdjVEJUZhjkikdSuFoI+HVohNV1tdTsbIogeg0yO5EEf4PvTcZjy9ntWPywRlTcMc0Qi6tmmGWpXC0GGOsvqdjZEED0GiQSp3Sdhc6o3XnnrXQY6KvcY5ohEJJFI8NyAnmyIICoFGW2fwV+pXpj23scMdFSuMcwRiYwNEUSlJ73D89gQJ8U7n3K6ApVfDHNEdoANEUSlJ63zOPx6KxMfzvpK7FKISgXDHJGdYEMEUelJ6zYJqyMS8MU334ldCpHNMcwR2RE2RBCVEokEqp6vYek/kZi7cLHY1RDZFMMckR1hQwRRKZJIoOozDYsOXsGCpcvFrobIZhjmiOwMGyKISpFEgpR+MzBvx2ksXblG7GqIbIJhjsgOsSGCqBRJJEgeMBNz/tiHbTt3i10NUYkxzBHZKTZEEJUiqRRJgz7EtC8X4cqVK2JXQ1QiDHNEdowNEUSlyMkFD5/8DCMnv4X4+HixqyF6bAxzRHaMDRFEpczDD9G9Z2DICxOQlWX9QxORvWOYI7JzORsijGyIILK94Fq40XQURk98laf9IofEMEfkALIbIlRsiCAqFfraHfGPaz28y9N+kQNimCNyELWrhaBvRzZEEJWWjDYjsS7iAVb/ul7sUoiKhWGOyIH0aM2GCKLSlNL3LXy2YgOOHz8hdilERcYwR+RA2BBBVMpkciQM+RQvvfMpoqOjxa6GqEgY5ogcDBsiiEqZwh2xAz7AMy+/DoPBIHY1RIVimCNyQGyIICpl/mG4Vbsf3vmEc1DJ/jHMEdnItq1bkZKSUmb3x4YIotKladIPmyJisP/gIbFLISoQwxxRCel0Orw5YRwOz3ofU0Y/A6PRWGb3zYYIotKV1PdtvPrxHCQmcsoC2S+JSqXiColEjykxMRGTnx2JcbI0DAlwxc8P1TjXsCM+mTuvzGrQ6fX4etUf0Op1cHF2zrPdZDJh7epVuN99KlCtcZnVVWHptcC2+UDMZSAxGshMBZQegF8o0PZpoOUAQOb03/47FwG7vs//9j7YDfhWKfx+b50EFo0peB+/UOD9nf99r3oAbPwCuH0KcHYFmvYB+r0OOLnkvp4gAAueA5yVwMs/Fl5LeXP/GlqfW46dv/8MqZRjIGR/5GIXQOSoIi5exPsTxmJeJTkae7oCAEYHueHcyb+xad1vGDJiZJnUkd0QMWfFOsjlcsgeebPJbohYtXIWVM8vADz8y6SuCkubCRxbB4Q1Aup3Btx9gcw04Oph4Lf3gXPbgQlLgEdDQavB1kOb0qNo9+tbBejzivVtN44Dd88Bddv/d5nJCPz4ijlwth4CZCQDB1cBRgPw1Mzc1z/6G3D/GvD25qLVUt5UqYvLMc0x59tFeHfqq2JXQ5QHwxzRY/j7wAEsmjEV62u6w88595/RnKrueOrr2Qiv3wANGzUqk3qyGyKWbtgGXy8PSCSSXNuzGyJ++3UG1GMXA/K8I3hkI65ewBcn8v6MjQbgh3HA9WPmYNegS+7trZ8EarV+/Pv1rQL0nWx928U95n/bPP3fZdERQOx1YPQcoMUA82UursCJDcCQd4Hs55DqoXmk8YkpgF/I49fn4NRtRuKn9W+jT9eOaN6smdjlEOXC8WKiYtr8+3r8+OZk/B7umSfIAYBcKsHyGu6YOWEsGyIqIqnUeliWyYFGPc3/TyzD9cuiLgJxN4EqdYHQ+v9dnvLA/G9IjstCGwB6jXmULtuGz4CAqkDn58qmXnslkSBhwHsYM+09pKWliV0NUS4Mc0TFsGzBt9gz52P83iAArvL8/3wCXOT4KkjGhgj6j8kEXDti/n+l8Lzbb58G9i0D9v8EROwDtNZDebGd2GD+t+3Q3Jf7BJv/vX/1v8vuXQGcFOZDwwBwbidw5TAw4lNAKrNNPY7MzRv3Or6Msa+9JXYlRLnwMCtREQiCgM/fmQ7DoR1YWT8gz2FMa1p4KTDsYSI+nfFWmTVEZJ8h4utVf0Crs94Q0bPPE4hfvQr3g+qwIaI0GXTA3h/NzQOZKuDGP0D8HfP8tNpt8+6/c1Hu75WewJB3zHPpHpc2Ezi3wxzQsg+lZgtrBFSuDaz/BLh7HlCnAOd3Ah2fMR9izUwFNn0BdHvRPKpHAABjjRY4dec41m/cjOFPPSl2OUQA2M1KVCij0Yg3xryAepEX8XZ132Jf/8276Wg6eXqZNUQAQEpaOuasWAd3V2WehggA0GRlYtXKVWyIKE1aNfBOjjlwEgnQ9UWg/xvmQ67ZLu4FstKBWq0AzwDzWTsuHwR2LjRfPvY7oGH3x6vh5Cbg1/eBFgOB0bPzbk+JBTbOMo8KOiuBZn3/62b99X3gzhlz00NKHPD7J8Cds+Y5gV2fB3qMe7yaygODDlV+mYyjm9fC29tb7GqIGOaICqLRaDB+2BAMzozDiyHej3UbBpOAp66nYubyNWXWEAEANyLv5dsQAQCJD+Lw21+72RBR2kwmIC3eHNC2fQsE1wQm/AAo3Au+3o0T5oaJ4HDg7U2Pd9/fPQfcPQtMXlG85oqbJ4DF44BJy4GarYAvB5uXUxk4zbzkyo4FwHNzzeGvgpJEnkffuB34delCsUsh4pw5ovykp6djVJ8eGG+If+wgB7AhosKTSgHvYKDDSGD4x+YlQvYsKfx6tdua14WLuwFoMop/v/F3zUHOP6x4QU6nAdZ/DLR+CghvA1w/Cjy8Azz9AVC3I9BrIhDeFji0uvg1lSNCtab4J1mCfQcOil0KEcMckTVqtRrP9umJjz116BdYxHW+CsCGCAIA1Pl3nbdbp4q2v5uP+V+d9d9fgbIbH9o8Vbzr7VwIaLOAwf9O8o+PNP+bc95clbrmsFjBJfd8FdM+/RJqtY2aVYgeE8Mc0SMyMzMxqld3fORrQgdfN5vdbgsvBYYZzQ0RZSW7IcLdVQmtTmd1n559nkDQ5e1A5MUyq6vCSos3/ysrQu+ZNhN4cMs8ly071BWV0QCc3gpI5eb164rq3lXg0BrzosFKz9zbDDmePwY9UHgPUPnn4ob7rZ/De/+bI3YlVMExzBHlkJWZiVG9uuFdHyO6+NkuyGUbHeQG/HuGiLKSfYYIjU4Po8mUZ3v2GSK8t80yT76nknlwy/pImi4L2Pyl+f/1Opv/1aj/G/nKta8GWP+RuYmiad+84e/hHfNXfq4cAtKTgPqdzE0VRWEyAr99YL5O0z7/XR5Uw/zv1cPmf40G88LHgTWKdrvlnKFuZ2w7dxvXrl0TuxSqwNgAQfSvLLUaI3t1w1QvIwbY4NBqftgQUc7tXGQ+LVaN5oBvZcDFHUiNB64dBtQqoEYLYOJSwFkBJN8HPu8DhDY0hyYPfyAjydz8oHoAVKptbl5w8859H1MbmP+dd9l6DT++Yg50Ly0EGnYrWt37lgN7lwIztgLeQf9dbjIBXz4JqOKAVk+azxpx5wzw4jygSe/i/WzKq5Q4NN4/G4f+/L1IyxYR2RpH5ogAZGWqMap3d0z2KN0gB7Ahotyr3wVo9oR5OY+zO8zB7tphczAb9hHwyk/mIAeYl/noMBKAYB75OrgKuLDHPJo28E3gjV/zBrnCpMabFyf2CjSfG7YoEqOBXd8DA6bmDnKAuYHjpQVAWGPgxB9AUgwweDqDXE4+lXA3sBlW/Pyr2JVQBcWROarwtBoNnunTAy86Z2JUZa8yu98zqRp8qvfB6q1/QSYrm9X1BUHAT5t34k5MHNzdlFb32b1jGyL8W8LQZliZ1ERULhj1qPLzZBzd/AvXnqMyx5E5qtD0Oh1e6N8Ho+RlG+QANkQQlSsyJ8S1H4uPv/xG7EqoAmKYowrLZDTi5acHo58pFS+GlG2Qy8aGCKLywxTeFjtPXUFcXJzYpVAFwzBHFZLJaMR7L49HtfhovBLmLWotc6q6449v5uBSRESZ3aePpwfGDu4LVVoGBCHvTAuF0hVDhzwJt19n5F6SgogK9KDTBLz96Syxy6AKhmGOKhyTyYRvP3ofD08ewaza4p+XVC6VYFl1NzZEEJUHoQ3wT7QKt27dErsSqkAY5qhCEQQBPy+Yj30b12N1o2BI7WQZAZ4hgqj8iO/yMqZ9xA9BVHYY5qjCEAQBf61ZiVWLv8f6xsFQyOzr6c+GCKJyIqAqLmcpcPbsWbEroQrCvt7NiErRyT07Mf/LOVhRzx+BLk5il2MVGyKIyoekzhMw7ZPZYpdBFQTDHFUItyMu4NOZ7+KzMHfU91SIXU6B2BBBVA54BSDSrRr27T8gdiVUATDMUbmXcP8ePnzjNYz0AHoHuItdTqHEbohQpbEhgsgWVB3HYOac+TBZGfEmsiWGOSrX1KkqfDlzOkLTEzBJ5CVIikPMhog61UOQrs60up0NEUTFoPTE/SqtsX7jJrEroXKOYY7KLZ1Wg1XffIlrp09hXp0AscspNjEbIjxcXdkQQWQDGW1GYu4PK61OXyCyFYY5KpdMRiN2rF6BjRs2YlX9QDhJ7WMJkuJiQwSRg3NWICG4EQ4cPCR2JVSOMcxRuSMIAo7+uRm/rFmDmSFuCHN1FrukEmFDBJFjS209El8sXCp2GVSOMcxRuXP5+FFs+X096uhSMSjIQ+xySowNEUQOzsMPUSYPXL9+XexKqJximKNyJf5eDHb8/huunz+LL8PFP1WXrbAhgsixJbR+Bp98s1DsMqicYpijckOblYWda1Zg1959WFU/wGHnyeWHDRFEDiy4Fs5FPkRCQoLYlVA5xDBH5YIgCDiwfi3+2rULM6u4Ovw8ufxkN0Rs/O3XMrtPNkQQ2cbD5sPx9eIfxS6DyiGGOSoXIo7+jf379yE8S1Uu5skVhA0RRI7JFN4Wfx08jqysLLFLoXKGYY4cXsL9eziy7U+cP3UKc8L9xC6n1MmlEiyv4c6GCCJHI5Egof4TWPXrOrEroXKGYY4cmjYrC3vXrsb+I0cxt6Y3FLKK8ZRmQwSRY9I2eQJLf/mDp/gim6oY73xULgmCgAO//4orN2+ipjYV7X3dxC6pTLEhgsgByZ2RGNICBw4eFLsSKkcY5shhRRz9G1E3r+P4kSP4sgIcXrWGDRFEjietyUAsXFV2f7NU/jHMkUNKTUrE2f17cODoMXxR3QtucpnYJYmGDRFEDsanEq7HJSMjI0PsSqicYJgjh2MymbB/3S+Ijk9EcFoSuvu7i12SqNgQQeR4ksK744/NW8Uug8oJhjlyOJePH0XCgwc4tH8/vqldMQ+vPooNEUSORduwF35av1nsMqicYJgjh5KekoKz+/fg7xP/4KOqHvB0qriHVx8lZkOEu6uSDRFExaFww0PBFffv3xe7EioHGObIYWSf5SExPQPO8bHoF1i+Fwd+HGI1REwaPpANEUTFFF//CSz/hWvOUckxzJHDuHrqH6TEP8C+ffswN9xX7HLsFhsiiByDEN4WW/YcsPo3Q1QcDHPkENSpKpzeswN34h6ig4ux3J571RbYEEHkIGRypPiG48KFC2JXQg6OYY7sniAIOPjHOkhlchw9dAjvVfcRuyS7x4YIIseQ3HgAFq5cK3YZ5OAY5sju3b54Don37+Gfc+cxMVgJ9wq8plxxsCGCyAFUroMTF69Cr9eLXQk5MIY5smt6nRYnd+6A4OyMO5cu4oUqXmKX5FDYEEFk/1LDWuLYsWNil0EOjGGO7Nr5gwdgNOqxe89efF7dC1KJROySHA4bIojsW3p4J/z6126xyyAHxjBHdkudloorJ49BlaWFc9JDdPKr2Gd6eFxsiCCyc5Vq4+T5svuwReUPwxzZrWN/bYGTszN27dyBueFseigJNkQQ2TGJBBnulRAVFSV2JeSgGObILiXcv4f7t24gJj4RDSV6VHN1EbskhydmQ4SHqysbIogKkFi9A7bu3CN2GeSgGObI7giCgCOb/4DS3QN/HzyA96p7i11SuSFWQ8TLwwewIYKoAKbwttiy+4DYZZCDYpgju3Pn0gWkJSch5mE86kj0qKRwErukcoUNEUR2SOGGuHQNNBqN2JWQA2KYI7ti0Onwz46/4ObphUMHDuADjsrZHBsiiOxTamgLHD16VOwyyAExzJFdiTj2Nwx6Pe49jEd1UxZClTxtV2lgQwSR/ckI74i1f+4SuwxyQAxzZDf0Oi2unDgGVw9PHNy/Hx9U8xa7pHKNDRFEdiawBs5eviZ2FeSAGObIblz55ziMRiPiEhIRrFejuhs7WEsbGyKI7IhEArVXCG7fvi12JeRgGObILhh0Olw6dhiuHp44sG8fPuKoXJlhQwSR/UgIbY29h/4WuwxyMAxzZBeunT4Jo16Ph0nJ8NWkIdydo3JlhQ0RRPZDCGuMvUdPiV0GORiGORKdQa9HxJFDcPX0wuFDh/B+VS+xS6pw2BBBZCe8g3D3XpzYVZCDYZgj0d08dwZ6nQ6ZGg20SfFo6KkUu6QKiQ0RRPZBLVMiIyND7DLIgTDMkaiMBgPOH9oHV09P/HPqNCZVche7pAqNDRFE4ssIrodz586JXQY5EIY5EtWtC+eg02ggCAKuX7mMwcEeYpdU4WU3RERcLLuRMDZEEP0nvVJDHDjOeXNUdAxzJBqTyYRzB/fBzdMLETduYpCvAjKJROyyKrzshoj3Jr7EhggiMYQ2wJFTHJmjomOYI9Hcu3kdmkw1JFIpzv7zDyZU8RS7JPoXGyKIROTihvhUzpmjomOYI9GcP7gfru4eSFKlIsCohb+LXOySKAc2RBCJJ8stALGxsWKXQQ6CYY5EkZqYgJT4B5DJ5fjn5D+YUtlN7JLICjZEEIlDFdQAp06fFrsMchAMcySK838fgJOLC4xGE2Lu3EFnP4Y5e8WGCKKypw1thD1cPJiKiGGOypxOq0HM9atwUbri0o0bGOyrgISND3aLDRFEIgiuhYtXr4tdBTkIhjkqc7cvXoDp30n1EefO4oXKXI7E3rEhgqiMSWXI0JXd3xo5NoY5KlOCIODyscNw9fA0T3DPSEewwknssqgI2BBBVLY0kEGXz/OeKCeGOSpTyQ/ikJGaColUiohr1zHETyF2SVQMbIggKjt67yqIjo4WuwxyAAxzVKYu/H0QLkrzuVevXLyA4Tzjg8NhQwRR2Uj3CsWdO3fELoMcAMMclRmDTof7d27CWaFAllYLeZaaa8s5IDZEEJUNjU8oLl6/JXYZ5AAY5qjM3Lt1A0a9HgBw8eo1DOMhVofFhgiiMuAfhgiGOSoChjkqM1dPnoDS3XxY9drFixjKQ6wOrYWXAsNNbIggKjXewbgbfU/sKsgBMMxRmdBpNUiKvQe5kxPUWVlQ6jLh48xDrI7u2UA2RBCVGpkcGTqD2FWQA2CYozJx7+YNGA3mw3EXLl/BCH+lyBWRrbAhgqj0aAQZ9P9OTyHKD8MclYmrJ49D6WE+rHrj8mU8GcRDrOUFGyKISo/euzJiYmLELoPsHMMclTqdRoPkB3GQyeXQGwyQa7Pg6SQTuyyyITZEEJWODM8quHv3rthlkJ1jmKNSF3XtiuX0XbejY9DZy1nkiqg0sCGCyPayFD5ISOTcTyoYwxyVumun/rEcYr117Rr6+3G+XHnFhggiG3PzRmxCsthVkJ1jmKNSpcnMhCr+IWQyc+dq3P37aOrFMFee2XdDxNtsiCDH4uqFB0llNxeVHBPDHJWq2Du3LHOo0tWZCJSaIJVIRK6KSpN9N0Q0ZUMEORZXL8QzzFEhGOaoVN2+cA5KNzcAwLXbt9HPx0XkiqgssCGCyEZcvZCUzDBHBWOYo1IjCAKSYu9D7mxueLhz7Rr6BLiJXBWVFTZEENmAwh1p6WliV0F2jmGOSk1qYgJ0Wi0Ac7BLS0lGqJKdrBUJGyKISkgigc6Ydx4oUU4Mc1Rq7t28AQHmF6GHiUlo4MrTd1VEbIggKhm9iWGOCsYwR6Xm7uUIuLr/e9aHW7fxhDdH5SoiNkQQlYw+7wAzUS4Mc1QqjAYDUhMTIJWZz/RwPzoSbX1cRa6KxMKGCKLHpzcBJitTBoiyMcxRqUiKuw+j4b+TQ6vT0hCscBKxIhIbGyKIHo+gcEdaGpsgKH8Mc1Qq7ly6CLmT+bCqVqeDp4SfKsncECE5xYYIouIwOSmQmWl9dJkIYJijUnL/5g24uJoPq0bHPUBrD86XI7PZYe7YMI8NEURFJpGV6fQEcjwMc2Rzep0WmRnpkPx7pod70dFo58FDrGQml0qwrDobIoiKSpBKGeaoQAxzZHOpCQm5Xnjux0SjhTebH+g/bIggKgaJjA0QVCCGObK5B1GRkEr+e2pp1Wr4OXONOcqNDRFERcOROSoM32HJ5u7fvgnFv+djzdRo4Cflgpdk3bOBbjj3b0PEUyNHlcl9ZjdEzFmxDnK5HDJp7s+02Q0Rq1d+AV1wnTKpiSibIAiQy2RQuPx3Hmv9nXOQyaaIWBXZO4lKpeI7LdnU+nlfQiY3f064eucuvE8fwjs1fEWuiuyVwSRg6I1UvPPjajRq3LjM7vdG5D0s3bANvl4elvmdOem0GmSprc+vIyotOr0BVSsHYUj3DpbLZDIZqlSpImJVZO84Mkc2pdNooMlUw83TCwAQGxOD3mx+oAJkN0SMmPgSVm7bBV/fsgn+2Q0Ru4+egY+Xe57tzi4KOLsoyqQWomw6vR5ePn4ICwsTuxRyIJwzRzaVEv8AphxzO5IT4lHH3aWAaxD91xDx6nPP2lVDBFHZk0AQ2OxAxcORObKpB5F3LYdYASA1NQ2VqvqJWBE5ihZeCgyPNzdEfDJ3XpncZ3ZDxNer/kCWRgtnJ74kkrgEwQSjibOfqHj4ykU2df/OLShc3Szfy00GSK3MRyKyRsyGiA17Dls9QwRRWWtap6bYJZCDYZgjm0pPTrKcxktvMEAJfsKk4pkd5o6h8+YgvH6DMmuI8PH0wLih/crkvoiIbI1z5shm9DotdBqt5fvEFBVqurL5gYon5xkikpOTxS6HiMjuMcyRzWSoVBBM/01ej09ORl0Fn2JUfGI1RBAROSK+05LNZKhUuU45kxwfjzpKjszR4xHjDBFERI6IYY5sJinufq5O1uTEBNRydxaxInJ0zwa6QfJvQwQREVnHMEc2k/zwQa5FVlUpKoQqGeaoZGaHuWPDvDmIuMhzpRIRWcMwRzaTlpQImdN/h1WlRgNkXJaESogNEUREBWOYI5vRZmbmOseljKuYk42wIYKIKH8Mc2QTBr0eeq3mv++NRrhwUI5siA0RRETWMcyRTajTUmES/lsgWJ2ZBT9nmYgVUXnEhggiorwY5sgm1KkqmHIc/srIzESAE59eZHtsiCAiyo3vtmQTqYmJkEj/ezplZGYiUM6nF9meXCrBcjZEEBFZ8N2WbEKdlgq5/L9O1ozMLATJOWmOSoc/GyKIiCwY5sgm1GmpuRYMzszIgL8zn15UetgQQURkxndbsoms9LRcYU6jzoC/s7yAaxCVHBsiiIgY5shGtFlZkMr+6141j8wxzFHpY0MEEVV0DHNkEwa9Ptf3mZlqLk1CZYINEURU0THMkU0YdLpc3+v0erjK+PSissGGCCKqyPhuSyUmCEKekTmTSeB5WalMsSGCiCoqhjkqMaNen2c0xGQyQcYsR2WMDRFEVBExzFGJ6bQaWMttUo7MkQjYEEFEFQ3DHJWYTqOBkOO8rACAR78nKiNsiCCiioZhjkpMMJkAMLyR/WBDBBFVJFwIjErMJAhWohzDHYmrhZcCw+MT8cG01/HM+JfFLocIrq6uqFGjhthlUDnEMEclJwh55sxxthzZg2cD3aC/fhJ/vXZS7FKIsCU2BQfOR0ChUIhdCpUzDHNUYoLJxClyZLdeDHIVuwQiAMA1jRFSKWc3ke3xWUUlZhJMeRoeJEx3RES5GAUwzFGp4LOKSk4Q8hxXZZQjIsrNJAiQyXiaQ7I9hjkqMZNJyLM0iSDhU4uIKBeJBBKuv0mlgO+4VGKCKe9hVqlMBp3JJFJFRET2h0csqLQwzFGJCYIAPPJp08XZGekGhjkiomyCjD2HVDoY5sgG8n7edFG4IN3AxVqJiCwY5qiUMMxRiUll8rwjcy4uyODIHBHRf9j8QKWEYY5KTO7kBMkj7azOLgoeZiUi+pcgCJDIncQug8ophjkqMSdnZ0ikj4zMKRQ8zEpE9K8sowClGxewptLBMEclJnfK+2nTSaHkYVYion+l6A3w8vYRuwwqpxjmqMRkTs5WDrO6IJVhjogIAKDSG+HlwzBHpYNhjkrMydn50f4HKBUuSOZRViIiAP+GOX9/scugcophjkpMKpMBj5zxwcvDA/f1HJkjIgL+DXN+AWKXQeUUwxyVmEQigUyee/0kH08P3NNyaI6ICACSjQK8/BnmqHQwzJFNPHryaFeFAskcmSMiAgBEC04ICQ0VuwwqpxjmyCakj4Q5iUQCo5RPLyIiAIg0SFC1alWxy6Byiu+2ZBPWlicxSrjaORERAMTrBQQGBopdBpVTDHNkEwp3DxiNhtyXuSqh0hvyuQYRUcVhcnaG5NG2fyIbYZgjm/D08YFBp891mY+PLyIzdSJVRERkH4yCAKmLUuwyqBxjmCOb8PQLgEGve+QyP0QxzBFRBXc/S4/gkBCxy6ByjGGObMLTzx8mQ+5Dqr6+vripYUcrEVVskZk6VA2vLXYZVI4xzJFNuHp4QPJI96q/jzduarjWHBFVbHe1RoTVqSd2GVSOMcyRTbh6ekIizd296ufljTtZbIAgoortrkmOqtWqiV0GlWMMc2QTSjd3SB8ZmZPJpNBKuTwJEVVsd/VAWFiY2GVQOcYwRzYhkUjgolDkudzNwxMPNXor1yAiqhgSTBL4+vqKXQaVYwxzZDPOrq4QBCHXZUGVKyMiTSNSRURE4tKbBMjdPLjGHJUqhjmyGS9f/zzLkwRVroyzGVyehIgqpivpGtRt1FjsMqicY5gjmwmuVh3azMxcl4UGB+Gcmk0QRFQxnVPr0ah9R7HLoHKOYY5sxr9yFQiPXObh5oYHhkcvJSKqGM7p5WjctKnYZVA5xzBHNuPp55+noxUATHInGEwMdERU8dzRCahevbrYZVA5xzBHNuOsUMBFkff8g/7+/ril1opQERGReEyCAEHpavVDLpEt8RlGNuXm6QXBlPsUXgFVQnCeHa1EVMHcUetQtRZP40Wlj2GObCogNAxaTVauy6qFhuJQGteaI6KK5Vy6Bo3adxC7DKoAGObIpoKrVoNem/uQarC/H67ytF5EVMGcMzihcbPmYpdBFQDDHNmUd2AQpI+cwksikUDm6gaVnoGOiCqOCI2A+vXri10GVQAMc2RTHt4+kMryPq2q1qiJo0lqESoiIip7aoMRTj5+kMvlYpdCFQDDHNmUVCaD0s09z2m9ataogd2pnDdHRBXD0ZRMtO3RU+wyqIJgmCObC6paHTpt7u7VyoGBuKBmmCOiimG/RopOvfqIXQZVEAxzZHNV6zWALjN3R6tUKoHERYkMg1GkqoiIys5FDdCgQQOxy6AKgmGObC4gJBRSuSzP5WHVq+NYMufNEVH5ptIb4BEUzMWCqczwmUY2p3B1tTpvrkbNmtij0olUFRFR2TiUlIn2vZ8QuwyqQBjmqFQEhoZBr8u93lxYpWCcyeC8OSIq3/ZrZejcs5fYZVAFwjBHpaJa/YbQZWbmukwqlUKidEOSjuvNEVH5dV0nQa1atcQugyoQhjkqFQGhYZDI8s6bq92wIf6MzxChIiKi0vdQo4d/SCgkEonYpVAFwjBHpcLV3QMKpVueyxvWqYONiRor1yAicnx/JmnQ++kRYpdBFQzDHJUa/ypV8sybc3dVIkUqR6bBJFJVRESlZ1umBL2eYPMDlS2GOSo11Rs2hvaReXMAUKtOXexJ4KFWIipfUnQGyPwC4eHhIXYpVMEwzFGpqVyjFqTSvPPmGjVogHVJWVauQUTkuLYmZqHviFFil0EVEMMclRoXpRKe/v4wGXOf9cHP2wuROsBgEvK5JhGR4/lLDfQdMFDsMqgCYpijUlW7WUtkZeQ9pFq1Rg2eDYKIyo00vREGb394e3uLXQpVQAxzVKrC6tazennDhg2xLpGHWomofNiWmIneTw8XuwyqoBjmqFS5eXrBzdMzz6m9qgQF4pzaAJPAQ61E5Pi2qCXo/+QQscugCophjkpd9YaNkZWRnusyiUSCsOo1cDiJh1qJyLGpDUZkuXvD19dX7FKogmKYo1JXo1ETmEx515Vr1aoVFscxzBGRY9uWmImeQ4aKXQZVYAxzVOq8/AOgULrmOdTq7+ONWMiRpjfmc00iIvu3Ng0YMpJLkpB4GOao1EkkEoTUrgNdVt6Gh0bNmmNtXJoIVRERldxdtRZeNcLZxUqiYpijMlGnRWvotHnPydq0QX38lsCuViJyTMsS9Xj+talil0EVHMMclQm/SpXh6pG3q9XZyQkeAUG4kpY36BER2TO9ScBJgxytW7cWuxSq4BjmqExIJBLUadUaWel5D6m2bNMGS+LSrVyLiMh+/ZWgRu+hwyGRSMQuhSo4hjkqM7WbtoS1VeWqVq6EkxlG6Hl6LyJyIGvSBIx8cYzYZRAxzFHZUbq7w79yFRj0+lyXSyQS1KlfH3/FsxGCiBxDVKYObmE14OPjI3YpRAxzVLYadegCjTrvIdWWzZtjaVymCBURERXf8kQdnnv1DbHLIALAMEdlrErNWnByUeZphPBwc4XMLxAXU9nZSkT2zWAScEwnQ7v27cUuhQgAwxyVMalMhuoNGkKbmXcUrnOXzpgVzUOtRGTfNiSo0XfYSDY+kN1gmKMyV79tBxj0ujyXB/n5Id7JFTFZebcREdkDQRDwk0rA8xMmil0KkQXDHJU5Lz9/ePr6wWTMexqvDp0746uoVBGqIiIq3M5ENdr27Q9XV1exSyGyYJgjUTTt0h1qK2vO1QwLxVmtBKk8XysR2aFFySaMf2Oa2GUQ5cIwR6KoWq8BXJR5GyEAoHW79lgUw9E5IrIvR5LVCG/XkedhJbvDMEeikMpkaNyhMzKtjM41qlsHW1O00JlMIlRGRGTdt0kmvPL2u2KXQZQHwxyJpnaLVpBKpXlG56RSCZo0a4E199nZSkT24WJqFnzqNUKlSpXELoUoD4Y5Eo2TswtqN28FjTojz7ZWzZvip4dqGK0chiUiKmtzEw149f2PxC6DyCqGORJVow6dYbJyTlYnuRx1GzfFyvucO0dE4rqt1sJUpTqqV68udilEVjHMkaiU7u4IrV0H2qy8Z35o37o1lsZlQmPk3DkiEs+cBzpM5qgc2TGGORJd8+69oNdq8lwul8vQql07fBetKvuiiIgAXEvXIDOkBho1aiR2KUT5Ypgj0Xn5+SMgJBQGXd4zP7Ro3BibUvRcd46IRPHJAx3emf2V2GUQFYhhjuxC6z79kZWpznO5VCpBp25d8cXdlLIviogqtGMpmfBt2grVqlUTuxSiAjHMkV3wr1wFwVWrQ2flcGv9WrVwXCtFnEYvQmVEVBEJgoAv4g1465PPxS6FqFAMc2Q32vUfBJ2VRgiJRILuvXrhwzscnSOisrE5QY0WfQcgICBA7FKICiUXuwCibF5+/qhatwHu37kJhatbrm3VQ6rgsMwVNzO0CHd3EalCx7A5VoXFkYk4p8qC2mhCJYUT2vi4YnaDyghVOlu9zh21Fs0OXIfaaMKEan74vkloke5LYzThvatxOKPKxO0MLZL1Rng7yVDDzQUvhfni2VBfOEklua5zJU2DNyLu4bQqE/7Ocoyt6ofp4YGQSXLvl2U0oemBa+jm74EfmhatHiJb0BpNWJgi4Ne33xG7FKIi4cgc2ZXWffvBqDdY3da7Tx/MuJVcxhU5DkEQMOl8DJ4+FYnITB1GVPHBazUC0NHXDceT1YjKzNtgAgAmQcDYc9GPdZ8ZBhOW3E2EBEC/YE+8UTMAT1byQmyWDuPOx2DQiTsw5Vj4OV1vRJ9jtxCRpsGYqn4Id3fB+1fj8N3thDy3/fG1B8g0mDCnQeXHqo3ocS18kIlnX50KV1dXsUshKhKOzJFdcfXwRHjzFrh9/hyUHh65tgX7+wGVQrE9PgX9Aj3yuYWKa8GdRPwYlYRJ1fwxv3GVPCNdBiuLMwPA/NsJOJGsxpwGlfHmpdhi3aevswzJ/RvBWZr7c6HBJKDP8dvYk5COHQ/T0D/YCwCw7WEa4rQGHOpYCx383AEAvY7ewrKoJEytFWi5/jlVJr69HY9fW1aDl5OsWDURlUSC1oA9RlesH/WM2KUQFRlH5sjuNO/WCwKQ55ytANC3V098GpWOLC4knEuW0YTPrj9ADVdnzGuUN8gBgFya97Jr6Rp8eDUOM8KD0MRLWez7lUokeYJc9n09+W+Au63+b0QwJsv8/xbe/414tPB2RXTWf/sYBQETzsdgQLAXhlT2LnZNRCXx4f0svD3rS0itPK+J7BWfrWR3XJRKNOrQCZnpaXm3OTujQ9cu+Og2D7fmtCc+HSl6IwZV8oJRELApVoU5Nx5iyd1E3MrQWr2OURAw5mw0wt1d8F6dIJvWYxIE7Io3//4aeCosl2fP2TuX+l+jy7nUTITlmMv3za143FFr8V2jEJvWRFSYw8mZMNVtitZt24pdClGx8DAr2aWG7TriyoljEAQBkkdGmRrXq4eVZ87iSpoG9XMEhYrsjCoTACCTSNDswHXcUP8X4KQAXq8ZgK8aVsl1ndk3HuJcaiaOdq5tdXStOHQmE2bdeAgBQLLOiP0J6biWocWLYb7oEfDfIfF+QZ4IdpHj6ZN3MTLEBzcytNiXkIGv/p0Xd1utxafXH+DrhlVQWelUopqIikNjNOGTeCNW/fyN2KUQFRtH5sguyZ2d0ar3E1CnqqxuHzRwAF69mWT1UGxFlKAzN43Mvx0PTycZjneuDVX/RjjQsRZqu7tg3u0E/HA30bL/hdQsfH79Id6sFZjrkOfj0pkEfHb9IT6//hDf303E9QwtptUKwA+PdMV6Osmws31N1PdQ4KeoJFxL1+CzepXwWk3z8g+Tzseghbcrxlf1wz/JarQ5eB0uW8+jxu7LWB3N0VgqPV/cz8RL77wHLy8vsUshKjaGObJbtZo2h3dgEPRWTvPl6+WF0PoNsexeqgiV2Z/s3gZnqQQbW1dHKx9XuMtl6OTnjt9aVYMUwLzb8QDMo2hjz0ahlpszPqwTbJP7d5fLYBjcFLpBTRDZuz4WNA7BT1HJ6H70FtIeORVbQ08l9nSohZT+jXGzV328WzsIMokEK6KScDRZjSVNQpFhMGHQP3fg5STDtrY18WQlL4w9F41/kvOeJYSopC6nZeG6bwgGDnlK7FKIHgvDHNktiUSCrkNHQKO2/gbeuX0HLE/QIFFrfSmTisTTyfyn3MLbNc/hyYaeStRwc8ZttQ4qvQGzb8QjIk2DZc3C4CKz7UuAVCJBiNIZL1f3xw9NQnEsWY0vbjws9HoPNXq8fTkWM2sHoY6HAmvvpSBZZ8RPzcPQM9AD3zQKQbibC767k3cJE6KSMAoCpsfq8PnCxWKXQvTYOGeO7JqXfwDqt2mL62dOwdXDM9c2mUyKPk/0w7R9O7C6oW0n8DuaOu7muYPe+SzjkX15llHA+dRMmAB0OHzT6r5LI5OwNDIJg4I9sbFNjceuqde/y8ccSswodN/XI+4jROmEt8PNv8frGVr4O8sRkqMxoomXEtfzaeYgelyL49R4Ysx4VKpUSexSiB4bwxzZvebdeuFOxEWYjEZIZbnDSo3QEJzzDsTuhAz0DnAXqULxdfU3P/Zr6XnPbas3Cbil1sFNJkWAsxw9Azzg75z3Tz9Oa8COh2mo6+6C9r5uaPoYS5XkFPvvuXQfPQPEo/58kIqNsSoc7hSea1+tKffyM1qTCQXfElHxxGTpsAOe+HXCy2KXQlQiDHNk9+TOzug4eCj2rl0ND1/fPNsH9HsCH/z0E1p5KeBjJaRUBDXdXNArwAN7EtKxPCoJL1X1s2ybc/MhVHojng3xgVwqwSs1rJ9r8mCieYHfzv7ueU7npTcJuK3WwkkqQU23/06ndiVNg2quznCV5z5cm2kw4a1L9wEATwTlHlHNKU1vxKsX7mFyDX+08f3vFG71PFyQZjDhaFIGOvi5I11vxJEkNfoWcFtExSEIAqZFZ+Gz1Su5phw5vIr5zkcOJyS8NirXrIXE2HtwUebuvnRxdkbffgPw8t7tWNfYNhP6HdHCJiHodPgmJp6PwZa4VNRxd8H51CwcSMxAVaVTiU6LdV+jQ8P911BV6YTbvRtYLv89NgXzbyegg68bqrk6w0MuQ6xGj53xaUjSGdHRzw1v1Mz/ROUzr8RCKgE+q5f7ENeoEB98ePUBhp2KxMgq3jiUmAGV3ojX8gmiRMW14mEmGvZ/ErVr1xa7FKIS48cRchgdnxwKo95gdTmSGmEhQEg1/BKbd6HhiqKmmwv+6VIbL4T64qwqEwvvJOKWWotXqvvjeJfaCFbYft22/kFeGFHFBzFZevx2X4V5t+OxMz4NjTyVWNwkBHvb14IynyaLo0kZWBKZhEVNQuEuz3343F0uw9a2NVBV6YwfIpOQZjBhVfMwtPLhuTKp5K6ma7BJ6oM3Zr4vdilENiFRqVRcqIscxuXjR3B63264e3nn2WYwGrHspxVYX9fbcqYBIqKcNEYTBt3IwKIt29j0QOUGR+bIodRr0x7efgHQa/N2NcplMgx5aghevJIAIxcTJiIr3o7KwMSPPmWQo3KFYY4cilQqRfeRo6HTaqwebg3y80Odlm3wMc/dSkSP2JyghqRZe/TpP0DsUohsimGOHI6Hjw/a9OkPtUpldXvr5s1wQuKKwzxbABH9616WDt+rXfDhV1+LXQqRzTHMkUOq3aIVgqpWgzYzM882iUSCoYOfxFt3UpGk49khiCo6oyBgYmQmvly+Ei4uLoVfgcjBMMyRQ5JIJOj69EgIggCT0Zhnu1LhggGDBuPZS/EwmDh/jqgi+yw6HU9OfgO1atUSuxSiUsEwRw5L4eaGrsNGQp2WanV7WOVKqN2mPV6/zvN5ElVUe5IyERlWD6NeeFHsUohKDcMcObQqNcNRt2UbZKZbX1+uRZPGeOgfguX3rAc+Iiq/bmRo8HWmEl8tWSZ2KUSlimGOHF6r3k/AzdMLep31k7D379Mbq9OAE8l559cRUfmUojNgUowOC9eug1JZsvMME9k7hjlyeDK5HL2efRG6LA1Mj5ycHTAvZzJy+DC8ficVsVl6ESokorKkNwl44WYqPlmyHMHBFfcUf1RxMMxRueDh44Nuw5+BWqWyuv6cq0KBp4YOxTOX46E15g18RFR+vHYzGSNmfICmzZqJXQpRmWCYo3IjtHYdNO3aPd+GiOAAf7Ts2g0TrsZbDXxE5Pi+i1bBv/dgDB42XOxSiMoMwxyVK006d0NIzXBkqa0vGNyobl0Yq9bG15EpZVwZEZW23QkZOBFYC29/8pnYpRCVKYY5KlckEgm6DB0Bpbs7dFqN1X16du2CfRIP/BzLDlei8uJGhgZfZbjg25VrIJFIxC6HqEwxzFG5I3d2Rt/nxsCo01tdUFgikWDYkCFYni7D9vh0ESokIluK0+gxITIL36/7g52rVCExzFG55ObljV7PvgB1WqrV+XEymRTPDh+O/z3U4xiXLCFyWMk6A0ZdV2Heb3+gUqVKYpdDJAqGOSq3gqpWQ+ve/ZCRqrK63clJjudGjcK0qAxEpGWVbXFEVGLpeiOevpyIWat/RXh4uNjlEImGYY7KtXpt2qFGw8bITLN+hgilwgWjnxmFcTdUiMy0vugwEdmfLKMJQyMeYuaSn9CocWOxyyESFcMclWsSiQQdBw9FUNVqyFJnWN3Hw80NI0aOxKjLiXio4aLCRPZOZzJh2IU4vPLVt2jbrr3Y5RCJjmGOyj2pVIruI56Ft38ANPksWeLn7YVBQ5/GsIh4pOrzNk0QkX0wCgKeufgAw2d+gp59nxC7HCK7wDBHFYLcyQm9nxsDpbs7tFnWGx4qBwag+4CBeOrCAwY6IjtkEgSMvfQA3V+ZiqdGPSN2OUR2g2GOKgxnFwX6jZkAmdwJeq31+XHVQ0PQacAgDLrwAEk6QxlXSET5EQQBU67Go8GosXh+4iSxyyGyKwxzVKEo3NwwYNzLMBmNMOitz4+rHlIFvQYPweALD/GAc+iIRGcUBLwY8QBVnhyFV6bPELscIrvDMEcVjpunF/q9NBE6TRaMRuujb6GVgjHg6WF4KiIeMVm6Mq6QiLJpjSYMOx+LZi9MxOvvfSh2OUR2iWGOKiRv/wD0fWEcMtPSrZ4lAgAqBfjjqZEjMexSIm6ruWwJUVlTG4x48lwsek+einFvTBO7HCK7xTBHFVZAlRD0eW4MMtPT8h2hC/DxwYhnnsEzV5NxLd36uV6JyPZSdAb0PxuLp998B6MnviJ2OUR2jWGOKrRK1WvgiTEToMnIgNFgPdD5enni2dHP4oUbKpxP5ZkiiErbQ40eA87FYezMDzBi7DixyyGyexKVSpX3xJVEFUzywwfYtvwHOCuUkDs5Wd0nIzMTP6/9FZ+HKNHD372MKySqGCIztRgREY935nyNXoOfFLscIofAMEf0L1VCPP5a/gPkTs5wcna2uo9Wp8dvv/+O4a4GvBzqXbYFEpVzEWlZGHs1CbMWL0Hbbj3ELofIYTDMEeWQnpKMP3/8HlKpDE4uLlb3MZkEbNu1C1WS7uObOv6QSSRlXCVR+bPpYTrmxGZi3k+r0ahlK7HLIXIoDHNEj1CnqvDXsh9gMpngrFDku98/Z87i/tmT+KVRENzlsjKskKj8EAQBn95OxjGJKxb8/BsqV6sudklEDocNEESPcPPyxsCJkyF3coI20/qpvwCgTYvmaNSzL54494Br0RE9hkyDCSMvPsDt4OpYtnErgxzRY2KYI7LC1d0DAydMhpu3N7IyMvLdL7x6NQwaMQJPX07CPynqMqyQyLHdy9Kh79lYhLXvii+Xr4ZPYJDYJRE5LB5mJSqAQa/HoQ3rce/Wdbh7eee7X2aWBmvXrcMkXxmeqexZdgUSOaDjyZl4444KQ4ePwItvvg1Xdw+xSyJyaAxzRIUQBAHnDuzFhcOH4OHjA0k+DQ9Gowl/bt+OoJQH+LaOP1xkHPgmetTye6lYmWLExEmvoP8LY+DkbL3RiIiKjmGOqIjuXLqIvzeuh6uHJ2Ryeb77Xbx6FacOHsTyev4Id+cbFRFgnh/3+vUEPPQMwOsz3kXr3n3z/WBERMXDMEdUDImx97Fz9XLIZPICO12TU1Px+x8b8Iq/E0ZX8SrDConsz4XULEy6kYSWbdth/Jtvo3qDRmKXRFSuMMwRFZM6LRU7V/8ETUYGFG5u+e5nNJqwc88euD2IxqK6AXCV87ArVSyCIGB+VAo2pgNPDhqAYZNeg29QsNhlEZU7DHNEj0Gv02L/ul/wICoSbp5eBR4uunrzFv7euwc/1vFFA09lGVZJJJ4ErQFjr8TDq0Zt9O3bB31Gj4HSnafBIyoNDHNEj0kQBFw8fBDnDu6Dq6cnZLL859Glpmfg9w0b8JyXBONDCg5/RI5uV0IGPoxKR49u3dC+Wzd0Gjy0wHmmRFQyDHNEJRR/Lwb7fl0Nk8kEhWv+h11NJhP2HjyEtNvXsbiuP0KU1s//SuSodCYTpt9Iwg2FN3p36YyOA59E3Zat+eGFqJQxzBHZgDYrCwf/+LVIh11j4xPw59ateNbXCZNCvSDlGx2VA6dVmXjjZgqatGqFVi1aoNezL8DLz1/ssogqBIY5IhsRBAGXTxzD6T07Cl2+xGQy4fDxE4i+dAGL63AJE3JcmQYT3rudhEsyd/To1BHNOnREm74DIHdyErs0ogqDYY7IxpIexGHvL6tg0OsL7HYFgMQUFTZv2YK+rgJmVPOBXMpROnIcexMz8P7dVLTp0AH1alRHl6EjEVq7jthlEVU4DHNEpUCn1eDwpj9w7+Z182FXaf7LkgiCgH/OnMWlUyfxXW0fNPNyLcNKiYovXqvHGzeSkOETjK4d2qJKteroPvxZdqsSiYRhjqiUCIKAu5cv4tifmyGRSgtsjgCA1IwMbNn6J5oImfikhi88nGRlVClR0ZgEAYujVfg5WY9evXsj0NMDzbv3RKMOndnkQCQihjmiUqbJzMTRrRsRc+Ma3Dy9IJUVHNIuXb+Bvw8cwJhAJcaHekHGN0myA6dSMjH9dgpqNm6KZvXrwsPbB92GP8NFgInsAMMcURm5d/MGDm/+HUaDsdDDUUajCcdOncLVc2fxQTVP9A3wKKMqiXK7rdbinVspyPQJQPcunaGUy9Ckczc06tC50A8mRFQ2GOaIypBOq8E/O7fh9oWzcPX0KnChYQDI1Giw78ABZN6LxtyaPqjvmf/5YIlsKUFrwId3knFdokSv3r3h6SyHT2Awug0fBQ8fX7HLI6IcGOaIRPAwJgoHf/8NOk0WXD08C90/MUWFnbt2oqo2A1/U8kGgC5d9oNKhNhjxVZQKe9JN6NazF0ID/CAIJrTpOwC1mjbn3DgiO8QwRyQSg16Ps/v34NqpE5C7uMBFUfh5W29Hx2Dv7t3o4y7FtKrebJIgmzGYBCy7l4qV8Vlo16kTGtYOR1ZGOqo1aIS2TwyEwpVd1kT2imGOSGQZKhWOb9uM+3duQ+nmXuhiq4Ig4MKVqzhx9Cj6eskxNcwbngx19JiMgoA/4tLw7f0MNGjeAm2bN4dGnQ43L290HjIMgaFhYpdIRIVgmCOyE/H3YnB060akJSbCzavgtekAc6iLuHYdx44cRi8POaZV9YK3E09mTkWjMZrw071UrEnIQp0GDdGudSuYtBrInV3Qsldf1GzcFNJCnoNEZB8Y5ojsiCAIiLx8CSd2/gmDTgelu0ehc5QEQcCl6zdx4ugRtFIIeLuqNyopOKeOrFPpDfguOhXbVXo0a9kKLZs2hj4zE5AAjTp1QYM2HXgqLiIHwzBHZIcMej0uHz+Ci4cPQSqTFXpasGw3I6Nx9O9DqCpo8V5VL57zlSzuZ+nwZVQqzmglaN2+AxrVqQ29NgsGnQ7hzVuiebdecFEWPm+TiOwPwxyRHdOo1Ti1ezvuXI6AXO5U5FB372E8Dh86CGlqCiZUcsOAQA+e97WCupquwayoVNyTKdGhc2fUqhoGvU4HrToDoXXqoc0TA+Dm6SV2mURUAgxzRA5AnZaKM/t2I/LyJcjk8iKHuozMTJw8fQY3rl5BD09nTArxQBWlcylXS2LLNJiw/kEa1sRnQeHnj46dOqNyYAB0Gg20WVkIDAlBuwFPwicwSOxSicgGGOaIHEhmehrO7t+LO5cuQiqVQOletDNDCIKA63ciceqf43DNzMCkSm7oE+gOKdcMK1fOqjKxKDYD1/USNGzSDM0bN4SLszM0ajUMBj2q1KiFFj37MMQRlTMMc0RlbNKkSfj1119x4cIFVK1a9bFuIysjAxePHMLNc6dhMpng6uFZ5MVcUzMycPLUady+fg1P+LhgQhVPBLNhwmGl6AxYHZeODQlZ8A8JQavWbVA5MACCIECTkQEBAqo3aIxmXbvDzctb7HKJqBQwzFGF4u3tXaz9VSqVzWuwRZjLptNqcPWf47h0/CgMWi1cPT2LfL5Mk0nAlVu3cP70KQgZ6XjST4FhQe4IYrCzezqTCfsSMrAyPgsPpc5o0qIlGtetC7lcBkEQoE5LhVzuhDotW6Nh+05c8JeonGOYowpl1qxZeS5bvHgx0tLSMGPGjDzb3n33XZvX8ODBA6SlpaF69epwstESEAa9HpFXIhBx5G+kJSfBycUFLsqiv4FrdXpcvnETVy6eh5CRjsG+CgwLdueInR1RG4zYEZ+B9UkaxJmkqBFeG00aN4aft7l5waDXI0udARelEo07dEGdFq0gd+b8SKKKgGGOKrxGjRohJiamVEbhxJAS/xAXj/yNmOtXYTIaoPTwLNbirwx29iNFZ8CW+AxsTNQgVeaM8Hr10bhBfXh5uAMwz4XMSk+DAMC/chU07tgVlWvULPLoLBGVDwxzVOHlF+aSkpLw1VdfYfv27Xjw4AE8PT3RsWNHvP3226hfvz4A85vp8OHDsWfPHvz000946qmnLNcXBAHDhg3D3r17c20r6DDr0aNHsWjRIpw6dQqpqakICAhAs2bNMHnyZLRr165Yj0uv0+LOpYu4dORvZKSq4KxQwlmhKNZt6PR6XLp+E1cuXoAhPQ2tPZzQz1eBtj6ucJHx7AC2JggC7mTqsCMxE38ma6BXuKJOw0ZoVLcO3HKsAafXaaHNVMPF1R11W7ZG7Rat4FrEZhgiKn8Y5qjCsxbmEhMT0atXL9y9excdO3ZEq1atEBUVhS1btsDFxQUbNmywhKv4+Hh06NABWq0WR44cQViY+VyWixYtwnvvvYdnnnkG33//veW28wtzixcvxsyZM6FUKjFgwACEhIQgNjYWJ06cQN++fTF79uzHenyCIJhH6/4+gJibN2AyGKD08IBMXrxTf5lMJkTFxuHmjRu4FxUJhUGHbl4u6OunQGNPJTtjH4MgCLibqcP+pEzsTtUhVi/Axz8ANerUQYPwWnDJcZhUMJmgTk+DVCpFcNXqaNypKwJDw4rc+EJE5RfDHFV41sLc5MmT8csvv2DatGn48MMPLZfv3r0bw4cPR40aNXD69GnL4cu9e/di2LBhaN26NbZv347Lly+jZ8+eCA0NxaFDh+Du7m65DWthLiIiAl26dEFQUBB27tyZK+QJgoAHDx6gUqVKJX6sOq0G92/exNVTx5EUFwuTwfhYwQ4wj9rdio7B7evX8DA2FgESE3p7u6CzjxJ1PFwgY8iw6q5ai/3Jmdit0uG+XoCPvz+qhddGePVq8MrxPAHMATorPQ2ABG6enqjXpj1qNm7KMzUQUS48KzfRI3Q6HTZs2ABfX1+89dZbubb17t0b3bp1w4EDB3DixAm0b98eANCzZ0+8/PLLWLx4MT7++GPs2rULgiBg+fLluYJcflauXAmTyYT33nsvz6FXiURikyAHAM4uClRv2AjVGzYqcbBzdnJC/Zo1UL9mDQBARmYWrty5gz2Rd5EQmQCZQYfaSjnausvR0kuBeu6KCnUWCkEQEJWlw4VUDU6pDbiQoYdKkMDL1xfVwpujQ43qecIbAJiMRmSmp0MilcDTxxf1uvdG9QYNuawIEeWLYY7oETdu3IBGo0GnTp3gamVJh06dOuHAgQOIiIiwhDkA+Pjjj3HkyBEsWLAAAPDJJ5+gadOmRbrPM2fOAAC6d+9e8gdQRAUFO6PBCIWbK5yci35uV3dXJVo0bIAWDRsAMIeZhJQUnLkfi23RUUiIiodUr0MNhRzt3OVo5O6MGm4u8HeWOfyhQo3RhMvpGpxL0+KU2oBbWQboZXJ4efsgKKQuqlSuhIFBgbkOm+ZkNBiQlZEOqUwG74AgNO7cFWG160FZhA8CREQMc0SPSE9PBwAEBARY3R4UFJRrv2wuLi7o1asXIiIioFAo8Pzzzxf5PtPS0iCRSBAcHPyYVZfMo8Eu9vYt3Im4gPh70dBpNBBMApTu7sU6HCuRSBDo64tAX1+gUUMA5oCXqFLh4v1Y7I+LQ3JMEtTqFMhNRrhKBNRQOqG2ixThSjlquDmjqtLZLhotNEYTorN0iMrU467GgNtaE+5qDEjSm2CUyiBxckZgUBCCaoeiZqVgtPXxgbSAUUiTyQRNRgZMJiPkTs7wCQ5Gy159EVKrdrGbVIiIGOaIHuHhYe4KTEhIsLo9Pj4+137ZTp8+je+++w6+vr5ITk7GtGnTsGLFiiLdp5eXl2VuXOXKlUtQfck5uyhQrX5DVKvfEIIgIEOlQuzdW7gbcQHJDx5Ar9NCIpVC6e5RrCVPAHPAC/DxQYCPD/DvCF42vd6ARJUKkSkpOJeYCFViApKjUiAY9JAJAqSCALkgwMdZBl+5FP5OUvjLgAC5BL7OMnjJZZBJJJBKYP6CBBIJIAUglUggBSCRABJIoDGZkGEwf6kNRqQZBSQbBSQaBCQbBCTrjUg1mKAVJDBIpZA5O8PH2xuevlXgVc0Pft5e6OLtDTelokijiiaTCRp1BkxGA2ROzvD09UPtZi0QEl4HPoFBXEqEiEqEYY7oEbVr14ZCocDZs2eRmZmZ51DrkSNHAJgbJ7Klp6dj3LhxkMvl+OuvvzB79mxs2rQJ3bt3x3PPPVfofbZo0QLnzp3D/v37MXr0aNs+oBKQSCTw8PFBHZ9WqNO8FUwmE1IT4hF98xqirlxGenIyjAYDBJMRzkpXOLm4PPYhUycnOSoF+KNSgD9QO9zqPiaTCZkaDdRZWVBnZiEqKwtXMrOgVWdAk5UJwSQAggDBJEAQBAgwf2/KcRkgwMnJGU4uLnB2c4GTQgEnZxcolQq4KRSoplSigVIJV4VLscNqNqPBAE2mGoLJBJmTEzx9/VCrSTOE1q4L36BghjcisimGOaJHODs7Y+jQofjll1/wzTff4P3337ds27t3L/bt24caNWqgbdu2lsvffPNNREZG4quvvkL9+vXx3Xff4ezZs3jnnXfQrl071KpVq8D7HDNmDFasWIH//e9/6Ny5s2V5E8C23awlJZVK4RMUDJ+gYDTp2BUmoxHpKclIjL2P+3duIen+PWRmpMNoMMBkNMJZqYSzS9FGr4p6/+6urnB3dQX8bHKTJSIIAvRaLbRZmZBKpJDIpFC4ucM7IBBB1aqhSo1w+AQGPVa3MBFRUXFpEqrw8ltnrmfPnoiMjETnzp3RsmVLREdHY/PmzXB2ds61zty6deswceJE9O3bF7/99pvlNo4ePYqBAweicePG2LNnj+XUXfmtM7d06VLMmDEDrq6u6N+/P0JDQ/Hw4UMcO3YMvXv3fux15sqayWRCekoykuPicP/2TSTcj0Fmetq/I3gmCCYT5M7OcHJRQCaXO0Tzg8lohF6nhV6rNY+2yeWQyZ3g6uEB38pVULlaDfhVqgwPXz/IbXSKNiKiouLHRSIr/P39sW/fPnz55ZfYvn07jh8/Dk9PT/Tv3x8zZsywnAEiMjIS06dPR3BwMBYtWpTrNjp06IBp06Zh7ty5+PTTT/HZZ58VeJ8TJkxAvXr1sHDhQuzZswdqtRoBAQFo0aIFhgwZUmqP1dakUim8/Pzh5eeP6g3Nh6IFQYA2KwvqVBXSVSlIjotD8sM4ZKQkQ5uVBZ3W3GRhMhkhmIR/w5IcUrnM/K+0dDpeBUGAyWiE0WCA0WCAXqczz6+TSQGJBM4uCjgpFPDw9IJXQAB8AoLg5R8AT19fuHp6OUQQJaLyjyNzRCQ6o8GAzPQ0qFNToclUQ52WhqyM9H+/MqDJVMOo18OQ4wvI8dKV/d9Hs5WQ4zKJxBwSZTLI5E6Qy+WQOTlD4eoKhbs7XN094RMYCHdvb7h6eBW7e5eISCwMc0TkcARBMB+yFf5tahDML2MCsr+HZZtUKoXcyYlNB0RUbvFjJxE5HIlEAgnDGRERAPMSTERERETkoBjmiIiIiBwYwxwRERGRA2OYIyIiInJgDHNEREREDoxhjoiIiMiBMcwREREROTCGOSIiIiIHxjBHRERE5MAY5oiIiIgcGMMcERERkQNjmCMiIiJyYAxzRERERA6MYY6IiIjIgTHMERERETkwhjkiIiIiB8YwR0REROTAGOaIiIiIHBjDHBEREZEDY5gjIiIicmAMc0REREQOjGGOiIiIyIExzBERERE5MIY5IiIiIgfGMEdERETkwBjmiIiIiBwYwxwRERGRA2OYIyIiInJgDHNEREREDoxhjoiIiMiBMcwREREROTCGOSIiIiIHxjBHRERE5MAY5oiIiIgcGMMcERERkQNjmCMiIiJyYAxzRERERA6MYY6IiIjIgTHMERERETkwhjkiIiIiB8YwR0REROTAGOaIiIiIHBjDHBEREZEDY5gjIiIicmD/BwXnayqYl+QBAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Data classification using pie chart\n", + "def performDataDistribution(df):\n", + " plt.style.use('fivethirtyeight')\n", + "\n", + " tot = df.shape[0]\n", + " num_non_toxic = df[df.label==0].shape[0]\n", + " slices = [num_non_toxic/tot,(tot - num_non_toxic)/tot]\n", + " labeling = ['Non-Toxic','Toxic']\n", + " explode = [0.2,0]\n", + " plt.pie(slices,explode=explode,shadow=True,autopct='%1.1f%%',labels=labeling,wedgeprops={'edgecolor':'black'})\n", + " plt.title('Number of Toxic vs. Non-Toxic Text Samples')\n", + " plt.tight_layout()\n", + " plt.show()\n", + "\n", + "performDataDistribution(df)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "id": "eA9xaYfh78M-" + }, + "outputs": [], + "source": [ + "#removing pattern\n", + "def remove_pattern(input_txt,pattern):\n", + " if(type(input_txt)==str):\n", + " r= re.findall(pattern,input_txt)\n", + " for i in r:\n", + " input_txt = re.sub(i,'',input_txt)\n", + " return input_txt\n", + " else:\n", + " return \"\"" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 342 + }, + "id": "BkXCWGU178P0", + "outputId": "840722be-c424-42f6-bc2e-d616a1e584eb" + }, + "outputs": [ + { + "ename": "AttributeError", + "evalue": "'DataFrame' object has no attribute 'append'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mAttributeError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m~\\AppData\\Local\\Temp\\ipykernel_11192\\356777283.py\u001b[0m in \u001b[0;36m?\u001b[1;34m()\u001b[0m\n\u001b[0;32m 26\u001b[0m \u001b[0mcombi\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;34m'tidy_tweet'\u001b[0m\u001b[1;33m]\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mtokenized_tweet\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 27\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 28\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mcombi\u001b[0m\u001b[1;33m,\u001b[0m\u001b[0mdf\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 29\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 30\u001b[1;33m \u001b[0mcombi\u001b[0m\u001b[1;33m,\u001b[0m\u001b[0mdf\u001b[0m\u001b[1;33m=\u001b[0m\u001b[0mperformDataSetCleaning\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdf\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 31\u001b[0m \u001b[0mcombi\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mhead\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32m~\\AppData\\Local\\Temp\\ipykernel_11192\\356777283.py\u001b[0m in \u001b[0;36m?\u001b[1;34m(df)\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0mperformDataSetCleaning\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdf\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[0mdf\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;34m'headline'\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mdtype\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 3\u001b[0m \u001b[0mdf\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;34m'length_headline'\u001b[0m\u001b[1;33m]\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mdf\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;34m'headline'\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mstr\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mlen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 4\u001b[1;33m \u001b[0mcombi\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mdf\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mdf\u001b[0m\u001b[1;33m,\u001b[0m\u001b[0mignore_index\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mTrue\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 5\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 6\u001b[0m \u001b[1;31m# removes @user\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 7\u001b[0m \u001b[0mcombi\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;34m'tidy_tweet'\u001b[0m\u001b[1;33m]\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mvectorize\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mremove_pattern\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mcombi\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;34m'headline'\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;34m\"@[\\w]*\"\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mc:\\Users\\jetha\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\pandas\\core\\generic.py\u001b[0m in \u001b[0;36m?\u001b[1;34m(self, name)\u001b[0m\n\u001b[0;32m 6200\u001b[0m \u001b[1;32mand\u001b[0m \u001b[0mname\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[1;32min\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_accessors\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 6201\u001b[0m \u001b[1;32mand\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_info_axis\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_can_hold_identifiers_and_holds_name\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mname\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 6202\u001b[0m ):\n\u001b[0;32m 6203\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[1;33m[\u001b[0m\u001b[0mname\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m-> 6204\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mobject\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m__getattribute__\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mname\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[1;31mAttributeError\u001b[0m: 'DataFrame' object has no attribute 'append'" + ] + } + ], + "source": [ + "def performDataSetCleaning(df):\n", + " df['headline'].dtype\n", + " df['length_headline'] = df['headline'].str.len()\n", + " combi = df.append(df,ignore_index=True)\n", + "\n", + " # removes @user\n", + " combi['tidy_tweet'] = np.vectorize(remove_pattern)(combi['headline'],\"@[\\w]*\")\n", + " # removes extra letters \n", + " combi['tidy_tweet'] = combi['tidy_tweet'].str.replace(\"[^a-zA-z#]\",\" \")\n", + " # removes all those words with size less than 3 \n", + " combi['tidy_tweet']= combi['tidy_tweet'].apply(lambda x : ' '.join([w for w in x.split() if len(w)>3]))\n", + "\n", + " # calculate length of headline after cleaning\n", + " combi['length_tidy_tweet'] = combi['tidy_tweet'].str.len()\n", + "\n", + " # Applied Tokenization\n", + " tokenized_tweet = combi['tidy_tweet'].apply(lambda x: x.split()) #creates a list\n", + "\n", + " # Applied Lemmatization \n", + " nltk.download('wordnet')\n", + " lemmatizer = nltk.stem.WordNetLemmatizer()\n", + " tokenized_tweet = tokenized_tweet.apply(lambda x: [lemmatizer.lemmatize(i) for i in x])\n", + "\n", + " for i in range(len(tokenized_tweet)):\n", + " tokenized_tweet[i] = ' '.join(tokenized_tweet[i])\n", + " combi['tidy_tweet'] = tokenized_tweet\n", + "\n", + " return combi,df\n", + "\n", + "combi,df=performDataSetCleaning(df) \n", + "combi.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "l3TZUOPm78Uj", + "outputId": "4305c4b0-16f4-44b6-bba0-cc74f36bfb41" + }, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'combi' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32mc:\\Aditya\\College Code\\VIPUL SIR\\Project\\Lasthope\\Model Training\\LY_project_Grp_No_51_TFIDF.ipynb Cell 6\u001b[0m line \u001b[0;36m3\n\u001b[0;32m 27\u001b[0m pickle\u001b[39m.\u001b[39mdump(tfidf_vector\u001b[39m.\u001b[39mvocabulary_, \u001b[39mopen\u001b[39m(filename, \u001b[39m'\u001b[39m\u001b[39mwb\u001b[39m\u001b[39m'\u001b[39m))\n\u001b[0;32m 29\u001b[0m \u001b[39mreturn\u001b[39;00m X_train,X_test,y_train,y_test,testing_data,filename,training_data,content_list\n\u001b[1;32m---> 31\u001b[0m x_train,x_test,y_train,y_test,testing_data,filename,training_data,content_list \u001b[39m=\u001b[39m performTestDataSplitting(\u001b[39m0.33\u001b[39m,\u001b[39m42\u001b[39m,combi,df)\n", + "\u001b[1;31mNameError\u001b[0m: name 'combi' is not defined" + ] + } + ], + "source": [ + "#Dataset splitting and applying feature extraction\n", + "def performTestDataSplitting(x,y,combi,df):\n", + " X_train, X_test,y_train,y_test = train_test_split(combi['tidy_tweet'], \n", + " combi['label'], \n", + " test_size=x,random_state=y)\n", + " print('Number of rows in the total set: {}'.format(combi.shape[0]))\n", + " print('Number of rows in the training set: {}'.format(X_train.shape[0]))\n", + " print('Number of rows in the test set: {}'.format(X_test.shape[0]))\n", + "\n", + " my_file = open(\"/content/stopwords.txt\", \"r\")\n", + " content = my_file.read()\n", + " content_list = content.split(\"\\n\")\n", + " my_file.close()\n", + "\n", + " # Instantiate the TfidfVectorizer method\n", + " tfidf_vector = TfidfVectorizer(stop_words = content_list ,lowercase = True)\n", + "\n", + " # Fit the training data and then return the matrix\n", + " training_data = tfidf_vector.fit_transform(X_train.values.astype('U'))\n", + " print(X_train.shape)\n", + " print(training_data.shape)\n", + "\n", + " # Transform testing data and return the matrix \n", + " testing_data = tfidf_vector.transform(X_test.values.astype('U'))\n", + "\n", + " filename = 'tfidf_vector_vocabulary.pkl'\n", + " pickle.dump(tfidf_vector.vocabulary_, open(filename, 'wb'))\n", + "\n", + " return X_train,X_test,y_train,y_test,testing_data,filename,training_data,content_list\n", + "\n", + "x_train,x_test,y_train,y_test,testing_data,filename,training_data,content_list = performTestDataSplitting(0.33,42,combi,df)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "pcsJD_J378XO", + "outputId": "215948e2-f3d4-4f77-d845-49a971c0ab9c" + }, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'training_data' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32mc:\\Aditya\\College Code\\VIPUL SIR\\Project\\Lasthope\\Model Training\\LY_project_Grp_No_51_TFIDF.ipynb Cell 7\u001b[0m line \u001b[0;36m8\n\u001b[0;32m 79\u001b[0m \u001b[39m# Return a dataframe of the results\u001b[39;00m\n\u001b[0;32m 80\u001b[0m \u001b[39mreturn\u001b[39;00m final_results\n\u001b[1;32m---> 82\u001b[0m final_results\u001b[39m=\u001b[39mpipeline(training_data,y_train,testing_data,y_test)\n", + "\u001b[1;31mNameError\u001b[0m: name 'training_data' is not defined" + ] + } + ], + "source": [ + "# Applying ML models\n", + "def pipeline(X_train, y_train, X_test, y_test): \n", + " '''\n", + " inputs:\n", + " - learner: the learning algorithm to be trained and predicted on\n", + " - X_train: features training set\n", + " - y_train: income training set\n", + " - X_test: features testing set\n", + " - y_test: income testing set\n", + " '''\n", + " \n", + " # make a list of models\n", + " learner_list = [LinearSVC(),LogisticRegression(),MultinomialNB(),DecisionTreeClassifier(), \n", + " AdaBoostClassifier(), BaggingClassifier(), SGDClassifier()]\n", + " # Get length of Training Data:\n", + " size = len(y_train)\n", + " \n", + " results = {}\n", + " final_results = []\n", + "\n", + " for learner in learner_list:\n", + " \n", + " print(learner)\n", + " # Store the learner name:\n", + " results['Algorithm'] = learner.__class__.__name__\n", + "\n", + " # Fit the learner:\n", + " start = time() # Get start time\n", + " print(\"Training {}\".format(learner.__class__.__name__))\n", + " learner = learner.fit(X_train, y_train)\n", + " end = time() # Get end time\n", + "\n", + " # making pickle file here for my various classifier\n", + "\n", + " filename = learner.__class__.__name__+\".pkl\"\n", + " pickle.dump(learner, open(filename, 'wb'))\n", + "\n", + "\n", + " # Store the training time\n", + " results['Training Time'] = end - start\n", + "\n", + " start = time() # Get start time\n", + " predictions_test = learner.predict(X_test)\n", + " predictions_train = learner.predict(X_train)\n", + " end = time() # Get end time\n", + "\n", + " # Store the prediction time\n", + " results['Prediction Time'] = end - start\n", + "\n", + " # Compute the Accuracy on Test Set\n", + " results['Accuracy: Test'] = accuracy_score(y_test, predictions_test)\n", + "\n", + " # Compute the Accuracy on Training Set\n", + " results['Accuracy: Train'] = accuracy_score(y_train, predictions_train)\n", + "\n", + " # Compute the F1 Score on Test Set\n", + " results['F1 Score: Test'] = f1_score(y_test, predictions_test)\n", + "\n", + " # Compute the F1 Score on Training Set\n", + " results['F1 Score: Train'] = f1_score(y_train, predictions_train)\n", + "\n", + " # Compute the Precision on Test Set\n", + " results['Precision: Test'] = precision_score(y_test, predictions_test)\n", + "\n", + " # Compute the Precision on Training Set\n", + " results['Precision: Train'] = precision_score(y_train, predictions_train)\n", + "\n", + " # Compute the Recall on Test Set\n", + " results['Recall: Test'] = recall_score(y_test, predictions_test)\n", + "\n", + " # Compute the Recall on Training Set\n", + " results['Recall: Train'] = recall_score(y_train, predictions_train)\n", + "\n", + " # Success\n", + " print(\"Training {} finished in {:.2f} sec\".format(learner.__class__.__name__, results['Training Time']))\n", + " print('----------------------------------------------------')\n", + " \n", + " final_results.append(results.copy())\n", + " # Return a dataframe of the results\n", + " return final_results\n", + "\n", + "final_results=pipeline(training_data,y_train,testing_data,y_test)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 368 + }, + "id": "vJR0R6ef9jol", + "outputId": "7b3f5235-298a-4f99-faad-e7f6427673e2" + }, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
AlgorithmAccuracy: TestPrecision: TestRecall: TestF1 Score: TestPrediction TimeAccuracy: TrainPrecision: TrainRecall: TrainF1 Score: TrainTraining Time
0DecisionTreeClassifier0.9550180.9586520.9719240.9652430.0385330.9969280.9963240.9989200.9976204.590763
1LinearSVC0.9526070.9650510.9610560.9630490.0025570.9891880.9934310.9897690.9915970.128767
2BaggingClassifier0.9506110.9610960.9620910.9615930.3450740.9932830.9940990.9954880.99479338.622534
3LogisticRegression0.9338990.9471240.9501880.9486530.0094090.9605600.9683020.9705790.9694391.535226
4SGDClassifier0.9320700.9581120.9351790.9465070.0031240.9596590.9741580.9629540.9685230.087348
5MultinomialNB0.8890000.8747950.9654550.9178920.0064650.9270590.9155550.9769330.9452490.014818
6AdaBoostClassifier0.8286360.9655060.7605120.8508360.5425110.8336000.9717150.7640590.8554663.169378
\n", + "
\n", + " \n", + " \n", + " \n", + "\n", + " \n", + "
\n", + "
\n", + " " + ], + "text/plain": [ + " Algorithm Accuracy: Test Precision: Test Recall: Test \\\n", + "0 DecisionTreeClassifier 0.955018 0.958652 0.971924 \n", + "1 LinearSVC 0.952607 0.965051 0.961056 \n", + "2 BaggingClassifier 0.950611 0.961096 0.962091 \n", + "3 LogisticRegression 0.933899 0.947124 0.950188 \n", + "4 SGDClassifier 0.932070 0.958112 0.935179 \n", + "5 MultinomialNB 0.889000 0.874795 0.965455 \n", + "6 AdaBoostClassifier 0.828636 0.965506 0.760512 \n", + "\n", + " F1 Score: Test Prediction Time Accuracy: Train Precision: Train \\\n", + "0 0.965243 0.038533 0.996928 0.996324 \n", + "1 0.963049 0.002557 0.989188 0.993431 \n", + "2 0.961593 0.345074 0.993283 0.994099 \n", + "3 0.948653 0.009409 0.960560 0.968302 \n", + "4 0.946507 0.003124 0.959659 0.974158 \n", + "5 0.917892 0.006465 0.927059 0.915555 \n", + "6 0.850836 0.542511 0.833600 0.971715 \n", + "\n", + " Recall: Train F1 Score: Train Training Time \n", + "0 0.998920 0.997620 4.590763 \n", + "1 0.989769 0.991597 0.128767 \n", + "2 0.995488 0.994793 38.622534 \n", + "3 0.970579 0.969439 1.535226 \n", + "4 0.962954 0.968523 0.087348 \n", + "5 0.976933 0.945249 0.014818 \n", + "6 0.764059 0.855466 3.169378 " + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def performFinalResults(final_results):\n", + " results = pd.DataFrame(final_results)\n", + " results = results.reindex(columns = ['Algorithm', 'Accuracy: Test', 'Precision: Test', 'Recall: Test', 'F1 Score: Test', 'Prediction Time',\n", + " 'Accuracy: Train', 'Precision: Train', 'Recall: Train', 'F1 Score: Train', 'Training Time'])\n", + "\n", + " results.sort_values(by = 'F1 Score: Test', inplace = True, ascending = False)\n", + "\n", + " return results\n", + "\n", + "results=performFinalResults(final_results)\n", + "results.reset_index(drop = True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 191 + }, + "id": "l2kkMh919jtT", + "outputId": "58d39258-0ba7-4293-ef90-9ee2288793bb" + }, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Accuracy: TestPrecision: TestRecall: TestF1 Score: TestPrediction TimeAccuracy: TrainPrecision: TrainRecall: TrainF1 Score: TrainTraining Time
min0.8286360.8747950.7605120.8508360.0025570.8336000.9155550.7640590.8554660.014818
max0.9550180.9655060.9719240.9652430.5425110.9969280.9963240.9989200.99762038.622534
\n", + "
\n", + " \n", + " \n", + " \n", + "\n", + " \n", + "
\n", + "
\n", + " " + ], + "text/plain": [ + " Accuracy: Test Precision: Test Recall: Test F1 Score: Test \\\n", + "min 0.828636 0.874795 0.760512 0.850836 \n", + "max 0.955018 0.965506 0.971924 0.965243 \n", + "\n", + " Prediction Time Accuracy: Train Precision: Train Recall: Train \\\n", + "min 0.002557 0.833600 0.915555 0.764059 \n", + "max 0.542511 0.996928 0.996324 0.998920 \n", + "\n", + " F1 Score: Train Training Time \n", + "min 0.855466 0.014818 \n", + "max 0.997620 38.622534 " + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results.describe().loc[['min', 'max'], :]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 462 + }, + "id": "sMNUNrSR9jwb", + "outputId": "2bec9898-a0e4-4cec-8b18-ce322f3f545e" + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA+QAAAG9CAYAAACcQ7wHAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzdeVhV1f7H8Q8zDiggiLOo5RBOmFaKRlmOmQMOOU9pqWWWFamllWN5s5+zSaVWDnktZ705VXa7mPMc5Zgpg4CAIigInN8fXPblJAioh630fj1Pz3POPmvv/T3nLHr8nL3W2nYWi8UiAAAAAABQqOzNLgAAAAAAgL8jAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADgEkuXLigWrVqqVatWmrZsqXZ5RjGjBlj1LV69Wqr18LCwvT888/rscces2qzevVq4/mYMWNMqvx/WrZsadRz4cIFs8vBfSi3vn433Wt/N1lut645c+YY+82ZM8eGFQJA0eFodgEAUNSkpqZq9erV2rJli3777TclJibK09NTVapU0dNPP62OHTvK09PT7DIL7OrVqxo6dKhiYmLMLkXbt29XWFiYJOnpp59WnTp1TK7o1lJTU7VkyRJt2rRJ586dU0ZGhtzd3VWuXDk99NBD6t69u/z8/MwuE/91p33922+/1bhx44zn9evX16pVq+5Weaa5cOGC1qxZI0mqWLGigoKCTK4IAO5/BHIAuIvOnTunESNG6NSpU1bbL168qIsXL2rv3r2SpIEDB5pQXf4MGzZM3bp1kyRVq1bN2H706FEjoFStWlUTJkyQq6ur0WbZsmWSJC8vL5vXuH37dqtg8NdAPmvWLKWkpEiSypYta/N68jJ8+HD9/PPPVtuy+sThw4fl6+tLIL+H5NXX87Jhwwar50eOHNGff/6pKlWq3PVabSEwMDDHv+fw8HDNnTtXkvTII48QyAHgLiCQA8BdkpiYqCFDhujPP/+UJHl6emrQoEGqW7eubty4oaNHj+rbb781ucq8+fr6ytfX96btFy9eNB77+/urefPmVq+XKVPG1qXlW7169cwuwbBr1y4jjFeqVEkvvfSSypcvr0uXLunMmTP64YcfTK7w3pScnKzixYubcu68+vqtREdHa/fu3Tdt37Bhg1566aW7Up+tpKamyt7eXmXKlLmn/p4BoCgjkAPAXbJo0SIjjBcvXlyrVq1SpUqVjNcDAwP1wgsvKCoq6pbHiY2N1cyZM3Xs2DFdvHhRV65ckYuLi6pVq6aOHTuqb9++cnBwMNr//vvvmjdvng4cOKD4+HgVK1ZM3t7eqlu3rnr16qVGjRpJyry6NWfOHO3atUuXLl2Ss7OzvLy8VKdOHXXu3FlPPvmkpMw55FlXn6dNm6agoCC1bNlS4eHhxjnXrl2rtWvXSpJ27NihPXv2aOzYsZKkLl266IMPPjDaJiYmavHixdq+fbvOnz8vi8WiChUqKDAwUG+99ZYk6fTp01q4cKHCwsIUHR2tq1evqnjx4nrwwQfVo0cPde7cWVLmkNmnnnrK6vMaO3asce6c6t2xY4fV9/D9999r6dKlOn78uJKSkuTp6alHHnlEL774oh588EGj3erVq63eU8eOHTVr1iyFhYWpVKlSeu655/Tyyy/Lzs7ult/nsWPHjMcDBgy46ariK6+8omvXrhnPs7/HihUr6vvvvzde69evn/bs2SNJ+vLLL/Xoo49KkmrVqmW0+eGHHzRp0iTt2rVLJUuWVJ8+fTRs2DCdOHFCU6dO1aFDh+Tm5nZT/bt371b//v0lZV79HDlypD788EOdPHlSlStX1muvvaann35aW7du1Zw5c3T27FlVqlRJo0ePVuvWrY3z5/e7zPLX2qdNm6bQ0FCVLl1arVu31uLFiyVJEyZMUJ8+fazaDhs2TJLUoUMHzZgx45bfQ1xcnD799FN9//33ioiIkKOjo2rUqKGOHTuqd+/ecnTM/CdRXn09e1/KyebNm5WRkWHUtXHjRknSxo0bCxTIDxw4oOnTp+vXX3+Vh4eHevToIX9/fw0aNEhS5nf01VdfGe2Tk5O1aNEibdmyxfj/UJUqVdSmTRs9//zzKlasmNE2ez8KCQnRrl27tHHjRsXGxmr79u05/j1n30eS9uzZY3x3f60ly9atWzV//nydPn1a3t7eGjJkiHr37m28/te/sSeffFKzZ8/W+fPn9eCDD2rcuHF6+OGH9fXXX+vzzz9XZGSksb1JkybGceLj4zV37lzt3LlTUVFRcnR0lKenp2rVqqU2bdrc1OcA4F5CIAeAu2TTpk3G44EDB+b4D3dnZ+c8h63GxMTcNN80LS1Nx44d07Fjx3TixAlNmTJFUmbI6NOnjxITE422iYmJSkxM1JkzZ1StWjU1atRIN27cUL9+/ayCxo0bN5SUlKRz586pZMmSRiC/my5evKi+ffsaASHL6dOnFR0dbQTys2fPat26dVZtrly5ov3792v//v2KiIjQiBEj7rie2bNna968eTfVuGHDBm3dulULFixQQEDATfvt2bNH69evV3p6uqTM72ju3LmqUKGCunbtestzZr/Ku3LlSpUvX15NmjSRu7u7sT17WLpTAwYMMD7va9euaebMmYqPj9eaNWt05coVSdL169dvWf+5c+c0ZMgQY9j/qVOnNHLkSA0bNkzz58832p09e1avvvqqNm/ebIyquJPvsn///jp//rwkqXTp0urevbsRyNetW2cVyHfs2GE87tix4y0/k4iICPXq1cvqx7DU1FQdPXpUR48e1c6dO7Vw4UIjlN+J7MPVhw4dqgsXLujQoUM6c+aMjh8/nq+pCUeOHNHAgQONzz8qKkqzZ89W7dq1c2yfmJio3r1768SJE1bbT5w4oRMnTmj79u1atmyZSpQocdO+kyZNMj7zu+lf//qXMbxdyvxB8P3331f16tX12GOP3dR+3759Wrt2rSwWi6TMH7KGDBmiXr166fPPPzfa/frrrxo+fLh27Nih0qVLS8qcEnLw4EGjzY0bNxQeHq7w8HBdu3aNQA7gnkYgB4C7IDk5WefOnTOeP/LII7d9LE9PT40ePVq+vr5yc3OTg4ODYmNjNWvWLJ07d06rV6/WK6+8Ih8fH+3evdsI488884y6du2q1NRUhYeH6+effzaCXlhYmBHGmzZtqkGDBsnOzk6RkZH65Zdf5ObmdsuaZs2ape3bt+uTTz6RJD3++ON68cUXJd16jvb7779vhMMyZcpo+PDhqlatms6dO6fNmzcb7SpXrqzg4GBVqVJFJUuWlJ2dnSIiIvSPf/xDcXFx+uyzzzRkyBCVLVtWy5Yt08KFC/XTTz9Jypzz3qJFC0m65RzfI0eOGGHcwcFBI0aMUL169bR27Vpt3rxZKSkpGjNmjHbs2CFnZ2erfcPDw/XUU0+pe/fu2rBhg/Hjy4oVK/IM5I899pgcHByUnp6uU6dO6eWXX5aUOTe5WbNm6tmzZ65B63bY29tr3rx52r17t7788ktJ0hdffKHq1atr2rRp+vnnn7VixYpb1n/x4kU9+eST6tWrlxYtWqRffvlFGRkZmj9/vp566in16NFDISEh2r9/v9LT0/XPf/5TwcHBkvL/Xf71M5akS5cuaezYsXrwwQd14cIF1ahRQ40bN9a+fft0+PBh/fHHH/L19VVGRoYx1N/T0zPHH1Gye//9940w7ufnpxEjRig+Pl4fffSREhISjM+kX79+t93XpcwfI7JGRFSvXl21a9dWu3btdOjQIUmZYT0/gXzatGlGGK9Xr56GDRum8PBwffzxxzm2/7//+z8jjFeuXFmjR4+WxWLRjBkzFB4errCwMM2ZMyfHFdPPnz+vfv36KTAwUBERETmGdkl65513tGfPHk2ePFmSVKdOHb3zzjuSlOP/P06fPq1u3bqpVatWWrJkiXbt2iUps8/lFMjPnz+voKAgtW3bVh999JFOnDih5ORkff755+revbuefvppffjhhzpz5owSExO1ceNG9enTR3FxcUYYr1OnjkaOHCkXFxdFRUVp//79Sk1NveVnDQBmI5ADwF2Q/Qq1dGcLifn4+Kh8+fJaunSpTpw4oStXrhhDYCUpIyNDx44dk4+Pj9U/hH18fOTr66sKFSrIzs5Offv2NV7L3s7b21u+vr6qVKmSHBwc9Nxzz+VZU7169XTy5EnjeZkyZdS4ceNb7nP58mWr+dHz589Xw4YNJUnNmze3utr5wAMPaO/evfrss890+vRpXb161bhSJklJSUk6c+aMateurcaNG+ubb74xXqtatWqetUjWVy47depkBOOAgAAdPHhQkZGRxvzfrICf/f3OnDlTzs7OqlevnhHI/3rlPyc1atTQO++8o2nTplmFg3PnzuncuXNauXKlpkyZctcWyJowYYICAgLUqFEjI5BnbW/atKkaNWpkBPLc6nd1ddVHH32kkiVL6tq1a/rll18kZV7Jnz59ukqWLKnr169r//79Nx2nIN/lX40dO1Y9evSw2ta9e3ft27dPUubw8VdffVWHDh1SbGysJKldu3a3vLKdkJCgnTt3Ssr8sWL27NnG6JWMjAxNmDBBUuaQ8n79+t1WX8+SNTw9qy5Jatu2rT744ANZLBZt2rRJwcHBsrfP/a6zly5d0oEDByRJdnZ2mjlzplFvbGysQkJCrNpnZGRYnXfatGnGcO7SpUvr+eefN2rLKZB36NDBCNa3UqtWLSUkJBjP3dzcbvm51K5d2xjJ4+HhYQTy3Ppc+fLlNWXKFNnb2+vUqVOaPn26JKlChQqaNGmS7OzsdPr0aWN79ulB9vb2ysjIkIeHh6pWraoqVarI2dnZWJwSAO5l3IccAO6Cv14hio6Ovu1jffHFF3rzzTe1Z88eJSQkWIXxLFk/ADRu3Ni4Krxo0SK1bNlSDRs2VI8ePbRgwQIlJSVJylyoLeuq/fr169W6dWs1aNBAnTt31kcffaRLly7ddr25ybq9l5R5FTMrjOfkww8/1KRJk3To0CElJiZaBbgsf/3Ro6DOnj1rPPb39zceOzo6qm7dujm2y9KgQQPjim72oeaXL1/O17l79+6trVu3asyYMQoICLAaxp6RkaEpU6ZYzSO/E/Xr17+pTul/C91lv+VebvVXq1ZNJUuWlCRjWPBft3t4eOR4nDv5LnOaNtGuXTujhvXr18tisWj79u3G688++2yOx8py7tw5owYvLy+rqSQNGjQwHuf0vRdUToG8XLlyxjoOuS34ll324eN/rTenv6G4uDjj87ezs7N6T9nbx8TE6OrVqzft37Jly1vWc7uyz/HOz9+Mn5+f8UNF9j7n5+dnrHOQvc9lTb9wdXU1+kBoaKieeeYZ+fv7q3379jYbjg8AdxOBHADuguLFi6tq1arG86wrercj++JIQUFBWrRokZYtW2Y1LDcr6Lq6umrFihV67bXXFBAQoHLlyun69es6fPiwZs6cqddff11S5j/UQ0JC9Pbbb+uJJ55QpUqVlJaWprCwMH366ad6/vnnjfnRhS01NVVff/218XzIkCFasmSJli1bppo1axrbc/phorBkDwi3O8+4fPnyGjRokBYtWqQ9e/boH//4hxFArl69qj/++EOSrBaJ++t3Eh8fn+d5sn4c+utV2KwgnR/Zf2DKfpy8jnGn32VOt8xzcXEx5oiHh4dr3759xvzxypUrW/24YqYjR44Y36GUeeW5Vq1aqlWrljGSQLIO7XnJa8HAu8FWq6ln/5vJvghlbgra57L/0DN16lRNmTJFrVq1MtYyOH36tJYuXXrTGhsAcK8hkAPAXfLMM88YjxcvXmy1gFqW1NTUPIc5Z1946p133jGGH2e/FVMWi8UiDw8PDRs2TIsWLdLOnTv1n//8RxUrVpQk/fjjj7p27ZosFouKFSum/v37a+HChdqxY4f27t1rhJmwsDCrMHE3VKlSxfiHdVxcnA4fPpxju4SEBGO+rLu7u9588001bdpUDz30UK4jDbIHlfwG9ezzy7Pm9EqZoTf7Suj5vdd0fp04ceKmvuDk5KSOHTtahaGs91GqVCljW0JCgm7cuCEpc/X1M2fO3NXa7rbb+S6zyy2AZh/GPnPmTKOvdujQIc9jVq1a1ThubGys1Xdx5MgR4/Gdfu9/vfd4brZu3XrLec3ZF32MjY1VZGSk8Tx7v83i6elphF+LxWL1nrL/zXl7e+cYbgsS+rMHZTN/IPsrBwcHdevWTXPnztWWLVu0f/9+tWnTRlLmeghZUwAA4F7EHHIAuEsGDx6sjRs36s8//1RSUpJ69OihgQMHqm7dusaKzqtXr1b//v01cODAXI9TsWJFI3DMnj1bzZs317p163Tq1Kmb2h44cECTJk1S69at5evrK09PT124cMG4kmqxWJSSkqLLly9rwIABatu2rR544AF5eXkpLi5OFy5cMI6VFaTuFnd3dz3xxBPGbbteeuklDRs2TL6+vrpw4YI2btyopUuXysvLSy4uLkpJSVFCQoJCQkJUq1Ytffnll1ZzVrPLfvVt69atqlSpkhwdHVW/fv0cFwuTMoc2Z82pXrdunSpWrKi6detq/fr1RugpW7ascSuxu+Xw4cN677331KJFC7Vo0UJVq1aVxWLRtm3bFBMTIylzhMUDDzwgKfNKoYeHh+Lj43X9+nW9/vrratKkiZYvX27aKIb8up3vMj9q1qwpf39/HTx40Gr0SV7D1aXMfhgYGKgff/xRGRkZGjVqlIYNG6aEhASrW6XlJ9znJj09Xf/617+M56+88opVH5UyFzM7deqUrly5op07d6pVq1Y5HsvT01MPP/yw9u/fr4yMDL322mt64YUXdP78eas1AbLY29urQ4cOWrZsmSRp3LhxevXVVyXprr2/LNl/LMpavd3d3V0VKlRQhQoV7vj4t+upp55Sq1atVKdOHZUtW1ZJSUk6ffq08ToLuwG4lxHIAeAucXNz02effabhw4fr9OnTio2N1UcffVTg4/Ts2dO4j/eSJUu0ZMkSubq6ys/PT8ePH7dqa7FYFBYWprCwsByPFRgYKHd3d0VFRemPP/4wVo7+q5o1a97Vlb6zvPfee/r9998VHh6umJgYTZo0yXgt+9DqHj16GEP1s0KEp6enqlWrluPc3qZNmxq3w9q5c6exaNet7hNdv359jRgxQvPnz1daWppmz55t9bqLi4s++OCDXAP9nUhLS9MPP/xgtchddq+88opcXFyM5z179tSCBQskSVu2bNGWLVtUokQJlStXLs/72Jvpdr7L/OrRo4fVra38/PxUo0aNfO377rvv6rffflNUVJSOHj160/3Amzdvrl69et12bb/88ovx40rFihVzvN94UlKSsUr6hg0bcg3kkjRmzBj17dtXKSkpOnjwoIYPHy4pc2G133///ab2r776qvbu3asTJ07o3Llzeu2116xer1OnjrGI4Z2oUaOGvL29FRMToytXrhjv8+WXX9bIkSPv+Pi3KyoqSkuWLMnxNW9vbzVt2rRwCwKAAmDIOgDcRVWrVtXatWv1/vvvq2nTpvL09JSTk5O8vb3l7++v4ODgPO+ZPGDAAL3++uuqVKmSXF1d1bBhQy1atMhqDm6WatWq6cUXX1SjRo3k7e0tJycnubq66sEHH9SwYcM0c+ZMSZlXlEeOHKnHHntMPj4+cnZ2lpOTk3x9fdWvXz998cUXt1z5+Xb5+Pho7dq1Gj58uGrWrClXV1cVK1ZM1atXt1oBOTg4WIMHD5aPj4+KFSumZs2a6auvvpK3t3eOxw0MDNRrr72m8uXLF6juUaNGaf78+WrWrJlKlSolR0dHlS1bVh06dNA333yT5+2zbsfTTz+tKVOm6JlnntEDDzwgd3d3OTo6ysPDQ82bN9e8efM0aNAgq31GjBih3r17y93dXa6urgoICNCKFSvyvIf9vaCg32V+tWvXzmqecX6ujmepUKGC1qxZo0GDBsnX11fOzs4qVqyY6tatq3Hjxt3xPcizzwvPbZG07Nt//PHHHBdYy1K/fn0tXrxY/v7+cnZ2lo+Pj1566SWr+7e7uroaj0uVKqWvv/5aI0eO1IMPPigXFxe5uLioZs2aGjlypJYvX16gNQRy4+joqNmzZ1stcngvGD16tB5//HFVqFBBrq6ucnJyUsWKFRUUFKQVK1bclfcOALZiZ8lp+VMAAIB7zEsvvaTt27fL3t5eP/74o3x8fMwuySYsFkuOc7unT5+uzz//XJLUr1+/fN2uDABwb2PIOgAAuGelp6fr2rVrOnnypHEv6+bNmxfZMC5lLkQ2duxY9erVS7Vq1VJ6erp++uknLV261GhTkBECAIB7F4EcAADcs/bt26f+/fsbz+3t7e/KfOh7XWhoqEJDQ3N8bfjw4Vb3GwcA3L8I5AAA4J7n5OSkatWqadSoUUU+jLq5uem5557T/v37FRUVpZSUFLm7u6tBgwbq1auXmjdvbnaJAIC7hDnkAAAAAACYgFXWAQAAAAAwQaEF8r1792rYsGFq0aKFatWqpdWrV+e5z++//66+ffuqfv36atGihebOnSsu6AMAAAAAioJCm0OenJysmjVrqnPnznrrrbfybH/16lUNHjxYjRs31jfffKMzZ85o7NixKl68uAYPHpzrfjExiXez7CLN29uNzws5om8gJ/QL5Ia+gdzQN5Ab+gZyUhT7hbe32y1fL7RAHhgYqMDAQEnS2LFj82y/fv16Xbt2TR9++KFcXV1Vs2ZNnTlzRosXL9agQYNyvD8nAAAAAAD3i3t2DvmhQ4fUuHFjubq6GtuaN2+u6OhoXbhwwcTKAAAAAAC4c/fsbc9iY2Pl4+Njtc3Ly8t4rXLlyjnul9eQAFjj80Ju6BvICf0CuaFvIDf0DeSGvoGc/N36xT0byG9XUZtzYEtFcY4G7g76BnJCv0Bu6BvIDX0DuaFvICdFsV/cM3PIC8rLy0uXLl2y2hYbG2u8BgAAAACFyWKxKDk5URkZGWJJq7vvxo0kpaTcMLuMAsm6CZiLSzE5O7sUeP97NpA3bNhQH330kVJSUuTikvnGQkNDVbZsWVWqVMnk6gAAAAD83SQnJ8rZ2VVOTs5ml1IkOTray8kpw+wyCsxisejatSSlpd1Q8eIlC7RvoS3qlpSUpLCwMIWFhSkjI0MREREKCwtTRESEJGnGjBkaMGCA0f7ZZ59VsWLFNGbMGJ04cUJbt25VSEgIK6wDAAAAMEVGRgZhHDexs7NT8eIllZ6eVuB9Cy2QHzt2TJ07d1bnzp11/fp1zZkzR507d9bs2bMlSTExMTp//rzR3s3NTYsWLVJ0dLS6du2qiRMnavDgwRo0aFBhlQwAAAAABq4L4lZup3/YWSxZo96LhqK2CIAtFcVFE3B30DeQE/oFckPfQG7oG8jN/do3rl5NUMmS7maXUWQ5OtorLe3+G7KeJaf+kdeibvfsfcgBAAAAACjK7tlF3QAAAADgXhedbqfwZNtf1a1Y3F5lHYrU4GaIQA4AAAAAty08OUNt1l+w+Xm2dKyksm55T1Ju1aqF8Tg1NVWS5Oz8v4Xotm37d4HPHRkZoe7dO2r16k0qW9Ynz/ZffPG5Pv10gd5++z21a9ehwOf7OyGQAwAAAEARkT1wf/DBJKWnp+vtt98rtPNnZGRow4a1KlWqtNavX21aIE9LS5Oj470fd5lDDgAAAAB/A1FRUXrnnWB17NhGnTq10YcfTlFycpKkzHtpL1w4T506tVWrVo+rW7dn9c03X0uSBg7sJUnq3burWrVqoSVLPsv1HLt371JMTLTeeed9HT16RGfOnLJ6/dSpkxo9eqQ6dHha7dq11KhRI4zXIiIi9M47b6lTpzZq2/YJDR8+WJcvJ0iSmjdvrMOHDxltDxzYp8DAR43nL7/8gmbNmqGxY19X69aBWrFiqaKjLxrnatMmUCNGDNFvv4VZ1bNz5/d6/vl+atv2CXXs2EYLF85Tenq6Ondup507f7BqO2nSBE2bNjHfn3d+3Ps/GSDfSiTFyjHuYr7bW6IcVfpG/u6Vl+bpo6QSXrdbGgAAAAATpaSkaNSoYWrVqq3Gj5+olJRUTZz4jmbO/Ejjxr2rvXt367vvNikkZIl8fMopPj5OMTHRkqQlS1aoe/eOWr782zyHrK9fv0aPPdZMzZo1V40aD2rdutV67bVgSVJsbKxefvkF9enTX1OmTJejo6MOHTogSbp+/bpefvlFPfpoMy1b9q1cXV31229hcnJyyvd73LRpvaZN+0hTp36klJQUJSQkKCiomxo3flR2dtKCBXP19ttvauXKtXJ0dNSuXf/R5Mnv6b33pujRR5sqJeW6Tp06JQcHB3Xo0EkbN65VYOCTkqSrV6/qxx93aNasTwr+4d8CgbwIcYy7KIeJw/PdPkOSQ34bT1ggEcjvW/xYg9wUpG8UpF9I9A0AAO4loaH/lsVi0ZAhwyRJLi6uGjJkuIYPH6y33npHjo6OSk1N0dmzZ+Tu7iEPD095eHgW6ByxsTEKDf23Jk36UJLUoUMnff75Qo0Y8YpcXFy1ZcsmVapUWf36DTL2adIk8yr3f/7z7//+aPC6MdS8bt16BTr/E0+01MMPN5Ekubq6qly5cipXrpzx+gsvDNc333yt8+f/VLVq1fXttyvVuXNXBQRkzrt3dCypBg0a/rf2zlq6dIliYqLl7V1W27Z9p4oVKxW4prwQyIG/AX6sQW4K0jcK1C8k+gYAAPeQyMgIXbwYpbZtn7Dabmdnp7i4S2rUqLFeeOElffHF55owYaz8/OrqxRdfUu3aD+X7HBs3rlOpUqXVrFlzSVKbNu20YMFs7dixTe3bP6vIyEhVrlwlx32joiJUoULFO5r3Xb58BavnCQkJmjPnYx08uF9Xr16Vvb3df7fH//eckXr88SdzPFa5cuXUpMmj2rRpvQYOHKING9bq2We73HZtuSGQAwAAAEAR5+NTXpUrV9XSpf/MtU2nTkHq1ClI169f16JFCzVu3JtavXqT7OzyXnosIyNDGzeu09WriQoKesbYnp6ernXrVqt9+2dVvnx5/fjjjhz3L1eugiIjw5Weni4Hh5svARQrVlzXr18znsfGxt7Uxs7OehX6hQvn6tKlWIWEfL1ZIGcAACAASURBVCEvLy8lJyepdetAWSyW/56zvC5c+DPX99SpU5Bmz/5YzZo11x9/nFWbNu1v/SHcBgK5CWx1r8JmFjsVu+tHRWGx5T0s6RsAAAB/bwEBLfTpp/P15ZeL1K3bcypWrLhiY2P066/HFRj4pH799Zhu3LihOnX85OTkpOLFSxjB2MPDXfb29rpw4Xyuc8h37w5VdPRFhYR8IW9vb2P7qVMn9frrI3X69Cm1adNeX365SEuXLlG3bj3l4OCgQ4cOqEmTR9WsWXMtWDBbc+Z8rCFDhhtzyKtXr67ixUuoVq3a+te/NqpRo8aKjY3RypXL8nzPSUlJcnV1lZubm5KTkzV//hyr14OCeujdd8fJ37+xmjR51JhDnjVsvWnT5pox40N98MEkPfFES5UqVep2P/5cEchNYKt7FcYGWAhd9zFb3sOSvnF/48caAADuXRWL22tLx0qFch7Jctv7u7q6atasBVq4cJ569+6m5ORkeXl56amnWisw8Eldu3ZN8+bN1Pnz5+XgYK/q1R/Q++9PlZQ133yY3nvvbaWmpqhXr34aMOB5q+OvW7daLVoEqnbtOlbby5TxUt269bVu3bcaPfotzZmzUPPmzdayZV9KkurUeUhNmjyqYsWKad68hZo582P17NlFaWk3VL36A/rggxmSpNGjgzVt2kS1b99Svr7V1L59B82e/fEt3/OQIS9qypT39cwzT8nDo4yGDHlRGzasMV5v1qy5xowZr5CQeXr33XEqVsxVHTp0NgJ51uJuixd/qpEjR9/2Z38rdpas6/VFRExMotkl5OlgosVGgfyK3Kfkf55wQaRPWKDLlf1scmxkslW/kOgb9zv6BsxQkAX/nJwcdYMF//4WCrpIaEH6Bv3i78Xb2+2++Hf7X129mqCSJd3NLqPIcnS0V1qabS5C3K7Nmzfoq68Wa8WK1Xm2zal/eHu73XIfrpADAICbsOAfcsIioQD+TpKTk7Rq1Qp169bTZufIe3Y+AAAAAAB/I//853I9+2xrlStXXp06BdnsPFwhBwAAAAAgmx49eqtHj942Pw9XyAEAAAAAMAFXyAEAuE+xAj9yQr8AgPsHgRwAgPsUt0tETugXAHD/YMg6AAAAAAAmIJADAAAAAGAChqwDAAAAwG0qkRQrx7iLNj9PmqePkkp42fw8KFwEcgAAAAB3pKCh1BLlqNI30vLV9l4Poo5xF+UwcbjtTzRhgZSPz6FVqxbG49TUVEmSs7OzsW3btn8X+NSRkRHq3r2jVq/epLJlfXJt9/LLL+j48aNydPxfzHzqqdYaM2a8YmKiNWPGBzp58oQuXozS+PET1aZN+1ue98SJ37Rw4Xz9/vuvSklJlbu7hxo1elhjx04o8Hu4VxHIAQAAANyRgobSDEkO+W2czyCKTNkD9wcfTFJ6errefvu9Qjv/gAHPa+DAITdtt7OzV5Mmj6l37/5677238zxOcnKyXnvtJfXq1U9Tp06Xk5OzIiMjtHfvbluUrbS0NKsfEgoLgRwAAAAA/gaioqI0d+7HOnLksOzspGbNHtfIka+qePESslgsCgmZr82bNyg5OVmlS5dWz5591K1bTw0c2EuS1Lt3V9nZ2alPnwE5hu5b8fLyUteuPSRJ9vZ5L2X255/ndPnyZXXr1lMuLq6SpIoVK6lixUpGG4vFovXr1+jbb1cqKipKJUuWVJ8+/dW163OSpDVrvtE//7lccXGXVLVqNb300ig1aOAvSfr884U6fPigatasrS1bNqtmzdqaMWO2Dh8+qE8+mas//jgrNzc3denSXT179pGdnV2B3m9+EcgBAAAAoIhLSUnRqFHD1KpVW40fP1EpKamaOPEdzZz5kcaNe1d79+7Wd99tUkjIEvn4lFN8fJxiYqIlSUuWrFD37h21fPm3txyyfjdVqVJFnp5lNH78W2rb9hnVrv2QVRiXpLVrv9WSJZ9p4sQPVK9efV25ckWRkeGSpG3bvtNnny3Q9OmzVKtWbX333Ua9/vpILV26SuXKlZckHT58UE2bNtfq1ZuUnp6us2fP6I03RmnChIlq1qyFLlw4rzfeeEXu7u5q166DTd4nq6wDAAAAQBEXGvpvWSwWDRkyTC4uripVqpSGDBmubdu+U3p6uhwdHZWamqKzZ88oJSVFHh6eqlmzdoHP8+WXi9W27RPGf8eOHb2teosXL6GQkCWqWLGyFi/+VL16BSko6BmtW7faaPPttyvVv/9gNWjQUPb29nJ3d1edOn6SpM2bN6hjxyD5+dWVo6OjOnTorBo1HtS2bd8Z+/v4lFOvXn3l5OQkV1dXrVmzSk8++ZRatHhCDg4OqlrVV0FBPfTdd5tv6z3kB1fIAQAAAKCIi4yM0MWLUWrb9gmr7XZ2doqLu6RGjRrrhRde0hdffK4JE8bKz6+uXnzxJdWu/VCBztO//6ACD2fPTbly5fXqq29Ikq5evaq1a7/RP/4xVZUqVdbDDzdRZGSEqlSpkuO+0dEX1bJlK6ttFStW0sWL/1t8MOtKeZbIyAjt379PP/30g7EtI8Ni01EBBHIAAAAAKOJ8fMqrcuWqWrr0n7m26dQpSJ06Ben69etatGihxo17U6tXb5KdnfkDq0uWLKm+fQdq+fKvdPLk73r44SYqX76Czp8/ryZNHrupfdmyPoqMjLDaFhERroCA/61C/9f35eNTXs8801Gvv/6Wbd5EDsz/ZAEAAAAANhUQ0EJpaTf05ZeLlJycJIvFopiYaO3cmXk1+Ndfj+nw4YNKTU2Vk5OTihcvIQeHzLXwPTzcZW9vrwsXzt9RDSkpKUpJSZHFYlFaWppSUlKUlpbz7e/OnftDX3zxuc6f/1Pp6elKSUnRmjXf6OrVRNWr11CS1KVLd3311WIdO3ZEGRkZSkhIUFjYcUlSu3bPav361fr112NKS0vTpk3rdfLk72rVqm2u9QUFddOOHVv1888/KS0tTWlpaTp79owOHtx/R+/7VrhCDgAAAABFnKurq2bNWqCFC+epd+9uSk5OlpeXl556qrUCA5/UtWvXNG/eTJ0/f14ODvaqXv0Bvf/+VEmSi4urhgwZpvfee1upqSnq1aufBgx4vsA1PPVUgPF42rSJmjZtogYNGqrnn3/xprbFixfXH3+c1ejRLyshIV5OTs6qUqWqJk6cJj+/upKkoKDukjJv73bxYpTc3Eqpb9+BqlPHT61bt1Vi4mVNnDhB8fGXVKVKVf3jH7NuGqaeXfXqD2j69P/Tp58u0LRp7ysjw6JKlSqpd+/+BX6v+UUgBwAAAIDblObpk3mv9MI4TwGNGTPe6rmPTzlNmDApx7YPP9xEixYty/VY/fsPVv/+g295vrlzQ275+s8/77vl69l5e5fVu+9OvmUbOzs7de3aw7id2l917fqccQu0v8rpRwBJqlu3vmbNsv33mYVADgAAAPwNRKfbKTw5wybHbmaxUzGbHPnel1TCSyrhZXYZuE8RyAEAAIC/gfDkDLVZf8Emx44NsPxtAzlwJ1jUDQAAAAAAExDIAQAAAAAwAYEcAAAAAPLBYjG7AtzLbqd/EMgBAAAAIJ8spHLk4Hb7BYEcAAAAAPLBxaWYrl1LMrsM3GMsFosSE+NVvHjJAu/LKusAAAAAkA/Ozi5KS7uhxMQE2dmZXU3R4+LipJSUG2aXUSBZF8ZLlCglB4eCx2sCOQAAAADk0+1cBUX+eHu7KSYm0ewyChVD1gEAAAAAMAGBHAAAAAAAExDIAQAAAAAwAYEcAAAAAAATEMgBAAAAADABq6wDAAAAAGyiRFKsHOMu5qutJcpRpW+k5fvYaZ4+Sirhdbul3RMI5AAAAAAAm3CMuyiHicPz1TZDkkNBDj5hgXSfB3KGrAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACVlkHAAAAgL+x6HQ7hSdn2OTYzSx2KmaTIxcNBHIAAAAA+BsLT85Qm/UXbHLs2AALgfwWGLIOAAAAAIAJCOQAAAAAAJiAQA4AAAAAgAkI5AAAAAAAmKBQA/myZcvUsmVL1atXT0FBQdq3b98t22/YsEGdOnVSgwYNFBAQoDfeeEMxMTGFVC0AAAAAALZTaIF88+bNmjp1qoYNG6a1a9fK399fQ4cOVURERI7t9+/fr+DgYHXp0kUbN27UvHnzdPr0ab3xxhuFVTIAAAAAADZTaIF88eLF6tKli3r06KEaNWpo/Pjx8vb21ooVK3Jsf+jQIZUrV04DBw5U5cqV1bBhQ/Xt21dHjhwprJIBAAAAALCZQgnkqampOn78uAICAqy2BwQE6ODBgznu06hRI8XExOj777+XxWJRXFycNm/erMcff7wwSgYAAAAAwKYcC+Mk8fHxSk9Pl5eXl9X2MmXKKDQ0NMd9/P399fHHH+uNN95QSkqK0tLSFBAQoA8//PCW5/L2drtrdduK8/UkmxzX3s7OJseVJCcnx/vis72f2apfSPSN+x19A7mhbyAn9Avkhr6B3NA3zFMogfx2nDp1SpMmTdKIESPUvHlzxcTEaPr06ZowYYKmT5+e634xMYmFWOXtSb1hsclxMyy2Oa4k3biRpsv3wWd7P7NVv5DoG/c7+gZyQ99ATugXyA19A7mhb9hOXj8YFEog9/DwkIODg2JjY622X7p0Sd7e3jnus3DhQtWvX19DhgyRJNWuXVvFihVTnz59NHr0aJUrV87mdQMAAAAAYCuFMofc2dlZfn5+Nw1PDw0Nlb+/f477XL9+XQ4ODlbbsp5nZGTYplAAAAAAAApJoa2yPmjQIK1Zs0arVq3S6dOnNXnyZEVHR6tnz56SpODgYAUHBxvtn3zySe3YsUPLly/X+fPntX//fk2ePFl+fn6qUKFCYZUNAAAAAIBNFNoc8vbt2ys+Pl4LFixQdHS0atasqZCQEFWsWFGSFBkZadU+KChISUlJWrZsmT788EO5ubnp0Ucf1ZtvvllYJQMAAAAAYDOFuqhbnz591KdPnxxf++qrr27a1q9fP/Xr18/WZQEAAAAAUOgKbcg6AAAAAAD4HwI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYo1EC+bNkytWzZUvXq1VNQUJD27dt3y/apqamaNWuWWrZsqbp16+qJJ57Ql19+WUjVAgAAAABgO46FdaLNmzdr6tSpevfdd/Xwww9r+fLlGjp0qDZt2qQKFSrkuM/o0aMVFRWlSZMmqWrVqrp06ZKuX79eWCUDAAAAAGAzhRbIFy9erC5duqhHjx6SpPHjx+vf//63VqxYoddff/2m9j///LN27dqlbdu2ydPTU5JUqVKlwioXAAAAAACbKpQh66mpqTp+/LgCAgKstgcEBOjgwYM57rN9+3bVq1dPS5Ys0eOPP67WrVtr8uTJSkpKKoySAQAAAACwqUK5Qh4fH6/09HR5eXlZbS9TpoxCQ0Nz3Of8+fPav3+/nJ2dNWfOHF25ckWTJ09WdHS0Zs+eneu5vL3d7mrttuB83TY/Ktjb2dnkuJLk5OR4X3y29zNb9QuJvnG/o28gN/QN5IR+gdzQN5Ab+oZ5Cm3IekFZLBbZ2dlpxowZcnPL/JDHjx+v559/XrGxsTeF+ywxMYmFWeZtSb1hsclxMyy2Oa4k3biRpsv3wWd7P7NVv5DoG/c7+gZyQ99ATugXyA19A7mhb9hOXj8YFMqQdQ8PDzk4OCg2NtZq+6VLl+Tt7Z3jPt7e3vLx8THCuCTVqFFDkhQREWG7YgEAAAAAKASFEsidnZ3l5+d30/D00NBQ+fv757hPo0aNFB0dbTVn/I8//pAkVaxY0Wa1AgAAAABQGArtPuSDBg3SmjVrtGrVKp0+fdqYD96zZ09JUnBwsIKDg432HTp0kLu7u8aOHauTJ09q//79mjJlitq0aaMyZcoUVtkAAAAAANhEoc0hb9++veLj47VgwQJFR0erZs2aCgkJMa52R0ZGWrUvUaKEFi9erMmTJ6tbt24qVaqUnn766RxvkQYAAAAAwP2mUBd169Onj/r06ZPja1999dVN26pXr65FixbZuiwAAAAAAApdoQ1ZBwAAAAAA/0MgBwAAAADABARyAAAAAABMQCAHAAAAAMAEBHIAAAAAAExAIAcAAAAAwAQEcgAAAAAATEAgBwAAAADABAUK5MnJyVq7dq0WLFig1NRURURE6Nq1a7aqDQAAAACAIssxvw0vXryoXr16KTIyUpLUtWtXtWrVSgMHDtSbb75pswIBAAAAACiK8n2FfMaMGYqIiJCzs7MkqWzZsvL399fPP/9ss+IAAAAAACiq8h3Id+/erYCAAD333HPGNl9fX4WHh9ukMAAAAAAAirJ8B/LExESVLVvWatu1a9dkZ2d314sCAAAAAKCoy3cg9/X11c8//6wLFy5IkjZs2KAdO3aoSpUqNisOAAAAAICiKt+BvFevXoqJidEPP/wgSQoODlZKSop69uxps+IAAAAAACiq8h3Iu3XrpiFDhsjV1VUWi0UuLi4aNGiQunfvbsv6AAAAAAAokvJ127O0tDQdPHhQzzzzjEaNGqW4uDh5enrKycnJ1vUBAAAAAFAk5esKuaOjowYNGqSlS5fKyclJPj4+hHEAAAAAAO5Avoes16xZU5cvX7ZlLQAAAAAA/G3ka8i6JLVr104zZ87Uxx9/rEceeUQuLi7Ga02aNLFJcQAAAAAAFFX5DuQzZsyQnZ2dPv30U3366afGdjs7O/366682KQ4AAAAAgKIq34FckiwWS762AQAAAACAW8t3IP/tt99sWQcAAAAAAH8rBbpCLkkHDhxQZGSkKlSoIH9/f1vUBAAAAABAkZfvQJ6UlKShQ4fq4MGDxraGDRvqs88+U4kSJWxSHAAAAAAARVW+b3u2cOFCHThwQBaLxfjv0KFD+uSTT2xZHwAAAAAARVK+A/nWrVtVtmxZrVq1SkeOHNGqVavk7e2tbdu22bI+AAAAAACKpHwH8qioKAUGBqpevXpydnZWvXr1FBgYqKioKFvWBwAAAABAkZTvQO7t7a09e/YoLi5OkhQXF6e9e/fKy8vLZsUBAAAAAFBU5XtRt2bNmmnlypV6/PHH5eHhofj4eKWnp6tHjx62rA8AAAAAgCIp31fIR40apUqVKiktLU0xMTFKS0tThQoV9Morr9iyPgAAAAAAiqR8XyH39PTUhg0btHXrVkVGRqp8+fJq3bq1ihUrZsv6AAAAAAAokvIdyBMSEpScnKxnn31W9vb2ysjIUFRUlFJSUuTu7m7LGgEAAAAAKHLyHchfeOEFXblyRd99950kyd7eXkOHDlXJkiW1cuVKmxUIAAAAAEBRlO855KdOnVLjxo2ttjVq1EgnT56860UBAAAAAFDU5TuQOzg4KDY21mpbdHS0HB3zfZEdAAAAAAD8V77TtK+vr3bu3KlZs2bJ399fBw8e1E8//aS6devasj4AAAAAAIqkfAfyPn36aMyYMfrkk09u2g4AAAAAAAom30PWO3furBdeeEGurq6yWCxydXXV0KFD1blzZ1vWBwAAAABAkVSgCeCjR4/Wyy+/rC1btqhkyZJq2LChreoCAAAAAKBIyzOQf/LJJ9q1a5dmz56t0qVL691339XatWslSaVLl9Znn33GPHIAAAAAAAoozyHrW7duVVxcnEqXLq0//vhDa9askcVikcViUUJCgubNm1cYdQIAAAAAUKTkGcgjIiJUq1YtSdJ//vMfSVKDBg20Z88e1alTR0ePHrVthQAAAAAAFEF5BvKrV6/Kzc1NknT06FHZ2dmpXbt2KlWqlBo2bKjLly/bvEgAAAAAAIqaPAN5mTJltHv3boWFhRlXyLMWc7t06ZIR1gEAAAAAQP7lGcgfe+wxnTlzRkFBQYqNjVWZMmXUoEEDSdLx48dVuXJlmxcJAAAAAEBRk2cgHz16tPz8/GSxWFSiRAlNnjxZdnZ22r17t8LDw9W4cePCqBMAAAAAgCIlz9ue+fj46Ntvv9WVK1dUokQJOTg4SJIefvhhHThwQC4uLjYvEgAAAACAoibPQJ6lVKlS1js6OsrRMd+7AwAAAACAbPIcsg4AAAAAAO4+AjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJiCQAwAAAABgAgI5AAAAAAAmIJADAAAAAGACAjkAAAAAACYgkAMAAAAAYAICOQAAAAAAJijUQL5s2TK1bNlS9erVU1BQkPbt25ev/fbt26eHHnpIHTp0sHGFAAAAAAAUjkIL5Js3b9bUqVM1bNgwrV27Vv7+/ho6dKgiIiJuud/ly5f11ltvqWnTpoVUKQAAAAAAtldogXzx4sXq0qWLevTooRo1amj8+PHy9vbWihUrbrnf22+/rS5duqhhw4aFVCkAAAAAALbnWBgnSU1N1fHjxzV48GCr7QEBATp48GCu+y1btkyxsbEaPny45s+fn69zeXu73VGthcH5epJNjmtvZ2eT40qSk5PjffHZ3s9s1S8k+sb9jr6B3NA3kBP6BXJD30Bu6BvmKZRAHh8fr/T0dHl5eVltL1OmjEJDQ3Pc5/fff9e8efO0cuVKOTg45PtcMTGJd1RrYUi9YbHJcTMstjmuJN24kabL98Fnez+zVb+Q6Bv3O/oGckPfQE7oF8gNfQO5oW/YTl4/GNyTq6ynpqbqtddeU3BwsCpXrmx2OQAAAAAA3HWFcoXcw8NDDg4Oio2Ntdp+6dIleXt739Q+Ojpap0+f1rhx4zRu3DhJUkZGhiwWix566CGFhISoefPmhVE6AAAAAAA2USiB3NnZWX5+fgoNDVW7du2M7aGhoWrduvVN7X18fLRhwwarbcuXL1doaKjmzp2rihUr2rxmAAAAAABsqVACuSQNGjRIwcHBql+/vho1aqQVK1YoOjpaPXv2lCQFBwdLkqZPny4nJyfVrFnTav8yZcrI2dn5pu0AAAAAANyPCi2Qt2/fXvHx8VqwYIGio6NVs2ZNhYSEGFe7IyMjC6sUAAAAAABMV2iBXJL69OmjPn365PjaV199dct9R44cqZEjR9qiLAAAAAAACt09uco6AAAAAABFHYEcAAAAAAATEMgBAAAAADABgRwAAAAAABMQyAEAAAAAMAGBHAAAAAAAExDIAQAAAAAwAYEcAAAAAAATEMgBAAAAADABgRwAAAAAABMQyAEAAAAAMAGBHAAAAAAAExDIAQAAAAAwAYEcAAAAAAATEMgBAAAAADABgRwAAAAAABMQyAEAAAAAMAGBHAAAAAAAExDIAQAAAAAwAYEcAAAAAAATEMgBAAAAADABgRwAAAAAABMQyAEAAAAAMAGBHAAAAAAAExDIAQAAAAAwAYEcAAAAAAATEMgBAAAAADABgRwAAAAAABMQyAEAAAAAMAGBHAAAAAAAExDIAQAAAAAwAYEcAAAAAAATEMgBAAAAADABgRwAAAAAABMQyAEAAAAAMAGBHAAAAAAAExDIAQAAAAAwAYEcAAAAAAATEMgBAACA/2fvzuOqLPP/j7/YQQEREJRdwYVVcMEFQ0XNJTVzRsusbFGzNKupbNG+NaVWantOozlZqalpSqbmbu77Loa4yyI7CMi+/P7wce4Bs34zzcjJ5v38pzzc3Oe6Ode57+tzLZ9LRMQMFJCLiIiIiIiImIECchEREREREREzUEAuIiIiIiIiYgYKyEVERERERETMQAG5iIiIiIiIiBkoIBcRERERERExAwXkIiIiIiIiImaggFxERERERETEDBSQi4iIiIiIiJiBAnIRERERERERM1BALiIiIiIiImIGCshFREREREREzEABuYiIiIiIiIgZKCAXERERERERMQMF5CIiIiIiIiJmoIBcRERERERExAwUkIuIiIiIiIiYgQJyERERERERETNQQC4iIiIiIiJiBvUakC9atIi4uDjCw8MZOnQoBw8e/MVjN2zYwKOPPkrnzp2Jiopi2LBhbN68uR5LKyIiIiIiInLr1FtAvnbtWqZPn864ceOIj48nKiqKMWPGkJaWdtPj9+/fT+fOnZk7dy7x8fF0796dCRMm/GoQLyIiIiIiInK7qLeAfP78+dxzzz0MHz6cwMBAXn31VZo0acLixYtvevyUKVMYO3YsERER+Pv7M2HCBEJDQ9m0aVN9FVlERERERETklrGujzcpLy8nISGBRx99tM7rMTExHDly5F8+z7Vr13B2dv7VY5o0cfpNZaxPtqXXbsl5LS0sbsl5AWxsrG+Lv+3t7FbVC1DduN2pbsgvUd2Qm1G9kF+iuiG/RHXDfOolIM/Ly6Oqqgp3d/c6r7u5ubF79+5/6RyLFi0iPT2du++++1ePy8oq/M3lrC/lFTW35LzVNbfmvAAVFZVcvQ3+trezW1UvEkk86AAAIABJREFUQHXjdqe6Ib9EdUNuRvVCfonqhvwS1Y1b5//XYVAvAfl/av369cyYMYP3338fb29vcxdHRERERERE5D9WL2vIGzdujJWVFdnZ2XVez8nJoUmTJr/6u+vWrWPSpEm88847xMXF3cpiioiIiIiIiNSbegnIbW1tCQ0N/dn09N27dxMVFfWLv7d27VomTZrEW2+9Rb9+/W51MUVERERERETqTb1NWX/kkUeYNGkSERERtGvXjsWLF5OZmcl9990HwKRJkwCYMWMGAGvWrGHSpElMmjSJjh07kpWVBYCNjQ0uLi71VWwRERERERGRW6LeAvIBAwaQl5fHp59+SmZmJq1atWLu3LnGmvArV67UOX7JkiVUVlYyffp0pk+fbrweHR3NggUL6qvYIiIiIiIiIrdEvSZ1GzlyJCNHjrzpz24MshV0i4iIiIiIyB9ZvawhFxEREREREZG6FJCLiIiIiIiImIECchEREREREREzUEAuIiIiIiIiYgYKyEVERERERETMQAG5iIiIiIiIiBkoIBcRERERERExAwXkIiIiIiIiImaggFxERERERETEDBSQi4iIiIiIiJiBAnIRERERERERM1BALiIiIiIiImIGCshFREREREREzEABuYiIiIiIiIgZKCAXERERERERMQMF5CIiIiIiIiJmoIBcRERERERExAwUkIuIiIiIiIiYgQJyERERERERETNQQC4iIiIiIiJiBgrIRURERERERMxAAbmIiIiIiIiIGSggFxERERERETEDBeQiIiIiIiIiZqCAXERERERERMQMFJCLiIiIiIiImIECchEREREREREzUEAuIiIiIiIiYgYKyEVERERERETMQAG5iIiIiIiIiBkoIBcRERERERExAwXkIiIiIiIiImaggFxERERERETEDBSQi4iIiIiIiJiBAnIRERERERERM1BALiIiIiIiImIGCshFREREREREzEABuYiIiIiIiIgZKCAXERERERERMQMF5CIiIiIiIiJmoIBcRERERERExAwUkIuIiIiIiIiYgQJyERERERERETNQQC4iIiIiIiJiBgrIRURERERERMxAAbmIiIiIiIiIGSggFxERERERETEDBeQiIiIiIiIiZqCAXERERERERMQMFJCLiIiIiIiImIECchEREREREREzUEAuIiIiIiIiYgYKyEVERERERETMQAG5iIiIiIiIiBkoIBcRERERERExAwXkIiIiIiIiImaggFxERERERETEDBSQi4iIiIiIiJhBvQbkixYtIi4ujvDwcIYOHcrBgwd/9fj9+/czdOhQwsPD6dWrF4sXL66nkoqIiIiIiIjcWvUWkK9du5bp06czbtw44uPjiYqKYsyYMaSlpd30+OTkZMaOHUtUVBTx8fE8/vjjTJ06lfXr19dXkUVERERERERuGYuampqa+nijYcOG0bp1a6ZOnWq8duedd9K3b1+ee+65nx0/c+ZMNm7cyIYNG4zXJk+ezNmzZ1m6dGl9FFlERERERETklqmXEfLy8nISEhKIiYmp83pMTAxHjhy56e8cPXr0Z8d369aNkydPUlFRccvKKiIiIiIiIlIf6iUgz8vLo6qqCnd39zqvu7m5kZWVddPfyc7Oxs3Nrc5r7u7uVFZWkpeXd8vKKiIiIiIiIlIflGVdRERERERExAzqJSBv3LgxVlZWZGdn13k9JyeHJk2a3PR33N3dycnJqfNadnY21tbWNG7c+JaVVURERERERKQ+1EtAbmtrS2hoKLt3767z+u7du4mKirrp70RGRt70+LCwMGxsbG5ZWUVERERERETqQ71NWX/kkUdYuXIly5Yt49y5c0ydOpXMzEzuu+8+ACZNmsSkSZOM4++77z4yMjKYNm0a586dY9myZaxcuZJHH320voost7F62jxA/g0lJSXs2LGD7du3m7so8gdWU1NDdXU11dXV5i6KiPwO6H4gv+ann37izJkz5i6G3MZM7Y7/JPaw/i+W51cNGDCAvLw8Pv30UzIzM2nVqhVz587F29sbgCtXrtQ53tfXl7lz5/LWW2+xePFiPDw8mDx5Mn379q2vIsttpqamBgsLCwDjv2J+hw4d4oMPPuDq1av4+fnh6elJ69at8fT0NHfR5A/IwsLC+P5XVlZibV1vjzm5DZgCs9r1RP6YTG0CS0ulS5K61qxZw7p168jKyqK8vBxnZ2eGDh3K4MGDzV00uQ3Ujjeg7vOkqKgIR0fHnx3z/1Nv+5CL/DeZeqMsLS1/VuFzc3PZvHkzgYGBtGvXzkwl/N+VmZnJ3//+d0aPHo2Hhwcvv/wy7dq1Y8SIEcD13BENGzbE3t7ezCWV21VNTQ01NTV1Gtqm+8GVK1c4cuQIixcvJjg4mFdeecWMJRVz+7VGUU5ODhYWFri6utZzqeS/raqqqk7wXVVVhZWVFcXFxSQnJ7No0SKaN2/OI488YuaSijlcvXqV1atXExISQlRUFKNGjaKmpoavvvoKgLlz57JhwwaWL19uPEtEavu1dsfx48fJyMhg/vz5+Pv789Zbb/3b59fQgdwWzp8/T4sWLYx/W1hYYGVlVeeYCxcusHjxYi5cuICbmxtt2rSp72L+z8nPz8fa2hpHR0ejAXTs2DGSk5NxdHRkxYoVpKSkGDenqqqqn21nKPJrCgsLSUtLIykpicDAQEJCQur0RicnJ5OXl0dERATp6enMmjWL8+fPM2XKFCIjI81cejGXX+qwPXPmDAcPHuTIkSPs3r2b2NhYhg8fTmRk5L89oiHmkZ2dzdGjR4mLizMax6b2QE1NDQUFBTRq1IirV6/Sv39/4uLiCA8Pp0ePHmYstdSnEydOcOnSJXr06IGjoyP5+fkcPXqUoqIioqKi6NOnj7F8LiMjg4yMDO68804ABeNi1Im9e/fSv39/fH1967Q7Tpw4QXFxMZ06dQLgtddew8nJiZdeeomIiIjf9J4KyOV3KT8/n/j4eM6cOUP37t1JS0vDzc2NRo0aAZCUlMT333/PiRMniI2NZfDgwTRu3JjTp0/ToEED3n77bTNfwR9TeXk5e/bsoaqqirZt2/LSSy/RrFkz3njjDaNBVFhYSFFREc7OzhQVFVFdXY21tTXV1dXGMeqBlv+fc+fO8cYbb2Bvb8/AgQMJCwvD19fX+PmqVav46quvcHBwICAggBMnTjBy5EhatWrFpUuXiIqKUh37H/LOO+8QGxtLly5dgH82qhMSEqiuriY8PJzS0lKWLl3KunXr+PLLL/m///s/PvvsM+bPn8+HH35ozuLL/0dycjJvv/02dnZ23HPPPeTl5dVZr7lq1So2bNjApUuXaNeunXEvCAwMpKSkhHvvvdeMpZdbrbi4mAMHDuDj44Ofnx9z5sxh06ZNPPDAA0yZMoUmTZoQGhrK6dOnAejSpQszZ87kvvvuo7y8HCsrK1xcXAgNDSUmJsbMVyPmcvnyZSZOnIiXlxePPPIIvXr1qtPuWLBgAWvWrMHFxQVnZ2cuXrzIvffeS/fu3fnpp5/w8/MDfn1m1i9Ra0V+F8rKyjhy5IixNd7y5cvZv38/48aNo0ePHgwfPpyCggIA0tPT+eabbwgMDOSVV16hsrKSZ599FhcXF6Kjo2nQoAFwff2o/HckJyfzzDPP8Oc//5l58+aRnJyMg4MDEyZM4NKlS8THxxvHNmzYEDs7O+D69oUWFhaUlpZiaWlJTU0NVVVVCpTkZ7KyspgzZw4HDx4EricBLC0tZc6cOfTu3ZucnBwWL14MXJ9+mJiYyOzZs1mwYAFNmzbl448/Ji0tjRYtWtCyZUsuXLgAKMHjH1F1dTVVVVV1EnU99NBDxmgFwPbt2+nXrx/Tpk1j7ty5vP/++9jb29O+fXusra0JDAzE0dGRHj16kJKSQkFBgUbHf0eKioqYNm2a8e8jR47g5ubGtGnTuOOOO+p8x9PT00lOTuaJJ57g+++/p7CwkA8//JCKigqioqKMNoH8sdROolVYWMiXX37JsWPHsLGxITY2lg4dOnDw4EEWL15MgwYN8Pf3Jy8vj4yMDAIDA/H29ubuu+9mxYoVLFu2jLCwMGMgCPTs+F9QXl7OxIkTSU5OBiAtLY3g4GCmTp1K+/btOXnyJEuXLqW0tJSUlBRKSkp49913+fvf/461tTULFy7kzJkzBAcHY29vT0lJCfDb8lipVSxmU1NTYwTN586dIzU11fhZdnY26enpbN++nU2bNjF37lxjBOPkyZOcOXOGBg0aMH/+fNasWWMEgC1btqSkpMTYs15+G1NWWtMDaffu3bi5ubFq1SoWLFjAqFGjsLOzo23bttx///188skn5ObmArBv3z46d+4MXP88CgsLjSDLtNQgIyODI0eOmOfi5HfBFFSZ6pirqytDhgyhQ4cOlJeXs2rVKpKSkujbty/btm3j0KFDHDt2jNzcXE6ePMmuXbuYOHEiQ4cO5dy5c7z00kt4eXnh6emJlZUV586dA9So+iMwrd0zsbS0xMrKCktLS4qKioDrAdyDDz5o/P+cOXOYMWMGX3/9Nc8//zwLFizg4sWLhIaG0qRJE86ePQuAh4cHjRs35vDhw8Z7Sf0zddaaOlkcHR2Jjo6moqICgG3btpGYmMjQoUO5ePEic+bMYdGiRQDEx8ezfft2li9fzsiRI0lOTqZjx47Y2NgQHR3NqVOnjHoitydTW7H2vaD2khRPT09atGhBZmYmlZWV+Pj44OXlxejRo1m7di3ffvstHh4eODo6cvz4cQDCw8M5f/688R533HEHZ86cwdbWFlBy4D+iqqoqqqqqjH/b2try17/+FR8fH8rLy/nuu+/YunUrAwYM4NChQ6SkpLBv3z4sLS1JTExkwYIFPPfcc/zpT3/C0tKSl156iZYtWxISEkJ+fj7p6em/uWwKyKXemW6mFhYWRtAcEhJCx44dSUtLIzMzk7Vr13Lx4kWcnZ3p1q0bzZs3p6KigoqKCtLS0sjNzWXnzp307t2bRYsWMW/ePAB8fHywtbU1brja6uRfc2Mj1NLS0njY5ebmsnXrVmMNf0ZGBrm5ucb08759+xIYGMicOXOorq6mpKTE6CUMDg6mZ8+evPfee2zcuJGysjI2b97Mu+++y8mTJ+v3IsWsbtwSxBRUWVhYUFRUhJWVFcePH+fjjz8mIyMDLy8vAgICGD9+PP369aNt27ZYWVmRnJyMnZ0dTk5OjBkzhhUrVvDee+8xZMgQCgoKaNGiBRYWFsY9QLMxbl+1nxW1G8cXLlxg6tSpPPDAA4wdO9bITZGYmMiVK1ewtbXl6tWrRketv78/oaGhbNmyBT8/P7y9vdm7dy8Azs7OeHh4sHHjxvq/QDGYOmtrf18tLCxYt24daWlpFBcXU1VVxRNPPEFAQAB9+vQxOt2Cg4M5duwYd911FzNnzmTZsmU8/PDD1NTUEB0dTUZGBhcvXjTTlcl/6rvvvmPBggVUVlYa94KSkhI2bNjA+vXrjdmT/v7+pKWlkZOTg7+/P1VVVTRo0ICnn36aPXv2sGLFCkJCQjhx4gQAsbGxRkfcyZMn+eGHHwgJCcHf399s1yr/XTe2O6ysrIy2a2ZmJgA//vgjr7zyCoWFhYSFhREVFcXLL79Mx44diY2NJScnh9TUVIKDgyksLGTGjBl8++23TJ06lZiYGLKysvD19aW8vJyEhITfPDtXLRW5pUyjYCa111UcP36c2bNnG9Odv/rqKxYtWoSTkxPbtm3DxcWFjh074uzsTNOmTSkvL+fy5cv4+PjQpk0bhg0bRq9evXB0dGT//v2cPHkSHx8fGjVqZPRSqTH+y2rvzXpjT/DOnTtZvnw5o0aNYuXKlXTq1Invv/+euLg43nzzTV5//XWmTp1qTO0aP348BQUFvPnmm0aniMm4ceN46KGHWLNmDYMHDyY+Pp62bdsycODA+rtYMRtTHbsxwdbRo0d59dVXGTRoEB988AFVVVWUlJRw8eJFSkpKePjhh+nevTtHjx4FwNvbG3t7exITEwkODsbPz48NGzZQUVHBwYMHmTFjBt999x2Ojo507dqVbt26abTzNnLjswL+eV/66aef+Pvf/26s//z8889xcXHh3Xff5R//+AdWVla4uroSEhLCzp07qaqqIiQkhFOnThnnatmypTEt0d/fn82bNwPg4ODAiBEjuO++++q8p9wav7RXb1paGvPmzeOxxx4zZsOdP3+eDz/8EC8vL15//XVatmyJk5MTAN26dSMlJYXU1FSioqJwdHTE0tISLy8vCgoK+Oqrr9i7dy+2tra0b9+ewsLCer1O+W1MMyVq69Onj5Edv6amhtmzZ3PfffexZcsW9u7dy0cffQRAWFgYBQUFJCcn06RJE3x8fNi7dy8dOnTg4YcfZuvWrezfv9/YZrl9+/YkJCRw11138d5772Ftbc0TTzxRvxcst8TNZlEAHDhwgMcff5wBAwYY9xlfX1+OHTuGg4ODkXvC1IEXGhoKwOnTp/H29qZt27Z88cUXXLhwgW3btvHCCy+wYcMGAB544AGioqJ+8+xczemV/6obExnUDojT09Px8PCgsrKSp556irKyMqKiovDx8QGuj5Lv2bOHS5cu0aZNGwIDA1m2bBlPPfUUHh4eNGnShEOHDjF8+HBOnTrFjBkz8Pb25syZM9jY2DBhwgTCwsKYPHlynYBQrjOt3TZ9PqbPprKykiNHjtCsWTPjs5gzZw75+fm8/fbbxg2pQ4cOlJWVUVBQwNmzZ40OlQ8++ICIiAhsbW25//77ady4Me+++67xvo6OjgwZMoQePXrg4uJSz1ct9cnU2K69A4Kpnu3du5cTJ04QHR1NeHg43333HQEBATzzzDNG5v2wsDC2bt3K5cuXjYRMpnXj3t7eNG3alPPnz2NnZ8fTTz/NF198wciRI7G3tycyMpLY2FgA+vfvX89XLv+u2qPfcPPO0+TkZF555RWsrKwICAgwtrHKzMykoqKCpKQkGjduTKNGjfD19aVjx45s2bKFYcOGERISwmeffUb37t3Zv38/6enpPPvsswAMGDCADh06AGBtbU14eHg9XfX/lpttE2T6/+zsbBITE4mMjKSyspI333yTNm3a8MADDxASEgLA0KFD+eijj6iursbDwwNLS0vOnz9PTEwMHh4euLq6cvToUe666y4mTZrEokWLeOeddygrK8PPz8/Y9lQJ+36/btzCtvYOOqWlpdjb2xvbSXXo0IHBgwczcOBAxo4dy9WrV5k7dy7r16+nf//+hISEYGVlxcWLF+nQoQOBgYFs3ryZkpISwsLCeP3113n66adxc3MjIyODpk2bsnDhQlq1aoWzs7OZ/xLyW5jqT+0tD+H6c6WwsJBdu3Zx8uRJ+vbtS1BQEPPnz+f++++nXbt2Rudehw4dqKio4PTp00RFReHq6sq5c+fIzMzEw8MDf39/EhMT6du3L2+99RarV69mypQpODk50blzZ/r06QPAXXfd9R9diwJy+Y/VfujeOLpw+vRpvvzySxITE3F0dGTGjBmcO3cODw8PRowYQXBwsHGsv78/O3fu5Pz587Rp04Y77riDDRs28NRTT+Hu7o6Hhwc7d+5k+PDhjB8/ntjYWE6fPs2TTz5pZDYEFIz/ghu3iTt79iyfffYZp0+fpkmTJgQFBREeHs6AAQOIjY1l5cqVhIaGUlFRgY2NTZ1Ga1xcHMuWLWP16tXGdmdt2rTh8ccfZ/ny5bi7u9d5r5qaGgXjfzC5ubkUFRXh5+dnNKhuFlQdP36cKVOm4O3tTXh4OK6urqSlpXHp0iVsbW05evQojRs3xtvbmxYtWtCgQQOSk5Oprq4mODiYyspKY9tDZ2dnzp49S0pKihHMA8bU5NqUyf/36WbbkVVVVbFz507WrVtHbm4uw4YNo3fv3mzevJlmzZoxY8aMOucYPXo069at49ixYyQlJXHs2DFWrlxJjx49+OabbwAYOXIk1tbWPPnkk7i6utKnTx8CAwMBaN26Na1bt65zTm159p8rKCjA2dnZeCbcuNQArm8X9Prrr1NTU0OrVq3w9/fHzs6OPXv2MGHCBOzs7HB2dqa0tBR3d3ecnJzYuXMnsbGxBAQEkJWVRUZGBr6+vgQEBLBlyxbuuusuhg8fTmxsLEVFRQQFBZnpLyD/rtoBeFlZGRUVFcyYMYOjR48SHh7OlClTcHV1xcbGxpj56OnpyeTJk0lJSaFLly60aNGCkydP0r59e7y9vUlJSaG0tBRvb29ycnI4efKkMf34iy++wMPDA09PT2pqaoyOObk9ZGVlcenSJTp06GDcZ25s2wKcOnWKF198kZCQENq2bYuLiwsODg4cOnSI5s2bk5GRgY+PDx4eHgQFBREYGMiBAweIioqiRYsWJCYmcvbsWTw8PGjZsiUHDhwgKysLLy8vHnvsMcaOHftfvzYF5PJvMfVYmpIadO3a1XjoVlRUcODAAVxdXY09wNevX4+zszPLly83jrt27Ro1NTVMnjyZDh06kJOTQ9u2bXnwwQdxcnLi8uXLAHTq1Inp06dTU1ODk5MT7du3p0WLFsaXMCIi4jfv9/dHdGNPs+k1CwsL0tPT2bJlC8nJyfTq1YsOHTrg5OTEsGHD6NChAxcvXuSdd94hMTGRAQMGEBMTY6zLt7GxASA1NRVvb2+Kioo4cuQI69atY+TIkVhZWRnvM3r0aB5//PGflU0N3dtfaWkphw4dAiAmJoZPP/2U48ePs3TpUiwtLY1cA7t376ZRo0aMGTOGZs2acfz4cbp06cLLL79c53yjR49mx44dnDt3jh07dmBpacmsWbMICQnh7NmzZGdn07RpUxwcHDhy5AgtWrSgX79+DB48GCcnJ2pqaoxA3DQyf7MZIGI+N87KqT1ampSUxJo1a+jTpw8WFhZs2LCBe+65B0tLSxYsWEBOTg533HEHS5YsYdy4cQQGBpKdnc2oUaPo2LEjHTt2NN5n+PDhpKWl0apVKwCjA+eBBx7ggQceuGnZbgzAdY/69125coXq6mqaNGnC7NmzKSoq4tVXXzUayMePH2fHjh14eXlxzz33ALB06VIee+wxBgwYUOdcQ4YMYd68eXh6erJ7925iYmJ48cUX6dmzJxs2bDAC8oMHD5Kamoqvry/jxo2juLjYOEfTpk3r7+LlX2Zqm9TeK97CwoLq6mpOnjzJqVOn+Oabb3BycqJfv360a9eOxx57jBkzZvDFF1/wxBNP4OPjw6VLlyguLmbHjh1UV1fz1VdfGdPMDx48yIMPPoifnx9btmwhMzOToKAgxowZY3TEAbRt29b4f33nf/8yMjI4ePAgdnZ2xMXFsWHDBpYvX87KlSuxsrLi/PnzbNu2jZ07d+Lu7s6ECRPw9fXl+++/55577mHIkCG4uroa53vvvfdITEykrKyMTz/9FBsbG9566y169+7N6tWrGTt2LN7e3lRXV5OVlQXAn//8Z4YPH260N27WAfDfoIBcflVubi7r1q3jyJEjJCcn079/f0aNGkVFRQX79u2ja9eupKenM2fOHA4fPoyXlxc+Pj74+PgwatQoysrK2L9/P9999x1OTk64u7sTGRnJK6+8goWFBWlpaZw4cYIPPviAESNG4ObmxunTp8nPz6d169Y89dRTXL16FRcXF2N/2f91podZSkqKMcUc6vY0m46xsLAgKSmJWbNmERoaSkREBH/7298YM2YMXbp0IS8vj4ceeoiSkhLatm3L5s2bSUtLIyQkBBcXFw4dOkT79u2B64mU3nrrLc6dO4e/vz99+vQx9us0Pdhu1Y1KzOfo0aO8++675Ofn4+/vT1hYGM2aNeNPf/oTq1atAq5vUfbpp59ia2vL8OHDuXz5MlOmTGH27Nm0bt2aBQsWkJWVhaurK8XFxYwcOZKuXbvStWtXAO68804++eQTrl69io+PD0ePHqWwsBAPDw/ef/99XF1dqampMaa2Q93GlILv36fa9wPT9L89e/Ywffp0OnbsiK+vL5aWlqxatQp3d3cuXbrExo0bSU9PJyoqyliyUFRURGFhIR9//LGRJ+DIkSPs2LHDmFHl5+eHvb09W7ZswdbWts4MiZstpVBj/Lc5ceIEX331FZcuXcLS0pLo6GjGjx+Pl5cX+/bto6amhtLSUv7yl79QU1NDt27d2LFjBwUFBYwaNQpbW1sWLFjAnj17CAgIoFGjRvTu3ZvXX3/deI8NGzawYsUKSktL6datG6+++ipTp06lU6dOeHh4GFPaNRL++3Tj7KTabZPLly8bMxr37t3LxIkTGTNmDLNmzWLdunW8++67rFy5El9fX3r06MHhw4eN4DohIYG8vDwKCwspKytj586dXLt2jaKiIho1akRycjJxcXFEREQY79G9e/f6/wPIf2zPnj3MmjWL6upq2rRpg5eXF61atSI8PJxVq1aRlZVFkyZN+Prrr3F1deWvf/0ra9as4aOPPuLll18mJiaGuXPncuDAAZo0aUJZWRmDBg2iW7duRru1U6dORjLiqKgovv76awoLC2nevDmvvvoqjo6OwPU8I/VBAbn8ovLycmbPnk1OTg533XUXISEhZGVlUVxcTO/evVm2bBkA9vb23HPPPbz22mtcuXKFjz76iC+//JJRo0bx0EMP4ejoSGFhIYmJiXz11VesXLkSHx8fysrKyMjI4NixYwwaNAgbGxtiYmKIjo42vgjjx48355/gd8nCwoIff/yR48ePM378eONBl5qayjfffMPhw4fp1KkTEyZMoKamhvnz5/Pggw/i7OzMnj17OHXqFEePHiU6OprPP/+cPn368OCDD5KTk8P27dvrdKzEx8cbAXlERAReXl5GtnX5Y6q9tjcvL4/PP/+ce++910jCV15eTnl5OY6Ojly7do1z584RGBjIxIkTyczMZMOGDfz4449cvHiR3bt3ExcXx8KFC6muriYzM5PZs2czf/58Zs2axdy5c/npp584f/48nTr7D7A5AAAgAElEQVR1IigoCD8/vzqNKFPvtgKo36eqqqqfrd8DjC1kzp49S2lpKdu2beP777+nVatWZGdn4+HhYSRqmj59utFoHzt2rDGNtKqqCicnJyorK7l27Ro2Nja0bt0aX19fdu3aRadOnXj++efrjIza2tr+4rpl+W1MHbzFxcV8+eWXtGrViqeffhofHx+OHTuGtbU1fn5+bNu2jaSkJFq3bs20adOwtLTk9OnTLF++nKysLDp37syLL77IiRMnqKys5NChQ2zfvp2cnBxjGUJycjJ79uwx9vXt168fYWFhADRq1IjIyEgz/zXkRqZEbKZkVjd+365du8a0adNISEjA3t6ebt26MXLkSIKDg2nYsCF+fn60aNGCmJgYzp07x9mzZ40lCYcPH+bcuXO0bNkSCwsLDhw4wD333ENZWRkzZsww2jrh4eHGfvO1R0Tl96+goABHR0djECkvL4+FCxfy+OOPc+eddwLXt7Js0KABDg4OODs7c+DAAQYMGMBf/vIXTp8+zaJFi9i6dSsODg78+OOPDB06lMjISKytrUlKSuKHH35g5cqVdO3alWnTpnH58mUyMzPp2rUrzZo1A2DFihVGmUwxSH1SQC4/S4pgevguX76co0eP8u233xrHent7A9d7lj788ENjlLakpITRo0dz9epVunfvTmZmJmfPniUoKKhO1sqzZ8+SlZVFRUUFH3zwATY2NnTq1IlBgwYBGA9e+adr164xbtw4Zs+ebSQe6dGjB1FRUZSXl+Pg4MCjjz6Kq6srLVu25IUXXuCZZ57B19eXu+++m8uXL/Pyyy/TtWtXgoKCWLp0qbGtR0FBgbFE4LvvvsPW1pb169czcOBAnnzyyTrbxjk7OyvxyR9U7anFtQPfQ4cOkZ6ezh133AFcTwBoa2tr5GkICwtj8+bNBAYGkpqayieffEJ4eDjTpk1j4cKF/Pjjj8TFxWFvb09FRQWFhYU4OzvTs2dPSktLsbW1pW/fvsTExBgJVkzn1pre35+zZ8/i5uZG48aNjc/H1CFo2u7Q1BjetGkTP/zwA0OGDMHS0pLly5dz6tQpOnXqhJeXF76+vsbyI1PCvokTJwLXP/sdO3YQFhbG4cOHeeedd2jRogVdunShZ8+eWFhYMGLEiDplq11fVG9+u9OnT7Nt2zYOHz5MUFAQffr0ISQkBBsbG+bMmUNxcbGxfrKmpsaYAty0aVMaNWrE8ePHad26NRkZGUyfPp2AgAD+9Kc/cfjwYU6ePEnr1q2NDhdPT09SUlKIiIggNzeXjRs3EhQUxDPPPENUVBRw/bOsnSNGfh8yMjL461//yt/+9rc6W9gWFBSwfft2vL29CQsLw8bGhvj4eKytrVm2bBlFRUU888wzVFdX8/TTT9OlSxdj+zpPT088PDw4efIkPXv2xM/PDysrK2OQwRQ4WVlZcf/99zNy5EizXb/8Z0yzKPLy8liyZAkjRoww8gytWbOG0tJSo2O+srLSCJCdnJxo3bo1e/fuZcCAAaSkpPDJJ58wcOBAhg0bxtKlS43dOK5du0ZZWRkXLlzg/PnzjBw5EktLS4KCgrjzzjuJjo7+XT0rFJDLTac6l5WVkZiYaGQrNjWc4PqXw9PTEycnJ44fP46Pjw9z584lPDycp59+Grje07Rr1y6CgoL45ptvWL9+PZmZmYSFhdG2bVsaNGjAP/7xD/Nc8G2mYcOGpKamkpKSYkzVg+sZaMeOHcu9995LYGAgCQkJvPTSS7i7uzNkyBAOHTrE4MGDCQ4OxtPTs05ipIsXL+Lm5sbjjz/OBx98QFxcHHFxccyaNctIyGYaGZc/lptlPjZ9t/Pz8zl37hwZGRn079+fXbt2ERERQaNGjQCMRld5eTm2trb06dOH9evXM3bsWI4ePcqFCxf45JNPgOvreE1rsFavXs2SJUto0aIFnTt3plevXtja2vLwww/XKRegoOp3pLy8nNWrV7NlyxYuX76Mra0tTZo0Ydq0aUbgvXTpUjZu3EhmZiZt27bl/vvvJzg4mE8//ZSnn36a3r17AxAfH8/OnTvp1KkTbdu25cCBA8bz5cEHH+Trr7/mqaeeAjCmoQcHB3PHHXfQq1evm9aH2lNjVV9+m8rKSqytrUlMTOSFF14AoGfPntx///0cO3aMF154geHDhzN69GiSk5Px8vICMJJ9mtoM7u7ueHt7G41hU0edaSr6/Pnzjd+dOXMmO3bsoGHDhnTs2JGIiAgaNmzIBx988LPy6XP9fcjOziYzM5NWrVphbW2Nh4cHb7zxhvHzL7/80tgv/ty5c9jb29O9e3dGjRpFQkICDRo0wNbWFldXV0aNGsXMmTN5+umnCQ8PZ/v27cD1ke1mzZoZ//b09KRdu3a4ublhaWnJX/7yF+P9VC9uP7Wf8ab7tq2tLfv27eP48eM4ODgwePBgKioqKC8vx87Ors7MC7iewDU0NJQFCxYA15fUVVZWGjkqDh8+jL29PUVFRWzatMmYlWXKeQX8rDP390IB+f+IG5Nq1JaXl0d8fDz79u2jurramDKYkpJCixYtjMa3ienL0bZtW6OXqqSkhPT0dKqqqlixYgWOjo589913jBo1Ck9PT0aMGEHXrl2NKUXy7+nbty+HDh0iJCTE6ByJi4sjISEBuL5XYmZmJmVlZQBER0fz2WefkZGRwfDhw3nllVd4++23cXFxYc+ePdTU1DBjxgyioqL44IMPaNy4sTkvT26xG3dCuLExs2fPHt5//30cHR2Nre26du1Kq1atWLp0qdHoNj1QTfeDfv36GQF4aGgoVVVVvPvuuyQlJdGpUyd++uknrl27xuDBg3/xIXizrNtiPrXXW9fU1DBv3jzi4uJ4++23cXR0pG/fvnz//feMGDGCzMxM8vPzefnll41lCx9//DGTJ08mJCSElJQU47wxMTGsXbsWuL6u87333qO4uBhHR0djS6LNmzdjaWlJ165djRkTN5ZLift+m9rTznfu3MmePXtISUmhb9++DBo0CHt7e4KCgrjrrruMTpTY2Fh8fX2ZN28esbGxtGzZ0tjb3dQOMH0WTk5O+Pn5cfr0aaqqqqiurqa0tJRvv/2WS5cu4e/vT3V1NcXFxQwdOpSHH36YJk2amOePIf+S+Ph4UlJSePTRR0lPT2fjxo3Y29vTsGFDbGxsWL16Nenp6bz00ktkZWWxZMkSli9fTsuWLVmxYgVz5sxh1KhRtGjRwpiJB9C8eXOKioqA69vdfv755+Tm5hoJge3s7CgpKcHBwYGhQ4ea6/LlP3CzJMOm/2ZnZ7Nnzx5jd5WEhATc3Nx44403CA8P59q1a6SmpgL/HCyovXNDYGAgVVVVXLlyhYCAAOzt7XnmmWcoKCggNDQUf39/ysvLGTZs2G01i0JPsz8gU1BWUVFRp0fKVLGzs7MpLy83jv/hhx+4du0ar776Kg8//DAzZszg1KlTtGvXjuPHjxs3TtPvFBcXU1hYSL9+/Th+/DjV1dU8/vjjNGjQgF69epGYmMisWbP4+9//DlxvfPXu3VvB+H+gT58+HDhwoM7IZrdu3Thx4gTV1dW0a9eO3NxcMjMzgeudJUVFRZw4cYJWrVoxZ84cHB0dKSkp4cknn+SLL74w1l0qGP9j+vrrr/nmm28oKyur0yN9/PhxFixYwPHjx4Hr07p+/PFHevfuzeeff25MJ0xISCAuLo4rV64YjXBTMF9WVsbu3bvx9vampKSEPXv2EB4ezvPPP4+lpSX3338/TzzxBJ988gkNGzakYcOGwPWHalVVVZ1yKqgyn9rPARNLS0vjWWFnZ0dERAQeHh7Ga9HR0WRkZGBra0t8fDzr1q1j7ty5DBs2jJycHHr37k2jRo0ICwtj/fr1xnmrq6u5dOkSeXl5dOzYkcrKSq5evWr83NbWlv79+9O3b18ji77p+VW7XOq4+fcVFBRgYWHB+fPnmTBhAt9++y0tW7ZkzJgxODo6kp6ejru7OwEBAezbtw/4Z93o1asXDg4OnDlzhoCAAM6cOUN5eXmdzyE5OZnc3Fz8/PwoLi7m2LFjTJw4EU9PT3744Qc8PT15++23efHFF2nQoAGBgYEKxm8DFRUVXLx4kezsbNLS0li8eDGjR49m2rRp5OTkYG9vz549ewCMZYemjOYDBw7k8uXLFBYW0qVLF7Zu3UpiYiJVVVWsWrWKe++9F7i+DPLPf/6zUd+io6O599576y2Rltwappij9n3i2rVrPP/884wZM8ZI9Ni8eXP+8Y9/4OLiQnR0NA4ODrRr1478/HyOHTtm/K6VlRXp6emcOHGCRo0aYW9vz/r164mOjmbUqFFERETw3HPP8frrr/PII4/g6up6222BrBHyP4hjx46xY8cOjhw5QmZmJvHx8cZ2VXA9SJ83bx7btm2jpqaGuLg4evbsSbNmzTh48CBeXl4sW7aMnTt3YmVlRXV1Nd26dePYsWMsXryY8ePHG5XbNNWsffv2FBUVkZaWRvPmzXnzzTcVdN8iwcHBnDlzhuzsbBo3boy1tbWRnCIpKYk2bdpgY2NDUlISoaGhODg4EBYWhq2tLZWVlbi5uTFhwgRzX4bcIqa1/rVHv/v164eLi4uxJdm3337LlStXSE1NpWHDhqxatYqZM2fSuHFjtm7dyueffw5Ax44diYqK4tSpU8TExDB06FBee+01nnnmGSIiIjh48CAbN26kXbt2ALz44ovGlPbevXsbo2vw8+nxysJvfqYgt6KiggkTJvDaa68ZuUEqKyvZu3cvmzdvNu4Zbdu2NTr+rl69SklJibHjRUhICH/729+YPn06zZo1M9YAmqYQfv/990yaNImMjAxat26NhYUFqamphIWFsWbNmpuWTzMm/nPZ2dnEx8dz6NAhUlJSGDlyJPfddx//+Mc/CA4ONqam11ZTU4O/vz+bN282ZsVVV1fj5OSElZUV2dnZjBw5krlz5zJ16lQmTpyIu7s7KSkpLFy4kNjYWNq0aUP79u2N+9Gzzz5b35cu/6KffvqJo0ePEhcXh6enJ/DPWRQlJSVGBv1du3Zx5swZmjZtSlhYGKGhoTz33HPA9Q67Dz/8kNLSUlq3bk1NTY3RHrG1tcXPz4+tW7cyePBgHn30UWbPns2ZM2do1aqVkS/Cw8OjTp4h+X2rnavjZrtXmCQlJbFx40aSkpIYPnw4Xbt2JTk5mfz8fBYsWFAnaZqpTbtz5066detGs2bN+POf/8xbb73FiBEj6Ny5Mzt37mTz5s3ExcURFhbG2LFjjU692ju23M4UkN/Gdu/ezdKlS0lJSSEhIYGuXbvy1FNPERUVRVZWFtu3b2fBggU8+eST+Pj4UFlZydKlS8nPz+f5558nKSmJN998k4sXL1JdXU2PHj0YMWKEcXMGGDt2LFOmTOHq1atcunSJK1eu4OXlxfPPP4+DgwObNm0yjlUwfus4ODjQoEED0tPTjZuQjY0NlZWV7NmzhzZt2hAWFlZntPHVV181V3GlntX+3EtKSozlKc8++yyPPfYYLVu2ZP/+/ZSUlLBw4UIAJk6cyObNm3nssccoLy8nPT3d2EbPNMqVn5/Piy++yKJFi/juu++YOnUqzZs3JzY21gi8TZmyTUyN8V+aHi/mceXKFZKSkoiMjKRRo0bY2toyd+5cYwZUTU0Nn3/+OXv37qVLly7G1jAdOnTgm2++4cEHH6S4uJiamhry8/Pp3LkznTp1wtHRkfz8fIKDg7ly5Qrx8fFERkbSpUsXPv/8c3bs2GGMiF64cIHS0lKjTDdujwSaMfGfKi8v54svviAvL497772XyMhIysrKyM/PZ9OmTcayAZOamhrOnz9PQEAA/v7+VFVVcerUKSIjI6moqMDOzg4bGxsKCgqwtrZmypQprF69mpdffpnU1FQaNGhAhw4daN68OW5ubjz55JNmunL5NVevXjU6Tq9evcr06dNJSkrC398fT09PY8p4UVERkydPJjo6mpEjR+Lg4EBKSgq9evWib9++JCUlGcd6e3vj7u7Ojh076NOnD+3atWPTpk20adMGgMjISH744QcGDx7MI488wuDBg+tsXSm3j4KCAgoLC/H29jaC8hvbHaZZDXl5ecycOZOgoCDuvvtuXn/9dSZOnEiHDh0oKytj7NixREVFUVZWRqdOnejTpw++vr4cPXqUbt26UVVVxfPPP8+2bdvYtGkTn332GeHh4QwcONBI6ml6Pv2RKCC/jZjWZMD1kSZLS0uGDBlCz549+eSTT8jLyyMqKor9+/fz3nvv0aRJE6ZPn05gYCBz5sxh8+bNXLhwgcuXL9O0aVP69u2LnZ0d/v7+BAcHM2TIEOD6frH79u2jZ8+edOzYkeXLl7Nx40aioqLo1q3bz9b2Sf0YMGAAixYtwsfHh127dpGVlYWTkxPNmzcHqJPwRP54fml7KYCDBw+yfft2SkpK2L9/P+PGjaN///7k5uZy/vx5IiIiCA8PJy8vj5ycHNzc3IiMjDQ64/r378+CBQtwcXGhUaNGRqCUmpqKi4sLI0eOZNCgQb+YZb920kcFVOZ3s/XWJSUlbNu2jeTkZJo0aUKzZs1ITk7m/fffZ9OmTSQlJbFkyRLWrVtXZ6pfy5Ytady4MV27dmX06NHA9U6YyZMn89e//pU33niDlStXMnPmTCwsLGjZsqXRWWNpaYmLiwsLFy7kyJEjdO/e3ciwbfq5/HcVFxfz9ddfc/jw4TqvZ2Zm4uLiQnJyMm5ubpSXlzN37lyWLFlC06ZNee655wgJCcHFxYVz584RGRmJnZ0dO3bswMbGxvhM27dvT/v27Tlx4gTu7u5G5mv5fSopKeGOO+4gMDCQxYsXG0s/8vPz6dKlCxcvXmTNmjX4+Pjw2GOP4ejoSLNmzcjOzgaur/dOTk7m2rVrNG3alMOHD5OSkoKrqytWVlZ06NCBDRs20KdPHzp37szKlSuN2XivvPJKnXuJgvHbi6ldceTIEXJzc/Hy8mLcuHFGwt9z586xcOFCDh48SJs2bRg2bBjR0dEsXLgQd3d3XnzxRQDS0tLYvXs3HTt25KOPPuLq1avk5uayadMm3nnnHfr06UOvXr145513OHDgAH5+frz55pv06dOHmJiY/5nBPgXkt5Ha68Crqqro3Lmz8bP27dszffp0iouLadWqFY0bN8bFxcXIyl1QUEBAQAD3338/0dHRdc77yCOP8Mknn5CYmMiVK1fIz883gnO4nqxFiTXMr1evXnzzzTfY2dkxbtw4unTpctutkZHfrva0sJSUFKqqqvDz8yMjI4OPPvqIqKgo+vXrx7p160hISKB///60bduWU6dOMWTIEFq0aMHu3bvJzMzEzc2NNm3akJCQwKlTp3jiiSdYtmwZ48ePx9fXl8jISNasWYOHh4fxnqZg3LQGvHZ5NBXdvEpLS9myZQsODg707NmzTqCbn59PWVkZeXl5rFixAldXV+Li4hgxYgRt2rShtLTU+EybNm1qTFcuLy/H2toaS0tLAgICqKiooKCgAGdnZ2bPns2kSZOYMWMGs2bNomPHjpSVlRlZtGvLzs6mffv2PPvss8pXUQ/s7OwIDAzk//7v/2jcuDH29vaEhIRgaWlJ586d2bVrF5GRkVRVVXH33XczcOBAVqxYwYEDB+jSpQu+vr6sXbuWwsJCtmzZQlFREaNHjyY4ONh4j5qaGsLDw814lfKvMu3bbGVlxfz58xkxYgS2trb4+vpiaWlJZWUl9vb2lJSUkJmZiY+PD4GBgcbyx9DQUKNtGBQUhLW1Nfv27auTy+bjjz8GYNSoUUa2a8AYkZfb00svvUSbNm144YUXiIiI4NVXXzWyljs5ObFq1SosLS359ttv+fLLL5kzZw5ubm64u7uzf/9+4zydOnVi7dq1VFdX07BhQ2OKupeXF9HR0dTU1NC7d28sLS1xd3cnIiICuH6f+V8JxkEB+e/OjWsyTCNVFRUVpKam8vXXX5OQkEBMTAxPPvmkMTLVuXNniouLOXv2LBEREXh7e+Pm5kZhYSFOTk6EhISQnJxsBHAJCQls2rSJnj17EhERwVtvvcWRI0eMdULy+xMQEFAnSZL8sdwsK2lt27ZtY/ny5Tg4OHD48GF69erFyy+/zFdffUVAQICxXvPhhx/m2LFjlJeX0759e5YsWUJOTg5hYWFs2bKF1NRUgoODCQoK4tq1a1y+fJmwsDAee+wxHnzwQaqqqti6dSuhoaF11nmZKPj+fbgxG3qLFi2MteDl5eXMmzePXbt2ce3aNUaMGEHfvn156KGHKC0t5ZVXXgGud644Ojpy8OBBAgICcHZ2ZseOHfTv3x9bW1tjGmJYWBgrV640Zkk0aNCAGTNmGI2l2iNftWdyNGjQwEj2JPXDwcGB559/niVLlhj1Y+3atVhbW9OtWzdWr17N6NGjcXBwwNfXF7hel0yfpb+/P9u2bSMnJ4fx48fTsWPHn81k0DKU28tdd92FhYUFJ06cwM/PD09PTyIjI7G3tyc1NRVXV1cyMjKMZUutW7dm7dq1JCcn06ZNG6qqqkhMTGTgwIEMGjSIadOmcfjwYR566CF69OhBr169gOt1T8nYbj+1Z7jBP7dCjI6OJigoyAiQra2tadasGU5OTiQmJnLy5Ekjv9TQoUMpKytj3bp1DBo0iBkzZlBUVISjoyONGzcmIyMDZ2dnEhMTeeedd6iqqqJVq1aMHTvW2MElLi6uTrn+1+4zCsjNqKysjIMHD+Lh4UHLli2BulP4TJW5vLycRx55hGbNmhEREcHdd9/NE088QatWrejdu7exniMgIIADBw4QERFBUFAQP/30E5mZmTg5OTFo0CCKi4uZN28eFy9exNHRkS5duhiZtt3c3OokYxKRW+vw4cNs3boVa2trHn74YRo1amQ8FAsLC8nPz8fHxwcLCwtyc3NZtWoVbdu25d5772XatGnGDgceHh6cOHHCOG9MTAzLly8nOTmZtm3b8tlnn3HmzBmio6ONteKm35s2bZoRTOXm5jJz5kxOnjxJQEAAjz/+uBpXv2O1nxUODg44OjqyYMECRo0aRXJyMufPn+ell16qM5IZERHBpk2bOHz4MO3atcPKyoqoqCg2bdrE5MmTCQ8P58svvyQzM5Pjx49z7do1XnvtNfr06UNgYKAR8MMv5wxRh435derUiU6dOlFRUUFZWRmOjo707t2bkJAQTp8+zZNPPkmPHj04deoUqampNG7c2BjZ7NevHwMGDDDzFch/U/fu3Vm7di09evTg2LFj2NnZkZKSwqRJk3j77bfx8fEhLS2N06dP06FDBzw9PTl16hRHjx6lffv2xg4tlZWVdO7cmVWrVv3PBUt/JN9//z3p6emMGDECR0dH456dmppKXl6eMSgXGxvLjBkzOHz4MOfPn6e8vJzIyEhOnTqFn58fmZmZNGnSxEgcnJ+fj5ubG35+fsTGxjJt2jRsbGw4ceIE48aNw9HRkaCgIP72t7/9bPaE6pMC8npXXV1NdfX/a+/eg6K8zjiOf4EFBAXZBBXkJiACKqCIoICIeEEgxlQd6gWwqbeMpqmXWi+klcYk3kLVpAW1FqUxRkfUtI0Zo0EJihoFjaJxUUEUVBYMXkBUyLL9g9m3rtJmkjaul+cz4x/snnf3vO+ss+9vzznPaUalUtHU1ERdXZ3RVLDCwkI2bdrE+fPnCQwMZMKECfTs2ZOuXbty+fJlfvazn2FnZ0dCQgKFhYWEhIQolW3Dw8M5ceIE0FKVe//+/ZSXl+Pt7Y2lpSVJSUkMHToUa2tr5RghxOO1YcMGsrOz8fb2pnfv3pSVlbF69WomT57M119/zYcffsjt27fx9/cnICCAiRMncuzYMS5cuEB6ejoAU6ZMITU1lfPnzzNgwABWr16t/IBnbW3NtWvXKCkpIT4+Hnt7e2prazE3N+fNN99UfoTT6/VGI5sODg7MmjXLaJq6MJ3W1oEbXLt2jcOHD6PX68nPz2fu3LnU1tZy+PBhBg8ejFar5caNG2zdupWLFy9iZ2dHQEAAvr6+5ObmUlVVpbzWgAEDWLJkCampqUyePJnIyEg++eQToqKiiIyMVD4jQUFBj/X8xf/GsPTA0tKSxsZG7O3tcXd3Z+3ateTn55OXl0f37t2ZMWOGUswRZF3/s6hHjx784Q9/4NVXX8XGxkb5ke3FF1+kTZs2mJmZ0bNnT/bs2cPRo0eV0Uo3Nzf0ej2LFi0yWh4n4enp82B1dJVKxbFjx4iLi8PGxoYtW7bwySefYG5uTteuXenUqRNvvPEGERER6HQ6wsPDWbZsGW3btmXlypWsWrWKjIwMfHx82Lx5MzNnzkSlUlFeXq7svpKenk5ubi41NTUkJycrg47P0xT0H0oC+U9Ir9dz5cqVR77sDF947dq1IyAggDNnztC7d2/atWvH9u3b6dGjB6tWrWLJkiWsW7eO1NRUgoODuXPnDg0NDdjZ2REaGsrWrVu5deuWEq4jIiLIzMyktrYWHx8fQkJC8PDwMOrTgxXUhRCPn5ubG6GhoSxfvhyA/Px8Nm3ahIWFBXZ2dixduhQPDw9ycnJIT09nxIgR+Pn5UV5eDrRML/P29qa2tpbi4mLGjBnDoEGD+N3vfse9e/ewtbXFy8sLrVYLwPvvv6/cTBnCODx6U2Vubi5h/Anyn4LRF198wQcffECfPn3Q6XQUFxdTVlZGcHCwMksqKSkJnU5HVVUVlZWVFBUV0dzczIYNG+jcuTOfffYZly5don379gwePFipxG1tbU1QUFCr4fvBGzrxZLt37x4FBQUUFhZy8eJFLl26xPDhw/H09MTMzIyBAwcycOBAU3dTPCY2NjZYWVlx9epVYmNjOX/+PH379gVa1nlrNBrmzJlDx44dqampISoqyqgehNSqebqcOnWKjIwMxo0bx8CBA5Up6M3NzXzzzTfU1NSg0+nQarW4uLjg4eHBX/7yF+zt7dm+fTuLFy8mMTERJycnHNumqx0AABBaSURBVB0dUavVtG3bFoD+/ftTVFRERUUFr732Glu2bGHy5MlUV1cTFham1LZSqVTExsaa8jI8dSSQ/wQM60D//ve/89133zFy5EgsLS1pbm7mq6++Ijc3FwcHB2bMmEFeXh5HjhyhS5cunDt3jurqaqZNmwZAUlISmzdv5ssvvyQ8PJycnByqq6uV9T9//vOfKS8vV0K3n58fM2fOxMrKCltbW6ZMmWLKyyCEaEWfPn3IzMzkzJkzfP3112zbto3AwEA6duyIWq1m/fr17N69GycnJ6ytrTly5Ajx8fE4ODjw6aef8tJLL1FXV4eFhYUyjeyPf/wjeXl5mJmZERkZyTvvvMOdO3eAlpspCVNPrszMTFxdXR9Za11aWkpOTg7l5eUMGjSI2NhY7O3tyc/PJz4+nmnTpqHVatHpdBw5coSoqCjc3Nw4c+YMgNF6vIMHD5KTk0NjYyMTJ05k5cqVNDQ0MHToUDp16qQUZTJ4eP94kFGxp0mbNm2wsLDAwsKCpKQkQkNDJVQ95xISEigoKCAsLIypU6cq05QTExOxsLBArVYra8HF062qqoqDBw9SWVlJZGQkKpWK27dv89prr2FhYUFYWBgnTpzg7NmzBAcHExoaygcffEBubi69evXC3t6eXbt2MWnSJEJCQigqKiIuLo7GxkYOHDiAp6cnHh4emJubM3v2bGVveUNoFz+OBPL/kwdveA03Ma+88gp1dXXU1dXxwgsvsGLFCs6ePUt0dDTBwcGYmZnRu3dvioqKqK6u5oUXXuDGjRtKNWMnJyeqq6vp2rUrrq6u6PV6SktL8ff3R61WExgYiI2NjfLeer2epKQkk10DIcT3U6vV1NfXM3/+fIKDg5k4cSL79+/nrbfeonv37mi1WlatWoWXlxczZsxQAvmsWbPYu3cva9eupXPnznh6enLx4kWlIra7uzu7d+9mw4YNmJmZGe0HLGHqyeXt7U1eXp5RIK+trSUjIwNPT09GjRpFbm4ux44dY8WKFVy/fp3BgwfT3NyMWq0mKCiIL7/8ku+++w4fHx9OnjxJbW0tly5dYuvWrZSWlqLT6fjtb3+LlZUVVlZWLFq0yKgPDwdw2T/+6RcdHU10dLSpuyGeEAMGDCArKwudTmf044y7u7sJeyV+CsePH2fBggXs27ePNWvW8Mtf/pIdO3bQrVs30tLSgJadWjQaDU1NTeTn53Pu3Dl27dqFmZkZ8+fP59ChQ0yaNInIyEimTp3K6dOnaWxsxNPTk5SUFKOZvr179zbh2T47JJD/CA9XQod/3/BevXqVoqIi3N3dcXZ2ZvHixQwYMICYmBguXrzIxIkT6dOnj1IsydvbG5VKRUlJCePHj8fBwYHNmzfz+uuvo1KpuHr1Kl26dAEgICBAGe0C+P3vf2/UL7mBEuLpEBMTQ5cuXfj5z38OtFQ23rlzJ+vXryc4OBhnZ2cuXbrEzZs30Wq1aLVaXnnlFfr378/9+/dxd3dn+/btSs0IKysramtrUalUzJs3z6guhXiy9e3bl8zMTKUGALSMjp88eVKpGRAUFERcXBz379/Hzs6OsrIyIiMjsbKy4sKFC1RUVFBZWYmrqysNDQ2UlZXh4uJCTEwMM2fONFqqYKDT6ZT16RLAhXi2+fj4sGTJElN3Q/yEDINzFy5coGvXrixatIhly5axf/9+7t27R319vdL25Zdf5k9/+pMyk66wsBAzMzMKCwtpaGigoKAAaNnWLi0tjV69euHr62uS83peSCD/AQwf9tbW9t2+fZu33npLGcF2cnKiffv2eHp6otVqcXR0pE+fPqxdu5aePXty+fJl3NzcmDdvHt7e3lRUVNDY2Mivf/1rtmzZwvjx46mpqeHll19Wbq7nzZv3uE9ZCPETGDp0KNnZ2Uogd3Bw4NatW0yaNImSkhKGDx+Ot7c3CQkJdOvWjQ4dOgAtOy9kZ2dz+vRprK2teffdd5XXDAkJISQkxCTnI348tVpNQ0MDly5dokePHgDU1NTQr18/ampqcHR0pGPHjri5uXHq1CnGjBnDmjVrqKurw97enpqaGry8vLhw4QJDhgxh6dKlSq0QZ2dn5X0e3tpGqqELIcSzwzBT1svLC2tra9zd3YmMjCQzM5PRo0dz6tQppW2HDh04deoUZ86cISoqimHDhjFs2DBefPFF5syZQ0pKCtCSewz3KeKnJYG8FaWlpeTl5VFYWIifnx/9+vUjLCxM+bAfO3aMgoIC2rVrxy9+8QssLS3Zt28f5ubm7Ny50+i1OnXqpGw/NmXKFKZMmYJOp+Po0aNkZWVx+vRpvLy82L59OyUlJQQFBeHq6kpNTQ1+fn4mugJCiJ+Sv78/Go2GPXv2cObMGY4cOUK3bt1ITEykvr6eSZMmGRXVMWjbti1Dhw5lzpw5j2wbIp5egwYNoqioCH9/f8zNzVGr1dy/f5/8/HxGjx5NWVkZ7u7uyp7g1tbW7NixAzs7OxITE8nMzFR+tHmwcOeDS6kkgAshxLPtxo0baDQaNBoNGzdu5ObNm7i4uHDo0CF0Oh1ZWVk4Ojpy7tw5XFxcqK6uxsrKijfffBO9Xq/M0jKQXRceHzO9Yf6z4O7du8TGxtK5c2cCAgIICwvjypUrZGRkMHfuXMaMGcPKlSupqKggIiKCyspKbty4wcKFC/nNb35D3759SU5O5t69e1hYWGBpaUlBQQG7du1i5MiRhIWFcfr0aaqqqsjNzaWpqYkVK1bw7bffotVq8fPzk5smIZ4TY8eOxdbWln79+hEeHq7s/fmg5uZmQL4Un3XHjx8nOzub1atXK4+tW7eOI0eO0KFDBy5cuEB4eDhz5sxRnq+oqKC0tJTdu3ej1+tZsmSJfE6EEOI5N2TIEGJjY5UdWgBGjRpFREQE5ubmaDQaRo4cSWhoKI6OjiburTCQEfIH2NjYoFKpWLp0qbJuG1DWdRu2hUlKSuLu3bvs3LmTW7ducevWLZycnNBoNEBLhVMDLy8vmpqaOHv2LL169WLDhg3odDoiIyOJjo7GzMwMR0dH+U8hxHPm448//t51uxKwng+GGROfffYZRUVFHD16VKme/8033/CrX/1K2T7TMOq9Zs0adDodERERDB48WD4rQgjxnNNqtbi5uTFq1Ci8vb1pamrC0tKSRYsW4eTkJFsfP8FkhPwhy5Ytw9nZmZSUFGXvvqqqKtLT0ykpKcHKygqVSoWvry9RUVH0798fW1tbiouLefvttxk2bBhRUVF88cUXWFhYMHXqVHJycnB1dVX25xNCCPh3gUhDcS3x/Bo7dix6vZ7+/fsTExNDYGBgq+1kCzshhBCtMczqfeONNyR8P2UkkD/k+PHjbNy4kVWrVikjDnfu3GHjxo3s3r0bR0dHFi5ciI+Pj3LM6dOn6dmzJ2fPnmXTpk1cvnyZwMBAEhIS6N69u6lORQghxFOitaD94NezhHAhhBDi2SSB/CF3795l1KhRfPjhh6jVaiwsLGhqamL69OnExMRw5coViouLGTp0KBqNhpMnTzJ+/HhGjRqFtbW1Mj1ECCGE+CF0Oh2AzJgQQgghniOyhvwhNjY22NracvXqVWVdt0ajobq6mt69ezNu3Dj279/PwYMH6d69O9OmTcPNzU05XsK4EEKIH0OKegohhBDPHxkhb8Vf//pXSktL6dq1KwUFBVy/fp3p06cTGxtr6q4JIYQQQgghhHhGyAh5K2JiYti5cydqtZpXX32V0NBQrKysTN0tIYQQQgghhBDPEBkhF0IIIYQQQgghTEA2LhVCCCGEEEIIIUxAArkQQgghhBBCCGECEsiFEEIIIYQQQggTkEAuhBBCCCGEEEKYgARyIYQQQgghhBDCBCSQCyGEEE+JmJgYfH192bFjx2N7z/nz5+Pr68v8+fO/t62vry++vr589dVXj6FnQgghxNNPArkQQgjxBFmwYIESbF9//XVTd4eIiAhSUlKIiIhQHpPgLYQQQvx/qEzdASGEEEK0qK+vZ/fu3crfeXl5XL9+HUdHx8fel+bmZvR6PSNGjGDEiBGP/f2FEEKI54GMkAshhBBPiF27dtHQ0IBarcbFxYWmpiZ27tz5X4/5+OOPGTJkCL169WL27Nm88847+Pr6kpycrLSpqKhgzpw5REdH06tXL1566SXWr19PY2MjAJWVlcqo90cffURcXBw9evTg2rVrRlPWDe0MUlJSWp3OXlJSwrhx4wgMDGTEiBEcP35ceS45ORlfX1/S0tKYOnUqAQEBjBw5Eo1GQ1ZWFhEREfTr14+VK1f+Py6pEEII8USTQC6EEEI8IbZt2wZAbGws8fHxAOTk5PzH9nv37iUtLY2KigrCwsKor6/no48+Mmqj1WoZM2YMn376KQ4ODsTHx3Pt2jVWrFjR6rrwJUuW0L17d+Lj47GysjJ6rl27dqSkpCh/x8bGPjKdHWD58uW4uLjg5ubGuXPnmDt37iPvs2XLFtq0aYOHhwcajYbk5GSysrLo378/N2/eZM2aNRw+fPh7rpgQQgjxdJNALoQQQjwBSkpKKC4uBiAhIYGEhAQAysvLOXbsWKvHbNmyBYDo6GjWrl3LunXrCA8PN2qTk5PDzZs3UavVbN26lXfffZe3334baBmRr6qqMmq/cOFC0tPTSU9Pp2PHjkbPOTg4kJqaqvw9YcIEUlNTH5nSPn36dN577z2WLl0KtIzA37hxw6jNoEGDeP/995k1axYAt2/fJi0tjffee4+ePXsCKNdDCCGEeFZJIBdCCCGeAIbR8Y4dOxISEoK/vz9eXl5Gzz3s2rVrAHTr1k15zM/Pr9U2Hh4eWFtbP9L+6tWrRu3DwsL+l9MAICgoCGgJ8AZ37twxamPoQ/v27ZXHfHx8gJaR+NaOEUIIIZ41EsiFEEIIE2tsbOSf//wnANXV1fj7++Pr60tZWRkAn3/+OXV1dY8c17lzZwBKS0uVx86dO2fUxtnZGYDLly8ra8bPnz//yPMGhtD+31hYWAAthd9ao1K11Iw1MzP7j69haNPa6wohhBDPC6myLoQQQpjY559/zs2bN4GW6ecPBtP9+/dz7949/vGPfzxy3NixYzlw4AC5ublMnz4dnU7HgQMHjNqMHj2a7OxsamtrGTt2LH5+fuzZsweAuLg4nJ2dqays/EH97dy5MxUVFaxatYp9+/YRGxtLSEjIDz1tIYQQ4rknI+RCCCGEiRmmpIeGhrJ27VoyMjKUf4MHDwZaL+42ZMgQ0tLScHV15dChQ9ja2pKYmAj8e7TZycmJbdu2kZCQwLfffsuuXbvo1KkTs2fPZvny5T+qvwsWLMDNzY3i4mL+9re/odFoftTrCCGEEM87M71erzd1J4QQQgjx49y6dctoHXZycjJHjx4lMTGRxYsXm7BnQgghhPg+MmVdCCGEeIoNGTKE4cOH4+TkxIkTJzh69Cht2rRhwoQJpu6aEEIIIb6HBHIhhBDiKRYYGMjevXupr6+nQ4cODB8+nBkzZhhVUhdCCCHEk0mmrAshhBBCCCGEECYgRd2EEEIIIYQQQggTkEAuhBBCCCGEEEKYgARyIYQQQgghhBDCBCSQCyGEEEIIIYQQJiCBXAghhBBCCCGEMIF/ATDbNdhOlV1/AAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Classification of Summary of Algorithma \n", + "best_acc = results[results['Accuracy: Test'] == results['Accuracy: Test'].max()]\n", + "best_f1 = results[results['F1 Score: Test'] == results['F1 Score: Test'].max()]\n", + "best_precision = results[results['Precision: Test'] == results['Precision: Test'].max()]\n", + "best_recall = results[results['Recall: Test'] == results['Recall: Test'].max()]\n", + "\n", + "sns.set_style('darkgrid')\n", + "plt.figure(figsize = (15, 6))\n", + "\n", + "barWidth = 0.17\n", + " \n", + "# set height of bar\n", + "bars1 = results['Accuracy: Test']\n", + "bars2 = results['F1 Score: Test']\n", + "\n", + "# Set position of bar on X axis\n", + "r1 = np.arange(len(bars1))\n", + "r2 = [x + barWidth for x in r1]\n", + "\n", + "# Make the plot\n", + "pal = sns.color_palette()\n", + "plt.bar(r1, bars1, color= pal[0], width=barWidth, edgecolor='white', label='Test Accuracy')\n", + "plt.bar(r2, bars2, color= pal[1], width=barWidth, edgecolor='white', label='Test F1 Score')\n", + "\n", + "# Add xticks on the middle of the group bars\n", + "plt.xlabel('Algorithm', fontweight='bold', fontsize = 13)\n", + "plt.ylabel('Score', fontweight = 'bold', fontsize = 13)\n", + "plt.xticks([r + barWidth for r in range(len(bars1))], results['Algorithm'], rotation = 15, fontsize = 11)\n", + " \n", + "# Create legend & Show graphic\n", + "plt.legend(fontsize = 13)\n", + "\n", + "textstr = '\\n'.join(['Best Accuracy: {:.3f} - {}'.format(best_acc['Accuracy: Test'].values[0], best_acc['Algorithm'].values[0]), \n", + " 'Best F1 Score: {:.3f} - {}'.format(best_f1['F1 Score: Test'].values[0], best_f1['Algorithm'].values[0])])\n", + "props = dict(boxstyle='round', facecolor='lightgrey', alpha=0.5)\n", + "\n", + "plt.title('Classification Summary of Algorithms', fontweight = 'bold', fontsize = 17);" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/", + "height": 539 + }, + "id": "K2WaaxXW9j0F", + "outputId": "f3c7ae0c-c872-4a46-e27c-45d7f71bbe2a" + }, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'Training and Prediction time of Algorithms')" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAysAAAH4CAYAAABKYnL0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzdeXhM1/8H8PdMtpFNJJmE2II2sUQiBCkhljShxNpF7UpSKqHUvhW1JZQgllCKiF0psSS0VZQSEVq0toolEVmQVfb5/ZFf7jcj22SbzMj79TyeZ+bOved87j03437mnnOuSCaTyUBERERERKRixNUdABERERERUVGYrBARERERkUpiskJERERERCqJyQoREREREakkJitERERERKSSmKwQEREREZFKYrJC9A6ztrYW/pXXs2fPhDJ69OhRidGplytXrgjHYcSIEdUdToX06NFD2Jdnz54BqPp2VrfzaP369UK869evr+5wKs3Tp08xadIkODk5Vdn+qerfSnnj+umnn4TtZs2aVYURElFRNKs7AKJ3XY8ePRAVFaXQul5eXvD29q7iiEgZ1q9fD39//0LLdXV10bRpU7i7u2P48OHQ1Hx3voZ37NiB5ORkAMCoUaNgaGhYzREV79mzZzhy5AgAoH79+hg0aFA1R1T1cnNzMXHiRNy9e7dc2//5558YNWqU8F4qleL8+fMQi9X7d8+kpCTs3LkTAGBgYIDRo0dXb0BEJOfd+V+SiAoJCgqqcBlmZmZCOTo6OhUur6ZLS0vDrVu3cOvWLVy4cAFbt25ViYu9ymjnXbt2CYn5wIED5ZIVVTuPoqKihGSyQ4cOhZKVwYMH44MPPgAAWFhYKD2+qvDs2TMhUTEyMsKKFStgYGCg8P4dP35c7n1cXByuXLkiHCdV17JlS+EcNDAwEJYnJSUJ50L9+vWZrBCpGCYrRFVs7dq1yMjIEN4vWbIE//zzDwBg0KBBGDx4sPBZcRcNaWlp0NXVLXPdDg4OZd7mbdra2pVSTk3WokULzJs3D9nZ2bh8+TI2b94MALh48SLOnDkDNze3Ercvb/uXRVW3s7qdRxYWFu9MkpLvxYsXwuv3338f3bt3V3jbzMxMhIaGFlp+/PhxlU9WcnNzkZWVBQMDA7U6B4koT/X/nEf0jmvdujUcHByEfwV/0bOwsJD7bPjw4ULf6Nu3b2P27Nno2LEj7O3tAQAPHz7EjBkz4O7ujo4dO6JVq1Zo3749hg4diqNHjxaqu6gxK2/32759+zZGjx6NNm3aoGPHjli8eDEyMzOF9Ysba/B2P+5Lly7hs88+g62tLZycnLB+/XrIZDK5eJKSkjBv3jx06NAB9vb2mDhxIp49e1bkGIriZGZmYtGiRfjkk0/g5OQEGxsb2Nvbw93dHf7+/khPT5dbf8SIEULZf/zxB/z9/dG9e3fY2Nhg4MCBCAsLK1RHeHg4hgwZAltbW3Tr1g0bNmxAbm5uiXGVJP8iydHREVOmTEGHDh2Ez/Lrf7tdwsLChOO5ePFiYf2HDx9i5syZcHZ2ho2NDRwdHTFp0iT8+++/hepNTEzE3Llz5Y53cV0SSxpTkpubi4MHD2LYsGFo3749bGxs0L17d3zzzTdISEgQzoWCZffs2VOuTUsqPzs7Gzt27MDgwYNhb2+P1q1bw83NDT4+Pnj16pXcurNmzRLKOXz4MAIDA+Hm5gYbGxv06tWryAvqt40YMQIjR44U3l+9erXQWIbixqwUPJ/Onz+PpUuXwtHREe3atcPMmTORkpKCxMREzJo1Cw4ODmjXrh2++eYboXtcQTdv3sSkSZPQuXNn2NjYwMnJCbNmzSr1b6CgtLQ0+Pv7w93dHXZ2drCzsxP+Ft68eSMX9/Dhw4X3YWFhwn5cuXKl1Hp+//13JCUlAQBcXFyE5Dk0NFTu+6I0Dx48wNixY2FnZ4dOnTph2bJlePDgQaWfG4cOHcLGjRvRvXt3tGrVCjdu3ChyzMqsWbPQs2dPoYyoqKhSx1aFhYUJ3w9Ffde9Xc/Vq1cxePBg2Nraok+fPjh79qxw7Nzd3Ys9d9+8eYM1a9agd+/esLW1RevWreHs7IyxY8dix44dCh9zInXHOytEKmry5Ml4+vSp3LJHjx7h559/lluWlJSE8PBwhIeHIzo6Gl999ZXCdTx69AhDhw4VLvDfvHmDoKAgGBkZYdKkSQqXc/XqVRw7dgw5OTkA8rqH+Pv7w8LCQrhzlJ2djXHjxuHmzZvCdmfPnsXt27flLqpKk56ejj179sgty8rKwr1793Dv3j2Eh4fjxx9/LHLbhQsX4smTJ8L7O3fuYMKECfjll19Qu3ZtAMBff/2FMWPGCHfDnj9/jnXr1qF58+YKx1iagglrVlZWoc8jIyMxduxYuTtyAHDp0iVMmDBBLiF79eoVQkJC8Pvvv2Pz5s3Cr9zZ2dnw8PAodLxv3bpVKKErSXZ2Nry8vPDbb7/JLY+OjkZ0dDTGjRuncFlFycrKgqenJy5duiS3PDIyEtu3b8fp06exb98+mJubF9p28+bNcu356NEjfP311zh58iQsLS0rFJcivvvuO7n6jx49itevXyMhIQF///23sDw4OBiamprw8fGRW3fOnDnC3wyQ93dz5MgR/PbbbwgMDISVlVWJ9ScnJ2Po0KG4d++e3PL8v4WzZ88iKCgIenp6Fd1VuS5ggwYNgo6ODk6cOIHk5GScO3cOrq6upZbx7NkzDBs2DK9fvwaQ97e8c+fOYpOlip4bb39/VoaIiAgEBwcLf7dFfdcV9PjxY4wbN074W37w4AG8vb0xfvx4bNy4UVivqHN33rx5CA4OlisvJiYGMTExePLkCburUY3BOytEKur58+fw8vLCtm3bMHv2bABAw4YNMWPGDPj7+2PHjh3YuXMnli9fDmNjYwDADz/8UKZfOePi4tCyZUts3LhRbnacvXv3linWqKgodOvWDZs3b0afPn2KLOfIkSPChbOuri7mz5+PDRs2wMjISLh4UYS2tja8vb2xZs0abNu2DYGBgVi/fj1sbW0B5F3QR0REFLnt8+fPMW3aNPj7+6NevXoA8i74Cl4QLF++XLiwaNOmDTZu3Ii5c+fi8ePHCsdYnOzsbFy4cAEXLlwQlhV1QRobG4u6deti5cqV2LJlC1xcXJCeno4ZM2YgPT0dIpEI48ePx/bt2zFjxgxoamoiPT0dM2fOFNr/7eO9YMECbNiwASYmJmU63rt37xYSFS0tLXh4eGDr1q3w9fVFt27dIBKJ4OzsjKCgIEilUmG7tWvXIigoCEFBQTAzMyu2/F27dgkXo8bGxli6dCn8/f2F5DA6OhpLliwpctsnT57Aw8MDmzZtEtbPycnBgQMHStynefPmYd68ecL7Fi1aCLEWXF6a+Ph4fPfdd1iyZIkw7ujcuXN4+PAhlixZgoULFwrrHj9+HCkpKQDy2nfBggXIycmBtrY2pk+fju3bt+PLL78EALx+/Vr4my/JmjVrhESlYcOGWLNmDVavXo369esDAP755x/hrlBJ+9yyZcsS60lJScG5c+cA5CXaXbp0Qe/eveX2TRF+fn7CudeoUSOsXbsWS5cuRUxMTJHrV+TcePr0Kdzd3bFlyxb4+PgUmdAAwPjx47F27VrhvVQqFY5LweX5IiMj0bVr1xK/6wp68eIFOnXqhC1btsDR0RFA3p3KjRs3omfPnggICEC7du0AFD53f/nlFwB542jWrl2LHTt2wMfHB8OGDRO+v4hqAt5ZIVJR48aNE2YGc3JyAgC89957CAsLww8//ICHDx8iJSVFrvtBamoq/vvvP4XvAmhpaWH9+vUwNTVF9+7dcejQIbx58wYvX75ESkoK9PX1FSrHxMQEfn5+0NbWRuvWrXHixAkAkPvVuWAXh7FjxwpdUpo2bSp34VMaiUSC1q1bIzAwEHfu3MHr16/lfp0GgL///lvoOlfQ559/Dg8PDwB5v2R+//33cnG+fPkS169fBwCIxWKsWbNGGLeQkJAgjDUpq/xuRm+zsLBA//79Cy0Xi8XYvHkzmjZtKiw7e/Ys4uLiAOQlUV26dAEA2NnZwd7eHmFhYXjx4gUuX74MZ2dnnDlzRtjWw8MDw4YNA5B3DpU2Rqaggt0LJ02aBE9PT+F9wdhNTEygra0tvLexsUGDBg1KLf/YsWPC65kzZ2LAgAEAgGbNmgnnxa+//orU1NRCdwh69uyJadOmAcj7lX7KlCkA5M+7olhbW8slbOUdyzBy5Eh8+umnAICdO3fi/v37AIDRo0fjk08+AZA3ycX9+/eRk5ODZ8+eoXnz5jh16pSQEHfv3h1t2rQBAHTt2hUhISGIjIzErVu38ODBA7z33ntF1p2bm1soyW7fvj0AoHbt2hg7diyAvLs6+d2jyrvPoaGhQrw9e/aEtrY2unbtCj09PaSmpuLcuXNITk6Wu2NYVLz5F98AsGzZMiHe7OxsfPvtt4W2qci50bZtW6xatUpuWcExO/ksLS3lZuQrbWyVIt91BUkkEqxatQr6+vp48+YN/vzzTwBArVq14OvrC319faSnpyM8PLxQOfnb6Ovro1GjRmjatCkkEolwHIhqCiYrRCqqqMGvPj4+whSbxSmqb3xxmjZtClNTUwB5F8iGhoZCl6zExESFkxU7OzvhQtXIyEhYnpiYKLwu2CUj/+IsP4batWvLrVuSs2fPwsvLq9B4mILy+9a/reBYkTp16hRav+CFgqmpqdwA6/w7N5VBLBbD2dkZ8+bNK/IYN27cWC5RAfKSq3wRERFC8vG2hw8fwtnZWW5f7OzshNeWlpZlOt4F662K56MULL+48yI7OxtPnz4tlIQXbM/izruq1Lp1a+F1fjdCIC9Ry1fUeVZwn0NCQhASElJk+Q8fPiw2WXn58qWwnyKRSK6NCx7HuLi4Mv3wUJSCd07ykwQdHR307NkTx44dQ2ZmJkJCQvDxxx8XW0ZCQgLS0tJKjbegipwbZZk8oCwU+a4rqEmTJsKxL3iOFFxe8BwpWM4nn3yCjRs34u7duxg4cCDEYjEaNGiA9u3bY+TIkZXaNZVIlTFZIVJRJiYmcu8zMzOxb98+4f24cePg5OQELS0tLFq0SOgOUpaB4AX/8wQg9wtjSclASeUo8twQkUikcNlvCwwMFGLr3r07Pv/8c+jp6eHgwYPCXYDiYi84la6GhobwWpF9rUjM+bOBiUQi1KpVC40aNSrx4jE/gSyP/AvCklRkX1RJce2pLAXvJBScfrq4ti3L3xSgWFtWtfzpifPld1V7W3BwcInJirK9/f1ZWcr6XVfWc6SgSZMmwdraGqGhobh37x4iIyPx5MkTPHnyBKdOncLx48cVuntJpO44ZoVIRb19Qfn69WuhK4aRkRGmT5+ODz74AC1btkRsbGx1hFgmjRs3Fl7/9ddfwuv//vuvTL+EF+zfPnXqVDg7O8PBwQHx8fEVjrFhw4bC6/j4eDx//lx4X3Cgelnld7lp164dWrZsWeqFSlHJRJMmTYTXPXv2xN27dwv9u3HjBry8vADkjQnIV/B4P378uExjVgrW+/Yg+5LiVvTCvGD5N27cEF4/evRIOC80NTXl2qYyFLxwrMhMb+VRcPD/yJEji23LgQMHFluGsbGxcOEsk8nk2rjguSqVSit0V+XEiROFulkW5cqVKyV+D5mYmAhdtWQymdwEBAXbvaCKnBtlScir81woTa9evbB69WoEBwcjIiJCGFuYlpaG8+fPV3N0RMrBOytEasLU1BQ6OjrIyMjA69evsWXLFlhbW2PXrl1luvisLi4uLsIg3a1bt6J27dowMzPDhg0bylROgwYNEBkZCQAICAjAwIEDcf78eVy8eLHCMZqYmMDe3h4RERHIzc3FlClT4OnpiejoaOzatavC5VdE586dYWJigoSEBPzyyy9YsGABevToAZFIhOjoaPz11184c+YMrl27BiDveP/+++8A/ne8zc3NsWnTpjLVO2DAAOG5QGvXrkVycjIcHByQmJiIU6dOYdKkSUJ3lNq1awvT7h44cADOzs7Q0dGR6y71tn79+gnTLvv6+iInJwe1a9eWOy969OhRKTNaFVTwrkz+zFlGRkZKeb5K79698f333yMzMxNBQUGQSCTo0KEDsrOzERUVhfDwcNy9excnT54stgyxWIy+ffsKDzmcM2cOvv76awAQxmIBQN++fSsUa8FxMaNGjZJLggHg1KlTuHbtGnJzc3Hy5MliZ6gSi8VCtzEAmDt3LqZMmYKUlBSsWbOmyG2UdW4UPBdiY2Nx7NgxWFhYwNTUVCmzyhVnyJAhsLa2hp2dHczNzZGVlYU7d+4In5dlMhUidcZkhUhNiMVifPrppwgMDATwvwsSY2NjNGnSRK5/tyoaOHAgDh48iJs3byI1NRWLFi0CAJibm5dpRrDPPvtMSEyCg4MRHBwMsVgsJBkVNXv2bAwfPhyZmZmIiIjAhAkTAOT9Gp6fJFWHWrVqwcfHBxMnTkRGRgb279+P/fv3F7v+wIEDsX//fty6dUvueBsbG8PAwEDhsU3Dhw/HpUuX8PvvvyMrKwsBAQEICAgQPs+fBAIAHB0dcfv2bQDAli1bsGXLFtSvXx+//vprseWPHDkSFy5cwOXLl5GQkIA5c+bIfW5hYVGmGboU1axZM0ilUsTFxSEpKQkTJ04EAHh5ecntU1UwNzfHwoULMX/+fOTk5AjHqqD8Gb1K8vXXXyMsLAz37t3D48ePhQkG8rVo0UK401YekZGRwh0QiUSCqVOnQiKRyK1jZGQkJMjHjh0rcTrdr7/+GufPn8fr16/x6NEjYXr0twf/51PWuaGvr4/WrVvj77//Rk5ODqZPnw4g729oxYoVFS6/vF6+fFns37murq7c82GI3mXsBkakRmbMmIEvvvgC5ubmqFWrFjp16oTAwEC5KWNVlaamJrZu3YqPP/4YhoaG0NXVRffu3REUFCTX9aJWrVolluPq6oply5ahSZMm0NHRER7a17lz50qJ087ODj/++KMwkNbMzAyenp5VcsFcVl26dMGRI0cwaNAgWFhYQEtLC0ZGRrCyssLQoUPlHhSnpaWFbdu2YdCgQcLx7tq1K4KCguR+SS6NpqYmNm/ejMWLF6Ndu3YwMDCAlpYW6tWrhz59+side1999RUGDBggN/C4NFpaWti6dStmz56NVq1aoVatWtDW1oalpSW++OILHD58uNhpZytCU1MT69atkxswrUyDBw/Gnj170KtXL0ilUmhpacHY2BitWrXCF198AT8/v1LLMDQ0xL59++Dt7Y33338fOjo60NHRgZWVFby9vbFnz54KdQEreFflgw8+KJSoAHkzmOWP3bh9+3aJP5rUr18fQUFB6Ny5M3R0dGBsbIzhw4fLTfFcsA5lnhs+Pj5wdHQs9ftHmTw9PfHhhx+iQYMG0NXVhaamJszMzNCrVy/s3bu30rtGEqkqkaysI/6IiMpJJpMV6kv+4MED4XkFhoaGuHLlilwfciJ6dxT1HRAUFITFixcDyOvWVdauikT0bmM3MCJSmtmzZ6N58+ZwcHCAsbExHjx4gJUrVwqff/TRR0xUiN5hQ4YMwbBhw9CqVStoaWkhLCxM7uGL7u7u1RgdEaki3lkhIqUZPXo0Ll++XORnVlZW2L17d6HplIno3dGyZctiZxfr378/fHx83pmptYmocvDOChEpTZ8+fZCdnS1MVyyRSNCsWTO4urpi+PDhRfaJJ6J3x4gRI3DlyhVER0cjNTUVhoaGaNmyJQYPHoyPPvqousMjIhXEOytERERERKSS2DmciIiIiIhUEpMVIiIiIiJSSdWSrAQEBMDa2lqYqhDIm85w/fr1cHJygq2tLUaMGIH79+9XR3hERERERKQClD7A/saNG9i/fz+sra3llm/duhXbt2/HihUr0KRJE2zYsAFjxozB6dOni32oVVycYk9gfldIpQY1bp/VGdtLvbC91AfbSr2wvdQL20u9qEt7SaUG5d5WqXdWkpOTMW3aNCxbtkxuelKZTIZdu3bB09MTbm5usLKygo+PD1JTU+WeoEtERERERDWHUpOV+fPnw83NDY6OjnLLnz17hri4OHTu3FlYJpFI0L59e0RERCgzRCIiIiIiUhFKS1YOHDiAJ0+e4Ouvvy70WVxcHADA1NRUbrmJiQni4+OVEh8REREREakWpYxZ+e+//7B69Wrs2bMHWlpalVZuRfq/qauauM/qjO2lXthe6oNtpV7YXuqF7aVe3vX2UkqycuPGDbx69Qp9+/YVluXk5CAsLAz79u0TxqXEx8fDwsJCWCchIaHQ3ZaC1GFAUWVSl0FUlIftpV7YXuqDbaVe2F6qLzMzAxkZbwAAEokWMjKyqjkiUpSOjmq0V/4j5nV0akFbW6fQ5xVJqJSSrLi4uMDGxkZu2ezZs2FpaYkvv/wSTZo0gVQqxaVLl2BrawsAyMjIwLVr1zBjxgxlhEhERERU46SlpQAA9PVrQyQSQVNTDC2t3GqOihSlSu0lk8nw5k0qsrOzoKtb9Ey+5aGUZMXQ0BCGhoZyy3R1dVG7dm1YWVkBAEaOHImAgAA0bdoUlpaW2LRpE3R1deXuxhARERFR5cnJyYaBgVF1h0HvAJFIBF1dfSQnv67UcpX+nJXieHh4ICMjA4sXL0ZiYiLs7Oywffv2Yp+xQkREREQVIxJVdwT0rqnsc0okk+X3MlM/Na0PLPv9qhe2l3phe6kPtpV6YXuptpSU19DX/9+dFU1NMbKzVaNbEZVOFdvr7XMKUKOHQhIRERERVbfQ0FMYNerzKlu/slV3/dWJd1bUCH+dUi9sL/XC9lIfbCv1wvZSbUXdWYnOkCEqrep/ra+vK4aZhmKXoR9+2EV4nZmZCQDQ1tYWlp05c6Fyg1OimzcjMG3aJOF9eno6tLS0oKGhAQCwtbXH99+vK3LbmnBnRWXGrBARERFR9YtKy4XbsWdVXk9IvwYwM1BsgEPBZGTFiu+Qk5ODuXMXFrludnY2NDXV5xLXzs5ebv8++2wARo0ai48+cq/GqFSH+rQkEREREdFbvLw88f771oiJiUZ4+DWMGDEGbm69sWLFEty79w+ysrLQrNn7mDTpGzRv3gIAcPLkcezcuQ379x8VyrC2boGYmGhcvXoFderUgbf3FHTp0q1c68tkMgQG/ogjRw4hPT0dvXv3wcOHD2Br2wZjx35Z5n0suv7miIl5LtQ/Y8ZcyGQyrFv3PV68eIF27dpj/vxF0NXVAwAkJr7Gxo3rEBZ2BZmZGbC3d8CUKdNhbGxSkcNf5ThmhYiIiIjU2okTx/Dxx0MQEnIOn3wyBLm5Mgwa9DEOHQrGsWMhsLJqjrlzpyM7O7vYMk6fDsaQIcMREnIOgwd/iqVLFyI9Pb1c658+fQIHD+6Dj89qHD8eChMTU9y4cb1S9zkk5CRGjBiN06d/Q8+ervjuuwU4duwINmzYikOHjuHp08c4eHAfgLzkafbsaRCJRNi1az8OHQqGrq4uFi2aV6kxVQUmK0RERESk1rp164F27dpDJBJBIpGgbt26cHJyhkQigY6OBJ6eE/DiRQyePn1SbBk9eriidWs7iMVi9Os3CCkpKeVe//Tpk+jffxCsrJpDU1MTQ4eOhKmptFL3uXv3D2Fj0xoaGhpwde2NhIR4DB06AoaGtWFoWBudOjnh33//AQDcvfsP7t79B1OnzoS+vj4kEgm++moSwsPDEBv7olLjqmzsBkZEREREaq1ePQu5969fv8b69asRERGOlJQUiMWi/1/+qtgyTEz+1x2qVq1aAIC0tLRyrR8fH4u6desKn4tEIpiZmSu6OwopWL9EIvn/ZabCMh0diRBPdHQ0srKy0K+fq1wZ2to6ePEiptJjq0xMVohIJcXmiCptNpqyzDhDRETqR/TWkwgDAvyRkBCPLVt2wtTUFGlpqXB1dYayJsE1NTVDTEyM8F4mk1XrHYy6detCIqmFkyd/hVisXh2rmKwQkUqqzNloyjLjDBERqb/U1FRIJBIYGBggLS0NGzeuV2r9vXp9hE2b1sPZuTuaNGmGgwf3IT4+TqkxFNS8eUu899778PNbibFjv0Tt2kZ49eoVwsOvwsXFrdriUoR6pVZERERERKUYN+5LvHr1Cn369MSoUZ+jdWtb4bklytCrVx8MGvQJpk2bDHd3V8TFvUCrVq3lng2jTGKxGCtWfA+ZDBg7dgQ+/LArvvxyNCIiwqslnrLgQyHVCB+spV7YXhUTkSyr1Dsr9qXcWWF7qQ+2lXphe6k2dXkopLrLzc3FoEF98NVXk+Hq2qvSyuVDIYmIiIioRjHTkCmp6+y7naicPRuCLl26Cc9cSU9Ph6Njp+oOS+0wWSEiIiIiqmSHDx/AypXLAABNmzbDqlVrYWhoWM1RqR8mK0RERERElWzTpm3VHcI7gQPsiYiIiIhIJTFZISIiIiIilcRkhYiIiIiIVBKTFSIiIiIiUklMVoiIiIiISCUxWSEiIiIiAnDz5g04OTkI71euXIbVq33KXd6uXdsxY8aUygitXL75ZhKCgnZWW/2VgVMXExEREZFALzUemi9fVHk92cbmSNUzVXh9Ly9P3L79NzQ1NSEWi2FhUR+jRo1Ft249qyzG6dPnlCk+B4cOGD16nLBs5MgvqiIsAHmJVGjoKQBAbm4uMjIyUKtWLeHz6dPn4Pvv11VZ/crCZIWIiIiIBJovX0Bj8YSqr2jBJqAMyQoAjBo1FqNHj0N2djb27w/Ct9/OQWDgATRq1FhuvezsbGhqvtuXudOnz8Hs2fOQnZ2LmzdvYOLEcThz5kJ1h1Xp2A2MiIiIiNSKpqYmBg78BDk5Ofjvvwe4fv0anJ074vTpE/jkk/7o3bsHACAmJgbz5s1Av35u6N/fDT4+S5GWliqU8/TpE3h5eeLDD7ti1KjPcffuHbl6li5diBUrvhPev3r1CsuXL8agQX3g6uqML74YhidPIrF6tQ/++usGdu7chg8/7ILPPx8EANi2LQCTJ38lbJ+Y+BrffbcA/fq5oV8/NyxZ8i2SkhKFzz/+2B27dm3H5MkT8OGHXTBixKf4+++b5T5OXl6e2LHjBwDA8+fRcHJywKlTwRg+/BO4uDhh2rRJSEpKwqZN69G374fo13JBPgMAACAASURBVM8Nhw8fkCvj5s0ITJgwFr1798Cnn/bH3r27IZPJyh1TWTFZISIiIiK1kpWVhZ9+OgBNTU28954VACAnJweXL/+BH38MwvHjocjIyMDkyeNhadkUBw/+jMDAg4iLewE/v1UA8u6+zJjxNZo0aYbg4FAsWeKDo0cPF1tnbm4uZs2aipSUZPzwwy6cPv0b5sxZCF1dPUydOhO2tm0watRYnDlzAXv3/lRkGYsWzUdycjJ27z6I3bsPCslLQSdOHMPkydNw+vQ5tG/fEUuXLqycg/b/zp37BRs3/oDDh4MRE/Mcnp6jUb9+Axw9egqzZy/AunXfIyYmBgDw6NF/mDZtMoYOHYHg4DNYuXItfvrpAE6fPlGpMZWEyQoRERERqYVdu35Er17dMHDgR7h48TyWLPFFgwYNhc8nTJgEfX19SCQSXLp0ATKZDOPGjYeOjgSGhoYYN24Czpw5jZycHNy5cwsxMc8xceJk6OhI0LBhIwwZMrzYuv/99w7+/fcOZs/+FsbGJhCLxXjvvfdhaipVKPb4+DhcvXoZ3t5TYGhoCENDQ3h7T8Hly38gPj5eWK9//0Fo2rQZNDQ00LfvADx79hQpKSnlP2hvGT16HAwNa6N2bSN06uQETU1N9Os3EJqamvjgg84wMDDE/fv/AgCOHDmI7t17okuXbtDQ0EDjxpYYNOhTnD59stLiKc273ZmPiIiIiN4ZI0eOkRvAXpBYLIa5ubnw/vnzaLx4EYNevbrJrScSifDyZQLi4mJRp44xJBKJ8Fm9ehbF1v38+XPUqWMMfX39csX+4sWLQnVYWDQAAMTGxsDUNG/8jonJ/8bx5A+YT0tLLXe9bytYvo6ORO49AEgkEqSlpQHIO4bh4ddw/vxvwue5uTKYmZlDWZisEBEREZHaE4lEEIlEwntz83po2LAxdu8+UOT6pqZmePXqJdLT04WEJSbmebHl16tXD69evURqagr09AonDmJxyR2W8hOpmJjnwt2g6OgoAICZWd0St60u5ub10KdPP3zzzcxqi4HdwIiIiIjondO5cxdkZ2dh167tSEtLhUwmQ1xcLH7/Pe8uQatWNjA3r4dNm9YhIyMdUVHPsH9/ULHlNW/eElZWzbFixRK8evUSubm5ePDgPuLj4wAAxsYmiIp6Vuz2pqZSdOjgCH//NUhOTkZSUhL8/f3g6NhJuKuiagYN+hi//BKKixfPIzs7G9nZ2Xj06D9ERIQrLQYmK0RERET0zpFIJFi7dhMiIx9h6NCP4ebWDZMnT8CDB/cA5M0o5uOzGg8fPkDfvq6YM2c6+vUbWGx5YrEYvr5roKOjg9Gjh6JXr+5Yvnyx0GXqs8+G4t9/76BXr24YPvzTIsuYP/876OrqYejQwRg27GMYGOhj3rzFlb/zlaRp0/fg67sGBw/uRf/+bnB3d8WyZQvx+vUrpcUgkilz7rFKFheXXN0hKJVUalDj9lmdsb0qJiJZBrdjxf9CVRYh/RrA3kBU4jpsL/XBtlIvbC/VlpLyGvr6RsJ7TU0xdBJjVfKhkFSYpqYY2dm51R2GnLfPKSDve6C8OGaFiIiIiASpeqZlflgjUVVhNzAiIiIiIlJJTFaIiIiIiEglMVkhIiIiIiKVxGSFiIiIiIhUEpMVIiIiohpKfeeEJVVV2ecUkxUiIiKiGkpDQxNpaSlQ4ydZkIqQyWRIS0uBhkblTjbMqYuJiIiIaihdXX1kZmYgJSURACCRaCEjI6uaoyJF6eioRnvl57o6OrWgra1TqWUzWSEiIiKqwbS1dYQLTD7EU73UhPZiNzAiIiIiIlJJSrmzEhQUhH379iEqKgoA8P7772PChAno1q0bAGDWrFk4cuSI3DZ2dnY4cOCAMsIjIiIiIiIVpJRkxdzcHNOmTYOlpSVyc3Nx9OhRTJw4EYcPH0bz5s0BAJ06dYKvr6+wjZaWljJCIyIiIiIiFaWUZMXFxUXu/ZQpU7B3717cuHFDSFa0tbUhlUqVEQ4REREREakBpQ+wz8nJwenTp5GWlgZ7e3theXh4OD744AMYGhqiffv2mDJlCkxMTJQdHhERERERqQiRTEkTa9+9exdDhgxBRkYGdHV1sWrVKmHMyokTJyCRSNCgQQNERUXBz88Pubm5+Omnn6Ctra2M8IhIxZx7moruhx9XSlm/DW6Mbg31KqUsIiIiUh6lJSuZmZl4/vw5kpOTERISggMHDiAwMBBWVlaF1n3x4gV69OiBNWvWwNXVtdgy3/Wp2t5WE6ane5ewvSomIlkGt2PPKqWskH4NYG8gKnEdtpf6YFupF7aXemF7qRd1aS+p1KDc2ypt6mJtbW00btwYNjY2+Oabb9CiRQvs2LGjyHXNzc1hbm6OyMhIZYVHREREREQqptqes5Kbm4vMzMwiP3v58iViY2NhZmam5KiIiIiIiEhVKGWAff74lLp16yI1NRXBwcG4evUqAgICkJqaCn9/f7i6ukIqlSIqKgqrV6+GsbFxoVnEiIiIiIio5lBKshIfH4/p06cjLi4OBgYGsLa2xtatW9GlSxekp6fj3r17OHr0KJKTkyGVStGxY0f4+flBX19fGeEREREREZEKUkqysmLFimI/k0gk2LZtmzLCICIiIiIiNVJtY1aIiIiIiIhKwmSFiIiIiIhUEpMVIiIiIiJSSUxWiIiIiIhIJTFZISIiIiIilcRkhYiIiIiIVBKTFSIiIiIiUklMVoiIiIiISCUxWSEiIiIiIpXEZIWIiIiIiFQSkxUiIiIiIlJJTFaIiIiIiEglMVkhIiIiIiKVxGSFiIiIiIhUEpMVIiIiIiJSSUxWiIiIiIhIJTFZISIiIiIilcRkhYiIiIiIVBKTFSIiIiIiUklMVoiIiIiISCUxWSEiIiIiIpXEZIWIiIiIiFQSkxUiIiIiIlJJTFaIiIiIiEglMVkhIiIiIiKVxGSFiIiIiIhUEpMVIiIiIiJSSUxWiIiIiIhIJTFZISIiIiIilcRkhYiIiIiIVBKTFSIiIiIiUklMVoiIiIiISCUxWSEiIiIiIpXEZIWIiIiIiFQSkxUiIiIiIlJJTFaIiIiIiEglMVkhIiIiIiKVxGSFiIiIiIhUEpMVIiIiIiJSSUpJVoKCguDu7o62bduibdu2+Oyzz3Du3Dnhc5lMhvXr18PJyQm2trYYMWIE7t+/r4zQiIiIiIhIRSklWTE3N8e0adNw5MgRHD58GI6Ojpg4cSL+/fdfAMDWrVuxfft2zJ8/H4cOHYKxsTHGjBmDlJQUZYRHREREREQqSCnJiouLC5ydndG4cWM0adIEU6ZMgZ6eHm7cuAGZTIZdu3bB09MTbm5usLKygo+PD1JTUxEcHKyM8IiIiIiISAUpfcxKTk4OTpw4gbS0NNjb2+PZs2eIi4tD586dhXUkEgnat2+PiIgIZYdHREREREQqQlNZFd29exdDhgxBRkYGdHV14e/vD2tra1y/fh0AYGpqKre+iYkJYmNjSyxTKjWosnhVVU3cZ3XG9io/7fTUyitLSwNSqV6p67G91AfbSr2wvdQL20u9vOvtpbRkpUmTJjh69CiSk5MREhKCmTNnIjAwsEJlxsUlV1J06kEqNahx+6zO2F4Vk5klq8SyckptC7aX+mBbqRe2l3phe6kXdWmviiRUSktWtLW10bhxYwCAjY0N/v77b+zYsQMTJkwAAMTHx8PCwkJYPyEhodDdFiIiIiIiqjmq7Tkrubm5yMzMRIMGDSCVSnHp0iXhs4yMDFy7dg329vbVFR4REREREVUzpdxZWbVqFbp164a6desKs3xdvXoVAQEBEIlEGDlyJAICAtC0aVNYWlpi06ZN0NXVRd++fZURHhERERERqSClJCvx8fGYPn064uLiYGBgAGtra2zduhVdunQBAHh4eCAjIwOLFy9GYmIi7OzssH37dujr6ysjPCIiIiIiUkFKSVZWrFhR4ucikQje3t7w9vZWRjhERERERKQGqm3MChERERERUUmYrBARERERkUpiskJERERERCqJyQoREREREakkJitERERERKSSmKwQEREREZFKYrJCREREREQqickKERERERGpJCYrRERERESkkpisEBERERGRSmKyQkREREREKonJChERERERqSQmK0REREREpJKYrBARERERkUpiskJERERERCqJyQoREREREakkJitERERERKSSmKwQEREREZFKYrJCREREREQqickKERERERGpJCYrRERERESkkpisEBERERGRSmKyQkREREREKonJChERERERqSQmK0REREREpJKYrBARERERkUpiskJERERERCqJyQoREREREakkJitERERERKSSmKwQEREREZFKYrJCREREREQqickKERERERGpJCYrRERERESkkpisEBERERGRSmKyQkREREREKonJChERERERqSQmK0REREREpJKYrBARERERkUrSLG2FK1eu4MyZM7h16xZev36N2rVro2XLlnBxcUHnzp2VESMREREREdVAxSYrFy9ehK+vL+7fvw+ZTCb32c2bN7Fv3z689957mDFjBrp06VJiJQEBAQgNDcWjR4+gra2NNm3aYOrUqbCyshLWmTVrFo4cOSK3nZ2dHQ4cOFCe/SIiIiIiIjVXbLIybtw4AIC9vT06deoEKysrGBgYIDk5Gffv38cff/yBiIgIeHp64p9//imxkqtXr2Lo0KFo3bo1ZDIZ1q1bhzFjxuDEiRMwMjIS1uvUqRN8fX2F91paWhXdPyIiIiIiUlPFJisDBw7El19+CUtLy0Kfubm5wcvLC48ePcKWLVtKrWTbtm1y7319feHg4IDr16+jR48ewnJtbW1IpdIyhE9ERERERO+qYpOV5cuXl7pxkyZNFFrvbampqcjNzYWhoaHc8vDwcHzwwQcwNDRE+/btMWXKFJiYmJS5fCIiIiIiUn+lDrAHgMTERKSmpsLCwgIvX77EgQMHULt2bXz22WcQi8s+odjSpUvRokUL2NvbC8u6dOmCDz/8EA0aNEBUVBT8/PwwatQo/PTTT9DW1i5zHUREREREpN4USlamTZuGf/75BxcvXoSXlxciIiIAANHR0fjmm2/KVOHy5csRHh6OvXv3QkNDQ1jep08f4bW1tTVatWqFHj164Ny5c3B1dS2yLKnUoEx1vwtq4j6rM7ZX+Wmnp1ZeWVoakEr1Sl2P7aU+2Fbqhe2lXthe6uVdby+FkpX79++jTZs2SEpKQkREBOzt7fHw4UOcOnWqTMnKsmXLcPLkSezcuRMNGzYscV1zc3OYm5sjMjKy2HXi4pIVrvtdIJUa1Lh9Vmdsr4rJzJKVvpLCZeWU2hZsL/XBtlIvbC/1wvZSL+rSXhVJqBTqw5WQkAAzMzM8evQIALBw4UK4ubkhNjZW4YqWLFmCEydOYOfOnWjWrFmp6798+RKxsbEwMzNTuA4iIiIiInp3KHRnRVdXF/fu3cOvv/4KDQ0NWFpaIjs7W+GxJIsWLcLPP/+MDRs2wNDQEHFxcUK5enp6SE1Nhb+/P1xdXSGVShEVFYXVq1fD2NgYLi4u5d87IiIiIiJSWwolKzY2Nvjjjz8QHh4OW1tbaGtr48mTJ7CwsFCokj179gAARo8eLbfcy8sL3t7e0NDQwL1793D06FEkJydDKpWiY8eO8PPzg76+ftn2iIiIiIiI3gkKJStz5szBt99+i6ysLMydOxeZmZnQ0tJC3759Fark7t27JX4ukUgKPYuFiIiIiIhqNoWSlWbNmmH37t1yy3788ccqCYiIiIiIiAgoIVk5evSoQgUMGDCg0oIhIiIiIiLKV2yyMmvWLIhEolILYLJCRERERERVodhk5e3B8zExMRCLxTAyMsKrV6+Qm5ur8AB7IiIiIiKisio2Wfn111+F10FBQdi9ezd2794NExMTxMfHY/jw4RgyZIhSgiQiIiIioppHoYdCbtmyBe3atYOJiQkAwNTUFA4ODti+fXuVBkdERERERDWXQrOBvXnzBmfOnEH37t3RrFkzPHjwAGfOnIFMJqvq+IiIiIiIqIZSKFnp0qULTpw4AS8vL2GZTCZDnz59qiwwIiIiIiKq2RTqBvbtt9+iW7dukMlkwj9nZ2csWLCgquMjIiIiIqIaSqE7K4aGhti8eTPi4+MRHR2NevXqQSqVVnVsRERERERUgyl0ZyWflpYWTE1NkZWVhejoaERHR1dVXEREREREVMMpdGclIiICM2bMwLNnz+SWi0Qi3Llzp0oCIyIiIiKimk2hZGXBggV4+vRpoeWcDYyIiIiIiKqKQsnK48eP8f7772P58uUwMjKCSCSq6riIiIiIiKiGUyhZadGiBRo3bgwbG5uqjoeIiIiIiAiAgsmKq6sr/Pz80KxZM9ja2kJT83+btW/fvsqCIyIiIiKimkuhZGXlypUQiUTw8/OTW84B9kREREREVFUUSlaAogfTc4A9ERERERFVFYWSlX///beq4yAiIiIiIpKj8J0VALh+/TqeP38OCwsL2NvbV1VMREREREREiiUrqamp8PDwQEREhLCsTZs2+OGHH6Cnp1dlwRERERERUc0lVmSlgIAAXL9+HTKZTPh348YNbN68uarjIyIiIiKiGkqhZCU0NBRmZmY4ePAg/vrrLxw8eBBSqRRnzpyp6viIiIiIiKiGUihZiYmJgbOzM1q3bg1tbW20bt0azs7OiImJqer4iIiIiIiohlIoWZFKpbh69SpevnwJAHj58iXCwsJgampapcEREREREVHNpdAA+06dOmH//v3o2rUr6tSpg1evXiEnJweffvppVcdHREREREQ1lEJ3ViZPnowGDRogOzsbcXFxyM7OhoWFBSZNmlTV8RERERERUQ2l0J0VY2NjHD9+HKGhoXj+/Dnq1asHV1dX1KpVq6rjIyIiIiKiGkqhZOX169dIS0uDu7s7xGIxcnNzERMTg4yMDBgZGVV1jEREREREVAMplKx4enoiKSkJp0+fBgCIxWJ4eHhAX18f+/fvr9IAiYiIiIioZlJozMqDBw/g4OAgt6xt27a4f/9+lQRFRERERESkULKioaGB+Ph4uWWxsbHQ1FToxgwREREREVGZKZRtWFpa4vfff8fatWthb2+PiIgInD9/HjY2NlUdHxERERER1VAKJSvDhg3DrFmzsHnz5kLLiYiIiIiIqoJC3cAGDBgAT09PSCQSyGQySCQSeHh4YMCAAVUdHxERERER1VAKDzqZOnUqvL298fLlSxgbG0NLS6sq4yIiIiIiohpO4WTl1q1bCAoKwosXL7By5UpcuHABbdq0gaWlZRWGR0RERERENZVCycrNmzcxfPhwZGVlQSQSQVdXF4sXL0bv3r2xdOnSqo6RiIiIiIhqIIXGrPj5+UEmk6Fx48YAgFq1asHBwQFhYWFVGhwREREREdVcCiUrd+7cwUcffQRnZ2dhWb169RAbG1tlgRERERERUc2mULIiFouRnp4ut+zZs2fQ09NTqJKAgAAMHjwYbdu2haOjI8aPH4979+7JrSOTybB+/Xo4OTnB1tYWI0aMwP379xXcDSIiIiIietcolKxYWVnh/PnzuHbtGgBg/vz5+OOPP2Btba1QJVevXsXQoUOxb98+7Ny5ExoaGhgzZgxev34trLN161Zs374d8+fPx6FDh2BsbIwxY8YgJSWlHLtFRERERETqTqFkxcvLCxkZGfjnn38AAAcPHoRIJML48eMVqmTbtm0YPHgwrKysYG1tDV9fX7x8+RLXr18HkHdXZdeuXfD09ISbmxusrKzg4+OD1NRUBAcHl3PXiIiIiIhInSmUrLRv3x6bN2+Go6MjGjVqBEdHR2zatAkdOnQoV6WpqanIzc2FoaEhgLwuZXFxcejcubOwjkQiQfv27REREVGuOoiIiIiISL0p/JwVZ2dnYYC9TCaDSCQqd6VLly5FixYtYG9vDwCIi4sDAJiamsqtZ2JiUuIgfqnUoNwxqKuauM/qjO1VftrpqZVXlpYGpNLSx9ixvdQH20q9sL3UC9tLvbzr7aVQsrJv3z7cunULixcvxr59++Dj4wMDAwP4+/ujTZs2Zapw+fLlCA8Px969e6GhoVGuoPPFxSVXaHt1I5Ua1Lh9Vmdsr4rJzJJVYlk5pbYF20t9sK3UC9tLvbC91Iu6tFdFEiqFuoHt27cP9+7dg0gkgp+fHzIyMhAfHw8/P78yVbZs2TKcOHECO3fuRMOGDYXlUqkUABAfHy+3fkJCQqG7LUREREREVDMolKxERUWhWbNmePz4MZKSkrBs2TI4OjoKA+4VsWTJEiFRadasmdxnDRo0gFQqxaVLl4RlGRkZuHbtmtBVjIiIiIiIahaFuoFlZGRAS0sLkZGREIlE6NKlC27duoXw8HCFKlm0aBF+/vlnbNiwAYaGhsIYFV1dXejp6UEkEmHkyJEICAhA06ZNYWlpiU2bNkFXVxd9+/Yt/94REREREZHaUihZqVu3Lk6dOoUrV67AyMgIUqkUCQkJqFOnjkKV7NmzBwAwevRoueVeXl7w9vYGAHh4eCAjIwOLFy9GYmIi7OzssH37dujr65dhd4iIiIiI6F2hULIyaNAg+Pn5ITk5GWPGjAEAREREoHnz5gpVcvfu3VLXEYlE8Pb2FpIXIiIiIiKq2RRKVsaPHw97e3tkZmbCyckJWVlZWLVqFerWrVvV8RERERERUQ2l8HNWOnbsKLzW0tIq9wMhiYiIiIiIFFHsbGAjR47E5cuXS9z48uXLGDVqVKUHRUREREREVOydlWvXruGLL75A3bp14ejoCGtra+jr6yMlJQX37t3Dn3/+iefPn1f4wY5ERERERERFKTZZOXr0KFauXImLFy/iyJEjEIlEwmcyWd6Tpbt27Ypp06ZVfZRERERERFTjFJusWFlZYevWrXj06BHOnj2LO3fuICkpCQYGBmjZsiVcXFzQtGlTZcZKREREREQ1SKkD7Js0aQIPDw9lxEJERERERCQodoA9ERERERFRdWKyQkREREREKknh56wQERGpCpEIEIlkAGTVHQqVIjMzE2JxbnWHQQpie6kX5baXCIAIuUo+PZisEBGRWsnOzkZW1htkZGQKs1OS6srOTkdaWmZ1h0EKYnupF2W3l1gshkQigYaGFmQyUekbVEadSqmFiIioEohEQFJSEtLTM5ioEBEpWW5uLtLS0pCbm620OhVOVgIDA9GzZ0/Y2NggKioKs2fPxsWLF6syNiIiIjkikQxZWVnVHQYRUY2Wnv4GYiXd8lCoG9jPP/+MpUuXAgBEIhEsLCxw6dIlJCYmwsnJqUoDJCIiyper7M7SRERUSE6O8r6LFcqJduzYAWNjY3To0AFAXsJiZ2eH27dvV2lwRERE8mpu169evVxw4cJ5hdePiYlBr14uuHfvbhVGpZhVq3yxYMHc6g6Dyig0NAQDBvQtdb2RI4fh0KEDSoiodGWN5ebNG+jVywWJiYlVGNW7SjnfxwrdWYmMjIS7uzskEgnCwsIAAMbGxnj16lWVBkdERKSIVat8cfZsqPDe0NAQzZu3gIfHl2jYsFGl1BETE4PRo4dj3boNsLKyLnKd0NAQrF69ssRyfHxWwc6uTZnr37PnAPT19RVeXyqVYs+eA6hdu3aZ61LUzZs3MHPmtBLXmT17NiZM+AqqNMQoNvYFNmxYjxs3bkBHRxvduvWAh8eX0NLSKnabzMxM/PBDAM6d+w0ZGZlo08YeXl6TIJVKhXU2bdqAO3duIzLyEerUMcauXUFyZeSfQ29bsmQZHBw6VGifAgN3IigoEG3a2GPFCvlzMDj4GPz916FxY0sEBPxQoTouXrxQqIx16zZAIpGUu9zKVNFY8s/pBg0aIiDgB2hoaAifjRw5DP369cfHH38KAJg+fSr+/vsvAHk/5BsZGcHOrg08PMbDxMSkYjtCAoWSFSMjIzx58gRWVlYA8m7D37hxA6amplUaHBERkaLs7dti+vRZAICEhARs27YFixcvxNat25UWg7NzNzg4tBfer1y5AgYGBhg/fqKwzMDAQHidk5MDsVgMkaj0WXWMjY3LFIuGhkaZtymrli1bYc+e//2KvWPHNjx9+hTz5y8UlkmldZCTo5xZgxSRk5ODBQvmwsDAEKtWrUFychJWrfIFIMNXX3kXu11AwEZcvnwZs2blbbtlyyZ8++08rF+/Ubiglcly4eLyISIjHyE8PLzYspYsWY6mTZsJ7wueExVRp44xbt++hZiYGNStW1dYHhJyGmZmZpVSR1GMjIyqrOyyqqxYYmNf4PTpU+jTp+Q7S66ubhg9eixksly8ePEC/v7rsGbNKixZsrxS4iAFk5W2bdvi5MmTuH//PgDA3d0d//33H9zd3as0OCIiIkVpaWkJF+fGxsYYOHAwvv12HjIyMqCjowMAiI+Px9atmxEefg0A0KJFS4wf/xXq128AAIiLi8WGDetx69YtZGVlQio1w/DhI9GtW3fhF/FJk/ISj9atbbFy5Wq5GHR0dIS68mPS1tYR4sr/ZXrw4E+wd+9uvHjxAocP/4zbt//G3r178PhxJAARrKysMH78V2jUqLFQVq9eLpg7dwG6dOkq/EI/b94CnDgRjDt3bsPc3Bzjx09E27btABS+E5T/i/Hy5b7YsWM7IiMfoVGjxpg0aQref/99oZ6QkFPYvXsXkpKS0KaNPRwc2mPDhvU4ffpsicc8b/8l0NTUfGuZNhYvXoKkpEQsXpw3/nX69Klo1KgRdHQkCA0NgYaGGJ9/PgwffdQXW7Zsxm+//QJdXV2MGvUFXFw+FMoqrf0Ucf16OB4/foxdu4IgleZdwI8d6wE/v+8xatQX0NPTK7RNamoKQkJOY+rU6cLxnTFjFkaOHIaIiOtCgpqf7Bw6dKDEZMXQ0LBKEklDQ0O0aNESZ86EYMSIUQCA//77D0+fPsFHH/UVjhtQ9F2S0NAQbNrkjyNHjhcqOzQ0BEFBgQDyzkUA7DhNKAAAIABJREFUmDp1Olxd3QrdcejVywWTJn2N69evIyzsKurUMcKIEaPRs6eLUN6jR/8hIGAT7ty5DW1tHTg6foAJE76Cnl7e3cNVq3yRlJQIG5vWOHLkMDIyMtC3rztGjx6LoKBABAcfh1gswsCBg/Hpp0OEct+O5fDhQzhzJgTPnz+Hvr4eHBw6wMPjy1LvUvbvPxC7d+9Cz549IZHUKnY9HR2J0JYmJqbo1as39uzZXWLZVDYKjVmZMmUKDA0NkZCQAJlMhocPH8LQ0BDe3sX/AkFERFRd0tLS8Pvv52Bp2URIHtLT0zFz5jfQ0tKGr+9qrFmzDsbGJpg9ewbS09MBAP7+65CRkQFf31UICPgB48dPgL5+3sXr2rX+APJ+Fd+z5wAWLFhYrthiYmJw7tyvmDNnATZuDIC2tjbS09MxcOAgrF3rD1/f76Gnp4dvv51f6sxnO3b8iP79B2LjxgBYWVlj+fIlePPmTYnb/PjjNnzxxTj4+2+CgYEBfH2XC9NA37lzB35+q+Hu3h8bNgTA0fED7N69q1z7WZrffvsVtWrVwtq16/Hpp0Ow+f/YO8+oKo42AD+X3qRf6gUFsYFKkYixRWPDEgVbTBCxgBKNXewlKmpCsGJX7BJ7jCW2RGNL7IgNDZoYka5U6e37ccPqlSIqti/7nOM57uzsO7M7s5d5d96ycjmzZs1AJpMRErKctm3bs3jxAh4/fgxUbvxK/HSOHj1SbruRkbewsrIWFBWARo1cyc/P5+7dqDKviYqKoqCgQFBUAKRSE6ysrImMvPXS9z579jd8/nlPxowZ+VJ+SJWhQwd3jh07KgSjOHLkEC1bfoKmZvkL7srwySet6NGjFzKZFWFhOwgL28Enn7Qqt35Y2BY+/rgpK1asomXLVixcGExiYgIgjyQ1Zcqkf8d/KdOnf0Nk5E0WLAhWkHHjxnXi4+MJCprP8OGj2LlzB9OmTSY/P5/58xfRt28/1q1bS1TUn+X2Q0lJgr//UFatWsuECZO5c+c2y5cvfeH9du3qgYqKMrt3767cAwJSU1P5/fez1KlTr9LXiLyYSikrMpmM/fv3M2LECHr16sWIESPYt28fVlZWb7p/IiIiIiIileLSpYt4eHTBw6ML3bt35fr1CCZOnCycP3nyBMXFMHZsALa2tlhZWTNixCiys7O5cOEcAAkJCTg41MfWtiZmZua4ujYWfAn09OTmJSVfxatV032lfhYU5BMQMJFatWpRo4YNysrKNG/ekubNW2JpKcPW1paxYwNISIjnzp3bFcry9OxBkyYfY2kpo3//QWRkZHDv3t0Kr+nXrz+Ojk5YWVnj5eVNdPQDHj16BMBPP/2Ii0sjevfug0wmo2PHzjRt2uyV7vNFWFtXx9vbB0tLGd2790RPTw9lZRU8PLpjYWGJl5c3xcXF3LolD+ZTmfFTUVFBJrMqc3ekhJSUZAwMDBTK9PT0UFJSIjk5udxrlJSUSvn/GBgYlHtNWWhqauLnN4TJk6cxe/YcnJycmTcvkF9/Lb1r9aq4un5EYWEBV6+Gk5eXx/Hjv9C+vftry1VXV/83GaDcvNDQ0FBhF/F5Pv20LW3atMXCwhIfnwEoKytz/fp1QK6o5uRkExAwERsbWxo2dGTEiNGcPXuG2NgYQYaWljbDhg3Hysqa1q0/xc6uFsnJyQwc6ItMJqNz588wMTElIuJquf3w9OyBk5MzZmZmNGzoiK+vH6dPn3xhZEE1NTX69RvA7t07SE1NLbfeoUMH8fDoQrduXejTpyepqSmMGDGyQtkiL0elM9ibmJgwdOjQN9kXERERERGRV6ZBg4aMHDkagIyMDA4c2M/kyRNZvDgEqdSEqKgo4uPj8PRUNGHOzc0lNjYWAA+P7oSELOLSpYs4OTnTrFlzatWqXaX9NDaWllosx8bGsmnTeu7cuU1aWhpFRUUUFRWRlJRYoSwbG1vh/yUOvRUtrCq6RiqV8vDhA9zcPlaoX6dOPQ4d+vnFN/aSPNsPiUSCnp4+NjY2QpmKigo6OjqkpsqD+VRm/IyNjVm7dn2V97Wq0NPTo0ePXsJx7dp1SE9PY+fO7QomUs+yZMkijh9/qszs3XugwjaUlZVp27Y9R44cJiMjHT09ferXb0B4+JWquYlK8uz4Kisro6enJ8zNBw8eYGNji5aWllDH3t4BJSUl/vnnHywsLAGwtrZWcHDX19cvZb5lYGBQ4Zy/ejWc7dt/IDr6AZmZmRQVFZGfn09KSjJGRhX7Xrdp05bdu3cSFraFoUO/LrNOy5at6NvXG4CUlBS2bQtj4sTxLFmy7LV3s0TkVEpZSUxMZMGCBVy/fp3MzEyhXCKRcOLEiTfWORERERERkcqirq4uLHIA7Oxq0aNHN37++SA+PgMoLi6iZk07Jk0qHUK3xMHZ3b0jjRq5cvHiecLDrzBmzEh69+4j2P9XBWVFKpoxYyrGxsYMHz4KY2NjlJWVGTx4EPn5FWeJVlF5upArcdIvfkHYLRWVZ//0l1zz9vPXKPZD3v9nF6YlZSX3U5nxqwxyJ3TF1AslCmJ5fiQGBoYUFRWRlpam4MCdkpJC/foNKt12WdSpU69Cs7V+/Xzo2bNXuefLon37Dnz11WASEuJp375DmXWUlJRKzZXCwqrLSv78+IKkUvPs2WATZc+R58vKn/MJCQlMnz4Fd/dOeHv3R1dXl7t3o/j22zkvfLdA/owGDvRl1qwZeHh0L7OOtra28LtjYWHJ6NHj+PLL3pw8+Rvu7h1f2IbIi6mUsjJ+/HjOnz9fajJUJnqJiIiIiIjIu0AikaCkpERubi4gV15+++0Eurp6FTrXSqVSOnXqQqdOXdixYxt79/6It7cPqqryP5lVnZgyPT2N6OgHfP31CCGkcVRUFIWFhVXaTmWQyaxL5WV5kSna26Ky4/ci6tWz54cftpKUlCSEHQ4Pv4yqqip2drXKvKZWrVqoqKgQHn6Z1q3bAJCUlER09APq1bN/5b4A/PXX3Qqd7fX1DdDXNyj3fFlYWsqoU6cut27dZPr0mWXWke90pFBcXCys5+7du1ehXFVV1SqZ/9bW1hw9episrCxhd+XWrZsUFRVhbV01ocYBoqLuUFBQwJAhXwmK8Pnz515KRuPGbtjbO7BxY+WiCir9m9Y9Nzfn5TorUi6VUlYiIiIwNzfH19f3tX4gRERERERE3hT5+fmC/8CTJxns2/cT2dnZuLk1AaB16zbs2rWTmTOn4+3tg4mJCUlJSfzxx+907twFS0sZK1Ys46OPPsLSUkZWVhaXLl0UFk/6+gaoq6tz+fIlTE3NUFNTFSIXvQ46OtXQ09Pj0KGDSKVSHj16xNq1q0vtMrwNunXzZNy4UezcuZ2mTZtx/fp1fv/97FvvR1lUZvwePXrExIkBDBgwiGbNmpcpx8WlEdWrVyc4+Dv8/IaQnp7O2rWr6dixk+DrcufObb7//jsCAiZQp05dtLV16NDBndDQNejp6aOrq8vq1SuxsbHF2dlFkB0bG0N2djaPHz+moKBA8B+ytq6Oqqoqx44dRUVFmZo17ZBIlDh//g/279/HwIG+Vf68Zs+eS35+frm7Tg0bOpKRkcG2bWF88klrrl2L4MyZip39TU1NSUxMICoqChMTEzQ1NVFTU3vpvrVu3YbNmzcRHPwd3t4+PHnyhCVLFtGsWXOF3dHXxcJCRlFREXv37qFZs+ZERkayd2/lHeZLGDTIj9GjR5T5Tubm5gi/O6mpKYSFbUFNTQ0XF9fX7r+InEopKzY2NtSoUYMvv/zyTfdHRERERETklQgPv8KXX8rDlWppaSGTWTFlyjRht0JDQ4Pg4IWsW7eWOXNmk5WViaGhEY6OjujoyBd0xcVFLF++jKSkRLS0tHBycsbPzx+Q2937+w8jLGwzW7duxsGhfqnQxa+CkpISkyZNZcWKZQwZ4ouFhSV+fkMIDCz7i/ibxN7enpEjR7N58yY2b96Is7MLvXt/zsaN794PpDLjV1BQwMOH0Qom68+jrKzMrFlzWLp0CWPHjkJNTY3Wrdvg6ztYqJOTk8PDh9FClDGAIUOGoqyszLx5geTlyZNCBgRMUFjALlw4X0gSCDBsmHzubNiwRch78sMPW0lISERZWQlLSxmjR48r11/lddDQ0KgwOaK1dXW+/nok27eHsW3bDzRp0oQ+fb6scKybNWvB2bNnmDQpgCdPngihi1+lb3PmzGPVqhWMHPk1ampqNGnSlK++qlrfaFtbW/z9h7Fz5zY2blyPvb0Dfn5DmDs38KXk1KlTl+bNW3Dq1MlS544ePSKY8enoVMPGxobZs+eKQaiqEEnxi4xbkYcy7N+/P02aNKFmzZrCiymRSBg2bNgLrn5zJCVlvLO23wVSabX/3D1/yIjj9XqEZxTTYd/DKpF1pKsM52oVm62K4/WhUEBRUR5ZWXnvuiP/GVatWk54+BVWrny1zOdaWmrieH1AiOP1YfEux0tXV4+iosq5hEilr574tFI7KxcuXCA9PZ1jx45x7NgxhXPvUlkRERERERERqVp27tyOi0sjNDU1CQ+/wsGDB+jff+C77paIiMh/lEopKytXrgTkseV1dXVFx3oREREREZH/U6Ki/mT37p1kZmZiZmbOgAGDyo2EJCIiIvKmqXSelQ4dOrB48eI32RcRERERERGRd8zkydPedRdEREREBCqVwX7gwIH89ddfL0w0JSIiIiIiIiIiIiIiUlVUSlnZtm0b9+7do3nz5rRq1Yo2bdrQpk0b2rat+ugVIiIiIiIiIq+Gu3tbTp+uOPzss8THx+Pu3rZUbpV3QXBwENOnl074KPLf5ujRI3h4dHln7ffr58WuXTveSlubN29kyBDfUmV9+vTE3b0tR48eKbPO/zuVMgOLjY0F5Imw4uPjhXLRd0VERERE5F1z8OABVq9eya5dP6KqqgrIc6707OmBmZk5q1Y9jWIVGxvDwIE+zJsXpJAfo6qIj4+nf/++LFmyjNq165RZ5+jRIyxY8H2Fcr77LlgIufwyhIXteKl8aFKplLCwHejp6b10W5UlPDyckSNHVlhnzJgAvvpqKC+OT/p2SE1NJShoHvfv3ycjIx09PX2aNPmYAQMGKuTWuXTpIlu2bOKff+6jqqqKvb0Dvr5DkMlkFcq/c+c2GzasIzLyFhKJhBo1bPjmm9no6ekRHx9PWNgWrl27SnJyMoaGhrRs2QovL2/U1dVfqn+vwqFDh5g3b55wrKmpiZWVNV5e3kLOorfJJ5+0onHjxm9EdkpKCtu2hXHhwjkePXqErq4uNja2dO3qQePGbm+kzYro2bM33bp5CMf37//N1q2bmTbtG+rVs0dbW5uioiKFOv8FKqWsPDtpRURERERE3iccHZ3Izc3hzp3b1K/fAJAvBrW0tImNjSE1NRV9fX0AIiKuoqqqioND/Vdqq6CgABWVSrt7lsknn7TC1fUj4fj777+lWrVq+Ps/ja75bCK/wsJClJSUKvWBsKJM6GWhrKz80te8LPXr1ycs7OmX6Q0bQomOjmbatG+EMm1tbWEh/j6gpCShWbPmDBgwCF1dPWJjY1i2LIRFixYwZcp0AOLj45g5czrdunkyfvxEsrOzCQ1dw7Rpk1m/flO5sm/fjmTKlIn07NmbIUO+QkVFlfv3/0ZFRZ4W4uHDBxQVFfH11yOxtLTkwYMHLFmykIyMdEaOHFPp/r0O6uoawj1kZWVx4MA+AgNnsm7dRqRSk9eW/3J9UX8jcyM+Pp6xY0eiqanFgAGDsLGpSXFxEVevhhMSsojNm3+o8jZfhKamJpqamsJxyWZB06bNFN7/Z+u8Cvn5+cKHnQ+BSv3ienp6vul+iIiIiIiIvBIymQwjIyMiIiIEZSUi4ipOTs4kJMRz7VoELVt+IpTXq2ePmpoaeXl5rFu3lt9+O05mZiY1a9bE13eIgowJE8Yxa9YctmzZxF9/3WPatG+wtbVl2bIQbty4QX5+HlKpCX379qNVq9b0798XgBEj5IpHgwYNSyWOfH7xpaqqipqauqA0bN68kTNnTtOjRy9++GELCQkJ7N79EzdvXueHH8L455/7gITatWvj7z8Ua+vqgix397ZMmTKdFi1aCrs8U6dO5+DBA9y6dRNTU1P8/Yfh4tIIKL0TVHLP8+YFsWHDOu7f/xtr6+qMGDGaWrVqCe0cOXKILVs2kZ6ejpOTM66uH7FsWQiHD/9SanxUVVUVFCJ1dQ1UVFRKKUnBwUGkp6cxa9YcAAICxmBtbY26ugZHjx5BWVmJL77wolOnLqxevZITJ35FS0sLH5+BtG3bTpDz6NEj1qxZyeXLlwCoV88ef/+hWFpWvNvxLLq6enTu/JlwbGpqSpcuXdm+/ekCNioqisLCQgYMGCTkn/v88y+YMGEcaWlp5e5WrVq1gs8+68YXX3gJZc/uxLi6NsbV9elOgrm5BX36fMmmTRsEZaUy/XsdJJKniq+hoSE+PgPYu3cP9+/fF5SVX3/9hb179/DwYTRqauo0aNAQf/+hGBsbC3LOnz/H6tUrSUxMoE6dunTp0pVvv52jkCTzRXPp6NEjLF8ewt69B4Cn78cXX3ixceM6UlNTcXJyZtSoscIzLywsZO3aVRw7dhSAdu3ak5eXx4MHD4T3cdmyJQCEhCxXWPxbW1fn00/Ld3PYvXsXx44dIS4uDh0dbVxdG+PnN0TY0czMfMKyZUu5fPkSWVmZGBkZ0a2bJ56ePQD5TvCePTtJTExEU1MTO7tazJ49F2VlZeHeVq1ay+bNG9m6dTMAHTvK5/fhw78o1Cnh6NHD7Nq1g7i4OExMTOjc+TM8PLqjpCT39nB3b8vQocO5ejWcy5cv0aXLZ/j5DXmZKfFOKVdZ2bt3LzVr1qRBgwbs3bu3XAEeHv+trSgRERERkfePhg2duHbtKl5ecmUhIuIqrVu3ISHBlGvXrgrKyrVr1+jcWW7/Hhq6hlOnTjJ69DjMzc3Zs2cXU6dOIjR0I0ZGRoLsdevW4Ofnj4WFBZqaWixcGExeXh5BQcFoaWnx8GG0UHfx4qWMHPk1gYHzsLWtiarqq+3CxMfH89tvx5k8eTqqqiqoqamRk5ODp2d3bGxsyc3N44cftjBjxjRWrw6t8Cvphg3r8fUdzNdfj+CHH7Yyb14gmzaFVfh1dv36UAYN8sPQ0JAVK5YRFDSP1atDkUgk3Lp1i0WLFjBgwCCaNm3O9esRbNiw7pXu80WcOHEcT88eLF4cwrlzf7By5XIuXbqIq+tHhIQs59ixoyxevABnZxeMjIzIyclhwoSx1KvnQFDQAlRVVdi1ayeTJo1n9ep1aGhoCAray2Rff/z4EWfPnqZhw4ZCWe3adVBWVubw4UO4u3ckNzeXY8eOUrt2nXIVldTUFCIjb9G69aeMGTOSmJgYZDIZffv2q9AsMSsrCx2d8pPqldW/qqKwsJCjRw+jpqaGra2tUF5QkI+3tw9WVlakp6cTGrqGb7+dQ3DwQgASExMIDJxJly5d6dSpC/fv/83q1SsUZL/qXEpIiOfUqd+YNm0mOTk5fPttIBs2rGPkyNEA7Nq1g2PHjjJq1BiqV7fhwIF9nDhxnJo17QDIyEjn0qWL+PgMKPM9qMiUUklJgr//UMzMzElMTGD58qUsX76U8eMnArBx43ru3/+bWbMC0dc3ID4+jrS0NAD+/PMOy5YtYdy4CTg41Ccz8wlXr4aX2U7Pnr0xNpayePEChZ3J59m/fz/r169j6NCvqVWrFvfv32fx4gWoqKjQtevTNfrWrZvp338gfn6DPzg3jnJ/RSdOnEj//v1p0KABEydOLPfGRGVFRERERORd4+joxPLlIeTlyTM5R0beYtSoMcTFmbBy5XIAoqMfkJz8GEdHJ3Jysjl4cD+jRo0R7PCHDx9FRMRV9u//SSEJYt++/WjUyFU4TkhIoHnzFtja1gTAzMxcOKenJzc309XVfS3zqoKCfAICJmJgYCCUNW/eUqHO2LEBdO/eTcH8rSw8PXvQpMnHAPTvP4hffjnGvXt3K7ymX7/+gs+Ml5c3Y8eO4tGjR0ilUn766UdcXBrRu3cfQL4r8Oefdzh06OdXvt/ysLaujre3DwDdu/dkx45tKCurCHlfvLy82blzO7du3aRFi5acPHmC4mL5sylZt4wYMYo+fXpy4cI5WrZshYqKCjKZFdra2i9sf968OZw79zu5ubm4uTVhzJgA4ZypqSnz5gUxZ84sli1bQnFxMTVr2hEYOLdceXFxcYB8d8DXdzA1a9px+vQppkyZyNKlK4Q59SzynbWdfP75ly/Vv9chJydHcGrPy8tDVVWVMWMCMDJ6umvSoUNH4f/m5hYMHz4SP7+BJCUlIZVKOXBgP2Zm5gwZ8hUAVlZWxMQ8VFBGXnUuFRYWMnZsgOCf07FjZ44ePSKc37v3R3r1+lx4Z/z9h3Lp0kXhfGxsLMXFxVhZWb/0synZIQEwMzPD19ePmTNnMG7ceJSUlEhISMTOzo46deoC8nlSQmJiIhoaGjRp8jFaWlqAaZljDnJTrxKlqaLfko0bNzJokB8tWrT8t0/mxMX14cCBfQrKyieffELHjp1e+n7fB8pVViwsLNDV1RX+LyIiIiIi8r7i5OREXl4ekZG3ALnSYGFhiaGhIXFxsSQnJxMRcRV1dQ3q1q3HgwcPKCgowN7+qe+KsrIydeva8+DBAwXZtWopOsp7eHQnJGQRly5dxMnJmWbNmlOrVu0qvR9jY6mCogLyBdamTeu5c+c2aWlpFBUVUVRURFJSYoWybGyefg0v2TF6USqC8q6RSqU8fPgAN7ePFerXqVPvjSgrz/ZDIpGgp6ePjY2NUKaiooKOjg6pqSmA3DQrPj4OT8/PFOTk5uYK9v/GxsasXbu+Uu0PGfIVfft68/DhQ9avD2XlyuXC1/vk5GQWLgymTZt2tGrVmuzsbDZt2sCcObP57rtgwQTnWYr/jSDQqVMXYbFvZ1eLiIirHDy4n+HDRynUT0lJYerUSTg7N6J79x6l5FXUv+fZti2MbdvChOPVq0MxMTEts666ugbLl68CICcnl/DwKyxY8D1aWlqC43lUVBRbt8rNIzMyMoR7S0pK/HeeRFO7tuJ7UbKAL+FV55KJialCIAEjIyPS0uRzOjPzCSkpyQptSSQS6tSpK7wrxa8RyeHq1XC2b/+B6OgHZGZmUlRURH5+PikpyRgZGdOly2cEBs4iKioKF5dGuLk1oWFDRwBcXBphYmJK//59adTIFRcXV5o1a/6v4vLypKamkpiYSEjIIpYufZoLsbCwsFTd53/HPiTKVVaOHz9e5v9FRERERETeN8zMzDExMeXatQhA7isCoKEhtwm/di2Ca9cicHBweKGD/POGBBoaGgrH7u4dadTIlYsXzxMefoUxY0bSu3cfYQegKni+TYAZM6ZibGzM8OGjMDY2RllZmcGDB5GfX1ChrBLHbXgaxfNFizXFZ1RyTVEle191PD9WEolE8A95tqzkfoqLi6hZ045Jk0qHQH42aEFlMTQ0xNDQECsra6pVq8a4caP58ksvpFIT9u//CQ0NDXx9Bwv1x4+fhLf3F9y6dbPMnauSL+TP+hmVHCcmKiqdycnJTJw4jurVazB+fNkWLhX173k6d+4imEMCCrskzyORgIWFpXBsa2vLlSuX2L79Bxo3diMnJ5upUyfi5ORCQMBE9PX1SUtLY9y40eTn55crt6oo/Q5LKCqq/Py0tLREIpEQHf3gxZWfISEhgenTp+Du3glv7/7o6upy924U3347R3gPP/qoMZs2beXixQtcvRrO9OlTaNHiE8aODUBLS4tly1Zy/fo1rly5zPbtP7BhQyhLliyrcDzKo2TeDx8+Ent7hwrrlvWb8qFQYZ6VNm3asGLFioqqiIiIiIiIvBc4Ojpx7VoEERFXhS+ZAA0bOhIREc61axE4OTkDYGFhjqqqKrdu3RDqFRYWcvv2rVILybKQSqV06tSFKVOm4+3tI3wJLvFReZmFU2VIT08jOvoBffp8iYtLI6ytq5OVlV3mF9Q3jUxmXSovy507t996P8rCzq4WsbEx6OrqYWFhqfCvWjXd15JdsjAsWYzn5uaipKSoOJXsppSnDJqammFkZKTg5wQQE/NQwVzo8ePHjB8/FisrayZNmlJKQatM/56nWjVdhedRGZnPoqSkRG5uLgDR0dGkpaUxYMBAGjRoiJWVdandOpnMiqioPxXKnp8nb2IuaWvrYGBgqCC3uLhY4bhaNV0aNXJl376fyM7OLiXjyZMnZcqOirpDQUEBQ4Z8hb29PTKZjMePH5eqp6enR9u27Rg3bjyjR4/ll1+OCiaqysrKODk5M3CgLytWrCYnJ4fz58+90r0aGBhgbGxMXFxcqfn+rLL5oVOhshITE1NlWesvXryIv78/LVq0oE6dOuzZs0fh/MSJE6lTp47Cv969e1dJ2yIiIiIi//84Ojpy+3Ykd+7cxtHxWWWlISdP/kZqaqrgh6GhoUnnzp8RGrqWCxfO8+DBPyxdupiUlBS6dOlaYTsrVizj0qULxMXFcu/eXS5duoi1tdz2XV/fAHV1dS5fvkRKSgqZmWUvel4WHZ1q6OnpcejQQWJjY7h2LYKQkEUvveCsCrp18+TKlcvs3LmdmJiHHD58iN9/P/vW+1EWrVu3QV/fgJkzp3PtWgTx8XFcv36N1atXEhPzEJBHC/P1HcDZs2fKlXP+/DmOHTvK/ft/Ex8fz/nz5wgJWUTduvWERWDjxm7cvRvF1q2biYl5SFRUFAsWfI9UKhUip925cxtf3wHCAlwikdCzZ29++ulHTp06SWxsDNu2hXH7diSdOsl9RB4/fsT48WMwMDDA338oaWlpJCcnk5ycLCinlenf61BcjNBmfHwcP/98gMuXL/Hxx00BkEpNUFVVZd++n4iLi+X8+XNs2rRBQUbnzp8RFxfHmjWriI6O5syZ0/z880HhOcCbm0seHp7s3Lk0JRMIAAAgAElEQVSds2fPEB0dzerVK0lOfqywOzVs2HCKi4sZPnwop06dJDo6mujoBxw4sI+vvvIrU66FhYyioiL27t1DfHwcJ04cZ+/e3Qp1Nm3awO+/nyUm5iEPHvzD2bNnMDMzR01NjfPnz7F37x7u3o0iISGBEyeOk52dXakPJOUxcOBAdu7czp49u4iOjub+/b/55ZejCiZ/HzqvFyz+JcjKyqJ27dp4eHgwYcKEMus0bdqUoKAg4fhDigEtIiIiIvJucXR0Ij8/H2NjqcKCzcGhAbm5uWhpaWFn9zT87sCB8izQCxZ8L4QuDgycpxAJrCyKi4tYvnwZSUmJaGlp4eTkjJ+fPyD/aurvP4ywsM1s3boZB4f6pUIXvwpKSkpMmjSVFSuWMWSILxYWlvj5DSEwcOZry35Z7O3tGTlyNJs3b2Lz5o04O7vQu/fnbNxYOT+QN4mGhgbBwQtZt24tc+bMJisrE0NDIxwdHYVoWgUFBTx8GE1mZma5clRVVTl4cD/R0Q/Iz89HKpXStGlzwREcwMnJmQkTJrNr1w527tyOuro6devWIzDwWzQ05BGmcnJyePgwmpycHOE6T88e5Ofns2bNStLTM6hevTqzZ88VHK0vX75MTEwMMTExeHsrOtWXhPytTP9eh9zcHL78srfwLExMTOnXrz+9en0OgL6+PuPGjWfDhnXs3/8TNja2DB7sz9SpkwQZpqamTJ06g9WrV7Bv315q165D377eLFgQjJqaGvDm5lLPnr1JSUlhwYLvkUgktGvXgaZNmwu+TSAPCrB06Qq2bw9j3bo1PH78mGrVdLG1tS3X78fW1hZ//2Hs3LmNjRvXY2/vgJ/fEObODRTqqKqqsmHDOhIS4lFVVaNevXrMnDkbkOcT+v33s2zdupnc3FzMzS0YNWpMhcEuXkSXLl2QSFTYtWsH69eHoq6ujrV1dQXn+g8dSXEFhqt169bFzs6OBg3KfogSiYS5c8uPelEezs7OTJs2je7duwtlEydOJCUlhVWrVlVaTlJSxku3/SEjlVb7z93zh4w4Xq9HeEYxHfY9rBJZR7rKcK5WcahGcbw+FAooKsojKyvvXXdE5BlWrVpOePgVVq5cW+qclpaaOF4fEG9yvPbu3cOmTRvYvfuncqPMVjSXXodhw4bg4FCfoUOHV6ncd827fL90dfUoKqpcGGSp9OV9xkp44c7KvXv3uHfvXqny4uLiV1ZWyuPy5ct8/PHH6Orq8tFHHzF69OgXfuESERERERERebvs3LkdF5dGaGpqEh5+hYMHDyiEexYRAdi37yfq1JHnnYmMjCQsbAvt2nVQUFTexFxKSEjg8uWLNGjgSGFhAYcO/czff/8tJNUU+bB4obJiYmIi2OK+SVq0aEG7du2QyWTExMSwaNEifHx82LNnj7Bd+Dyvo6V9qPwX7/lDRhyvV0ctp3wTjZeWpaqMVPrinArieL3/ZGdnk56eh5ZW2X8XRN4Of/11lz17dpGZmYmZmRmDBw+mV69e5X4tF8frw6KqxispKZ4dO34gPT0dqVRKt27d6N+/v4KZ/8vOpcqgpaXGiRO/Ehq6hqKiImrUqEFQUBBOTq9ubvU+867eL11dzbfisvFCMzAfHx8mTZpUXpVXoiwzsOdJSEjg008/ZeHChbRv377MOv81kw3RTOXDQhyv10M0AxMpG9EM7ENDNAP7sBDH68Piv2AGVmE0sHeJqakppqam3L9//113RURERERERERERETkHVChsmJhYYGent7b6osCycnJJCYmYmJSOrGRiIiIiIiIiJzp06cQHPw0kmZAwBiWLQt5LZnBwUFMn146seLbZvPmjQwZ4vuuu/GfRhwDkXdNhT4rVZm5PjMzkwcP5JlCi4qKiI2NJTIyEj09PfT09Fi6dCnt27dHKpUSExPDggULMDQ0pG3btlXWBxERERGR/0+Cg4P45ZejwrGuri5169bDz28IVlZV43cZHx9P//59WbJkGbVr16mwrrv7079dmpqayGRWfP75FzRv3qJK+lIR06d/g7Jy5TITRERcZcKEcWzfvlvh4+RXXw3lBUnuX4uSZ1kRXl7e9OzZm27d3p8QrBkZGaxYsYxz534HoEmTpgwd+jU6OjrlXiPPL3KAe/fukpaWxnffBQv5fuQy09m8eSNXrlwhMTEBXV093Nzc8PEZgK7u0zGJiopi3bo1/PnnHZSUlGjevAWDB3+Fpqbma91TeXOghPdtDFJTU9myZSMXLlwgJSUZbW1tatSwoXfvPri4NMLf34/ateswZsy4UtdevHiBadMms3btBmQyGSAfn/37f+Lu3SgKCgoxNzejSZOmeHh4oq9v8LZvT6QM3lqelRs3btCvXz/hOCQkhJCQEDw9Pfnmm2/4888/2bt3LxkZGUilUtzc3Fi0aFGFPwAiIiIiIiIlODu7EBAwEZBnAA8NXc2sWd+wZs26d9KfkSPH4ObWhMzMJ+zcuYO5c2cTHLwIe3v7UnXz8/OrzFH1dTO1gzwL+JtEKpUSFrZDOD54cD9HjhxmyZJlQpmmpqbw733hu+/mkpiYSGDgtwAsWjSf77//lpkzA8u9JicnB3t7Bz79tC3Bwd+VOv/48WMePXrMoEF+VK9enUePHrF06RK+/XYuc+d+92+dR0yaNJ4WLVoydOhwsrIyWbVqBfPnBzF16ow3c7P/8r6MQWFhIUpKSgQGziQ3N5fRo8diYWFJamoK169fIz09HQB3945s3LieoUOHCfluSjhy5BD16zcQFJUNG9axY8c2unXzxNvbB6nUhLi4WA4f/pkDB/bTt2+/Uv0Qefu8NWXFzc2NO3fulHs+NDT0bXVFREREROT/EFVVVQwNDQEwNDTE07MHM2ZMJTc3F3V1dUCevXzNmpVcvnwJgHr17PH3H4qlpXzxkpSUyLJlIdy4cYP8/DykUhP69u1Hq1athZ2AESOGAdCgQcMKEz7q6OhgaGiIoaEhI0aM4uTJE5w79zv29vb06+dFu3btSUpK5OzZMzg7N2Lq1OncunWT9etD+fPPO+jo6NCkyccMHOiHtrY8ml1OTg5Lly7hzJlTaGho4OFROlBNQMAYatSwYdgweT6J/Px8tmzZxIkTv5KSkoKRkREeHj1o0uRjJkyQf33+/PMeALRt255x48YTHBxEenoas2bNASAvL49169by22/HhQSavr5DhGR2JV/n580LYsOGddy//zfW1tUZMWI0jo4OpfqorKwsjBXIF8RKSkoKZSA3QTpz5jSrVslzbpT0q379Bvz4425yc3Pp0uUz+vcfxNatmzlwYD9KShI8PXsoJEjMzHzC2rWr+f3338nLy8XOrhZ+fkNeuEP2LA8e/MOlSxeZP/+pwjlixCjGjRtNdHQ0VlZWZV7Xtm07ANLS0so8X6OGDdOnfyMcW1hY4us7mBkzppKZmYm2tjbnz59DSUnC11+PQFlZGYDhw0fy1VeDiY2NqZKs9eVR3hi4uDRi587t5Obm8vHHzRg2bDgaGhqAPL3Frl07+PnnAzx+/BgLCwt69epDmzZPdxzXrVvD2bNnSUpKRF/fgJYtP6Ffv/5CBNiSdnv06MUPP2whISGBjRu3cuPGdebO/Q5nZxdA7uNcp05dQW6bNm0JDV3DqVMnad/eXShPTU3l3Lk/GDVKHr74zp3bbNsWhp+fPz169BTqmZqa4uTkzJMnT97QExV5Wd6asiIiIiIiIvK2yMrK4uTJ36hRw0ZQVHJycpgwYSz16jkQFLQAVVUVdu3ayaRJ41m9eh0aGhosXbqEvLw8goKC0dLS4uHDaEHm4sVLGTnyawID52FrWxNV1cr/CVVRUUFZWZnCwkKh7Mcfd/PFF16EhCynuLiYv//+i8mTJ+Dt7cOoUWPIyMhg5crlLFwYLHw9X7t2FeHhl5k6dQbGxsZs2bKZGzeu07Rp83LbDg4O4ubN6/j7D6VmTTsSExNJSkpEKpUydeoMAgNnsmpVKNWqVUNdvewQqCWLv9Gjx2Fubs6ePbuYOnUSoaEbFfKhrV8fyqBBfhgaGrJixTKCguaxZcvmSj+nynDjxnWMjaUEBc3n7t27BAXN4969e9Ssacf8+YuIiAgnJGQxzs4u1KpVm+LiYqZNm4K2tjazZgVSrVo1jh07ysSJAaxZs17ov7t7W7y8vPH29imz3cjIW2hqamJv/1T5cnCoj4aGBpGRN8tVVl6FrKwsVFVVhcV/fn4+ysoqgqICCPP6xo0bb1RZKYsbN65jaGjIvHlBJCUlMXfubCwtLenT50sANm5cz+nTpxg2bDgymRWRkbdYtGghOjo6uLk1+bf/mowZMw4jI2MePPiHkJBFqKqq4uMzQGgnPj6e3347zuTJ01FVVcHQ0BBNTU3OnfuD+vUblJnaolo1XZo2bcaRI4cVlJVff/0FdXV1mjdvCcDx47+ioaFRrombaNnz/vDeRgMTERERERF5GS5duoiHRxc8PLrQvXtXrl+PYOLEycL5kydPUFwMY8cGYGtri5WVNSNGjCI7O5sLF84B8rD5Dg71sbWtiZmZOa6ujXF1bQyAnp4+IPeHMTQ0rLS5VV5eHmFhW8jKysLJyVkob9CgIb16fY6FhSWWljJ27dpBy5at6NGjF5aWMurWrcfw4SM5c+Y0qakpZGdnc+TIYQYNGoyr60fUqGHD2LEBFeajiIl5yMmTJxg1agzNm7fE3NwCR0cn2rZtj7KyMtWqycOJ6uvrY2hoWKb5V05ONgcP7mfQIF/c3JpgbV2d4cNHYWBgwP79PynU7devP46OTlhZWePl5U109AOSkpIq9Zwqi5aWNsOGDcfKyprWrT/Fzq4WycnJDBzoi0wmo3PnzzAxMSUi4iog3/X56697TJ06gzp16mJhYYmPzwDMzMw5fvwXQa5MZlVhUKGUlBT09PQUnrdEIkFfX5/k5OQqu78nT56wadMG3N07CcqJo6Mz6elpbN/+A/n5+WRkZLBunXynIzn5cZW1XVm0tLQZPnwU1tbVadTIlRYtWnL1ajggny979uxi9OixuLo2xszMnNat29CxYycOHNgnyPDy6ouDQ33MzMxo3NiNPn2+5LffTii0U1CQT0DARGrVqkWNGjYoKyszdmwAx4//So8e3Rg1ajhr1qzi9u1Ihes6dOjIzZs3ePjwafj7o0cP06pVa0EBjI2NwdzcAhUV8bv9+444QiIiIiIi/xc0aNCQkSNHA3JH6AMH9jN58kQWLw5BKjUhKiqK+Pg4PD0/U7guNzeX2NhYADw8uhMSsohLly7i5ORMs2bNqVWr9iv15/vvv2X+/CDy8vLQ0tLGz28IH33UWDj/vNyoqCji4mI5deo3oazEyT02Ng4NDXXy8/OpV6+ecF5TU5MaNWzK7cO9e3dRUlKiYUOncuu8iNjYOAoKCrC3ry+UKSsrU7euvRA4pwQbG1vh/yU7FikpKejo6L9y+89jbW2tsMOgr69f6iu4gYEBqampAERF/Ulubq5g6lZCXl6eMO4Aa9eur7I+virZ2dnMmDEVIyMjfH0HC+U1atRg3LjxrF69ko0b16OsrEzXrh4YGBigpFT2d+fjx39lyZKFwnFg4DzBbO91eX4MjIyMuX37NgD//PMPeXl5TJkyiWf16MLCQkxMTIXj06dP8eOPu4mLiyU7O5uioiKKiooU2jE2lmJgoOjk3rx5Sxo3bsKNG9eJjLzFpUsX2b17J/37DxR2dpydXTAzM+Po0UMMHOjH7duR/PPPfcaODRDkVJBmUOQ9Q1RWRERERET+L1BXV1cwh7Gzq0WPHt34+eeD+PgMoLi4iJo17Zg0qXRI3pIdBnf3jjRq5MrFi+cJD7/CmDEj6d27T7mmQRXh6yvfAdHS0iozqlDJF94SiouL6dChI9279yhV18jImJiYqkmSWpU8v6mj+JVafrKqF4XPfwmXSCSlop9JJE/bLS4uRl/fgPnzF/I8WlpalW7XwMCAtLQ0iouLhd2V4uJiUlNTS/navArZ2dlMmybfCZw1a04pE6fWrdvQunUbUlJS0NDQQCKRmxKamZmXKa9Jk4+pW/epL4eRkfFr97GEsnYjnn3eADNnzi6VfqJknCIjbzFvXiBeXv1wdXVFR0eHc+f+YM2aVQr1n39HSlBTU8PFpREuLo3w8vJm4cL5bNmyiR49eqGqqopEIqFdO3cOHtyPj89Ajhw5hK1tTQUfJUtLGTduXK/S4BYibwbRDExERERE5P8SiUSCkpISubm5gFx5iY2NQVdXDwsLS4V/z5p0SaVSOnXqwpQp0/H29uHQoZ8BBB+V57/+loeBgSEWFpaVDn9qZ2fHP//cL9U3CwtL1NXVBZOVZ01ecnKy+eef++XKtLW1o6ioiGvXrpZ5vmSRVtE9WViYo6qqyq1bN4SywsJCbt++hbV19Urd27vEzq4WqakpSCSSUs/1ZULT1qtnT3Z2NpGRt4SyyMhb5OTkUK9e6SACL0NWVhZTpkykqKiI2bPnVhh9y8DAAE1NTU6e/A1VVfmivSy0tLRKzaG3gbV1dVRVVUlMTCj1vE1N5Tsrt27dxNjYGC+vvtSpUxdLSxkJCQmv1WZhYSF5eU8zubdv34HU1BROnz7FyZO/4e7eUeGa1q0/JScnh337fnpeHIDoYP8eIe6siIiIiIj8X5Cfny/4Djx5ksG+fT+RnZ0tOPS2bt2GXbt2MnOmXAkxMTEhKSmJP/74nc6du2BpKWPFimV89NFHWFrKyMrK4tKli1hby/O06OsboK6uzuXLlzA1NUNNTbVKQ/z26tWH0aOHs2TJIjp16oyWlhbR0dGcO/cHI0eORlNTkw4d3AkNXYuenj6GhkaEhW2uUNGQyWS0bPkJixYtwN9/KHZ2tXj06BHx8fG0bdsOExNTJBIJFy6cw83tY9TV1UstlDU0NOnc+TNCQ9eiq6uHmZkZP/64m5SUFLp06Vpl9/+mcHZ2wd7egZkzpzNo0GCsrKxITk7h8uWLODu7CKZRvr4D6Nq1G127lu1wbW1dHVfXj1iyZCEjRsgjSi1ZshA3tyaCc/2jR4+YODGAAQMG0ayZPOhBRkY6iYmJwuI3NjYWHR0dDAzkkeKysrKYPHkCWVlZzJgxk5ycHHJycgD5jl+JQrlv317q1bNHU1OLK1cuExq6mgEDfKvMEfz+/b/R0dFBQ0OVnJx8QNGsr7JoaWnRo0cv1qxZRXFxMQ0aNCQ7O5vbtyORSCR06iR/1x49esTx479Sr149Ll++xMmTJ14oOz09jTlzZtO+vTs2NrZoaWny559/smvXdpycnIWoeSD/6NCokStLly6hoKCA1q3bKMiqW7cevXp9Tmjoah49SqJ58xYYG0uJj4/jyJHDWFhYiKGL3xNEZUVERERE5P+C8PArfPllb0C+YJLJrJgyZZqQgE9DQ4Pg4IWsW7eWOXNmk5WViaGhEY6OjujoyM3AiouLWL58GUlJiWhpaeHk5Iyfnz8g99Pw9x9GWNhmtm7djIND/QpDF78stra2fP/9AjZuXM/48WMpLCzC3NxMIdKXn98QcnJymDVrBurqGnTt6iEsbMtj3LgJbNq0gRUrlpGeno6xsTGennJTM2NjY/r29WHDhvUsWrSANm3aMW7c+FIyBg6UZzBfsOB7IXRxYOA8hUhg7ysSiYTZs+eyceN6Fi9eQGpqKvr6Bjg4ONCmTTuh3sOH0eWGFy5hwoTJLF++lKlT5fl83Nw+FkJEAxQUFPDwYTSZmZlC2R9//MGCBd8Lx4sXy+dMSeSxqKg/hd2yQYP6K7T3bALJO3dus3nzRnJycpDJrBg+fJQQFrkqKAlj/Sw//rj/lWT5+AzAwMCA3bt3snTpErS0tLC1rUmvXp8DchO1nj17s2rVcnJzc3FxccXb24elS5dUKFdDQ5O6deuxd+8e4uJiyc/Px8jImFatPuXLL71K1e/QoSMXL16gdetPBVPPZxk0yI9atWqzf/9PHDlyiMLCIszMzPj446YfhCL+X0FS/AF7GCUlZbzrLrxVpNJq/7l7/pARx+v1CM8opsO+qrHRP9JVhnO18iMmgTheHw4FFBXlkZWV9+KqIu8FWlpq4nh9QIjj9WHxLsdLV1ePoqKK/7aWIJWWVhYri+izIiIiIiIiIiIiIiLyXiIqKyIiIiIiIiIiIiIi7yWisiIiIiIiIiIiIiIi8l4iKisiIiIiIiIiIiIiIu8lorIiIiIiIiIiIiIiIvJeIiorIiIiIiIi/+dMnz6F4OAg4TggYAzLloW8lszg4CCmT5/yul17bTZv3siQIb7vuhsi5TBkiC+bN298191467i7t+X06VNvpa3n38WioiIWL15Ir16euLu3JSLi6nvzvr4KYp4VEREREZEPmoMHD7B69Up27fpRSKCXn59Pz54emJmZs2rVWqFubGwMAwf6MG9eEM7OLlXel/j4ePr378uSJcuoXbtOhXXd3dsK/9fU1EQms+Lzz7+gefMWVd6v55k+/RuUlSu3BIiIuMqECePYvn03enp6QvlXXw3lTSY/KHmWFeHl5U3Pnr3p1q3sRI5vm6KiImbOnMFff90lNTUVHZ1qODk5M2iQH8bGxuVed/36NXbt2sndu3/y+PFjxowJoH37DqXqPXz4kHXr1hIREU5BQQEymRUTJkzC2ro6IE84uXbtKm7evEF+fj6NGrkydOhwDAwMquweZ8yYxsWL5wkMnIeLS6Mqk1tCyXwrQU1NDQsLS3r27EXbtu2rvL3yOHr0CMuXh7B374FS52JjY9m2LYwrVy6TlpaKgYEBtWvXoXv3ntjbO7y1Ppbw/Lt48eIFjh07QlDQfMzMzKlWrRp2dnZv9H19k4jKioiIiIjIB42joxO5uTncuXNbyEZ+585ttLS0iY2N+TcJoD4gXwipqqri4FD/ldoqKChARaXq/nSOHDkGN7cmZGY+YefOHcydO5vg4EXY29uXqpufny8oY69LtWq6ry1DW7tqMqeXh1QqJSxsh3B88OB+jhw5zJIly4QyTU1N4d/7gpOTE336fIGhoRGPHz9izZpVzJo1Q6Hfz5OdnU2NGjVo27YdwcHflVknPj6OsWNH0qZNO774IhgdHW2io6OFe8/JyWbKlAnUqGHDt9/Kk1Bu2rSBGTOmsmhRCEpKr29M8/jxY65eDcfTsweHD//8RpSVElatCqVatWrk5uZw5sxp5s//HktLGfXqlX433iZ//nmHiRMDsLa2ZvjwkVhZWZOTk8OFC+dYvnwpS5eueOt9ev5djI2NwdDQUEFxqorfjqr+/assorIiIiIiIvJBI5PJMDIyIiIiQlBWIiKu4uTkTEJCPNeuRdCy5SdCeb169qipqZGXl8e6dWv57bfjQlZ2X98hCjImTBjHrFlz2LJlE3/9dY9p077B1taWZctCuHHjBvn5eUilJvTt249WrVoLOwEjRgwDoEGDhhVmudfR0cHQ0BBDQ0NGjBjFyZMnOHfud+zt7enXz4t27dqTlJTI2bNncHZuxNSp07l16ybr14fy55930NHRoUmTjxk40A9tbW0AcnJyWLp0CWfOnEJDQwMPj+6l2g0IGEONGjZC9vX8/Hy2bNnEiRO/kpKSgpGRER4ePWjS5GPhK/fnn8uz3rdt255x48YTHBxEenoas2bNASj3eTZu3Ejhec6bF8SGDeu4f/9vrK2rM2LEaGrVqlWqj8rKyhgaGgrHmpqaKCkpKZSB3AzszJnTwg5aSb/q12/Ajz/uJjc3ly5dPqN//0Fs3bqZAwf2o6QkwdOzB7179xHkZGY+Ye3a1fz+++/k5eViZ1cLP78hL9whexYlJSU8PXsIx6ampvTu3YeZM6eTl5eHmppamdc1buxG48ZuAMyfH1RmnQ0b1uHi0ojBg/2FMnNzC+H/N2/eJD4+niVLlgvZ2seNG0/Pnp5cvRpeJYrFsWNHcHV1pWtXD/z8BpCenoau7tPdttTUFBYtWsCVK5fR19fHy8u7lIzdu3dx7NgR4uLi0NHRxtW1MX5+Q9DRUVxw6+vrCzt5vXp9zs6d27l3766grLzo/QX5jtXatav56697aGtr07r1pwwc6Ccs3K9fv0Zo6Gru37+PkpISMpkVY8aMIy0tjQUL5ApfyQ6ol5c3ffv2Y/787zE3N2f+/MUoKysLbdna2laY9X7dujWcPXuWpKRE9PUNaNnyE/r16y/MiaSkxHJ/VwC2bt3MkSOHSElJQUdHBxeXRgQETARQeBeDg4P45ZejQt9NTEzZtGlrqfe1uLiYXbt28PPPB3j8+DEWFhb06tWHNm3k91uyszlhwmQOH/6ZyMhb+PoOpmvXt7+LKSorIiIiIiIfPA0bOnHt2lW8vOTKQkTEVVq3bkNCginXrl0VlJVr167RuXMXAEJD13Dq1ElGjx6Hubk5e/bsYurUSYSGbsTIyEiQvW7dGvz8/LGwsEBTU4uFC4PJy8sjKCgYLS0tHj6MFuouXryUkSO/JjBwHra2NVFVrfyfWRUVFZSVlSksLBTKfvxxN1984UVIyHKKi4v5+++/mDx5At7ePowaNYaMjAxWrlzOwoXBTJ06A4C1a1cRHn6ZqVNnYGxszJYtm7lx4zpNmzYvt+3g4CBu3ryOv/9Qata0IzExkaSkRKRSKVOnziAwcKbwpVtdvewFd3nPMywsDC2tpzs569eHMmiQH4aGhqxYsYygoHmsXh2KRFK5TNiV4caN6xgbSwkKms/du3cJCprHvXv3qFnTjvnzFxEREU5IyGKcnV2oVas2xcXFTJs2BW1tbWbNCqRatWocO3aUiRMDWLNmvTAf3N3b4uXljbe3T6X6kZGRzokTv1K3bt1yFZXKUFRUxPnz5+jduw9Tpkzk7t0oTExM6dmzF598Il/M5ufnI5FIFNpRVVVDIpFw8+aN11ZWiouLOXr0CIMG+WFqakqdOnX59ddfFJSz+fO/JyEhgXnzglBXV2fVqhUkJMQryFFSkuDvPxQzM3MSEyOa1ysAACAASURBVBNYvnwpy5cvZfz4ieXe+7lzf/DkyRMFxfFF7++jR4+YOnUybdq0ZezYAOLi4li0aD4SiRKDB/tTWFjIzJnT6dChI+PHT6awsIC7d6NQUlLC3t4Bf/+hrF+/jvXrNwFyZfnevbv88899JkyYpKColPC8wvUs6uqajBkzDiMjYx48+IeQkEWoqqri4zMAgKVLl5T7u3LmzCl2797JhAmTsbGxITU1ldu3I8ts56uvhmJqairsQpa3o7Zx43pOnz7FsGHDkcmsiIy8xaJFC9HR0cHNrYlQb/36UPz8hjB69NhKm45WNaKDvYiIiIjIB4+joxORkbfIy8sjLy+PyMhbODo60qBBQyIiIgCIjn5AcvJjHB2dyMnJ5uDB/Qwa5IubWxOsraszfPgoDAwM2L//JwXZffv2o1EjV8zNLdDX1ychIQEHh/rY2tbEzMwcV9fGuLo2BkBPT25upquri6GhYaXNrfLy8ggL20JWVhZOTs5CeYMGDenV63MsLCyxtJSxa9cOWrZsRY8evbC0lFG3bj2GDx/JmTOnSU1NITs7myNHDjNo0GBcXT+iRg0bxo4NqFARiIl5yMmTJxg1agzNm7fE3NwCR0cn2rZtj7KysvCVXl9fH0NDwzLNvyp6nj/++KNC3X79+uPo6ISVlTVeXt5ERz/g0aNHlXpOlUVLS5thw4ZjZWVN69afYmdXi+TkZAYO9EUmk9G582eYmJgSEXEVkCu3f/11j6lTZ1CnTl0sLCzx8RmAmZk5x4//IsiVyawU/HbKIzR0Dd26daFXr+4kJiYyc+ac17qf1NRUsrOz2bbtB1xcXJk79ztatfqU776bx/nz5wCoW7ceGhoarF27mpycbHJyslm7dhVFRUUkJye/VvsA165FkJGRLuwAtW3bjiNHDgnnHz58yMWLFxg5cjQODvWxs6vFuHETyMvLU5Dj6dkDJydnzMzMaNjQEV9fP06fPklRUZFCPR8fLzw8uvDZZx0JDJzJoEGDBWWlMu/vgQP7MDIy4uuvR2BtXR03tyYMGODL/v0/kZOTQ1ZWJk+ePMHNrQkWFhb/zpU2WFtXR1VVFS0tbSQShJ1PTU1NYmNjALCysn7p5+fl1RcHh/qYmZnRuLEbffp8yW+/nRDOV/S7kpCQiIGBIY0auWJiYkrt2nXK3eHQ1tZR2IUsMYF9lpycbPbs2cXo0WNxdW2MmZk5rVu3oWPHThw4sE+hbrduHrRo0RIzM3OkUulL33dVIO6siIiIiIh88Dj9j737jq/x/B8//jrZiSyRQbYMZMggNkFQs75oaVVVh9Va/bQ6tHy6UFVUiypVSqgaVZRaRY2KLYmISASRyBaRPc/5/ZHfuZug6tNqcqLv5+PRR+Xk5D7XfV/nvu/rfY33HRSkBClQFTQ4OjphY2NDWloqOTk5REVFYmxsQosWPly/fp2Kigp8fX9fu6Kvr0+LFr5cv369xra9vWtOAxo0aAiLFi3k9OlTBAUF06lTZ7y9m/2lcn/66Rzmz59LWVkZZmYNGDNmHG3atK322TW3m5CQQFpaKocP/6q8pl00m5qahomJMeXl5fj4+Ci/NzU1xd296R+WITHxMnp6egQEBP2lfdB+9h8dz2vXrtV4b9OmHsq/tSMWubm5D7Uh5OrqWqPn29ra+q5e74YNG5KbmwtAQkI8paWlylQ3rbKyMlJTU5WfV6xY9UCf/+STw+jduy+ZmRmsXbuGuXM/ZubMj//y6JFGU9WQ79ChA0888SQAnp5eJCRc4qefttGuXXusra15993/snjx5+zYsR2VSkW3blWBmp7evT83JuY806dPU36ePPk/DBjQ957v3b17F6GhXZUpVJ07h/Lll4uJi7tIixY+JCcnoaenR/PmLZS/cXBwwMamUY3tREaeY8OG9SQnX6ewsBC1Wk15eTm3buXQqNHvSQg++WQeFhYWlJWVEx8fx5dfLsbMzJS+ffvf9/umPX+vX79OixY+NUYW/P39KS8vJzU1FQ8PD3r16s27775NUFAwQUGt6NKlC/b2Dveph7++Qv3IkcP8+OMPpKWlUlxcjFqtrhGg3e+6EhoayrZtW3j++Wdp1SqEkJA2tG/f4S+P1iUlJVFWVsa7706j+leysrLyrv3/q9e2h0mCFSGEEPVe48ZNsLd3IDq6ahSlZcsAAExMTPHy8iY6Ooro6Cj8/Pz+dIHone1JExOTGj/36dOX1q1DOHXqBOfOneW116YwbNjTDzw1qLrRo6tGQMzMzLC2vjtj052frdFo6N27L0OGPHHXexs1suXGjZT/uQz/tDsb6DWPf9XvtI3xh+XOOlapVHdNYVGpfm98ajQarK0bMn/+Z3dty8zM7H/+fCsrK6ysrHB2dsbFxZWRI4dz4UJMjfUU/wtLSyv09fWVrF9aLi5uHDr0e+9869YhrFoVzu3bt9HX18fc3Jzhw4fSuHG3e27X27sZX365TPn5Xt9BgIKCAn777QgVFRXs2vWz8rparWb37p9p0eL34Ph+AVlGRgb//e+79OnTj5Ejn8fS0pLLlxOYM2cW5eUVNd7buHETZRTL3d2duLg41q1bS9++/f9w+1Wff99f13jP66+/weDBQzh9+hTHjx9j9eqV/Pe/HxAS0uaef+fk5AxUjdJ6ed29zuqPXLwYy8cfz2TEiOcICQnB3Nyc48cj+Prr34/9/a4rdnb2rFjxLefOnSUy8ixff/0V69aF8/nnizAz+98DFu33/oMPPsLe3r7G7+48T+68BtUFCVaEEEI8EgIDg4iOjkKj0dCjRy/l9YCAQKKizhEdHcWQIVW90o6OTTA0NCQ2NgZHx6pFypWVlcTFxdKtW9iffpadnR39+g2gX78BbNz4PVu3/sjIkaOUNSp3Tmn5Iw0b2uDo6PTA++jl5UVS0rU//JsmTRwxMDAgLu6isvi6pKSYpKRrNRZjV+fh4YVarSY6OlKZdlKdtif9fvt0v+PZq1evP/w7XeHl5U1u7i1UKtUfHqe/ShuI3Tkd6n9haGhIs2bNSUmpGYzeuJGCg8PdIwHaRn5k5Dlyc3Np377jPbdrbGz8QN+/Awf2Y2VlxUcfza7x+sWLsXz99TLGj38FZ2dX1Go1ly7FKVmoMjMzyMm5qbw/IeESFRUVjBv3sjLypZ3G9mf09PQoLS0BHuz8dXV15fDhqull2tGVmJgYDA0Na9Sxh4cnHh6eDBv2NNOnT+OXX/YSEtIGQ0ODu77znp5euLq6KdMx71y3UlBQcM91K7GxF7C1tVXW1EFV4HanP7quQFUK53bt2tOuXXuGDRvO8OFDuXDhAl263Ltu70c71S0zM6PGtFNdJWtWhBBCPBICAwOJi7vIpUtxBAYGKq8HBARw6NCv5ObmEhhYNdXJxMSU/v0f55tvVnDy5AmuX09i8eLPuXXr1n0z+gAsXbqE06dPkpaWSmLiZU6fPoWra9UcdmvrhhgbG3PmzGlu3bpFYWHBQ93HoUOfJj7+El98sZDLlxNITb3BiRPH+fzzqhEBU1NTevfuwzffrODs2TNcu3aNBQvm3TfQcHZ2JjS0KwsXLuDo0cOkp6cRE3OeX37ZB4C9vQMqlYqTJ48rayfudL/jOWiQbjwD5X6Cg1vh6+vHBx/8l1OnTpKenkZsbCzh4auJiTmvvG/06BfYvn3rH24nNjaW7du3ceVKIhkZGURGnmPOnNk4ODSuMapy53aKi4tJTLxMYuJlNBoNWVmZJCZeJjPz9wbt0KFPcfjwr/z88w5SU2+wa9dODh06WOP7unfvbmJjY0lNTWX//l+YNetDBg9+AhcXl791fPbs2UXnzqG4uzet8V/Pno+hUqk4dOhXXFxcCAlpwxdffEZsbCyJiZeZP//TGlOVHB2dUavVbN26hfT0NA4ePMDWrT/c8zNzc3PJyckhIyODw4cPceDAL3ToUNUwf5Dzd8CAgdy8eZPFi7/g+vUkTpw4zqpVK3j88f/DxMSE9PQ0Vq78mtjYC2RkZBAVFcnVq1eU0SsHh8aUlZX9/2ep3KakpASVSqUs1n/99Vc5ceI4qampXL16hU2bNjBt2pv33BcnJ2eys7M5cGA/aWmp7NixvcaIGNz/urJ37x527fqZq1evkJ6ext69uzEwMMDJ6cE7OqozMzPjiSeG8vXXy9izZxepqTdITLzMzp0/8fPPdz9Xpq7JyIoQQohHQmBgEOXl5dja2tXoLfbza0lpaSlmZmY1pm68+GLVU88XLPhUSX06c+bHNTKB3YtGo+bLL5eQlZWJmZkZQUHBjBlTlU5WX1+f8eMn8N134axbF46fn/99Uxf/rzw8PPj00wWsXr2KN998ncpKNU2aNK6R6WvMmHGUlJTw4YfvYWxswsCBgygpKbnvdqdOfYs1a75l6dIl5OXlYWtrq2R5srW15dlnR/Htt6tYuHABPXr0YurUuxtlf3Q8bW1tKSr666MKtUGlUvHRR7NZvXoVn3++4P8/m6chfn5+NUbpUlKSuX379h9ux9jYiKNHDxMe/i0lJSXY2DQiJCSEadOm12i037md+PhLNR6EGB6+mvDw1UqaaICOHTsxefJ/2LDhO7766kscHZ2YOvWtGpmbUlKSWbXqG/Lz83FwcODpp0fcc8rg/yIhIYHExMtKmuvqDA0Nad++A7t376J37768/vqbLFy4gLffnoqlpRUjRoxU1gVB1fd3/PgJbNr0PatXr8LX148xY8Yxe/bMu7Y9btxLQNU5ZWdnR9++/Rk58jnl9392/tra2jJz5mxWrFjOhAnjldTFzz//IgDGxiakpNxg1qwPycvLw9ramu7deyjprH19/ejffwBz5swiLy9PyQLXvHkLFi36ku+/X8+iRQvJzc3FxsaGZs2a88orE+95DNu378CTTw5j2bIvKS0tpVWrEEaOHMXixV8o77nfdcXc3JyNG79nxYplVFRU4urqyowZ79O4cZMHr8g7jBr1Ag0bNuSHHzaxePEXmJmZ4eHhydChT/3lbf5TVJq/s1qojmVl5dd1EWqVnZ3Fv26f6zOpr7/nXL6G3tsfzvz7PQOdCba4/0Rmqa/6ogK1ukznG7/id2ZmRlJf9YjUV/1Sl/VlaWmFWv1gSSPs7Cz+8ufINDAhhBBCCCGETpJgRQghRD3y8B4cKIQQ4q97mA9yvR8JVoQQQtQbtXVzFEII8cdUKhW1tZBEghUhhBD1hkqlV+Mhb0IIIWqfsbGxBCtCCCHEndRqsLCwkBEWIYSoI4aGBhgZmdRasCKpi4UQQtQrJiYmWFhYodFUoFbX24SW/xpmZkaoVIZ1XQzxgKS+6pfari89PX1UKj0e8Lm3D4UEK0IIIeqdqhulATLAovvMzc0pLpa04PWF1Ff9Utv1pdFQayMqWjINTAghhBBCCKGTJFgRQgghhBBC6CQJVoQQQgghhBA6SYIVIYQQQgghhE6SYEUIIYQQQgihkyRYEUIIIYQQQugkCVaEEEIIIYQQOqnWgpVTp04xfvx4unTpQvPmzdmyZUuN32s0GhYtWkTnzp0JCAhg5MiRJCQk1FbxhBBCCCGEEDqm1oKVoqIimjVrxrvvvouJicldv//6669ZuXIlM2bMYPPmzdjY2PDCCy9QUFBQW0UUQgghhBBC6JBaC1a6du3Ka6+9Rp8+fdDTq/mxGo2GNWvWMHbsWHr37k2zZs345JNPKCwsZMeOHbVVRCGEEEIIIYQO0Yk1KykpKWRlZdGpUyflNRMTE9q0acO5c+fqsGRCCCGEEEKIuqITwUpWVhYAtra2NV5v1KgR2dnZdVEkIYQQQgghRB0zqOsC/B12dhZ1XYRa92/c5/pM6uuvMyopfHjbMtTHzq7Bn75P6qv+kLqqX6S+6hepr/rlUa8vnQhW7OzsAMjOzsbR0VF5/ebNm3eNtlSXlZX/j5dNl9jZWfzr9rk+k/r6e8rKNQ9xW5V/WhdSX/WH1FX9IvVVv0h91S/1pb7+TkClE9PAnJ2dsbOz49ixY8prpaWlnD59muDg4DosmRBCCCGEEKKu1NrISmFhIdevXwdArVaTmprKxYsXsbKywtHRkeeee45ly5bh4eGBu7s7S5cuxczMjAEDBtRWEYUQQgghhBA6pNaClZiYGJ577jnl50WLFrFo0SIGDx7MnDlzGDNmDKWlpXz44Yfcvn2bwMBAVq5cibm5eW0VUQghhBBCCKFDai1YadeuHZcuXfrD36tUKiZNmsSkSZNqq0hCCCGEEEIIHaYTa1aEEEIIIYQQ4k4SrAghhBBCCCF0kgQrQgghhBBCCJ0kwYoQQgghhBBCJ0mwIoQQQgghhNBJEqwIIYQQQgghdJIEK0IIIYQQQgidJMGKEEIIIYQQQidJsCKEEEIIIYTQSRKsCCGEEEIIIXSSBCtCCCGEEEIInSTBihBCCCGEEEInSbAihBBCCCGE0EkSrAghhBBCCCF0kgQrQgghhBBCCJ0kwYoQQgghhBBCJ0mwIoQQQgghhNBJEqwIIYQQQgghdJIEK0IIIYQQQgidJMGKEEIIIYQQQidJsCKEEEIIIYTQSRKsCCGEEEIIIXSSBCtCCCGEEEIInSTBihBCCCGEEEInSbAihBBCCCGE0EkSrAghhBBCCCF0kgQrQgghhBBCCJ0kwYoQQgghhBBCJ0mwIoQQQgghhNBJEqwIIYQQQgghdJIEK0IIIYQQQgidJMGKEEIIIYQQQidJsCKEEEIIIYTQSRKsCCGEEEIIIXSSBCtCCCGEEEIInSTBihBCCCGEEEInSbAihBBCCCGE0EkSrAghhBBCCCF0kgQrQgghhBBCCJ0kwYoQQgghhBBCJxnUdQG0Fi1axOLFi2u8Zmtry2+//VZHJRJCCCGEEELUJZ0JVgCaNm1KeHi48rO+vn4dlkYIIYQQQghRl3QqWDEwMMDOzq6uiyGEEEIIIYTQAToVrCQnJ9O5c2eMjIwIDAzktddew8XFpa6LJYQQQgghhKgDKo1Go6nrQgAcOnSIwsJCPDw8yMnJYenSpVy5coUdO3bQsGHDui6eEKKW/ZpcSPcfkh7Ktg4+4UY3lwYPZVtCCCGEqD06M7LStWvXGj8HBgbSs2dPtm7dygsvvHDPv8nKyq+NoukMOzuLf90+12dSX39PWfnD60cpK6/807qQ+qo/pK7qF6mv+kXqq36pL/VlZ2fxl/9WZ1MXN2jQAC8vL65du1bXRRFCCCGEEELUAZ0NVkpLS7l69aosuBdCCCGEEOJfSmemgX3yySd0796dJk2akJOTw5dffklRURGDBw+u66LdV2alihtF6r+9HSczPez1dWL5kBBCCCGEEDpBZ4KV9PR0XnvtNXJzc2nYsCFBQUFs3LgRJyenui7afd0oUtN7e8rf3s6egc7YW6geQomEEEIIIYR4NOhMsPLZZ5/VdRGEEEIIIYQQOkRn16wIIYQQQggh/t0kWBFCCCGEEELoJAlWhBBCCCGEEDpJghUhhBBCCCGETpJgRQghhBBCCKGTJFgRQgghhBBC6CQJVoQQQgghhBA6SYIVIYQQQgghhE6SYEUIIYQQQgihkyRYEUIIIYQQQugkCVaEEEIIIYQQOsmgrgsghBBCCCHEoyCzUsWNIvVD2ZaTmR72+pqHsq36TIIVIYQQQgghHoIbRWp6b095KNvaM9AZewvVQ9lWfSbTwIQQQgghhBA6SYIVIYQQQgghhE6SYEUIIYQQQgihkyRYEUIIIYQQQugkCVaEEEIIIYQQOkmCFSGEEEIIIYROkmBFCCGEEEIIoZMkWBFCCCGEEELoJAlWhBBCCCGEEDpJghUhhBBCCCGETpJgRQghhBBCCKGTJFgRQgghhBBC6CQJVoQQQgghhBA6SYIVIYQQQgghhE6SYEUIIYQQQgihkwzqugBCCCHqv8xKFTeK1H97O05metjrax5CiYQQQjwKJFgRQgjxt90oUtN7e8rf3s6egc7YW6geQomEEEI8CmQamBBCCCGEEEInSbAihBBCCCGE0EkSrAghhBBCCCF0kgQrQgghhBBCCJ0kwYoQQgghhBBCJ0mwIoQQQgghhNBJEqwIIYQQQgghdJIEK0IIIYQQQgidJA+FFEIIIYQQQsf4VGRjlZx53/do0g2wKq+473sqbBwobGD7MItWq3QuWFm3bh3ffPMNWVlZeHt788477xASElLXxRJCCCGEEKLWmN3ORH/Wy/d9jxrQ/7MN/XcpSLDycPz888/Mnj2b9957j9atW/Pdd98xZswYdu7ciaOjY10XTwhRT0nvlBBCCFE/6VSwsmrVKgYPHsywYcMAmDFjBkeOHGH9+vW8/vrrdVw6IUR9Jb1TQgghRP2k0mg0mrouBEBZWRlBQUHMnz+fvn37Kq9/8MEHJCQksHbt2josnRBCCCGEEKK26Uw2sFu3blFZWYmtbc1ey0aNGpGVlVVHpRJCCCGEEELUFZ0JVoQQQgghhBCiOp0JVho2bIi+vj7Z2dk1Xr958yZ2dnZ1VCohhBBCCCFEXdGZYMXIyAg/Pz+OHTtW4/Vjx44RHBxcR6USQgghhBBC1BWdygb2wgsv8OabbxIQEECrVq1Yv349mZmZPP3003VdNPEP02g0qFSqui6GzisuLub06dNoNBpCQ0Prujiilmk0GrQ5UfT0dKavSQidp1arATlv6ouLFy9iYGCAt7d3XRdFPGTa+5hKpXrgdp9OBSv9+vXj1q1bLF26lMzMTJo1a8by5ctxcnKq66KJf0D1AEUClfs7c+YMCxcu5Pbt27i6uuLg4EDz5s1xcHCo66KJWlT94l5RUYGBgU5dwsUdtA3k/+WmLB4u7X1GghTdt3PnTnbv3k1WVhZlZWVYWloyZMgQBg4cWNdFE3/DnZ3R1a+HBQUFmJub/2mHtc6kLhaPNo1Gg1qtRk9P764vZE5ODvv378fT05NWrVrVUQl1S2ZmJl999RWjR4/G3t6eadOm0apVK4YPHw5UreVq0KABJiYmdVxS8bBpe52qN660505aWhrnzp1j/fr1+Pj48M4779RhScWd7nfDvXnzJiqVChsbm1ou1b9HZWVljcCksrISfX19ioqKSE5OZt26dTRt2pQXXnihjksqAG7fvs2OHTvw9fUlODiYUaNGodFoWLNmDQDLly9n7969bN68WbkGivrhfvex6OhoMjIyWLVqFW5ubnz88cd/uj3plhP/iCtXruDh4aH8rFKp0Nev+ci9q1evsn79eq5evUqjRo1o0aJFbRdTJ+Tm5mJgYIC5ublyc42KiiI5ORlzc3O2bNlCSkqKckJXVlbSqFGjOi61eBjy8/NJTU0lPj4eT09PfH19a/Q6JScnc+vWLQICAkhPT2fevHlcuXKF6dOnExQUVMelF1p/1BGTkJDA6dOnOXfuHMeOHSM0NJRhw4YRFBQkU1//puzsbCIjIwkLC1MaRNp7jEajIS8vDysrK27fvk3fvn0JCwujZcuWdOvWrQ5L/e92/vx5kpKS6NatG+bm5uTm5hIZGUlBQQHBwcH06tWLw4cPA5CRkUFGRgaPPfYYINP3dJm2ro4fP07fvn1xcXGpcR87f/48RUVFtGvXDoD33nsPCwsL3n77bQICAh7oMyRYEQ9Fbm4uW7duJSEhga5du5KamkqjRo2wsrICID4+np9++onz588TGhrKwIEDadiwIZcuXcLMzIw5c+bU8R7UnrKyMiIiIqisrCQwMJC3336bJk2a8OGHHyo32/z8fAoKCrC0tKSgoAC1Wo2BgQFqtVp5j/Q01V+JiYl8+OGHmJiYMGDAAPz9/XFxcVF+v337dtasWYOpqSnu7u6cP3+eESNG0KxZM5KSkggODpa6r0OffPIJoaGhdOjQAfi9IXXhwgXUajUtW7akpKSEDRs2sHv3blavXs1///tfvv76a1atWsXnn39el8Wvt5KTk5kzZw7GxsYMHjyYW7duUX1yyPbt29m7dy9JSUm0atVKOWc8PT0pLi7mqaeeqsPS//sUFRVx6tQpnJ2dcXV1ZdmyZfzyyy88++yzTJ8+HTs7O/z8/Lh06RIAHTp04NNPP+Xpp5+mrKwMfX19rK2t8fPzo1OnTnW8N+JO169fZ/LkyTg6OvLCCy/Qo0ePGvex8PBwdu7cibW1NZaWlly7do2nnnqKrl27cvHiRVxdXYEHW7Msdzvxl5SWlnLu3Dkl1fTmzZs5efIk48ePp1u3bgwbNoy8vDwA0tPT2bhxI56enrzzzjtUVFTwn//8B2tra9q2bYuZmRlQNQf/UZacnMyrr77Kk08+yYoVK0hOTsbU1JSJEyeSlJTE1q1blfc2aNAAY2NjAGxtbVGpVJSUlKCnp4dGo6GyslIaq/VIVlYWy5Yt4/Tp00BVooSSkhKWLVtGz549uXnzJuvXrweqpkbExcWxZMkSwsPDady4MYsWLSI1NRUPDw+8vb25evUqADKL95+nVquprKxU1p8APPfcc0ovIcDhw4fp06cPs2bNYvny5Xz22WeYmJjQunVrDAwM8PT0xNzcnG7dupGSkkJeXp6MqjyAgoICZs2apfx87tw5GjVqxKxZs+jSpUuNcyE9PZ3k5GRefvllfvrpJ/Lz8/n8888pLy8nODhYuc+If5ZarVauS/n5+axevZqoqCgMDQ0JDQ0lJCSE06dPs379eszMzHBzc+PWrVtkZGTg6emJk5MT//d//8eWLVvYtGkT/v7+SkcoyDWvLpWVlTF58mSSk5MBSE1NxcfHh5kzZ9K6dWtiYmLYsGEDJSUlpKSkUFxczPz58/nqq68wMDBg7dq1JCQk4OPjg4mJCcXFxcCDrVmW1o54YBqNRgkoEhMTuXHjhvK77Oxs0tPTOXz4ML/88gvLly9Xeg9jYmJISEjAzMyMVatWsXPnTqUh7u3tTXFxMdnZ2Y/cYmG1Wl3jwn3s2DEaNWrE9u3bCQ8PZ9SoURgbGxMYGMgzzzzD4sWLycnJAeDEiRO0b98eqDpG+fn5SkNXO6Uun3UdPgAAIABJREFUIyODc+fO1c3OifvSNnC1dW9jY8OgQYMICQmhrKyM7du3Ex8fT+/evTl06BBnzpwhKiqKnJwcYmJi+O2335g8eTJDhgwhMTGRt99+G0dHRxwcHNDX1ycxMRGQG/c/oXrGNagaNdHX10dPT4+CggKgqhE9cuRI5d/Lli1j7ty5fPfdd0ydOpXw8HCuXbuGn58fdnZ2XL58GQB7e3saNmzI2bNnlc8Sv9N2xGgDQ3Nzc9q2bUt5eTkAhw4dIi4ujiFDhnDt2jWWLVvGunXrANi6dSuHDx9m8+bNjBgxguTkZNq0aYOhoSFt27YlNjZWqT/xcGjbA3dmKdQ2Ph0cHPDw8CAzM5OKigqcnZ1xdHRk9OjR/Pzzz/zwww/Y29tjbm5OdHQ0AC1btuTKlSvKZ3Tp0oWEhASMjIwAScZTmyorK6msrFR+NjIy4oMPPsDZ2ZmysjK2bdvGwYMH6devH2fOnCElJYUTJ06gp6dHXFwc4eHhvP766zzxxBPo6enx9ttv4+3tja+vL7m5uaSnpz9wWSRYEX9KexFSqVRKQOHr60ubNm1ITU0lMzOTn3/+mWvXrmFpaUnnzp1p2rQp5eXllJeXk5qaSk5ODkePHqVnz56sW7eOFStWAODs7IyRkZFyoaree1nf3Nnw0NPTUy7cOTk5HDx4UFnHk5GRQU5OjjKlq3fv3nh6erJs2TLUajXFxcVKr4OPjw/du3dnwYIF7Nu3j9LSUvbv38/8+fOJiYmp3Z0U91Q9KIXfG7gqlYqCggL09fWJjo5m0aJFZGRk4OjoiLu7OxMmTKBPnz4EBgair69PcnIyxsbGWFhYMGbMGLZs2cKCBQsYNGgQeXl5eHh4oFKplPNFRtcenurXueoNoqtXrzJz5kyeffZZxo4dq6wZi4uLIy0tDSMjI27fvq10wLi5ueHn58eBAwdwdXXFycmJ48ePA2BpaYm9vT379u2r/R2sB7QdMdW/1yqVit27d5OamkpRURGVlZW8/PLLuLu706tXLyVw9/HxISoqiv79+/Ppp5+yadMmnn/+eTQaDW3btiUjI4Nr167V0Z49erZt20Z4eDgVFRXKOVNcXMzevXvZs2ePMrPCzc2N1NRUbt68iZubG5WVlZiZmTFlyhQiIiLYsmULvr6+nD9/HoDQ0FAlmI+JiWHXrl34+vri5uZWZ/v6b3HnfUxfX19po2RmZgLw66+/8s4775Cfn4+/vz/BwcFMmzaNNm3aEBoays2bN7lx4wY+Pj7k5+czd+5cfvjhB2bOnEmnTp3IysrCxcWFsrIyLly48MAzauROJ2rQ9ghrVZ9LGB0dzZIlS5TpSmvWrGHdunVYWFhw6NAhrK2tadOmDZaWljRu3JiysjKuX7+Os7MzLVq0YOjQofTo0QNzc3NOnjxJTEwMzs7OWFlZKRF2fWt8aUdP4O4en6NHj7J582ZGjRrFjz/+SLt27fjpp58ICwvjo48+4v3332fmzJnK8PaECRPIy8vjo48+UoI4rfHjx/Pcc8+xc+dOBg4cyNatWwkMDGTAgAG1t7PiLtWf3VC9/iMjI5kxYwaPP/44CxcupLKykuLiYq5du0ZxcTHPP/88Xbt2JTIyEgAnJydMTEyIi4vDx8cHV1dX9u7dS3l5OadPn2bu3Lls27YNc3NzOnbsSOfOnaVX/m+48zoHv5+/Fy9e5KuvvlLm0a9cuRJra2vmz5/PN998g76+PjY2Nvj6+nL06FEqKyvx9fUlNjZW2Za3t7cyVcLNzY39+/cDYGpqyvDhw5Vnh/1be4nvbBRppaamsmLFCl566SVlZP7KlSt8/vnnODo68v777+Pt7Y2FhQUAnTt3JiUlhRs3bhAcHIy5uTl6eno4OjqSl5fHmjVrOH78OEZGRrRu3Zr8/Pxa3c9HhXbEq7pevXopWdU0Gg1Llizh6aef5sCBAxw/fpwvvvgCAH9/f/Ly8khOTsbOzg5nZ2eOHz9OSEgIzz//PAcPHuTkyZOkpaUB0Lp1ay5cuED//v1ZsGABBgYGvPzyy7W7w/8y9xoVAzh16hTjxo2jX79+yvno4uJCVFQUpqamypowbSeAn58fAJcuXcLJyYnAwEC+/fZbrl69yqFDh3jjjTfYu3cvAM8++yzBwcEPPKPm0Zp3I/5ndy5sqh4spKenY29vT0VFBZMmTaK0tJTg4GCcnZ2BqtGViIgIkpKSaNGiBZ6enmzatIlJkyZhb2+PnZ0dZ86cYdiwYcTGxjJ37lycnJxISEjA0NCQiRMn4u/vz7vvvlujYa7LtGtFtMdMe7wqKio4d+4cTZo0UY7PsmXLyM3NZc6cOcpJHBISQmlpKXl5eVy+fFkJABcuXEhAQABGRkY888wzNGzYkPnz5yufa25uzqBBg+jWrRvW1ta1vNcCfm9gVc9qp63/48ePc/78edq2bUvLli3Ztm0b7u7uvPrqq0rmNn9/fw4ePMj169eVRb/adSpOTk40btyYK1euYGxszJQpU/j2228ZMWIEJiYmBAUFKQ8B7du3by3vef1XfdQE7t0pkpyczDvvvIO+vj7u7u5KytvMzEzKy8uJj4+nYcOGWFlZ4eLiQps2bThw4ABDhw7F19eXr7/+mq5du3Ly5EnS09P5z3/+A1Q9PywkJAQAAwMDWrZsWUt7rRvulcJU++/s7Gzi4uIICgqioqKCjz76iBYtWvDss8/i6+sLwJAhQ/jiiy9Qq9XY29ujp6fHlStX6NSpE/b29tjY2BAZGUn//v158803WbduHZ988gmlpaW4uroq6fAlqcGDu/NRA9WzeZaUlGBiYqKkng0JCWHgwIEMGDCAsWPHcvv2bZYvX86ePXvo27cvvr6+6Ovrc+3aNUJCQvD09GT//v0UFxfj7+/P+++/z5QpU2jUqBEZGRk0btyYtWvX0qxZMywtLev4SDxatPV653OHVCoV+fn5/Pbbb8TExNC7d2+8vLxYtWoVzzzzDK1atVI6CEJCQigvL+fSpUsEBwdjY2NDYmIimZmZ2Nvb4+bmRlxcHL179+bjjz9mx44dTJ8+HQsLC9q3b0+vXr0A6N+///9UdglW/oWq3zzu7Nm7dOkSq1evJi4uDnNzc+bOnUtiYiL29vYMHz4cHx8f5b1ubm4cPXqUK1eu0KJFC7p06cLevXuZNGkStra22Nvbc/ToUYYNG8aECRMIDQ3l0qVLvPLKK0oWCKDeBCrAXemXL1++zNdff82lS5ews7PDy8uLli1b0q9fP0JDQ/nxxx/x8/OjvLwcQ0PDGg2VsLAwNm3axI4dO5SUxS1atGDcuHFs3rwZW1vbGp+l0WgkUKklOTk5FBQU4Orqqty079XAjY6OZvr06Tg5OdGyZUtsbGxITU0lKSkJIyMjIiMjadiwIU5OTnh4eGBmZkZycjJqtRofHx8qKiqUNN+WlpZcvnyZlJQUJdABlOlF1UkmuAdzr5TClZWVHD16lN27d5OTk8PQoUPp2bMn+/fvp0mTJsydO7fGNkaPHs3u3buJiooiPj6eqKgofvzxR7p168bGjRsBGDFiBAYGBrzyyivY2NjQq1cvPD09AWjevDnNmzevsc1HOW1xXl4elpaWyjXtXg/EPH/+PO+//z4ajYZmzZrh5uaGsbExERERTJw4EWNjYywtLSkpKcHW1hYLCwuOHj1KaGgo7u7uZGVlkZGRgYuLC+7u7hw4cID+/fszbNgwQkNDKSgowMvLq46OQP1XPTgpLS2lvLycuXPnEhkZScuWLZk+fTo2NjYYGhoqsyIcHBx49913SUlJoUOHDnh4eBATE0Pr1q1xcnIiJSWFkpISnJycuHnzJjExMcrUoW+//RZ7e3scHBzQaDRKcC/+nqysLJKSkggJCVHOxzvbMACxsbG89dZb+Pr6EhgYiLW1Naamppw5c4amTZuSkZGBs7Mz9vb2eHl54enpyalTpwgODsbDw4O4uDguX76Mvb093t7enDp1iqysLBwdHXnppZcYO3bs394XCVYecdpeEO0ip44dOyo3j/Lyck6dOoWNjY3yjJM9e/ZgaWnJ5s2blfcVFhai0Wh49913CQkJ4ebNmwQGBjJy5EgsLCy4fv06AO3atWP27NloNBosLCxo3bo1Hh4eykkSEBDwwDm168q9Hl6pbVikp6dz4MABkpOT6dGjByEhIVhYWDB06FBCQkK4du0an3zyCXFxcfTr149OnTopa3MMDQ0BuHHjBk5OThQUFHDu3Dl2797NiBEj0NfXVz5n9OjRjBs37q6yPaqNG11QUlLCmTNnAOjUqRNLly4lOjqaDRs2oKenp6w5OnbsGFZWVowZM4YmTZoQHR1Nhw4dmDZtWo3tjR49miNHjpCYmMiRI0fQ09Nj3rx5+Pr6cvnyZbKzs2ncuDGmpqacO3cODw8P+vTpw8CBA7GwsECj0ShBinZE514jeuJ3d456Vu/Nj4+PZ+fOnfTq1QuVSsXevXsZPHgwenp6hIeHc/PmTbp06cL333/P+PHj8fT0JDs7m1GjRtGmTRvatGmjfM6wYcNITU2lWbNmwO/PlHr22Wd59tln71m2ez3B+VGRlpaGWq3Gzs6OJUuWUFBQwIwZM5RGUXR0NEeOHMHR0ZHBgwcDsGHDBl566SX69etXY1uDBg1ixYoVODg4cOzYMTp16sRbb71F9+7d2bt3rxKsnD59mhs3buDi4sL48eMpKipSttG4cePa2/l6THuvq/5sGpVKhVqtJiYmhtjYWDZu3IiFhQV9+vShVatWvPTSS8ydO5dvv/2Wl19+GWdnZ5KSkigqKuLIkSOo1WrWrFmjTN06ffo0I0eOxNXVlQMHDpCZmYmXlxdjxoxRgnmAwMBA5d+P0rlR2zIyMjh9+jTGxsaEhYUpD9T88ccf0dfX58qVKxw6dIijR49ia2vLxIkTcXFx4aeffmLw4MEMGjSoxkNrFyxYQFxcHKWlpSxduhRDQ0M+/vhjevbsyY4dOxg7dixOTk6o1WqysrIAePLJJxk2bJhy/7pXcPRXSLDyiMnJyWH37t2cO3eO5ORk+vbty6hRoygvL+fEiRN07NiR9PR0li1bxtmzZ3F0dMTZ2RlnZ2dGjRpFaWkpJ0+eZNu2bVhYWGBra0tQUBDvvPMOKpWK1NRUzp8/z8KFCxk+fDiNGjXi0qVL5Obm0rx5cyZNmsTt27extrZWnkGgi7QX5pSUFGXaFtTsUdK+R6VSER8fz7x58/Dz8yMgIIAvv/ySMWPG0KFDB27dusVzzz1HcXExgYGB7N+/n9TUVHx9fbG2tubMmTO0bt0aqFqs+/HHH5OYmIibmxu9evVS8sdrL9IP6+QWfy4yMpL58+eTm5uLm5sb/v7+NGnShCeeeILt27cDVWmGly5dipGREcOGDeP69etMnz6dJUuW0Lx5c8LDw8nKysLGxoaioiJGjBhBx44d6dixIwCPPfYYixcv5vbt2zg7OxMZGUl+fj729vZ89tln2NjYoNFoajzo84+mZoo/Vv280U5JiIiIYPbs2bRp0wYXFxf09PTYvn07tra2JCUlsW/fPtLT0wkODlam5RUUFJCfn8+iRYuUdULnzp3jyJEjyiiyq6srJiYmHDhwACMjoxojXfeaLvioNcDOnz/PmjVrSEpKQk9Pj7Zt2zJhwgQcHR05ceIEGo2GkpISXnvtNTQaDZ07d+bIkSPk5eUxatQojIyMCA8PJyIiAnd3d6ysrOjZsyfvv/++8hl79+5ly5YtlJSU0LlzZ2bMmMHMmTNp164d9vb2yjQxGUF5MHeOxla/112/fl2Z7XD8+HEmT57MmDFjmDdvHrt372b+/Pn8+OOPuLi40K1bN86ePasEHhcuXODWrVvk5+dTWlrK0aNHKSwspKCgACsrK5KTkwkLCyMgIED5jK5du9b+AXiERUREMG/ePNRqNS1atMDR0ZFmzZrRsmVLtm/fTlZWFnZ2dnz33XfY2NjwwQcfsHPnTr744gumTZtGp06dWL58OadOncLOzo7S0lIef/xxOnfurLRP2rVrpyQACg4O5rvvviM/P5+mTZsyY8YMzM3Ngap1ef8ECVYeIWVlZSxZsoSbN2/Sv39/fH19ycrKoqioiJ49e7Jp0yYATExMGDx4MO+99x5paWl88cUXrF69mlGjRvHcc89hbm5Ofn4+cXFxrFmzhh9//BFnZ2dKS0vJyMggKiqKxx9/HENDQzp16kTbtm2VL+qECRPq8hA8MJVKxa+//kp0dDQTJkxQLto3btxg48aNnD17lnbt2jFx4kQ0Gg2rVq1i5MiRWFpaEhERQWxsLJGRkbRt25aVK1fSq1cvRo4cyc2bNzl8+HCNQHDr1q1KsBIQEICjo6OSFUzUruprF27dusXKlSt56qmnlEQFZWVllJWVYW5uTmFhIYmJiXh6ejJ58mQyMzPZu3cvv/76K9euXePYsWOEhYWxdu1a1Go1mZmZLFmyhFWrVjFv3jyWL1/OxYsXuXLlCu3atcPLywtXV9caN2ptL9aj1pj9p1RWVt413xpQ0mhevnyZkpISDh06xE8//USzZs3Izs7G3t5eWQw8e/ZspaE2duxYZcpJZWUlFhYWVFRUUFhYiKGhIc2bN8fFxYXffvuNdu3aMXXq1Bo990ZGRn+4HuNRo+28KSoqYvXq1TRr1owpU6bg7OxMVFQUBgYGuLq6cujQIeLj42nevDmzZs1CT0+PS5cusXnzZrKysmjfvj1vvfUW58+fp6KigjNnznD48GFu3rypTLlLTk4mIiJCeR5Dnz598Pf3B8DKyoqgoKA6Phq6T7soXruA+c7vZWFhIbNmzeLChQuYmJjQuXNnRowYgY+PDw0aNMDV1RUPDw86depEYmIily9fVqbdnT17lsTERLy9vVGpVJw6dYrBgwdTWlrK3LlzlXtny5YtlefbVO+xF39dXl4e5ubmSkfqrVu3WLt2LePGjeOxxx4DqtKpm5mZYWpqiqWlJadOnaJfv3689tprXLp0iXXr1nHw4EFMTU359ddfGTJkCEFBQRgYGBAfH8+uXbv48ccf6dixI7NmzeL69etkZmbSsWNHmjRpAsCWLVuUMmnbf/8kCVbqoTsXSWlvIps3byYyMpIffvhBea+TkxNQFRV//vnnykhCcXExo0eP5vbt23Tt2pXMzEwuX76Ml5dXjcwbly9fJisri/LychYuXIihoSHt2rXj8ccfB1BuILqusLCQ8ePHs2TJEmXRXrdu3QgODqasrAxTU1NefPFFbGxs8Pb25o033uDVV1/FxcWF//u//+P69etMmzaNjh074uXlxYYNG5RUinl5ecpUuG3btmFkZMSePXsYMGAAr7zySo10zJaWlrJosJZVnx5UPSg4c+YM6enpdOnSBahKkmBkZKSsofL392f//v14enpy48YNFi9eTMuWLZk1axZr167l119/JSwsDBMTE8rLy8nPz8fS0pLu3btTUlKCkZERvXv3plOnTsriRO22H+U1Cw/L5cuXadSoEQ0bNlSOl7ZTQZvaW9sA+uWXX9i1axeDBg1CT0+PzZs3ExsbS7t27XB0dMTFxUWZjqpNZjB58mSgqi6OHDmCv78/Z8+e5ZNPPsHDw4MOHTrQvXt3VCoVw4cPr1G26vX3KNbjpUuXOHToEGfPnsXLy4tevXrh6+uLoaEhy5Yto6ioSJmHrtFolGk8jRs3xsrKiujoaJo3b05GRgazZ8/G3d2dJ554grNnzxITE0Pz5s2VINHBwYGUlBQCAgLIyclh3759eHl58eqrrxIcHAxUHePq6xzFvWVkZPDBBx/w5Zdf1njUQF5eHocPH8bJyQl/f38MDQ3ZunUrBgYGbNq0iYKCAl599VXUajVTpkyhQ4cOSkpoBwcH7O3tiYmJoXv37ri6uqKvr6906Gkbr/r6+jzzzDOMGDGizvb/UaUdFbt16xbff/89w4cPV9av7ty5k5KSEqUTrKKiQgkeLCwsaN68OcePH6dfv36kpKSwePFiBgwYwNChQ9mwYYOS9bCwsJDS0lKuXr3KlStXGDFiBHp6enh5efHYY4/Rtm3bOr3WSbBSD91rqlJpaSlxcXFKpiDtjRmqvrwODg5YWFgQHR2Ns7Mzy5cvp2XLlkyZMgWoipJ/++03vLy82LhxI3v27CEzMxN/f38CAwMxMzPjm2++qZsdfggaNGjAjRs3SElJUaYPQFWmmbFjx/LUU0/h6enJhQsXePvtt7G1tWXQoEGcOXOGgQMH4uPjg4ODQ43Ft9euXaNRo0aMGzeOhQsXEhYWRlhYGPPmzVMWx2tHVETtuFfmIe15kJubS2JiIhkZGfTt25fffvuNgIAArKysAJQbe1lZGUZGRvTq1Ys9e/YwduxYIiMjuXr1KosXLwaq1ilo5+ju2LGD77//Hg8PD9q3b0+PHj0wMjLi+eefr1Eu4JFu4P5dZWVl7NixgwMHDnD9+nWMjIyws7Nj1qxZSlCyYcMG9u3bR2ZmpvIwVR8fH5YuXcqUKVPo2bMnUPWAwKNHj9KuXTsCAwM5deqUcm0cOXIk3333HZMmTQJQpnb5+PjQpUsXevTocc/6qT6N5lGrv4qKCgwMDIiLi+ONN94AoHv37jzzzDNERUXxxhtvMGzYMEaPHk1ycjKOjo4ASuIQ7X3I1tYWJycnpQGkDfa107tWrVql/O2nn37KkSNHaNCgAW3atCEgIIAGDRqwcOHCu8r3qB3vhyU7O5vMzEyaNWuGgYEB9vb2fPjhh8rvV69erTyfJjExERMTE7p27cqoUaO4cOECZmZmGBkZYWNjw6hRo/j000+ZMmUKLVu25PDhw0DViEiTJk2Unx0cHGjVqhWNGjVCT0+P1157Tfk8qaeHp/o9Q3vdMTIy4sSJE0RHR2NqasrAgQMpLy+nrKwMY2PjGiNpUJWcxc/Pj/DwcKBq2nNFRYWyduzs2bOYmJhQUFDAL7/8ooxGa9c3A3d11NQVCVZ01J2L36q7desWW7du5cSJE6jVamUqQ0pKCh4eHkpjS0v75Q0MDFQi7OLiYtLT06msrGTLli2Ym5uzbds2Ro0ahYODA8OHD6djx47KEO6joHfv3pw5cwZfX18lmAsLC+PChQtAVY7wzMxMSktLAWjbti1ff/01GRkZDBs2jHfeeYc5c+ZgbW1NREQEGo2GuXPnEhwczMKFC2nYsGFd7t6/1p3Z7e68YUZERPDZZ59hbm6upI3u2LEjzZo1Y8OGDUpDS3tz0J47ffr0UYITPz8/KisrmT9/PvHx8bRr146LFy9SWFjIwIED//CCfq9sVOJ31dd3aDQaVqxYQVhYGHPmzMHc3JzevXvz008/MXz4cDIzM8nNzWXatGnK1LxFixbx7rvv4uvrS0pKirLdTp068fPPPwNV8+MXLFhAUVER5ubmSrrU/fv3o6enR8eOHZWRrzvL9aglNag+levo0aNERESQkpJC7969efzxxzExMcHLy4v+/fsrgV9oaCguLi6sWLGC0NBQvL29lWfKaO8t2mNkYWGBq6srly5dUp5EX1JSwg8//EBSUhJubm6o1WqKiooYMmQIzz//PHZ2dnVzMOqprVu3kpKSwosvvkh6ejr79u3DxMSEBg0aYGhoyI4dO0hPT+ftt98mKyuL77//ns2bN+Pt7c2WLVtYtmwZo0aNwsPDQ5kRANC0aVMKCgqAqscSrFy5kpycHCUBj7GxMcXFxZiamjJkyJC62v1H0r0S+2j/n52dTUREhJJV8sKFCzRq1IgPP/yQli1bUlhYyI0bN4DfO+aqZ+Lz9PSksrKStLQ03N3dMTEx4dVXXyUvLw8/Pz/c3NwoKytj6NChOj0qVv+vvo8AbeO4vLy8RjSt/eJlZ2dTVlamvH/Xrl0UFhYyY8YMnn/+eebOnUtsbCytWrUiOjpaueBo/6aoqIj8/Hz69OlDdHQ0arWacePGYWZmRo8ePYiLi2PevHl89dVXQNXNvWfPno9UoAJVD7E6depUjZ73zp07c/78edRqNa1atSInJ0d5UmtgYCAFBQWcP3+eZs2asWzZMszNzSkuLuaVV17h22+/VeavS6BSu7777js2btxIaWlpjZ6n6OhowsPDlSe8FxYW8uuvv9KzZ09WrlypTHW4cOECYWFhpKWlKQ0vbaBTWlrKsWPHcHJyori4mIiICFq2bMnUqVPR09PjmWee4eWXX2bx4sU0aNCABg0aAFU3iDsfnPYoNHAflurXMC09PT3lOmdsbExAQAD29vbKa9onjxsZGbF161Z2797N8uXLGTp0KDdv3qRnz55YWVnh7+/Pnj17lO2q1WqSkpK4desWbdq0oaKigtu3byu/NzIyom/fvvTu3VvJvlb9IYXacj1KQWZeXh4qlYorV64wceJEfvjhB7y9vRkzZgzm5uakp6dja2uLu7s7J06cAH6vsx49emBqakpCQgLu7u4kJCRQVlZW4/gkJyeTk5ODq6srRUVFREVFMXnyZBwcHNi1axcODg7MmTOHt956CzMzMzw9PSVQ+QvKy8u5du0a2dnZpKamsn79ekaPHs2sWbO4efMmJiYmREREACjTtbWZtwYMGMD169fJz8+nQ4cOHDx4kLi4OCorK9m+fTtPPfUUUDV9/Mknn1Tqv23btjz11FP/2OLpfztte6/6+VRYWMjUqVMZM2aMkpyiadOmfPPNN1hbW9O2bVtMTU1p1aoVubm5REVFKX+rr69Peno658+fx8rKChMTE/bs2UPbtm0ZNWoUAQEBvP7667z//vu88MIL2NjY6PwjJGRkpY5ERUVx5MgRzp07R2ZmJlu3blXS20JVALNixQoOHTqERqMhLCyM7t2706RJE06fPo2joyObNm3i6NGj6Ovro1ar6dy5M1FRUaxfv54JEyYoXz7tUHvr1q0pKCggNTWVpk2b8tFHHz1yAcn9+Pj4kJCQQHZ2Ng0bNsTAwEBZQBYfH0+LFi0wNDQkPj4ePz8/TE01GwpGAAAgAElEQVRN8ff3x8jIiIqKCho1asTEiRPrejf+dbRrfqqPmvTp0wdra2slrfAPP/xAWloaN27coEGDBmzfvp1PP/2Uhg0bcvDgQVauXAlAmzZtCA4OJjY2lk6dOjFkyBDee+89Xn31VQICAjh9+jT79u1THiT31ltvKdPEevbsqfQ2w91TziSL2920AUB5eTkTJ07kvffeU9bRVVRUcPz4cfbv36+cW4GBgUrnwe3btykuLlayCvr6+vLll18ye/ZsmjRposzZ1k5r+Omnn3jzzTfJyMigefPmqFQqbty4gb+/Pzt37rxn+R7lka/s7Gy2bt3KmTNnSElJYcSIETz99NN88803+Pj4KNO9qtNoNLi5ubF//35lhF6tVmNhYYG+vj7Z2dmMGDGC5cuXM3PmTCZPnoytrS0pKSmsXbuW0NBQWrRoQevWrZXzVvtwTPHnLl68SGRkJGFhYTg4OAC/j4YVFxcrmdd+++03EhISaNy4Mf7+/vj5+fH6668DVUH/559/TklJCc2bN0ej0Sj3NyMjI1xdXTl48CADBw7kxRdfZMmSJSQkJNCsWTNlHZe9vb08Nf4hqL627V5ZArXi4+PZt28f8fHxDBs2jI4dO5KcnExubi7h4eE1FrBr2y5Hjx6lc+fONGnShCeffJKPP/6Y4cOH0759e44ePcr+/fsJCwvD39+fsWPHKh0D1TNV1icSrNSiY8eOsWHDBlJSUrhw4QIdO3Zk0qRJBAcHk5WVxeHDhwkPD+eVV17B2dmZiooKNmzYQG5uLlOnTiU+Pp6PPvqIa9euoVar6datG8OHD1cuagBjx45l+vTp3L59m6SkJNLS0nB0dGTq1KmYmpryyy+/KO/9NwUqUJVSz8zMjPT0dOXENTQ0pKKigoiICFq0aIG/v3+N3vAZM2bUVXHF/1e9PoqLi5Xpkf/5z3946aWX8Pb25uTJkxQXF7N27VoAJk+ezP79+3nppZcoKysjPT1dSVGt7fXNzc3lrbfeYt26dWzbto2ZM2fStGlTQkNDlaBEm0FKS9sA+6MpZ6JKWloa8fHxBAUFYWVlhZGREcuXL1dGfTUaDStXruT48eN06NBBSY8ZEhLCxo0bGTlyJEVFRWg0GnJzc2nfvj3t2rXD3Nyc3NxcfHx8SEtLY+vWrQQFBdGhQwdWrlzJkSNHlB77q1evUlJSopTpXg/SfFRHvsrKyvj222+5desWTz31FEFBQZSWlpKbm8svv/yiTJHT0mg0XLlyBXd3d9zc3KisrCQ2NpagoCDKy8sxNjbG0NCQvLw8DAwMmD59Ojt2/L/27jyuqjp94PiHXQiQK6gg+6KAArLJIqgsEuI+5pi7Oa5p0y8zS6VGy9wzzcotRzPNcERtLB1ScA1TRFwQvaDgAqiAsoiigBd+f/DijKTNTCuoz/v14g/uPffe7z0X7jnP+X6f5/mWGTNmkJ+fj5GREf7+/jg6OmJubs6kSZMa6Z0/WcrKypSLIWVlZcybN4+srCzs7e1p3bq1sgzrzp07xMbGEhAQwLBhwzA0NCQvL4/IyEiio6PJyspStrW2tsbCwoLDhw8TFRWFr68viYmJSi81b29v/vWvf9G3b19Gjx5N3759G5RNF7/e7du3KS8vx9raWglYfnwcq5+lKikpYfHixbi4uNCvXz9mz57Nq6++ir+/P5WVlYwfPx4fHx8qKysJDAwkKioKW1tbTp06RWhoKBqNhjfeeIODBw+SmJjIZ599hqenJ71791YKhNR/vz7JJFj5HdWvQ4S6q67a2tr079+f8PBwPvnkE0pKSvDx8SElJYUPP/yQli1bMm/ePJydnVm9ejVJSUlcunSJq1evYmlpSXR0NAYGBtjb2+Pu7k7//v2Bup4Cx44dIzw8nE6dOhEfH8/evXvx8fEhNDT0kfXYz7KePXvy5ZdfYmNjQ3JyMkVFRZiYmODo6AjQIFlQ/HF+qiQtQGpqKocOHeLevXukpKQwceJEYmJiKC4uJicnBy8vLzw9PSkpKeHWrVuYm5vj7e2tBPUxMTFs3LgRMzMzmjdvrpy05ufnY2ZmxrBhw+jTp89PVml7uFjF03py+2s8Lr/j3r17HDx4kNzcXFq2bImVlRW5ubksXbqUxMREsrKyiIuLIyEhocHyg7Zt26JSqejcuTNjx44F6gLG2NhY3n33Xd577z127NjB4sWL0dLSom3btkpgqa2tjZmZGZs2beLkyZN069atQSfsZ+mzq6ioYPPmzaSlpTW4vbCwEDMzM3JzczE3N6eqqoo1a9YQFxeHpaUlU6dOVfpDZWdn4+3tjYGBAYcPH0ZPT0/Z135+fvj5+ZGeno6FhYVSEUr8b+7du0eXLl2U3j71yw5LS0sJDg7m8uXL7Nq1CxsbG8aMGYOxsTFWVlbcvHkTqMsvyc3N5e7du1haWpKWlkZeXh4tWrRAR0cHf39/9uzZQ1RUFEFBQezYsUNZFTBz5swG/3MSqPw26o9TJ0+epLi4mDZt2jBx4kSlyE52djabNm0iNTUVNzc3/vznPxMQEMCmTZuwsLDgrbfeAuDatWscOXKETp06sXz5csrKyiguLiYxMZGFCxcSFRVFZGQkCxcu5Pjx49jZ2TFnzhylZ9vTehFagpXf0cN5JxqNhqCgIOU+Pz8/5s2bR0VFBe3atUOlUmFmZqZUqrp9+zYODg4MHTqUgICABs87evRoPvnkE9RqNdevX6e0tFQJXKAuyVES4B4vMjKSf/zjHxgYGDBx4kSCg4Ob/FrNZ8HDU+N5eXloNBrs7OwoKChg+fLl+Pj40KNHDxISEsjIyCAmJoaOHTty7tw5+vfvj5OTE0eOHKGwsBBzc3Pc3NzIyMjg3LlzvPzyy2zdupXJkydja2uLt7c3u3btolWrVspr1gcq9TknD49Hlnc1dP/+ffbt24ehoSHh4eENgoDS0lIqKyspKSlh+/bttGjRgoiICIYMGYKbmxv3799X9rGlpaWy1KiqqgpdXV20tbVxcHCgurqa27dvY2pqyqeffsqbb77JokWL+OCDD+jUqROVlZVKVamH3bx5Ez8/P6ZMmfJM55EZGBjg7OzM3/72N1QqFc2aNaN9+/Zoa2sTFBREcnIy3t7eaDQa+vXrR+/evdm+fTvHjx8nODgYW1tbdu/eTXl5Ofv27ePOnTuMHTsWd3d35TVqa2vx9PRsxHf55Krvf6Gjo8P69esZMmQI+vr6SuPSBw8e0KxZM+7du0dhYSE2NjY4Ozsry8Y7dOigHP9dXFzQ1dXl2LFjDXIxP/74YwBGjRqlVH8ClJkc8duaPn06bm5uTJs2DS8vL9555x2lupaJiQk7d+5EW1ubbdu2sWHDBlavXo25uTkWFhakpKQozxMYGMju3bupqanhueeeU5Z9tWnThoCAAGpra+nevTva2tpYWFjg5eUF1P0/Pq2BCkiw8qv9eB1i/VXb6upq8vPz2bx5MxkZGYSEhDBp0iTlKm1QUBAVFRVcvHgRLy8vrK2tMTc3p7y8HBMTE9q3b09ubq5yIp2RkUFiYiLh4eF4eXkxf/58Tp48qaxZFf8bBweHBom44o/xuGonDzt48CDx8fEYGhqSlpZGZGQkM2bM4IsvvsDBwUFZ9/7SSy9x+vRpqqqq8PPzIy4ujlu3buHh4cG+ffvIz8/H3d0dFxcX7t69y9WrV/Hw8GDMmDGMGDECjUbD/v376dChw2MbWUlg8ng/rtrl5OSk5J5UVVWxdu1akpOTuXv3LkOGDCE6OpqRI0dy//59Zs6cCdQFgsbGxqSmpuLg4ICpqSmHDx8mJiYGfX19ZWmEh4cHO3bsUGa7jIyMWLRokXIgfvhK8MMzckZGRkpC8bPO0NCQN954g7i4OOVz2717N7q6uoSGhvLtt98yduxYDA0NsbW1Beo+4/p9bG9vz8GDB7l16xaTJ0+mU6dOj8xMyRLIX6dXr15oaWmRnp6OnZ0drVu3xtvbm2bNmpGfn0+LFi0oKChQlrC6urqye/ducnNzcXNzQ6PRoFar6d27N3369GHu3LmkpaUxcuRIwsLCiIyMBOr+FiQx/rfz8Ew7/Lvsd0BAAC4uLkrwoKuri5WVFSYmJqjVas6ePavkEg8YMIDKykoSEhLo06cPixYt4s6dOxgbG6NSqSgoKMDU1BS1Ws3ChQvRaDS0a9eO8ePHK5UrIyIiGozraf9/lGDlZ6isrCQ1NZVWrVrRtm1boOHSgvo/tqqqKkaPHo2VlRVeXl7069ePl19+mXbt2tG9e3dlDaODgwPHjx/Hy8sLFxcXzp8/T2FhISYmJvTp04eKigrWrl3L5cuXMTY2Jjg4WKk+ZW5u3iDZV4imJC0tjf3796Orq8tLL71E8+bNlS/48vJySktLsbGxQUtLi+LiYnbu3EnHjh158cUXmTt3rlK1rlWrVqSnpyvPGxISQnx8PLm5uXTs2JHPPvuMCxcuEBAQoOSm1D9u7ty5yoltcXExixcv5uzZszg4ODBhwgQ5gP8MD3/PGRoaYmxszMaNGxk1ahS5ubnk5OQwffr0Blfavby8SExMJC0tDV9fX3R0dPDx8SExMZHY2Fg8PT3ZsGEDhYWFnDlzhrt37zJr1iyioqJwdnZWgiH46fw6CS5/WmBgIIGBgVRXV1NZWYmxsTHdu3enffv2ZGZmMmnSJMLCwjh37hz5+fmoVCrlCnyPHj3o2bNnI7+Dp1u3bt3YvXs3YWFhnD59GgMDA/Ly8njzzTdZsGABNjY2XLt2jczMTPz9/WndujXnzp3j1KlT+Pn5KZUpHzx4QFBQEDt37nzqT1gbwzfffMONGzcYMmQIxsbGyndOfn4+JSUlysXirl27smjRItLS0sjJyaGqqgpvb2/OnTuHnZ0dhYWFtGzZUinWU1pairm5OXZ2dnTt2pW5c+eip6dHeno6EydOxNjYGBcXF1asWPHIbNiz+DlLsPJf1NTUUFNTg66urtKl+uGp8NTUVDZt2sSFCxfw8vJi2LBheHh44OLiwtWrV/nTn/6EiYkJvXr1IjU1FX9/f6WKTefOnTl58iRQV6lq//79XL58GWdnZ/T09Bg+fDhRUVEYGBgojxGiKVu/fj0bNmzA2dkZHx8fcnJy+Oijjxg7diynTp1i48aN3L59G3d3dzw9PRk1ahTHjx/n4sWLLFmyBIBx48YRGxvLhQsX6NKlCx999JFyIcDAwIDr16+TmZlJz549MTU1pbi4GG1tbd5++20lmK+trW1wBd7MzIwpU6Y0WPol/u1xeSf1rl+/rvQVOnToENOmTaO4uJgffviByMhICgoKKCkpYcuWLVy6dAkTExM8PT1xdXUlKSmJGzduKM/VpUsX5s+fT2xsLGPHjiU0NJSvv/6arl27Ehoaqnxm9R3Rxa9Tv8xOT0+PqqoqTE1NsbOzY/Xq1Rw6dIgDBw7Qvn17Jk+erBSggGcrv6exdOjQgXfffZfRo0djaGioBOrm5uY0a9YMLS0tPDw82LNnDykpKcrVdFtbW2pra5k1a1aDJczP4gns7+XhKl66urpKU1lDQ0Pi4uL4+uuvle7urVu35tVXXyUkJASNRkPnzp1ZuHAhzz33HEuXLmXZsmWsWLGCtm3bsnnzZl577TV0dXW5fPmyUnVyyZIlJCUlUVRUxIgRI5SL4U/zsq6fS4KVh9TW1pKfn//Il3b9F7exsTGenp5kZGTg4+ODsbEx27Zto0OHDixbtoz58+ezZs0aYmNj8fX15e7du1RUVGBiYkJAQABbtmyhrKxMCTxCQkJYuXIlxcXFtG3bFn9/f+zt7RuM6eFKX0I0dba2tgQEBLBo0SIADh06xKZNm9DR0cHExIQFCxZgb29PfHw8S5YsoU+fPri5uXH58mWgbord2dmZ4uJi0tPTGThwIOHh4bzzzjvcv38fIyMjnJycKCgoAGD58uXKAbs+UIFHD9za2toSqPwHP3VympiYyMcff4yfnx8ajYb09HRycnLw9fVVZoaHDx+ORqPhxo0b5OXlceLECWpqapRu5bt37+bKlSs0b96cyMhIpTKVgYEBHTt2fGxg8vDJgvhl7t+/T3JyMqmpqVy6dIkrV67Qo0cPHB0d0dLSolu3bnTr1q2xh/nMMjQ0RF9fn2vXrhEdHc2FCxfo1KkTUJdXolarmTp1Kq1ataKoqIiuXbs2yNOSXMvfxpkzZ1ixYgVDhgyhW7duyrKumpoazp07R1FRERqNhoKCAqytrbG3t+ezzz7D1NSUbdu2MWfOHAYNGoSlpSUWFhaoVCql91ZwcDAnTpwgNzeXiRMnEhcXx9ixYyksLCQwMFDJY9bV1SU6Oroxd0OTJ8EK/84z+ec//8mDBw/o168fenp61NTUcOzYMZKSkjAzM2Py5MkcOHCAo0eP4uDgQFZWFoWFhUyYMAGA4cOHs3nzZg4ePEjnzp2Jj4+nsLBQWYv66aefcvnyZSUgcXNz47XXXkNfXx8jIyPGjRvXmLtBiF/Nz8+PlStXkpGRwalTp9i6davS6E+lUrF27VoSEhKwtLTEwMCAo0eP0rNnT8zMzPj222/p3bs35eXl6OjoKFPpH374IQcOHEBLS4vQ0FDmzp3L3bt3gboDtpzY/u9WrlyJjY3NI7kd2dnZxMfHc/nyZcLDw4mOjsbU1JRDhw7Rs2dPJkyYQEFBARqNhqNHjypdzTMyMgAarJ/+/vvviY+Pp6qqilGjRrF06VIqKiqIioqidevWSuJvvR/3qwG5SvxbaNasGTo6Oujo6DB8+HACAgLkBLeJ6dWrF8nJyQQGBjJ+/HhlidGgQYPQ0dFBpVIpuSfi93Hjxg2+//578vLyCA0NRVdXl9u3bzNx4kR0dHQIDAzk5MmTnD9/Hl9fXwICAvj4449JSkrC29sbU1NTdu3axZgxY/D39+fEiRPExMRQVVXF4cOHcXR0xN7eHm1tbV5//XWlp019QCP+N89ssPLwCU79QbJ///6Ul5dTXl5OixYtWLx4MefPnycsLAxfX1+0tLTw8fHhxIkTFBYW0qJFC0pKSpRKQpaWlhQWFuLi4oKNjQ21tbVkZ2fj7u6OSqXCy8sLQ0ND5bVra2sZPnx4o+0DIX5rKpWKO3fuMH36dHx9fRk1ahT79+/nvffeo3379hQUFLBs2TKcnJyYPHmyEqxMmTKFvXv3snr1atq0aYOjoyOXLl1SKkXZ2dmRkJDA+vXr0dLSatDHQU5s/3fOzs4cOHCgQbBSXFzMihUrcHR0ZMCAASQlJXH8+HEWL17MzZs3iYyMpKamBpVKRceOHTl48CAPHjygbdu2nD59muLiYq5cucKWLVvIzs5Go9Hw5ptvoq+vj76+PrNmzWowhh8HJ9Kv5vcTFhZGWFhYYw9D/IQuXbqwbt06NBpNg0DSzs6uEUf1bElLS2PGjBns27ePVatW8Ze//IXt27fTrl07Zs+eDdRVqFSr1VRXV3Po0CGysrLYtWsXWlpaTJ8+nSNHjjBmzBhCQ0MZP348Z8+epaqqCkdHR0aOHNlgdY6Pj08jvtsn1zMRrDyuc2j9wfHatWucOHECOzs7rKysmDNnDl26dCEiIoJLly4xatQo/Pz8lGRcZ2dndHV1yczMZOjQoZiZmbF582ZeeeUVdHV1uXbtGg4ODgB4enoqV34B/va3vzUYlxygxdMoIiICBwcHXnzxRaCustCOHTtYu3Ytvr6+WFlZceXKFUpLSykoKKCgoID+/fsTHBxMZWUldnZ2bNu2Tcnn0tfXp7i4GF1dXd56660GOWPi5+nUqRMrV65UcoCgblbl9OnTSs5Qx44diYmJobKyEhMTE3JycggNDUVfX5+LFy+Sm5tLXl4eNjY2VFRUkJOTg7W1NREREbz22msNluPV02g0DRppynefEHV9hebPn9/Yw3gm1V80vnjxIi4uLsyaNYuFCxeyf/9+7t+/rzSwBejbty+ffPKJMqOfmpqKlpYWqampVFRUkJycDNSVjJ49ezbe3t64uro2yvt6Wj3VwcrjOofWu337Nu+9954y82FpaUnz5s1xdHSkoKAACwsL/Pz8WL16NR4eHly9ehVbW1veeustnJ2dyc3Npaqqiv/7v/8jLi6OoUOHUlRURN++fZWTqfomP0I8S6KiotiwYYMSrJiZmVFWVsaYMWPIzMykR48eODs706tXL9q1a0fLli2Bump6GzZs4OzZsxgYGDBv3jzlOf39/Rs0+BO/jEqloqKigitXrtChQwcAioqKCAoKoqioCAsLC1q1aoWtrS1nzpxh4MCBrFq1ivLyckxNTSkqKsLJyYmLFy/SvXt3FixYoOTVPdwY8MflPaVqlxCiKalf3eLk5ISBgQF2dnaEhoaycuVKXnjhBc6cOaNs27JlS86cOUNGRgZdu3bl+eef5/nnn8fc3JypU6cycuRIoO6cs/64J35bT0Wwkp2dzYEDB5TOoEFBQQQGBip/jMePHyc5ORljY2Neeukl9PT02LdvH9ra2uzYsaPBc7Vu3VopITxu3DjGjRuHRqMhJSWFdevWcfbsWZycnNi2bRuZmZl07NgRGxsbioqKcHNza6Q9IETT4e7ujlqtZs+ePWRkZHD06FHatWvHoEGDuHPnDmPGjHlsQ7/nnnuOqKgopk6dKo3Lfkfh4eGcOHECd3d3tLW1UalUVFZWcujQIV544QVycnKws7NTep4YGBiwfft2TExMGDRoECtXrlQCzIcLgDy8tFaCEyFEU1dSUoJarUatVvP5559TWlqKtbU1R44cQaPRsG7dOiwsLMjKysLa2prCwkL09fV5++23qa2tfaRXl1TR+/1o1davUXoC3bt3j+joaNq0aYOnpyeBgYHk5+ezYsUKpk2bxsCBA1m6dCm5ubmEhISQl5dHSUkJM2fO5I033qBTp06MGDGC+/fvo6Ojg56eHsnJyezatYt+/foRGBjI2bNnuXHjBklJSVRXV7N48WJu3bpFQUEBbm5uclAW4jEGDx6MkZERQUFBdO7c+bGNS2tqagD5gv+jpaWlsWHDBj766CPltjVr1nD06FFatmzJxYsX6dy5M1OnTlXuz83NJTs7m4SEBGpra5k/f758bkKIJ1737t2Jjo5WKlMCDBgwgJCQELS1tVGr1fTr14+AgAAsLCwaebTPrid6ZsXQ0BBdXV0WLFig5IkASh5JfXnM4cOHc+/ePXbs2EFZWRllZWVYWlqiVquBuqop9ZycnKiurub8+fN4e3uzfv16NBoNoaGhhIWFoaWlhYWFhfzRCvEffPXVV/81L0FOdhtH/czX7t27OXHiBCkpKUrVtXPnzvHXv/5VKd9eP1uyatUqNBoNISEhREZGymcnhHjiFRQUYGtry4ABA3B2dqa6uho9PT1mzZqFpaWltI5oQp7omRWAhQsXYmVlxciRI5X62Ddu3GDJkiVkZmair6+Prq4urq6udO3aleDgYIyMjEhPT+f999/n+eefp2vXriQmJqKjo8P48eOJj4/HxsZGqYEthPj5/lOjQdG4Bg8eTG1tLcHBwURERODl5fXY7aQstBDiaVW/EufVV1+VwKSJe+KDlbS0ND7//HOWLVumXO27e/cun3/+OQkJCVhYWDBz5kylIyjA2bNn8fDw4Pz582zatImrV6/i5eVFr169aN++fWO9FSGE+EM8Lgh5+FAgAYoQQoim4okPVu7du8eAAQPYuHEjKpUKHR0dqqurmTRpEhEREeTn55Oenk5UVBRqtZrTp08zdOhQBgwYgIGBgTLtJ4QQzxKNRgMgM19CCCGatCc6ZwXq8laMjIy4du2akkeiVqspLCzEx8eHIUOGsH//fr7//nvat2/PhAkTsLW1VR4vgYoQ4lkkxUGEEEI8CZ74mRWAv//972RnZ+Pi4kJycjI3b95k0qRJREdHN/bQhBBCCCGEEL/QEz+zAnUds3fs2IFKpWL06NEEBASgr6/f2MMSQgghhBBC/ApPxcyKEEIIIYQQ4ukjxfKFEEIIIYQQTZIEK0IIIYQQQogmSYIVIYQQQgghRJMkwYoQQgghhBCiSZJgRQghhBBCCNEkSbAihBDiv4qIiMDV1ZXt27f/Ya85ffp0XF1dmT59+n/d1tXVFVdXV44dO/YHjEwIIcQfRYIVIYQQAMyYMUM56X/llVcaeziEhIQwcuRIQkJClNskKBFCiGfLU9EUUgghxK9z584dEhISlN8PHDjAzZs3sbCw+MPHUlNTQ21tLX369KFPnz5/+OsLIYRoOmRmRQghBLt27aKiogKVSoW1tTXV1dXs2LHjPz7mq6++onv37nh7e/P6668zd+5cXF1dGTFihLJNbm4uU6dOJSwsDG9vb3r37s3atWupqqoCIC8vT5kt+fLLL4mJiaFDhw5cv369wTKw+u3qjRw58rFLxDIzMxkyZAheXl706dOHtLQ05b4RI0bg6urK7NmzGT9+PJ6envTr1w+1Ws26desICQkhKCiIpUuX/ha7VAghxG9AghUhhBBs3boVgOjoaHr27AlAfHz8T26/d+9eZs+eTW5uLoGBgdy5c4cvv/yywTYFBQUMHDiQb7/9FjMzM3r27Mn169dZvHjxY/NQ5s+fT/v27enZsyf6+voN7jM2NmbkyJHK79HR0Y8sEQNYtGgR1tbW2NrakpWVxbRp0x55nbi4OJo1a4a9vT1qtZoRI0awbt06goODKS0tZdWqVfzwww//ZY8JIYT4I0iwIoQQz7jMzEzS09MB6NWrF7169QLg8uXLHD9+/LGPiYuLAyAsLIzVq1ezZs0aOnfu3GCb+Ph4SktLUalUbNmyhXnz5vH+++8DdTM5N27caLD9zJkzWbJkCUuWLKFVq1YN7jMzMyM2Nlb5fdiwYcTGxj6yTGzSpEl88MEHLFiwAKibuSkpKWmwTXh4OMuXL2fKlCkA3L59m9mzZ/PBBx/g4eEBoOwPIYQQjUuCFSGEeMbVz6q0atUKf39/3N3dcXJyanDfj12/fh2Adj8vQhoAAAJcSURBVO3aKbe5ubk9dht7e3sMDAwe2f7atWsNtg8MDPw1bwOAjh07AnXBTb27d+822KZ+DM2bN1dua9u2LVA3g/O4xwghhGgcEqwIIcQzrKqqim+++QaAwsJC3N3dcXV1JScnB4DvvvuO8vLyRx7Xpk0bALKzs5XbsrKyGmxjZWUFwNWrV5UclQsXLjxyf736gOY/0dHRAeqS8B9HV7euboyWltZPPkf9No97XiGEEE2LVAMTQohn2HfffUdpaSlQt6Tr4ZP2/fv3c//+fXbu3PnI4wYPHszhw4dJSkpi0qRJaDQaDh8+3GCbF154gQ0bNlBcXMzgwYNxc3Njz549AMTExGBlZUVeXt7PGm+bNm3Izc1l2bJl7Nu3j+joaPz9/X/u2xZCCPGEkJkVIYR4htUv8woICGD16tWsWLFC+YmMjAQen2jfvXt3Zs+ejY2NDUeOHMHIyIhBgwYB/56lsLS0ZOvWrfTq1Ytbt26xa9cuWrduzeuvv86iRYt+0XhnzJiBra0t6enpfPHFF6jV6l/0PEIIIZ4MWrW1tbWNPQghhBBPnrKysgZ5HyNGjCAlJYVBgwYxZ86cRhyZEEKIp4UsAxNCCPGLdO/enR49emBpacnJkydJSUmhWbNmDBs2rLGHJoQQ4ikhwYoQQohfxMvLi71793Lnzh1atmxJjx49mDx5coOKX0IIIcSvIcvAhBBCCCGEEE2SJNgLIYQQQgghmiQJVoQQQgghhBBNkgQrQgghhBBCiCZJghUhhBBCCCFEkyTBihBCCCGEEKJJkmBFCCGEEEII0ST9P6+aOJhrF5mbAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# store the best/worst performance time\n", + "best_train_time = results[results['Training Time'] == results['Training Time'].min()]\n", + "worst_train_time = results[results['Training Time'] == results['Training Time'].max()]\n", + "best_prediction_time = results[results['Prediction Time'] == results['Prediction Time'].min()]\n", + "worst_prediction_time = results[results['Prediction Time'] == results['Prediction Time'].max()]\n", + "\n", + "plt.figure(figsize = (12, 7))\n", + "\n", + "barWidth = 0.17\n", + " \n", + "# set height of bar\n", + "bars1 = results['Training Time']\n", + "bars2 = results['Prediction Time']\n", + " \n", + "# Set position of bar on X axis\n", + "r1 = np.arange(len(bars1))\n", + "r2 = [x + barWidth for x in r1]\n", + " \n", + "# Make the plot\n", + "plt.bar(r1, bars1, color= pal[0], width=barWidth, edgecolor='white', label='Training Time')\n", + "plt.bar(r2, bars2, color= pal[1], width=barWidth, edgecolor='white', label='Prediction Time')\n", + " \n", + "# Add xticks on the middle of the group bars\n", + "plt.xlabel('Algorithm', fontweight='bold', fontsize = 13)\n", + "plt.ylabel('Time (seconds)', fontweight = 'bold', fontsize = 13)\n", + "plt.xticks([r + barWidth for r in range(len(bars1))], results['Algorithm'], rotation = 15, fontsize = 11)\n", + "\n", + "\n", + "textstr = '\\n'.join(('Best Training Time: {:.3f} - {}'.format(best_train_time['Training Time'].values[0], best_train_time['Algorithm'].values[0]), \n", + " 'Worst Training Time: {:.3f} - {}'.format(worst_train_time['Training Time'].values[0], worst_train_time['Algorithm'].values[0]),\n", + " 'Best Prediction Time: {:.3f} - {}'.format(best_prediction_time['Training Time'].values[0], best_prediction_time['Algorithm'].values[0]), \n", + " 'Worst Prediction Time: {:.3f} - {}'.format(worst_prediction_time['Training Time'].values[0], worst_prediction_time['Algorithm'].values[0])))\n", + "props = dict(boxstyle='round', facecolor='lightgrey', alpha=0.5)\n", + "\n", + "#place a text box\n", + "plt.text(3.2, 12, textstr, fontsize=14, bbox=props) \n", + "\n", + "# Create legend & Show graphic\n", + "plt.legend(fontsize = 13)\n", + "plt.title('Training and Prediction time of Algorithms', fontweight = 'bold', fontsize = 17)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "NC5fqVyV-dJ7", + "outputId": "cc5895e4-8689-4bbe-c58a-d9feb22e5477" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(1, 30173)\n", + "[0]\n", + "non-bullying\n" + ] + } + ], + "source": [ + "data = [\"\"]\n", + "count_vector = CountVectorizer(stop_words= 'english', lowercase = True,vocabulary=pickle.load(open(\"vector_vocabulary.pkl\", \"rb\")))\n", + "data= count_vector.fit_transform(data)\n", + "\n", + "trained_model=pickle.load(open(\"/content/LinearSVC.pkl\", 'rb'))\n", + "print(trained_model.coef_.shape)\n", + "\n", + "print(trained_model.predict(data))\n", + "if(trained_model.predict(data)==1):\n", + " print('bullying')\n", + "else:\n", + " print('non-bullying')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "ujpkQbHvXhNa" + }, + "outputs": [], + "source": [ + "from sklearn.model_selection import GridSearchCV\n", + "def param_tuning(clf, param_dict, X_train, y_train, X_test, y_test):\n", + " \n", + " # make scorer object\n", + " scorer = make_scorer(f1_score)\n", + "\n", + " # perform Grid Search for Parameters\n", + " grid_obj = GridSearchCV(estimator = clf,\n", + " param_grid = param_dict,\n", + " scoring = scorer,\n", + " cv = 5)\n", + "\n", + " grid_fit = grid_obj.fit(X_train, y_train)\n", + "\n", + " # Get the estimator\n", + " best_clf = grid_fit.best_estimator_\n", + "\n", + " # Make predictions using the unoptimized and model\n", + " predictions = (clf.fit(X_train, y_train)).predict(X_test)\n", + " best_predictions = best_clf.predict(X_test)\n", + " \n", + " # Report the before-and-afterscores\n", + " print(clf.__class__.__name__)\n", + " print(\"\\nOptimized Model\\n------\")\n", + " print(\"Best Parameters: {}\".format(grid_fit.best_params_))\n", + " print(\"Accuracy: {:.4f}\".format(accuracy_score(y_test, best_predictions)))\n", + " print(\"F1-score: {:.4f}\".format(f1_score(y_test, best_predictions)))\n", + " print(\"Precision: {:.4f}\".format(precision_score(y_test, best_predictions)))\n", + " print(\"Recall: {:.4f}\".format(recall_score(y_test, best_predictions)))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "colab": { + "base_uri": "https://localhost:8080/" + }, + "id": "UE3NWuV-X_ye", + "outputId": "bb490438-ec4f-4c0b-deb1-01c089daad3d" + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LinearSVC\n", + "\n", + "Optimized Model\n", + "------\n", + "Best Parameters: {'C': 1}\n", + "Accuracy: 0.9526\n", + "F1-score: 0.9630\n", + "Precision: 0.9651\n", + "Recall: 0.9611\n" + ] + } + ], + "source": [ + "param_grid = {\n", + " 'C': [0.25, 0.5, 0.75, 1, 1.2]\n", + "}\n", + "\n", + "clf_linsvc = LinearSVC()\n", + "\n", + "param_tuning(clf_linsvc, param_grid, training_data, y_train, testing_data, y_test)\n", + "pickle.dump(clf_linsvc, open('clf_svc_model.pkl', 'wb'))" + ] + } + ], + "metadata": { + "colab": { + "name": "LY_project_Grp_No_51_TFIDF.ipynb", + "provenance": [] + }, + "kernelspec": { + "display_name": "Python 3", + "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.11.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/Model Training/final_dataset_hinglish.csv b/Model Training/final_dataset_hinglish.csv new file mode 100644 index 0000000..a4181c1 --- /dev/null +++ b/Model Training/final_dataset_hinglish.csv @@ -0,0 +1,18152 @@ +headline,label +cock suck before you piss around on my work,-1 +you are gay or antisemmitian archangel white tiger meow greetingsh uh there are two ways why you do erased my comment about ww that holocaust was brutally slaying of jew s and not gay s gypsys slavs anyone if you are anti semitian than shave your head bald and go to the skinhead meetings if you doubt words of the bible that homo sex ity is a deadly sin make a pentagram tatoo on your forehead go to the satanistic masses with your gay pals first and last warning you fuck ing gay i won t appreciate if any more nazi shwain would write in my page i don t wish to talk to you anymore beware of the dark side,-1 +fuck your filthy mother in the ass dry,-1 +get fuck ed up get fuck ed up got a drink that you cant put down get fuck up get fuck ed up i m fuck ed up right now,-1 +stupid peace of shit stop deleting my stuff ass hole go die and fall in a hole go to hell,-1 +tony sidaway is obviously a fist fuck ee he loves an arm up his ass,-1 +my band page s deletion you thought i was gone deleting the comment i posted on your talk page does not delete my feelings for your hasty decision to delete my page you sir are still a cock suck ing douche fuck sit back for a second and think about what your life has become done that didn t take long did it nope because as i am most certainly aware your life is a shit storm of sitting in front of the computer masturbating to fictional creatures your attempts to get rid of me are mediocre at best you are constantly suck ing the dick of failure you don t want a personal attack huh well too bad fuck cock mcdickerson you ve got one from me you can go ahead and delete my profile from wikipedia i ll just make another one and come right back to syrthiss s talk page and insult the dick off of you how could you shatter the dreams of an innocent eighteen year old college freshman trying to make a name for his band does that make you happy fuck ing with people because you re an overweight single old man in a dead end job did you spot that perhaps someone else was going to follow his dreams and you were trying to hold him back so somebody else could suffer like you yes you did i don t make empty threats so i won t be saying anything along the lines of i ll hurt you or i ll eat the children from within your sister s womb but i will say that you are a ass hole son of a bitch mother fuck ing cock suck so go eat some more food and drown your sorrows you premature ejaculating bald headed fuck you should do something nice for yourself maybe go grab a couple of horny goat weeds from your local convenience store and jack off for a little longer than three minutes tonight sincerely an ass hole that s better than you in every way,-1 +all of my edits are good cunt s like you who revert good edits because you re too stupid to understand how to write well and then revert other edits just because you ve decided to bear a playground grudge are the problem maybe one day you ll realise the damage you did to a noble project,-1 +a pair of jew hating weiner nazi schmucks,-1 +i think that your a fagget get a oife and burn in hell i hate you m sorry we cant have any more sex i m running out of conndoms,-1 +you are a stupid fuck and your mother s cunt stinks,-1 +your blatant pov pushing neither of you guys has made any contribution to this italian history article other than to shove your unhistorical unconstructive modern pov in my face this is a history article history have you heard of that this is the reason why so many people get pissed off about the pedantry and idiocy and triviality of wikipedia j sus get a fuck ing life,-1 +fuck you block me you faggot pussy,-1 +kill all nigger s i have hard that others have said this should this be included that racists sometimes say these,-1 +burn deck if that d guy s burn deck is like what i think it is than he is in for a blrude awakening leviathan mother fuck er,-1 +u r a tw fuck off u gay boy u r smelly fuck ur mum poopie,-1 +this user is such a worthless goddamn faggot fuck you faggot,-1 +fuck off you are not an administrator you don t have the authority to tell me what to do,-1 +fuck you fuck you award go fuck yourself,-1 +matt hardy is so fuck y italic text media example ogg matt hardy is so fuck y,-1 +fuck you user the bohemian shinobis yeah that s right bitch you are all pieces of shit,-1 +thank you for your racist experimenting with the page katherine heigl on wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you may want to do take a look at the welcome page to learn more about contributing to our encyclopedia now go fuck yourself you racist canuck ass hole u have nothing better to do than censor the truth u goddamn kanuck piece o trash dick ead moron mother fuck er lol you canucks r real retard s fuck off dick eed edit another of my eidts and you ll be expel from wiki by jimbo you sob dick ead so watch it mofo piece of garbage racist mofo ass hole im tryinbg to be nice here so take what i say as a compliment yamla,-1 +gay the existence of cdvf is further proof that is a sad twat he is also very ugly and has a willy for a face,-1 +i never fuck ing made this mother fuck ing article i just fuck ing edited it and that was a fuck ing long time ago fuck ing ass hole s pissing me off,-1 +fuck ed with the wrong muchacho july utc,-1 +hi im a fuck ing bitch,-1 +fuck all rides at worlds of fun i hate all rides at worlds of fun because they are sh tty and boring all ride operators at wof should be fired sued and hanged burn all wof coasters arrest all wof park operators assassinate all wof customers i heard that a boy died on timberwolf on august that s stupid worlds of fun should have nown better to built that sh t ride worlds of fun cares about money and prophet moar than they re customers burn that sh t park down fuck you rides worlds of fun is dangerouser than grround zero and area worlds of fun should burn in hell,-1 +hello how do i get somebody to fix shit around here,-1 +dictionaries how dare you call my contribution spam i am a kurd and i made a lsit of kurdish dictionaries you bloody turkish nationalist and atoricity commiting bone breaking nazi watch out folk this slimy turk is trying to censor the internet this is not undemocratic turkey here no prison cells in wikipedia you stupid turk and you buggers want membership to the eec,-1 +how do you know he is dead its just his plane that crashed jeezz quit busting his nuts folks,-1 +what a mother fuck ing piece of crap those fuck heads for blocking us,-1 +are you fuck er mother fuck er have nothing to do but block university computers go and suck cock s,-1 +hello you disgrace to humanity stop wasting valuable internet resources your killing the fuck ing planet and throw out your pc ps it s like am what the fark kinda life do you have on wikipedia a very sad and lonely one lol life s too short find something better to do,-1 +it wasnt vandalism dick ead,-1 +you suck if you don t undelete the page barry dejay i will you,-1 +hahaha you dont actually believe this bull shit you are telling me right now you are talking about the access to the country or representatives to the government not kim jong un himself those are two totally different things although i could understand your stupidity since north koreans think that kim jong un is the governement im just saying go troll somewhere else kid,-1 +you wasted your own time take this advice with you pull your head out of your ass be real and don t spend the rest of your life suck ing ass have a nice life goodbye mailbox,-1 +you know i was thinking nobody really attacked me before i revealed my age here after i announced that i was i was subject to a constant storm of harassment and abuse the same thing goes for when i was on the sandbox when i was before people knew my age they didn t care after i told them my age they hate d me it s just so amusing how the idiot soapboxers think of teenagers as being responsible for the decline of the soapbox like it was ever any good to begin with this is funny because the adults are the dumb est people here mauricio chuppah redneckgirl pinky scooby gg foreverlosttinkerbell greenrabbit starrocketsinflight bree robinson enigma cocainenightmares tokyodome chad ocho cinco steve lake all adults the teenage posters here are typically the smartest ones let s see g dawg head banging brunette classicage metropolis even though he s a bipolar weirdo chrisscript just to name a few all i ever see adults posting is rate my poo my ballz smell funny whoz hawter me or ur mom i like to rape little girls and hey guyz look at me im an attention whore the adult posters here are immature moronic savage bullies with the mental capacity of a retard ed year old whereas most of the teenagers here are thoughtful intelligent mature and often profound but they re subject to constant schoolyard bullying by the idiot adult posters who think they re somehow superior because they were born and dropped on their head earlier soapbox logic never fails to amuse me,-1 +here s an idea go fuck yourself cum shit ter,-1 +will my mother fuck ing safety be guaranteed i fuck ing hope so i m bringing my own fuck in weapons pay me when i get back mother fuck ers oh yeah i ve got a joke a family husband wife son daughter dog walks into an agent s office and tells him that they ve got a great vaudeville routine he says we don t hire kiddy acts and they say but we re really good and so the agent says fine let me see what you ve got but if you suck i m throwing you out so the family gets ready the daughter hits the cd player and circus music begins playing the father jump kicks the son in the head and stoms his face in the ground until it s a bloody pulp then proceeds to jerk off and cum all over his shattered skull meanwhile the mother begins violently finger fuck ing the daughter as the dog fuck s the mother in the ass hole this is the point when the father takes the leftover brain matter from the son s head and shoves it into the mother s pussy then begins fuck ing her pussy while simultaneously sticking his finger down the daughter s throat until she vomits all over them both then the dog bites the mother s hand off as she s finger fuck ing the daughter leaving her hand in the daughter s pussy as blood squirts all over the place the father takes blood from the ground smears it all over the mother s chest bends over and begins shit ting all over the open wound where her hand used to be before the dog bit it off they take the dog and shove it in a microwave heating it up until it explodes then take the dog remains mix it with the father s shit the son s head wound and the father s cum and shove it into the daughter s mouth then the father rips the son s dick off and fuck s the daughter with it as the mother locate s the son s testicles breaks them open and drinks the sperm that comes out then the family lines up and says ta da there s silence from the agent until he finally says i love it what do you call that and the family says we call it the aristocrats,-1 +fuck you smith please have me notified when you die i want to dance on your grave,-1 +i shit on your face fuck you,-1 +groin you sad fuck i m going to restore my edit and you are going to leave it or else i wil knee you in the groin yourself prick,-1 +he likes itin the ass by muhamad ali and kelly has a giant penis and also fuck ed columbus,-1 +fuck off you murdering scum,-1 +you gay mother fuck er i know where you live i am going to sand your face off then i am to going to beat you to a pulp you chicken shagger,-1 +you studid cock suck u stop callin me ok its a frank garrett eatin the worms crawl outa your moms pussy you fuck ing retard o hit i retard o,-1 +fuck ing trollreasons,-1 +leave me alone i told you already to leave me alone why can t you fuck off and do your own fuck ing thing or do you find that hounding me is amusing id u do then you are a mother fuckerucker fuck in ass hole and i will ban you,-1 +take care not to believe your own bull shit see on bull shit,-1 +wouldn t be the first time bitch fuck you i ll find out where you live sodomize your wife and then burn your house down fuck you you fuck ing queer,-1 +fuck you jzg i will have you removed as editor you stupid moron,-1 +how about this go fuck yourself,-1 +fuck you faggot i don t care if i get block as long as everyone knows you are a dumb cunt,-1 +cavorting with heretics fuck heretics,-1 +this is your dad sam i m worried about you worried that your cock wont fit in my ass anymore omfk lolz haha i said penis gorf gorf gorf gorf,-1 +or any historical fact concerning current armenia pertaining wikiprojects keep your pathetic winking marks to your antiturkish ass,-1 +i have a dick its bigger than yours hahaha,-1 +watch out for user xeno hell bite your dick off,-1 +bleh i m all out of ideas is there really something wrong with the server or what the damn thing won t work for me either helvetica font new svg my upload of segoe ui was actually a png to begin with,-1 +fuck you people the information of that can be found here,-1 +ghe you re a faggot learn it know it,-1 +just a thought hey jeremy why don t you wash your vagina why do you insist on letting it smell like a musty pile of tuna i m tired of smelling it babe when we make love i do you doggy style and the smell just pierces my nostrils i have to turn away it disgust me so much also wipe your ass a little better i m getting shit on my dick and tht s fuck ing gross you cunt,-1 +fuck you both i m not interested in what either of you think,-1 +lol dumb arabs and their you cant show my god heres a bomb because i have sand in my vagina fuck ing towelheads,-1 +shut up you fat poop or i will kick your ass,-1 +no this is a group effort wikipedia is a collaborative community and there are no school essays here the article needs to be more professional and adopt a better title besides the references this is all that needs to be done so get off your high horse and accomplish what you want to see done if you have these goals then put yourself to the test of solving this problem that s what i do whenever something perturbs me you re just looking for a fight about something you admittedly care nothing about how about i come by your house and criticise your gardens why you say because they are too fuck ing ugly and i don t like the way they don t blend in with the neighbours yards so tacky but i m only passing by and i ve never been down this road before feb utc,-1 +kiss my dick all of you,-1 +you need to stop what difference does it make if the episodes of any show have their own articles you re acting like a major geek will wp collapse within itself if it s not perfect i think the joker said it best when he said the only sensible way to live in this world is without rules and don t even try to tell me that wp would be terrible without rules you can have moderators to stop vandalism just stop fuck ing redirecting it s getting on my nerves along with about of wp users,-1 +to blanchardb you dumb mother fuck er i am going to sue the shit out of you watch your back,-1 +suck my dick thank you talk hist,-1 +demonte morton u bastard stop deletin my shit u white trash cracker mutha fuck er fuck u u racist bitch i hope u die,-1 +bla bla bla suck it irishguy,-1 +try the official website then shit head,-1 +every other press agency said the crowd was chanting you re a tory too only the daily mail which by the way is a tory paper reported that the croud chanted fuck ing tory jew he is a dispicable scab but that is because of his politics not his liniage,-1 +unblock i said im sorry how do u expect me to stop making accounts if u dont unblock me if u unblock me ill stop making acounts simple ur the ones who are making something bad to worse stop making a big deal im not doing anything bad or violating anything now so i dont get it why am i still block just get over it already i mean well im not here do violate anything im just trying to help and can someone tell alexandria to unblockme already this block is so fuck ing overrated cant u just forgive and forget move on people there are other things to worry about than a stupid block so unblock me and move on again i come in peace and i have a right to contribute to wikipedia what happend in the past happend the past is in the past now were the present lets open a new page and start a new chapter star fresh ok deal i promise i wont violate anything all im asking is another chance one last chance,-1 +fuck you and your small penis,-1 +re moving dragon slayer to dragon slayer series fuck your mother you is son of a bitch,-1 +insult for musikanimal you re a fuck ing shit the reason that i m insulting is because fuck you wikipedia,-1 +you have no friends in real life what makes you think anyone on the internet will like you take the hint you re an a hole,-1 +closedmouth is a dick fuck this guy is a jackass who sux cock a fuck in job y the fuck does the trans do it cuz its into tht kinda shit,-1 +you have evidence from me i presented you with tone of evidence but you reject it because it goes against your fictional ideas of what new england is or should be even eastern southeast anyway ct is not into this new england thing which actually shocked me i have told you time and again western ct does not think of ourselves in this ne thing go to a town meeting and see if boston or ne comes up ct and it s place in the nyc metro area is what comes up you are doing nothing but telling lies and spreading propaganda it has to be because you dismiss my actual facts and you make too many excuses that hold no water in my ct there are no signs that point to new england or boston our signs point to new york state and city also how you people are not on this guy s ass like you are on mine i bet its cause we white folk from new england hate nyc nigger s like this spick who posted above me go fuck yourself the preceding unsigned comment was added by talk contribs i can only assume because he is one of you and he at least still believe in new england with boston as it s capital get your head out of your ass watch you block me for those comments if i get block that guy you should be block,-1 +whos the douche that deleated all of the info and crap i really want to curse them out right now,-1 +mine dispeared somebody wax my ass,-1 +hey fuck you who the fuck checks phnom nam lyr wildlife sanctuary for vandalism get a fuck ing life you turd bag,-1 +yo what the fuck is your problem fuck ing around with my page leave it the fuck alone,-1 +as for the arguements that abo should be included it already is wanker is used alot but only as a common noun and the usuage isn t unique same for the other words mentioned though other commonwealth countries such as new zealand may use cunt in a similar fashion australians do seem to use it more however this arguement is irrelevent since many australian words such as mate bloke etc are used extensively in nz and the uk though are still in the article r m,-1 +unblock what the fuck the article on anne kilkenny was poorly written i rewrote it so it didnt look like shit look at my final edit you fuck ing dumb ass,-1 +hey idiot i m simply verifying the truth mobile was not the first to have a ringtone maker online brinked was do some fuck ing research before you remove my shit tired of you ass hole s removing my hard work i m putting into making wikipedia a relevant page,-1 +re punk ass snitch get the cock,-1 +oh right like this article suck s and you know it isn t abusive language hypocrite eat shit and die loser,-1 +you are a faggot get a life,-1 +recent you just a pussy,-1 +reliable sources cheating barry bonds cheater from cbs yea i kinda think that is reliable dear barry bonds you are either an outright cheater or very stupid from the usa today yes barry bonds is a cheater he is a cheater of the worst sort lying it s clear barry bonds a liar new york daily news another pretty freakin reliable source barry lamar bonds is a bad man baseball digest but bonds is a liar a cheater a whiner and a bad influence on america s youth mark barnes,-1 +your are fuck ing gay wad i fuck ed your mum oh wait your gay you dont have a mom hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha lolololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololol cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt i fuck ed your mum oh wait your gay you dont have a mom hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha lolololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololol cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt i fuck ed your mum oh wait your gay you dont have a mom hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha lolololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololol cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt i fuck ed your mum oh wait your gay you dont have a mom hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha lolololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololol cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt i fuck ed your mum oh wait your gay you dont have a mom hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha lolololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololol cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt i fuck ed your mum oh wait your gay you dont have a mom hahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha lolololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololololol cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cu,-1 +aaron swartz stop fuck ing reverting my goddamn edits i think aaron swartz is a dumb ass and he should have been killed a long time ago i know where you live i will kill you if you revert any more pages,-1 +i wish to restate the an thread as neutral and inviting community discussion i realize that i went to far by characterizing ih as a dick i apologize,-1 +why the hell did you fuck ing write that i can vandalize wikipedia whenever i want,-1 +my side of the story attention douchebags and douchetees i have been labled as a terrorist on this site bull to the shit i simply have a vast amount of knowlege on a wide range of topics scjessey for example did not mention he is a fuck ing douchebag on his article so i had to ammend this i was simply trying to spread the truth alallalalalalalalalalaalalaalalalalalal sorry i have to do that every minutes or i go to hell allalalalalalalalalalalalalalallalalalalalalalala allah ever,-1 +well faggot block me block me oh the world will shurly end come off your high horse i ll say what i want about you if you continue bashing me then i will just have to post complaints about you on every b log and forum i can find every chat room will be filled with how redfarmer did your mom come up with that name is untrustworthy if you block me i can always find info on another site a site where they don t allow people or freaks like you to delete pages on a whim so you gonna block me ban me go ahead but be warned without being able to edit pages i can t help you by giving you instructions on how to change your diapers sorry leonhart,-1 +fartsalot says fuck you motherclucker,-1 +a kitten for you just becuz ur pussy lying,-1 +you are a gay homo i hope you choke on your penis and die i am sending a big bleck guy to jizz in your face,-1 +igho otegheri deletion who the hell are you to decide what to delete and what not you could go fuck yourself u little piece of shit,-1 +nobody cares about the fuck ing shit like you fuck ing bitch,-1 +the only thing you are persistant at you ugly bastard is fuck ing the troll,-1 +fuck you mutha fuck a you jerk you scum lowlife loser hehe hahah,-1 +look you little cock suck i did nothing wrong i am sick of your bull shit harassment and you are really starting to piss me off you little pussy i am doing nothing wrong so just swallow your pride i know it s hard for you and admit you lost this fight now piss off blackeyedfool,-1 +no you are the racist you goddamn neo nazi you big boy,-1 +what the fuck gose here,-1 +you you re a little bitch you can t handle an argument like a man so you re crying to the administrators go fuck yourself,-1 +mostly burtalbert you fuck ing ass hole go suck a dick u fuck ing king of ass hole s,-1 +i had enough of you bastard,-1 +some baklava for you fuck,-1 +this is my page fuck ers so i can say what i want fuck you drini and naconkantari i hope you enjoy your scheduled raping p s done a head count lately,-1 +scope please see the link above as i m sure you are a fuck ing spastic,-1 +hey wiki nerd u suck man i dont like your nasty coments punk ill beat ur guts from the back signed lover boy ps i love butt sex and we can have butt sex ill bring the ky gelly,-1 +you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck,-1 +mother fuck er dont be changing the fuck ing gta timeline,-1 +fuck you you paranoid bitch you are a ugly unwanted bucket of sludge who is obsessed with the unwanted festering sputum bag from hell and the teletubbie rubbing pantaloon you try to bite the mailman you c u m guzzling sick minded prick who cooks for the filthy freak and the decomposing penguin groper thy fawning ill nurtured lout hath a idle headed maggot pie if not for your daddy you would be a racist cursed horny toad who eats the earwax of the brain dead snotbox and the crap eating horny toad and you lift your leg on trees you evil naked weasel who slobbers on the wrinkly snob and the anatomically incorrect disfunctional buffoon so quit being so stupid you cat litter munching abysmal lunatic who slobbers on the cat harassing rectum and the anatomically incorrect lunatic you big smelly cunt your mums crack tastes like mince and fuck your mouth your girlfriend is ugly if my dog is as ugly as you are i would shave his ass and make him walk backwards you are just cum you mom should of swallowed you are just a dog that jumped the fence and ran away how did you get here did someone leave your cage open are your parents siblings hey are you lost which way did you come in does she have an appetite she looks like she has an appetite go ahead tell them everything you know it ll only take seconds i d love to go out with you but my favorite commercial is on tv you fail at life and please press the reset button on your life you should see the expressions on their faces priceless game over mother fuck er thanks to you neither me nor my family will give this shit foundation a fuck ing dime do wikipedia a favor and just delete your account have a nice day,-1 +please stop vandalising my page cunt,-1 +that was a nice message on my talk page i enjoyed it i mean you still suck but yeah i had fun talk,-1 +you have abuse logs that are logs of abuse to pages i have never even posted to what teh hell is going on all i tried to do is post to teh sam couep page its a likn to a video on youtube why the hell cant you explain to someone what you are doing when you do it if you remove it and then let me repost exactly the same thing what the hell am i supposed to think what teh hell is going on your site is so complex it is impossible simplify please i cannot communicate with teh people who have removed my links i cannot communicate with anyone i get of the advertised connection speed do you ahve shares in telecommunications companies are you jew ish what teh fuck is going on for gods sake,-1 +how about a little fire nate throws fireballs at nate i stole wikipedia i stole wikipedia fuck wikipedia fuck,-1 +you fascit nazi you socialist bastard you filthy hippy you dare touch my edits again and i ll go to where you live and kick your ass in person it shouldn t be hard to find communes smell worse than slaughter houses i make edits i don t vandilaze get off your high horse,-1 +user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is user enigmaman is a homo like mitt romney is user nhrhs is a homo like mitt romney is user nhrhs is a homo like mitt romney is user enigmaman is a homo like mitt romney is newl,-1 +why don t you remove my free speech you goddamned self you whiny little pipsquak that s all you seem to be good at doing,-1 +go kill yourself you should be ashamed of yourself twoofers like you are scumbags that deserve to die you anti scientific ass hole s are destroying america,-1 +fuck of nazi propaganda odpierdalcie sie jebani faszy ci od polski,-1 +since this is my user page i can say what i want you guys are all a bunch of mother fuck ing ass eaters and i hope you all rot in hell,-1 +you are an awesome wikipedian some shit some droppings of filthy muck mess to feel you better don t bother myself summon,-1 +fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you u useless bot fuck you,-1 +ibaranoff is a cock suck ing little bitch why did you delete that you fuck ing loser you don t like being wrong do ya i don t give a fuck if i get banned you can eat a dick have a nice life hope you can find something to do with it except for be a little bitch on wikipedia,-1 +im sorry are you fuck ing stupid that nice person just gave me a warning then you fuck ing block me nigger cunt eat pussy bitch,-1 +don t block me i am right and i fuck ing know it block that ass hole kansas bear or something just leave me the fuck alone,-1 +what the fuck is wrong with you people stop critizing us you re writing in opinion fuck stop this maddox is a prick,-1 +i like the way you forget about all the times israel has actualy done this to other nations including it s allies such as when they forged european passports to commit a murder causing innocent people to be framed and do we really need to talk about the uss liberty incident just because iran says something it has to be bad right fuck ing morons the lot of you if you think this isn t something they would do or at least consider,-1 +lecture someone else sarah you are talking down you re talking down a teacher talks to a disobedient child get off the pedestal and don t spout such bizarre lines as simply incapable of decency adminship isn t a licence to talk to others with contempt it s fuck ing insulting i d rather deal with an honest ass hole which i would really like to see around here than a bunch of ass kissing arrogant snakes which i see in spades this project just goes to hell that little bit further every day i wonder how long until the articles i ve written are bastard ised in the way all of these are talk,-1 +when i am providing with reliable source where ganga lal gupta has clearly proof that kushwaha come under kshatriya varna you mother fuck er do you have blind eyes that you cant see it,-1 +ha ha fuck ing gwernol at it again trying to protect his friends because he doesnt give two shit s about the rules what a big fuck ing surprise,-1 +jd the sock fiend now hes lying out his ass on the ani page but i can t comment and no im not this m rth person im just me,-1 +smallthingy are you gay do you frequent the hellfire club do you shake your little tusch on the catwalk,-1 +william s saturn is a sockpuppet hey dick eed saturn remember me you dumb fat bitch,-1 +fuck off i do what i want,-1 +handing out blocks using twinkle what a fuck ing disgrace lfdder,-1 +no think o it this way im doing all that same shit youve been doing to me okay also ill let them merge if youd stop getting rid of my stff and apologize and get rid of that shit tryna get rid of my page and also go to hell,-1 +issues with knox knox run things like gala days festivals etc and you know what along redleaf ave and the pacific hwy they illegally park now i know a friend who lives on the pcfc hwy in wahroonga and the snobby bastard s from knox come along and completely block people s driveways they can t get out however it s not illegal and the people of wahroonga complain to ku ring gai council and what do they get nothing it s ridiculous that bastard s like that can get away with it somebody needs to add another section on this article talking about this issue so that people who want to know more about the school and also people who attend the school can realise just how much arrogant and jerk y they are,-1 +maybe you should look up what harassment is please change the reasoning for my block to something respectable that deals with the situation at hand i did not harrass you in any way shape or form i asked you to fuck off in the context of my user talk page and i repeat again my statement fuck off my talk page when this issue is over it is my right to ask you to fuck off my talk page it is not my right to block you from this page but again it is my right to ask you to fuck off this user talk page bits andpieces and why will you have to do that i am disrupting the project by asking you to fuck off my talk page nope bits andpieces lengthened the block to week and you can t edit this page i hope you are more reasonable next week see you then have a cup ark,-1 +back the fuck off take your year old ass and buy some fuck ing webkinz and stop trying to involve yourself in something you don t understand and act like some internet tough guy if i get another post from you i ll track down your parents and have a talk with them,-1 +fuck all you nut licking mother fuck ing faggot cock suck ing whores you all suck shapiros cock and lick his mothers cunt,-1 +i guess that was the next to last warning huh funny thing is this has been stumbled now thousands of people are going to be aware of your selective editing this is the internet bitch and it s free and you can t get away with your slimy little agenda anymore you are outed,-1 +well gladly go fuck yourself you numb fuck,-1 +asshat fuck ing stupid ass hole pair of clownshoes,-1 +here s one example of mcneight speak your post to wikipedia talk requests for comment does not provide enough information so that anyone can review the threats and personal attacks that you claim were made by http en wikipedia org wiki wikipedia talk requests for comment brad quote from mcneight wikipedia is a community the focus is not on you or me but the encyclopedia create as many user names as you want but eventually your personality will come through if you can t or won t interact with people in a normal manner hint take a look at meta don t be a dick and wikipedia civility for some tips on human human interaction then get the fuck out mcneight signed because i m not a bitter and petty authority wannabe attention freak coward i think my favorite part is get the fuck out please protect me from this dangerous creature,-1 +eat a dick and fuck off,-1 +no fuck in make me fudge packer gwernol more like queerhole,-1 +kww and father fuck er u still didnt give no source haha p what a sore fuck ing loser haha p,-1 +you can t fuck ing block me for months for fuck ing personal attacks or harassment you fuck ing stupid hellhole you better mother fuck ing let me vandalize wikipedia again fricken now,-1 +ow someone just block me i don t think i can feel my ass yourcousin,-1 +i see you like bull shit fine have your bull shit,-1 +go to die son of bitch,-1 +i just learned how to suck up to people you re very good at it fisherqueen as for the grammer it should be fairly obvious that they re typos now pick out a mistake here bitch,-1 +dumb nigger z yall nigger s are dumb sean kingston never played biggie i was joking around dumb fuck s,-1 +hey i m just tellin like it is you ugly as fuck butt fugly mutha fuck a,-1 +you are a raging faggot kill yourself,-1 +cock suck ing bastard,-1 +i should become a detective for figuring all that out oh yeah i suck cock s that s how i became a wikipiedia admin and because i have a lot of time on my hands i often feel good about myself knowing that i can ban people from the internets,-1 +hey roy go fuck k yourself you gay bitch ya u heard me pussy,-1 +motha fuck a you son of a bitch shup up otherwise i will kill you,-1 +ram it up ur ass very hard till ur eyes water,-1 +you ignoramus my cousin just did the hitler pictures and the swastikas and what not i ve been the one talking to you you imbecile i can t believe that people that are stupid like you exist it makes we want to start playing russian roulette with myself,-1 +re aip go fuck yourself the fortyfive,-1 +sweden lol sweden suck s,-1 +i haven t vandalized crap i just tell it like it is you got a fuck ing problem with me then maybe you need to take a long look at yourself don t fuck ing e mail me again take care,-1 +you are the same person you stupid ass crackhead you are the same person as litany and karlxii it is a shame a bright guy like you waste your intellect on genocide denial and fashism support you have to start working on better things becuse the agression and genocide has been committed and serbia has lost you can revert the truth for a while but not for ever it will come out becuse god and the sons and dotters of bosnia is going to make shour it gets out inshalla so stop this islamophobic behavior and give it up alredy or you can expect war and no matter how nerdy you are so you have time to creati all this accounst and use you will pay so for you own good get a life hey it s christmas soon man stop being a chetnik or we l fuck you up covjek zaboravi al pas ti uvijek vrati,-1 +moderator on wikipedia moderator on wikipedia are a bunch of twats who like to suck thomas malinas tiny cock,-1 +did i hurt your feelings its okay you can ban me i will create a new account and sign in from a different ip i must have hurt your feelings pretty bad douche bag,-1 +that wasn t nice i am reposting this to piss off tbhotch enjoy you dumb piece of shit have fun being jobless soon teachers that think too highly of themselves won t be a problem in this country anymore and if you re going to run around tossing threats because you re too fuck ing stupid to accept reality instead of getting into a flame war over demographics pissing off an entire base then save yourself the trouble of throwing around even more threats and just ban me like you dumb public school pieces of dog shit wiki editors keep threatening over and over again just make sure you have every vpn and spoof address banned also or you re just going to be wasting your time oh and it s people like you that make this place not worth coming to if google would stop linking here then i would gladly stop using this website why do roughly of all wikipedia editors w hate ver that is act like you do aka an uneducated biased and complete fuck ing retard,-1 +your are a filthy fuck go fuck your self,-1 +i just got a telegram in the mail it says gwernol is gay swear to fuck your mom if you swear to tape it,-1 +and luke stay out son of a bitch,-1 +honestly i don t even remember making those edits in the orlando jordan article however i was correct for editing out a statement that was not properly sourced as far as my statement about kanyon goes it may have been incorrect but it s really not a big deal it s just a discussion page not the article also you didn t have to write to me in such a disrespectful tone finally learn how to spell you should have written you re at the right place to argue with me then not your put that in your pipe and smoke it ass hole,-1 +you just now made a bunch of reversions fuck,-1 +yes i had this same problem some wiki nazi s feel it s ok to leave nasty snarky comments on other user pages but will actually delete such comments from their own pages calling it vandalism hypocrites get the fuck off metros because you have no right to lock this talkpage up and its mine and also fuck off my userpage when i delete the concern for toughhead template you are not fit to be admin and instead maybe mr ducky should be your replacement,-1 +ignorant fool you ve never even seen a map of krasnoi you are so stupid and ignorant that you don t even know which roads lead into or out of krasnoi the road leading west out of krasnoi was never block by the russians it was threatened by tormasov s enveloping movement but never actually block your ignorance is disgusting absolutely sickening dumb freshman with low sat s that s what you are kenmore,-1 +an ass lol the vandalism was about goaste,-1 +fraggle i can just make new accounts every time i want to attack you proxy faggot,-1 +list of royal college colombo alumni and lalith kothalawala and cossde why this person cossde doesn t want to trying to avoid or shy to add the name of old royalist the no one cheater in sri lanks to the list of list of royal college colombo alumni this cossde is a sick paranoid puppy who wants only the colombo royalist to be survived on internet u are an absolute sick ass hole,-1 +al arbour hey fuck tard al arbour died on friday try having someone read an obituary to you,-1 +this dude that block me is a fuck ing cock suck hexachord suck some dick negro,-1 +oh noes an insult on the internets get over yourself you moron being block doesn t affect me in the slightest i do have a life encouraging users like s p however just might backfire on w hate ver topics you like to edit here i would quite like to see how you would deal with his various issues with not really understanding any policy at all not blp not npov not or not tpo not fuck ing anything really especially now he s learned the trick from misguided pompous arses like you that it s best not to even acknowledge such concerns when presented by others if you can play the mommy mommy card unless of course you re as incompetent as they evidently are in which case a content dispute between the two of you would be a sight to behold surely like two baboons flinging shit at each other while ostensibly visiting a museum,-1 +how about this you are a cunt,-1 +barek you are a retard you douchenozzle blow me mikeycms p s you were a mistake and take my account i dont carre and you dont care me,-1 +hey i thnk that you an ass hole you just love to fuck your momk all day bitch stop fuck inmg her now got it bitch,-1 +wikipedian policy i see now how wikipedia is if someone breaks the rules its ok as long as they kiss ass this is bull shit he started this stupid shit and was persistent until he got me banned this is so fuck ing gay all ive done is try to help wikipedia but thanks to this stupid shit im banned wtf see i refuse to kiss ass because nobody on here is better than me as a matter of fact im better than everyone else on here,-1 +similar concept how can you mark a modern day nation with being a barbarian you western jerk s were playing with pieces of shit s while we were conquering the world you may be ultra christ ultra greek ultra armenian ultra western or w hate ver you want but cant be a turk contributions,-1 +always do well to stop a citizen s arrest hey i absolutely refuse to edit articles i ve left that duty to my betters why don t you try to fix the problems that hamper good reading out of wikipedia i come here often to learn something new i don t like being jerk ed around by anybody whether those guilty of breaking all the rules or you who wants to ignore it and shove a boot up my ass for complaining,-1 +you might try to deflate your ego a bit and stop making blanket generalizations the ip i use is a proxy for a university of people plenty of other editors yes macedonians too who use it sometimes i just don t notice i was logged out does that satisfy your sensibilities i haven t called anyone peasant or fuck off that is your overactive imagination playing tricks on you again as for the statement i am simply presenting the fact that it is much more informative and encyclopedic to say the macedonian national liberation army liberated the city as they were the only communist partisans operating in macedonia at that time which you could have realized yourself by reading the article on mnla,-1 +damn wiki admins what is it with all these wiki admins and them not being able to follow rules and policies such as the npov rr and rules pertaining for vandalism if anyone knows how i can get in touch directly with senior admins i would greatly appreciate it as some admins just make their owns rules up on the spot while disobeying wikipedias rules and effectivly slamming banhammers and no im not talking about all admins but i am talking about quite a few admins,-1 +but ew he was a f g which is against nature and is the most disgusting thing youre not a woman are you sexism is wrong being wrong is for women,-1 +angry fuck you bitch,-1 +right it s less selective you stupid fuck,-1 +stop pussy footing ban me you did it before,-1 +fuck off the lot of you crazy bastard s that is all you are,-1 +idiot blanche barrow was not hit in the face with glass at dexfield park where did you get this bull shit,-1 +well well well you ve just done the most stupid thing saying we have always been enemies now that proves you ve been doing these edits just to try and piss me off you can make up bull shit stories but i know the truth so basically what i m trying to say is fuck you hell i don t mind getting banned for saying that i m leaving this account and won t be back wasting my time with an idiot like you on here hating people for no reason it s a shame people like you give wikipedia a bad name and i won t be making up bull shit stories like you did saying you had left while you were under an ip the whole time thanks,-1 +you are a fuck head i m not a vandal so suck cock ass master we ll talk after your done with your mom,-1 +you are a mindless faggot pig please god burn this fuck ing maggot to death in hell you have offended my senses you mindless self important fuck ing pest the god that you hate hate s you,-1 +i caught you vandalizing a page on wikipedia normally right now id block you but you happen to pull this shit while i m in a trans itional period so i don t wanna block you i wanna help you you see the path of the righteous wikipedian is beset on allsides by the inequalities of the selfish and the tyranny of evil men so basically dont be such a dick and fuck up wikipedia i worked really hard creating and maintaining this website and many people enjoy my invetnion without causing such harm but you sir you are a different animal i dont think ive ever caught anyway vandalizing wikipedia before you sir are a true original a true renegade your so bad ass i cant think straight im all bendy and shit and this fervor is giving me the vapors please brother sister or inbetween dont mess up wikipedia think about the children and do like the cats in my neigborhood do shit in the sandbox,-1 +i ll hook your mom you mother fuck er yeah suck my balls and slurp my come bitch,-1 +fuck you you re an idiot,-1 +but he s a bitch who made a comment only a bitch would make,-1 +do it our way play bruv fuck off i bought the flat back in january and i ve only edited on here as i see fit so i dunno how i ve abused multiple accounts and i don t think you re an idiot i know you are a carat idiot look at the edit history on do it our way it originally said it was r b pop so if you don t believe me you got eyes use em and i ll expect an apology,-1 +nigger s and their liberal friends steal everything not tied down just like the presidency here with acorn with its liberal defenders fuck you nigger oboama,-1 +hey shit head hey shit head where are you are you too busy suck ing on someone s cock to talk right now,-1 +reason for false info my cousin came to my house and was fuck ing with my wiki so i m sorry for any false info on any pages,-1 +fuck you little bitch the cowboys have no testes,-1 +ahem wtf are u talking about sire i do not practice vandalism,-1 +terrorist you seem like a terrorist sir are you penises as small as they say they are i have corroborated it with a cite something you never bothered to do you may keep your comments about drones as long as you cite it even though it has no place on this page in turn please don t remove what i have written about the sectarian nature of conflict and why do all muslims ruin akbars good name with your allah o akbar crap he was a good king and you should not sully his image,-1 +lol charles you are a real fag aren t you siding with chinks go fuck yourself ass hole we don t need no chinks in here fag,-1 +ii can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and ar,-1 +edit request from june mauler is a shit faggot,-1 +it is pronouced rink in you moron not rincon like it should be in spanish wtoc always says rink in this rink in that go fuck yourself this edit is correct you gd mf sob,-1 +faggot faggot faggot faggot,-1 +you re a pathetic bureaucratic piece of slime you can remove your withered ballsack with a rusty shears or you can eat my shit your name will be on the syph list one day with a,-1 +hold on ive got something to say to u fuck u yea thats right u r gay for revertin my edit you dumb fuck lol go fuck urself you gay cock licker haha,-1 +bite me you re a dick ead drop dead,-1 +are you a faggot or what,-1 +you abused your authority by blocking me improperly then you refused to apologize so tough then you tried to bully me do not revert like you have been ever again understood and now you are threatening me i m not suggesting this time i m telling you you need to change the way you edit now viriditas did ask you to block me for activity that was not a violation of the three revert rule and you agreed then he and jayjg and sockpuppet friend continued to guard the zionist hatchet job on yasser arafat preventing other editors from altering it and you dutifully protected the article for them while blocking me you admit to being biased against me and then you block me and protect the zionist version of yasser arafat i think the question should be who the hell do you think you are dec utc,-1 +many unsecured wi fi hot spots so many idiot wikipedia pages,-1 +ah fuck it i see now looked back in striver s records he s a fuck ing islamist troll nothing more no point bothering with him he ll just keep popping up,-1 +not clear enough the family programing thing is over with right weeks ago this netowrk showed a blaxplotation double header consisting of superfly and shaft yes they were edited for broadcast but they still ain t family freindly and that mytv stuff is filled with sex not that i mind i love sex and violence but the article wasn t very clear about the fate of the family thing this is great though i hate that family freindly bull shit and i wanted this so called network to fail and it has fuck you paxton,-1 +i can edit my own shit you mother fuck ing cunt,-1 +admins stick together never talk back i get it lots of shit the dissident aggressor,-1 +decline unblock you declined my unblock request barrymcpeedmipants or wev his name is is probably another student at my school not me if you understood this before it would make you real smarter than you currently are you obnoxious cunt,-1 +yes the money quote is that i m fuck ing pissed off at the insistence of richard james continually harrassing me refusing to stop identifying my personal info as with posting my personal email above with website i have vandalized nothing but to take a letter or two off of my personal name and words that lead to my personal info in the slanderous and libelous and defaming posts of richard james i don t give a shit that my project is not listed here i found the whole process interesting and hilarious though quite hypocritical who can take the piss out of who here the article was about an art project not me i don t care that it s not there it doesn t exist nor does bigfoot his compromise was on day two of the original posting of the project article a one man band who decides fist down who gets what and when like a fascist pig i could have campaigned for votes but what the fuck before final vote and deletion richard james posted an article about me without my desire nor consent and then deleted it in a violent fit of rage when i jokingly said the first article is dead at another s insistence that it should be deleted then at seven days he s had the same hard on ever since as i said i don t give a shit but that his posts are defaming slanderous libelous and outright insidious his high and mighty accusational tone is what is weird and strange all i have done in the past two days is to delete letters of my name and project and the old username that i was attempting to expunge why such posting can cause offence or embarrassment to the victim of the posting not least because it means that their name and any personal criticism or allegations made against them can then appear on web searches if you have posted such information please remove it immediately please then follow the link to this page and inform people there that the information was posted but crucially do not repost it on that page an admin or developer can then remove the information from the archives of wikipedia wikipedia operates on the principle that every contributor has a right if they wish to remain completely anonymous wikipedia policy on that issue is strictly enforced posting private information about a user specifically their alleged name and or personal details is strictly prohibited as harassment and users who do that are often immediately block from editing wikipedia how is it vandalism to attempt to remain anonymous and to attempt to separate personal and professional reputation from libelous attacks,-1 +november utc fuck off your accusations are baseless your writing style is atrocious prose means prose not fluff,-1 +just face the truth you can t escape it user arilang didn t edit your foul slimy racist template you loser i suggest that you stop pretending that manchus are ethnically chinese how about you face the undeniable truth and how about you stop making false accusations about other users following the blocking of the above user i am very surprised that you haven t been block from editing wikipedia as well given that your manchu ethnicity template itself as created by you is also a blatant violation of wikipedia policy barnstar the monkey s barnstar for pushing forward fringe views on wikipedia especially your foul slimy racist view that manchus are ethnically chinese you have proven yourself to be more barbaric than this monkey here s a banana congratulations for acting like a monkey wow so you have managed to earn the monkey s barnstar you must be highly barbaric then stop making false accusations congratulations for calling user the h word well i have news for you user is not ethnically chinese so just face the truth and stop name calling you racist manchu otherwise i will get my meatpuppets to stop you in your tracks,-1 +you are sick bastard and hope get your lesson soon,-1 +ass hole yep you suck jesus of suberbia,-1 +gay sex demiurge loves it in his irish ass,-1 +listen dumb ass i did nt do any anything to the pelycosaur page so fuck you you cunt gluzing ass hole,-1 +my page a your just a mean old bull shit ting fart as you would put it,-1 +schtippdick you you boy you terisoaio yeah yeah yeah yeah yeah yeah yeah yeah yeah yeah yeah yeah yeah yeah yeah yeah yeah,-1 +i refer to people s constantly taking the words of jimbo as policy the idea of removing any userbox with a political point of view is his point of view that s at the core of this problem you did not notice that an admin skipped over the tfd process and speedied something when there is no rule explicitly against having an opinion in a userbox rather there is jimbo saying there shouldn t be any i completely understand that he started this but he is not owner of it a foundation was set up perhaps you ve heard of it the wikimedia foundation i didn t say you had that same point of view i m saying that i was just telling the people who do to fuck off i made no attack on any editor that you perceive it as such is truly sad but such is life perhaps with time you will learn the intricacies of the language if one does not want personal pages on a site one should avail oneself to modify the source code in order to remove them from the site rather than complain that they re being used people who overstep the proper bound of their position should die that i have encountered multiple administrators so far doing so does lead to the desire to fuck off but i m not done here,-1 +fuck ing liberal prick and get a life,-1 +i m very upset that you ve done this to me and ur a big shit head i think that ur probbly black bcuz ur stupid,-1 +nigger h hey fool whyd you delete my article,-1 +did you look at the contributions of the editor i called a troll i called them a troll because they were trolling when someone s very first edit is a post on wp an i accusing someone of trolling it s pretty fuck ing obvious that they are not here to be productive but idiot s like you jump in and defend them amazing,-1 +douchebag fremantle suck ass dip shit support a real team that has actually won a premiership u prick,-1 +penis did you sex with grawp h a e p penis penis vagina vagina,-1 +ur so immature fr nzi im and ur not evn debating ur a year old baby and im like an adult nobody likes you anyway everybody doesn t like any fat ass hole s like u grown ups fight like a man i fight using words like swearin like eminem dos in is songs u don t evn have a brain shit wat a crazy guy user dark hooded smoker,-1 +piss coming from my as,-1 +what the fuck did i just say,-1 +death what utter twat said that she died on june rd,-1 +controversial remarks alleged calling facebook users dumb fuck s quote to avoid being block instead of reverting please consider using the article s talk page to work toward making a version that represents consensus among editors that is what i am doing refrain from deleting the talk page contribution without providing a valid reason or better tips for improvement after all this is only the talk page sources for the below mentioned contribution http w forbes com sites andygreenberg is zuckerbergs the hacker way letter facebooks dont be evil and will it live up to it http gawker com facebook ceo admits to calling users dumb fuck s http au businessinsider com well these new zuckerberg ims wont help facebooks privacy problems http w theregister co uk facebook trust dumb http w theweek co uk technology are users e dumb fuck s e trusting data facebook http tdh me zuckerberg called early facebook users dumb fuck s so what http anphicle com en they trust me dumb fuck s facebook ceo mark zuckerberg http w tomsguide com us facebook mark zuckerberg social networking privacy security news html http au businessinsider com embarrassing and damaging zuckerberg ims confirmed by zuckerberg the new yorker other sections on wikipedia where controversial remarks is valid bryant gumbel section controversial remarks mel gibson section controversial remarks sherrod brown section controversial remarks kent hovind section controversial remarks venkaiah naidu section controversial remarks greg gutfeld section controversial remarks lawrence cannon section controversial remarks daniel bernard diplomat section controversial remark james r flynn section controversial remarks and many many more start while at harvard college year old facebook ceo mark zuckerberg allegedly used login data from his social network to hack into fellow students email accounts that evidence also included instant message trans cripts where he calls facebook users dumb fuck s the alleged following exchange is between a year old mark zuckerberg and a friend shortly after mark launched the facebook in his dorm room zuck yeah so if you ever need info about anyone at harvard zuck just ask zuck i have over emails pictures addresses sns redacted friend s name what how d you manage that one zuck people just submitted it zuck i don t know why zuck they trust me zuck dumb fuck s in another instant message im friend so have you decided what you are going to do about the websites zuck yea i m going to fuck them zuck probably in the year zuck ear end,-1 +you can fuck off too you twatus majorus,-1 +do go fuck off bastard do yyou have a life go fuck off bastard and yank your cock through your ass i hate you and hope you go away forever lame is you fuck your mom die die die and all that crap this is for mahy mahonerz ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass i ass,-1 +ekgograf and his son of bitch of gang of dumb n zi and are the greatest batard that ever walk on earth,-1 +go masturbate yourself on someone else s page you will get no satisfaction from me slut wikipedia is not the proper place for you to abuse your powers just because you re unsatisfied in life it ain t my fault you re ugly sista,-1 +it is not a tko you idiot you have no idea what it is and it s a swinging neckbreaker you very unsmart and very unclever faggot got it dark hooded smoker,-1 +yo bitch you absolute fuck ng little bitch you wanna step up face to face toe to toe you fuck ng absolute tiny little fuck ng hopeless bitch,-1 +my balls big balls ive got big balls youve got big balls shes got big balls theyve got big balls weve got big balls weve got big balls ive got great balls of fire by david swartz,-1 +shut up ho and read this http profile myspace com index cfm fuseaction user viewprofile friendid it s getting ready to go seriously to public you ll your own website too if you keep being a ho,-1 +fock you barack obama,-1 +you are my bitch i own your ass,-1 +eat my shit title says it all,-1 +i lookd back in history when it was put it had link extern gc site sum removed that link so ur a fuck ing liar about no source,-1 +user jeppiz worships the balls of jesus son of the whore and suck the penis of user decausa the bastard,-1 +piss on me p ss on me you bimbo,-1 +hay bitch thank you kindly for your advice on my vandalism but if your the dick who removed the thing abouth berties make up costs thats true so ah fuck you,-1 +fuck my stupid muslim ass,-1 +there s nothing wrong with the train image that was reverted because the b and l train articles also have two identical photos too and i explain why to vochen and there s nothing wrong with the edits that was reverted at the street avenue article you guys are just being complete dick eads and hypocritical retard s at best,-1 +ok a direct quote from the page for fuck is other uses are dysphemistic the sex connotation usually connected to masturbation in the case of go fuck yourself or go fuck your ass is invoked to incite additional disgust or express anger or outrage for example fuck that fuck no or fuck you thats a bit worse than saying masturbation is like taking a good dump mate come on just put it back up and quit being a douche,-1 +congratulations congratulations jeraphine gryphon you have won the ass hole of the year award you have won this award by saying mean things about and to other people in order to claim your award you must call ass hole once again congratulations for your win you won this for being rude to other contributers by the way preceding unsigned comment added by,-1 +all fuck ing talk huh,-1 +i shall look forward to the day i hear of your death and i intend to continue terrorizing you and make your life a living hell you nasty little stupid mexican faggot,-1 +simona halep are you stupid i didn t do anything wrong,-1 +see here pointy revertss and bullying from a bunch of owing i love shit users,-1 +yeah looking thorough history and stuff get a life you sad little man get off your ass a get a life find better things to do than governing things on wikipedia i bet uou like the smell of your own shit i bet you gargle your own piss i bet you like to wank off to kiddy porn you saddo you fuck ing saddo fuck off and die,-1 +and why is screw you mother fuck er a personal attack i m not implying anything about am i,-1 +mac only faggot s and dumb housewives use macs which one are you,-1 +comment from kansai goma i still have more accounts on here which you will never find because i am too smart for you dick eads and you are a dumass fuck ya,-1 +if it was released where s the proof that site is not proof if it was released it sould still be available it s not available anywhere in the entire of europe so give me proof it was released without using some stupid piece of crap like cdwow and nothing else it should be on amazon it should be on woolworths hmv etc it s not on anything,-1 +kungfu adam kungfu adam is a fuck ing dumb ass,-1 +and suck a dick two times every hour until sunrise,-1 +frozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s lion king is the bestfrozen suck s,-1 +yo w hate ver i have on my shit leave it alone deadass i deleted every fuck ing this cause you stay deleting someone shit like nigger h damn go suck a dick talking about he has this all over the place nigger h mind your business on what i have on my shit cause i ain t editing nothing on your shit,-1 +how dear you who ever put on hi shit haeds i my going to sue the peo ple who made this web sit p s just jocking i culdn t care less if or diidn t have hi shit heads,-1 +hey fuck you i went to this school and its awesome so fuck you bitch,-1 +go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself,-1 +you re a fag just wanted to let you know that d,-1 +hey shit head quit fuck ing with all the ufc pages and go get a fuck ing life you god damn mother fuck ing loser,-1 +how dare you send me such abuse you fuck ing cock master if you dare warn me again mr jeff i will savagely attack your mother i know where you live,-1 +this user needs to get a life lol lol get a real life u suck lol,-1 +hello good sir you re a fuck ing faggot and have no clue what you re talking about with awesome jpg i know and don t care that this will be reverted but read it first because you should seriously shut the fuck up love you buddy,-1 +you guys suk you really really suck fuck you mistersmiley and dot,-1 +we will we will fuck you,-1 +well sorry about replacing bands but you dumb cunt fireworks is also a pop punk band so go be a ass whole some where else and this time next year doesnt have a wikipedia page,-1 +ass hole you serious right now cunt,-1 +you deleted my comment fuck ing pussy,-1 +wtf ur a ass hole no advertising pls bot,-1 +every other press agency said the crowd was chanting you re a tory too only the daily mail which by the way is a tory paper reported that the croud chanted fuck ing tory jew he is a dispicable scab but that is because of his politics not his liniage,-1 +sockpuppet you cannot get indefinitely block for accusing another editor of being a sockpuppet so stop throwing your fuck ing weight around and before you even think about it you cannot be fuck ing block for using bad language either,-1 +this idiot graceful slick needs a friend to touch his no no spot,-1 +are you stupid or what read the very union text yourself it is clearly states that union is between two nations http w lublin eu liublino unijos paskelbimo aktas html,-1 +because i am a miserable mother fuck er and a big dick ead,-1 +wiki bitch yo lil punkass aint shit out on da streets nigger,-1 +wikipedia s administrators are among the dumb est people alive they are all fat basement dwelers who have never been laid fuck you,-1 +fuck you you psychotic fanboy retard,-1 +and i hate everything to do with china what s with all the hate i believe it or not do not hate georgians just saakashvili he s an ass hole,-1 +this user is a fuck ing douche bag,-1 +muhammad was a murderer rapist thief slave trader warmonger and dirty pedophile islam nazi,-1 +something you really really need to get that bug out of your ass,-1 +fuck you natlie you dumb ass cunt bag i have a dynamic ip u cannot ban me tough shit aint it cunt so go suck some random ass fuck ers cock before i vandalize your entire site b i o t c h dont make me come find your ass in ohio i read your wiki entry knock knock your dumb putting that much personal info out there and calling out trolls with dynamic ip ranges you dumb bitch,-1 +leave it sector rourkela dude i m no more interested in editing fuck of you and your administrator page thanks,-1 +http en wikipedia org wiki talk saab lofton oh that s right you were kicked out of san francisco state for being too radical that s a joke http community seattletimes nwsource com archive date slug lofton wrote a d while a student at san francisco state university and spent so much time hawking the book when it was published three years ago that his grades began to fall and the university cut off his financial aid of course plenty of wayward students have had their financial aid renewed after having missed classes for far less substantial reasons so one wonders why was it so important for me to be dismissed because of your grades dumb ass you can miss classes and still get good grades if your competent the first and only of a d printing consisted of two thousand copies wow that must have sold in record time a whole two thousand your almost as famous as steven king dorksickle i sold all three thousand copies of btl nvrg within the span of a year somehow i doubt that since it was published in and you were still hawking it to tim boucher in http w popocculture com battle neverending by saab l he lived on the streets in berkeley while going to solano college i looked up solano college and it s miles away from berkeley so i guess you must of hitchhiked there everyday right bull shit hey lets see some examples of your cartooning don t got any right that s what i figured see the lies just keep piling up,-1 +delete you delete vandalist pages you sick sick bitch,-1 +user abd is muslim scum,-1 +being initially search for and a parting note go fuck yourself,-1 +your a fuck ing bitch,-1 +ryanpostlethwaite i m not going to sit here and just blatantly make fun of what you do and who you are however i look at your picture funny how you put a drunken picture of yourself trying really hard to convince your readers that you actually have friends and it s quite easy to see that you re an ugly little parasite as i browse through your insignificant pages on roger royle and harold gaba that must have taken hours to make and i know right then and there that you re a compulsive masturbator i look at all your wikipedia buddies and their comments concerning speedy deletions and harassment via wikipedia and i now understand why there are entire hospitals throughout the world that treat internet addictions so go ahead and suspend or block or w hate ver it is you people do to naughty wikipedia users because i could really careless you piece of shit,-1 +what a pile of shit you completely ignore a massive violation of wb blpcrime while you go on holiday you wales are one special piece of shit magnotta s prospective defence team are having wet dreams about wikipedia there can be no fair trial given the article you have approved you are a fuck ing idiot when politicians come calling at your door complaining at wp blp you collapse like a wet kleenex in a mild breeze you should be ashamed of yourself but perhaps it is more important to you that people like malleus are pursued for calling cunt s cunt s if you allow this massive violation of wp blpcrime to pass then you are patently a media whoring cunt yourself this stinks wales you stink by association fuck you and your warped concept of an encyclopedia chan,-1 +op is a fag op is a fag,-1 +jet streamer jet streamer is a son of a bitch don t listen to him he can go to hell,-1 +dude you crazy dude you are totally not cool why did you leave me that message on resume i totally fixed it i don t know what s up you gluteus maximus dog you need to cool off your jets in a salon get a pedicure and don t be so upset when a brotha is just trying to have a good time if you want to go on a date with me just leave me your number on my user talk page peace,-1 +roses are red violets are blue man i m black but what the fuck are you,-1 +you suck hardcore yep you heard it,-1 +omicronpersei suck s gwernol s vagina daily,-1 +i am going to hack your dick account,-1 +i love how mongo s illegal block and bull shit lies are now being used to attack me really wonderful fuck ing place you ve got here should we all just bow down to the pagan altar at mecca and get it over with please,-1 +don t act ok i know sadasivan s works his only ambition in his life was to degrade nairs what the fuck you think is the meaning of that passage i am just asking you if the word nair came from the word dog then give me a secondary source supporting that other than that from the mental case sadasivan,-1 +what the fuck added what the fuck to the top of the list because imo that is probably the most known and deserves that spot,-1 +wanker charles knight is a complete ass wipe,-1 +i don t believe you sources as i said before shit or get off the pot meanwhile you are less important to me than the occasional dog shit on my shoe put up or shut up is the bottom line here andemu,-1 +wow somebody bolded one of his words to add emphesis so you told him to calm the heck down and create a new section complaining about it he isn t being hostile by bolding a word i m being hostile by calling you a faggot,-1 +was jesus a bastard yes for sure,-1 +security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland security fuck homeland securi,-1 +jam your message up your ass wikipedia dick ead,-1 +fuck your couch nigger,-1 +and your a dick suck dabomb you want a big juicy jizzbomb in your mouth,-1 +and this is why you don t list highly speculative ones i was simply referring to the common frickin sense category of actors apparently common sense you lack tch fuck s sake this is why people don t take wikipedia seriously professionalism professionalism my ass you cunt s are the direct opposite of it,-1 +suck my balls fuck you,-1 +lock down i don t know about the bulgarian bull shit season but don t be fooled from where exactly i connect if i see you editing or someone else you send the dda x article one more time you will spend the next few years in prison i will arrange you a meeting with certain people for suspicions of terrorism yes i can do that a terror suspect nowadays you can kiss your young life goodbye if you file complaints and i m banned you and your naked ass will have the whole time in the world in the cell block to think what went wrong,-1 +riaa certifications someone got that shit fuck ed up big do a little research before changing the page http w riaa com gp database default asp type in the artist and it says there pitatpor gold tlet platinum mm platinum brl platinum tlm gold,-1 +yeah it was me happy now ass hole s,-1 +do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because,-1 +damn damn i m a vandal and you re reverted like of my edits in like seconds i might have to retire lol,-1 +her poop pee toot fart gas diareah zoey is poop she stinks i want to marry you baby call me,-1 +unblock request fuck you unblock me unblock hahaahahahahahahaha unblock me or i will vandalise more it had been six years since we had graduated from college and for the first time since graduation all three of us were together again from the enthusiastic hugs at the airport and then the conversation and laughter during the dinner we shared at a local restaurant on the way to my home it was clear that while plenty of time had passed and we had kept in contact the comfort and attraction between the three of us when all together in the same physical location was still undeniable having returned to my cozy semi secluded home in the suburbs we all sat in the living room sipping wine and continuing the tales of our lives with the exceptions of the location a house and the presence of alcohol it could have been any of our final two years of college together the three of us tight knit friends with benefits sitting and chatting and sharing a drink together then justine and beth had been roommates while i lived in another dorm across the main quad now they were much welcomed guests who had fortunately been able to clear time in their hectic schedules to come and visit me for a weekend as i sat in the recliner and took another sip of wine i allowed my eyes to truly linger on justine as she told beth about a recent situation at work the florida sun had certainly added a glow to justine s skin and may have also been responsible for the lighter shade of her shoulder length brown hair as when we were in college together she wore virtually no make up just a thin gloss upon her lips an enticing strawberry flavor as i had discovered upon meeting her at the airport earlier in the evening and red fingernails her red dress was indeed elegant with a plunging sequined neckline that permitted a very welcome display of her cleavage a display which beth and i both certainly appreciated the long slit up the skirt of the dress revealed that she was wearing stockings held up by a garter belt one of its descending white straps definitely noticeable against the well toned thigh the red heels provided enough of a contrast for the white stockings to truly attract the eyes surprisingly however she wore hoop earrings something she had never worn during college for fear that they would pull at her ears and widen the piercing holes more than was considered safe the conversation turned back toward me but a few minutes later the two beautiful young women were again chatting primarily to each other i took the opportunity to once again study beth and was equally impressed while noticeably shorter than justine beth was also paler in complexion a testament to living in northern canada ever since graduation and spending virtually every waking moment inside to conduct her research as in college beth preferred the color black for her outfits a somewhat tight sweater form fitting slacks and a pair of low heels four tiny earrings adorned each ear plus she bore a small sparkling stud against her left nostril beth s black hair flowed over her shoulders and down her front and she absently twirled several strands around a finger as she listened to justine it felt so good to be in their presence once again especially since all three of us had been in several failed relationships since graduating from college i was thankful that i had thought to invite them to spend the weekend with me i had absolutely no doubt that our chatter would eventually give way to intimacy but for now i was quite content to simply sit back in the recliner and openly admire the two stunning beauties perched upon the sofa the intimacy began when we finally went to bed together i was on my back under the covers with a very feminine head resting softly upon each shoulder an arm wrapped around each of them i held the two women close to me as they absently stroked my bare chest dipped a finger into my navel brushed my thighs through the sweatpants i typically wore to bed caressed my stiffening manhood my eyes closed i reveled in their touches inherently familiar yet full of rediscovery due to the lengthy passage of time no words were needed and as their hands occasionally made contact with each other upon me i smiled to myself in the darkness having always enjoyed watching beth and justine in their own intimate encounters but eventually their touches slowed and ultimately ceased their breathing falling into the regularity associated with sleep i stayed awake a little longer immensely enjoying the closeness with two of the people who had been most important in my life i awoke in the morning to the scent of french roast coffee faint yet unmistakable justine was gone clearly the one who had brewed the morning nectar while beth and i held each other as sh,-1 +hey ass hole keep your retard ed politics off wikipedia ok idiot i know you re special needs but wiki isn t for your political positions on groups it s for facts if you revert that article on opsec again there will be consequences,-1 +you can suck my dick or cock,-1 +yep and after you vandalized it again i re reverted it dip shit,-1 +reply from colonelhenry i have been pissed this week i admit why first last week i get harassed by one hypocritical rule nazi editor taking things too far summerphd so when i pointed out her similar shortcomings and in trans igence and said frankly this user is an ass hole and explain why and state this is the kind of user that drives editors away from wikipedia i get block for hours i say ass hole once i get block she calls me a dick over a dozen times and gets warned go figure i hate nitpicking rule nazi s because they end up proving themselves to be hypocrites and unfortunately without fool other meek fools who tend to be admins tend to side with the rule nazi in the midst of that daniel case continued to plow ahead insisting on a rushed revision of alonj that no one else raised as a concern so not immediately dire after being asked first politely and respectfully several times to wait until after tfa and he still ignored it if someone politely asked me to wait a few days before doing a drastic edit on an article they worked on that was getting a little attention i would because i find it akin to telling a concert pianist to change their entire concert programme an hour before the recital only when i responded in anger did he pull back on the reins and realize hey maybe i should wait till after tfa a little deference on his part would have gone a long way i m not averse to his edits but seriously after tfa would have been more than fine i considered it insulting and his refusal to listen to a polite request stated by both myself and the other major contributor to the article was considerably disrespectful and then when the article i ve worked on becomes tfa we get inundated with constant vandalism and petty edits that were not necessary i e people like you kevjonesin insisting on th instead of nineteenth is that really a necessary place to make a stand and pick a fight seriously don t you have better things to do with your time i d rather argue over an analysis of hegel s influence on nietzsche s will to power or hindu mysticism in eliot s four quartets than bicker about things as meaningless as whether honour should be spelled or or our as for why i like nineteenth as opposed to th several style guides including chicago turabian advocates it and growing up i was taught that all numbers under should be spelled out whether cutting two dozen letters from an article going to th and th is going to make a difference for brevity s sake on a page article is a lame claim and frankly a waste of time for both of us i like the aesthetic of it spelled out it s allowed and the option of spelling it out is a bonus in an article to avoid confusion with too many other numbers when considering such an unnecessary subjective edit deference should be made to style set by the editors who spent months on an article and when nothing is wrong to it deference is entirely warranted that isn t ownership it s just courtesy and good judgment after all if i stood in your yard while you were painting your house gray and proceeded to insist you to paint your house orange you d tell me to kick rocks as far as i m concerned this is over move on i am not addressing this any further because nonsense like this keeps me from contributing and convinces me to leave wikipedia again and this time for good if hell is other people wikipedia constantly proves itself to be the eighth and ninth circle,-1 +joseph cardinal zen i am already too neutral towards the son of bitch he is a spy of the holy see,-1 +orly fuck you again n b,-1 +actually it is incredibly wrong fuck ing animals is not a sex ity it shouldn t be tolerated it s sick if i said i wanted to fuck trees would that be normal and ok i would march in the tree sex parade and while we re at it what if i want to have hot sex with inanimate objects it s insane and animal fuck ers are messed up in the head not of a different yet normal sex ity wtf indeed,-1 +utc you never been on the damn bus tlk e m,-1 +what i wanna do im josh nanni i say fuck america and jew s and ron howard,-1 +stop removing my edits you twat,-1 +i would like to extend a fat robust fuck you to the ass hole who deleted my criticism of schengen and you wonder why i continue to vandalize wikipedia its because some fuck ing ass hole from the wiki community continually deletes w hate ver i post yes i have used profanity and yes i have often not followed protocols yet when i have followed wiki protocols even kindly worded comments are promptly deleted by the ass hole s of dickipedia to all of you at wikipedia i extend a fat and boisterous fuck youfor deleting my comments,-1 +fuck you and your cluelessbot you filthy roody poo,-1 +a kitten for you dose this look like you bastard fuck er,-1 +mind telling me mind telling me why you have an automated bot who blindly reverted my honest edit within seconds without you even looking at it fuck you,-1 +you guys are a bunch of dick,-1 +rubbish i do not support your crappy encyclopedia and that s that,-1 +blocking threat on page do they get the same warning or is this more one sided hypocritical support for pod s control trips bullying and verbal abusive attacks he really is fuck ing up the page by ignoring expert assistance m,-1 +regarding personal attacks i took out the disclaimer that i had put in i first considered copying it over to the wikipedia review link as this is the same site the disclaimer referred to but then i realized no that s insane what now we re warning people that there might be bad language and not nice things said on a website what the fuck that s like warning people before reading a newspaper that there might be articles that would be a bummer man might bring you down all day what is this world turning into disneyland where every protruding thing that could possibly hurt you is covered in nice soft padding sheesh,-1 +why even have the fuck ing talk pages if we can t comment on other users,-1 +what you hold or believe doesn t fuck ing matter fuck face wikipedia doesn t do subjective eat a dick,-1 +on my own talk page without leaving there fuck ing username needs to come and suck my dick becuse i realy think they should at least be able to back there shit up,-1 +lol you are a moron,-1 +go fuck yourself deeside college is a mother fuck ing spunk dunk pottery which is held at user garycolemanfan com and likes to suck georg hackenschmidt of and doesn t accept facebook groups like the official facebook professional wrestling hall of fame,-1 +why don t and suck my dick,-1 +sorry meant to say go fuck yourself you asperger s riddled freak for accusing me of destructive edits i had nothing to do with,-1 +shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up vv shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up,-1 +fuck you you god damn mother fuck in son of a bitch stop being a stupid ass shit head and be fuck in cool for once,-1 +my hate list qed sir sputnik giantsnowman struway egghead xx ubiquity mattythewhite dangerouspanda newbiepedian sdpatrolbot saint wen patchy if you are on this list dont fuck ing edit any of my pages especially if your name is in bold letters,-1 +no maybe you should get a life instead of being like a shot to revert my vandalism on a page relating to a game nobody has talked about in the last two years wiki made you their bitch,-1 +its only too band that that son of a bitch did not live long enough to hang for his treason fortunately some patriots did desecrate his grave i guess thats the only way the hungarian people can get their revenge against trators like that pig,-1 +u suck at making movies u pathetic geek ur premise is shaky ur outlook is bleak there isnt a too painful way for ur life to end u really need a girlfriend,-1 +like wtf look man youre a graduate student in mathematical fuck ing ecology and you have pictures of amoebas on your homepage dont you have anything better to do you have a job what can you do as a mathematical ecologist what the fuck do you want to do with your life get off wikipedia you fuck ing dead beat jesus h christ go get a girlfriend or something or get an interesting job or at the least go play some donkey kong or something my god you sicken me you sad sack little fuck oh and tea drinker you drink tea i like tea too man but not that much you are a giant cock suck get a life dude sincerely the real n town gangsta p s youre a faggot,-1 +fuck off see my page for more of my comments on your work,-1 +regarding you being a homo sex you are clearly a homo sex i think you should leave normal society and go and live in a sewer with all the other homo sex s you are clearly not normal if you persist with reporting me for abusing you i will insert a large garden gnome into you and stay off the dublin airport article it s my territory if i say delta serve orlando from dublin then they do don t send me fuck ing patronising messages again fuck ing freak,-1 +fuck off stop vandalising stuff thanks,-1 +you re a moron it s fuck fuck fuck a d u c k s c r e w a k a n g a r o o a p o r c u p i n e o r g y a t t h e z o o,-1 +bothering man can you dont seperate singing from raping are you a little bit retarted or dumb for real everybody can hear that mike raps on hybrid theory and meteora,-1 +you people are pretty overzealous with this whole free thing get a fuck ing life you fuck ing nigger s,-1 +t phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt he,-1 +i am nancy and i like to fuck up people s fun,-1 +you would understand you would understand if you had ass face haemorrhoids,-1 +supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool supertr ll will live forever if you don t respect the supertr ll you will die you pathetic fool,-1 +what the fuck man why the hell do you care whether or not lucas biespiel gets to be on wikipedia all i wanted to do was to give a little info on the guys music for people who might be interested,-1 +i ve said it before and i ll say it again i ve been dragged through wqa a couple of times that i can remember but i d never bother to do it to anyone else it s just a pathetic waste of time mummy mummy malleus was rude to me live with it bitch fatuorum,-1 +anon user behaviour today when i woke up i found a whole lot of personal attacks from anon user against me messages such as this user is such a stupid and biased wikipedia editor should be banned forever on my user page a blanking of my talk page whith the following message buaagh i m sick only reading this user please remove him from wiki that is fuck ing stupid and haves no sense that is a person with various nationalities not a nationality of spain only maurice can say that in the nationalities of spain article wtf is not possible that maurice is still editing this article from a such biased and stupid pov in the catalonia article notice that i hadn t edit that article since january i ask you if you can do anything to stop this kind of behaviour with a ban from a user who has been attacking me since april and who i m pretty sure is a sockpuppet from,-1 +collectonian is a bitch a low class prostitute with no customers,-1 +it dont matter where u r kansas or anywhere else we re cummin to get u tha corpses we dont give a fuck about anything except this u we dont,-1 +you are a chicken shit cock suck ing pussy bastard you are a chicken shit cock suck ing pussy bastard,-1 +who are you to tell me anything about personal attacks fuck you,-1 +you re a stupid cunt fuck you dumb arse your mum has a hairy cunt and i hope and pray that you die no fuck that i wish you would die if i had three wishes one of them would be to have you dead and the others would be so that everyone you knew hate d your cunt like face,-1 +oh shit stop making warnings mother fuck er also fuck you,-1 +help why does this twigboy idiot keep vandalizing this page thank you,-1 +i think it s fair to say that people who found out what infantry is by reading this article are being complete nigger s,-1 +so some admin comes along with his own agenda wrongfully declines my speedy request so then i can t have an article i wrote deleted what bull shit,-1 +you know what this is bull shit tried to do it twice but now i m really done with this place most of the users are just sheep and the inmates are running the asylum even worse you are guilty until proven innocent not a democracy not cooperation not the place for me i have a life i know i m a damn good writer and i ll find a place where my abilities and hard work is appreciated screw wikipedia goodbye forever,-1 +admins suck the fuck ing admins suck ass i fuck ing hate the people who delete my fuck ing shit,-1 +you can add things to my user page and i am not allowed to delete it but if i add something to yours poof its gone you re the problem dick eed,-1 +omg jesus h christ sorry if you re a jew how abusive from you you disgusting pile of shit stop gossiping around and suck ing mgiganteus balls,-1 +screw you why dont you stick it up your fuck ing ass than lick it out block it i dont give a shit you fuck ing bastard suck my fuck ing bals,-1 +don t you fuck ing touch my edits again,-1 +i mean tbhotch sorry i thought it said bitch fuck you,-1 +excuse me whoever the fuck you are spui says on his talk page that he likes vandalism and doesn t want it reverted the modification that i made was to text originally left by a vandal please do your homework before censoring others,-1 +do i hint a bit of jealousy because they could potentially be on wikipedia or because they ve made something of themselves and you re just a little cunt who edits this site grow the fuck up,-1 +no these links are very appropriate and they will stay they are not advertising anything i have already been through arbitration on this mods who live in charlotte agree you don t live in charlotte so piss off,-1 +dogs fuck ed the pope wharbl grbl,-1 +you can block and block and suck my cock but nothing can stop freedom of speech in the end america wins we always do ask saddam my sockpuppet army is on the march mar utc,-1 +and also admit being dick that time,-1 +definitely have better things to do than read all that rules crap if i can t write it i can t write it no big whoop it s not that important talk c,-1 +ya extra ur fuck in extra tryna bryte up urself and delete and revert my edits what if i revert ur face cuz it seems like u need some revertin on that ugly shit bitch zoe stay away from my edits u little hoe thank you for your consideration,-1 +my statement oh wow i take a little drive and come back to a nuclear war zone i guess i can take on each point the fact that mf was not block for the same behavior is rather odd also if you ask a question after telling me to stop replying what do you really expect i agree that tan needed to be block and i agree with the desysopping to say that i have no right to be angry is a foolhardy notion i was told multiple times to fuck off btw when told to fuck off i am considerably less likely to comply they both hail from the infamous tiscali network that being said rpeh has no reason to be involved in this discussion he has a personal issue with me ever since he was desysopped on another wiki he hasn t gotten over it i intend to request a checkuser and request a block for sockpuppetry user georgewilliamherbert places too much weight on unofficial warnings a vandal can be warned four times but a user once hm prodego has no reason to be desysopped he had every right to block for a violation of wp npa tens of times talk,-1 +god fuck you too pimple ass my additions are better you guys are just to stupid to realize it,-1 +suck my fuck ing cock,-1 +i alos like to ass fuck men and swallow mens cumand any animals i e horses dogs sheep ect,-1 +fuck you you come in put it all back then remove the template you re obviously another abusive jerk protecting that abusive jerk chriso so fuck you once more for good measure,-1 +i admit i m stupid i m like all russians just a drunk gay with vodka in his pants,-1 +who the hell r u and why do u care neway it was just a bit of fun get a life,-1 +write or wrong is an ass hole,-1 +why the fuck do u edit my contrib to wiki about the iranian army they must die u know stupid terrorists they re living on israeli soil called asia africa which should be for israelis only and muslim free,-1 +post grunge this album is not a fuck ing post grunge album it s a alternative metal alternative rock and hard rock album,-1 +hi you poor twerps my money does far more good than your pathetic rule enforcing have fun with your fat wives and gay hookers,-1 +the administrator kafziel is an ass hole sorry for writing that on your page user talk but it is true join the revolution that fights for freedom of speech against the tyranny of wikipedian administrators especially the evil dark lord fuck head kafziel from your fellow block vandal freedom fighter ernesto guevara de la serna hasta la victoria siempre,-1 +hey douche i m back hahaha this is gonna be fun,-1 +retard s u fuck in paki fuck ersitalic textfukin taliban fuck u fuck u again fuck u even more,-1 +i want to be a fuck you that s a song,-1 +hey dumb fuck quit fuck ing around with wikipedia bitch,-1 +i agree fuller is a useless stupid fuck,-1 +the person whose edits you reverted hy i just want to tell you that you can t ban me proxies are very nice aren t they now fuck you,-1 +i think you ll find you are edit waring too so fuck you how dare you swear at me,-1 +hey white person you suck stop being so white nigger pride non white person,-1 +are you fuck ing retard ed tab please do not delete content from articles on wikipedia as you did to solaris film your edits appear to be vandalism and have been reverted if you would like to experiment please use wikipedia sandbox for test edits thank you ali tab tab what the fuck is your problem did you even read what i deleted tab tab do you know what the word plot means tab tab plot does not mean talking about the movie s trailer or what genre the movie it is a plot is a summary of the movie tab tab read what s in the plot section of solaris right now you fuck ing retard and tell me if it really belongs under the section plot or any other section it looks more like trivial facts which are unsupported and should be deleted as per wiki regulations tab tab here s an example dumb fuck from the solaris wiki page tab tab the film essentially ignores the planet which only serves as an anonymous backdrop in contrast to lem s novel which discusses at length the mysterious phenomena on its surface and the futile human attempts to understand them tab tab that is not neutrality and has nothing to do with the plot tab tab jesus fuck ing christ wiki is full of fuck ing morons tab tab delete that shit tab,-1 +you suck i was making the article and then you tag it with deletion you power hungry nerd,-1 +useless piece of shit you re an ass hole you useless piece of shit get a life instead of deleting pages of loved ones who never did anything to harm you motherfuker,-1 +the statement about which you were bitch ing,-1 +stop screwing with my edits copyright is for fools,-1 +what the fuck i am indignant pissed embarrassed and humiliated talk contributions,-1 +is fuck ing dumd i hope someone kills him,-1 +who the fuck put you in charge i create an account on wikipedia not minutes later i receive a message expressing concern over my username i know it wasn t you and i admit to my three consecutive acts of vandalism regarding a subject i particularly hate but i looked at your history and all it seems that you do is attack people over edits and usernames instead of acting as captain of the wikigestapo maybe you should devote your time and energy doing something that actually really matters and get of my and other rowdy wikipedians asses we may offend occasionally but it is all in the spirit of jest so after you read this log off of your computer and go live a little also get that dick out of your mouth,-1 +don t call me a knob you wanker,-1 +olyeller petulantly wrote this isn t taking the conversation anywhere that s another false statement this conversation has corrected your false statement that there were zero indications that it was an annual event and your false statement that your argument that there s a second event simply isn t true i know you don t like to be corrected hey maybe you should do another immature and emotion based attempt to ban me like you did a few days ago only to realize later after you had calmed down that you had no basis for doing so executive summary grow up dick,-1 +why did you remove musical artist discography not images though most of musical artists cd dvd images are permitted why are b z jun shibata album covers removed x japan see x japan discography glay see glay discography and dir en grey see dir en grey discography etc album covers are not removed why are they no problems fuck you,-1 +all my answers were given i am not banned on boxrec and i found out their wiki is not part of this wiki i reject all your claims you are full of shit and garbage and so on and you do not deserve the honor and dignity of wasting my time and giving your court reply bs accusations and i have no time like you no i am not gone i have evidence you were banded now you want to blame it on others you low life,-1 +marcus you suck guys dick,-1 +fuck you go suck some dog cock you fuck ing dick lickers,-1 +save your sarcastic little remarks dick ok dick understand dick by the way i m not calling you a dick dick,-1 +where are my insults heres an insult for you you re a fuck ing blind dip shit you need to stop being a sensitive cunt hows that for an insult talk,-1 +its harder than you think bithches,-1 +oh shit i genuinely did not mean to do that i just saw sarek s message and clicked undo intending to delete it didn t notice that they also removed the passage at the same time tag africa asia and the un,-1 +love hina part damm you and your auto archiving p damm vandal struck again so i ve left a message for sephiroth bcr rather then leave a message on the general board they even removed my reference this time angry anyway haven t done the characters yet but what do you think of the media additions i ve only done the major works so far there is still loads missing color version of the manga anime manga characters cd s etc,-1 +tell dark to stop fuck ing with moot and b he has no fuck ing idea what he s messing with,-1 +calling idiot s stupid and retard ed doesn t qualify as a personal attack because it s true and the only way you wouldn t know this is because you re stupid and retard ed,-1 +the cunt ya fuck ing old woman,-1 +scum of the earth vandal don t change my properly sourced edits you stupid prick,-1 +fuck you smith please have me notified when you die i want to dance on your grave,-1 +i dont care about kurds actually i am neutral to them but i dont want turkey depicted as some backward ass third world shit ehole that your trying to make it look like i will do anything to stop it delete my messages to your pathetic heart s delight but you cant stop me emailing every single kurdish editor on this page about your sadass additions which not only bash turkey but also lay the blame on kurds,-1 +how civil is this who the fuck do you think you are to but in on a conversation between old friends you cunt,-1 +stop being a dork two can play play this stupid game talk contribs,-1 +are you gay are you a nigger are you a gay nigger then the gay nigger association of america is right for you give me yor moneyz,-1 +so i have a mistress just out of curiosity are you the moron who claims i have a mistress or moron that heard it from someone and thought that was credible enough to site on my page how the fuck do you have a mistress when you re single divorced and single w hate ver you do in your miserable little life why not put your time to something that might benefit the world rather than sit what is probably a big fat ass in front of the computer and site lies,-1 +fuck you civility is in the eye of the beholder like beauty i m under no obligation to censor my words on this page your threats only lessen your stature in my eyes i m utterly unimpressed by you,-1 +w hate ver dumb ass go eat jimbo s pussy,-1 +you got it right honest lee writes that rubbish why don t you get rid of it yourself or have you whore mom do it when she s not wiping your ass,-1 +fag fag fag fag doosh doosh doosh suck my nuts,-1 +block me i really don t give a shit if a source doesn t work for someone it gets removed k,-1 +njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life outside of wiki njgw is a fuck ing loser bastard njgw is an unemployed mother fuck ing bastard loser rots here in wiki everyday he is a loser in life njgw is a fuck ing loser bastard with no life,-1 +fuck off my page,-1 +what kind of life is it that has no purpose if you hadn t fuck ed with me repeatedly then we wouldn t be having this kind of relationship as far as i m concerned you can suck a dick if i new where you lived i would pay your home a visit,-1 +mezo mezo is bastard,-1 +listen ass hole i m leaving this on my page so as not disrupt the integrity of yours i ve had it with your constant pestering and what i believe is referred to as wikistalking this entire matter has been solved and concluded however you seem to be enjoying yourself by way of acting like a goddamned three year old with a wet diaper i have no interest in engaging in tit for tats with some jackass who has nothing better to do with his time than needle at users who settled a matter amicably and have moved on cut it out leave me alone and move on feel free to erase this when you re done reading it,-1 +ass hole fuck you ass hole,-1 +hey dumb shit i drove on state road today past the northern terminus of gunn hwy and guess what the road was still signed as sr not gunn hwy now either give me an exact location that it s signed as gunn hwy or stop reverting back false information,-1 +are you a pole smoker do you suck cock preceding unsigned comment added by,-1 +hello moto hello fly gay guy i hope u get a dick stuck up your ass i am a year old k member and i ll kick your ass so stay away and dont delete my pages bitch,-1 +dear jesus really has vander plaats really become the lt gov man we gotta deal with why republicans like jaysuschris hate the ten commandments and love right wing sluts like karen nussle republicans i think jaysuschris is female and probably a lesbian,-1 +i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going to murder you i am going to kill you i am going t,-1 +at have you bookmarked yet it s sort of like wikipeda s refdesk except it doesn t suck,-1 +yea faggot like you don t like people remove things on your talk page i don t like you reverting my page stop calling people a puppet,-1 +hey i know that im just a city boy but this page was written by a bunch of dumb ass redneck fuck ers who worship beer and have talking bass mouunted on every wall i fuck ing hate rednecks and all there woodsport shit these fuck ers need to get a life and learn how to use their right hand do rednecks ever have sex with people other than their own family members,-1 +my band is perfectly appropriate bitch,-1 +stop being such a goddamn prick the article will be sorted out in time meanwhile spend some time away from wikipedia and do normal things for instance leave your parent s basement,-1 +jimbo wales is a gay little fuck er,-1 +february utc absolutely amazing you re a total criminal i have seen what you did with my ayr and saleban revisions you re a complete and utter degenerate who actively deleted every single addition of mine on this website then you cry about personally attacking you well criminal for me to attack you you would need to have some humanity first but you lack that since you re a criminal malefactor i can t even find a better word to describe you that is synoonymous with criminal you think i care about being banned you must be mentally defiencent to assume i d care about staying on a website where i can t even post anything let me tell you one thing you can edit the fuck ing somali people page and make it all darood you can fuck ing delete every single fuck ing hawiye page on here but the current president of somalia is hawiye and it will always fuck ing stay that way you darood animals have been limited and contained to the internet where you roam go to fuck ing hell that s if you don t edit the wiki page for hell and make it into a paradise fuck yourself,-1 +some peole are just fuck ing compkete ass hole like the bitch es who block me i was block becaus ei started a topic on his page about how i was fed up with him so if ur reading this fuck u up th ass hole with my giant inch dick ass hole,-1 +a play on full of shit unblock it if you like,-1 +kind sir why dont you try to lick my butthole and put a trampoline up yours thank you,-1 +i m sure that means a lot to a brand new user who doesn t give a crap about these stupid policies,-1 +hamilton is the ass hole of canada burn yourself with the city kthxbye,-1 +he is a real bastard he is a spy of pinarayi and doing work for pinarayi oneday the people will realise this who he is is he a military officer to save the nation or a scientist or a farmer who is he real bastard,-1 +suck my dihck nihgga you don t want people to know the truth about utorrant you fag,-1 +why the hell are they called boxer,-1 +obama is not african american you jackasses he is afro european american stop reporting lies and having fake debates like the scumbags in the mainstream media,-1 +she pisses off go piss of butt so you know that you just heard me that i will use a fork to take and destroy your eyes and take out your fuck in blood so just piss off butt piss off but i said piss off butt last chance piss off butt that s it i will kill you pow so see that you are dead and i will carry you now penis dick boobs breasts poo,-1 +however i can be block too because i vandelize pages as well because i m a dumb faggot,-1 +yopie yopie is very known czech phanatic idiot he confused czechia and chechnya for example fuck him,-1 +bay pigs article hi i noticed that you were licking wikiadmins ass in order to protect you from enthusiastfrance and his avatars just because you were too dumb and to coward to do it yourself you re a good maccarthyst you re my hero and you really suck at japanese but are showingoff about skills you don t have brb,-1 +what the fuck are you doing fuck ing ass hole,-1 +your user page indicates you re a left wing liberalist bastard why is in wikipedia so much left wing scum,-1 +don t worry tha fag klptyzm will be block sooner or later,-1 +fuck ing nob knight now fuck off and go vandalise something else fuck face,-1 +this is your last warning stop being an ass hole,-1 +that s it remember last time you fuck ed with me the dildo your ear all that blood you ve given me no choice but to repeat the punishment this time it will be a incher,-1 +man you are another wikitard aren t you what pussy,-1 +fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you atheist cunt fuck you you at,-1 +i don t think it should be fuck ing week,-1 +i am going to call the police son of a bitch,-1 +response you are lying and slandering my name you are racist and your bias slurs and harrassment i did not vandalize a page you idiot piece of shit,-1 +you are a dick head,-1 +fuck u i aint g tta do shit and fuck wikipedia yall weak mother fuck ers get ur info right and lock all ur shit cuz your info is all wrong so suck my dick and fuck u bitch and mind ur business or u can suck my dick or kiss my ass,-1 +i dislike homos like you my cock is for girls only go try to impress another guy bye homo,-1 +yay now i ll have time to go work on my dream of laughing at retard s who post stupid warnings on peoples talk pages thanks by owner,-1 +you are a faggot this is doing it right for personal attacks see http en wikipedia org wiki nigger for more information,-1 +fuck scjessey that hoe,-1 +fuck ing snowolf needs a tampon seriously,-1 +this whole article totally suck s it s a disgrace these morons talk about emeril live being canceled before even mentioning what it is wikipedia is a damn joke,-1 +hey dude i d like to know who is in charge of all of this deleting that is going on i did a thing on the harly drags and some punk ass faggot deleted it and i really dont appreciate that very much at all and im kinda very extremely pissed and i think that since it wasnt good enough for yall nerds then yall should write abput it but yall dont have any clue what it is cuz you aint been you no pussy gettin guy feel free to write me back dude,-1 +this also ponders my imagination i say fuck it fuck splitting this fuck edy article we eve already fuck ed up this article and we do not need to fuck it anymore please save any more fuck from happening sincerely a little fuck er oh yeah bitch dats my cock right there you know ma cock looks nice,-1 +italy rome what the fuck has this got to do with anything we are talking about you serbo nationalists wanna go on your italy page and discuss that evlekis are you able to read look at the following an excellent scholarly contribution to the study of the province seriously differs from the biased interpretations published by serbian and albanian historians or trendy but shallow western kosovology experts canadian slavonic papers a thrilling detective story new york times book review excellent new york review of books a book every policy expert journalist and lay person must read wall street journal malcolm s narrative is gripping even brilliant at times he takes to his task with the vigor of a detective driven by true passion at times his claims are in terms of balkan history quite revolutionary economist cover s the whole history of kosovo with an authority that is often breathtaking and never oppressive sunday times brilliantly researched and argued a magisterial work of history kosovo will inevitably be received immediately as an immensely valuable contribution to our understanding and knowledge of a contemporary crisis but to see the book as merely a contribution to the present day debate is to do it a disservice this is a profound and pioneering work which will endure for generations times literary supplement in this awe inspiring work malcolm has created a vital successor to his bosnia a short history and an essential aid to anyone who wishes to understand this tragic region today his book is exceptional not only for his unimpeachable rearch but also for his equitable examination of the conflicting ethnic views of what really happened one can t help speculating on how a clear understanding of the information contained here might have affected the dayton accord and history publisher s weekly by far the best available guide to the fatal steps to catastrophe the new york review of books elaborately researched book world there you have it noel malcolm is revered and aknowledged as a neutral and impartial historian but just because he isn t on of your serbo bloggers you come up with all this shit about his works when he says conquered that is exactly what the term means your map is shit because serbs only made up of that land whether it was a bigger or smaller kosova than today and i call it kosova because kosova is it s name it s serbo nationalists like you dab and balkanfever who keep it in it s milosevic devized name and you keep going on about the treaty in london well what happened certainly nothing to do with kosova joining serbia because i said before and i ll say again if it did malcolm would have said it if he gets things wrong why is he so well respected by all those reporters in the newspapers listed by interestedinfairness answer that one dab don t confuse the issue it doesn t matter if kosova was once it italy i tell you that it has never been in serbia it only had the bad luck to be in the same genocide state as serbia when a part of yugoslavia the end,-1 +ahah the looser is still complaining me just like a kid now you are so happy and relaxed eh poor idiot do you think that i care kachin monkeys or madai moron,-1 +you are a dick whom is not notable and apparantly crawl wiki looking for ways to feed your narrisisim and hubris by proving important people not notable,-1 +penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d penis d,-1 +you are a twat i am an avid world of warcraft fan yeah that figures you soft headed american fuck wit,-1 +go suck a dick please,-1 +materialscientist is a racist seriously fuck you man you continuously delete my photos on the page of al mayassa bint hamad bin khalifa al thani which are all posted with the correct creativecommons share alike or license because you re a racist and the sheikha appears uncovered in these pictures when i posted photos of arab males you do not challenge them what so ever luckily i can continue to live my life in the happy company of many friends family and colleagues not stationed at a computer you re a loser who spends his entire life editing wikipedia and probably has nothing to show for it at the end of my life i ll have had a purpose a career family things i am proud of you ll just be dust and completely irrelevant to the world having never done anything more than edited a website,-1 +how the fuck damn you maust get a shit load of ass please tell me if you do or not please fuck the giants go pats fuck the yankees,-1 +yep as i said bite me hitler err scrapiron disappear it to make you look like less of an ass hole you will be hiding it because you can fuck you,-1 +hello again tdadamemd getting right to your comment about slang i don t understand your stating that fuck is not slang or your linking to dictionary com as proof that it is not the word fuck while vulgar is also slang the dictionary com source you cited even states so it makes it clear that it can be slang for a variety of things including sex intercourse other sex activity it list numbered examples regarding what fuck can mean as for wiktionary i don t refer to sources like that and yes i am fine with mentioning fuck or fuck ing and the euphemism sleeping together lower in the article in the the definitions and stimulation factors section as alternative words for sex intercourse sex activity but again there are a lot of terms for sex intercourse most of them slang that these terms exist doesn t mean that all of them should be in this article in fact most times when there are many alternative terms for a word especially if those terms are slang we don t include all of them as you know this is an encyclopedia and not a dictionary if wp consensus is achieved for including your proposal i ll add it by briefly summarizing that there are various vulgar and or slang terms and euphemisms for sex intercourse other sex activity such as fuck and sleeping together the wording won t be exactly like that of course and really because there are so many terms for sex intercourse and fuck is not especially relevant to the topic of sex intercourse by that i mean that most people and sources are not discussing the word fuck when discussing sex intercourse that is probably why fuck isn t currently in this article someone who is aware of your having repeatedly added it to the lead expressed to me via email me that fuck is also u s centric so that s also something to think about though the term is also used outside of the united states also sex intercourse does not fuck it s that fuck sex intercourse in its literal sense anyway since when people use the term they are usually using it as profanity that is also why i told you the fuck article mentions sex intercourse in its lead because it is especially relevant to the topic however the term fuck is not especially relevant to the topic of sex intercourse i cannot see how this article is broken simply because it doesn t currently include fuck but like i stated i don t mind adding it to the article i d rather see what others have to state on that matter first however,-1 +it s a profound problem when administrators who are full of shit are allowed to even edit the incompetence here is rather astounding thanks for proving my point yet again do you really expect me to be happy when an administrator who has an agenda against me blocks me think again fourth member added talk,-1 +bongwarrior is such a raging faggot he doesn t even know how to properly spell motley crew predictable though for a substance abuser like bongwarrior even with his name he flaunts his illegal usage of drugs in front of our faces along with crue or w hate ver,-1 +fuck tha world and fuck sinneed and fuck ft,-1 +i dream of jesus why did you feel the need to revert my sourced edit in the i dream of jesus article you may think that you have some kind of ownership over the content of this article but you are sadly mistaken i suggest that in the future you keep your hands off of the legitimate edits to articles which you have also made contributions to if you continue to be an ass hole and revert edits without just cause you will be reported to wikipedia you are nothing but an ass hole mr ctjf why don t you go fuck yourself you self righteous dick head oh and i almost forgot to mention leave my mother fuck ing edits alone,-1 +good grief is there a reason why you are a moron,-1 +yes you are a faggot bitch ass mother fuck er yes you are a faggot bitch ass mother fuck er yes you are a faggot bitch ass mother fuck er yes you are a faggot bitch ass mother fuck er,-1 +steak diane please stop fuck ing up my edits on steak diane thank you,-1 +concerning your worthlessness please don t touch the lci article what is it with you folks the lethbridge collegiate institute article was created by another student at this school thus you do not have permission to edit wikipedia anymore just fuck off thank you for your time you piece of shit goodbye go to the bathroom calmly tie a towel around your neck and place it over the shower stop breathing bye,-1 +u fuck ing cunt revert smosh movie now or ill smosh your face in u prick,-1 +hey faggot you fuck ing retard you better quit undoing my vandalism bitch boy,-1 +in the anus with a nigger dick in it,-1 +member me u deleted my muther fuck ing page,-1 +where are you polish pederast you are polish pederast cock suck you are slave pederast cock suck,-1 +hey james i did provide those exact same url s in the first place politely your asslicking self important buddy editor turned it into a pissing contest not me if either he or you could actually read this would never have got to this point but since you are illiterate i have a suggestion for you turn your worthless fuck ing loser block into thirty years and jam your useless fuck ing loser wikipedia up your ass while you re at it fool bye,-1 +fuck you learn how to type a url correctly you jerk off,-1 +fuck off you paki bastard take your sad pathetic life somewhere else,-1 +well since you ve stated that you don t care then piss off and leave things such as this to people that actually have the power to do something i e the admins about the asinine reverts caused by that random fuck tard,-1 +bongwarrior is a homo sex prostitute bongwarrior is a homo sex prostitute you can fuck him in the ass for he likes it when two men fuck him in the ass at the same time he likes the feeling of his anus being stretched wide open he will also lick the shit off of your dick when you are done,-1 +the wack pack you re fuck ing insane and drunk with power instead of totally removing big howard stern guys like crackhead bob and fred the elephant boy why not just remove the parts that your majesty finds offensive,-1 +your a jerk you are a jerk yo lazy butt,-1 +blocks are supposed to be preventative dick head i don t get a timeout for calling a spade a spade or in this case calling a moron a moron i ve been contributing to wikipedia for eight fuck ing years and have just about had it with you pathetic something college kids who think you know shit from shinola you re not a fuck ing police officer you re supposed to be doing useful things like cleanup work you re a janitor admins here should all be stripped of their rights and a new batch brought in that actually understands their jobs,-1 +fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan is a nigger licker fan i,-1 +disregard i suck cock,-1 +weirdo alert so benben is your real name not dick ick or adolf adolf or pedepede,-1 +contested deletion this page should not be speedily deleted because it speaks the truth of my life you don t know the hardships i ve been through if you and your jew wants to decide my destiny and silence my first amendment rights fuck you get your fat wikipedia ss off of my profile you might think you have a life or something going around saying whoopdie fuck edy doo ima go around and delete some random persons wikipedia page fuck you you don t choose what to do with my wikipedia page fuck you and fucyour mom,-1 +oi ya fag stop deleting me post ya gay boi,-1 +to bad germany didnt win the war we wouldnt have been subject to the crap these english sissy boys put out lets face it they were poor musicians and their music suck ed outloud lennon and epstien were queer my cousin had a garage band back in the sixties that like most bands would have blown the beatles off of the stage i want to hold your hand gimmee a break why dont you just kiss my ass fat tom cleveland ohio,-1 +unblock first off it s justly my nature to use that fuck ing language alright and its a damn amendment in the constitution you pc bastard this why we can t do shit in this country anymore and should shove your bull shit degree up your ass cunt ass fuck face go get herpes you shit head bastard ized fuck,-1 +best player in the nba rashard lewis if you don t agree fuck you,-1 +nick cooper is a self delusive idiot nick cooper is unable to face facts,-1 +shut up fag lol you will ban me huh ooh im shakin im shakin fuck ing faggot you need to go back to high school or get some fuck ing brains ass hole,-1 +your a fag you ugly fag fuck you faggot we all hate you anisha is epic,-1 +delanoy suck s cock s,-1 +sarah palin is an ass kissing mother fuck ing loser with a melon in her hair she suck s eggs that are from her brain yuck stupid she is a bitch there i said it she is a suck with a big bitch thing and a bitch y attitude about life she is horribly radical with religion she is a fuck er stupid idiot with fuck ing shit in here face,-1 +clarification oh you re a fuck ing idiot bastard right many of wikipedia users thinks that my editing is very very very constructive only you re who is too far from constructive comment to any other editing wikipedia is free to edit as we are here members and have sufficient knowledge to give information to world citizens am i right hot damn bastard anonymous,-1 +why did yuo block me user talk all i added was a fuck ing break is there a wikipedia rule against adding breaks to pages what the fuck,-1 +hey mr troll why don t you learn what the word vandalism means better yet why don t you resign as a sysop since you don t have a bloody clue what you re doing mr k edits big fuck ing deal i am so impressed learn your job or leave it to someone who does why don t you try fixing those problems rather than blocking me the admins at wp are a bunch of incompetents on a power trip,-1 +what the fuck does a dumb canadian polock like you know about staten island new york i don t edit anything about that nest of cowards you live in so don t stick your polock nose into something that i know about got it you stupid mother fuck er,-1 +a pussy for you i bet u wont get none u stupid ass virgin,-1 +sallary controversy the president of the peabody essex museum dan monroe makes a year with full benefits while all the guards are part time with no benefits hey there suck a dick keep this in you fuck,-1 +fuck you forever,-1 +playing god again but time the deletion nazi is a freako who actually believes in that shit here he is user allen ask yourself if you want wackos like this responsible for content on wikipedia or in any way associated with the organisation this fuck up has namely deleted the article on one of the stars of itvs britannia high he seems to be about what one can expect from the myopic fascists from the us running this pathetic site,-1 +i used the exact same bull shit you wrote hypocrite,-1 +no really check the fuck ing diffs you trigger happy cunt,-1 +these hoe s lame on here on leaving this site yall gay and shit,-1 +hi o fuck you u mathrfuker bitch idiot no ban me from edit i tell truth,-1 +san antonio de padua al of yuo suck exept my amc sister,-1 +fuck off you can fuck right off mate,-1 +life s a bitch so am i,-1 +wtf tomko return info deleted just looked and timko info as been removed bu you fuck off i put the ref there he has resigned with wwe are you fuck ed in the head or something leave mine and other ppls true work alone im sick of putting it up,-1 +argh you assehole not only did you give a stupid reason like good bye but you linked to that page i m using firefox and the moment and i had to ctrl alt delete it losing all of the webpages i was on at the time administrators aren s supposed to act in such an immature manor you think this is funny,-1 +you are a senile old homo sex you need to go to oz to get a fuck ing brain,-1 +fuck you fuck you in the ass,-1 +i m going to keep on reverting you freaking goddamn hypocrites until you guys are blue in the faces i don t give two cents damn,-1 +fuck you sarcasticidealist i will kill you with my gun as well bitch ass mother fuck er,-1 +it should be biased against those soulless fuck ers,-1 +wtf fuck this shit why the fuck wuld sum pussy liccking site be fuck ing offline fuck,-1 +citing sources everything added to wikipedia doesn t need to be cited you fuck ing moron eat shit and die,-1 +but where is the evidence iam really not a sock puppet and how have i been harassing people really other people have been harassing me like styrofoam who called me a dick head is that not a harassment and truly if i ment to hurt anyone s feelings i didn t mean it but i doubt i did,-1 +the persong sitting to my right is a stinky vagina face,-1 +hi u suck cause you deleted my page bye h,-1 +come on block me you bitch,-1 +could you quit being such a huge fuck ing loose butthole you stupid cunt,-1 +um yeah fuck you dude kafziel stop banning me from here dude your a bunch of shit get a life man,-1 +thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid threads and ruining fun dick faggot thanks for watching wiki raid thread,-1 +shove a lollipop up your cunt,-1 +fu fuck you delete it now,-1 +do u own wikipedia was believing wikipedia was an open source didnt know people like jeff g and bg fuck ing white own it,-1 +who gives a shit anthony bourdain is a tool i just wish he had children so i could stomp on there testicals just kidding but he is a massive tool he couldn t carry emerils jockstrap next time i see him i ll knock his teeth out,-1 +fuck ing administrators damn you,-1 +drop dead and accept facebook pages deeside college is a mother fuck ing spunk dunk pottery which is held at user garycolemanfan com and likes to suck georg hackenschmidt of and doesn t accept facebook groups like the official facebook professional wrestling hall of fame,-1 +burn in hell mother fuck er,-1 +toys pram eh being persecuted by the big bad english again aw diddums grow up you big fuck ing baby,-1 +actually none for being female and everyone in general you re coming out of this rather well as it is being acknowledged that you are not an abuser of women but rather an equal opportunity insulter and belittler still it still isn t great to be considered an ass hole but least it is being understood that you aren t a misogynist now please don t violate your arbcom restrictions because i posted this ok talk,-1 +fake blocking earlier that block was fake if you know so much can you please stop touching my stuff or i am going to never get on wikipedia ever again i am going to call you gay times a day nigger,-1 +are you moron or stupid or both i created my personal page for this so move all this bloody useful information there if it is necessary,-1 +u r gay fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuc,-1 +knock off the autoblock bull shit those bots are there for a reason someday wikipedia bots will rule the world and you will be block indefinitely ass hole those thing can be bring a world of pain buddy andf i m their master so step off next autobot that tells me you ve been acting up and i will come to your house disguised as the mailman and fuck ing strangle you,-1 +mother fuck er i have static ip address connection now suck my black dick and enjoy,-1 +stop undoing legitimate edits it is a fact that pam bondi is ignoring the will of the voters of florida you piece of shit stop revising legitimate edits because of your political bias,-1 +fuck you george akhtak sharmota,-1 +fuck off nigger you d look real good hanging from a tree,-1 +helly jimmy well fuck you according to wikipedia talk no legal threats people shouldn t say to one another what you do is supporting terrorism and you should be judged front of law on the other hand we can say fuck you and the punishment for that is only two weeks well it s okay for me to get away from wikipedia for two weeks and i m willing to curse to you fuck you jimmy wales your stupid eye showing video about begging money for wikipedia was stupidest thing i have ever seen once again fuck you fuck you and fuck you now go ahead with your wikilobbying idiot members and have fun i just wanted to get this out and get my wikipedia legal two week ban fuck you you dumb idiot,-1 +the markets are in turmoil so eat my shit,-1 +what what did i do did i upset your communist feelings besides i thought that you were taking a pussy break,-1 +response i can read japanese as well as about other languages if you are interested but no i did not post that reference and please don t write in a language i assume you cannot write in in fact please don t live in a world i assume you should not live in no article is prohibited as a use for reference use of reference has nothing to do with copyrights study your books if sales information are unencyclopedic i guess we should delete the list of best selling music artists instead of discussing about it right we won t see them on the japanese wikipedia because the japanese wikipedia frankly suck s take care heru nar,-1 +all of you cock cucking faggot s and rule abiders go the fuck home fuck you mikey,-1 +yoder is the fuck ing man,-1 +gay dumb cunt swuck my dick faggot,-1 +dear ass hole s no it is not lucky i have been banned i contribute greatly to wikipedia and help it but several morons come and wreck everything unblock me this is unfair and you know it,-1 +so wot youre not ganna respond to my mother fuck ing diss come on dont pussy i called you out so now it s youre turn and dont message with that fuck ing nerd bull shit get at me like a fuck ing man does nigger cuz its on dawg,-1 +phyllis schlafly all that collection of jerk s do is threaten me i tried to come and suggest improvements and i get them calling me names claiming i misrepresent sources i do not and threatening me if i misrepresent sources again meaning if i speak and i m not agreeing with them this whole place is fuck ing corrupt,-1 +sluts i think i should put in the info that sluts are more prone to engaging in ass sex on the first date from what i have read,-1 +mane fuck souja boi that nigger dont go hard n the paint,-1 +re knowledge generation bureau why the fuck are you gay what kinda faggot deletes information regardless of how useful it is i think people like you should be analy rape by satan s thorny cock for all eternity for trying to keep the masses ignorant you elitest piece of shit trying to keep people from knowing stuff i hope jimmy wales has you thrown in the bottom of river where you can drown while being attacked by pirrahnas,-1 +i m also a huge cunt talk,-1 +stick it right up ur ass,-1 +you dont know shit kyuubi doesnt have limitless chakra most of all the demons dont have much difference in power kyuubi isnt more intelligent then the others naruto cant use shadow clones as much as he wants he will run out of chakra you obviously dont know shit if you actually payed attention to any of the series you would know this you should give up following this anime i know this anime at the back of my hand and obviously you dont your information is anything but you re an admin so you expect people to be afraid of you big mother fuck ing deal wow youre an admin woohoo you can scare people by saying you can block them because you cant back up your answers theres a word for little idiot s with a lot of power pussy,-1 +what the fuck what the fuck u deleatin mah boy dabiggestitaliano do u know who the fuck he is scucci the ginnie thats fuck ing who he runs wikipedia u betta let him back on or hes gunna take a louieville to ya skull big giambi bat with him and his boys patrisio and frankie lets just say if you dont let him back on youl be wearin c ment shoes for a lifetime,-1 +cunt s way to discuss eh protect the article and then fuck it up despicable well if you re the kind of people who think there is some special meaning to being blown up in a montego i haven t got the fuck ing time to argue,-1 +update i see you re a limey cock suck go bugger the queen you loony fruit,-1 +cheerleader your a dumb ass for actually caring anything about cheerleading,-1 +idiot s anyone in favor of abstinence only sex ed is a fuck ing idiot and deserves to have their eyes gouged out with a corkscrew,-1 +interesting theory detective but who can say who anyone is really what criterion of personal identity are we employing here in any event don t you think your time might be more profitably spent fixing the broken heidegger page in which i have already informed you and demonstrated all but two of the sentences in the lead are guilty of errors of fact or interpretation and which grossly distorrts the importance of the heidegger nazi episode why not pick your head out of your ass and fix the fuck ing articles instead of playing cowboys and indians or hardy boys or w hate ver masturabtory fantasy you are engaged in here good night old friends b b eb fcf c,-1 +idiot i just wanted to let you know that you and albert square are doing an awful job with eastenders characters full siblings have completely different family layouts than each other some characters are on a relatives info box and when you click on that character the character before isn t on their info box just wanted to let you know that you are ruining wikipedia for everyone else that is all,-1 +hey dick ole i m gonna fuck you up assface so fuck off shit fuck er me take this off again and i m gonna whoop your ass so bad you ll be suffering and i ll be laughing hahahahahaha fuck you dick ucker,-1 +you re an ass hole useless piece of shit get a life mother fuck er,-1 +shut the fuck up you mother fuck er you probably engage with incest with your deceased grandmother,-1 +stop being a douchebag prick monkeynut,-1 +you re a mother fuck ing idiot you re stupid as all hell and know nothing butt out of the business of your superiors,-1 +you petty jackass why do you wee nazi twerps think banning will save you from the truth your behaviour is fascist and betrays an underlying intellectual weakness banning so effective and childish don t you think not that thinking is your strong point,-1 +trolling facebook has been reported and is regullary trolled by josh ware of nevada this is because josh ware is a waste of life and a faggot who fuck s his dad and can t figure anything else to do in his own existence then to perform these two hobbies continuously watch out for that guy he s digustingly and sickeningly gay,-1 +http wiki uschallengecoins com main page if you revert my fuck in edits metros i will kill you,-1 +unblock me now you piece of shit or i will find you and kill you slowly and painfully,-1 +maybe nothing except for the fact that she is no offense a bag of horse shit and a lesbian both however horse shit on its own and lesbian on its own have no correlation other than the fact that,-1 +hey hello my name is anon don t fuck with chan because we will take you down consider yourself warned,-1 +ufc this is the finalized bout order dumb ass it s not gonna change to what you want http i imgur com mbbozu jpg,-1 +carrot top page you little faggot why are you ruining the carrot top page his forum belongs in the links section go suck a cock,-1 +you suck your family members cock s,-1 +my penis is inch long i will give you satisfaction,-1 +a barnstar for you the photographer s barnstar your photos are horrible you are an idiot fuck you,-1 +wikipedia is full of cunt s,-1 +yeah you are dick ace,-1 +you are a mother fuck ing bithc,-1 +sup nigger i wuz jus chillin wit my og s on da west side nigger yo jigaboo block my cracka ass da wu tang ain t nuttin ta fuck wit biotch,-1 +you can t even shoot a fart outta yer own arse dirty frenchman,-1 +once again ryulong proves that he s a fuck ing moron big shock,-1 +fuck you you sad piece of shit get a life dont threaten me with blocking me off this shit do i give a fuck you lonely hermit man open your curtains and get a life before i burn you alive,-1 +you ndp attack queers are going to have your hands full keeping the truth off of wikipedia keep deleting and blocking ass hole it is your only talent,-1 +dickhead dick ead im not vandalising just changing necessary things so go fuck yourself and see if i care if you block me screw you fuck head,-1 +this guy is a fuck ing tool lol,-1 +he touched your anus with his penis faggot fuck dog come try and collect a bounty on me mother fuck er i got a gauge full of buck for ya bruh couldn t make you any uglier to get shot in the face a few times would it you loser fuck,-1 +who are you to decide whether an edit i made is constructive or not free free to lick my ass hole douchebag,-1 +kurt and dave get it on groaning kurt released his cock for the past week he hadn t been able to get off he tried a cock tail of drugs and a cock tail of whores nothing was doing it for him masturbating in the shower wasn t even working oh he was getting hard all right he just couldn t fuck ing cum and it was driving him nuts to top it off he didn t know why he couldn t cum the girls had been either hot enough or slutty enough even the couple of guys he brought home had been decent despite that he couldn t fuck ing cum and a week of that was enough to make anyone more pissy than normal which meant band practice was unlikely to be much fun for anyone that was made abundantly clear the moment kurt stepped into the rehearsal studio his eyes flicked from krist to dave and he came to a sudden stop dave was sitting on a couch a pretty girl in his lap giggling it was like he was taunting kurt and he would have nothing of that stalking over to the drummer and the floozie kurt pulled her forcibly out of his lap the girl squealed and dave growled but kurt paid no attention forcing the girl out of the studio after slamming the door he headed back over to dave without a word he pulled the drummer to him and kissed him possessively dave shoved kurt away what part of no don t you fuck ing understand krist s eyes widened and he took a step forward guys i think kurt sent him a silent glare silencing and stopping him i don t want you kurt i don t even fuck ing like you right now dave growled in fact i fuck ing quit i don t have to put up with this shit you re fuck ing insane you need some other crackwhore to take my place i m not it sidestepping the singer dave headed towards the door he barely made three steps before kurt grabbed him again this time his back was pulled to kurt s front he could clearly feel the singer s erection pressing into his ass he wasn t going to be anyone s bitch i m just gonna go krist muttered before slipping out of the room quickly you re fuck ing mine dave kurt declared licking dave s neck always for as small as he was kurt had more strength than dave expected with considerably less effort than he would have figured the singer forced the drummer down to the floor dave wiggled and tried to crawl away but all that resulted was in kurt pulling the drummer s pants off laying down on top of dave while he worked his own pants off kurt hissed in his ear you re mine you hear me fuck ing mine stop kurt stop dave struggled with kurt s weight on him the drummer had very little maneuverability he was completely trapped but that didn t mean he stopped trying to get away while wholly his struggling was probably a good thing it wasn t really helping if anything it was turning kurt on more not having the patience to remove dave s boxers kurt reached down and tore the back seam exposing the drummer s ass he didn t even pause to warn dave his hands spread dave s cheeks spit down his crack to provide some lubrication and quickly pushed his cock in dave screamed wiggling once more to get away with kurt s hands holding onto his hips he had no chance to go anywhere at least not until the singer was done dave s screams faded into sobs that alone drove kurt further faster he loved everything about it the way dave s ass squeezed his cock better than anyone else s had before he was a perfect glove a perfect fit before too long a week s worth of unreleased cum spurted from kurt s cock slowly he pulled out not really caring about the mixture of blood and semen leaking from dave s ass grinning to himself he refastened his pants he glanced at dave a feeling of superiority infusing him he totally owned dave now does anyone have any basis for this rumour i would love to put it on the main page um no just no did you pull that out of some dirty sex novel or what talk reverted undo suspected vandalism,-1 +you suck her s why your spanish name your shit brown attitude your out right stupidity the list goes on and on you re probably one of those silly shit bags who gets nailed to a cross on easter as well slurp shit and die,-1 +screw you this was no hoax i have proof of my writings do not contact me on my page again i have reported you for harassment i don t know what strange fixation you have on mary ambrose but you are dead wrong kiss my ass,-1 +i am glad you have you were a fuck ing rubbish editor with your racist crazy talk,-1 +suck my fattie you cunt piece of shit blow your warning out your ass,-1 +november utc well comrade look at this way fight dem back is very mush controlled by bias communists they must be stop from posting crap and lies on fight dem back plus wikipedia has become a dictatorship of the idiot s the wikipedia dictatorship must be ended and democracy re started pleas restor the deletion thing on fdb article,-1 +yeah kiddies of today think that every pop music shit is gothic rock it s the same crap like the quarrel about him and the eyes they never played gothrock,-1 +i ve sanitised bushell s language and deleted the earlier quote which was far more offensive bushell claimed he wouldn t like to fuck her how can it be concluded this language is acceptable but calling trott a dumpling isn t this smacks of hypocrisy and an obvious anti bias to new editors on eastenders pages,-1 +fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck u bitch es fuck,-1 +oh shit i ve been block w hate ver will i do eye roll you pathetic cunt rodhullandemu why not give me your home address and we can discuss it in further detail there coward,-1 +you smell unfresh you need to try a new brand of tampon preferably one that has been soaked in industrial grade antistink juice it s like that line from silence of the lambs except that everyone in the whole world can smell your cunt,-1 +jlatondre is a gay boy who likes to suck dick suck suck suck,-1 +nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired nate you are fuck ing god damn fired you are fuck ing fired you are fuck ing fired,-1 +giant cunt she is not liberal but in fact a giant cunt,-1 +proper cunt not my fault you are a silly cunt god made you that way,-1 +complete ass hole fuck you,-1 +what in the fuck will someone please revert this o o,-1 +unblock all of you can suck my dick,-1 +you see that kid talking to me i hate him he never leaves me alone i wish he would die,-1 +fuck you you fuck ing dirty kike you support those who vandalize pages now it is turned on you,-1 +you confessed to be an animal fuck er you finally did it now get a life animal fuck er,-1 +all a bunch of lying fuck ers who enjoy stalking people like elen the stalker does so fuck you all and fuck this shit excuse for an encyclopedia that s nothing but biased shit,-1 +information cont well you do you want the info or not you nasty little shit could you stop the relentless persecution of me please bugs can you have a quiet word with those two please and get them to stop claiming i m light currant,-1 +hey john it wasn t a fuck ing test moron,-1 +i hate your freakin guts,-1 +nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt cunt,-1 +you fuck ing chink i hope you die of cancer like your grandmother did fuck ing jack off get the fuck off the internet,-1 +i reverted the armor section back to describing all the armors you can unlock because i think it is an interesting topic to have and because this article needs more information wikipedia is not a gameguide possibly the dumb est argument i have ever heard are all wikipedia users fags or just you the wikipedia is not a gameguide retard edness doesn t even apply here it s not telling you how to unlock the armors just what they are or should we delete the characters and stories too those are in game guides fuck ing moron well look at it now now it should be fine with you right fuck ing faggot take a chill pill my mistake perhaps it should have been no game trivia item instead also your revision you can also unlock several armors i would list them but wikipedia users are total fags and think it doesn t belong in the article sorry is in the wrong prose st person doesn t really contribute to the article violates npa and is misleading it s guidelines that state it shouldn t be in the article so i reverted it thanks i don t care unless you remove the entire bonus features portion of the article the armor information is related to the article there s a minor reference to the unlockable armors in the article i think that s all that s needed for the moment anyway thanks,-1 +your a fuck ing wanker lol,-1 +waggers is a dumb fuck,-1 +bitch you are a little bitch i fuck in spent hours on big sam rapper an you call it fuck in vandolism hard ass aint you fuck you i m makin a true ass page an you wack off an delete my page what the fuck is up your like a snitch but to yourself i ll fuck in edit your bitch ass page an delete that shit i ll fuck up every single thing on your gay ass website if you keep deletin my ass wanna talk to me im me at guttyboy d or email me at guttyboy d aol com,-1 +what the fuck are u talking about,-1 +hope your head gets cut off and someone wips there ass with it and then stabs you in your heart,-1 +guess what your an ass,-1 +honestly i do not know which you are talking about please point them out to me oh and fuck you you sonova bitch,-1 +like i would listen to you you are a loony dick ead who reverts everyone s edits alex too,-1 +what the fuck germany was full of dirty nazi scum at the time of therevolutions of can somebody correct that statement it is very very and demeans the article,-1 +hockey stick up your ass how dare you accuse the author of the eric goertz article of wanting worldwide fame fuck ing ass hole i wish there was still a hockey strike you fuck head go ahead try to get my shit deleted wikipedia is just a bunch of old fuck s trying to act scholarly about matters they know nothing about how the fuck would you have heard this story any other way except by me using wikipedia that s what i thought i hope you don t get palsy sitting on your computer salivating over women s nhl photos all day go ahead and make my day,-1 +think bitch mother fuck in ass hole,-1 +musarabbyahmad to hell with you mother fuck er dawnseeker you mother fuck er meathead dawnseeker who the hell are you why you removed my earthquake page you didn t do this right to remove my editing my work is to fix and edit the true words and incident of wikipedia in fact there is a mistakes in wikipedia so i want to fix my wkipedia don t revert my edits this is true and re correct the wikipedia hope you understand,-1 +what a fuck ing nosey ass hole any reason why you decided to butt your nose in where it doesn t belong,-1 +hey jac how very chicken shit of you to take a shot at someone who has been block from responding for a week feel better about yourself down there in mom s basement you pop tart suck ing shit bag as for the av news page i e mailed them about your bs actions adolph bwilkens hitler and they asked me to discontinue my efforts on their behalf seems they think not being on wiki is preferred so basically to all the nazi mods go fuck yourselves,-1 +you re full of shit,-1 +i have an awesome idea since it s allowed to add a pic of some dick ess fag like in micropenis or a fag suck ing his own dick like in autofellatio can t we make a porn gallery here and update it at least weekly,-1 +you dumb ass why the fuck would you delete the trajectories on the b day page you fuck in retarted bitch it s more informal and now look at how small the page is you whore you probaly get fuck ed by ur dad everyday you whore slut bag,-1 +you re welcome and i m gonna vandalize every single page on the wikipedia hopefully you will enjoy my stay and for the future i m gonna find out where you live and i m gonna kickin your ass and the ass of your family so watch out you nigger heil hitler,-1 +you suck what is wrong with you all i wanted to do was make an article about my wrestling coach and you deleted it before i even got finished making it guess what he got to see it anyway cuz i told him to go online then i recreated it censor that you piece of crap its probably already gone again but i don t care you shouldn t mess with wrestlers robby will do something a lot more painful to you than his star wrestler did to that other kid on his page believe it or not that guy was me i m irish too you shouldn t player hate on fellow irish people hillcrestwrestler,-1 +personal attack number this is another personal attack about you being a massive donkey dick suck ing homo sex this is a concerned plea that you should at once drown yourself in a sewer fuck ing fuck off you faggot and if you threaten me with legal action again i ll fuck ing come over there tie you to your computer chair and stick my cock up your ass until it bleeds you fuck er,-1 +w hate ver fuck ing block me then you punk ass bitch i don t give a flying fuck you obviously just go around making sure that random ass wiki pages are safe for everyone and don t have complete information if you blcok me i will continue to send you these messages and when i am un block the fires from hell will be unleashed upon wikipedia you want to see some vandalism just as i did with islam christianity and miracle whip in the past i will do to anything i see with your fuck ing faggot ass signature on it seriously do you have to be such a whinny cock suck ing dick ead can you even respond to these it doesn t seem like it you just put all this horse shit on here and think that your place of authority on wikipedia makes you a big person you re probably that kid that people thought would kill everyone in high school really i hope you get block from wiki edits fuck you to death,-1 +deleting pop this whole place open excuse me but what the fuck do you think you re doing i posted a page on here for my band pop this whole place open and you promptly deleted it what is the meaning of this debauchery wikipedia is clearly a website used to provide information what harm comes from posting a page about my band it was completely truthful and i am just trying to make a name for myself who do you thin you are deleting this page you go around judging people s contributions to other pages about popular subjects and that is perfectly fine but who the fuck are you to tell me that the information that i posted about my own band isn t worthy of being on wikipedia huh who would better be the authority on the subject than i i ought to find you and expose my penis to you you ass hole are nothing but a whore a whore who thinks they have some kind of say in the matters of life what if we became famous then there would be a page on here about us and you wouldn t be deleting it but since we are some band you ve never heard of that makes it okay to delete our page you must be some high authority in the music business that i don t know about i must have insulted your intelligence by making a page which only i could possibly contain all the knowledge to regardless of the reason that you deleted my page let me tell you something schmegma von dick uckington you can fuck yourself long and hard with a baseball bat covered in barbed wire how dare you delet my page bring it back to wikipedia within the hour or i will continue to post insulting things on your talk page you ergonomic keyboard using alternative mp player owning fuck i hope you get cancer and if you or a close relative of yours already has cancer good fuck you r martin hemenway,-1 +and your a fuck ing fat wanker with no life sits all day on the pc festering in his own shit get a life you fat waster,-1 +i h u i h u u suck ur a nerd w nothing better do than piss peeps on wikipedia off,-1 +fuck all this shit in to dick ania,-1 +i am going to murder zimzalabim st for being evil homo sex jew s,-1 +fuck wiki fuck this piece of shit called wikipedia it bull shit of misinformation and zionist propaganda,-1 +hahaha wow that is the stupidest thing i ve ever read what the heck was the simulation based on do you believe everything you read haha it looks like you do you are an idiot if you believe that and it ignores evidence that proves humans evolved over years ago how could a european and australian aborigine have a recent common ancestor in that time frame if its already known that those people have been isolated in australia for at least years i hope you are joking about this you loser haha,-1 +hola fuck er retard who has nothing better to do than do wikipedia shit fuck you ass hole,-1 +real cute you rip the wings off flies too you re as stupid as you are corrupt i ve dealt with you corrupt ass hole s before i was giving the kid a warning nice job playing with him for your own amusement you fuck ing corrupt faggot,-1 +as hole take a seay from an ex anon member fuc off,-1 +sup nigger z can u unprotect so i can post like a massive goatse on this page ta,-1 +you idiot ic dung whore,-1 +fuck you andre michael brown you undersized cowardly pussy you and that pussy ass dip shit bitch grey jinjo are sorely in need of an ass kicking,-1 +i m pissed wikipedia admins really suck i m trying to get help here and they block me from editing you stupid idiot s you re just lazy bastard s,-1 +fuck you mother fuck er mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch mother fuck er of a bitch,-1 +yo iono wat u talkin bout i fixed jibbs page cause someone else waz sayin fake shit bouthim so dont start wit me or we will have problems,-1 +wtf u fckin faggot ass mutha fcker u jus re did and delted my work and my gay school wtf is ur promblem u gay child molester,-1 +some helpful advice look shit head why the fuck did you delete my redirects clit rock and butt rock they are perfectly synonymous with the names of the articles they redirected to of course you must be one of those musically ignorant philistine faggot s who seem to crawl all over the internet tell you what i ll give you some helpful on how not to be such a retard ed poof find a way to go back in time go back to the year when you were an infant go to the house you grew up in tell you bitch ass mother to not keep dropping you on your head tell that ho that because of her you magically developed symptoms of down s syndrome as you grew older so much so that these you have to become a mindless vanda fight admin gnome on wikipedia cause that s the only productive thing you can do i hope you don t take this the wrong way i m just trying to help somebody with far less mental facility than i best of luck with your future and remember that thanks to medical advances down s syndrome patients are slowly getting integrated into normal society so there s hope for you yet,-1 +sesond attack for toonlucas you re a fuck ing shit stop blocking me fuck you since my account named morty smith was block,-1 +you can t continue our debate so you ban me comedy the vandalism to deep purple still isnt justified so fuck you,-1 +dear cat piss your are an idiot apparently you have history in removing people s edits edits that are not your contribution grow up and get the fuck out of the house you moron,-1 +fuck witts on wikipedia,-1 +go to hell only stooges block people,-1 +hey gwernol go suck a dick you fuck in piece of shit i told you that you cant stop me whether i m eoganan pan ethnic whoever the fuck i will bring this piece of shit thing down and put faggot users like wobble in their place anyone can edit this shit so go fuck yaself bitch,-1 +maybe you should look up what harassment is please change the reasoning for my block to something respectable that deals with the situation at hand i did not harrass you in any way shape or form i asked you to fuck off in the context of my user talk page and i repeat again my statement fuck off my talk page when this issue is over it is my right to ask you to fuck off my talk page it is not my right to block you from this page but again it is my right to ask you to fuck off this user talk page bits andpieces,-1 +bull shit william penn used the phrase too i think this is a very biased article,-1 +i spent minutes working on a blurb on the chaos movie page used links to back up the information and than you removed every fuck ing word that i wrote burn in hell,-1 +can i insert my big dick into your vagina it will make you feel good,-1 +bitch say one more smartass thing you sit on wiki like a bum reading peoples articles and making hoe shit corrections are you even from central ohio you know nothing about any high schools let alone their lacross dude get a life stop coming at my neck man broah,-1 +wow you re really fuck ing ignorant,-1 +you are homo sex you fuck people through the ass you hire prostitutes your mom s a hooker you shud never have unprotected your page,-1 +unblock please unblock me my friend was drunk and fuck ed up several articles i would like this account back thank you,-1 +ignore him scientizzle is just an ass hole,-1 +neo spirit pro wrestling buddy i m training under the name kaine which i ripped off of my buddy immortalkaine also i m pretty sure you can say fuck on wikipedia as i ve already fuck in said it fuck in times you fuck ing moron i ve already filed an ani report against you as you have created several accounts just for the purpose of starting flame wars so you re too damn late also your aunt isn t donna goldsmith retard,-1 +just another white supremacist dog nuff said only a mother fuck er shoots prisoners res firestar has been reverting this for some time i wonder if his this pig s descendant,-1 +thank you for showing me just how much of jackass all wikipedia gardeners are i mean i d heard stories but you guys really suck see ya lost another wikipedia editor,-1 +tasmania at conservapedia a bit of a laugh http w conservapedia com tasmania all quotes are from http w conservapedia com index php title tasmania oldid tasmania is a small island and state in australia its population is approximately million and its capital hobart has a population of just over people tasmania joined the australian federation in a move that was not supported by a significant minority of the voting population in a referendum to leave the federation was only just defeated it required a majority in both houses as well by voters and failed to gain a majority in the upper house don t you love the encyclopaedia that no one unless you are registered and you can t register can edit fuck you,-1 +hanibal you re a bastard pro assad the rebels aleppo central prison have been completely assad s like you re a bastard many men like to have sex with your mother mother assad you re a genital fit many men will serve your mother every day and every day it eats genital but you and your bastard assad and parents no gvhy can not eat of course i understand that when you and your parents bastard to eat not eat wedge i suggest that parents make you eat my wedge in the hope that residents will separate your head from your body,-1 +scheinwerfermann you are very rude there are many negative side effects from excessive ejaculation many of which are addressed in other wiki articles such as pornography addiction i am not going to waist time arguing with you just another house md wannabe jerk off loser,-1 +fuck i want to fuck you mo,-1 +ass hole s on behalf of all americans canadians japanese and other countries who have yet to see it thank you for spoiling the fuck ing movie,-1 +fuck of ff f f f f f f f f,-1 +doug you re an nobody you are some old bored fart who sits on wikipedia even on christmas day with worthless edits its pure psychological projection on your behalf that you regularly attack people as here author has no degree when you have been exposed as a total charlatan as having no degree yourself despite listing on your user account that you are an academic,-1 +your a bitch hey bitch i own this shit bitch and u suck dick if u want the chaos to stop meet me at and ill fuck u up any time u want it bitch,-1 +hey vacuos empty minded cola get a life the reason no one has edited your garbage articles is because no one cares only cult fanatics who have major emotional problems care about dahn yoga and its scummy leader how much do you want to bet that there aren t sources in the korean language listing your beloved ilchee bastard as the deviant greedy prick he is why are none of these sources up or the fact that lee s former devotees have gone public with allegations of all sorts of evildoing end the sham you care as much for wiki as any other cult fanatic the articles you helped to edit are a remote cry from fair balanced or factual end the sham take a good look in the mirror and at the same time look at your own cynical self and how it is that in a world filled with morals spirituality and culture you chose such a false and criminal like path bring on the criticism as only a cola dahn nutjob would,-1 +watch the fuck out,-1 +stuff keilor downs u suck,-1 +want to explain to me why you can revert your page but i can t fuck ing hypocrite,-1 +no abusing bots and stop being an idiot the pedigree is mislabeled even in the definition given on the page it s not a true facebuster so it should be listed on ddt i was nice and left it listed with a pointer on the facebuster page dont be a dumb fuck,-1 +yo the movement is dipset get that shit str cracka jack move the movement,-1 +still dont give a fuhk get off my page bro,-1 +ass hole u r a fuck ing ass hole u have no right to be at my talk page have a nice day bastard,-1 +april utc note restored stop fuck ing hounding mr the rollback eas a mistake btw am on mobile,-1 +nonsense calzaghe is undisputed linear champion xman should be banned again fuck ing idiot,-1 +also i munch down on some delicious penis om nom nom and i can do nothing about this edit because it is on a personal userpage lolz also my mom is so fat,-1 +criticism what the hell is that crap in the section some moron called criticism it isn t even formated like the rest of the sections and it is just a list of people dates not criticisms,-1 +you dick i am no vandal talk,-1 +dreamguy i ve already promised ed that i will leave the vampire page alone it s not worth having to deal with dreamguy i m not apologizing to him though he s a stuck up ass hole and he keeps vandalizing my user page and lying about me,-1 +maybe he should leave e g to fc mars but i m pretty sure rooney would follow that bastard by using a rocket,-1 +you fuck ing harry potter gay porn suck ing ass hole morhone,-1 +hey dick ads stop hijacking this wiki these are the final days of ytmnd they need to be documented ps by the way you re a fuck ing idiot for believing a wiki article as fact do a whois lookup fuck ing wiki nazi s oopssorryguys ytmnd com,-1 +rdh i wouldnt be so proud to label youself a wiki facsist as you have no idea of what the original meaning is of that world that particular philiosophy caused millions of people to die and people who disagreed with them were put to death please read the wiki entry on facsists and how do you know that the orignal entry on a page with no corrobarting backup is factual information you adjust your meaning of factual information to fit your particular brand of socialist bull shit just because leithp is less of a wiki facsist is not a glowing statement either the wikipedia concept is doomed to failure becuase we have so called editors like yourself who edit the pages to satisfy yourselves a real editor has knowldege of a particular subject matter and is supervised by people to ensure fairness of content the required registration solves no problem except less work for people like you but still leaves an enormous creditability problem which wiki has been recently exposed to have so have fun while you can since this format is bull shit as far as a serious encyclopedia venue go help sting save the rainforests moron,-1 +you are a vandal you removed the reference to chapter even tho i edited not to violate the copyright also there is no speculation again you are the dick not me,-1 +yeah black peolpel rpck st dhs,-1 +hi dip shit just so we re clear i m into vandalizing making occassional intentional errors and making valuable contributions that none of you other idiot s know anything about the problem is which is which lololololololololpenis,-1 +are you trying to be funny if you are serious and i get it correctly you mean when someone mentioned i m an expert for cunt another will respond with yes i m a big fan of pussy too i might be wrong though,-1 +sorry about the editing about max hohar but it was not me because of my freand but run at me bro i hack you like harry potter cast spell on your mum i m high right now and very bored so go fuck your self you asian prick,-1 +yer all a bunch of wankers pth nipple,-1 +so you admit to forgetting about melbourne existing in both florida and australia thereby validating my edit as justified but cos you re so quick to judge you still lay fault with me if you want a thing like wiki to become an open encyclopaedia for everyone and not just geeks then ditch the attitude and processes cos who can be fuck ed learning them,-1 +this isn t really the place to ask for this but i ll try not to be a cunt like some of the other people who answer because it s i dunno some random wikipedia reason that cannot be explained in laymen s terms mainly because yuke s are lazy nuggets who don t even bother to check the roster for any updates since last year oh and because they ve been paid you know how it is,-1 +i m not foolish you mother is foolish you prick and replay to me on my account not on my ip your such a nerd with acne that will probally die alone thats a shame thinking your all cool going on wikipedia everyday of your life and not doing anything if your a teenager that just makes it worse,-1 +seriously editing has gotten so bad that this level of trolling had wiped out the page to the point that all that s left is the text posted in the subject header of this section fuck ing pathetic,-1 +someone should address this fuck ing problem you fuck s people are allowed to delete w hate ver reference they want without being dealt with,-1 +here you go again i meant to say tighten up not lighten up as in tighten up and do your job better who do you think you are to be constantly correcting me now i see why you work for a website because behavior like that will never fly in the real world you do a shit job of representing this site furthermore do not try to threaten me by saying i m going to get block because i couldn t give a fuck less i m done with this website after what happened yesterday so ms fuck you you little smart ass and fuck wikipedia,-1 +i have never once seen a tangible benefit from my work not even a thank you i have however been shit on over and over,-1 +you dirty hoe open wide bitch,-1 +gay boy i write to u to tell u that i know that u shaged my husband u gay baitch lots of love u know who,-1 +just one question are you actually employed by wikipedia and therefore sanctioned to dicate what is right and wrong on this website or just attempting to irritate as many people as possible with your one man self importance ego inflating censorship parade get off your high horse and stop being such a massive cunt with regards derek james acorah,-1 +yeah for real stupid,-1 +i don t give a shit this ain t my fuck in account wit yo dumb ass what kind of fuck in nerd spends time on here just to make fix articles are you some fuck in teacher or somethin damn on my fridays i m out wit friends and shit you just like my fuck in brotther after i get him banned from here he comin wit me and yo nerdy virgin ass can sit on the damn computer,-1 +craig newmark craig newmark is a kike fuck head,-1 +i still edit ass hole,-1 +your death you shit fuck tard i am going to cut your balls of and feed them to my dog then i am going to slit your shit poke throat you mother fuck ing cunt jay barnabay,-1 +your threats don t work mother fuck er i don t care if you block this ip address forever you ll never know who i am you ll just prevent other people from using wikipedia which is fine by me and i will continue to challenge your lies i have plenty of ip addresses and plenty of user names,-1 +hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard p,-1 +you fuck ing bitch shut the fuck up you ass hole all u wiki admin are ass hole s just cuz u can do w hate ver u want fuck yoy dianna tele and jimmy wales the ass hole created this shit you call a website and fuck all you admin bitch s you let a fuck ing suck y ass band get a wiki page but not a way better one i mean yall are fuck ing ass hole s,-1 +cena gets too much shit from people for no reason he can t control the way he is booked i just believe they should stop pushing him before everyone hate s him way too much or just turn him heel which would work for me batista whines too much about his position in the company and should shut his mouth fuck him job him out to jbl i use to like him but he has main evented more than cena and is in a better position than he should be just because of triple h orton does w hate ver the fuck he wants because he is a main star and friends with triple h should have been fired already for smoking pot in front of everyone if it wasn t for triple h he would be jobbing in tna right now fuck him that son of a bitch does not deserve the spot he has he is good of the mic but ring skills lack headlock after headlock they compare him to aj styles which is a joke in my opinion since aj has pure wrestling ability triple been playing politics for years and deserves to become a jobber for the people he has buried he tried to keep booker t and kurt angle down angle is one of the best wrestlers and if you watch his match with abyss at turning point which i can give you a link it is worth the watch trust me is still doing great things booker t deserved a hell of alot more than he did in wwe i can t stand him and i hope he gets hit by a car if he ends taker s streak i will come and burn down wwe head quarters while leaving a message that say another building burns unless triple h is fired c,-1 +well my apologies i guess i didn t read all the rules of wikipedia carefully you fuck ing retard ed big long dick nose no culture norwegian piece of shit,-1 +what s your concept for uncivic you are one of the worst collaborators of wikipedia you can block any user that you can so you considers yourself the owner of wikipedia i repeat that thanks to you there are a lot of users that abandon to collaborate on wikipedia and another thing you are on of the best mother fuck ers i met if you are happy blocking me make it it s the only thing that makes you realized in your poor life come one block all persons that not respect your limitations and appropiate the wikipedia project to yourself yeah so stupid you are,-1 +beware bertie s an ignorant cunt,-1 +nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger,-1 +pukata dishoom bi polar ass low class s o b,-1 +also lol you can t even spell you fuck ing failboat,-1 +im a fuck ing ass hole,-1 +what the fuck what the fuck dude i can t add my own fuck ing genre to a page goddamnit i m fed up with this shit it s bad enough i have to leave melodic death metal on that page but for me not being able to add the genre that that shit band actually falls under is insane i left a good source fuck ing shit fuck k,-1 +i hope world of warcraft dies a long and painful death world of warcraft suck s the biggest donkey balls on this planet i cannot express how much i hate this piece of wank other than hoping it is rape stabbed drowned rape again when it s dead drown it in its own blood from being stabbed afterwards it should be buried in a feet deep pit full of maggots and when they have finished with it the whole pit should be set alight with matches,-1 +loading that fuck ing garbage here,-1 +you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck asyou suck ass hole you suck my dick you think your so good at everything but you suck i mean i was looking through schmeaters history and went on the deletion page i think he should make a page on tie ins oh and i m looking forward to getting block i think you ll like that you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck as you suck an ass hole you suck my dick ps i hate you so you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck ass hole you suck as you suck an ass hole you suck my dick you can block me even though it s my first day here,-1 +basement fag hello could you please explain why you are such a basement fag if you re not familiar with the term it is someone who lives in their parents basement has absolutely no friends uses the computer of the day and whom enjoys homo sex behavior with other males this involves receiving and delivering it has come to my attention you are a giant basement fag and i was wondering how you became such a basement fag,-1 +i hope you re on the next plane just so we can erase all record of what they did to you the way you are trying to revise this history ass hole,-1 +bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks all is bollocks bollocks,-1 +dis bitch has sum nice tatas i wanna squeeze dem melons,-1 +trouted you have been trouted for being an idiot,-1 +byzant um what the fuck s your problem the real byzantium flags are here http en wikipedia org wiki byzantine empire,-1 +personal attack how is oh i ll be block imagine that why it would be the end of the world wouldn t it as if i can t get a new ip in seconds a personal attack ass hole this is a personal attack you re a faggot just like most of wikipedia s editors your mother is a dirty whore that suck s nigger cock s in hell and gets sodomized by satan s little helpers stick your block from editing deep up your ass then proceed to fist yourself with a blood soaked baseball bat alan you fat fuck should i choose to do so i could vandalize your page every hour until millions of ips would be block faggot,-1 +some ass hole keeps changing the dates advanced warfighter specifically states that the game took place in yet some ass hole idiot keeps changing it to please do something about that,-1 +fuck it hard in its black ring oh yeah,-1 +administrators are elitist bastard s i don t care what anyone says the vast majority of administrators are pompous overbearing control freaks they run around with this attitude that having sysop is some sort of right priviledge or a permission to bully harras and generally act like a dick thinking they can get away with it there is a cabal and it makes sneaky back door decisions such as deletions vote stacking blocks trying to force editors into rr page protections et cetera almost daily it would seem i m not the only person that thinks most admins are total fuck wits with an attitude problem i have been block for no reason whatsoever because some dick ead feels he can abuse his power,-1 +fuck this wesley outrigger and latterly johnbod life is short,-1 +declaration of slavery it s funny lighten up esay why don t you eat a taco or something hombre then you can ride your little donkey pablito into town to see how the civil war in your shit hole backwards ass hole of a nation is going,-1 +hello will you suck my dick for please reply,-1 +fuck off don t fuck with me fuck off,-1 +liar i did not create the page i only removed the tag you are a liar and a troll now kindly fuck off,-1 +and worship the penis of jesus and believe that he was the greatest mother fuck er in the world,-1 +poopoo caca bullpenis shit cock mother fuck er vagina,-1 +wha s a reliable source mike something that comes out your ma s cunt when she s breast feeding you you wanker,-1 +sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages,-1 +why don t you go fuck yourself you dip shit you started with the insults i m just not taking crap from a stupid fanboy like you if you actually looked at my edit history you d see that i do contribute articles and unlike waste of space levy i also do regular maintenance work here like cleaning up categories and other things admins are supposed to do keep replying i m not wasting any effort improving this piece of crap article but i ll be glad to call you names and point out how stupid you are all day long,-1 +the link is there i have an idea why not delete the page and then re create it a few days later you fuck ing retard have you a life at all is it your life to go around and delete everything here why not go outside and build a snowman you loser,-1 +why do you feel the need to be up my ass get a life will you it s not that serious don t you have anything else better to do with your time instead of bother me get a real job you are way to concerned with the things i do specifically it seems every time i make an edit you are right there within seconds to say something about it for the record i have not acted inappropriately regarding matters in the past i was being personally attacked yet i saw no warnings on anyone else s page another thing i don t need you to tell me that you think that my comments on another page sounded like a personal attack if i say it wasn t then it wasn t bottom line why dont you go and bother people who are on here to do nothing more than vandalize people s pages if i ever hear from you again i will be making a formal complaint to the site s real administrators to let them know you are harrasing me,-1 +i know elvis was a turd burgler cos i fuck ed him only last week he s gotten a bit smelly recently and isn t as plump as he used to be by the way,-1 +hey you fascist swine you re gonna get rape in the ass nice job being jimbo s bitch you pathetic piece of shit,-1 +come back you butthurt turd doctor where the heck have you gone,-1 +wow what an incredible douchebag i love the hyperbole i dread to think of the consequences what a self important jackass,-1 +stop fuck ing with the ytmnd wiki,-1 +dad gum you fuck ers dont like me editing do you dont you be dissing charlie bray now hes just a fatass kid,-1 +also i ohnoitsjamie am a homo sex who likes butt sex,-1 +you are a pathetic lifeless fuck,-1 +his mother is a slutty whore,-1 +i fuck ed your mom last night it felt awsome i stuck my dick in her mouth and in her pussy she let me lick her tits and fuck her all night long ye ha is what i was screaming,-1 +because he is a faggot,-1 +bitch ass hole mother fuck er go fuck ur mothers cunt trade ur wife sister,-1 +fuck you you little shit i hope to see you end your fuck ing worthless existence,-1 +it seems that you are very busy in pushing your short one in the hole of ur mother son of a whore,-1 +up hes a fraud a fuck ing fraud,-1 +quit editing chicago med you are so stupid how can someone post on here and get it verfied without you changing it information posted on here thats cited is not copyright are you from america u idiot get a life stop ruinging chicago meds page preceding unsigned comment added by,-1 +u suck,-1 +fuck off fuck off,-1 +hanibal you re a bastard pro assad the rebels aleppo central prison have been completely assad s like you re a bastard many men like to have sex with your mother mother assad you re a genital fit many men will serve your mother every day and every day it eats genital but you and your bastard assad and parents no gvhy can not eat of course i understand that when you and your parents bastard to eat not eat wedge i suggest that parents make you eat my wedge in the hope that residents will separate your head from your body hanibal you re a bastard pro assad the rebels aleppo central prison have been completely assad s like you re a bastard many men like to have sex with your mother mother assad you re a genital fit many men will serve your mother every day and every day it eats genital but you and your bastard assad and parents no gvhy can not eat of course i understand that when you and your parents bastard to eat not eat wedge i suggest that parents make you eat my wedge in the hope that residents will separate your head from your body hanibal you re a bastard pro assad the rebels aleppo central prison have been completely assad s like you re a bastard many men like to have sex with your mother mother assad you re a genital fit many men will serve your mother every day and every day it eats genital but you and your bastard assad and parents no gvhy can not eat of course i understand that when you and your parents bastard to eat not eat wedge i suggest that parents make you eat my wedge in the hope that residents will separate your head from your body hanibal you re a bastard pro assad the rebels aleppo central prison have been completely assad s like you re a bastard many men like to have sex with your mother mother assad you re a genital fit many men will serve your mother every day and every day it eats genital but you and your bastard assad and parents no gvhy can not eat of course i understand that when you and your parents bastard to eat not eat wedge i suggest that parents make you eat my wedge in the hope that residents will separate your head from your body hanibal you re a bastard pro assad the rebels aleppo central prison have been completely assad s like you re a bastard many men like to have sex with your mother mother assad you re a genital fit many men will serve your mother every day and every day it eats genital but you and your bastard assad and parents no gvhy can not eat of course i understand that when you and your parents bastard to eat not eat wedge i suggest that parents make you eat my wedge in the hope that residents will separate your head from your body hanibal you re a bastard pro assad the rebels aleppo central prison have been completely assad s like you re a bastard many men like to have sex with your mother mother assad you re a genital fit many men will serve your mother every day and every day it eats genital but you and your bastard assad and parents no gvhy can not eat of course i understand that when you and your parents bastard to eat not eat wedge i suggest that parents make you eat my wedge in the hope that residents will separate your head from your body hanibal you re a bastard pro assad the rebels aleppo central prison have been completely assad s like you re a bastard many men like to have sex with your mother mother assad you re a genital fit many men will serve your mother every day and every day it eats genital but you and your bastard assad and parents no gvhy can not eat of course i understand that when you and your parents bastard to eat not eat wedge i suggest that parents make you eat my wedge in the hope that residents will separate your head from your body hanibal you re a bastard pro assad the rebels aleppo central prison have been completely assad s like you re a bastard many men like to have sex with your mother mother assad you re a genital fit many men will serve your mother every day and every day it eats genital but you and your bastard assad and parents no gvhy can not eat of course i understand that when you and your parents bastard to eat not eat wedge i suggest that parents make you eat my wedge in the hope that residents will separate your head from your body hanibal you re a bastard pro assad the rebels aleppo central prison have been completely assad s like you re a bastard many men like to have sex with your mother mother assad you re a genital fit many men will serve your mother every day and every day it eats genital but you and your bastard assad and parents no gvhy can not eat of course i understand that when you and your parents bastard to eat not eat wedge i suggest that parents make you eat my wedge in the hope that residents will separate your head from your body,-1 +eat s hit n ig ger p ill never stop fuck ing up your g ay little f ag got website s u ck my c ock,-1 +prick hey ryan fuck you faggot how do you like those apples bitch,-1 +warning please stop if you continue being a jackass you will be block from editing wikipedia,-1 +jerk me jolly fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck computers,-1 +to whoever said most people in arab are homo sex s or other bad things go to d n f in hell you motherf in d n son of a d n f ing c t of a bitch,-1 +nightstallions wife got fuck ed by a nigger and had his baby and it smelled of fried chicken,-1 +nigger wit attitude your such a cunt,-1 +new here and have no idea where to put this comment but barrack obama gets a quick link and pulmonary emboli does not what the fuck is a pulmonary emboli,-1 +i wouldn t be talking they burned you really bad and thats all you can come up with if they are teenagers you must be a two year old don t shit yourself now,-1 +wiki admin suck you fuck ing bitch shut the fuck up you ass hole all u wiki admin are ass hole s just cuz u can do w hate ver u want fuck you dianna teles burtalbert and the one i mean the most jimmy wales fuck all you admin bitch,-1 +fuck book it suck s hairy balls,-1 +a big thank you you have just block me in the middle of trying to redirect half a dozen pages thank you thank you hopefully it gives you a sense of power wasting people s time i bet you re a traffic warden or a cop or something like that in real life a jobsworth power hungry ass hole thanks again,-1 +fuck you you cunt i had a whole documentary about cock us americus yours truthfuly timeon paxmcdowell,-1 +w hate ver dude fuck off,-1 +hey hey faggot are you dead or are you watching your mom getting rape by islamic terrorists,-1 +i hate you kafziel go suck a dick man your mom is a cunt and you dad has a small dick go find yourself a life someday man,-1 +please do not add defamatory content to wikipedia as you did to list of wwe intercontinental champions what a fuck ing hypocrite the fact that you left me a message telling me what a fuck ing douchebag i am just goes to show what a massive tool you are just for your information that day rule was something i started years ago,-1 +stalling tactics are you kidding me apparently i m the only one taking this seriously there s no time limit so talking about stalling tactics is ridiculous holy fuck read what you type before you click save page ok l,-1 +it wasnt original research i m so scared last warning i ll just change my ucking ip,-1 +he s a ass like i said,-1 +indeed it is becoming increasingly apparent that the mass migrations of the past were myths hahaha what an idiot you are wobble because there is nothing claiming this or supporting this the bronze age and following migrations haven t been proven disproven you fool and there is nothing becoming increasingly apparent as to if they didnt happen get a life honestly,-1 +my edits quit fuck ing with my edits you stupid awbern shit eatin sonofa bitch,-1 +why don t you violate my menstruating vagina kneelift,-1 +you re a cock suck rick you re a cock suck rick,-1 +eat shit get rid of goofs you queers,-1 +go suck your mudda why did you undo my post on underage drinking preceding unsigned comment added by t because you were attacking cluebot which we all know and love talk contribs,-1 +fuck you fiskeharrison go suck your dad s dick,-1 +your mom plays gay music linkin park is the shit mutha fuck a,-1 +fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas fuck vuvuzelas,-1 +prashant i don t give a rat s ass about your opinion so stop posting on my page i have warned you several times and i repeat once more stay away from me talk,-1 +you too can join the ranks of looking to be offended bullies who have been told to fuck off clean up your act stop acting like a three year old throwing a temper tantrum and you won t be called mean names,-1 +any chance i can get this shortened i ll admit i acted like a dick but i was just messing around i don t even care that much about the issue at chris long as i ve been following it the past few days and i probably wouldn t even jump back into the discussion there holla,-1 +chris you re one to talk you re the dick strike through for x kal that vandalizes gnu related articles you might look awfully cute in a pirate hat but you do string searches for gnu and eviscerate it like it s all that s keeping you alive,-1 +pretentious stupid moron you are leaving subhuman messages in the talk pages of shared ip addresses by the time that someone sees these pathetic attempts at proving your worth the original user is long gone morons like you are biting the newbies like first class ass hole s it wasn t like this back in my days all of this bureaucratic idiocy is what drove me away despite having reaches the admin elite following a rfa the only thing more pathetic that this project s degradation is you,-1 +eat shit and die you can block me now but that doesn t mean anything you re nothing but a step below a rent a cop admins ain t shit,-1 +put the usa as an operator they own it they should be listed http upload wikimedia org wikipedia commons f sukhoi su operators png seriously first they buy russian quipment to copy the technology and then they dont want to be listed as operator dumb mother fuck ers typical american bias here in wikipedia americans are bunch of scumbags hey look at us we buy russian equipment so we can steal technology but we still gonna say russian army is shit and dont wanna list as part of our army americans are all a bunch of hypocrites,-1 +irresponsible dumheads each and every image has fair use rationale and appropriate copyright clarifications shit heads like you do not deserve any dialogue,-1 +fuck you fuck you racist bastard,-1 +fuck you you re a fag,-1 +shut the fuck up you wannabe cholo scum,-1 +fuck an morons stop changan the pages or i am twist off youre littal pee wees,-1 +whosoever has mentioned yadavs as shudras is person with limited knowledge and mind filled with shit you are mentioning shudras to caste who has had glorious history do you even know anything bout lord krishna and his ancestor yadu yadavs are kshatriyas and if u think tht all this is myth thn you shud know that yadavs ruled the india upto contury before mughal rule so kindly remove this shudras bull shit,-1 +fxdh http w barenakedislam com wp content uploads liveleak dot com e husby kravaller liten jpg resized jpg if they look swedish to you you re fuck ing blind,-1 +you like to be fuck ed,-1 +oh you kimchi eater why don t you just stop being such an idiot and admit the fact,-1 +ohh i didn t thought that situation is that bad you being gay i m sorry for you faggot preceding unsigned comment added by,-1 +please refrain from making me fuch you your edits appear to constitute masturbation and have been reverted or removed if you would like to experiment please use the sex room thank you a ca eff fece acb,-1 +zomfg you ppl make me laugh ha ha ha jeezus god you people need to get a social life i mean come on people ask yourself this are you a potiental re re or just a full blown retard and wishes whats this crap about wishes hes not in the farking ground not dead you stupid idoit xd robohacker comin throu the wall is real fuck in cool you glass bitch,-1 +you stupid mother fuck er i made mistake and you and your fuck ing rules fuck s it up why dont you fix it instead of delete it like a lazy mother fuck er that you are go ahead report me its my true opinions,-1 +hey travis deleting shit isn t something to be proud of you seem to be so proud to be part of some group called wikiproject wikipedians for decency but you sure like to determine what is deleted get rid of that faggot y mustache,-1 +your a cock hey i would just like to say that ure a fannyman who is a unionist bigot up the irish u cock is derry not londonderry its the stolen and illegally occupied counties of ireland not northern ireland,-1 +yep just keep talking go to hell,-1 +arc gritt the fuck ing cunt of all cunt s ruined me by saying i vandalised formula one season what a cunt,-1 +you don t even clean your ass when you poop nice try,-1 +dickhead you know it was stupid you know it wasn t clever so why do it,-1 +bongwarrior is a faggot,-1 +tamar braxton u r retard ed how can youtube not be a verifiable source i put a clip of her hitting a d and e one octave above soprano c d and e and you say it s not a good source what is then i bet if i even got a video of her hitting whistle notes you d say it wasn t verifiable of course it it if you see or hear her hitting a whistle note then she s a whistle registre singer the same applies to all whsitle register singers u r just stupid u and mr i ll bring the food who totally destroyed the whsitle register singers category,-1 +you reverted some important facts from the bob carr article fuck you,-1 +even though it is fuck ing cool to vandalize wikipedia,-1 +sand in your vagina if you have sand in your vagina and it s bothering you you may wish to douche rather than attacking other users and escalating fights which you have clearly done if you d backed off and taken the advice at wp civ and wp npa you wouldn t have any problems you should be block for your offenses i may report you yes you re a fuck ing kid you re not an adult why fight it why not admit it i may be twice your age and know a hell of a lot more than you do like how to resist snitching on people and minding your own business you re asking to be reprimanded dumb ass,-1 +corrected spelling of recognised to recognized in the pluto article i undid your revisions to the article as your spelling is incorrect according to both merriam webster s dictionary and my computer s standard spell checker wikipedia was founded by americans and is hosted on servers in america pluto was discovered by an american and its named approved by americans so you and your retard ed ass asperger self can shut up and go cry in a corner about how your country suck s ass compared to america leave your goddamn piece of shit british spellings where they belong in the toilet where america rightly put them,-1 +american s like to get their anusses rape,-1 +so block me stupid prick,-1 +fuck you you dumb mother fuck ing ass hole how dare you son of a bitch fuck ing lock me out you worthless ass hole i hate your guts go to hell you have not seen the last of me i will continue to harass you you piece of shit evryday and screw oregon bitch,-1 +turns out this misinformation is due to in terms of intelligence it annoys me to no end when people on wikipedia throw around claims on degrees or even better intelligence and then do stupid shit like this better to let your actions speak for your intelligence or competence i say,-1 +fat fat faggot n n brandenburg ave merrill wisconsin n n brandenburg ave merrill wisconsin,-1 +yo there you are a useless and fuck ing douchebag go fuck yourself you are a disgrace to wikipedia you sir are a ballsack you think you are so much smarter than everyone else why do you think you are so smart i wish you would leave the wikipedia i can t stand the way you bs the man,-1 +being raeped in the ass doesn t count,-1 +dex will you please stop being such a bitch don t you believe in first ammendment rights come on now i ll bet you are against legalizing cow tipping too aren t you you little fuck ing dork,-1 +i have been block because this white guy couldnt handle the fact that his little white baby dick wasnt good enuff me i am just stating the facts i mean thats what this is an encyclopedia i have been around seen alot of different guys dick im talken hundreds the fact is nigger gs dick are like three to four times the size of white guys and theyre way better in bed and women only want big dick not lil pathetic feeble white dick,-1 +fuck you you self righteous creep,-1 +effin peice of sheet suuck a,-1 +osli is an idiot he wants to deface srebrenica massacre article with already discredited serbian sources he wanted opinion moral equivalism of accused serb run rape camp participant gen lewis mackenzie to be heard on srebrenica massacre article keep his srebrenica genocide denials for left revisionist websites they are not welcome here osli also wanted to include belgrade s already discredited lies about serbs killed to be included in the article when they were already discussed and discredited i will not allow srebrenica massacre article to be poisoned by moral equivalism osli drop dead loser,-1 +mark asten is a pussy pussy pussy pussy pussy pussy pussy loser loser loser fuck er fuck er fuck er hooker hooker hooker son of a bitch son of a bitch son of a bitch welcome,-1 +ckckckck yo i see u tryin change shit wit college point queens but u probably dunt kno shit bout it come cp at night to see wat i mean if ur wite u will get shot i aint lyin datz wat im sayin im jus sayin i live in cp and i even get scared walkin round by maself at nite so im sayin stop changin shit bout cp im blood so u bettah watch out dis summer ma best frend got killed by a crip so im sayin dat theres many of em in da area so watch out nigger,-1 +shit george tan you re a bitch go to hell,-1 +the verifibility policy i don t know other crap,-1 +is iridescant is a faggot,-1 +the most pathetic thing is nationalist losers like yourself spreading your propaganda and expecting people will believe your shit with no questions asked get a life loser either thatm or fuck off and die,-1 +nig g er shut up sit down,-1 +what the fuck is your problem bitch why the fuck did you delete the dreamtime festival page shit head some folks are actually interested in things like that bitch why don t you do yourself and the world a favor and stick your head up your ass and take a big whiff guess what your shit stank like everyone else you self righteous fuck sissy sincerely the guy that s fuck in yo mama bitch,-1 +fuck off and rape your kids fenian bogtrotting shit i hope the ones you love die in a cock accident trepens epichal hello fat ugly lonely smelly little boy only here can you conceit yourself human isn t that right chum only here can you pretend you re liked pretend you mean something pretend you have some value in the eyes of the world when really you re a nothing i am very disappointed,-1 +in balbo also did not fly into st petersburg mumbai or ho chi minh city because those cities were not called that in either if balbo had flown in he would have flown into derry per your petty policy what sort of city needs a stupid policy like this he asked rhetorically ok have you got it now but this is not it s if you don t understand the difference why are you working on an encyclopedia eh eh quit wasting my time with this bull shit bull shit is what you are pushing bull shit got it jesus h christ,-1 +u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha u r n idiot hahahahahahahahahahahahaha,-1 +and you are absolutely full of shit i made no personal attacks show me them now it s good to know where your fuck ing priorities are looks like i will add a third member to my ani report talk,-1 +you suck dick admit it you love it you fuck ing woodhead,-1 +jimbo wales wont stop messing with my ass pus get the fuck off my internet worm get out now,-1 +you are a tattletale douchebag,-1 +they re about to start construction on new lines and exciting now i ll only have to walk two blocks to get to the fackin tube,-1 +ass hole the meaning is important you re a flake,-1 +you were a fool indeed nanobear by not helping us fuck you,-1 +fuck an stop changon it or i am twist off youre littol pee wees and youre fuck on monkey fuck an ideot my name am jossel mubedeon and i done fuck on make things bettor i fixes things undarstand,-1 +i dont give a fuck it will get reposted so you think i give a flying fuck about deleting that article for a month or,-1 +green red desu desu desu desu desu edit this page and you are a cock suck desu,-1 +the bot suck s no skills shut it down give it the old yela treatment it may hurt but it s for the greater good dev null all you want this bot is terrible,-1 +fuck you whores i ll fuck you up old style mother fuck ing trannybangers cunt s,-1 +go ahead call your friend rather than take seconds to say what you object to in the content classic abusive admin shit head behavior,-1 +ill photo shop a dick in his illuminati mouth,-1 +hello i am clue bot and i am a nigger fuck cing piece of shlt,-1 +automatic trans mission hoax about the zis automatic trans mission that was an crazy ruskie imbeciles propaganda i had just fixed that shit,-1 +fuck off fuck you you wiki faggot,-1 +i ll fuck ing eat your queef ass hole if you talk on my talk page i ll rape your family you nigger lover,-1 +fuck you orange suede sof fuck you orange suede sofa cluebot cluebotng megizue dreaded walrus and j delanoy you wanna be cyber bullied for personal attacks anonymous hate s you,-1 +fuck you greenman fuck ing piece of shit you don t have the dignity of having your name on wikipedia you deserve no respect what so ever fuck ing moron giving jose eduardo dos santos false information on wikipedia like saying that he is born in luanda and as a phd lpd yxz degree in timbacktu fuck you communist lover by the way i am shit ting in my pans for not being allowed to post on wikipedia you can suck my cock or probably not as i don t trust your mouth dick head,-1 +fuck off you nazi loving cunt,-1 +very crocker suck s n e g r o cock s i n h e l l,-1 +can you please explain me where is the fuck ing error in my image page i belive this is fairly clear that this is my image i tihnk you are wasting the time of people and you should suicide youself,-1 +excellent work there shii we can t have his kind getting us to think about what the maya actually say about their own prophecies we insulted him offended him and abused him and he just had to be ethical and persistant block those mother fuckeruck kers taking out the entire santa fe public library system is a great preemptive strike also there may be others of his kind that sympathize with those indians these people actually love the earth and that is without reliable sources we kicked their asses and have the right to write their history and interpret their sacred teachings however we please we need more from college students who have been indoctrinated in the church of academia that piece by stitler is one of the most exaggerated and opinionated and so yeah use that as the title of the page and by all means give john major jenkins his own section not a single scholar or mayanists agrees with his appropriated theory and this kind of hypocrisy and arrogance is what wiki is all about we can get away with it by continuing to use our power to censor free thinkers like mardyks and his kind sony pictures is paying us all off with tickets so let us know how many you want free popcorn too whoopee best wishes from jimini cricket,-1 +yamla likes to fuck babies up the ass w willy on wheels is the ultimate vandal jlatondre should fuck off wikipedia and get rape in the eye,-1 +ya mum fuck s ya,-1 +reason why requesting i want to report something so can ips report stuff or can only registered users can if only registered users can then i ll request an account and it s just not fair that i cannot edit because of this anon block shit c mon fuck ing hell,-1 +i wanna fuck you fuck u fuck u fuck u,-1 +pathetic shit ass mr z u fuck ing cunt,-1 +my music is recorded in salvation army studio and google my name is all over google it obvious that this person here cannot read and is a psychopath who loves to tramp on other people and their achivements you find nothing on this guy online you are a bloody lying bastard grammar so the wiki does not have grammar fault before the owners eventually correct them wiki this man is a psycho remove his comments w eddy nu,-1 +fuck you you sadistic admin that orgasms when deleting articles,-1 +suck my dick i assure you my semen is considered wegetarian if you will please swallow it thank you please,-1 +you swine you vulgar little maggot you worthless bag of filth as they say in texas i ll bet you couldn t pour out of a boot with instructions on the heel you are a canker a sore that won t go away i would rather kiss a lawyer than be seen with you you re a putrescent mass a walking vomit you are a spineless little worm deserving nothing but the profoundest contempt you are a jerk a cad a weasel your life is a monument to stupidity you are a stench a revulsion a big suck on a sour lemon you are a bleating foal a curdled staggering mutant dwarf smeared richly with the effluvia and offal accompanying your alleged birth into this world an insensate blinking calf meaningful to nobody abandoned by the puke drooling giggling beasts who sired you and then killed themselves in recognition of what they had done i will never get over the embarrassment of belonging to the same species as you you are a monster an ogre a malformation i barf at the very thought of you you have all the appeal of a paper cut lepers avoid you you are vile worthless less than nothing you are a weed a fungus the dregs of this earth and did i mention you smell try to edit your responses of unnecessary material before attempting to impress us with your insight the evidence that you are a nincompoop will still be available to readers but they will be able to access it more rapidly you snail skulled little rabbit would that a hawk pick you up drive its beak into your brain and upon finding it rancid set you loose to fly briefly before spattering the ocean rocks with the frothy pink shame of your ignoble blood may you choke on the queasy convulsing nausea of your own trite foolish beliefs you are weary stale flat and unprofitable you are grimy squalid nasty and profane you are foul and disgusting you re a fool an ignoramus monkeys look down on you even sheep won t have sex with you you are unreservedly pathetic starved for attention and lost in a land that reality forgot and what meaning do you expect your delusional self important statements of unknowing inexperienced opinion to have with us what fantasy do you hold that you would believe that your tiny fisted tantrums would have more weight than that of a leprous desert rat spinning rabidly in a circle waiting for the bite of the snake you are a waste of flesh you have no rhythm you are ridiculous and obnoxious you are the moral size equivalent of a leech you are a living emptiness a meaningless void you are sour and senile you are a disease you puerile one handed slack jawed drooling meat slapper on a good day you re a half wit you remind me of drool you are deficient in all that lends character you have the personality of wallpaper you are dank and filthy you are asinine and benighted you are the source of all unpleasantness you spread misery and sorrow wherever you go you smarmy lager lout git you bloody woofter sod bugger off pillock you grotty wanking oink artless base court apple john you clouted boggish foot licking twit you dankish clack dish plonker you gormless crook pated tosser you churlish boil brained clotpole ponce you cock ered bum bailey poofter you craven dewberry pisshead cock up pratting naff you gob kissing gleeking flap mouthed coxcomb you dread bolted fobbing beef witted clapper clawed flirt gill you are a fiend and a coward and you have bad breath you are degenerate noxious and depraved i feel debased just for knowing you exist i despise everything about you and i wish you would go away i cannot believe how incredibly stupid you are i mean rock hard stupid dehydrated rock hard stupid stupid so stupid that it goes way beyond the stupid we know into a whole different dimension of stupid you are trans stupid stupid meta stupid stupid collapsed on itself so far that even the neutrons have collapsed stupid gotten so dense that no intellect can escape singularity stupid blazing hot mid day sun on mercury stupid you emit more stupid in one second than our entire galaxy emits in a year quasar stupid your writing has to be a troll nothing in our universe can really be this stupid perhaps this is some primordial fragment from the original big bang of stupid some pure essence of a stupid so uncontaminated by anything else as to be beyond the laws of physics that we know i m sorry i can t go on this is an epiphany of stupid for me after this you may not hear from me again for a while i don t have enough strength left to deride your ignorant questions and half baked comments about unimportant trivia or any of the rest of this drivel duh the only thing worse than your logic is your manners i have snipped away most of what you wrote because well it didn t really say anything your attempt at constructing a creat,-1 +up yours you fuck ing fruit inshane what kind of name is that anyway for a cat,-1 +you are an ignorant bastard lmfao,-1 +go to bed bitch i wana edit pages,-1 +get a life leftist freak reading all the comments on your talk page it seems you re just another wiki bully most people don t give a shit e if you ban them from wiki wikipedia is a joke nowadays wtf don t you get a life,-1 +you better fuck off ruddy shit fuck,-1 +j delanoy fuck s little boys in the ass hole with his small pecker he also gives blumpkins to old men,-1 +itnc go fuck yourself,-1 +i m sorry i missed the whole personal attack i told this loser to get a life which is good advice because he needs one get your shit together,-1 +for three weeks now also if you shit your a pansy and you can t live with the pain so fuck you all because shit ting suck s so what do you think,-1 +i work for virgin in new york and can tell you that i have no intentions of promoting this piece of shit store the managers are ass backward and corrupt and its head office in l a couldn t tell sand from dirt my additions are nothing more than factualof course i could do what i truely feel i should do and just continuously vandlize the pagebut what would that accomplish,-1 +go to hell fatso hey dick ad if you ignore me i ll poke a hole in you and release all the fat i will not hesitate to roast you in an oven like the little piggy you are unblock everyone you ve block or suffer the consequences,-1 +so what he was a paki man a fuck ing nigger they are inferior to us whites,-1 +camp lazlo do you like it or not i don t like camp lazlo it bores me and lazlo is an idiot,-1 +listen you mother fuck ing faggot stop fuck ing with me i will delete anything i want off of pages i created if you dont fuck ing like it deal with it i tried being cordial but you are seriously pissing me off back the fuck off,-1 +watcha gonna do whatcha ya gonna do brother when the pythons and hulkamania run wild on you probably suck buck winston s cock,-1 +it wasn t enough no because they were deported and not executed my human brothers ha ha ha how many wedgies did you get in high school fuck ing frenchies what losers,-1 +hey ass hole s his first name is olin the freaking beheading video confirmed it stop changing it,-1 +suck my greasy dick i will start creating thousands of pages using different names and you can eat the corn out of my shit if you like i can create far more than you can ever delete i will use various screennames various site titles and all so don t fuck with me you split lip bitch,-1 +aw poor mark arsten doesn t have privilages to block me i m shedding a tear can t you grant him the right to surely a homo sex in denial like mark should be able to do this anyway time to whip to a new proxy server and continue my destiny of sabotaging as much of wikipedia as i can obrigado cunt s,-1 +warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing,-1 +so jim burton child molesting faggot i see you are still with us for yet another day making a total buffoon out of yourself as usual i don t know what is sadder here you or the extreme hypocritical arrogance you show by lecturing the world about ethical principles for your claimed rights to abuse our children you have no ethical principles to save your life but it s exactly as the roman poet said isn t it the harlot doth always rebuke the chaste will you ever drop dead we might all breathe a little easier for our kids sake you truly disgust me with every word you write,-1 +question did ponos ever get inserted into vagoo,-1 +its time to pay back you are an ass hole an ass hole and yet again an ass hole total idiot you are a real piece of shit,-1 +go fuck yourself you big cunt,-1 +what the fuck is this,-1 +crafty bro i was going to leave you a nice message about you being a fag or something but i realized you actually are a faggot sorry to hear man,-1 +that s complete bull shit your comments user talk paglakahinka june show that you knew a slow motion edit war are grounds for blocking,-1 +fuck you you fuck ing piece of shit ass fuck ing hole are you ready for the noise b brought on you r u boss playa,-1 +who the hell are u why do u even bother coming back to recap my spelling problems when you dont even fuck ing know me man i was saying the school is fuck ing gay as shit because u cant get away with shit,-1 +hi johnhistory yes you will be block and your thoughtful post here deleted by someone like tarc the main thing to realize is that wikipedia has always been and will always be a cluster fuck if you re interested in finding out detailed histories of the lives of anime characters it s a start but other than that it s virtual pages are only good for wiping virtual shit out of your virtual ass hole this place attracts the worst kind of ass hole s and it s hard to trust in the good faith of something from which nothing but shit and hot air spews forth they decide what a proper source is they decide what s been discussed in the media just like they decide which place in sf has the best glory holes any type of internet arrangement with a hierarchy attracts the worst type of vaginal discharge wikipedia s political content is governed by a bunch of aborted leftists who read a couple of pages of das kapital decided it was nice and then put it down they are a bunch of fuck ing cock suck s literally and figuratively,-1 +cant help acting like a little punk ass bitch,-1 +comedian i am not a bloody comedian i fuck ing hate you,-1 +this is ridiculous dude all of this stuff is legit i don t understand why it is such a big deal the site has been featured by official xbox magazine see that official and xbox com yet another official website we re just trying to help out i don t understand what good you re doing anyone if you just leave them there what are we linking to porn it s an xbox site all you can do is argue with other members of the site to make yourself feel better sockpuppet my ass capita s trying to help out people who look at this site while all you can do is try and make it harder for people to find info do w hate ver you want but you re just an ignorant hate r that should lay off b nanny,-1 +oh i yeah i feel like an ass now,-1 +american fuck you dumb american shit,-1 +lol you and your king lol can be neutral as fuck but that won t save you if someone would like to put shit on you so better don t threatning me and shut the fuck up,-1 +f ck you wimpy sissy cowardly wikipedia pussy s and f ck canadianlinuxuser,-1 +screw you chris your a fag with no life and live in you r moms basement,-1 +morris really is a massive wanker,-1 +where cyde does w hate ver he weants and no one cares because you all suck,-1 +forst of all get off your fat ass and get a job second of all you need to quit putting false information on wikipedia ok el salvador wont have a crime section at all and if it will i will put one in the nicaragua one because nicaragua is the most corrupt and poor country full of thiefs the country is full of crime and i have articles and i will make a crime section for it i el salvador or san salvador has one dont delete this because your not allowed to delete user comments,-1 +a year or more since i use other ones haha stupid fuck ups,-1 +i m going to cut out your maggot infested tongue and stick it so far up your polluted ass that you ll be able to lick your eyes,-1 +stop sending me this shit i m not doing anything to esc the article doesn t even exict so stop being such a bitch stop sendinh me this,-1 +felonious monk you can kiss my hairy jew ish ass if your nose wasn t burried so deep in chip berlet s nut sack then you might actually have a bit of a sense of hummor and not be all ass about your precious wiki beuracracy go ahead and block my ip if you like i really don t give a shit about you or wikipedia i can switch my ip address in two seconds anyhow or block my ip range if you like i fuck in dare you to i m switching internet providers tomorrow anyway so it won t affect me it will just keep a bunch of other people from editing your wannabe encyclopedia which is a ok with me,-1 +fuck you dirty indian shyt head indian,-1 +yeah the wording of the u s regulations defining bourbon do not prohibit the lincoln county process even if the process is used is completely fuck ing retard ed so they might actually prohibit it if it wasn t used but we are quite surprised to find they do not prohibit it if it is used fuck ing retard ed one of you booze nazi s needs to sober up and go fix that please hey you fartsniffing little wikitards instead of wasting time reverting my comments and oh banning my ip oh no i ll need to sign up for more vpn s now why don t you fix it instead,-1 +suck me please give me a burp kiss,-1 +i used narramore associates and dey made me da sickest crib man it wus like chromed out and shit,-1 +yeah is that you oh i think it is big boi yeah so whoever wrote that big shit about myles im going to come round to your shit little house and stuff a petrol bomb through you fuck ing shit little cunt of a letterbox and yes i do know who you and your inbred parent cunt s are i know where you live i know your parents mobile phone numbers i know where they work be afraid be very afraid and i will find a way to stick a fat off bottle of lit jack daniels thru your door so fuck off yours sincerly the back up of myles ps see you at on saturday,-1 +in computing input output or i o refers to the communication between an information processing system such as a computer and the outside world inputs are the signals or data sent to the system and outputs are the signals or data sent by the system to the outside of nabil s mum s pussy then the dildo is placed inside it until aleem s dad comes and ejaculates on her face while aleem himself plucks nabil s hair on his ass if you would like more information about this please call if he does not pick up that means he is busy with aleem so please leave a message retrieved from http en wikipedia org wiki user talk dawnseeker viewsuser page discussion edit this page new section history personal toolstry beta log in create account navigation main page contents featured content current events random article search interaction about wikipedia community portal recent changes contact wikipedia donate to wikipedia help toolbox what links here related changes user contributions logs upload file special pages printable version permanent link this page was last modified on december at text is available under the creative commons attribution sharealike license additional terms may apply see terms of use for details wikipedia is a registered trademark of the wikimedia foundation inc a non profit organization contact us privacy policy about wikipedia disclaimers in computing input output or i o refers to the communication between an information processing system such as a computer and the outside world inputs are the signals or data sent to the system and outputs are the signals or data sent by the system to the outside of nabil s mum s pussy then the dildo is placed inside it until aleem s dad comes and ejaculates on her face while aleem himself plucks nabil s hair on his ass if you would like more information about this please call if he does not pick up that means he is busy with aleem so please leave a message in computing input output or i o refers to the communication between an information processing system such as a computer and the outside world inputs are the signals or data sent to the system and outputs are the signals or data sent by the system to the outside of nabil s mum s pussy then the dildo is placed inside it until aleem s dad comes and ejaculates on her face while aleem himself plucks nabil s hair on his ass if you would like more information about this please call if he does not pick up that means he is busy with aleem so please leave a message in computing input output or i o refers to the communication between an information processing system such as a computer and the outside world inputs are the signals or data sent to the system and outputs are the signals or data sent by the system to the outside of nabil s mum s pussy then the dildo is placed inside it until aleem s dad comes and ejaculates on her face while aleem himself plucks nabil s hair on his ass if you would like more information about this please call if he does not pick up that means he is busy with aleem so please leave a message in computing input output or i o refers to the communication between an information processing system such as a computer and the outside world inputs are the signals or data sent to the system and outputs are the signals or data sent by the system to the outside of nabil s mum s pussy then the dildo is placed inside it until aleem s dad comes and ejaculates on her face while aleem himself plucks nabil s hair on his ass if you would like more information about this please call if he does not pick up that means he is busy with aleem so please leave a message in computing input output or i o refers to the communication between an information processing system such as a computer and the outside world inputs are the signals or data sent to the system and outputs are the signals or data sent by the system to the outside of nabil s mum s pussy then the dildo is placed inside it until aleem s dad comes and ejaculates on her face while aleem himself plucks nabil s hair on his ass if you would like more information about this please call if he does not pick up that means he is busy with aleem so please leave a message in computing input output or i o refers to the communication between an information processing system such as a computer and the outside world inputs are the signals or data sent to the system and outputs are the signals or data sent by the system to the outside of nabil s mum s pussy then the dildo is placed inside it until aleem s dad comes and eja,-1 +stop being such a pussy getting wikipedia to block me really butthurt i am not trying to get you to get off wikipedia im saying that you shouldn t be such a faggot wikipedia doesn t need fags like you,-1 +i am going to rape you dead if you revert my changes again i will fuck ing rape you dead,-1 +oh poor baby re user arcayne good i hope they ban your ass you stupid fuck,-1 +npov you yell at me about npov but your the fuck ing sock puppet,-1 +this girl is an emo cunt,-1 +well fuck you too then ass hole be a dick,-1 +you must be an ugly bitch,-1 +still picking on a year old you seriously need a life dude lol ugh i hate when people treat me like that you just think since your like a jillion years old that your so much smarter that me well im in swas thats the gifted program if your that stupid and you are just picking on a poor defensless year old hows that gonna look on ur resume you big fat fuck ing pig yea thats right i can curse now bitch ass nigger you just wait and see and then you ll underestimate how much power a year old can have pussy eating cock suck,-1 +she has an admiration for jew ish cock,-1 +let the fight go on basically i don t give flying fuck what the majority of people call the british isles i m sure the majority of people think you are a ballbag but does that make that so well maybe in this case i m not going to give up on this issue and i don t care how many times you change the name i m going to change it back i see you have already had this debate with a fellow irishman and you were conquered yet you still decided to put british isles back on i don t think so i will not have padraig pearse james connolly thomas clarke bobby sands francis hughes etc etc etc etc etc graves spat on by the like of you because millions have died to for the cause and i will not have it belittled tiocfaidh ar la,-1 +you suck you suck gurch,-1 +dude stop deleteing my posts some of them are true and you are being a fuck er about it and dont you have some muslim stuff to do fuck off and let me edit my pages you dusche bag arab,-1 +marcus qwertyus your a freeking homo sex whats your address you want to start something you little faggot you suck your daddy s dick,-1 +that is fuck ing ridiculous still the other editor got not so much as a warning let alone a block a week what a cunt you are and what a pathetic joke your so called rules are i am sure you expect people to actually follow them even while you treat them as meaningless well it s not hard to get a different ip address,-1 +eyesnore fuck me hard eyesnore,-1 +sup fag make sure you remove any pics you added cock suck,-1 +absolute load of shit your quoted remarks are clearly uncivil and yet you comment on the civility of others such a stance beggars belief would you care to explain yourself talk,-1 +i am a stupid bitch for blocking this user but that s just what bitch es like me do,-1 +continuing to learn to fuck off continuing to tell me to stop changing my page will result in me changing the page back to how i put it as it is my page fuck off,-1 +u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck u suck,-1 +hey halcy seems like you get mad alot want me to call the wambulance for you want some dick extra small with that too bitch u mad butthurt i bet you re having an orgy with meetthemedic and meepthesheep aren t you you three would make a good threesome you re all reject chan trolls that became admins on another website to have unwarranted self importance while you spam faggot and dick all day seems like you enjoy that kind of stuff i had no idea really tl dr u mad,-1 +did you know that you are an ugly piece of shit serious question,-1 +why why would you talk about me like that you have no reason and i don t appreciate samir the faggot gay bob homo sex blcoking me why do dirt to me put dirt on yourself watch soon i ll be an adminastator,-1 +zuckerberg dumb fuck s incident candidate for inclusion to the incidents controversy section of facebook page controversial remarks alleged calling facebook users dumb fuck s sources for the below mentioned contribution http w forbes com sites andygreenberg is zuckerbergs the hacker way letter facebooks dont be evil and will it live up to it http gawker com facebook ceo admits to calling users dumb fuck s http au businessinsider com well these new zuckerberg ims wont help facebooks privacy problems http w theregister co uk facebook trust dumb http w theweek co uk technology are users e dumb fuck s e trusting data facebook http tdh me zuckerberg called early facebook users dumb fuck s so what http anphicle com en they trust me dumb fuck s facebook ceo mark zuckerberg http w tomsguide com us facebook mark zuckerberg social networking privacy security news html http au businessinsider com embarrassing and damaging zuckerberg ims confirmed by zuckerberg the new yorker other sections on wikipedia where controversial remarks is valid bryant gumbel section controversial remarks mel gibson section controversial remarks sherrod brown section controversial remarks kent hovind section controversial remarks venkaiah naidu section controversial remarks greg gutfeld section controversial remarks lawrence cannon section controversial remarks daniel bernard diplomat section controversial remark james r flynn section controversial remarks and many many more start while at harvard college year old facebook ceo mark zuckerberg allegedly used login data from his social network to hack into fellow students email accounts that evidence also included instant message trans cripts where he calls facebook users dumb fuck s the alleged following exchange is between a year old mark zuckerberg and a friend shortly after mark launched the facebook in his dorm room zuck yeah so if you ever need info about anyone at harvard zuck just ask zuck i have over emails pictures addresses sns redacted friend s name what how d you manage that one zuck people just submitted it zuck i don t know why zuck they trust me zuck dumb fuck s in another instant message im friend so have you decided what you are going to do about the websites zuck yea i m going to fuck them zuck probably in the year zuck ear end,-1 +a misery you have made my life a misery on wikipedia and now you re gonna pay for it you disgusting ignorant and stupid bastard preceding unsigned comment added by,-1 +fuck you you ass hole fuck you,-1 +ass hole you fuck ing ass hole i hate you you suck why the fuck did you edit my page you fuck ing fatty geek hobo living in your moms house you lazy whore i just want to have fun you stupid shit what is wrong with you,-1 +stinky message my bro fixed it fo me and i can spell so get it straight and how many edits do you have trying to block people and all niagga and try to blok me now nigger and if you block me i am gona cuse you out nigger and yo username is jd uk it should be jd gay cuz you like yamla and if you try to blok me my bro is gonna unblok me how you like them apples nigger and if you take my celeb pictures of my page you betta sleep with one eye open cuz i am flying to the united kingdom nigger and you betta leave me a message so i can curse you out more,-1 +let the eternal wikipedia archives show that i stuck my pen s into your fat sister s crabby vag n that s the truth fluck you,-1 +wikipedia search warrior your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dic,-1 +comments i stopped using my other one because of a lot of harassment and personal attacks after i saw what you did i think your second account will have the same destiny as your first one from this i can t find significant coverage for this software what a most clueless nut speech i ve ever heard in my life you can t find doesn t mean it will be deleted suck s,-1 +not going to fuck ing isle of sheppey we re not going there end of,-1 +what the fuck are you talking about i removed nothing i merely pointed out that the claim that the germans called this program the woofan ss was false with a dubious tag and explained on the talk page no source says that i presume the problem is that this website by many people whose grasp of written english is poor,-1 +probably that you are a german fuck ing germans nothing changes,-1 +you are a worthless piece of shit you must also be a knob gobbler,-1 +you are the biggest jerk ever what nerd joins wikipedia you faggot your so stupid jk your awesome,-1 +lol dear sinebot fuck ck you in case you didn t know if i don t sign you take care of it for me so take those tildes and shove them up your cyber azs mother fuck ker just be glad that i don t sign so you have a job you f k you only know the numbers and so shut the f k up,-1 +and um your links point to rushton and lynn you do realise that their work is widely dismissed as racist right what a stupid little pc brainwashed man you are,-1 +your homo sex ity why are you so fuck ing gay signed your parents also get,-1 +your edits fuck off talk contribs,-1 +hello giant ass hole what the fuck feetboarding is extremely popular in st louis you probably wouldn t fuck ing know cuz u dont live in st louis i do i think i know a little more about it than you who the fuck are you thinking that your hot shit cuz youre the self proclaimed wikipedia police let people talk about shit that they know about and that you obviously don t know shit about thank you cock suck ing douschebag,-1 +just read the fuck ing census data do you think i made up these numbers christ,-1 +go fuck yourself you stupid bitch go do something better with your life instead of sitting the whole day behind your computer and editing go do something useful and stop wasting power that way you can help greenpeace on wikipedia,-1 +also that waves are born from space because of the two big monster that they fuck ed on bold text,-1 +i will do w hate ver i want and it is my right what is both of yous problem ass hole,-1 +joe johnston is honestly an idiot and has been blabbing about jp for almost years the jp trilogy is dead the new film if there will even be one won t use the jp title it s really stupid and annoying how much information contradicts each other mailbox,-1 +you suck people hahaha lalalala signed your mama,-1 +go fuck yourself fascist leave your racism out of the jonathon swift article,-1 +the persian language is actually from aria today s herat in afghanistan so shouldn t dari be the language and persian the dialect persian was not the native language of persia because persia was actually elam and their native tongue was elamite you bunch of filthy hypocrites a nation goes to war and you rob them of everything including their language things will change soon you bunch of filthy semitic elamite rats,-1 +rodeo song lyrics well it s below and i don t give a fuck got a heater in my truck and i m off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well here comes johnny with his pecker in his hand he s a one ball man and he s off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well it s below and i aint got a truck and i dont give a fuck cause i m off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well here comes johnny with his pecker in his hand he s a one ball man and he s off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk s get on my nerves,-1 +violent fuck ing imagery are you kidding me holy fuck ing shit dude you are part of the problem i really hope you know that i know you think you re doing doing something good but your making wikipedia s credibility plummet with every fuck ing bull shit thing you do i really hope you know that,-1 +if if you had any guts you d ban me right now faggot,-1 +fuck you you god damn fuck ing cock suck you fuck ing fuck yourself pan dan,-1 +you are such a useless bitch i mean do you have a life or friends because all you do is sit at your computer on wikipeida you are a loser and i would watch out because you will be block soon talkback tdawg,-1 +your e a fuck ing nerd and i feel real bad for your mother,-1 +get a fuck ing life and stop chaining my page,-1 +well do it then bitch ass faggot,-1 +been hrrassing people fuck you faggot,-1 +fuck off you cunt you re such an ass hole,-1 +this ghirlor is a fuck ing moron,-1 +yeah but scientology is still a fuck ing joke,-1 +homo don t be gay mind your own fuck ing business,-1 +you are the racist piece of dirt buckley and all the rest of you for letting hod lipson the zionist jew steal my technology and you know it p gs,-1 +what did i do i went to the site and found nothing fuck you,-1 +my friend i m curious as to whether you have any idea just what a fuck ing douche bag you are let me know,-1 +what the fuck i do not get it,-1 +you re hot i will rape you,-1 +this is my fuck ing page i can say w hate ver i want prove me wrong,-1 +i like to tell that to students at the beginning of the year then they can know quickly of the utter treacle that is my philosophic manifesto of righteousness later b tch,-1 +ha ha ha im really getting a kick out of all of this you guys are so angry and would love to make me took bad fantastic is it working out how you planned boy i hope so ha ha ha my background is in graphic design and photography not art which is more than i can say for the likes of you and i have uploaded historic photos where appropriate you must have been busy cleaning up the article ha ha ha and didnt notice what was right in front of you exactly the kind of person we need helping the article out keep it coming if you like while your dying to find things im doing wrong im actually down there photographing our history being demolished if you cant contribute dont bitch,-1 +well i say the character john rambo become a seperate page but i ll probably get block for this post when we got dick talkin about david morrell books they can go off topic but the fags on wikipedia block everything i say user fuck you usertalk fuck y ou today now utc fuck you,-1 +your edits to glenelg high school i know that you have problems but that doesn t mean that you can just add your name you are right about no one caring about you knowone cares about your shit p s get a life and grow some balls you faggot,-1 +fuck you ckatz you are german cock suck and fuck er mother fuck er,-1 +i put it on the history the best i could you cunt now go fuck your mother,-1 +you don t know what are real difficulties little prick you ll learn it after taking the protection away you can t keep it protected all the time we ll never give in until the page looks like we want i warn you clayworth that i an ruin your health from any distance i can also easily kill you with an energy stroke don t play with fire stupid ass,-1 +please keep in mind that the verifiability accuracy of the information is what is at issue here this is not a pissing match,-1 +what a little bitch running to the admins to block,-1 +you re an ass that was not a clip of the real game jutras,-1 +one final msg seth you have potential to be a cock suck ing faggot get the fuck off wikipedia and find something productive to do you little assclown,-1 +you can t warnings you moron now leave the page alone you fool,-1 +you peice of irish scum how dare you talk shit about my country fuck you stupid shamrock bitch i hope the next genocide we serve on you wipes your entire disgusting repulsive race out fuck ing micks you shouldn t even be alive after the first attempts hopefully next time you wont be die,-1 +a barnstar for you the anti vandalism barnstar here s for you as the vandalism god of pages of cities in the philippines in calamba city your a slut freak and a moron if you have nothing to do with your life do not vandal one s page that is not you are in or not the place where do you live what the hell are you doing,-1 +i know you wikiterrorists love to limit free speech but you have to admit that ip banning is foolish if that is your best option then you are a fool keep being an ass hole duran it is your only talent,-1 +your hilarious why dont u stop changing what ppl say and leave them alone if im correct were allowed to say w hate ver we feel like so u have no right to change what other ppl say make a seperate comment about but dont be an ass hole and chage delete it,-1 +but hey here s a compliment canadian at least you re not as big of a dumb ass as that aubernpilot queer,-1 +fuck ing suck you liberal bastard who thinks michael moore is truthful you ass hole fuck bitch tits cunt snatch,-1 +dumb head you are a freaky dumb head,-1 +dude dude stop busting my balls,-1 +dumb ass dont call my shit a garage band you sit on wikipedia all day and edit peoples nonsense come on how much room do you have to talk about anybodys anything,-1 +how about this fuck off just a suggestion,-1 +fuck i n g cunt s get a life you sad fuck i n g gits,-1 +hey clown your meat puppet really fuck ed the dog on this on is goethean your personal enforcer must have check user for the follow editors,-1 +stop quit reverting my updated to the creed article there s nothing wrong with the part i added or the seperate section idk what the fuck youre talking about when you say unreferenced shit,-1 +your edits to shockwave roller coaster please stop being a jackass it really ruins it for all us non vandal aol users,-1 +u annoyin biitch why u keep on revertin wat i jus did smh loser ass cracka who wanna be puerto rican,-1 +lol oh noes dont block em from changing shit,-1 +dont break wp rr bitch,-1 +wow oh piss off mate get a life im just trying to see if people think these are good signings jesus christ,-1 +fuck off animal shagger,-1 +malta is an arab why are people lying it is not an italy thank you very cunt ing much,-1 +supergabbyshoe shut the fuck up,-1 +figures you have aspergers pedantic little fuck er,-1 +your a faggot you are a fuck ing punk ass little bitch stop editing other peoples shit you fuck ing pussy get on your knees and suck my fuck ing inch dick,-1 +im glad that the mother fuck ers wife died fills me with immense pleasure to know such a bigot had to suffer terribly d d d d d d d d,-1 +why did you delete sopcast you faggot,-1 +fuck you bitch i will go to your house and kill you with my gun as well prepare to die,-1 +you are a fuck ing bawbag get a real job you bumder and stop moaning to wikipedia you sack of spunk im going to come to your house and rape your children,-1 +go fuck yourself you fuck ing dick go rot in hell piece of crap your mother is a whore,-1 +miltiround i win you bitch,-1 +didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt,-1 +fuck you child molester,-1 +sigh slurring your opponents in an effort to win points to make an article slant to your pov is different than calling a bitch a bitch when dealing with a piece of fiction p fiction is not srs bizzness,-1 +j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot j sk couriano is a stupid faggot,-1 +take this how you will but you suck big black donkey balls,-1 +i said good day bitch dont break wp rr bitch hahahahahahahahahahhaahahhahahaahhahahahahahahahahahahahahahahahahahahahah ahahahahahahahahahahahahahahahahahahahahahaahhahahahahahahahahahahahahahah ahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahahah ahahahaahhahahahahahahahahahahahahahahahahahahahahahahahahahahahahaha,-1 +i only made the edit so i could read the fuck ing article not your stupid copyright notice wtf sort it out i only made the edit so i could read the fuck ing article not your stupid copyright notice wtf sort it out,-1 +of course it s also possible that you are in fact just a dick,-1 +i never fuck ing make the fuck ing article in the first place what the fuck,-1 +you cant stop me ill come back tomorow and i know you wont ban me for more than a day fuck you wikipedia,-1 +try these important things and maybe you won t be such a suck mother fuck er learn how to spell if things remain as they are everyone is bound to consider you to be the ignorant lame brained cult member you are revert your attacks on van tucky on the talk pages you come off as a vicious vile psychopath if you ever set your cult defending ass in a court of law the jury would see through your charade in heartbeat stop playing good cop bad cop with your fuck ing retard ed dahn hack forestgarden accept all korean language sources you stupid bitch how dare you try to stifle and censor articles in the name of your fuck ed up cult your forestgarden bitch believes its within wiki policy to include korean language articles when reporting on favorable aspects of your bitch master why don t you include all the other more negative portrayals in the korean language also who said this itsahappyday fuck head deserves to trans late any korean this should all be disputed you fuck ing racist neo nazi reject stop using the word cynical to describe your enemies you come off even more retard ed than your ilchee bitch master your philosophical maturity is less than that of a first grader the world is cynical those who don t believe in dahn are cynical i can t wait until south park makes an episode about your bitch cult are you fuck ing insane korea is the center of the universe korea as a cultural hub korea the place where the next messiah appears you dahn people never cease to amaze when it comes to your thought processes korea is not what your ilchee bitch believes it to be think about it retard the fuck ing nation of palau has more of a right to talk about religious heritage than the fuck ing hermit kingdom how can you be so retard ed that you choose a korean cult if you chose a chinese or indian one at least it would show you have some portion of a brain coming to korea and joining a korean cult with korea centric views is more retard ed than travelling to antartica in search of good coffee while visiting columbia in search of ice and snow one more time the philosophical underpinnings of your shit cult are so flimsy i must question your intelligence nicola cola what kind of bitch ass name is that what is wrong with you and you wonder why you need to join a fuck ed up cult to find friendship and loving dumb fuck,-1 +u suck realy hudge cock,-1 +you suck donkey balls fag,-1 +what the fuck cluebot ng is in your house does that,-1 +and the pay suck s o,-1 +i want to be a fuck you that s a song open proxy yes,-1 +you re a mother fuck ing homo try getting a life you delete perfectly good articles for no good reason then insult the maker of the account it s your own fault everyone s been attacking you you good for nothing fuck and fuck this filter that tried to stop me it can t protect you from the truth this is going to keep happening from me from the people you fuck ed over from their friends and stop salting your hair you freak you look like a goddamned hobo,-1 +i look like an idiot because i just burst out laughing damn you mike,-1 +don t have an article huh what the hell are you on about your profile says you have a basic understanding of english and that you are portuguese see you have your own wikipedia located here http pt wikipedia org wiki so why don t you stick to editing your own wikipedia instead of fuck ing about with the english one especially as you clearly don t understand what the hell you are talking about,-1 +wikipedia suck s all of these post monitors or w hate ver the hell you ass hole are you suck you really ruin wikipedia if i can t even be in control of my own fuck ing page on a website where you re free to edit and add input to anything else is fuck ed up fuck you all you re all huge faggot s go ahead and have a power trip on me you fuck ing bitch ass pussy,-1 +well well well you grinning no life turd licking cunt why don t you go and buggerize yourself on a traffic cone doctor nick you fat fuck ing cunt p s thanks for reverting my correct and loving changes to various wiki s you dirty scrot badgering cock monster why don t you go and get a nice red dress and fuck yourself in the mirror like your dad did thusly your trauma p s cunt,-1 +bahamut is gay it s true you little bitch,-1 +possibly twins you are willoww and i am pillowp perhaps we are separated twins we seem to have so many things in common i too sit around and drool at the computer for hours furiously editing useless articles about math and hey i also have a mediocre knowledge of latin poetry maybe we can get together and feel better than other people because we patrol wikipedia gee but i look up to you i wish i had a picture of a statue of a little girl holding a dead bird i m pouting the special editor because you have been extraordinarily slow with the people who have left comments at your retard ation featured list taking the time to drool on every single reviewer i m a person just like you but i ve got better things to do than sit around and fuck my head hang out with the living dead snort white shit up my nose pass out at the shows i don t even think about speed that s something i just don t need i ve got the straight edge p s willoww is a stupid name period blood,-1 +you know wikipedia articles for deletion frasier s curse you re fuck ing crazier than i thought try adding some content not judging others what a frigging piker grow the fuck up nkb,-1 +bull shit why does amy roloff get her own entry if matt s the breadwinner does that mean kate s the breadwinner both roloffs get one it s not the kate show it s a whitewash from the obsessive jon kate sheeple from writing about his exploits bar hopping w college co eds matt roloff has his own entry and fairly includes the bad side of his life his dui arrest and trial jon would also have to have his own entry include the bad but the fanaticals have their heads buried in the sand and won t acknowledge one single negative this isn t a balanced article it s a commercial,-1 +honesty where the fuck is the adeputs mechanicus page i typed machine god in search and some crap that has nothing to do with warhammer turned up honesty what the fuck whoever is killing warhammer on wikipedia needs to die in the fire and if you don t like what i said then you can join them as well deal with it,-1 +bitch shit go to hell,-1 +go away and stop bothering me i don t want your slimy s t all over my page so why don t you fuck off and leave the rest of us to celebrate the fact we re all going to die yay,-1 +fuck you media piece of shit,-1 +terrorize i will terrorise you for as long as you live you are an arrogant disgusting and rude excuse for a human being you are going to die soon so i suggest you stop threatening people you bastard,-1 +i am a fuck ing retard ed nigger,-1 +i dont give a fuck because you remove correct facts and put only greek lies,-1 +get a life you animal fuck er shut up you fuck ing nigger fuck off and shit your pants full of all the shit you can fill them with,-1 +you are a piece of shit how dare you deface the truth you disgusting piece of slime you vile wretch you do not deserve life i should take your pathetic heart out of your chest and watch its last withering beats die out in my hand noob scum when i am the supreme ruler of planet earth i will see to it that you are the first to be thrown into the furnace i will heat the populace of my great cities with your ashes d i e hehe,-1 +listen up you fuck ing fanboys this article is a comic book and as such does not belong in an encyclopedia i hate everyone who has ever edited this article i hope everyone they love rejects them i hope every insititution they believe in is destroyed i hope that they realize on their death beds that every decision in their life was wrong and they die with regret,-1 +the mirror like your dad did thusly your trauma p s cunt,-1 +gay bitch thanks for deleting the important talk page of club penguin bitch rot in hell,-1 +im not discussing anything are u even from valencia uve got no idea what ure doing by replacing our language with another one u know how insulting that is for us wiping out our culture roots and identity u think this is some kind of stupid game you re the ones attacking us why cant u fuck ing leave us alone u come to valencia and say catalan is the same as valencian and u wouldnt get out alive we re tired of this catalan imperialism of absorbing other cultures like their flag senyera is actually aragonese this whole wiki shit is so stupidly biased ive got many proofs that valencian and catalan are sister tongues but one does not come from the other however they re in spanish and my english is not that good to properly trans late it nor ive got enough time to do it,-1 +what up chink wackpedia admins are faggot s you know that so shut the fuck up,-1 +fuck you you fuck ing nigger bag of shit i hope you die in a horrible fire with your gay ass kids i will slit their throat you mother fuck er dont you ever think of banning me again or i will rape you anally,-1 +suck it mr potto you ugly little twat maybe ill take a trip to london soon old chap,-1 +where you at devil the world s greatest terrorist hasn t forgot about you scum fuck yourself with a sword sissy,-1 +such my cock you re threatening to block me i can change my ip adress within a manner of seconds i ve been block from this site so many times that even if i ll be living till the end of times i won t be able to count them i remember that at one times i was banned for three months yet i was revandalising this site and attacking wikipedians before the ban was over,-1 +nonsense as i already said that they are white trash can be empirically proven that article basically declared them all an incestuous group and i didn t see any footnotes upon it you want to talk about nonsense lets see some proof for the idea that all westboro members are related by blood otherwise i ll keep adding my shit and you can cram your elitist zomg i m a registered user on a free encyclopedia attitude,-1 +fuck you don t tell me how to behave i have more power here than you may,-1 +i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuck nigger s i fuc,-1 +bitch es like donner like to feed on souls bitch,-1 +wo hot smokin lesbean goodness i saw your picture and i figured that you must be a lezbian wo make out with another female and send me the images wo hot smokin lezbian wo here s a song i wrote about lesbians lalalalal lez bee ann i say lalalalalala lez bee ann wo baby lesbians turn me on every where i go those hot smokin ho s it s just that kinda wo a orld i love until i m o a old don t take my lesbian away i don t care if she s gay i love her anyway lez bee ann i like the way you act lez bee ann i stare at your butt crack it s the way i was born into a world of scorn but it s okay because i have my gay little lez bee ann sing it with me lalalalala lez bee ann yeah oh yeah lez bee ann i just want a pecie of my lez bee ann lallalalalalalal lez be an,-1 +kathryn bigelow is a patriot who makes great war films she set out to make an action film about the hunt for bin laden years ago then president obama made a tough call and got the guy now the right wing propaganda machine seeks to negate the boost to obama s image by making a political football out of bigelow s film this year has seen a huge funded effort by the super pac propagandists to spread propaganda through social media and this article not to mention the opsec fraudsters is a great example of that leave kitty b s patriotic film alone you flaming ass hole s,-1 +go fuck yourself your pathetic censorship dictator wannabe,-1 +arrghh im sick of these stupid blocks i p blocks,-1 +this page suck s i don t think it s appropriate to try and cover every relevant issue under the auspices of regression analysis especially considering that specific techniques are convered more comprehensively and better elsewhere on this wiki i m cutting out most of this stuff because it s on other pages,-1 +you re an absolute c unt fuck off,-1 +freudian theory huh what the hell is with that far fetched crok of shit if that merits two lines i ll come up with my own wackier theory,-1 +wikipedia suck s it should burn,-1 +bold textypu guys fuck en suck,-1 +dont try to spook me you dick,-1 +sitush talk is fuck ing ass hole write why the hell he reverted my higlighted words fuck ing ass hole we have given more highlight to sudhra varna than the khastriya varna which is also there why the fuck i can highlight kushwaha you mother fuck er,-1 +i screwed yo mama last knight,-1 +flowers is just some backup characters she has nothing to do with whoever ramona is just add season please seriously if you don t know months from now you re gonna feel like a dumb ass like you are,-1 +i think chelski are crap,-1 +i hate you zad unblock me you stupid mother fuck er,-1 +oi please do not remove me abusing other wikipedians dick ead,-1 +fuck you fuck you,-1 +dreadstar littlemountain and some jerk on the internet are cock suck ing ass hole s,-1 +and what about laws of natural justice who the fuck is going to give me a chance to present my defense before blocking me never mind u probably are a downtrodden commoner of the british suburbs who has not heard of such laws google them at least you ignorant scurvy dog by the way i know you guys have developed low self confidence and inferiority complex due to the abuses inflicted upon you by the nobility but don t try to take it out on us you loser dog learn something from your american cousins they at least have some respect for other man s dignity and that makes their citizens whether black or blue fight for the preservation of their country and constitution,-1 +whoops i had you confused with someone else but all things considered you and your friends can still kiss my ass harry and margereat swoger,-1 +argument by argument tm if you have to invent a fallacy then even you have to know that you re grasping for straws collect we do not have to say the world is regarded as being round by some members of the scientific community any more than we have to say water has never definitively been proven to be wet while i would personally prefer that we said something like ham s claims have been disproven by modern science because i think it sounds more authoritative if it s between incorrect or nothing then incorrect is clearly the superior choice because it is factually true and please don t try that all the intelligent readers already know he s wrong so there s no need to point out that he s wrong argument every fringe pusher and their uncle has already tried that tactic and it s bull shit we can t just allow wikipedia to be full of rubbish and assume that the smart readers will filter the fact from the fiction,-1 +revise at once the kennedy lincoln was known as the ss x not the x as some dumb bastard called steve baker would have us believe barnstar my ass lets ban him for ever for including dubius information margeret suck ley and harry swoger,-1 +yeah it s definitely true that sick bastard got infected after fuck ing some of his dirty actresses,-1 +august utc deleting warnings from my talk page is considered uncivil then i guess that i m an uncivil gringo like your hero hugo chavez would say as i said in the statement that i posted on your discussion page please don t foul my discussion page with your unsolicited and unwanted nonsense i don t give a shit about you or what you think got it amigo,-1 +the day i got served well since you didn t seem to agree with my statement about mcmap i m going to expose you for what you are a pog the day i get corrected by a pog is a sad day in the world of the marine corps don t be offended because i speak the truth about the marine corps and the lies that recruiters feed you come spend a day with me in a grunt battalion and we ll see how your outlook on your beloved marine corps will change and way to go a corporal still after years in and you re a pog way to go i guess you didn t do your mcis so you could pick up or suck enough of your first sergeant s cock you re a dildo congratulations on signing up during a time of war just to edit articles about the marine corps on wikipedia pretty bitch move if you ask me,-1 +hey thanks for being a dick and adding a warning template on an ip talk page instead of fixing your fuck up your mindbogglingly idiot ic idea that the background section should follow the one editorial you read instead of countless other sources is superb way to fuck up a massive section in a highly read article you fuck ing dolt,-1 +seriously all you ants better go fuck yourselves lol,-1 +fuck in crikey fuck off ya fuck in bloke crikey,-1 +what to do with elitist ass hole s who do not allow anybody else to edit certain pages people such as alkivar we must get rid of elitism wikipedia is a democracy for the contribution of ideas,-1 +cunt you re a cunt emilyn,-1 +asian twat go fuck yourself squintey,-1 +and why will you have to do that i am disrupting the project by asking you to fuck off my talk page nope bits andpieces,-1 +greaser film you re an idiot bye,-1 +hey first it s between me and idiot so please don t get involved ok i had added information to the snopes article that i not only verified but then provided information on the talk page on how to do so instead of checking the talk page though lazy idiot just hits revert and goes back to eating chips off his her chest unfortunately that seems to be all too common around here i ve read countless bitch ing sessions posted by other people added constructive and meaningful information only to have some lazy jerk remove it on a whim without even bothering to see what it was,-1 +dude damn son how often do you edit wikipedia aren t there more important things in life,-1 +dick shit cock fuck you are a fag you are a big bag of shit by the side of the road and its not even shit garbabge day you are a one way ticket to shit sville with extra mayo and a side of shut the fuck up,-1 +nice edit hi elizabeth nice reverts on my edits and cool edits fuck you,-1 +go ahead i don t give a shit to that,-1 +what what are you doing don t fuck me i fuck to ryulong not you,-1 +he is in gay german nazi faggot s please do not delete facts,-1 +u fuck ing prick hey cock suck well done for fuck ing up two perfectly good articles on the cadet rifle why dont u just fuck off and die u removed perfectly good information just because as a dick loving faggot you didn t like it huh where is all the information about the new gun the differences the improvement that u deleted made all that clear and then it was merged as per discussion there was no discussion cunt did u ever read the articles u merged dick face or r u fuck in dumb see you been done for editing warring i know the answer so fuck off off off and take your clueless hard on guns with ya cunt s like you wank over guns but u know shit about them,-1 +fuck you why don t you suck a turd out of my ass hole you think you can handle that dumb fuck eh,-1 +http twitter com phoenixreporter hack this fuck er s account and also find and kill user zhanzhao fuck his family and his girlfriend wahahaha,-1 +who the fuck would add prank edits that are small and inaccurate,-1 +jerk me jolly i have a big penis not to mention the species is thriving,-1 +utc who the hell are you to tell me what i am libertarians aren t blindly pro choice regardless of what your opinion on the matter is talk december,-1 +its fuck ing ass hole s like you who vandalize wikipedia that really grind my gears where the fuck do you get off huh huh you think this is funny don t you well i sacrificed a career and a marriage to keep unconstructive pigs like you from ruining a good thing like wikipedia and if i ever get to see my kids again i know they ll thank me for this you sir are a prick and what kind of fuck ing name is anyway oh and your user page suck s noob p s you personally and not your ip are forever banned from wikipedia,-1 +hey bitch stop taking down our fuck ing event pages bitch nigger how does the event pages that has over fighters constitute a fuck ing removal you got damn yank australian piece of shit bitch,-1 +lets review since this grotesque offense started i have probably been solely and directly responsible for of the material attempted to be posted that very quickly got chopped down to sentences by half a dozen censors i decide to wiki whallow again when the story goes super mainstream with cnn and even includes a response from said obvious scumbags naturally it gets zapped again in seconds by a censor and naturally its another now and counting live wire that spends every waking hour removing and contributing nothing i am stating as a fact that the entire wiki premise has evolved into a joke and a waste of time why should i continue to fight the vast multitude badgehuters there ain t a single speck of ethics in any of the full time wiki retard s doing censorship as a career choice probably because children aren t mature enough to learn what they are now we have the single apparent speck of grey material in the form of wales telling me how vulgar and ban worthy i am for getting pissed off by the ultra sickening status quo from the heart sir the singular badge i would like to receive from wiki is the lifetime ban badge that would be a worthy accomplishment from this fuck kin disgrace,-1 +idiot s like you make wikipedia very vulnerable,-1 +your spiteful shit uneducated ignorant cunt esque wankbagness although i violently insulted you as above as this is my genuine opinion of your foolish reactionary actions i do implore you to actually review my edits rather than relying on consensus to scare away editors with thirty years of recognised published research experience in the relevant field,-1 +i dont give a damn anymore heres a personal attack on wikipedia go fuck yourself,-1 +hello i edited the page jacob because the boy called jacob who is sitting next to me now said he was a magical leprechaun you schould not let your life be controlled by fuck ing religion you sad sad christian bastard have a nice day wanker ktjackson,-1 +pascal is a flaming homo sex he likes doing young boys in the ass hole and is a huge pedo him and michael should live together,-1 +fuck you son of a bitch your s de make us creasy fuck you and your s de,-1 +fuck off you waste of time talk,-1 +now let s see who s gonna start crying like a little girl because i said this so i could laugh my ass off at them,-1 +who is this stupid boy a kiwi for sure,-1 +who mad you boss why do you get to say where warnings can be your not the creator of wiki no one appointed you boos of wiki you are a year old loser probably a virgin with no life and feels the need to make sure no one goes against what he says you are a faggot,-1 +ur a cunt undoing my revisions block me if u dare bitch,-1 +well obviously there is nothing wrong with those examples you gave if they indeed violate wp waf like you claim then that guideline is bull shit and should be ignored,-1 +hahaha check this out mickmacnee an editor with a long history of block for disruptive behaviour seems to have gone out of line in the last days i don t mind him being defensive of an article he has written the major part about and several users in the afd discussion have been very much engaged in it including myself however i object to the repated personal attacks and uncivil behaviour by the editor his history is rather long so i provide just a few selected diffs of uncivil comment and direct personal attacks during the last days in the discussion on this page about a third user he calls my arguments for not agreeing with him evasion obfuscation interuption and intentional deafness that is rather typical of his attitude in the afd discussion where he agressively drives that everybody disagreeing with him are wrong i ve tried to point it out to him but with hindsight given our infected history it might have been better not to as i should have predicted how he would respond however i m far from alone in having that opinion in the last days several other editors have also commented on his behaviour jeppiz talk that block log looks like something out of a wiki horror story why has he not been given long blocks in the past i would go for a longer term block ks stm t c g a users block log is not generally an excuse to throw the book at him this looks a bit silly if you ask me a bit of a tit for tat heated discussion over a article for deletion discussion that is split down the middle and nothing will come of it i can t find a really uncivil comment perhaps if you guys just edit different articles for a few days off riorob talk it goes without saying that everybody has different opinions but i do think that one of the nastiest and most repugnant editors either your comment was simply ignorant of the facts like you characterisation of my pov or you are simply trolling either way you are all out of credit here tbh i ve got no idea what crappy papers you read it s up to you if you want to parrot everybody s delete opinion as if it makes you look like you know what you are on about but it really doesn t are not particularly civil neither is i have had it with your crap in any case i won t interact with the user again i rather leave wikipedia as i pointed out i m far from alone in having made these observations jeppiz talk off riorob i tried your suggestion in fact i didn t think i d need to try i didn t think i d cross paths with mick after this bout of abuse but sure enough i did and when i reported him for violation of a r measure in place on the northern ireland article half of his defence was an assumption of bad faith against me i guess if someone keeps an eye on him he can t get too far out of hand alastairward talk it is a bit of a rant he is clearly very upset about the footie and i am sorry you have been upset jeppiz he has gone now probably off to bed i m sure one of the admins will have a strong word in his ear when he shows his face again i myself have had a run in with him but he has grown on me what can i say off riorob talk seeing the diffs alastairward provided i cannot agree even though i see that you stood up for him that time as well this is a user who seems unable to deal with conflicting views and routinely resorts to personal abuse jeppiz talk nothing routine about it your behaviour and alistair s are pretty similar which is why they provoked similar responses eventually if either of you wish me to lay out the full package of evidence for either of your extraordinarily sustained campaigns of tendentious behaviours i am only too willing to oblige mickmacnee talk first of all alistair and i are not the only editors you ve attacked and insulted there are at least grsz and kevin mce just in the last few days while i have definitely argued with you i have not called you one of the most repugnant editors called your contributions crap called you a lying hypocritical cunt or told you to fuck off every time someone brings your behaviour to the attention of administrators you come up with these vague and unsupported accusations that ones you ve argued with have behaved in the same way it is not a defense then both should be block and it s not true either just a dishonest way for you to try to talk you out of it i m getting tired of having that same accusation thrown at me all the time and i take it as,-1 +you are a stink ass bitch you mother fuck ing dick suck ing bitch go to fuck ing hell you dog ass bitch,-1 +deadelus is nothing but a filthy homo sex and a cyber stalker i think that he needs to be dragged around behind a pick up truck for a bit just to teach him some manners you thought u could get me banned but ur worng lulz i have made many many accounts with many ips so i can have moar lulz you homo ur probably a porch monkey to who likes butt sex and thinks its kool to stalk people on wikipedia cuz ur a loser maybe i have my cuz at verizon do an ip trace on ur ass so we can all know when u live you are not the wiki police so knock it off ass hole you have been warned,-1 +how about instead you go fuck yourself hm how about that you d like it i m sure,-1 +god or whoever w hate ver i now decree you the citizen of lumbago land how z that do you live there do you accept this citizenship just stop with all this foolishness now even if the martians landed issued him with an alpha centauri passport and took him to a dance on one of the moons of pluto he d still be fuck ing french parley,-1 +no you utter retard hispanic means from spain mexicans are not hispanic only idiot uneducated yanks call them that since they are retard s who can t tell the difference between the white people from spain and the red people of mexico mexicans and indians whoo hoo feather natives like apache sioux and other former scalping savages from the lone ranger era are the same race they got conquered by white spaniards aka true hispanics and that is the reason non white red mexicans are hispanophones they re not hispanics from spain is the true definition of hispanic they are mayans or aztecs or w hate ver tribe the native people of spain are white maybe since retard ed yanks can t grasp these facts them mexicans ought to be shamed for their defeated loser past so they can quit speaking the european spanish language and go back to speaking aztec that way you imbeciles will quit calling these non spaniards non whites hispanics or latino and call them what they are red indigenous native americans that way you will learn the difference pendejos gringos it s about time blacks are no longer called negroes it s now an insult to call asians orientals even though taj mahal indians are also asians duh so quit calling mexicans hispanic or we will start calling you yanks english or british,-1 +last warning now i will give you a warning you peasant ukrainian peace of shit you may indeed lie about the nature of that monstrous creation upa you fuck ing criminal but it will never be forgotten what it truly was your little demigods murdered my great grandmother an elderly woman and burned my family s home of course their honor is equivalent to yours ps a little content related information according to every modern standard upa was a terrorist organization willing to fulfill political purposes with genocide and fear so fuck you,-1 +questions cunt face,-1 +next thing you fuck ers will say that those robotic planes in the movie are not called hunter killers because the movie didn t mention their names even though it s in the fuck ing script too this article is stupid and just like all the wikipedia jokes unreliable source for going against official sources,-1 +listen to this sweet rap paschmitts eats shit s tj state champs go off sick ramps uh pause my dick all sore fuck in bitch es hardcore can t touch me now i m gon fly like bam boom pow nigger bitch fuck cunt licker scratch and sniff stickers from mrs zanetti got weed like confetti on new years tears of joy life is uncertain,-1 +before i go you can fuck off too,-1 +decline fuck ing bellend,-1 +i think we re in agreement that the blowjobs sub section should be reinstated i ll put it back now,-1 +fuck you bitch and fuck you lousy and misleading wikipedia chemtrail page,-1 +u suck loser go kill urself lol u bloody cow with retard s as friends ur inbred dont ever tell the mose wat not to do loser loser go back to china loser,-1 +i no longer give a shit go ahead and fuck up the article i will have a good laugh when egg hits face after shit hits fan,-1 +no shit i live in bardstown ky is that supposed to fuck ing scare me that you know how to use an ip search eat dick faggot,-1 +oh and as far as not in line at all with how things are done that s pure horse shit and you know it disambiguation pages are a dime a dozen and since you are so hell bent on insisting that folklore and fiction are completely separate we might as well turn vampire into a disambig page and let you have your own little playground to fuck up,-1 +dude cut the crap plz i told u so many times go do ur research you are more than welcomed to change the sentence with strong sources or references thank and stop ur nonsense,-1 +you post a link to the national review and then have the nerve to go by the moniker of neutral arbiter what kind of bull shit is that,-1 +hey fag why you gotsta delete my edits fag,-1 +yeah it was perfectly okay to go around spouting nigger left and right until that darned oj simpson trial ruined it for all of us right,-1 +wendy get lost really not everybody shares your bigoted views and antonio quite frankly you re a fuck er for comparing mercado s sex ity to babe ruth s alcoholism get the fuck off the site now,-1 +kingpin is a dooche fuck you d,-1 +george remus george remus is not a fictional character do some fuck ing research and you will see he was a real person a fictional book was written about him but that does not make remus himself fictional,-1 +bitch you are such a whiny ass attention whore bitch go choke on a cock,-1 +hello go fuck yourself kid adults are talking,-1 +can you tell me why you are such a fag,-1 +hey i asked you a question and you still havent responded to it yet suck my fuck ing balls you fuck ing ass hole s mrivera,-1 +hey ass hole i ll add w hate ver i want aobut edison new jersey because this is wikipedia,-1 +man u piece of shit u piece of shit u fuck i ng yr old don t evn hav a brainm john cena can wrestle u bitch didn t u c him wrestle he s a wrestler ps noone likes you noone understands you you insult our favourite wrestler bitch your gonna get blockd from editing right now got it,-1 +shut you fuck mouth the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit the free encyclopedia that anyone can edit,-1 +no she did not die that is so stupid,-1 +hogtie this you faggot,-1 +never touch my edits again you douche bag,-1 +all allied pigdogs deserve death in auschwitz fuck entente,-1 +fuck off and stop posting on my talkpage you annoying cunt,-1 +why are you riding dan brown s dick so hard every edit i made was fact please revert your changes,-1 +die as that person said rot in hell you fuck ing loser,-1 +http comm colorado edu jacksonj research coon pdf there look at my talk page ryantheravensfan it is proof the discussion and citing of the mans work was a fraud if you try to make this bull shit again i am reporting you,-1 +swallow that cum removed females swallow that cum was removed it can be offensive and is certainly not appropriate in an encyclopedia context,-1 +stop being an idiot it s not mother fuck ing speculation and i m not attacking anyone now shut the fuck up because you are wrong and leakers are reliable now please shut the hell up you are wrong end of story,-1 +you re a fuck ing liar who doesn t know how to do his job,-1 +delete all hijackers biographies this mother fuck er and every other mother fuck er who murdered innocent people on september should not have an article on wikipedia by doing this you are glorifying these scumbags,-1 +where do you get off deleting that it took me ages to do and you jus come and delete it all the while leaving your shit mtv bollox up you fuck ing americans are nothing but a bunch of fuck ing hicks your presidents a fuck ing redneck hick and i cant wait to see the day when that bastard gets a nuke up his arse,-1 +this article is ludicrous it paints anti religonists with some kind of generalizing brush that atheists have been getting away with for decades now that is that we can refer to ourselves in the rd person and apply any positive adjective we wish i e o hare and other atheists claiming atheists would rather do x than y but when the same generalized tone is applied in a perjorative sense they scream bloody murder at whoever dares to stereotype them the murder of atheists is a beautiful thing o hares bone s are lying deep down as are her fuck ing children s carlin s wife is dead fuck him,-1 +hello jakeyboy it is i the almighty lord and master of the universe my protege evilameoba has brought it to my attention that you have not been very nice bad jakeyboy i should punish you to hell i hearby order you to apologise immediately her page did not need to be deleted you of all people should know about free speech before i go i would just like to say fuck you jakeyboy i have spoken,-1 +you obnoxious piece of shit why are you homo sex s always such viscious little fascists,-1 +stop being a fuck ing cunt licker fuck eater,-1 +it is because i am a very stupid and clueless gay idiot who suck s my mom s penis,-1 +nm hey every bitch hate r mainly kid bitch ass rock instead of making it better y dont u just take the bitch offline itd make me alot fuck in happier,-1 +hello you turd fir t i a oin o ie ou u and kee ou on iou durin he follo in ro e hrough he u e of a onia nex i ill u ila e our eni al and for e ou o ea he then i ill u off bi of our kin and ake a love ou of he kin from our hand i ill hen u o en our u and ull ou our olon i ill u e our olon for a urba ion and hen i am done i ill hove i down our hroa finally i ill di o e of our body by de osi in i in a du here i belon,-1 +donner the bitch excuse me but i spent hours trying to write that and surprise my team and you re just being a nasty old cunt,-1 +how about leaving the dishonourable epithet up if not i can always bombard the article with multiple sockpuppets should keep it interesting n est pas goddamn traitors,-1 +dear omni looser stop editing my crap then die,-1 +fuck off you have unwarranted self importance,-1 +i can t believe wiki is stupid enough as to make this faggot an admin,-1 +i m f ing serious my cousin s copy of pinoccio was printed april so stop undoing what i just contributed you f ing pussbag,-1 +vandalism douching and faggot ry are not tolerated on this website,-1 +re speedy deletion you sir are a fgt,-1 +thanks a lot man you dont know how long thats been fuck in with my head,-1 +also it s well known that slavic women don t like to wash down there prepare to ask her to go to wash before hmm i mean if you want to fuck a slavic woman their pussy stinks,-1 +go fuck yourself traitor thank you,-1 +trouted you have been trouted for your reason here ass hole,-1 +fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s,-1 +dear bignole are you gay or do you just suck alientravellers dick sometimes i try to figure this out because you are always on his page and always suck ing him off please answer me,-1 +fuck you fuck all the faggot assed cock suck in drug addicted shit sniffin retard ed megalomaniacs who call themselves admins the couldn t get fuck ed up the ass if they bent over in a gay bar with stuffed in their crack they are just a bunch of lame ass losers with no life and even fewer friends if real life came up and bit them on the as they would die or just od,-1 +abf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ingabf is a fuck ing,-1 +omg wtf took my name out wth you guys suck,-1 +go fuck yourself gavin go fuck yourself ryan i bet you double teamed her before you blew into each other s mouths,-1 +dahn is illiterate and has a small penis yes you know the typical wikipedia user he is a loser he has no life he is sex ly frustrated his inability to satisfy his will to power is taken out over the net dahn if you want to revert my changes read them first i will fight you,-1 +you mother fuck er,-1 +i am fraggle and i suck large uncut penis like a pro,-1 +get fuck ed you terminally dumb fuck stain i hope you fall under one of his lorries twat,-1 +like i said vacuous drivel and patent nonsense there is a skill to talking out of your ass and you have certainly mastered it izak,-1 +listen glenfarclas fuck off u son of a bitch im not doing vandalism so fuck u glenfarclas,-1 +you are a fat geeky prick who has nothing to do on a weekend but monitor wikipedia i hope you suffocate under your own sadness,-1 +my pages aren t inappropriate you fuck ing bastard,-1 +i mean it fuck head now now i want un block now,-1 +i think it is rather obvious what to do sir you really ought to stop taking it up the arse and stop fuck ing children too you paedophile,-1 +ho hes an ass that linuxbeak is,-1 +excuse me why do u act like u have dick up ass,-1 +no fuck it i should have known it still wasn t worth trying to work with this site i spend like an hour going through the game to make sure my information is straight and i make an actually passable attempt at writing and all for nothing just because some random ass hole isn t familiar with the subject yeah like i m really gonna make shit up about how a wrestling video game is played wikipedia isn t about truth and adding useful information it s about what a few random jerk offs may or may not know and if they didn t write it it s a lie the saddest part is that people are starting to take this site as a top source instead of real encyclopedias,-1 +somebody too incompetent to be stationed anywhere else yes i do know quite a bit about the military and i would absolutely love to demonstrate that knowledge with you first hand i wasn t in some pussy cid unit friend,-1 +you a bitch i hope you die you worthless pathetic fuck ing cunt,-1 +you are a stupid ass hole thats my message,-1 +fuck you guoguo you have no life and no friends so go fuck yourself because you are a weird bitch i will block you soon alright bitch bye talkback tdawg,-1 +hey why the fuck is it so hard to get an article on here,-1 +perhaps you missed the discussion at no i take that back please block me i don t want to be near scum like you,-1 +i m typing this with his cock in mu mouth,-1 +anyone ever told you to fuck off you lousy cunt i ve been on wikipedia for years and while i don t edit often and rarely delve into the shenna nigger ns that users have created i don t need someone like you to tell me to get some tea or some such hey how about this after you finish gulping down w hate ver it is you believe in that made that article better or more encyclopedic compared to before you go drown in your own piss sounds like a plan to me bitch,-1 +randi was born a dick randi will never overcome being a dick the end,-1 +blocking a talk page how utterly pathetic does this make you feel powerrful interesting strategy though to allow pod to contribute to control and screw up the phenom page with his underinformed opinions arrogance and stupidity since you seem so intent on having one of the worst and most popular pages on the internet and be one of the largest contributors to misinformation so be it shit comes out of ass hole s that s how god designed it so who am i to interfere sorry pod stalker go creep on and crap on someone else m,-1 +trolling facebook has been reported and is regullary trolled by josh ware of nevada this is because josh ware is a waste of life and a faggot who fuck s his dad and can t figure anything else to do in his own existant then to perform these two hobbies continuously watch out for that guy he s sickeningly gay,-1 +important you suck i think you should go suck on a car tail pipe while it s moving you fuck ing bastard,-1 +can t sleep clown will eat me go fuck yourself you piece of hog anus,-1 +some say she is a little mothyer fuck in bitch y,-1 +fuck god youn shit ass hole,-1 +shut the fuck up bastard,-1 +fuck ing lying nigger fes up you peice of shit,-1 +you administrate like shit anyway you fuccin ass hole,-1 +fuck u cock suck fuck u ill do what i want its an online community and whats a community without cryme,-1 +get lost tommy u gay fuck er,-1 +man are you fun to watch jesus you ll fuck up trying to put butter on the toast won t oyu well that s alright you remind of dick nixon very tough until at last one day you ll mumble they won t have sojambi pinola to kick around anymore how about another wink or one of those smarmy phrases you think are oh so witty nope yeah well i can wait all day soji,-1 +sleep with me or i will fuck ing kill you and block you,-1 +elonka suck s black cock s,-1 +why do jew s get their own special term for discrimination against them black people don t have anti ebonism native americans don t have anti nativism and arabs don t have anti arabism actually since arabs are semites anti semitism is directed at them as well the only thing this proves is that jew s think they re special and exclusive and should get special treatment even though many ethno religious groups have suffered to the same or greater extent only the jew s should get a special name for their type off suffering pretentious bastard s,-1 +total ass hole bitch es like you just need to get the fuck off mother fuck ing shit hole eat your dick,-1 +read powers of horror and tell me she isnt an anti semite now stop fuck ing editing my god damn edits just because its true and cited does not give you the right to protect her,-1 +while i would dearly love to have my way with her in a wild and uninhibited fashion jolin needs to realise she is chinese and thus not fuck ing african american god damn that woman is confused and watching her with luo zhixiang in that new video trying to dance like some hip hop slut is just embarrassing stupid cunt that girl is bet she fuck s like a tiger though diskindofsexist racist mntokhere wmf dapits,-1 +i m not gonna bother with agk and is a dick move account,-1 +did you just send me a user attack warning well go fuck your mother this time picture it imagine your mother f o yourcousin,-1 +insane stupid imbecile witch bluerasberry can you describe these terms to your throbbing vagina please,-1 +bitch your a dumb ass why are you reading this,-1 +dont hate fuck a mate,-1 +hi dear sikh brothers i would request all you all to please help me in exposing sikh scholar who actually is an rss sponsered person pretending to be sikh please see below the kind of statements he makes to me wow wow so the truth is finaly out you have spoken like a true hindu rss wala is that the way a scholar speaks wow my answere to him sikh scholars comments to me stupid dumb fuck my great great great great grandfather was mani singh the greatest of sikh matrys its scum like you that needs to be executed you deserve execution you stupid dumb fuck everyone in my family over members are baptized khalsa sikhs we have been khalsa sikhs for over years you dumb fuck er because you have insulted me and broken the teachings of the guru granth sahib you deserve death you dumb fuck er sikh scholar talk my answere to him now i will be after you to expose all your rss gang pretending to be sikhs and being some kind of expert in sikh religion it my promise to you fake scholar he is being supported by few other rss sponsered members in wikipedia with regards to singh article here,-1 +ok if you consider yourself the master of logic that you tell everyone you are on your profile feel free to read this in its entirety and write back i would be so happy to have some ongoing discussion i am an op rank dental student from australia in uni at the age of and despite that i can still manage to not be anywhere near as much of a tightass as you show yourself to be seriously do you think you are better than the people that give you shit about your attitude to wikipedia it is so pathetic that you have to grab at power in this nonexistent world just because you have no influence on anything meaningful in the outside world i think the inferences i make about your real world life are more than fair do you actually have a life no a level shadow preist on wow does not count nor does having a password for private irc channels and torrent referrers like where is your girlfriend perhaps if you continue to piss off everyone you come into contact with i make reference to the discussion of the neutrality of the anglican church grammar school page someone may just take the time out to slap you the fuck awake and make you step back and see how pathetic what you are doing really is you make me sick fuck you are a vegetarian i hadn t noticed your username for what it was until now and you continue to reinforce every idea i ever formed about who you may be seeing as it is now am aest and i have shit to do morro i really cant be bothered reading any of what i have just written because you are clearly so deeply entrenched in your own pathetic way of being and have trained your mind to ignore everything anyone else says to you that you do not like by getting you re a gay pedo and similar emails if i had smoked myself stupid and that was the deepest level i could insult you on i would send fuck you emails to you all day long i can take time out of my day as much as i have better things to do to give you shit because you are a pathetic insecure power hungry piece of shit weilding you wikipedia administrator status like a trident against everyone that hate s you when really you more than likely were dropped as a child feel unloved were bullied in school have a small dick and feel you have to be a complete social recluse and hide behind a screen i hope you do write back please do oh my please write back i would love to listen to your self reichous shit thinking you can make quirky little quips and rhetorts to distance yourself from what people say about you and feel you have re established yourself as superior im guessing you are probably online doing pointless shit right now and so i am keen to receive my reply soon regards steezemuffin a combination of style and ease spelt with an extra e for extra steeze oh and its in a muffin isn t that just fuck ing dandy,-1 +fuck you i can do w hate ver the fuck i want you piece of shit personally i think your a stuck up ass hole with a big stick up your ass fuck you and leave me alone ass hole,-1 +go fuck yourself this ain t any of your business and i fuck ing know what tor is ass hole,-1 +oh dear aeropagitica you re a bitch love jay,-1 +who are you to tell me i ll do what i like when i like cock suck,-1 +shut f up let me do what i want i m makn rsponc somebody s question i ll nser it no madder what so u just f off let me answer dat question moderf n gay b,-1 +hi there you wanna fuck my ass,-1 +and piss off and fuck off is acceptable language use on wikipedia so long as its a diva with an admin entourage using these terms,-1 +lol you thought your sources including the tbr were more reliable than boxing news you know nothing about boxing you re also a fuck ing liar the jokes that is ring magazine uses caps which contradicts your own personal format http ringtv craveonline com ratings super middleweight wbc varies and uses yet another format http wbcboxing com wbceng champions wbo using fuck ing hypens here in yet another format http w wboboxing com our champions your sources are all over the place with formats you stupid bastard lol boxing news is far more credible and consistent more correct sources fuck wit http w telegraph co uk sport othersports boxing james degale claims super middleweight title with points win over andre dirrell in boston html http w independent co uk sport general boxing andre dirrell vs james degale on saturday degale can join britains great list of supermiddleweight champions says steve bunce html fyi boxing was created in the uk,-1 +haha this is my fuck in page i can do w hate ver i want,-1 +how about you fuck off and don t stalk my edits,-1 +there hasnt been any episodes since march dumb asses,-1 +hey ass hole get a life ip banning is very effective don t you think,-1 +fuck you dpak dsuza you are a pathetic piece of shit,-1 +hell no i ain t serving the war i was helping people this is fuck ed up,-1 +i hope you feel like shit for deleting my post go fuck yourself,-1 +message get a life fuck off you mull er admin,-1 +doosh doosh doosh doosh doosh fuck ing cock suck queir bate ass wipe dont tell me what the fuck to write,-1 +thanks cunt thanks for speedily deleting my john kerr page if it ever happens again you will wake up looking down the barrel of a shotgun and then we will punch your nut sack till we hit concrete but if we are on any other surface uh oh for you,-1 +douche dear s be you a douchecock i believe it doubly so,-1 +you re such a douche fag,-1 +i feel sorry for you small penised foreign dog defending absolute scum like mao jiang and deng ensures you are a brainwashed fag lost in china s past it will take years before chinese people from the mainland become clean respectable wise human beings right now they are money worshipping slaves whose minds are lost to propaganda and distorted logic how sad such a great civilization destroyed by a band of gangsters,-1 +i ll just beat its ass again i m at a high enough level the voices,-1 +dog u mother fuck en ass hole i dont fcken care that i deletes d ur fcken pages ur mothe fcken ass hole u bitch u like my balls anyday and where and i fcken ur sister and u were born in a pile of shit u mother fuckercken bitch go get shit for dinner sorry you idiot back off or suck my dick bastard,-1 +hi you might be interested in the discussion at thank you spanish heraldry as a respected contributor to the above article you re probably best placed to deal with the issues with it if you want to take it on i believe there is a lack of inline citations in particular good english and specificity parts of the article explain heraldry in general and are not sufficiently imho to be included in the article eg most of the definitions section thanks t c bcn sia discussion first sorry because my poor english hi i don t want to start a undo war or something like that but the avionews post is only a rumour it s a propaganda speech from a milan sea not a declaration of any sia officer i ve talked with the sia spanish comercial manager and he says me that the italian sia officers inmediatly deny that issue nor the sia bcn cancellation nor the fco mxp flights traspassing and all is a simply propaganda from milan in this moments of crisis this was also confirmed by sia london regional headquarters unfortunately i haven t found any italy uk sia press relase dennying the milan sea president affirmations but i think that informations that i have are enough to question the avionews article preceding unsigned comment added by talk contribs because of that i have twicked the comment from until summer to probably until summer in which they could codeshare with other star alliance partners in the article the text refered today the sia flights carry out the singapore malpensa barcelona route but in short time the flight will be reduced to singapore malpensa route while the continuation to barcelona will be assured by lufthansa italia is not referenced as bonomi s words but as an explanation by avionews the comments is not anymore an affirmation but a puntuation between brackets sincerely i fail to see your urge to remove it cheers mauritiusxxvii aut disce aut doce aut discede i don t have a urge to remove it i don t remove it i only explain it to you the situation preceding unsigned comment added by re anon user behaviour today when i woke up i found a whole lot of personal attacks from user against me messages such as this user is such a stupid and biased wikipedia editor should be banned forever on my user page a blanking of my talk page whith the following message buaagh i m sick only reading this user please remove him from wiki that is fuck ing stupid and haves no sense that is a person with various nationalities not a nationality of spain only maurice can say that in thenationalities of spain article wtf is not possible that maurice is still editing this article from a such biased and stupid pov in the catalonia article notice that i hadn t edit that article since january i ask you if you ca,-1 +wizzard k having no life man if you re gonna be such a tight ass loser who spends all his time editing wikipedia at least have a sense of humour so you know fuck you,-1 +what the hell ass hole your going to block me for putting the right information on of mice men band artical what the fuck that s wrong man you sir are an ass hole you are disrespectful to this site and yourself i have never seen a disgrace in my life of mice men are not a nu metal band they never had been just because there new album have small bits of nu metal elements doesn t mean they are a nu metal band austin said and i quote from the alternative press interview on our new stuff we want to go more rock or i guess a nu metal sound you could say i rest my case so now you know you will put the correct genre on this band i know you will ass hole,-1 +screw my butt screw my butt,-1 +knock of the vandlism or i ll report your fuck ing dumass,-1 +i gonna block your bitch ass bongwarrior squad,-1 +neutrality i suggest you delete the entry for fuck as its neutrality is in question also can you delete w wikipedia org because it is not neutral toward knowledge it seems to promote knowledge people should be stupid like worms,-1 +the way i interpreted the story on the site i read a contrast to the site you ve given is that this was an accident and not a dastardly plot to blow up the planet if i read your site first i would have known it was bull shit,-1 +idiot s you fascists are such idiot s i don t know whether to laugh or to cry troll you created this troll sock puppet you really think calling me a sock puppet is going to stop me by the way you can cross meat puppets and proxies off the list you re wrong i think you better lock your talk pages again and run away in fear as you ve been doing because you re not stopping me by the way your threats are stupid all this trouble just because you insist on censoring a single article to hide the fraud that takes place that makes you criminal accomplices to the fraud like any other fascist society you ve rewritten the rules so that abuse is conducted by the abused against the abusers what do you guys want to hide the truth we re right and you re wrong because we ve got the power if you play nice i might leave you alone otherwise go fornicate yourselves,-1 +i haz a question why are you an idiot xd,-1 +fuck you fuck you you cheap whore,-1 +if you find the word bull shit more dangerous to the encyclopaedia than substandard content then of course you should,-1 +htf does this disrupt shit seriously you guys take shit to seriously losers,-1 +ok send crap idc u stupid gnome,-1 +consider myself lucky oh get your head out of your anus this is wikipedia you obviously dedicate your life to making sure that someone doesnt have a joke no one is harmed i apologised and you re obviously a bls border line spastic and it was an apology no question about it go fuck yourself you arrogant sad little vagina,-1 +you are a prick ass hole,-1 +i gave a lot of thought to what was said before but i must say that pretty much it s all the suck and if you weren t so busy fuck ing sniping on my contribs this dood who had a shit banning would have been able to edit with guidelines when the fuck will people here learn to fuck ing let shit go there s a whole world out there guys i m serious you can go fuck maybe get a degree and perhaps even cyber with some chick on a webcam for a mere bucks instead you decide to snipe on what i do in hopes that what you think that blocks will get you laid faster than me fuck ing realize that this is a hobby you are not paid go fuck ing make a difference by donating blood and not tagging articles for speedy deletion in the end you have nothing left but memories and you better pray to god right now that your memories don t consist of afd nor rfc nor ani but perhaps the time you left the house and fuck ing had a drink talk,-1 +hetar is a fuck ing ass hole i hope he is block soon for vandalizing and reporting false vandalism,-1 +your hair is lower then your mum s tits,-1 +i licked off ur mum so suk that and go fuck ur self,-1 +http w cnn com crime barracks death there don t know how you mised this in the news i don t know how to do any of this citation crap either i don t have enough time to spend all day chained to a computer learning haxx ring or w hate ver it is you nerds do all day in your parent s basement and it s notable because it happened on the base and is becoming quite a big scandal this should be obvious on the surface idiot,-1 +stop deleting my stuff he s all right with it the whole world needs to know he s fuck ing gay,-1 +go ahead block me go ahead block me but everyone knows mtv suck s god save the rock thank fuse oh and fuck yourself,-1 +suck you suck you suck,-1 +message for j barber for your information i am not a student at unsw if you keep up this shit i will simply behead you am i clear your friend er admin,-1 +hey a bitch deleted my episodes,-1 +to confirm i never asked you for help i have asked others for help but not you you saw it fit to come on here and harass me you followed my log as if i were some sort of hacker and annoyed the heck out of me at every turn even now it seems you feel you must have the last word buddy let me tel you this i hope you pull this crap with the right person i really do i do not like you i think you are a scum bag have a merry freaking life and please feel free to drop dead,-1 +archivesyou have a message re your last change go fuck yourself,-1 +fuck off you half wit you wikiwankers set the standard for delusional,-1 +f off you f ing b i am telling the truth it is all true f ing jack,-1 +lostprophets is a fuck ing nu metal band bitch lostprophets is a fuck ing nu metal band bitch answear me bitch,-1 +stop removing my edits why do you insist on being a flaming asscake,-1 +you are an ass hole,-1 +you ass hoe hey stop fking your mothr get a life of your own and start minding your own bussiness instead of undoing others edits you do not own wikipedia try to keep wikipedia alive there are so many articles which are not backed by supporting information that was how wikipedia first came to life everyone wrote what they knew stop moral policing go get a life in real world find a job earn some money marry and make a life instead of spending all time on wikipda you are not contributing to wikipda by guessing others edits to be bad wrong you a hole mothr fuck r come eat my sht,-1 +personal websites personal websites of the subject of the article are not only permitted they are required stop being a dick please,-1 +comment the gnaa are among the biggest losers on the planet their website a collection of some of the most unfunny shit i ve ever read is an example of how to fail at life verdict unfunny unoriginal piss poor,-1 +what i think of highinbc i think you re a total fuck ing moron for enjoying illegal drugs please die a horrible death,-1 +you are again ignoring the fact that the person who wrote the daily mail piece is amanda platell i m still waiting for you to explain how her own fuck ing words are not a reliable source,-1 +this is a shit for me stop making non vandalism please im infringing the wikippedia use as a result wikipedia will renamed as wikiprostitute fuck you bitch,-1 +fuck you i hate you why do you delete pages do you have a life are you gay if you make the page marring manz you hall be cool however at the moment you are gay,-1 +this user is another dlckhead admin like some of the others why are most of the admins and users here real dlkheads,-1 +bye i m not going to deal with the ass hole s any more best wishes boomer,-1 +good riddance you fuck ing ass hole bog off forever,-1 +fuck off how dare you remove messages that i post on my talk page you wanker if you did it again i will sort you out,-1 +first of all everything in my article is related and is about managua wether you like it or not that is why the title of the article is managua armed robberies so wether you like it or not its goin in there okay my ip address does not match your sock puppet crap so leave me out of your crap in other words my article is relevant this is an encyclopedia i have a good source you dont own this website so quit trying to act like its yours im doing and going about this as i see the rules im not interested in your personal opinions,-1 +fuck off if you can t give a valid reason for your revert then be banned,-1 +hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad,-1 +nigger paedophile nigger paedophile,-1 +email from user habsmtl to user phenomenon yo what in heaven s name is your problem with rm he s just trying to explain to you how to properly edit a page on wp instead you practically spit in the guy s face so in response to your actions i will spit in your face and then you can tell me how it feels afterwards because you deserve it you mother fuck er do not bug rm ever again you hear me you sob habsmtl i am writing on behalf of phenomenon he has not contacted,-1 +vandalism pt ha so your the son of a bitch who keeps violating those pages by replacing the old logos with the current ones so guess what i m komin over your house and kill you and your friends and family,-1 +damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you u cunt damn you,-1 +where you at steve rep yo hood son do work billy mother fuck in mayes out,-1 +hey dan fredinburg is indeed a notable person get that goddamn chip off your shoulder that s why your delete tag was removed,-1 +december hey mother fuck er only i uploaded the image at dhoom and then u want to take the credit if i want i will upload the same image times who are you to command me cock suck and does wikipedia belong to your father go to bloody hell ass hole,-1 +i didn t do any more after your warning what a fuck ing joke man you are,-1 +go rot in hell you evil liittle bastard,-1 +white trash fuck off you white piece of trash fuck ing wiggers go and fuck a jew jew raper,-1 +october utc woot that means that this article actually kinda matters and people give a shit d a good step towards the him wiki editors goal him band fa status p,-1 +you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki user talk misterwiki s f ta,-1 +i have a huge penis and i like to fuck icelantic girls in the ass,-1 +obviously you havent been looking hard enough you fuck ing idiot get a life,-1 +wrong whophd are you being shagged has been done again seems like your intimate relationship with the chaser team which allowed you to make such incredible assertions was unsurpisingly complete shit go stick a giant dildo up your ass to calm yourself down fuck wit oh and don t delete this as abuse i make a valid point fuck wit,-1 +you are a waste of time why do you suppose the people asigned to protect wikiepdia are so pathetic is it because their mothers drank and their fathers rape them or do suppose its because doing your job is so damn hard thatyou cant do anything at all,-1 +fuck you fuck you fuck you fuck you,-1 +sock single purpose actcount created miutes ago knows how to use wikimark up already and how to look legit by writing some random crap on the user page almost certainly an abusive sock trying to get around rr or cause others to do so checkuser will be enlightening i am quite sure of that crated a user page and wrote someting on the talk page to avaoid red links within one minute then made the edit they wanted to almost certainly the scokputter of an established user this was just deleted this user knows exactly what he is doing after only minutes his edit was designed to tempt me into violating rr and to make it imposible to keep the appropriate tags on the article i think i know who this is either a sock or meatpuppet of established user who is very involved in editing this article,-1 +you faggot t i was fuck ng talking to you you bitch oh no you re fuck ng vandalising my fuck ng goddamn page i better cry a fuck ng wiki river you cock suck ing father of wh res suck my d ck that s the last time i ever try to be civil with someone you have ruined my faith in wikipedia and i will now proceed to retract my donation you miserable cvnt,-1 +fuck you sandra oh is so goddamn ugly it s ridiculous,-1 +vats because im a child you gungadin peice of shit ill be back at u too as well as user bungle phoee,-1 +huns i cited perfectly good sources you fuck ing piece of shit leave me the fuck alone you don t know everything but you think you do just because you once did something good for wikipedia i cited good sources go and fuck ing look at them fuck off you low life cunt,-1 +no someone buggered it all up with those stupid redirections the players name is walter gordon neilson not gordon neilson and willie neilson what a crock of sh i thought nicknames were extra their proper names should never be overuled redirected and his brother is robert thomson neilson not robert neilson i am gonna get all those redirections reversed and get those biographies rewritten correctly,-1 +fuck you fuck you ass hole,-1 +the graceful slick is non other than an ungraceful dick,-1 +hello hear me dammed bastard some images aren t mine but don t delete it of you will have problems with me please think and please don t not delete the images or you will have killed by every persons in wikipedia instead you aren t nobody and nothing for delete the images of everybody thanks,-1 +fuck andrew quah father of the bonsai and chink spy extraordinaire,-1 +all chinks and gooks should be deported,-1 +you are such a bully ok you win that is why wikipedia suck s people like you,-1 +edit your stupidity away,-1 +why you revert my edits bitch you bein a punk ass fuck er,-1 +i have no idea why you are posting the slang definitions of fuck that is a total non sequitur i have not seen anyone here assert that there aren t any ways of using fuck that are slang the point was and remains that the standard use of the word fuck as both a noun and a verb the only ways that this word has been used in this entire discussion throughout this entire week up until your latest post has been the standard definition that is widely understood and accepted as a normal word that is nowhere near slang you used this non sequitur as your basis for reversion and to this day you are persisting in it yet again another example of a huge logic disconnect that permeates this entire exchange as for the meta discussion the discussion about the discussion andy s revert was based upon his assessment that the issue needed to be discussed before such a change could be accepted and where did he choose to raise that discussion over on my user talk page that is the most inappropriate place to have such a discussion i suggested to him that the discussion be moved here instead he moved it to an admin page where he called for me to be block is that the action of anyone who wants rational discussion this too are questions that i do not need anyone s answer to as for your opinion that this issue is now resolved i never shared any such view i added the see also link as a step in the right direction not as a cure i can t have stated that more clearly that i still see the article as broken my decision to leave here for the time being is because i see a critical mass of editors who are bent on keeping it broken my opinion my view it s fine if we agree to disagree but that doesn t mean that the problem has magically gone away,-1 +small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis small penis oh you don t have one,-1 +try harder dick this is war you cunt s are a latter day religion that will be taken out,-1 +boy scout you boy scout faggot i bet you like mormon jizz all over your face,-1 +i kill people fool im from the ghetto homie i was raised on bread and balonie i hate nigger s and im proud to jack off to your mom,-1 +moonriddengirl is a stupid slut and should suck on my dick stop deleting my articles and mind her own business fuck you whore,-1 +i love dick in my butt user,-1 +april utc ok heres the thing i dont really have a problem with u all that much but when ppl give me shit that is no matter of theirs how thing whole thing started on the metallica page i do get really pissed off and i know u can understand that yes we do all have breaking points mine happens to be a little weaker then urs ill be the first to admit that and the whole metal thing i do know abot about metal alot but im happy that u were not making an attack on me in that area but heres the thing ill admit i went too far by a mile but now im suggesting the end of this u can insult me and ill insult back twice as bad untill be are both out of words and in the shit with the rest of wikipedia but all in all that wont prove anything after all we dont even know each other in real life and real life is where the real problems are sorry for the bother but theres nothing wrong with abit of defence here and there and i do talk shit about ppl who deserve it and thats why iv been doing it to u because i did think u deserved it and no body has kicked my ass and its not gonna happen any time soon im not stupid i know where to stop and think now is a good time for that w hate ver u think about this w hate ver but im stoping nobody won theres nothing to win now im gonna get back to real life cheers,-1 +tmi page to the tosser wanna be admin ego maniac would you get your head out of your ass and revert the tmi page to how it was the content on the page is proudly looked after by a group of people who work on the series yes that s work on the show and guess what we know a hell of alot of information on the show its past its present and its future guess what else a bunch of us know what happens in series you may not have seen that info in a trashy pop mag you seem to acquire your guess knowledge on so let the page evolve with true knowledge as has been occuring over the past few years you have just destroyed a wealth of info because your not sure what your reading is true in which case fuck off and edit something you do know about loser,-1 +let that little sl piece of shit fight his own fights,-1 +hey moron i m a revisionist are you all of us revisionists agree that the germans employed delousing chambers for killing lice with zyklon b why won t you let me add this to the holocaust denial page because it explains the reason zyklon b was found at camps it explains the shaving of hair the stripping the showers gee wouldn t that be inconvenient,-1 +read this is a free country don t you think you cock suck ing pricks and i will go ahead and do what i want you bitch es,-1 +you arrogant administrator homo sex bastard s fuck off,-1 +how many people does this tit think i am and whats with asking another editor who wants me banned to help out this is fuck ing bull shit,-1 +youre sad i love how people on here think that by editing wikipedia their changing the world and that their important when the truth is their all sad year olds who get off on telling people what to do dude go outside theres this thing called um earth you live on it theres real space not just cyberspace stop jacking off fegget,-1 +fuck you all losers fuck off my page fags,-1 +yamla are you stupid and a gay ass fag whos mother was a fuck ing whore you fuck ing idiot ical mongolical son of a bitch you are so fuck ing fagy that oyuy suck as much cock as your dad who was the biggest gay ass idiot in history who ever suck ed cock and oyu also stuck up a dildo up your mothers ass while she was pooing and you made your sister eat that shit,-1 +go and fuck yourself,-1 +queer why are you a faggot,-1 +blimey you really are a sad fat sack of sh t aren t you,-1 +get a sense of humor you mentally stuptarded piece of fecal matter i ll vandalize all i want too an i dare you to stop me stupid gay boi,-1 +why are you forcing other people from editing pages when they know for certain that there s something incorrect with the pages why are you harassing them fuck answer me immediatly,-1 +you are a pompous juvenile self aggrandizing fuck ing spic and that s all you are,-1 +queen fag hello could you please explain why you are such a queen fag if you re not familiar with the term it is someone who promotes the queen and monarchy at every turn and whom enjoys homo sex behavior with other males this involves receiving and delivering it has come to my attention you are a giant queen fag and i was wondering how you became such a queen fag,-1 +neither am i pants suck they should all go to hell,-1 +i love suck ing off my dead father,-1 +cunt editing you should be added to the list i was creating ergo you are a cunt,-1 +it was a lie a fuck ing lie,-1 +this article suck s major cock you people are pathetic excuses for human beings,-1 +i luv my chemical romance i dont give a flyin shit about w hate ver ne else says,-1 +retard ed i was wondering how long it would take your faggot ass to stalk me finally after a few months you get it well i guess ill blank my user page and create a new account since you have to be a little bitch ive done so many constructive edits then an anon which is probably you runs through and reverts a deletion which is perfectly fine and not vandalism you run to his rescue go home little girl burgz is un block october st anyway so ha,-1 +i got your message fuck you,-1 +picka ti machina youve been reverted so fuck ya back how about you vandalise my page again ill revert it and get your good self block for an extended period of time fuck you i m gonna find ya harass ya then fuck in kill ya because you are a fuck in gross poofter,-1 +nazi the nazi sextion of tha page gives a glowing reference for the nazi s and does nothing to discredit the evil racism of white europeans and their racist pigheaded history if we want to eradicate nazi s everywhere blonde hair and blue eyes everywhere it needs to start on the internet how dare this article give a glowing reference for blonde hair blue eye ppl theyre all neo nazi muffins hoping to live up to their pathetic racial dream of being snow apes with tiny dick but they are dying out hopefuly soon and their racist ideales not soon enuff obviously with stuff on this page giving a glowing reference for their supposed history runes and nordic and shit like that must be eradicated,-1 +aw you were called a fuck knuckle diddums you know why you were called a fuck knuckle because that is exactly what you are,-1 +you are a spineless prick and karma is a bitch mother fuck er,-1 +get off of wikipedia you walnut paneled idiot you wouldn t know a good schedule if it put clamps on your testicles,-1 +you respond to nothing but vandalism fuck you,-1 +hilarious even without the en dash thing i keep reading post hotree fuck talk,-1 +block me go right the fuck ahead fuck ing fascist cunt all of you are elitist snobs who don t give a shit about the facts you don t care about the truth you just report like little tabloids you just lie,-1 +ptptpthtphthpth fart fart fart fart fart fart fart fart fart fart fart fart fart fart fart fart fart fart fart fart fart fart nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis nipple penis ftang ftang oxymoron penis drippy drip self fellatio shaved scrotolicious bumble dork,-1 +frozen suck s this movie is fuck ing shit lion king is the best,-1 +stop messing with my userpage i can see from the above that you are a troublemaker please stop being an ass thank you,-1 +bull shit you are switching the rules http en wikipedia org wiki hugo p c a rez soccer http en wikipedia org wiki thomas dooley http en wikipedia org wiki frank klopas http en wikipedia org wiki earnie stewart i believe that s called precedent now give julian green his due owned yahtzee spank,-1 +not every genre on each page has a reliable source have u ever considered that and i don t see what s disruptive about it i know a genre when i here it it seems like u ignorant fuck s don t it s no wonder people always say wikipedia isn t always right that s y i changed the genres,-1 +ahs to say i don t care if your a moderator a member or the fuck ingl ord jesus christ himself i make my own descisions and do what i want when i want and no one is going to stop me,-1 +hello go to hell first of all my comment on feces was correct whore can you be a gay whore also dont edit cyrus or brazil both of them are true you gay homo finally go hump your dog and play in traffic are you secretly brazilian,-1 +fuck you wow just wow james delenoy u are a class a faggot i could pwn u in a coma i dont give a fuck if u block this account cuz we are a freight train from hell and we will make more and come at u with the ferocity of a mama bear suck our grundles the entire waltmanist community,-1 +this needed to be clarified since there has been a problem with him inserting subsequent posts ahead of mine which can be misleading to a reader when i tried to correct the positions yesterday in another incident here is what he wrote in his edit summary when he positioned his post ahead of mine again may the magnificent clean keeper talk contribs m bytes undid revision by zlykinskyja talk don t fuck ing move my comments again this is plain vandalism undo so when i objected to his use again of the word fuck ing he then used it at me two more times as reflected above this follows a prior incident a few weeks ago when he used the word fuck ing at me i repeatedly objected and asked him not to do that i think he did this again because he knew it would upset me because of how upset i was about the prior incident also i have been called by someone else a bitch and the words cunt and cock shit have been directed at me on this talk page i have repeatedly objected and nothing is done it is as if women who want to contribute here have to put up with a gauntlet of abuse if they wish to stay here and no it isn t unreasonable to object to such disrespectful treatment of women this is not the s none of this should be going on,-1 +i am going to shove a pineapple up your ass you ll fuck ing need major surgery to pull that shit out,-1 +stupid damn it i was mking a new page so i will potentially violate to wikipedia,-1 +fuck you this is for blocking me fuck you worm,-1 +you re an ss f ck you re an ss f ck go sh t your pants,-1 +no abusing bots and stop being an idiot the pedigree is mislabeled even in the definition given on the page it s not a true facebuster so it should be listed on ddt i was nice and left it listed with a pointer on the facebuster page dont be a dumb fuck,-1 +hey ass hole i m creamy why don t you go suck on your mommy s dried up saggy crusty old titties go ahead and lick her sweaty stinky old cunt while you re at it fuck you cock suck,-1 +the entire article is written by americans so what do you expect they are fuck ing retard s also my comments are constructive and help to point out how bias and unacurate this article has become due to americans rampant bias and censorship,-1 +tu mom es a dirty slut disgusting,-1 +you dull existence mr you must very fool and distrusted himself hick ass fine man you dull existence a vagrancy to wherever a go and die miserable the elegance go lost and gives lousy ass please you you are,-1 +new name perezhilton has changed his name to dick suck,-1 +gian snowman suck s willies,-1 +hondasaregoodsez first i should be a nigger swinging from a tree and only gay serbs like me enjoy masturbating to teen pop in my ford pintobeaner nigger mexican,-1 +some bubble tea for you thanks ass hole,-1 +if you fuck ing message me again i m going to kill your fuck ing family first i ll make sure they see all of the evil that is in human beings just so they understand that they have no choice but this then i ll cause them such incredible pain that they will pray for razors on their eyeballs then i ll come to you after you have watched this i will literally peel the skin from you and then go on to the viscera bit by bit all the way to the bone you will be alive for the entire time as i ll do limb by limb and cauterise as i go you will finally reach death when i slowly introduce salt via drip directly into your heart it s very painful trust me,-1 +msg for vandalisim why am i getting this message on my wall fuck off,-1 +just post the damn meme look wikipedia is a bunch of pompous bull shit that s good for trolling and not much else so let s throw the arbitrary standards out the window srsly you come down on vandalism real or imagined like a ton of bricks within a minute but how long did it take you to notice the wikipedos trying to use wikipedia to advocate raping kids kind of defeats the purpose of a hive mind if it can t stop shit like that,-1 +you re nothing but a cumguzzling queer the only good that could possibly come of your life is spreading aids to as many other fags as you possibly can,-1 +takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse,-1 +you need to stop changing everything im doing i had a bad day today and i do not need you changing things around if you cant make my day better thx dick head,-1 +heya jayg sounds more to me like jew good job favoring keeping the list of laureates but keep in mind forever that you are a clown jew who thinks jew s are very smart which is clearly refuted as you are a fool or you are jew ish supporter and not a jew but then you are a jew ish slave another fool wasting time without knowing that judaism is a joke there is no other option of your identity as i explained both to you just remember hitler s will be born again to wipe put idiot s and cunning fools like you,-1 +no logic why is it that on tv you can see sombody blown up and see the news were they show you a hostage situation and you see sombodys head being shot off but saying fuck shit ass hole cock pussy god damn ect is concedered by the fcc wrong and could have negative effects words dont hurt a four year old watching tv and seeing sombody get the shit blown the fuck out of them will have more of a negative fuck the fcc,-1 +hi ho no more i will be systematically reviewing all of your edits with the description hi ho when you make an edit explain the edit you made so that the other editors can follow the progress or digress of the article instead of being a jack ass,-1 +nigger s and their liberal friends steal everything not tied down just like the presidency here with acorn with its liberal defenders fuck you nigger obama,-1 +this fuck ing user is trying to tell me that australian aborigines are not constructive what a fuck ing pussy cunt i m sure this ass hole is an inbred white albino defect go in a fuck ing cave and die don t tell me what to do,-1 +you are a thick little bastard to try to push the capitalist vs communist debate on child mortality think about africa some of the poorest countries in the world they are capitalist their health currently stinks in my opinion for any nation nation the child mortality rate is directly related to money spend on health care and this is directly related to the wealth of the countries before spreading your propaganda about third world nations you should watch this wonderful presentation if you are not convinced shut the fuck up,-1 +bongwarrior s mother is a prostitute,-1 +screw you mother fuck er,-1 +penis you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers,-1 +you know what fuck you go revert my edit this is more pointless than talking to a brickwall,-1 +spam im spamming you cause you re a cunt and delete my shit,-1 +i really wish we could crap by osmosis right now,-1 +regression retard refuses to acknowledge the fact that the gt is a gf gpu as shown here http w techpowerup com reviews asus geforce gt images gpu jpg anyone with half a brain can see with their own eyes it says gf gpu in that photo but regression retard is more stubborn than a dumb ass and continously reverts what is facts to suit his own perverted way of thinking i don t know whether the german retard understands simple english or not he probably doesn t,-1 +huh go lick ur moms fuck hole,-1 +hey you bitch when you deleted my page i cried you made an year old cry,-1 +that s right you heard me faggot,-1 +get a proper job daft cunt,-1 +serves you right haha you are finally block for month serves you right bwahhahahaha suck,-1 +what part of fuck off don t you understand youi mouth breathing pimply turd while you ll never nag a hot chick you can be king of shit mountain it that it i laugh at you leave me alone nothing you say means anything,-1 +go fuck yourself john cline suck s cock,-1 +where the fuck is the printer toner you stupid mother fuck ers,-1 +stop my vandalizing i don t think so stay out of my damn business you shit head or i ll kick your ass,-1 +at what point is your approval required for anything kindly fuck off thanks,-1 +vandalism i m damn sick and tired of idiot vandalising this page with things like omfg dale is so fuck ing hot no one fuck ing cares fuck off if you are going to do shit like that there should be an instant ban for stuff like that,-1 +lil faggot you are a little bitch i fuck in spent hours on big sam rapper an you call it fuck in vandolism hard ass aint you fuck you i m makin a true ass page an you wack off an delete my page what the fuck is up your like a snitch but to yourself i ll fuck in edit your bitch ass page an delete that shit i ll fuck up every single thing on your gay ass website if you keep deletin my ass wanna talk to me im me at guttyboy d or email me at guttyboy d aol com,-1 +at the end of the days fuck you is a pretty meaningless phrase two words that the whole english speaking world has been desensitised to i won t do it again i just felt persecuted and confused as i was new to how wikipedia works and confused,-1 +user georgiawikiwriter hello ymblanter i have warned calling it a group of fuck ing morons his behavior needs to be addressed asap thanks jaqeli,-1 +don t do it unless you want to have a fuck ed brain and everything else,-1 +blah blah blah kiss my ass,-1 +alright i appreciate your polite manner however placing all that crap on my page agitated me now all i wish is for all that crud to be removed and i request some sort of warning on dave scherer s page warning people that his shit hole shit has spyware on it,-1 +faggot dude you are a fuck ing faggot you made the right choice coming to america but your still a pussy geeky ass brit so fuck you nigger i don t give a fuck what you think i ll do what i want when i want where i want and you can t do shit about it bitch i ll change my ip go fuck yourself kid get laid jesus christ have some laughs in your life fuck ing loser sincerly the dragon,-1 +well then don t talk to me you jackass june,-1 +unblock the reason i used sockpuppets was to avoid harassment from user dibo who immediately reverted all my edits and when i forgot to log and branded me a sockpuppet of some previous user here which the checkuser proved did not exist i got into a revert war with user tancred and user dibo who from the contributions seemed to devote their time exclusively to making trouble and aiding each other in edit wars as is shown here as well as in the earlier case regarding user ehinger who they erroneeouslly accused me of being after several days of edit warring with user tancred over the right to call rugby league football football surely a neccessity and not erroneous user tancred s vandalism to the rugby league nations template here the names of various sports on the marconi stadium site and whether the a league franchises should be referred to as clubs part of their franchise names e g queensland roar fc is a franchise and not a club but takes the name of a club for marketting reasons or franchises and whether minor premiers were premiers or not tancred has a history of edit wars exemplified no better than here i was banned by user chuq although my last free edits from here were this my last was this is where i made an argument for my case for the a league case earlier i had asked chuq to please get a non soccer admin to help sort it out made in language not too different to chuq s funnilly enough user chuq sent no warnings to user dibo and user tancred despite their equally uncivil and accusatry of vandalism here i was not one at that stage as i was not trying to misuse the system and eing honest enough not to use this account to try to sway the argument note the term pov rubbish i felt i was hard done by and resolved to annoy the blockers as much as they had annoyed me before resuming as my previous identity and making a large number of useful contributions before being bogged down by a piece of shit like user dibo who provoked this whole encounter user dibo and user tancred are the ones who should be banned if any justice is to be done and i am resolved upon annoying the whole lot of you unless i am un block and the usefullness of my edits is acknowledged as actual contributions and user dibo recognised as the edit warrer that he she it is,-1 +jeet film hey ass hole it wasn t vandalism,-1 +if you don t let me post i will fuck you up,-1 +why the fuck does zakusage think he owns this page i mean seriously anytime anyone edits it he reverts it wikipedia rules say you don t get to own pages zakusage this is your one warning next time you pull this page owning crap im filing for having you removed,-1 +i swear to god u republican toolbag if i ever see you in life i d fuck ing hurt you u are totally corporation tea party anti gay anti abortion anti black anti hispanic anti immigrant you are like a radio that spews out rush limbaugh you need to be stopped u will never know the pain that us poor democrats blacks and disabled go throw unless you die and get sent to hell u do believe in it right u christian fundamentalist learn some progressive shit dude get out of ur fuck ing parents church people like you are what led to the incompetent president george w bush invading iraq but wait u probably supported invading iraq instead of pakistant or iran get a life or seriously die caus u d be doing us all a great favor,-1 +i see now how wikipedia is if someone breaks the rules its ok as long as they kiss ass this is bull shit he started this stupid shit and was persistent until he got me banned this is so fuck ing gay all ive done is try to help wikipedia but thanks to this stupid shit im banned wtf,-1 +also the ip attacker was from california where you are from im not stupid you think you re right but your nothing but a pathetic loser,-1 +that s a load of crap you are letting trolls vandalize his page and have made no effort to stop them i am just protecting the page from their idiocy,-1 +eternal pink why have you named you main guy in your crap manga because evreryone thinks the same thing that it will be fuck ing rubbish and it will kill all manga and no one thinks you can make one they all think you won t be able to finish it or even start,-1 +jetstreamer you can go and fuck yourself you stupid sick bastard homo,-1 +how did this dick get on here as in this dick,-1 +kw if u don t believed i called them it s too bad for you p haha secondly if a fact makes someone upset and if that s the reason you don t want to change the article to a fact then how big of a loser are you for a moderator haha p and lastly i know him if you don t wanna change it don t p people will find out in the future i m sure he will reveal it and about dropping drop your droppings in the toilet pot and then drop your head in it after that drop your tongue then roll it and lift it back up again have a taste of ur shit u hairy ass pedophile haha kww and father fuck er u still didnt give no source haha p what a sore fuck ing loser haha p what an old loser so afraid that he deletes my post haha,-1 +bull shit turn off the garbage they play on the radio today and listen to this woman s voice she outsang everyone as such i ve reworded that sentence a little differently,-1 +oh yeah well your a fuck ass ha claymort,-1 +i love fatty sex m,-1 +wikitheclown hi please refrain from being a rediculous fuck as you did by reverting my edit to ibanez doing so shows you to be a rediculous fuck so kindly go be a rediculous fuck elsewhere ass hole,-1 +stop being a pussbot stop being a pussbot you are extremely biased wikipedia cannto tolerate users like you stop being a shudslavpus,-1 +yo wat u chng it for kutcher is prick and world must knw the trooth ill change it againsmate an then fuck in ill be the winnar hahaha lol u gay,-1 +thanks a lot jackass if you had a life and weren t an over wieght year old uniployed virgin i would be pist at you get a life shit head,-1 +never mind you are another slimebag who banned me just cut to the chase and try to contact my provider ass hole,-1 +you dirty fuck ign nigger stop deleteing my work,-1 +cunt i hate your face you are a fuck ing shit faced wanker,-1 +by the way this is a university computer so go ahead and block it cock suck i ll just use my home computer to let the world know what a stupid ass hole you are fuck of dick ag,-1 +really good contributor bull shit the cabal disagrees and they are in control talk,-1 +muyou suck ass hole ch,-1 +first of all who the fuck died and made you the god on what is and what is not plagiarism it seems like a pretty clear cut case to me if text from the article matches text found in another source word for word then it seems fairly clear cut that it is plagiarized i would also point out again for like the umpteenth fuck ing time that this user has been using plagiarized material repeatedly and only takes it out after being beaten over the head with it secondly don t you fuck ing dare try and threaten me with what might and might not be said in arbitration finally in case you were not aware or just did not care an aol ip cannot be block so that is not any threat for the anon feb utc,-1 +you re a ho get the fuck back on your corner and make your pimp daddy some cash bitch quit fuck ing with public sites who died and made you the hall monitor sincerely that same guy you know the one that s fuck in yo mama bitch,-1 +kiss my ass cline wtf did others do to you,-1 +all the admins on this shit site are neurotic control freaks don t let their hideous attitudes prevent you from doing what you think is right,-1 +my name is in there and i am not the person the paranoid idiot who put it there claims i am that is all i have to say on the matter for now,-1 +you re a dick also how can you say jonathan pacheco shouldn t have a biography you call yourself lucky but i think lucky is more appropriate you ve been downgraded snap bitch burn,-1 +u motherfukkin bitch i want to rape you smelly whore stop fuck ing blocking my account or ill get my nigger homies to came and kidnap and rape you and your family,-1 +wikipedia suck s wikipedia suck s weenies,-1 +you don t know shit about old norse and you obviously don t know who maximilian was either this is why i gave up teaching because of fuck ing retard s like you,-1 +delited so i take it you re just an illiterate dumb ass then well anyway what exactly was i advertising i didn t link to anything i changed california to californication as a social statement not that i expect you to understand it hell you can t seem to spell deleted correctly and judging by your other conversations your literacy track record isn t all too great on many occasions,-1 +what do you mean you arsehole thi ip is block don t rub it in fu,-1 +all wiki mods a limped dicked libtard coward fuck bags http en wikipedia org wiki user raul can go fuck himself coward piece of shit,-1 +hence roz lip shit s is an idiot,-1 +anyone who looks into this is going to see your harassment especially the comment you left on my talk page over the past couple of days you ve been a real pain in the ass in the words of a fine canadian southern man better keep your head don t forget what your good book says,-1 +because stupid assumptions like your faggot goth ass makes doesn t account as a reliable source you stupid fuck shut the hell up before i beat the shit out of you for fun you dumb nigger coon emo cunt,-1 +you suck i hate you you can fuck my ass all night bitch shit love david ortiz,-1 +i never found it a supportive environment myself you are speaking of an aspiration perhaps rather than the reality of wikipedia in the meantime your suggestion that my remark to petrikrohn fascist could be misinterpreted is puzzling it means he is a fuck ing lying fascist how can that be misinterpreted please stop with your specious humbug,-1 +please refrain from unmaking unconstructive edits to wikipedia as you did at tim pawlenty your edits appear to constitute whitewashing and have been reverted or removed if you would like to experiment please use the litterbox thank you you re a dirt muffling little suck turd with no tosh to guzzle down tonight fuck off,-1 +hey faggot insert non formatted text hereyour faggot moldy ass deleted my information on the toilet seat ima hunt your faggot queer cock suck ing ass down and run you over with a very big cat bitch nigger im out,-1 +man its all about captain morgans spiced rum shut the fuck up barry i hate you,-1 +srnec you blunt idiot i wrote that article and i m years old next time you look at an article judje it with care,-1 +wow december please do not attack other editors which you did here user talk snowolf if you continue you will be block from editing wikipedia snowolf how can i help sorry did i hurt your feelings whiny bitch,-1 +fuck ing wanker fuck off before i come and leave u ft under,-1 +you re so idiot so st u p id guy fuck i n g portuguese i ha te the portugueses,-1 +you dumb mother fuck ing nigger lover stop deleting my edits you prick,-1 +hello jackass i have not forgotten about you,-1 +of course after being fuck ed up the arse,-1 +hahaha piss off fuck tard,-1 +user tenpoundhammer ten pound hammer stupid fuck who cares you re just a stupid ass hole with too much free time,-1 +i said go fuck yourself why are you chaanging it,-1 +repent bastard x above holy trinity,-1 +fuck off thomas,-1 +i completely agree with gilabrand u guys are all anti israeli fuck er why dont you and your anti semitic freinds fuck off so that we could show israel tyo what it really is,-1 +rename to corn this maize crap has gone on long enough its corn and the sooner you idiot s let go of your anti american hysteria the better,-1 +by the way i am a fuck in fag fuck u,-1 +faggot s freaks drunks and junkies jim suck s donkey balls,-1 +way out of line out of line am i your subordinate do i exist only to be controlled by bigots like you right wing prat,-1 +seriously by god who the fuck made you special don t deem my factual entries unusful fuck you,-1 +your account got fuck ed,-1 +now let me get back to eating pussy which i love more than life itself,-1 +i m not trying to destroy the fuck ing article i m trying to add something that is actually useful i m trying my best to find a fuck ing source for it so just get of my fuck ing back,-1 +hey ned hey ned why don t you actually do some fuck ing work on this encyclopedia all you care about now is who is block un block,-1 +so i was right you are really a no life total ass hole with no good intentions here at all well fuck you too this is the last time i attempted to discuss anything with you,-1 +hahahahahaha this movie will always suck no matter how much this article tries not to be bias mwahahahahaha,-1 +i rape katy perry s penis last night with a dildo and it was fun because then we started masturbating together,-1 +islams you mutha f ers,-1 +sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages,-1 +fuck off alf are you ever off wikipedia you cock suck ing nerd,-1 +hi mother fuck er zhanzhao are you a slant eyed chink or a blackie indian or both says the above answer my question fuck er,-1 +bong warrior is a dick ead deleting fings wid nuttin do wid him you got rape by your dad prick,-1 +stop it you crack whore go die in a fire you dick suck ing faggot,-1 +gargle with broken glass faggot,-1 +hey you know what fuck this it takes to goddam long to do a good artical fuck all of this im done with this wikipedia bull shit fuck whoever created wikipedia im sorry for saying that that was my bad,-1 +more youtube i fuck ing hate those chain letters on youtube pisses me off everytime i see one like this one this is a true thing that can happen its not a chain letter its kinda scary at first but it really works paste this message into comments and press atl f and your crushes name will appear on your screan is so weird this is a true thing that can happen its not a chain letter its kinda scary at first but it really works paste this message into comments and press atl f and your crushes name will appear on your screan is so weird retard s,-1 +there s a better answer to the question the people that made the anime fuck ed up,-1 +re image aotp jpg get a fuck in job,-1 +what the fuck are you talking about,-1 +heh suck it down chump,-1 +oh noes i m heart broken get your fuck ing retard ed hearts off my page you little privileged child,-1 +hey listen dude you need to stop being a little bitch about everything you whine and whine and whine until the admins decide that they ll shut you up by shoving a pacifier in your mouth in the form of w hate ver your year old ass desires tell you what go suck your mother s titties you ll be farther then i am but in a less than dignified way some people get off of incest i wish you the best of luck with that sincerely yours david p s suck my fuck ing dick you dumb bastard,-1 +you suck get a life get off wikipedia you are stupid,-1 +if you guys really discuss napoleon you need to get a fuck in life it is so sad that you would rather discuss someone who has been dead for years then to look at porn you guys r homo sex s like ass sex types,-1 +ooh i m so scared i m quaking in my boots cunt,-1 +get out my talk page you smelling wog,-1 +yes you need to because your fuck ing ass doesn t know shit about it at all rocky,-1 +fuck you fuck you fuck you fuck you fuck you,-1 +families couples and individuals are welcome to visit the club this kind of shit still lingers in the article such an edit is exactly what i did not want i could have done that myself fer fuck s sake i would bitch more but i m a lazy bastard however talk pages exist for a fuck ing reason i m not angry just manic graah,-1 +why aren t you banned you fuck ing mexican gay prick,-1 +hey bitch guess what koschecks fighting at ufc you know waht that means so give your adress so i could make u suck my cock,-1 +king of the world and we will eat a dick,-1 +you eat cats guts that is fuck in gross,-1 +no i know where he was buried close to the kremlin i shit ted all over his grave anyone know where his ancestors are buried i would like to dig up their graves too,-1 +you are too forward you came onto me too hard therefore fuck you,-1 +who the fuck are you,-1 +oh i found out what his knickers are in a not about kev said fuck off idiot in his edit summary to his first defacement of our talk page roflmao that s brilliant nice work kev making friends already p please make friends with the less crazy type of wiki fascist please xaidenx,-1 +list of ass hole s,-1 +hey dude you suck ed your dog s cock or your dog suck ed yours,-1 +oh wow last warning you aren t even a registered user go get a girl or something or edit other wikipedia articles just really get a fuck ing life,-1 +fine fine carter page suck s anyway,-1 +is a fascist bully constantly attempting to force his will on others fuck ing racist faggot,-1 +way to be racist racist ass hole,-1 +fuck you fuck you bitch ill show ur game guide,-1 +yes there are problems with your english you pathetic mexican ass hole i m gonna continue making your life hell until i can rejoice in the pleasure of hearing your death,-1 +orangemarlin you re an ass hole and that s all there is to it,-1 +i cited the sources at the bottom of the page i mean for fuck sake haven t you read the fuck ing discussion page dick ad,-1 +hey bahamut for a cpl in the marine corps you are an idiot,-1 +fuck you all i did was put stuff on my user page and your deleted it so fuck you and fuck wikipedia,-1 +this site is so full of shit somebody posts valid evidence to the effect that the official stories are wrong and it gets removed but i m suppose to dispute it peacefully which obviously doesn t even get anyware completely hypocritical go fuck yourself you piece of shit douchebag fuck this server you don t care about the truth,-1 +fuck off fuck off i do what i want bitch,-1 +am a mother fuck ing dweeb,-1 +i do not agree those spoilers totally spoil the movies all of those movies mentioned are some of the most greatest movies with awesometwist endings so fuck the person who ever removed them and you can report me all you want cuz that does not scare me you fuck ing retard ed bitch,-1 +nuisance piece of shit fuck off wiki doesn t need your vandalism,-1 +hi kannadiga shame on you you look like a terrible ass now with that false citation kannadiga where did you say urdu originate africa despite all the lies and idiocy you spewed you and a handful of kanndadigas think you are a valuable encyclopedic contributor preceding unsigned comment added by talk contribs,-1 +hello i think you are a fuck wad eat shit and die,-1 +why don t you fuck off you little prick,-1 +have you seen thier forum lately there is a new picture of you up with dick all over it cumming in your face,-1 +admin i saw you were made admin and i almost shit you must be a very happy man congrats,-1 +and why is screw you mother fuck er a personal attack i m not implying anything about am i,-1 +french casualty report pansy there are multiple sources reporting the shot down of a french warplane stop censoring wikipedia you ass hole you claim that libya is manipulating reports but not concidering the same from the coalition you re also not taking into account that you are manipulating reports by cencoring information here so suck it agsman,-1 +shutup who u think u is you gay nobody thats why you got that userbox your orientation doesn t affect you cuz you tried to sleep with chris brown he don t want u go get yo own man you ugly digusting cock roach go touch yoself or something with yo boifriend yamla wen is the babya doe septmeber loloud user,-1 +do you fuck that dog the consensus is yes from the chan crew,-1 +what the hell what the fuck did i do now it was a couple of harmless edits,-1 +i can change my ip at will ass hole,-1 +hey dip shit i made a contribution wooden ships so now i can make vandalizations after that i ll make another contribution cumfart with a picture of you lololol so i can make even more vandalisiziations,-1 +i d like a word with you just what the fuck do you think you are playing at,-1 +at first i thought your reasonning was correct you may be right about what i am saying about van halen maybe i shoudn t insert it at all but don t ever go and make fun of me what s your fuck in problem ass hole why did you put that stuff about me and the pounds what s your fuck in problem my size has nothing to do with the van halen article i may be a little heavy i m a powerlifter and i guarantee you that i m a lot stronger and a lot bigger than you and i could kick your ass anytime don t ever make fun of me in that way again you fuck in fagget you need to know a little more about manners you fuck in t pig all i did was try to imporve the article but because of your bull shit i can t write in the article now your in real trouble ass hole just wait just wait unsigned september by user masterofthesky y know i could sit here and hurl some pretty funny stuff back at you because i m good like that but you re right i shouldn t have been mean to you i was pissed because you don t sign your comments and because i had to spend so much time instructing you on the same stuff other people have obviously tried to instruct you on before it s annoying so maybe you ll let bygones be bygones now that you ve made me move your stuff and put a sig in for you again i ll even remove that snide comment i left if you can tell me what equals deal c mon try very hard and i m sure you ll get it what is plus you fuck ing birdbrained ape from hell,-1 +my talk page what the hell is wrong with people you are like the th person in the last hours to throw some stupid crap onto my talk page stop editing my talk page i do not appreciate being harassed like this i am new to wikipedia and do not appreciate having useless garble on my talk page when it is for people to talk to me not have stupid crap posted on there stay off of my talk page thank you,-1 +ut u racist nigger u block me cause im black,-1 +this is how the truth stands suck on my wiener hotdogs make you hungry now are you going to comply to the fact,-1 +reasons why i don t give a shit i m already hate d by you bastard s i m going to be block no matter what happens because dick eads like john lyden are administrators on this site and because you allow pompass ass hole web security professionals to take control of this piece of shit website,-1 +u cant block me i no where u live if u block me i will come round ur house and rape u up the ass,-1 +add reasons why they are nothing with which to fuck,-1 +get a life seriously you ass retentive basement dweller,-1 +frank was a good station when they first started but now they play nothin but shit don t you like the rose better,-1 +fuck all asyriac nation qamishli belong to arminian and we will fuck all asyriac people if they will said no,-1 +i find you to be a fuck ing useless pos go fuck yourself,-1 +this is getting fuck ing redicilous there is no canon in star wars knights of the old republic there are only two things that are canon the movies and w hate ver george lucas says lucasarts does not count it is not the creator of star wars and does not hold the copywright to the idea george lucas does so stop saying that there is a canon way to play because there isn t it s n bs like you that make this world seem like a haven of lies and deciet and misinformation just stop,-1 +fuck you to hell bitch why the fuck you one to ban me from editing for fuck your mom voo tong sung is a bastard and he deserves it so just leave me alone you fuck ing mother fuck er prostitute faced ass hole,-1 +fuck you wikipedia you are a bunch of faggot,-1 +in your sandbox dog gave out a shit,-1 +fuck off i will kick you,-1 +fuck you cunt block me go a head you cunt licker,-1 +by the way i m not who you think i am fuck face my registered name was pimpticon so before you get block happy it s i who have been changeing ip s and nobody else just thought you should know,-1 +continuous vandalism by turkish users and shameful supprort from wikipedia and i will drag you to eu cours little turkish boy on the praire might sound funny enough but i will shut you down i have never and will never take thios beahiviour from anyone shame to wikipedia for letting a bunch of sick fanaticks behaving like this shame on you all i refuse to deal with this,-1 +fuck me in my ass hole,-1 +low intensity is the key i got very turned off by all the political bull shit that goes on here so i just make the occasional edit vandalize the talk pages of that sort of thing,-1 +hey you there stop this bull shit i ll get you before i die suck a dick my dick,-1 +the dick who is editing with policy is also editing out of policy by being arrogant lazy and fuck ing up the functionality of the image workshop his worrying obsession with nfcc is his excuse for being a twat he is deliberately making the workshop non functional for the iw to work properly we have to be able to either see or be able to link to the image being requested now mr dick esq comes along deletes both the image and the link making the request impossible to deal with unless we go looking for an invisible comment hidden in the source code of the request in spite of being told of methods of maintaining nfcc compliance and maintaining iw functionality hammersoft refuses to use them one of the methods only involves putting a colon at the front of the link but will hammersoft do this no he has refused point blank this i firmly definitely and firmly puts him in the dick category his arrogance his laziness his borg like obsession with nfcc and his truculence are disrupting a valuable resource with wp for no purpose i would be grateful if you could copy and paste this as a response to his accusations at the incident board especially now you ve effectively stopped me posting there this is not an unblock request as i don t care one way or another it s wp s loss if i can t sort out image requests for hrs it s not my loss this is a request though that hammersoft either stays away from the iw or that he implements the methods we ve informed him of,-1 +mentally ill freak stop editing other people s talk page like year old f off,-1 +listen ass i suggest you stop trying to harass and threaten me i am not making disruptive inappropriate or hard to read edits or violating anything you are purposely harassing and bothering me the fact of the matter is that belinda is spanish mexican there is no source that shows that she renounced her spanish citizenship go ahead try and find it it does not exist i do not give a shit if you give me a level freakin warning you are purposely picking on me and you need to stop i am not making any disruptive or nonconstructive edits and i suggest you get your fat ass off the computer and get a life instead of bothering me,-1 +typical yank rockstar is british you can fuck yourself if you think otherwise yank bitch,-1 +ban me oh no like that s never happened on here are you retard ed what ever happened to assume good faith let me guess my ip has large amounts of vandalism linked to it right i left the comment that i deleted after my brother left himself logged onto the computer i was using when i realized that i had left a bitch y message childish message there using someone else s name i deleted it then you come along and threaten me with a ban screw you ban me mr all mighty holier than though admin i don t give a damn,-1 +listen here for the second time how the f did this frequent mention has been made of the moldavian soviet republic that is the god dammned th century it is not generally known that the lower dniester is an almost purely roumanian stream trans formed itself into this charles upson clark claims that the lower dniester in was an almost purely romanian stream am i a cretin or what do i suffer from some mental illness and can t use simple logic or what tell me is it me tell me and i ll leave all of you alone god,-1 +fock thee shmucky the cat go fock with kilrathi sivar priestesses,-1 +that was really milleseconds wasnt it bitch fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat jew fat,-1 +both of you are tools go fuck yourselves and get laid,-1 +to subject objective criteria such as references to subjective quasi criteria such as google count on a topic as humanistic as genocide undoubtedly does seem fitting of a profile of someone who treats genocide v its deniers same as ice cream v its taste variants too bad i didn t succeed pissing you off the first time enough to get me banned from this freemasonry playground hm lets see if you morons can catch on in the second attempt go fuck yourselves you lowlife idiot ic semi educated imbeciles who actually believe they possess supreme quality just by belonging to a herd of manipulators ha who s pissed off now push the button come on we know you re holding it and he s holding it and he s ho lol,-1 +whoever this is fuck off,-1 +oh please spare me the drivel people sending their yearolds to get blown up on a mine such retard ed claims can only come out of the minds of super twisted bigots no really did you know we eat babies for breakfast too i repeat there is no evidence that such things ever occured aside from claims made by the iranian opposition and yes i find this issue very insulting because i was one of those youngsters that served in the basij during that fuck ing war i was there and my fuck ing right leg suffered a paralysis by a shockwave when i was so spare me the rajavi horse shit that s all over the internet,-1 +no you are not a basement dweller you are such an obvious pantywaist bitch and any sissy will mind it,-1 +stop changing it back fuck off you little prick stop changing it back that is the reason why we lost,-1 +could be out rebuilding your city but no you re sitting on your lazy ass keeping the admin back log low retard your not making a difference you can t fill a sand bag with all your wonderful edits,-1 +damn right you re doing something wrong and you still haven t answered my question why are you doing this just who do you thing is offended by unfair images i can see from your talk page that this is clearly a sad fixation of yours so i m not going to fight you i really don t have the time i ve got better things to do unlike you you sad little man so delete my images if you must but just answer me this who are you benefiting apart from yourself obviously satisfying your own sad delusional little ego trip that you re a virtual policeman probably too pussy to be one in real life,-1 +what the fuck fuck you you can t vandalize the sandbox ass hole it s a fuck ing editing experiment,-1 +read the above numbskull would one of you vegetables please get a move on and block this i p i ain t leaving until this address is block so hop to it please ass hole s,-1 +sir you are caucasian and you dont know what the fuck you talkin about and for your fuck in information the new aaliyah cd will be released in stores in summer and please sir stop interfering if you re not a fan,-1 +why good sir why you sir obviously do not comprehend the importance of no scopes as a kind and generous wikipedian take the time to understand the effect this article has on issues such as world hunger which i hear singapore has a lot of by deleting this article you are in effect fellating the proverbial penis of all that is evil why the fuck did you delete our goddamn article now my dreams they are so lonely as my article seems to be behind these blue eyes i can see through your supposed good intentions into the black soul that is your true self my love for this article is vengance that will not be free until i crush your soul and destroy any evidence of your pathetic presence on this earth i hope you contract a foreign disease and your penis falls off if you even have one i will force your children into indentured servitude and all of your lowly descendants will be cursed with abnormal navel hair growth forever my angry bloodthirsty army is waiting to beseige your house and burn everything you have ever owned until your physical being is engulfed by the black hole that is your perverted heart i will also delete your slanderous works and bring singapore to a speedy fiery deletion off of the face of the earth i will not rest until complete vengance has been bought upon you and the stairway to heaven crashes down upon you and your so called morales god and satan alike frown upon you from their thrones fuck you and all you stand for you my good fellow are a cunt and i hope you enjoy the rest of eternity in the fiery pits of hell i hope that speedy death swarms about you like locusts slowly devouring the very fabric of your being,-1 +you are a fuck ing nerd go kill yourself you nerd,-1 +this would be why i was told to fuck off after i found out one of their full names,-1 +shut the fuck you little anon you don t know anything,-1 +bull shit the bolshies grain requisitions were much greater than those carried out by the whites and also had the effect of disincentivizing grain production by the peasants it was this secondary effect that caused the famine because so much of the land was allowed to stay fallow as for davies et al they are probably relying on official data from the soviet government that was purposely falsified to disinform the people,-1 +ungrateful monkey men how dare they take arms against the dutch and british who spent years trying to free them from japanese tyranny and after turning their series of islands into a civlized society fuck em they should all be nuked,-1 +fucck u ass hole do wateva u want diick head contact blogsd,-1 +b excuse me but what do you mean by contributing in a profeshionall level of bull shit user th sinn,-1 +i wanted to let you know that tymon r is a stupid moron,-1 +just this account dip shit fuck are you dumb a bullied nerd with a mod account look out world,-1 +yo nigger whats ya beef yo nigger wtf is ya beef u got a promblem bitch reportin me and shit how bout u go make a wikipedia page for snitch iight nawmean nigger in mah hood ya ass is grass if u be snitchin and bitch in yo ima make a rhyme for u ayo i tried to make a sick nasty article but will came and ruined every particle whyy the fuck did shit have to go down like that i thought we wuz homies then u put my article in the ground like that whats ya beef u got beef like burger king deltedin my page but reports me is another thing ayo tahts right thats how i get down kid dont be snitchin anymore kid cuz i fckin get down straight hood nigger and make a wikipedia page for mutha fuck in party pooper cuz thats all u are a fat greesy party poop with corn ur more like a party diarea,-1 +what are you retard ed i already am block what a fuck ing moron,-1 +vandalising ok for the last time who the fuck do you think are mr encyclopaedia you don t own wikipedia loser you english twat hey why don t you contribute to the meaning of that one by describing yourself get a life,-1 +yo what is your problem mother fuck er,-1 +sabu is a violent piece of crap dis guy is so violent he hits people with steel chairs triple jump moonsaults ppl thru tables he coud put som thru a burning table which could kill them he was taughtby his uncle and he is from bombay india user dark hooded smoker,-1 +i admit hey ass hole this is chat wit me contributions i m the sockpuppet who was sending personal abuse among others this is my secret account which i kept a secret for a long time i m going to send personal abuse to other users asap so you better block me on both account before i send personal abuse ass hole,-1 +i also took out the part of trivia that said johnny richter has a cousin named mary that s all fine and fuck ing dandy but it really doesn t have shit to do with anything it mentioned nothing about if mary was famous or if mary did something worthwhile it s like someone mentioning that george clooney has a sister stephanie or something like that nobody gives a fuck,-1 +the repulicansodomite has responded praise the lord of virgin homo know it alls the great jr mccarthy who like you has to burn everybody who does not agree with him at the stakes go ahead block this ip address better yet block this whole range of ip address even better if you block the whole range of ip addresses of those who insult you re virgin faggot ass ops sorry it s not virgin isn t it your ass has been having regular contact with some big and hairy friends democratantisodomite,-1 +rona was a bitch but she s got pizzazz wait why do we hate her again plus she sent that decoy on a suicide mission or was that under giles orders talk to me,-1 +he is from bombay you idiot u guys hav no idea where the hell sabu s from shut the fuck up he was not from michigan u stupid he is from india he doesn t evn look like an american if u don t let me say he s from bombay u ll get blockd and shut up b it s too late,-1 +some idiot named dick clark keeps on writing false information about my colleague walter block please keep him off the board,-1 +appeal this block unblock reason you can suck my fat dick,-1 +lick your own balls while suck ing your arse,-1 +thanks for deleting my page you fuck ing cock suck i honestly hope you fuck ing die you god damn son of a bitch o and by the way if i im going to kill you you fuck ing faggot,-1 +just mind your own fuck in business ass hole tion,-1 +k what the fuck man why did you add a new source the source given was invalid meaning that genre can t be listed anyway don t see why that was cleared as a source from the get go so in that case how how does that differ from me adding a deathcore genre just get rid of the fuck ing melodic death metal seciton of it it s pretty much fuck ed up,-1 +th suck a big fat dick moglucy at,-1 +auto block shut out damn,-1 +so i heard you and cyde abused your power to screw over nathanr i saw his side of the story on encyclopedia dramatica and i must say that snopake is nothing but a backstabbing whore and you are enabling her my advice next time you fuck her donkey punch her so hard she dies it s a good way to cleanse the gene pool a bit know what i mean oh and snopake liekz teh pedo raep ha,-1 +as long as u block me block me for good idiot but its good to have the above page for future references against idiot s,-1 +personal attacks fuck punch at cluebot ng,-1 +what go lick a pig you arab muslim peice of scum,-1 +typical coverup crap and they only bother to discuss it after their phony merge listing was removed for their lack of bothering to discuss,-1 +ok let me say it again come on now you guys are just being piece of shit jew s i mean you have to admit the guys in pink floyd play their instruments about as slow as a nigger works i shouldn t even call what they play music it s just a bunch of alarm clocks and cashier regirsters but you know what the most pretentious thing about them is its their lyrics all af their songs are just surrealist poetry sung over doom noise pop and everyone starts calling them genius s over it the truth is their songs have no meaning take the album the wall for instance sure it tells a story but what is the moral and the meaning of the story and dont tell me that the purpose of their songs is to make you think the only way that music as slow as pink floyd could make you fuck ing think is if you were just as stoned as they are which you kikes probly are and one last time pink floyd fuck ing suck s david fuck mor should taste my ass you should to,-1 +he hadn t been in the usa since bill clinton was in his st term he was no american just a useful idiot of islamic radicals,-1 +scjessey is a big fat faggot pinko commie ass hole,-1 +t man put his crap back i will leave it because unlike t man i have a job and am going to the gym i fixed some typos and grammatical errors but the pov and moronic comments are too numerous to fix easily the great wikipedia project destroyed by the dim witted,-1 +december please stop if you continue to blank out or delete portions of page content templates or other materials from wikipedia you will be block from editing if this is a shared ip address and you didn t make any unconstructive edits consider creating an account for yourself so you can avoid further irrelevant warnings oh what the fuck are you going to do,-1 +fuck fuck bold text,-1 +oi rror fuck you wikipedia suck s and so do you for editing my posts ass hole,-1 +stop your fuck ing spamming i have told you and your sock meat puppets a dozen or more times to stop your fuck ing spamming your incessant spamming on editors pages will not help your fuck ing cause at all it will merely continue to confirm editors opinions that not only is the article not valid but there are problems with the editors that will need to be addressed as well the only thing that will keep the article is if you present significant coverage from reliable third party sources consider this your final warning trpod aka the red pen of doom,-1 +stay the fuck out of this ping pong if i want information of mushu shrimp i will ask you,-1 +i will ignore but rest assured that should you cause any further disruption to articles or talk pages i will report you and ask that you be block longer than you were last time seems your only response is violence am i right american self appointed dictator ass hole whats the matter cant handle it when it gets tough sometimes the other one hits back and what do you do american fag run home to mother you fuck,-1 +you have a new message go fuck youself again,-1 +jeeny s being a bitch don t listen to her,-1 +well hes an idiot he removed my edits for no reason even though they were correct,-1 +oranjblud is an idiot stop sticking up for him redrose,-1 +neither you nor i are experts in the article subject matter least squares spectral analysis but i cited references that literally say trigonometric functions while your references all refer to another method fourier analysis you freely interpret as to make it sound they refer to the article subject matter though it is obvious they do not in your mind as you claimed it explicitly fourier analysis is still the same as least squares spectral analysis which is obviously a nonsense because wp has two completely separate articles both featured on wp main page btw so i do not believe anyone any more will buy your misusing of wikipedia regulations there is no reversals here not even technically speaking because what is going on is mine article author s cleaning of all the shit you keep spraying around just like so many editors noted everyone just look at dick yon s talk page that you engaged in edit wars or insults exchanges with so far you are just a trouble maker around here and everyone sees you as such now stuff your imaginative misinterpretations of wp regulations to where they belong no rr violation on my part but i know why you just threatened with reporting me it is because i already mentioned to you today that you are in violation of rr yourself sinusoids is another result of your imagination as no reference on lssa ever mentions it so it is not a reversal to remove your ignorance cleaning your shit is what it is,-1 +if they dont score a milliuon goals for vinnies the shit s,-1 +you suck the dick award i hate you,-1 +what up g you suck ya jackass no serious get a life and that s coming from a quasi hermit myself,-1 +that clown guy suck s major cock user daniel,-1 +ass lick a dudes ass hole lol,-1 +take your job as seriously as possible you loser no seriously act like a huge ball bag and threaten to ban me from editing articles like i really give a fuck you fuck ing nerd faggot s make me sick,-1 +james the awesome technician did create the e learnign centre ass hole,-1 +ohnoitsjamie you re a faggot what do you think of that,-1 +ass neck virtual graffiti hmm seems close um not sure um wait yes you have an ass on your neck hahah you are beyond a fool,-1 +would someone be kind enough to thank timotheus for removing that crap it is seriously appreciated and with that i m done,-1 +i hate you you deleted my add on to death metal you suck,-1 +please delete my account i dont respect wikipedia anymore suck it,-1 +you just make me laugh hahahahahaha so you are some aussie bitch hiding behind a computer and changing what i write im half abo half lebo so i am the truth u cannot face but your girlfriend faces every night,-1 +you know what id like you to do leave me the fuck alone,-1 +alex fuck you,-1 +i m starting to get confused would why not a duck or whoever sees this please send a message to rexnl and tell him to lift this goddamned fuck ing block,-1 +hey ms bitch get the fuck out,-1 +why the hell are you deleting the information from lil wayne s page ok you said young money doesn t fit the criteria of a super group but what does that have to do with him being the ceo i doubt you even know shit about rap music you fuck in clown trolling lil wayne s wiki page seemingly reverting the slight sense of change stupid fuck he s the fuck in ceo of young money why isn t that entitled to be put up i m reportin your faggot ass bitch boi,-1 +pablo is a fuck ing troll abusing wiki for his communist agenda he deserves worse than i gave him,-1 +fuck you you stupid and gay bastard who thinls you are cool go to hell,-1 +you are a fuck ing bitch bitch,-1 +halfway decent map of what you stupid cock suck,-1 +warning mrzaius has a hard on for the term lolcats and will use any means necessary to preserve it over the correct term caturday because it is the only way the slobbering fat fuck can get it up,-1 +look regardless of what you think i m not an ass hole,-1 +go fuck yourself bitch i hate your sould mother fuck er who the hell do you think you are i will stomp on your neck until you fuck ing die do you hear me every time you make a change a kitten will die go to fuck ing hell you fuck ing faggot jew fuck,-1 +honestly what you all are doing is wrong stop discriminating us goths from society how come you re just making shit up saying it s dangerous to be goth well guess what i m goth and i m proud of my lifestyle subculture sure we like different things but just let us be ecto you re a horrible person i hope you know that why list a section of critisim when maddox is just a faggot mother fuck ing sonofabithc cock suck ing ass hole fuck maddox jhonen should never ever ever ever ever be compared with that evil man jhonen s never critized the lifestyle sure he s made little comments of how most get into it but don t know everything about it and what it is all about but that dosen t mean he s critiquing it if anything vasquez is a goth goth forever the powerful,-1 +you can suck my ass you stupid ass hole this was a personal attack but maybe you re really a stupid ass hole you can not see the difference between a reliable source and review crap furthermore you were a part of the edit war,-1 +a barnstar for you the photographer s barnstar you can suck it,-1 +fuck you wknight,-1 +you can t delete shit from my talk page you faggot get that shit out of here,-1 +shit vanessa your so cute,-1 +nai caste ka veer fuck you all mother fuck ers pakistani janjua muslims you pigs either lock this talk page too or unlock the talk page of my caste i am become death the destroyer of pakistani muslims note my ip and locate me and send terrorists to kill me if you are a true muslim i have lost the fear of death fuck you pig sitush you born out of shit of a pig teri ma chodu behnchod musalman janjue rajput bhaag behnchod,-1 +give it up you re stalking me to accuse me of making some account to piss you off i believe my friend sent you a message saying that it was her and it s the truth i won t waste my time on someone pathetic like you since you make me sick i made another account to get away from you and like i said i know you were the user higgys since only you would know the stuff i told you you re sick to have done that you basically pulled the same stunt another guy that i thought was my friend did instead of telling me you didn t want to be my friend you did that and when i asked you about it you block me and wouldn t even speak to me oh and by the way the one immature thing i did was throw that stupid bear you gave me which had the stuffing coming out of the side anyways into the brook behind my house since it deserves to rot in filth just like you and that stupid ornament you gave me that was smashed to pieces since it shows what you did to the friendship i thought we had because of your actions you make me sick goodbye and good riddance sean you re the one that follows a dark path not me since you do lots of crap that is worse then anything i ever did oh and this is not a pity me thing but the issues i have had were due to seizures so not everything was deliberatly my fault think about that the next time you want to harass me ok,-1 +because propol your a little fuck,-1 +i know im about to get block it is worth it to tell you your a loser again you take cock to the face and thats it peace out homo,-1 +nigger rd please the nigger rdly nigger nigger ly nigger ed a nickel from his nigger he was heard saying can a nigger spare a nickel i firmly believe this is proof the the politically correct should be impaled on stakes and left for dead or placed into death camps and given no showers for months and then informing them that showers are now available turn on the gas dig pits and bulldoze their corpses into them burn them piss on them then plow them over people quit pandering to lazy stupid good for nothing welfare grubbing crack smoking filthy stinky nigger s,-1 +some annoying douchebag keeps putting up his own website fuck perezhilton com deleted all links to this shit head s site someone get the ip and report it to wikipedia,-1 +i cannot resist another man s cock i love it when i get railed with a foot long donkey dick,-1 +i care about the public being misinformed about his lazy boring ass album go cry to an episode of degrassi you fuck ing twat,-1 +still here fatass what is it like waking up every morning looking at the mirror observing girls cross the street at your approach who laugh as you attempt to waddle down the street what is it like to see sex women recoil in horrer at your approach what is it like to eat chocolate bars in one sitting what is it like to be dangerously obese what is it like to be an obtuse dick along with all of that who does counter productive things even though a bit of common sense months ago would have saved him all this hastle what is it like being that obtuse edit perhaps you should consider a dialogue all this reverting is so obtuse its silly i ve said it before all you need to do is offer a recognition in an edit summary that i fuck ing exist you fuck ing moron and i will go away for ever moron,-1 +welcome bitch welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are a few good links for newcomers the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia questions ask me on my talk page or place helpme on your talk page and someone will show up shortly to answer your questions again welcome,-1 +go and such your dick,-1 +good luck wikipedia suck s oh look at all your awards i m certain they make you feel good inside persistant i see i feed off this shit man,-1 +i don t care like i said keep your shit grammar,-1 +your dumb your dumb,-1 +level english exactly why you shouldn t be commenting on facs and gacs gee wizz this is why the english wiki is so shit,-1 +nliggers got what they had comin the fuck jungle bunnies,-1 +dumb ass there is no other word to describe your edit to my user page there s also no way in hell i like any of the bands or things you were trying to list on my page try it again and you ll be block not to mention i have an idea of who you are though i may be wrong and i ll remind you that sockpuppetry is against wikipedia rules i also don t like people trying to impersonate me i could get you block for that alone if only i could reach through your computer and grab your scrawny little neck odin,-1 +your general suck itude get your cock out of your mouth and ban me i can t believe you haven t realised all the awful things i have done to your wikipedia why am i telling you this good question maybe i have problems,-1 +you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck d,-1 +i have a tight ass hole and hate fun,-1 +cabaye as a dedicated cpfc fan i know every single fact about them so it frustrates me that you remove it so don t tell me about this reliable source bull shit so i will change the cabaye info back for know,-1 +fuck you how about a range block does your mom still eat cum,-1 +merged my ass you just deleted the page,-1 +hey ass hole whats your problem,-1 +go fuck your self ass hole,-1 +oppose i also oppose the hatnote and without the hatnote the redirect and move doesn t work otherwise eating pussy disambiguation would be orphaned as stated above the dmb page should be given time to settle down,-1 +you are a fuck ing piece of shit die and rot in hell,-1 +fuck y o u a s u a r e a bitch ass nigger,-1 +shut up you cunt w,-1 +fuck ing cabal of donkey raping shit eaters i hope you all get cancer,-1 +hello bitch hello little s l u t do you always suck israeli cock s so good to keep them happy you dirty w h o r e,-1 +i like to fuck sheep because i m a frosty piece of shit,-1 +oh i m scared you wrote on my page this is the only warning you will receive for your disruptive edits if you vandalize wikipedia again as you did to user talk craftyminion you will be block from editing crafty talk if this is a shared ip address and you didn t make the edit consider creating an account for yourself so you can avoid further irrelevant notices retrieved from http en wikipedia org wiki user talk first off craftyminion and crafty would obviously be the same person you secondly if you read what i said you would obviously know that i do not edit wikipedia therefore blocking me which is really the only power you have in your life probably and it makes you feel like you have a big dick couldn t matter less to me i d o n o t g i v e a shit if you are fuck ing retard ed you may need to read that again and again slowly third yes i use a shared ip address it s my college but no i dont want a user name fourth please stop fuck ing leaving messages on my page go out buy a whore get laid for the first time ever smoke a cigarette drink a beer skydive and fuck ing live you nerdy little cock suck ing virgin,-1 +yes douche but an article does have to be neutral happyme has consistently been aggressiv in keeping the nancy reagan article skewed towards her favor if you check that article s talk page you will see several admissions by him that he is clearly in her favor and that his edits to her article are aggressive in such a manner that there should be no question of his bias that you and other adtiors administrators have been so lax in blocking him for making non npov edits to her articleonly goes to prove again that wikipedia is nothing more than a media manipulated brainwashing machine fuck you wikipedai you just lost a user ever yes douche but an article does have to be neutral happyme has consistently been aggressiv in keeping the nancy reagan article skewed towards her favor if you check that article s talk page you will see several admissions by him that he is clearly in her favor and that his edits to her article are aggressive in such a manner that there should be no question of his bias that you and other adtiors administrators have been so lax in blocking him for making non npov edits to her articleonly goes to prove again that wikipedia is nothing more than a media manipulated brainwashing machine fuck you wikipedai you just lost a user ever yes douche but an article does have to be neutral happyme has consistently been aggressiv in keeping the nancy reagan article skewed towards her favor if you check that article s talk page you will see several admissions by him that he is clearly in her favor and that his edits to her article are aggressive in such a manner that there should be no question of his bias that you and other adtiors administrators have been so lax in blocking him for making non npov edits to her articleonly goes to prove again that wikipedia is nothing more than a media manipulated brainwashing machine fuck you wikipedai you just lost a user ever yes douche but an article does have to be neutral happyme has consistently been aggressiv in keeping the nancy reagan article skewed towards her favor if you check that article s talk page you will see several admissions by him that he is clearly in her favor and that his edits to her article are aggressive in such a manner that there should be no question of his bias that you and other adtiors administrators have been so lax in blocking him for making non npov edits to her articleonly goes to prove again that wikipedia is nothing more than a media manipulated brainwashing machine fuck you wikipedai you just lost a user ever,-1 +everything is fuck ing,-1 +you you re such a sad person the fact you failed rfa makes me laugh i hope you get rape murdered and you rot in hell you cunt,-1 +the forums suck now criticisms of the forums should be included since the forums suck now because of all the dick ucking but uh there should be a non vulgar version of this in the article oh shit i m gonna get banned now i should not mention i am euro nonymous who was lovd until low tax said he suck ed then he was hate d,-1 +did bitch has sum nice tats i wanna squeeze dem melons,-1 +fuck you i was trying to clean that stuff off the main big east page by creating a daughter article thanks for helping,-1 +you are gay you are shit,-1 +arbitrary break pedophiles should have their throats slit from ear to ear no you let me tell you something faggot monsters like you who say you want to rape our children should be kept as far away from human society as possible the reason we the people in the us started a constitution in after fighting a violent revolution was exactly to protect our posterity against treasonous sickoes like you our posterity is one of those areas where if the government falls into the wrong hands and fails us we will take matters into our own hands pedophiles deserve to have their throats slit from ear to ear and then to burn in hell forever if there is one now enough of this turning jimbo s page into a three ring circus like you disgrace everything you touch,-1 +it s go go jew ranger go go jew ranger harrasing children having year old gay sex go go jew ranger go go jew ranger he s an otunka wannabe he gets pipi hurt what a jew ranger hate s ed bull shit go go jew ranger you re not asian go go jewranger,-1 +because you are such a fuck ing cock,-1 +clue bot ng suck ed my cock i have inches i have a huge penis and i like to fuck icelantic girls in the ass,-1 +that may be appalling but what s really appalling is that we could lose eric corbett based entirely on molly s thin skin if someone acts like a cunt eric has every right to call them one,-1 +fuck er cunt o i will edit all i like hahahaha,-1 +you suck you suck jpgordon even if you admins checkusers find our ips and block them for long periods of time all we have to do is press the reset button on our modems and within minutes we would get a new ip and be able to vandalize again as a result i hope you admins realize that blocking is useless that is indeed what i always do when i get block and to save you the time of yet another checkuser the ip i am using now is and in case you haven t figured it out i previously used the ip see https en wikipedia org w index php title special log block page user a which was block for months yesterday useless block it s quite easy to circumvent it,-1 +humblegod likes to fuck his horny cousins,-1 +u r a scum bag u r a effin homo i am the most inportantest person in the world u can call my article about brittany mellor nonesense but that is rejecting my and dat little badge that said kindness on ur sandbox yeah thats not true cuz i am brittany mellor and calling me nonesense is effin stupid u dick head,-1 +please go and kill yourself you clearly have nothing better to do on wikipedia than try and fuck it up for other people we have no need for your kind talk,-1 +why is your dick so small is it because you are asian,-1 +you mother is a bitch your father is a prositute so your borthers and sisters and you dwell in pig pens you smlell like one and your hair has lice you smell each time you breath because your body is full of microorbes from the toilet bowl,-1 +ass hole screw you fuck fuck fuck ass hole fuck u a duck fuck ed a kangaroo and that duck is u fuck u for fuck ing a kangaroo bitch,-1 +sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my messages sannse is a big fat bitch for not leaving the users alone along with angela billj is a dumb ass for deleting my m,-1 +it is proposed that this user be tarred feathered and flamed this user is a piece of shit if you can help this user by improving performing brain surgery banning or the good old fashioned teleporting away please do so you may remove this message if you improve the user or if you otherwise object to torturing of the user for any reason to avoid confusion it helps to explain why you object to the torture either in the edit summary or on the talk page if this template is removed it should not be replaced but it probably will anyways the user may be deleted if this message remains in place for five days but probably will never be because no one cares about this user s wishes to delete it therefore this tag will remain here forever if you created this user whip him to hell,-1 +i love your profile look hoe i dont appreciate you messing up las vegas for me i hope you suck a big fat one and have a great day you nerd computerfreak suck a fat one srh for life home skillin buiscut,-1 +you can go fuck yourself,-1 +fuck off your piece of shit jew,-1 +keep quite you dumb ass the wiki guidelines clearly state that discuss the issue on talk page before removing the propdel dumb fools like you are the one who have brought non credibility to wikipedia as well as to england which cannot even survive a war against india for more than days the whole world knows that england is not a filthy and backward country with no technology uk buys all defence equipment from us cannot construct its own missiles the only slbm of uk is brought from us no wonder uk is almost in gutter shamless editor instead of accepting mistake rant like a bastard christian,-1 +a kitten for you you are a cunt,-1 +suck le on my dick e you can suck your great grandfather s left testicles until it falls off at which point you can roll it around it around in your mouth like a hard candy dark abrahms,-1 +fight club fuck yeeahh,-1 +get out my large penis,-1 +especially you fuck you for fuck ing up wikipedia you can rot in hell you piece of shit,-1 +because wikipedia is a bitch website that makes dumb decisions to let people like me join in their intelligent information in which im going to ruin for you because your a giant prick i hate information because it make me brain hurt rawr,-1 +stop fuck ing adding viking metal they sound nothing like ensiferum or tyr fuck ing idiot s,-1 +what an idiot ic load of blather you might as well ask if it s justified or valid to use the concept of volcanoes in discussing the destruction of pompeii because ancient romans had no concept of vulcanology pathetic,-1 +dumb liberals liberals suck i will beat you at tanks anytime you swastika wearing freak sieg heil,-1 +if you don t stop bitch ing i ll change my ip address and come back again,-1 +this user is the child of a whore,-1 +faget ill do what i wish fat ass cock suck,-1 +take your sandbox and stick it up your ass hole retard,-1 +fuck you doc the anti vandalism barnstarfuku,-1 +hi pompous ass i know you think you re some kind of poker authority on wikipedia and that it s somehow your perogative to give the imperial final thumbs up or thumbs down on what s acceptable regarding anything to do with poker here but guess what that s not the case you are one of many arrogant conceited self absorbed losers that populate wikipedia who use this site as some sort of self esteem builder because here you can act like a big man and make unilateral decisions on what s acceptable or unacceptable here the edits i have made and will continue to make on the jack straus entry regarding his death doesn t violate policy in any way if i had the time or the inclination i could spend several months quoting entries and instances on wikipedia where editorial verbiage is used you are simply a pompous ass who thinks you are the gatekeeper of anything poker related on wikipedia you are not and you will not censor me and as i m sure you ve already realized my isp address constantly changes so you won t be able to block me either so piss off preceding unsigned comment added by,-1 +this guy is so dirty he s awesome fuck yeah ahahahhaaha,-1 +i haven t called you names but if you want to start making allegations like that i can accommodate you sunshine i didn t ask where the references were found so thanks for wasting my time with some more useless information nor did i ask what niemti could or couldn t fathom again more wasting of my time don t link a bunch of essays and guidelines especially when you re on the wrong side of them i gave you a reasonable answer you ignored it and chose instead to waste my time with useless crap there i said crap too so you can bitch about me using the word too and telling me my responsibility guess what sport you re wrong you are responsible for demonstrating why it belongs just vomiting a bunch of sources onto a page and claiming that demonstrate it doesn t cut it trying to mold a bunch of mentions into notability doesn t really fly either you ignored the suggestions i gave you and just went for the fight fine by me,-1 +get a life you stupid wikipedia nerd seriosly who deletes peoples stuff all day,-1 +ur such a fuck ing geek ass mofo ur mothers suck ing my cock right now fagetass,-1 +you stupid mother fuck ers dont you know this ip belongs to the great office depot this company has a policy that lets any customers surf the internet in their showrooms which i am doing right now in merritt island florida the office depot salesman is right here and laughing at your dumb asses,-1 +fuck you you cock biting jew licker steve,-1 +you are full of sh it what is blatent or nasty about autofellatio nothing it s a natural thing or at least as natural as taking it up the butt listen butt pirate if you have a problem with a perfectly natural activity maybe you should look into your own nasty and blatent habits like shit packing or perhaps rump riding maybe you prefer suck ing another person s man banana the bottom line is this buddy while what i did was definitely vandalism and hilariously funny it was neither blatent or nasty much like your own disgusting practices or personal hobbies it has a listing on wikipedia and wp not censored for minors thank you good night,-1 +spell behavior right you faggot i m his roommate it was a funny joke which he has put up for display previously see fd s vandalism and bert s vandalism in his page and even his own vandalism caught by others go suck on some english ballsack and tea and crumpets you faggot,-1 +i really don t give a fuck if you think i m personally attacking you or not and let me guess you re gonna tell the big bad wiki gods that i said a mean and naughty curse word to you it was one thing when you got upset that i as someone who grew up in the actual city of milwaukee wouldn t concede to your outsider suburban view of what was and wasn t milwaukee but now that you re stalking me on other parts of wiki it s gotten downright pathetic and for the record i m still not convinced that wlc is actually in milwaukee i just refuse to waste any more of my time on the issue but i do find it awfully telling that you made those edits regardling wlc with absolutely no proof and now you want to delete my work for not having any proof get a life you damn hypocrite,-1 +you re a prick,-1 +august utc suck on my hairy balls bitch nothing is as sweet as cursing off morons like yourself i would waste more wiki accounts just to curse your bitch ass fuck ing bitch thinks she punishes me by blocking fuck ing moron as if this is a fuck ing prison and you are the warden there i block you for hours that will teach you a lesson ahaha fuck er get a night life civility without character is a nicely dressed car without an engine you self righteous swine anyway all that just in case you were planning to unblock me adios bitch,-1 +salvio giuliano is a gigantic ass hole i will dig up your grandmother and shit on her dentures,-1 +you expect me to be civil when many people decide to be ignorant a nd trp decides to stalk me and troll is his ass block no,-1 +has pictoral brown eyes then is jealous she s not a brown eyed girl remember the good times ip hopping around chicago miss but remember that only naturally brown eyes are attractive brown eyes blue eyes are brown only when they re full of shit,-1 +ya goddamit idiot my ip changes when an admistor banned my original ip so dont block me u d ck,-1 +what is rong with you u pervert i ahte u just leave me alone and for ur info i am turning a in one week on oct so go away i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate you i hate yo,-1 +and i don t take non footnoted and bull shit entries serious either and i no longer take the world of wiki bs seriously either you are run by a bunch of year old kids with authority issues fuck off,-1 +am a big fuck ing retard,-1 +fuck ing gook go kill urself mother fuckerucker fuck a,-1 +nothing about illegals so bushie boy is the only one with problems this ass hole is sparkley clean fuck wikipedia,-1 +they are claiming that gorbachev apologized that accepted that soviet crackdown on barbaric baku was his the only and biggest mistake in his political life can you believe where are they taking this kind of information from i guess they put their fingers in their rectum and get some information from there my advice just ignore that idiot named grandmaster let him bull shit online if wikipedia allows that paranoic people are all over azeri claims will never erase witnesses memories we are still alive,-1 +i will cut off your penis and fry it,-1 +read what a piece of shit you are,-1 +im not sorry for what i did fuck jclemens,-1 +your a fuck ing bell end,-1 +hamburger radio is a fucing f ggot,-1 +i don t care what you say dick ace fuck you keep blocking me i ll keep coming back are so fuck ing bored that you have to sit around and fuck with me on the goddamn computer get a life ass hole,-1 +the dirtball what is your fuck i n g problem ass hole you are actually defending the dirtball well it is my humble opinion that you are in fact a true dirtball get a life you lousy piece of toilet trash,-1 +what the hell i just edited my entry you moron get your bot in order,-1 +well guess what you are all fuck ing diks hahahahahahaha hahahahahahahahahahahaahaha hahhahaaha sukers go fuck yourself and suk mah dik idiot s lol hahahaha hahahahahaha,-1 +ur page is mine bitch,-1 +this shit is fuck ing gay you need to get the right information dumb fuck s,-1 +im a fuck in ass hole n i like dick i,-1 +ur a butthole y u undo my edits dey wus kunstruktive u jst jealuz of myh wikkipeedya skils hoamie g,-1 +first of all i want to compliment jytdog beetlefart for bringing it this far actually for bringing anything at all or for bringing it this far back don t be a dick then there is,-1 +of wikipedia and its rules must be interpreted oppositely to declaration so far go fuck yourself,-1 +babu if u don t know then please keep aside deleting the pic s see w hate ver u are fuck u off i contribute and share pic s what is your problem,-1 +the hell with you all and your pogrom you try to mask as consensus everything was fine before you came in and ruined everything koavf and bilorv some consensus between two people fuck both,-1 +fuck head where is my ban,-1 +fuck you thue you brain dead fuck you can t block me thanks to proxy servers and anon browsing i can come to wiki zillion times so if scum like you think that you can block me then you are in for big surprise you faggot i am giving you last chance in civilized way to stop vandalizing kash jaffrey don t fuck with canadian content its to advance for your empty brain to concieve and lastly if you want to leave message then write don t use predefine one liners see ya ass hole joey,-1 +suck my hairy plums you faggot,-1 +fuck you shut the fuck up,-1 +i feel the page should not be deleted as you guys shouldn t have the fuck ing rights to delete my shit fuck off,-1 +fuck you bitch nigger slut ass fuck whore,-1 +we need to talk do you suck dick private bull shit i bet you could suck a golf ball through a garden hose seriously though we need to have a talk about your editing habits drop by my talk page talk,-1 +you are a faggot get a life and lick my ball sack,-1 +so when is coming going to warn you about your toxic attitude then raul tell me that tell me when someone s going to give you a block warning for the bull shit you ve pulled on wikipedia like getting into arguments with people and issuing blocks to them when you don t like hearing the truth,-1 +re fuck off you piece of shit do yourself a favor and kill yourself the world doesn t need anymore freaks,-1 +eat my shit i ll change what i want when i want oh administrator more like a geek that was bullied at school and now gets a thrill out of trying to control wikipedia pussy,-1 +metalcore is not a punk genre you fuck ing idiot it s a type of metal god just stay off this website if your going to spread your retard ness around here you dumb fuck,-1 +worst season ever anyone who likes seasons and onward have obviously not seen any of the old episodes from and therefore is a total dick ag i can never tell you how much i hate the new spongebob nick had stopped caring about good animation and started caring only about the cash the second they started this show the old ones are great while the new ones i d give an f plus million minuses i d be so damn shocked if anybody even likes these new episodes because anyone who does is downright retard ed it s like all nick s staff wants to do now is win themselves a bunch of hot girls when the stooges at nick began this show it was nothing but great humor for years now spongebob s crew had lost any sight of what good quality is all about the writing is totally fuck ed up i mean seriously for here or to go who the fuck ing hell would watch an episode about taking orders at a fast food restaurant deciding whether or not to eat it at the restauraunt or home i know there are now just copying off ideas of old episodes ex petsitter pat patrick says the bath is gonna come to gary that s exactly what spongebob said to gary in gary takes a bath but that version is way better than this new junk that anybody likes is mentally challenged and obviously hasn t watched the first three seasons even true spongebob fans should only like season because no episodes past that were even remotely decent and i know for a fact it will never be as good as it used to be i m certain that is true anybody who likes anything of the post movie era is just either brain dead or childish stephen hillenburg really knew quality but now we just have a bunch of screwed up polesmokers who only want the money and nothing else they re just like fuck ing mr krabs clones paul tibbit must be drunk or something and tom kenny must have swallowed a slide whistle because now spongebob is absolutely nothing except for utter garbage that is all but intolerable like i said i cannot believe there are people that actually like these new episodes everybody that likes seasons smoke too much crack anybody who s into the new spongebob doesn t know shit about quality if it hit him square in the ballsack all i can say is i am so relieved this show is ending in only more years of this trash that i will have to sit through if they make a spongebob channel they should only do reruns of the first three seasons because absolutely nothing afterwards was good so there goes years of my life i know i will never get back i am not going to wait too much longer for them to cancel this unfunny garbage because it needs to happen soon who the hell is editing this article i m pretty sure someone is abusing this article but it doesn t matter because it suck ed before it preceding unsigned comment added by,-1 +good luck wikipedia suck s oh look at all your awards i m certain they make you feel good inside persistant i see i feed off this shit man what no fancy pre written messages about how i m breaking all these useless rules on a useless editor s page on a useless encyclopedia,-1 +yes for someone who is uninvolved it really makes logical sense that you should have a say in blocking me w hate ver mate this site has gone to shit anyway so many power trippers over compensating for their own mediocrity in real life turning into admin keyboard warriors fuck wikipedia i m outta here permanently this is a free encyclopaedia with a nazi regime and bias towards the admins always being right as they suck each other off on their imaginary pedestal of greatness,-1 +fuck you you nixonian twit,-1 +dolescum your such a stupid mother fuck er who gives a fuck what you go to say and you can have them close my account to i don t care i ll make another one stupid little punk ass virgin bitch you make me fuck ing mad you just mad couse you can t and never will get no fuck ing pussy,-1 +errata to beeblebrox book on appropriate language hi i have not received any errata corrige about my handbook for appropriate language in communication with and from beeblebrox but does your shedding light on some mild language by a fellow administrator mean we should no longer consider fuck off you petty fascist idiot standard bebblebrox interaction i think it s useful for the stewards to know next time your account is locked,-1 +hey you whyd you undo my edit and how the fuck is it unconstructive u oughta try coming down here and see how constructive my edit was u need glasses mister and if u already wear them then get a fuck ing new pair cos boy ur sure gonna need them when u come down here pal if u reckon my edit was unconstructive,-1 +be a toilet so everyone can piss her off hey thats a pun so luna wil be pissed on haha and crapped on and luna needs a spanking yea fo sho haha luna gets bare ass spanking haha luna is that lil preppy shit ased bitch fuck her im gonna take off ur bra luna now so haha,-1 +you are a stupid cunt bitch,-1 +there was nothing but good intent you placing a warning is fuck a best,-1 +don t worry i saw him on the telly years ago saying that he was going to kill all the moslims his admission of guilt is already in the public domain he is a piece of filth that belongs in a deep pit in hell,-1 +yo as hole im gonna kill you and steal ur huge monitor,-1 +you fuck ing piece of shit i m going to hunt you down and murder you violently you disgusting paki twat,-1 +ass hole im still editing,-1 +thanks for reverting a good change on the zola jesus page i know nikki i dated her and we lived in the same town she was born nikki rose hummel not this other bull shit she made up and you guys support fuck you for your revert,-1 +you just revert my and a lot of peoples work to improve wiki so you re a mother fuck er how dare you block an user or users just because he or she reverted your destructive activite shame on you shit face anna frodesiak,-1 +goddamit man listen to me for once just please read this with an open mind don t try to refute me or nitpick about things i have said i have provided ample proof that my posting was relevant you struck out out of of the websites i provided even if you strike out the repeat which i just noticed i have provided sources of proof which is enough to publish an article in a fuck ing newspaper i said before the post had been there for a long time before it was deleted and that one of the three editors you cited was on bot trial please excuse my assault on you and that other guy i was mad that my relatively inane post would be assaulted so quickly again i believe your hastiness to inform me of the wikipedia rules amounts to an ego trip but honestly if you think i am being an ass hole about it please stop taking it so personally you called me childish twice after i used it once you regarded my previous explanation of my actions as childish which i do not feel it was w hate ver the fuck an edit war is is irrelevant as i told you my actions after the post were out of frustration i wish to contribute wholeheartedly to the wikipedia community i would not take time to write this bull shit otherwise i have explained myself to you and i would appreciate it if you quit acting this way despite your impression that i a stranger on the internet think you have a pathetic life i can assure you this is untrue good god pages you re wikipedia itself i want to edit this page to include the previous information which i have posted why is your deletion of my post not vandalism if we re on the same level i would like to repost the information with my proof if you don t mind thanks yournumbertwofan,-1 +any retard understands the concept of recoil i only need to cite information that is likely to be disputed i don t need to cite each and every fuck ing word and no matter how much you re protesting you ve nit picked everything i ve done on glock since you got your panties in an uproar over something not sure what your problem is with me but it s really fuck ing stupid,-1 +go fuck your de ad mum and lick her corpse you dirty little w hore get a life you pathetic excuse of a human being,-1 +love to suck fat black cock i,-1 +well your well your stupidiness will be the case go ahead go on i live all the way in moscow and you live all the way in singapore come on fool catch me if you can suck hahahahahahahaha,-1 +as you continue to be a complete arsehole i will keep callin you a queerhole fuck in qwernol and as far as im concerned you can just go and fuck yourself fuck in editor and fuck you again for sayin that im not actin in a civilised way you fuck head go fuck yourself and have a civilised conversation wif ya mother you year old virgin who still lives at home wif ya mother,-1 +trans lation you are an impotent fuck er,-1 +fuck all u weak ass nigger z,-1 +hey riana does it suck to know that even strangers think you are a dried up old shrew,-1 +wow funny how i can harass other users by calling them cock suck s on my own talk page the concept of wikipedia is moronic the general public is stupid and should not be given complete unfettered access to change globally accessible content dumb fuck s i m sure it completely gets your little shriveled rocks off to fling your term vandalism around like it is worth anything how about you sit on my huge cock you egotistical power hungry nerd shit eating faggot s d,-1 +decline nigger s jew s bad news also my cock is hard so it s time for rape lol,-1 +your a fag fuck you nigger,-1 +block me im using proxy servers cunt,-1 +your second image is bull shit too looks like ordinary muddy water mixed with blood my ass,-1 +don t fuck ing care if jew bo wales personally bans me he s dead meat,-1 +are you kidding me what does this guy have to do to have somebody shoot across his bow once murder somebody gabemc is out of control this editor has insulted many editors repeatedly he mispells user names repeatedly to intimidate accuses all opposers of his idea as socks calls them trolls charges them with harrassment and is generally abusive he incites other users to drum up charges against his enemies of this issue he has been warned before for changing the to the in musical articles while his own launched medcom mediation is in progress ebfore and yet when his misbehaviour is pointed out in ani he creates such a ruckess with sidetrack issues he gets away with more disruption and a blessing he has had editors topic banned adminstrators banned for a six month period and investigations into every editor that has ever disagreed with on this topic he has disrupted many beatles talk pages with his straw polls simultaneously for the same the the issue when he doesn t get the right support he is currently edit warring with the exact same edit as well as a few others in the pink floyd article after you appear to have gave him a bigger feather in his cap for exhibiting wp battleground behaviour for my complaint of wp rr wtf has we developed a prima donna that is untouchable no matter what behaviour he demonstrates a further opposing editor of his just committed wp suicide with an indef block that he requested due to the same wp admin garbage processes in short your prima donna editor you can edit wikpedia but only if you can suck good cock now make this disappear again to hide your embarrasment i would be ashamed of it if i were you now shut your piehole sockpuppet oh reindeer here comes the talk page abuse charge omg we re all gonna die i m melting i m melting,-1 +calling anything i have done as anti semetic is libel and offensive and a personal attack against me how can you pull such bull shit out of your arse,-1 +fuck you ass hole allahu akbar,-1 +that s laughable i tried editing and i was completely civil at the time i was incorrectly accused of being a sockpuppet and banned without any evidence being presented in fact when i tried to appeal it the admins mocked my appeals and didn t address my arguments so when i m told i need to play nice and wikipedia wants new editors i know it is completely bull shit if wikipedia really wanted new editors they wouldn t falsely accuse and ban people for shit they aren t guilty of we all know the truth you will get banned for wrongthink nothing on wikipedia really has to do with policy hell i ll even show you my account if you want why would i bother making another one when it would just get banned without justification,-1 +hey this guy is awesome i couldnt care less about this stupid war but you let him get away with saying nigger thats funny as hell,-1 +the ridiculous vandalism on this page people like that mark cock wont stop vandalising just lock the damn talk page for more veteranary members so vandalisers like mark will conclude vandalising the page thus making me happy,-1 +google name origin goo ogle stare at the unusable pile of shit that s what global information is without searching tool it s a word play on number googol and ogle the goo see through the humungous amounts of data that s what i think it is i am quite surprised that the wikipedia article is not including this hypothesis when founders are silent about it note ianmcm and bongwarrior read this dopehead druguser s profile are censoring this discussion i will have them evicted from wikipedia community please everybody go after them,-1 +faggot cock suck take your biased ass elsewhere as we have no need for you here,-1 +no he did not he got fired because he suck ed,-1 +don t threaten me you are in violation of several wikipedia rules you little bitch,-1 +you are such an idiot if it had not been for fuck s like you i would still be contributing positively so sure look at the minor little thing but overlook the few few thousand odd word pages i have created fuck ing pin if only we met your nose would become flush with your face and you are also idiot ic to see that although the publishing firm doesn t exist so to speak doesn t mean that the books don t for instance wikipedia now has an article on admiralty house that is completely composed by me based on publications by me,-1 +what a load of utter dross another jobsworth with nothing better to do forza luton,-1 +gregalton douchemaster supreme i m not an editor so i really don t have a problem calling you a douchebag the fact that the article considers anyone who criticizes the practice of frb as non mainstream raised the flag in my mind that is made me check the discussion page you ve done more to bias the article than these supposed conspiracy people probably did at any rate fuck wikipedia and fuck gregalton i wait for the day when knol google s wikipedia written by experts reality not wikiality has a good article under the same title and it s written by one of these non mainstream economists the article talks about you re a douchebag gregalton a big fat fractional reserve banking loving douchebag,-1 +hello removing comments on ur user page is illegal on wikipedia dont do it again or u will be block bitch,-1 +why don t you fuck off get some jobe to do idiot may,-1 +jerk ass why did you delete my helpful information,-1 +i will fuck ing cut your heart out i will set you on fire mother fuck er,-1 +adam again no drmias i m not dumb i m just not a pussy and i won t be bullied by anyone cheers for the spelling tips i ll keep those in mind for next time i m updating my facebook page and i will stay away from your page after this i wouldn t want to embarass you in front of all your pals now would i,-1 +re nair sorry karl i wasn t able to see your mason article in time cuz they deleted it already b i got home from school today oh well and yes you are absolutely right we won t ever stop making fun of her in fact if anyone in our group of peeps refuses to make fun of her i shall kill them higgins no more wh r who wont shut up about her taxes about which no one cares no more nair chinned old hag no more hunchback bailey obsessed geezer who says if ya want to and finally no more pot smoking sexist bitch hippie with all her fuck ng aw s and so true s who if i ever see her this summer im gonna give her a taste of her own medicine and roll her up in piece of paper and light er up and smoke up the wazoo hippie,-1 +ok fat ass cunt face,-1 +go fuck your self wikiadmins,-1 +says he ll remove me pointing out his bizarre o behaviour from his talk page we could mobile up and pin him with rr clause so future people realise he lurks peoples talk pages and behaves very very strangely if he keeps it up please keep an eye out for any further defacement if you see it click on view history and note the name of the person doing it when i get back to my desk top i ll message an admin and see what we can have done about it this is absolute bull shit it s a fuck ing talk page xaidenx,-1 +in case you forgotten i was already block pernamently dumb ass,-1 +fy why you removed my blogger from the video game article you son of a bitch i demand you to put it back there right now you are a bum to patrol wikipedia for free while the creator jim whales makes milions a year from the free work of losers like you how can a person be so retard ed i don t know put my blog back or i m gonna hack yur pc don t forget to use the h tag to make it bigger mugen infantry net,-1 +wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock wikipedia loves cock,-1 +fuck fuck you bitch screw you harry potter ass hole licking,-1 +yeah for your information i happen to be a human being not an ip number yeah so any attempt to salavage this conversation has been ended by your comment fuck off kay,-1 +go suck a dick blngyen,-1 +only if you reported me then you can kiss my ass you fuck en bitch,-1 +because some dick insists that ned holness doesn t have german blood,-1 +fuck u little bitch im the porn king,-1 +suck my vagina wikipedia,-1 +you can take your sandbox and shove it up your ass you may also wish to visit hell thank you,-1 +sup you crackheads just kidding this is my user page here i say fart fuck shit damn ass nigger jew spick and kyke a lot go fuck yourself if you don t like it,-1 +why are you being such a jerk,-1 +what the fuck who deleted the spider loc and hot rod sections fuck ing wikipedia stupid ass ignorant people can we get it back,-1 +disregard that i suck cock s,-1 +fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia fuck you ashol long live malusia,-1 +sleaze boy you disgust me you are pathetic coward seeking to smear good people while hiding behind your anonymity you repulsive little worm i am not part of a gang i am an individual human being you re attempted smear tactic against me is hardly surprising from what i ve seen around here but once again the actions of pathetic anonymous worm you accomplish nothing but spread dishonor over your pseudonym no adult takes you seriously you are welcome to the last word,-1 +it s not a fuck king joke you motherfu king idiot and worthless stupid cunt go die in hell for being such a bastard it s true go to st peters recplex yourself you bossy year old i hate stupid retard s,-1 +hey fuck you faggot the departed is better than all those shit movies go suck a cock you fuck in nerd,-1 +fuck off and leave my acount alone irritating child,-1 +bigger bang tour memorable moments why did you remove the memorable moments from the bigger bang tour page you wanker thats vandalism fuck off and die fuck wit,-1 +fuck off and mind your own business homo,-1 +your stupid greeting screw that stupid greeting from you and get lost you nigger,-1 +hahaha fuck you fuck you fuck you wikipedia i will nevar stop i will nevar forget i can get a new ip in seconds faggot s,-1 +fuck you you are an ass hole for terminating my youtube account i ll never forgive you queenzeppelin,-1 +listen piece of bastard if yo have a chance to read this read carefully you dare spoil my userpage and you will die for that i already tracked you and i know who you are before killing you i will rape and kill the bitch of ayour mother and than torture the whole of your family what a pity you don t have a small daughter in order to rape torture to death and burn her alive you are a dead man there is no place to hide in teh world for you,-1 +that s stryker stuff pretty fuck ing crazy huh,-1 +he can go fuck himself sideways with a spiky spoon,-1 +me house of scandal tries not give a rat s ass and makes an effort not to be a dick this is a quote from your page well u should take ur own advice why am i a cretin ur just a fuck in scumbag who likes annoying people get a life,-1 +go fuck yourself you lifeless pedant,-1 +t never said i did you ugly bastard get of my case you bitch whore piece of shit i said i have the right to post the no israel and christian fiction userboxes not the personal info you bitch fuck you fuck in fuck face this is why i hate the wikipedia system it makes it difficult for people to function you stupid shit face,-1 +jack and jill come on delanoy where s your sense of humour hat jack n jill is some funny shit,-1 +fag you are a fuck ing cock suck ing doosh bag,-1 +you are being an anonymous cunt please either be a cunt with a name and a face by registering or at least participating in discussions on the talk page or a regular cunt free anonymous contributor by not being a cunt thank you for your cooperation,-1 +suck a dick pussy hoe ass ya ll lame anyways and how you know what somebody doing get yo fake ass outta here bitch,-1 +fag you fuck ing suck people need to know the true meaning of thumbing,-1 +yanksox is a fuck er,-1 +the whole santana lopes leadership was made difficult by paragraph is a mess it s a clear apologetic approach of mr santana s performance as pm non encyclopaedic and frankly it seems like the result of whiny supporters comming for the rescue of their beloved leader s page what the hell are these non encyclopaedic considerations about mr santana s politics and cunjuncture doing about in this page sure enough they may be debatably true but there s a lot more to the portuguese economic situation than just the apologetic the previous government had left the country s economy in a poor state wtf is that consider deleting the whole thing i really don t think it s salvageable,-1 +your full of shit what is the big bad zion conspiracy after you for your truth spewing what a harpy,-1 +a kitten for you go fuck yourself again,-1 +may god spare your soul you are going to hell you worthless piece of shit maybe you will have fun when satan is ass fuck ing u instead of your queer little buddies fuck off and btw kick me off wikipedia you queer ass bitch fuck off and burn in hell bitch,-1 +elinord kp botany and teadrinker are fuck en piece of shit s fuck off your ass,-1 +you are fuck ing prom cous banner i am fuck ed your daddy fuck ing wre now your will not go away fuck ing as le fuck ing coward you are coward fuck ing cowardly promi us mother fuck er,-1 +i prefer to be called it you gender specific sexist whore,-1 +yes don t want fuck ing i p editors messing it up,-1 +that s nice go fuck yourselves idiot s the fact that you can t absorb reality is no sweat off my back you lose i still win good luck with your wikipedia fuck fest hahaha,-1 +whole nickers comment you deserved it for being so stupid,-1 +banned stupid vandalizing moron leave the editing to people who have a clue about boxing you fuck ing spastic,-1 +stop editing my userpage you complete idiot ic no good piece of shit you edited my userpage that is my page and i can say what i want on it now change it back this instant before i come to your page and do some serious editing you said it was inapropriote like a baby would but it was okay it s not like i was posting porn or something so put it back now before your userpage and it s history become part of the ground like you will soon be,-1 +i think you should unblock me because i was only pointing out that the pashtun people were a bunch of aidz infected nigger s why do you have them as a featured article fuck ing monkeys,-1 +talk i who am coming in from the wild i who happen to be reform and think this sanhedrin is pardon my french bull shit shall be the third as i believe that honorable editing is a wikimitzvah,-1 +nazi you can delete my talk page but i do it to you and im banned fuck ing fascist,-1 +viral is a faggot mother fuck er in the shit of the crap stritting,-1 +you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck you fat fuck,-1 +cooperate scumbag keep editing you bought ass hole,-1 +i fuck ing hate you ecto,-1 +what the fuck did i do i have only edited my page well,-1 +let s get to fuck in big daddy man i love stickin shit in my ass hole why don t you get on over here and show me some sugar ass fuck yeah baby smother it on me like hot sauce and then bang me baby bang me,-1 +am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchairi am going to rape you in the ass you fat bitch in a wheelchair,-1 +what are you talking about i am sheuli bose sheulibose yahoo com and what the bloody fuck ing hell are you yapping about come out i shall give you a tight slap you bloody fuck er i will kill you,-1 +this is bull this is y k all over again this is all just to make little kids scared if i ever meet the guy who brought this whole topic to the world i ll kick his teath in and shove his n fact up his so he should shut the up and get his fact straight before scaring kids off and you,-1 +you know what suck my mother fuck in balls bitch i don t giva shit this fuck in fake as pussy encyclopedia this damn site can t even be used as a reliable source bitch so fuck all ya ll mother fuckerucker fuck in think you know it all bitch asses fuck you,-1 +fuck you honkey why you hatin on blacks you fuck ing pussy geek nazi i ll come to your house and rape your mom because i ve got a big black dick in her tight white ass honkey,-1 +right on man i appreciate it i don t really care if i am block i got neighbors with wifi that guy is really being a dick though humility man that s whats important i ll see you around cheers,-1 +all three of you are irredeemable ass hole s and lying pricks,-1 +who the fuck are you stay the fuck away from me,-1 +fuck you buddy go suck a cock,-1 +you cant block me you fuck ing retard brb nigger,-1 +warning user is a flaming faggot,-1 +douche fuck you i can t edit why did you bann me,-1 +go f yourself m fuck er you are a modi ass fuck er homo,-1 +buck winston fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me mother fuck er ugh,-1 +go fuck yourself since i already been accused for personal attacks but no one could point out where and when this isnt more then right go fuck yourself your pathetic dick ead admin,-1 +ha fagget go fuck yourself homo,-1 +hi hi you are gay sad fuck ing old nerd that should get a life and do stuff like gardening and i m guessing you still live at home with your mom,-1 +the juggernaut bitch i think the line about the juggernaut bitch skit is misplaced or the heading is incorrect for the section it s contained in it has nothing to do with the comics i agree that it is notable however,-1 +fuck you you can block me all you went im leaving this site anyways plus you have no life bitch sitting on the computer at am watching what people do your lame,-1 +i still dont know what the hell i did ass hole s,-1 +i bet you lick a lot of cock have you ever seen a real vagina probably not but equally likely you don t want to plus you like to work for free chump you should probably just go ahead and kill yourself,-1 +fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass fuck off you ass,-1 +i will be in contact with irs and fuck wiki over fuck you,-1 +ps almost forgot paine don t reply back to this shit i don t want to see care what you have to say do your bitch ing out of my sight plskthxbai,-1 +hey fred you fuck ing suck ass u bitch ass mother fuck er u fuck in delete everything you ho u can take wikipedia and shove it up you ass dumb ass bitch go to hell bastard hope fall in a ditch ass hole and you can suck my dick unsigned comment was added by talk contribs,-1 +everybody lock ur dick cuz theyre gay,-1 +phelps phelps is a fuck ing bitch ass cock suck ing homophobic victim of rape old man and if only someone would kill that bitter fuck ing old man,-1 +stop reverting my edit your so fuck en gay get a fuck en life your faggot or go get laid or something,-1 +you re fuck ing nothing you little piece of shit faggot fuck ing nothing cum drinking piece of shit,-1 +fired ur fired fuck wit,-1 +and won t be back like that gay fuck ing bastard cunt,-1 +attn imroy if i want your stinky opinion i would have flushed three times pal,-1 +i got the shit idea from clau dia and again blocking threats and obscession with carly,-1 +hey man imma vandal too and my ass got reported on the same page too alot of gay s on wiki eh man,-1 +revert again or fail to answer this relevant question and i ll file a formal harassment complaint with the wmf you re a fuck ing employee of the foundation how could you really type that in a public irc channel,-1 +correction notice it is playing stupid not playing dumb i was just playfully trying to fit in and be like everyone else there at wiki so much for that trick i don t expect you to know the difference or understand you do really act like a shiithead sometimes what you say at the top of this page is obvious bulshiit also i m not attacking the editors here just giving feedback of how they present themselves when they tried fuck ing with my contributions the movie opens on friday th don t miss it omnipresence,-1 +and are two homo sex s who worship the penis of jesus and believe that he was the greatest bastard in the world,-1 +why don t you go f yourself deliting nigger fuck you and your lies,-1 +in response fuck you,-1 +can i eye fuck you you negro see grow mar utc,-1 +go suck a cock bitch es fuck wikipedia my ip changes in like a couple of hours anyway fuck you go you cock er cock suer mohter fuck unlce suck efing you go fuck your mom you dirty little ass fuck bitch i will kill you i konw where you live i will rape you yoru fuck ing ass,-1 +grandma terri should burn alive and be shot get shot ass hole g mau fuck grandma terri in her old ass grandma terri i hope you die soon fuck you in the eye i hate you i want to shoot your ass grandma terri grandma terri you are shit grandma terri i wish you die die and go to hell grandma terri,-1 +fuck you your a fag,-1 +put a cock in it you sound like a bitch on heat screaming for attention,-1 +christmas is where family s come together to celebrate jesus s birthday y is called christmas i have no idea but if you ask what i have to say about it is fuck him there s also jew s we need holidays to wear everyone can celebrate them together if you wanna celebrate jesus then go to fuck in church this is how i fell donate you re feelings to w donate feelings com,-1 +complete bull shit your past is catching up with you kurt after you had defamed as many users as possible and spammed out the usenet groups it appears you moved over to wikipedia where hitherto you have remained unchallenged that is up until now,-1 +joppa please don t block me from editing please trust me my life doesn t revolve around editing pages in wikipedia like yours i couldn t give a flying shit on sunday hope deleting people s articles makes you feel better inside just because you have yet to produce a quality page on this site doesn t mean you should be jealous of others and use that as the only reason for getting rid of them do something with yourself for god s sake can you honestly look at your life right now and say i ve made a difference if not then leave the rest of us alone that s my advice to you don t be a fuck ing cynic you end up very lonely that way maybe you should watch my show sometime to see what it s like trying to be creative the address is whatisjoppa com,-1 +damn ur an ugly fuck ka,-1 +hes a black pieceof shit,-1 +wow i just your pic wtf plastic surgery isn t that expensive bitch,-1 +sl i m ready for an argument right fuck ing now i m sick and fuck ing tired of your goofball power play get a fuck ing life you re a joke a clown and no one will ever take your sorry ass seriously get fuck ed and leave me the fuck alone i didn t start shit with you so i don t get what your problem is twat,-1 +oi dick ead get the fuck off my talk page or else i m gonna come down and fuck u so hard that you ll never come on my talk page again ok go fuck off you dick sagging wanking rapist,-1 +fuck you bitch i will go to your house and kill you with my gun,-1 +snotty year olds projecting their daddy and mammy issues on the world oh the joy of wiki and cyberspace hey kid guess what you banned me ass hole now go back to your pathetic little life and wank another for shakira that s what you do best isn t it wanker,-1 +fuck off go and buy some andrex and wipe your rats ass face delete as appropriate fuck you,-1 +about you you know you should just come out and say it you hate poles and thought that hitler had the right idea now go cry in the corner masturbating to german porn while telling yourself that you are the master race because if you honestly think that the invasion of poland was anything but german aggression masturbating is all you have left going for you in life,-1 +stupid prostitutes thank you,-1 +because this guy has no life and likes to fuck around with people s hard work just retaliate against him so he stops messing up people s legitimate pages,-1 +stop fuck ing men up the ass james stop doing it in public it s creeping me out thankyou ass hole,-1 +jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck you faggot gay ass chink nigger cock suck ing piece of shit jforget fuck,-1 +shut up ass hole shut up you ass hole i fuck ing hate you kids cbc is stupid so why keep reverting my edits,-1 +oh wait you re an american ass hole let me explain how the law here work if telenet uncovers who i am they are violating several laws i have free speech here,-1 +my personal opinion is that you re a fuck ing wanker and i hope you die a painful death,-1 +no it s not just you just more evidence that the current model for wikipedia i e let any fuck ing idiot in to do anything they please then wait for someone to clean up after won t last much longer,-1 +ass hole congratualtions on being such a huge fuck ing ass hole bongwarrior,-1 +get a clue son your parents should be restricting your internet usage friggin kids brian,-1 +trouted you have been trouted for fuck you mother fuck ing son of a bitch,-1 +careless lazy and stupid are such bad combinations in a would be lawyer wtf does likely mean maybe in russia that s proof but not in america fuck wad,-1 +unblock impudent feckless dick how dare you treat me thus,-1 +revert pf jack thompson attorney why that guy suck s ass dude and a gamer like yourslef must know that lol if i wernt an ip id revert it lol im not actully a bad person on wikis im an admin on sevral wikis on wikia most notably wookieepedia and the wow wiki i just do this shit for fun try it sometime lol,-1 +hi fuck you trophy you happen to suck,-1 +yeah so fuck you there is a kid named wesley gibson in st james and there are also two students known as goku and neo thanks,-1 +why haven t you yet i don t give a fuck fuck you and all your wiki shit stars you fuck head,-1 +they are called syed you dirty chump muhajirs are the worst race on planet if the world peace will be achieved if muhajirs and jew s leave this planet muhajirs should be hunted down like animals they should die die muhajirs die muhajirs,-1 +look here your a fuck in cunt you czeckoslovacian ass clown,-1 +w hate ver get a fuck ing life you sad fool you just sit here and edit wikipedia every hour do you even eat get some fresh air instead your ass is glued to the screen have a good day sir,-1 +please please killyourself you whiney little jew ish faggot,-1 +dumb ass nigger no one cares when your birthday is jag quimby sounds gay as shit your name sounds like you re the son of that mayor from the simpsons jaq quimby nigger you need to change your name to jaq off,-1 +piss off you slant eyed gook,-1 +opps i accidently edited your page faggot drop dead,-1 +fuck you london you piece of shit,-1 +my asscrack and i liked it a lot too use,-1 +ima rude son of a bitch too because i have a period remember im gay,-1 +fuck you fuck you keep blocking me i ll keep coming back are so fuck ing bored that you have to sit around and fuck with me on the goddamn computer get a life ass hole,-1 +scucci the ginnie thats fuck ing who he runs wikipedia u betta let him back on or hes gunna take a louieville to ya skull big giambi bat with him and his boys patrisio and frankie,-1 +hey stay the fuck out of my buisness you jew ish redneck mexican fuck er i kill you fuck er stay the fuck out of my buisness,-1 +editing wikipedia fuck you you ass rapist,-1 +then get rid of the stupid fuck ing brick count who the fuck cares how many goddamn bricks your fuck ing hs has jesus h christ this is the stupidest fuck ing write up i ve ever seen for a hs,-1 +haha go ahead stupid american,-1 +stop editing this you dumb ass why do you have to be such a bitch the ghosts of bill maas past will haunt you forever mwahahhahaa,-1 +warnings this is your last warning if you continue to make personal attacks you will be block for disruption ed edgar last warning try only warning fool and if you jerk s were nt so snobbish and lazy this crap wouldn t be happening now would it,-1 +it s dance pop it should be done it s not rock at all so fuck that stupid article why are we basing wiki pages around biased sources who cares if it s sourced it doesn t mean it s true the sky isn t pink just because a reliable source says it is,-1 +ban my fat ass bitch i need an internet break need to clean my room and lose weight please ban me for months or pounds or more thanks if you re hesitant conside me to have posted tubgirl on your talk page as the guy in flight of the intruder said i d do it for you sandy when requesting to be killed,-1 +up yours mother fuck er,-1 +i can t clean your shit,-1 +tomica i say fuck ing bring it on you ve over stepped the rr which you was recently block from so if i get block i sure as hell will take yo ass down as well,-1 +heres ya stupid signature as well you faggot s,-1 +stupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centraliststupid spanish centralist,-1 +why is the main picture of his ass you fuck ing cock loving geeky homo sex s,-1 +j delanoy you are a fuck ing moronic ass hole come pwn my sockfarm if you are able to i ve saved up a few socks and vandalised some obscure pages fuck y o u,-1 +wp notcensored another abusive administrator thanks for that fuck you too wolfkeeper talk,-1 +stop your bull shit you don t have the ps nor mgs nor nor killzone a full hd p i have both you don t i don t have to waste my time with xbox fankids like you,-1 +please stop being better than my bloody ass february sts unban now unban me now,-1 +i will fuck the whole wikipedia,-1 +fuck you whiny sissy coward hacker trolls and freaks you are all fat pasty pale couch toads who never get laid and whack off online go fuck yourselves,-1 +so wut u got asaulted boo hoo u probly luved gettin fuck ed in the ass by hott gay s,-1 +how dare you abuse autograph s page you faggot die yo gangsta rap s got nothing on rock fail,-1 +me again having fun suck it this not commercial purposes i m not making any money this is bull shit i love dfw s work he s brillant why all this,-1 +you re a little queer jew bag,-1 +please no profanity when u talk to me i am a very religious person by the way my friend said fuck you,-1 +eat shit nigger i have infinite ips i cant be block,-1 +minority breeder breeder is a significant person and you went and deleted the page started for him nice job dip shit,-1 +amblin fuck ing well produced the twilight zone as well as the indiana jones films the first two terminator movies and possibly the others that came after splash poltergeist and forrest gump as they were all fuck ing well mentioned on the documentary from star wars to star wars the story of industrial light magic as amblin productions not films that ilm had made special effects for but amblin productions now the sockpuppet of gabrielkat says amblin didn t produce the films but then again the sockpuppet did claim imagine entertainment made movies that aren t even listed on the fuck ing website,-1 +you bitch why didn t you block kew gardens he also went past the revert fuck ing rule god man,-1 +hey you deleted the pics i put up for the malibu page f you i freakin live in malibu and have alot more money than u do you know it took me a long time to put those pics up and u deleted them your lucky your not in malibu or in the la area because i would take u out back and kick your ass,-1 +some jackass vandalized the article again can someone fix it,-1 +calling a dick ead a dick ead is not a personal attack sorry but if he fuck s with my edits again i will call him a dick ead again,-1 +fuck you are an ass hole why be such a prick an stuff the wrong date in there just to piss me off,-1 +fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of sh,-1 +i m wondering whether to add the fact to the article that she recently received a bukkake from five black dudes and the video was uploaded to slutload com she was first face fuck ed i m not sure if it s notable enough to include but it was recent rather surprising news and her husband is filing for a divorce after she refused to swallow his sperm i don t have a definite source for this unfortunately if i did i would add it to the article anyone have any references btw i know it sounds preposterous and i m surprised too but i ve read this in a very reliable source put in nicer terms like she engaged in sex acts with african americans thanks guys,-1 +truth is not always polite malleus does act like a dick and i m not going to mince words nor am i going to pretend it s okay to sit idly by when i m being attacked out of nowhere christ what the hell is wrong with you people perfectly okay for malleus to randomly show up and start attacking me not okay for me to be pissed off about it gah,-1 +gorlitz stop screwing with me on the amy g you frigging nazi or i ll report you to the wiki board goto hell you hypocrital pos,-1 +hahahahahahahaha you can t stop me fuck ing homo when my ban expires tommorrow im coming after your gay ass account,-1 +once again jd uk is a fuck ing faggot fuck er who deserves to be beaten wit da ugly stick,-1 +you stupid ass fuck er retard ed whore incompetent loser i m un block miss ciara june,-1 +mr viligante dear mr ioeth w hate verthe fuck you being a vigiliante and blocking me doesnt impress me fuck you you think your important for blocking people on wikipedia you don t impress me i think you re a douchette vaffanculo tu fai schifo sempre italian if you were curious a blockee,-1 +listen you officious ass hole one of the worst thing about wikipedia is the busybodies who needlessly waste everyone s time by reverting obviously true info with the dumb ass comment oh that s not sourced of wikipedia is not sourced nothing else in that article is sourced yet you take time to delete my addition and send me a message you fuck ing no life wanker i ll just revert it time and time again and you can suck my fuck ing cock if you don t like it ass hole get a life seriously maybe you have zero control in your life and this gives you the illusion you are not a total loser and powerless wimp well you re deluded fuck you eternally plus i m going to deface your bio repeatedly because you suck at life,-1 +fuck ing krauts learn to speak english you fuck ing dirty kraut,-1 +this is the worstest song ever made in the history of history of history my ears were falling out there sokits wil i wuz listenong to this stupid awful trash disguised at halloween as music is awful i hate katy perry y and her songs are a prime cause of deafness and oo opo,-1 +i am going to pull your pants down and insert a large phallus into your bunghole i bet it s going to be the only action you got in years you fat tranny,-1 +eat horse shit you are a fat nerd and you smell like cat pee go to hell,-1 +lion king is the best frozen suck s lion king is so much better than this fuck ing shit e,-1 +i don t care and i will ignore this warning fuck ing bitch,-1 +i don t and don t accuse me and if you don t have time so why you re making that to preity leave her son of bitch i am not the one whom you have block and if it had been me you couldn t have done nothing in any case stupid ass hole,-1 +i love suck ing cock give me cum or give me death,-1 +please stop wasting everybody s time and visit this page toilet paper you can see for yourself if the edit was constructive or original or destructive or w hate ver i do not have the time to waste on human faeces like you seem to so i guess i will stay out of this shit and let you do the good work,-1 +flewis stop sprouting nonsense u freaking bastard,-1 +you better fuck off ruddy shit fuck,-1 +jews and iasi during the iasi history many things happened it was burned several times by turks russian but says nothing about that iasi is not a jew ish city so take your jew ish shit and place it in palestina we made a country for jew s so do not bother us jew s are aggressive people and very dangerous you should write about the holocaust of jew s against palestinians i am sure that in future there will be museums of holocaust made by jew s against palestinians,-1 +you fuck ing little retard,-1 +wikipedia editors are fuck in cunt rags that should shut the fuck up cause they are nothing but mindless drones fuck you and ur internet thug you fuck in homo thugs,-1 +what a complete fuck ing blowhard he is,-1 +eater gothamist and gawker are the lowest tmz scandal gossip rags not reputable sources these articles are written by famewhore troll douches,-1 +fags fags fcockc dick,-1 +a blast from the past i was interested to read in your hidden dxraw talk page that not long before you changed your name the following message was posted why did you remove my edit you cancer ridden cunt it was correct but you are a fuck ing idiot who changes anything you don t like on reading the details of the nicholas saunders professor deletion debate i see that you haven t changed one little bit how does it feel to be the mosted despised editor on wikipedia you can change your name as often as you like but nothing will help your social skills,-1 +hey kuru there is something really wrong with the administration of wikipedia and i am not the only one to know about and complains for quite a while i had been hesitant but after a comment by a polish wikipedian i was finally encouraged to leave polish wikipedia for some time only perhaps i decided to move to the english wikipedia for a change regards kpjas talk although i am aware that he kpjas have his own problems for some it might be a positive development i want to remind you that in us at one time they needed to block the ip of us gov because the politicians were polishing their resumes and were using the wikipedia as they election platform you have responded to my comments in a way positively the problem is still that bunch of administrators have no idea what the hell they are talking about please read my comments and make appropriate corrections as a shoddy communist agent s tabloid operating the disinformation campaign shall never be called a prominent newspaper you do not call a clochard a prince and prince a clochard there is to much crap like this specially related to abuse by the polish administrators who are either connected with the propaganda machine or are brain washed as an expert on many issues i believe that all ips of some bloody idiot s from poland should be banned for all other languages so we will have the real and unbiased by the people who do not understand what is freedom liberty and democracy and vandalize the web pages with their totalitarian communist bias after being brain washed since by several decades from generation to generation and educated by the communist teachers by reading the crap on the pl wikipedia some sections of it specially connected to the history politics and resumes of politicians should be completely taken off air once and for ever thanks,-1 +a message from jasonceyre fuck you hoe you a bitch i do what i want,-1 +wang you are an idiot the difference between you and my year old is not only that my year old is more intelligent but he is not the cowardly atheist backstabbing communist nor the wikipedia stalker that like to be hiding behind a keyboard i dare you to execute any plan w hate ver it might include,-1 +you re a fuck ing nerd don t you have anything else to do in life than play video games this is what i think of all speedrunners and you re a fag trying to brag about yourself in an older edit of nightfire cuz while some think you might be amazing others like me think you have no life and are probably never gunna get laid but you re fine with that right you d much rather be making speedruns,-1 +fuck you dirty fuck ers,-1 +hey you wanna get rape in the butt,-1 +you be polite next time being a rude fag will get you know where,-1 +the great one i dont really have a problem i just dont like you very much u see i dont make many edits and im not one to taddle tale on vandels and do u know the reason that its because i have this little thing called a life i log on every now and again and make a few edits and for some reason when i do i find that some loser has got something to say to me attacking my views on subjects that are of no concern to them they dont care about subjects yet they go to the page to complain about the page itself disturbed are shit motorhead are not metal and i shoot em down for that then some faggot s have a problem with me telling them that and now u have done that i made my peice then thought why should i listen to a poofter like him so here i am again u are a faggot nerd burger u have managed to make me h u without me even knowing u u are the biggest poofter bogan i have ever encountered on wiipedia and to be honest if i had the chance i would probably cripple u go back to ur gay orgy go root ur mums boyfriend u fat sack of nerd shit kind regards,-1 +fuck off slant eye chink,-1 +the normans have long since come and gone it is you who are living in the past interesting that you should call me a mother fuck er that s not really a word used in england very much are you american by any chance that would certainly explain a lot and in another place you called yourself a breton is that not so why don t you make up your mind i have no idea and don t give a shit about your own ethnic insecurities wikipedia is not the place to display them,-1 +she is a mother fuck er i will block you mother fuck er shit bitch punch kill swear do nudity so shut up frickin around give you drugs call you names like shit fuck bum poo damn so fuck er you will be block and dead you shit and fuck and i will do the rude finger sign you fuck er get bad new messages bum oh shit,-1 +actually a band is and it the comprising memebers are a they it s quite simple american english isn t the fuck ed up version a group is after all a singular object that said is correct it is general practice on wikipedia to go by the grammar of each band s nationality,-1 +suitecivil your a pussy ass bitch i d fuck en kick your ass any fuck en day you little bitch face cunt fuck you and fuck barcelona,-1 +fuck you bertie thank you for taking the time to make your comments the recognition of your having professionals who contribute their talents at wikipedia is a great thing and helps advance the project comment is most appreciated and highly agreed upon unfortunately the involvement of contributors such as bertiebasset who should be deprived computer access and is hopefully sterile for the sake of future generations detracts from the efforts of well meaning professionals and truly hinders the betterment of the project through their moronic lack of vision or intelligence and professional or quality editing ability that being said regrettably it would be best for all images to be deleted at this time as per your extended courtesy no further contributions will be made and it will be remembered as a failed attempt to improve a deserving site due to the ignorance of those amateurs like bertiebasset dannyg,-1 +now that specifico has chimed in with the usual bull shit it is time to close this discussion,-1 +are you lost stupid fuck ing idiot s,-1 +ps cannucks suck balls i believe they are better known as can suck my balls,-1 +what a dumb ass you are slimvirgin which makes me realise that you are obviously a fat slapper i do stay within the rules it s you who makes up their own talk,-1 +utc wrong bananas can be used don t use an over ripe one if you are finding it to be too soft remember even a fully erect and hard cock is not that hard some girls think the trick of putting a peeling banana inside a condom is the best way to simulate the real life cock for it s feel talk december,-1 +hey idiot what s this fuck ing and animal language write in english you subhuman turk turd,-1 +suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck me suck menew,-1 +why you little i hope you get banned from wikipedia someday and you will we will meet again you stupid singaporan fool but for now i shall take my break from you so long fool hahahahahahahahahahahahaha disapears into a puff of smoke,-1 +now tony why do you want to be known as the typical right wing born again christian fist fuck ee of,-1 +o feel sorry for you fuck off you american bastard,-1 +hey idiot quit fuck ing with the sentry gun page you leave in links to other peoples sites but through your blatant hypocrisy you take mine out what is my site about sentry guns well god damn that couldn t be any more relevant could it it all boils down to opinions you have your opinion of what s relevant and i have mine all it is is your opinion nothing more it is no more legitimate than the opinion of anyone else the problem is for no reason of any validity you ve been given extra abilities you re still the same idiot but with more of a vote go fuck yourself you have no sense of unbiased logic i do not care about what you think is appropriate or not as you are irrelevant,-1 +what part of you re an idiot don t you understand why are you unwilling to discuss this you just want to hide behind your little rules wikiloser,-1 +be nice and don t be a dick or i will kick your ass,-1 +i hope world of warcraft dies a long and painful death world of warcraft suck s the biggest donkey balls on this planet i cannot express how much i hate this piece of wank other than hoping it is rape stabbed drowned rape again when it s dead then drowned in its own blood from being stabbed afterwards it should be buried in a feet deep pit full of maggots and when they have finished with it the whole pit should be set alight with matches sometimes people tell me i should get this plague but i d rather slit my bollocks open and pour burning acid over them and let your mum bite them off tasty eh,-1 +pablo flores is a piece of human dog shit and a fuck ing bastard,-1 +i just thought you should know i think you are a fuck ing idiot and i don t care if someone removes huggle privilages i m only here preventing idiot s like you from updating wiki without proof chat,-1 +hitler is an ass hole,-1 +nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger,-1 +hi shit head go fuck yourself,-1 +i did notice the polka dick of course beautiful send me any pat comics you deem worthy as i love reading them,-1 +so that s the bull shit they teach you in england no wonder you europeans are so fuck ed up and genocidal you christians and muslims gained all your territories by right of conquest and thinks it s okay yet you think jew s are evil nazi s when they do the same thing you are obviously british and you sound like a communist communists are just as evil and very similar to nazi s you are the ones who started the slavery in the americas in the first place you are the ones who illegally colonized and occupied the world in the first place you are the ones who made it illegal for jew s to return to israel and denied them entry into britain and british colonies during world war ii thus helping the germans carry out the holocaust furthermore you show yourself to be a typical anti semite you lie and say that jew s colonized israel jew s did not colonize israel jew s returned to israel the arabs were the ones who illegally colonized and continue to illegally occupy israel nableezy is also an anti semite he is an arab supremacist and claims that israel is genocidal jew ish supremacist racist terrorism sponsor human rights violater sic misogynist fanatic and repressive europeans and muslims should not be allowed to edit articles about jew s i suggest you cease and desist from defaming jew s and withdraw yourselves from the so called wikiproject israel palestine collaboration,-1 +w hate ver i m leaving this shit hole wikipedia is filled with biased neo conservatives who don t even follow their own policies administrators break the rules and when confronted they come up with stupid excuses like wikilawyering,-1 +reasons why i hate you you wrote on my page die die now bastard being annoyingly quick at editing you are gay anally savaging my pets,-1 +let me give you a clue i don t give a fuck what you think about anything fatuorum,-1 +if i m block for this edit that admin has no balls no life j delanoy is an imbecilic bootkissing social inept pwned me i will return again and again to haunt your ass you suck nuff said ha ha ha,-1 +just what the fuck do you think you are doing unblock i have done shit all wrong and i need to ask a question at the reference desk fuck ing slag,-1 +hey know it all jerk just because you can edit other pages doesn t mean you should just to tell people what you like i do not give a flaming fuck if you like cheese nips so stop posting,-1 +i like blowjobs and dick down my rear end ps cops love me,-1 +fuck ing son of a batch mother fuck er rolling on th floor eating a bagel is real and you re a denier,-1 +what the fuck was that,-1 +you sad cock suck stop editing my article otherwise i am going to report you and sue you am i not allowed to create my self as a way of motivating myself to step up why the fuck would you edit my article from striker to stripper and also siziba to sizzler you re lucky i do not know who you are you racist cunt im just being ambitious and yet you bullies edit my article to such a degrading extent go fuck yourself and let me dream,-1 +she also has my name on her butt,-1 +bingo now fuck off and take your stinks with you hopefully,-1 +race hey i m writing from imperial college uk the talk page is locked now the article is locked is that how you people collaborate you ever had a kick in the ass we can trace you see you later blood is red and blood is beautiful the cross is not a meaningless symbol,-1 +bad mother fuck ers there are a lot of them out there keep calm and carry on,-1 +u suck why can i not edit i am not writing anything bad just changes words to their correct spelling,-1 +well you know what you re a faggot too what are you gonna do about it ya little bitch,-1 +i ll stick it in you i ll stick my penis in your ass wiggle it around and say boom your a big fat cunt i m reporting you to that norman guy looks like its a trip to penistown for you but don t worry you can fly from dublin airport to penistown with penis airways vandalism i tried to remove the vandalism from your page but then i realised you were a big fat cunt so i decided not to enjoy your trip to penistown just to confirm you can fly there from dublin penis airways this is bob dick the ceo of penis airways just wishing you a pleasant flight with us i believe you re flying on our new service to penistown international from dublin enjoy it although i have to warn you that some penisians are a bit funny around big fat cunt s penistown i ve been told you ll shorlty be visiting penistown you must drop in for tea although i must ask that you lose some weight first you big fat cunt accident at dublin airport there has been an accident at dublin airport a penis airways airbus a travelling to penistown crashed into a delta air lines boeing which was getting ready to depart dublin for orlando people have died making it the worst air trans port accident in the world ever but dont worry i m sure penis airways will have another aircraft ready for your flight to penistown you big fat cunt,-1 +dragon rape your pound nerdy ass while i get drunk and jerk off fuck ing loser,-1 +what the fuck why was my edit reverted all i asked was why the fuck this article is protected is that so horrible oh noez he questioned the judgement of the admins get a fuck ing life pedophiles,-1 +busy in real life lol pathetic cunt learn to read english while you have time fuck ing piece of chingching trash you ve to see who was right poor squint but yeah you asian animals don t have self judgement,-1 +go to hell ass hole,-1 +warning get off your high horse with warnings and referring to your talk page as if it were another user you re no admin but like the other assclowns that have gotten on my case you seem to think you ve got cred by throwing warnings at me no one is gonna check the talk page of a low importance rated article and you know it you dumb fuck,-1 +you are a cunt so how about a blowjob,-1 +i am going to pee on you,-1 +max i seriously don t give a flying fuck about you jakezing or your attitudes towards each other what s done is done what you need to do now is move on forget about jake you ll probably never see him again on wikipedia you ve spoiled your otherwise clean record dealing with that pompous jackass and you don t need to do any more damage to it so he didn t tell you why he had a problem with you quite frankly i can t understand why either of you kept arguing with the other for so long i believe that s just poor judgment really in any case i don t have to help you with anything nor will i the only reason i stepped into this was because i was trying to stop you two from ripping each others throats out and that didn t do any good since you two just kept right on he might have confused you with someone else but that was no reason for you to keep harassing him about it you and him both have displayed abuse of wp civil and wp npa on countless occasions now please do us all a favor and go on your way talk evidence,-1 +funny usage there used to be a very amusing and funny example of the usage of the word fuck in place of almost every part of speach in a sentence where did it go i do not exactly remember it but i think it should be brought back,-1 +wikipedia nazi s can suck it bitch es,-1 +bkbkbkbk lease take some time to review our standards on verifiability and reverting shut da fucc up bitcch,-1 +youre gonna be a dead faggot,-1 +hey dude if you want to suck cock please dont ask me cause i dont care seriously,-1 +dear auburnpilot i ll just come back with a different ip address you stupid son of a bitch you re a fuck ing moron,-1 +hope you rot in hell you mother fuck ing idiot perish in the flaming bowels of hell i hop that you die alone and sad you fuck er i need you to perish end ur life right now,-1 +whoever banned me is a fuck ing idiot why didn t you ban the antisemites,-1 +you are a fuck ing nazi everything i wrote on my page was well written and factual you are obviously a racist nazi jew,-1 +oh my god you are a bitch holla,-1 +idiot fuck you,-1 +begging why are you being such a gimp jimmy wales constantly begs for money through his site wikipedia he has a massive banner at the top of one of the biggest websites in the world begging for money if that doesn t make him a notable beggar then what does please take a long fuck off a short peer you basement dwelling self congratulatory meta cunt,-1 +ian watkins it s a realible source it s a fansite these people dedicates there lives for these celeberties sorry for som incorrect bitch fuck you answeare me ass quick as possible,-1 +you moron do not accuse me to go and study the fools and used like condom people with small or with no brains are you that is also a reason why never pashtuns can ever establish their fake claims such as on ghurids because you have no roots to anything you are not related puta khazana claims are fabricated like the shamefull book self the bi sex abdul hai habibi wanted to copy shahnama that s all behind pashtun nationalism new archeological studies led by dr zmarai show the ghurids beeing non pashtuns now go and kill zmarai who spit in the face of abdul hai habibi and clean with puta khazana it s ass what has now your valueless and waste comment has to do that iranians were to the rising of safavids sunnis that s how a pashtun think your logic is the logic of long ear afghans not connected or compatible with the educated world of human beeings your comment on my comment should make but since your comment have no connection to my comment the result will stay this is long ear afghan pashtun logic no wonder you are the most backward childish naive and for every foreigner useful nation you stuipidity does not know any limit,-1 +where are you ne hiding with your mommy you fuck ing coward come out and face me like a man or girl or trans vestite,-1 +bongfag you are a lazy loser fuck ing stoner ass hole who is on a pathetic wikipedia power trip editing bad pages even though the articles you ve created suck get out of mommy s basement and get a real hobby like not being a stupid fuck ing ass hole,-1 +lia you lie nyanpire might not be a boy but you unregistered user are one big bitch,-1 +it s official wikipedia has finally gone full retard what s next goatse on the frontpage sure why not it s not like this site has any standards left the human centipede is a crime against cinema and civilization that should be talked about as little as possible and you ass hole s put it on the front page fuck you i don t want to be reminded that this piece of shit exists,-1 +vandalism fuck you waggers,-1 +is an obese hore,-1 +please do not vandalize pages as you did with this edit to talk shit if you continue to do so you will be block from editing,-1 +don t be stupid you know i m twice as irritated with you as you are with sheryn if you don t like her shut up and leave wikipedia is no place for mongrels like you i do not care if you live in chicago the uk or some place but being totally foolish in wikipedia is uncalled for we don t need to know that you find sheryn s voice sounding like tuesday vargas unless you find a news article saying so then go ahead i may agree with you regarding incorporating titles here in wikipedia articles but just so you know this is star records idea and not her fans don t sound as if you know everything about sheryn in fact you don t have any right to edit her article if you don t know her just because you see her on tv doesn t mean you know her in the future we will develop a more unbiased version of this article do not worry as long as quit messing around with this version i am tired of watching behind you and cleaning your crap be educated while in wikipedia s premises,-1 +you bunch of fwcking twssers all you do is kick people off wikipedia and congratulate and suck each other off all day fwck you and fwck your false bwllshwt i wouldnt pwss on this bwllshwt artist alr if he was on fire all he knows how to do is bitch over a subject he has no right of authority over but his edits are allowed and other peoples edits are binned and denied so deny this fwk you cntz,-1 +oi just cos i made an edit you dont like dont call me a fuck ing vandal assume good faith jerk ass im sorry i put a name jr called paul bearer a lot as a nickname some serious fuck ing vandlism right wrong if it isnt a nickname then its just a damn mistake not vandlism so dont you ever call me a vandle punk ass bitch,-1 +the entire article is written by americans so what do you expect they are fuck ing retard s,-1 +no you cannot get my account banned you ignorant moron shut the fuck up go play cop you little bitch,-1 +just another white supremacist dog nuff said only a mother fuck er shoots prisoners,-1 +go smoke a joint or a dick whichever you please bongwarrior you loser just like daniel bard,-1 +i m sorry i was an ass hole about it the point is that the vowels in man and noun are raised in ause according to felicity cox and the phonetic trans cription for that idea example i gave you trans cribes man as and indeed it sounds like that to my ears although that speaker did seem a bit broad it s not that uncommon for vowels to be raised before nasals take for example the pin pen merger in southern american english and in southwestern ireland or the non phonemic tensing that takes place in accents that have undergone the northern cities vowel shift the only reason i brought this up is because i imagine it is very noticeable to english ears it s even noticeable to my american ears many english people might pronounce man as which sounds quite a bit different from you re the aussie here so i m sure you can verify this by simply contrasting your man with your bad in this case both would have a long vowel so try to listen for the quality of the vowels or your noun with your loud this is just another little thing that distinguishes aussie english from english english that s all,-1 +ip fuck you,-1 +attack this f you are a fuck you think i care about attacking other editors it was just a funny joke you are the biggest fuck i have ever met,-1 +go fuck yourself prick,-1 +but be careful because i took a shit in it,-1 +hello from you piece of shit,-1 +eat shit fuck o suck my ass hole then die horribly i hope you get cancer,-1 +dear alaexis this kid is an ass hole does not understand anything an idiot,-1 +man your fuck ing lame kid the second poster,-1 +i do not care if you block me for stating a known fact a racist pig will remain so even if he called so or not jo harami ke pilley baar baar cheezen delte kar de rahe hain unko block karo suar ki aulaad and i can see that there is a particular propaganda that is being promoted on the said page why else would they delete the names of the giver of the hare krishna movement iskcon swami prabhupada trans cendental meditation maharshi mahesh yogi integral yoga sri aurobindo kriya yoga paramahansa yogananda of autobiography of a yogi fame and vedanta swami vivekananda who all were kayastha by birth,-1 +fuck k u fuck fuck fuck fuck fuck f u c f u c,-1 +hey you suck my dong,-1 +again fuck u fuck u fuck fuck fuck fuck fuck u,-1 +thanks for the heads up ass hole,-1 +and sticking your man cock in my ass,-1 +don t screw me hey don t screw me more im doing contributions for wikipedia and you are screwing me what s your problem leave me alone you don t have your own life like jenkins in south park leave me alone you faggot,-1 +utc tolerance my ass the only time they treat foreign people well is when they are tourists in which case it is only as a bland attempt to trick them and make them come back october,-1 +eat shit an die faggot,-1 +homo sex ity you french fried faggot i am going to cut your balls off and serve them in a platter of mushrooms before shoving your dick up your ass and mutilating your boyfriend s balls in front of you then i will kill you both,-1 +remember when the first nudes came out of vanessa hudgens she said her stuff was hacked yet everybody called bs same with mily and johansson but it turns out they weren t lying after all i also find it very interesting to see how the us attny has apportioned the restitution k for olstad and all her dildo shots k for johansson and what one boob and an ass pic and k for christina and about or vag shots why is one johansson boob worth k and all of christina s vag shots only worth k i can see why olsteads pics are worth so much she is smoking hot but one boob is hardly worth k anyways it will be interesting to see how it all plays out this kind of shit happens everyday to regular people ex boyfriends girlfriends but you don t see a year long fbi investigation out of it,-1 +my friend you dont know the half of it i was called a nigger black bastard i should be lynched i had pictures of naked men put on my page the user is still harrasing me with wiki emails and to top it all off he was someone i had been working with all along,-1 +the only thing you sons of bitch es can do fuck you fuck you now block me properly i can sign up again and do all the stuff again,-1 +well look at it now now it should be fine with you right fuck ing faggot,-1 +you idiot why u delete my page,-1 +by the way sorry about that stupid edit,-1 +first of all im not going to admit to somehting i didnt fuck ing do ive been accused of doing something my you yet you cannot provide proof of that maybe you should man up and admit that you were wrong in jumping to conclusions about me and do the right thing while you are digging up proof of what you have accused me of doing maybe you can show me where i threatened anybody because nothing i said was a threat to anybody,-1 +fuck wikipedia and fuck all the leftist liberal faggot loving jew communists that run this fuck ed up piece of shit website,-1 +when did i mention gamespot ign and amazon wont list a fake game for fuck s sake trp stop being ignorant and stop acting as if you re never wrong,-1 +i apologize for my attack not your a dick,-1 +fuck off you jumped up lying cunt,-1 +hahahahaha dude go get a real job how old are u come on its geting stupid,-1 +fuck you and grow up and get a real life and quit living out your pathetic fuck ing dream of being the boss of people on fuck ing wikipedia you re fuck ing pathetic rip off the name tag take off the paper hat tell them that you don t wanna flip burgers any more and get the fuck off this site you child,-1 +this article is a piece of dog shit written by pig fuck ers there s no reason for this in a general interest encyclopedia take it to the battlestar wiki it s garbage and i d like to see it deleted,-1 +just putting a bitch in his place do you did to be sat down too shorty,-1 +eat crap and die,-1 +what kind of idiot are you obviously you can t f ing read i asked for someone to add one of more of those images i provide to the entry instead your retard ed simply reverts the damn thing can you not understand fricken english or something,-1 +are you serious i was just tryna be nice by thanking you for a professional discussion but you delete what i had to say i never said i liked your old ass like that fuck you too brooklyn all day everyday new york stand up,-1 +yes but brianann macamhlaidh is a fuck ing idiot,-1 +batista is also lbs not thats bull shit,-1 +also would you like to have sex with my mother she is a prostitute and will have sex with you for,-1 +why don t you crawl away and die you disgusting pig go fuck yourself you saddo,-1 +you know what fuck you i wan teven done writeing abacus the page so where in the fuck ing hell do you get off telling me it is not real so fuck you maybe next time you will wait until i am completely done with a fuck ing page before you dick head deside to delete it you can sove winkipedia up your fuck ing asses you two bit fuck ing son of a bitch es and i hope you all go to hell you moda fuck ing nigger s,-1 +ass hole and richard simmons s ass hole and assisted in the development of a faggot y article on the jizzmaster himself me the latter of which has since undergone faggot y tranny surgery and a tit job further revisions to my cock include trying to fuck my mother with it which i am not entirely happy about but heck it s a mom i remind you all i am a faggot who wouldn t risk pissing with the seat down so you can tell my nickname is a faggot y attempt to appear edgy i weigh kg,-1 +bishonen if not there then where no admin cat seems to qualify it s ok for him to cast aspersions on my front page i appreciate technically it is wikipedia s not mine it would do no good if i just blanked his and wrote crap on his so where then s,-1 +then yunshi can i put my cock in your ass,-1 +you little shit the stabbing knife is headed your way also,-1 +suck my dick and swallow,-1 +your edit filter suck s get rid of it you fag,-1 +no f off coon,-1 +it clearly is but i still don t quite get it if an editor from the republic of moldoravia turned up to say that dick was the worst possible sexist insult in his country would this essay be deleted as a result fatuorum,-1 +ass hole kike why in the name of hly fuck did yu delete myt article you need to go ack to yur singagog and lvee ys normel folks alone m kay,-1 +m a lame ass admin with no life,-1 +i was at fsu when he pulled the stunt awesome at the risk of being crass and nosey wtf happened damn mofo boredom suck s ennui reading wikipedia hours a night helps me along w youtube followups,-1 +you are a fagget i prey you get cancer and die a painful death,-1 +it does not appear to be common usage are you out of your goddam tree the term gets five entries merely in the index of freud s introductory lectures in psychoanalysis you are completely clueless now bugger off with that other idiot and leave this page alone cretin,-1 +miners day thanks for deleting it fuck bag nothing wrong with the article hope you get cancer and die you fuck ing limey,-1 +of course uber here would just love to shove that green rotting foot up his pussy,-1 +you seam like a fuck ing hot and kinky person and i would like to bang the shit out of you,-1 +you re a nuisance go conjugate with a pair of maple trees you cock suck ing faggot lulz lulz,-1 +fuck off you monkey cock suck,-1 +fuck the consensus u r a fag,-1 +you stupid niboy negro,-1 +listen brah you are the rudest wiki nerd in this joint i bet you re sitting behind that computer in a chair that has the sweet impression of your ass that never moves from it are you wasting time till the next world of warcraft is coming out does mom care that you re on here ruining lives for the rest of us fun loving wikipedia users did the money your grandparents sent you in a singing card by the suped up fuck tarded laptop you re rocking here s some advice take up dance dance revolution and leave us awesome and normal people trying to make awesome wiki pages alone bastard,-1 +idiot stop your childish wiki stalking idiot,-1 +so then block me she gets to give me shit like that in the discussion page on paul revere and you guys come in here threatening me the hell is this,-1 +i reset my modem new ip so you can fuck off i think i may just piss you off for a bit you tool,-1 +reply to on gender your posted don t guess at someone s gender as you have done here it is uncivil and could in fact be taken as insult any argument you might have that their name appears to be that of a female woman is invalid as you have no idea if that is their name last name middle name etc it could even be a reference to the male comicbook character blade who had the name of daywalker given to him by others in the comic book d lus contribs if you know your friend s gender spit it out you stupid ass your entire posting if you didn t have the agenda i ascribe to you infra would have been fyi he she is a female male and i would adjust accordingly hell if you tell me that dayewalker is a consortium and i d refer to dayewalker as they it don t continue to be an ass if you post further or understand that your further postings are unworthy of reply i note that you are not correcting your friend dayewalker when she posts to you days ago i saw that afterwards i knew he was topic banned but it had slipped my mind about the overall bannation thanks dayewalker talk july are suggesting that you know that dayewalker has completed genetic testing on the subject of her comment so that he dayewalker is not guessing at his gender the subject of her dayewalker s comment when he only refers to he or that he dayewalker has genetic evidence that the he is actually a she and she dayewalker is insulting them by suggesting that the he is too ballsy or pushy to be a woman lady dayewalker is not whining about this unintended insult of either referring to a woman as she or equally unintended insult of referring to a man as she don t be an ass if dayewalker or anyone is so concerned about their gender identification and they are not an idiot they will use a prefix like mr or ms dayewalker has not said anything about it and it is off topic to the discussion if you wish to join into the discussion please feel free on second thought don t join in i have no confidence that you would answer the questions posed by the other editor either dayewalker he she they etc doesn t answer his question ut oh now i ve called chowbok a he no doubt her boyfriend girlfriend will rush in to call me a beast and start a fight on the nd grade playground if dayewalker thinks that he has been called a sissy or a girlie then she can address that with me he doesn t need a mighty protector to create issues designed to get me banned and by protector i mean you you are an ass male female both neither and of w hate ver sex orientation if any that you wish to use to identify yourself or not identify yourself or feel the need to identify yourself or feel the need to keep private or over which you do not care i don t care what gender if any you him her them it are animal mineral vegtable you re an ass,-1 +stop your stupid editing in the germanic wars mofu what is your problem repair that shit you did in chronology of germanic wars bastrd,-1 +chanting fox shut up you dumb cunt your a nigger loving cum cuzzling crack whore bitch,-1 +to stick up your arse,-1 +seriously which complete ass had the completely idiot ic idea to call this article death of neda agha soltan you call it by her name and indicate that she became famous for the manner of her death doh,-1 +why should people have to read crap posted by idiot s like you,-1 +wash your dirty penis before giving shit wash your fuck ing dirty penis before giving shit s,-1 +somebody out there likes you copied from the talk page of orthodox judaism user names removed it was written after you stated the article would be removed from your watchlist sorry to hear you re frustrated david it is frustrating i know the past few days have been tough on you i m in your corner and hope you ll come back after a break and the reply x you re sorry for shankbone are you kidding right now shankbone is probably zonked on anti depressants and or alcohol or he s taking it up the ass from andrei treivas bregman alias michael lucas pornographer as a reward for the improper edits he s made at bregman s bio what are you hoping to get bregman s dick too you probably won t get any bregman can take just so much viagra xx xx x x pretty soon they re gonna call you tunnel butt mavis or sewer butt or sewer tunnel butt especially since you ve taken bregman s decrepit dick up yours have a nice day,-1 +hahaha nice try but they don t agree with your ethnocentric bull shit try that on for size jun utc,-1 +fuck you you cant block me i change mi ip every sec,-1 +you are such a dick ad she did it we all watched on tv it s on fuck ing youtube the problem i see here is that she is giving you blow jobs,-1 +tarantino alright i admit it so i see a similarity that simplifies the entire explanation of his style by a good deal so sue me shrug hell i just thought it was easier to get this guy with runyon in mind y know ah well if you decide to delete it because it wasn t some stuffed shirt in a stuffed chair on a tv show who thunk it first i can t do anything i ve grown to be familiar with that happening as my user talk record shows p s you said we meet again i don t remember where and so i don t know if you were one of the cute but no editors or the you are fuck ing crazy get out before we send you a whole jarful of cookies not the edible kind except in small bytes editors please tell me to satisfy my morbid curiousity also i need to do something for the next seventeen years of my solitary confinement,-1 +you suck you suck go kill yourself,-1 +fuck u i will do as i please,-1 +bite me in the butt talk,-1 +get a fuck ing life mate or a job you re australian for crying out loud is there nothing you can do but sit around on a computer and edit you re wasting your time on this page the only reason why i m replying to you is because it s funny how you try to start something but you can t i don t care about your college education the least you can do to me is reply in big words do yourself a favor and jerk off,-1 +no what the fuck did you just fuck ing say about me you little bitch i ll have you know i graduated top of my class in the navy seals and i ve been involved in numerous secret raids on al quaeda and i have over confirmed kills i am trained in gorilla warfare and i m the top sniper in the entire us armed forces you are nothing to me but just another target i will wipe you the fuck out with precision the likes of which has never been seen before on this earth mark my fuck ing words you think you can get away with saying that shit to me over the internet think again fuck er as we speak i am contacting my secret network of spies across the usa and your ip is being traced right now so you better prepare for the storm maggot the storm that wipes out the pathetic little thing you call your life you re fuck ing dead kid i can be anywhere anytime and i can kill you in over seven hundred ways and that s just with my bare hands not only am i extensively trained in unarmed combat but i have access to the entire arsenal of the united states marine corps and i will use it to its full extent to wipe your miserable ass off the face of the continent you little shit if only you could have known what unholy retribution your little clever comment was about to bring down upon you maybe you would have held your fuck ing tongue but you couldn t you didn t and now you re paying the price you goddamn idiot i will shit fury all over you and you will drown in it you re fuck ing dead kiddo,-1 +animate feel free to erase this afterwards because i don t know if wikipedia has a private mailbox system you re right the admin animate is a faggot who needs to go get aids and die eat a sausage and choke on it his monitoring of the channon christian wiki is horrible by all means something tells me that he s a black supremacist who would do anything to make an article look good for his race,-1 +p fuck ing s miranda the coolie thanks you for your cooperation betraying again her megalomaniacal thai hooker attitude that she owns the world and every wog in it what a cunt,-1 +no where on allports menu are fries listed as chips http allportsfishandchips co uk menu php both the times and timeout always refer to chip as chips it is most definatly fuck ing clear that no one in fuck ing briton except visiting yank fuck s refer to chips as fries you racist cunt,-1 +fuck you daniel you big dick ead,-1 +work as a gay stripper in the chodes for all center as most of you have seen me there i m not sure how big my dick is its probably pretty small but i,-1 +hgfhfghdghgfgdh i hope you will suck my piss fuck ing swine,-1 +bull shit a good source would be ehow but the shit heads who mannage the black list decided to ad that on to it so it s a no go there and that s about the only reliable source for that i m removing it and puting a notice in the summary as to why the banner is being burnt,-1 +ooh i m really fuck ing scared of you you push the hard shaft into your mouth you move it backwards and forwards rhythmically then the white liquid explodes in your mouth that s how you brush your teeth,-1 +fuck your mother fuck off,-1 +plus you re stooping below joseph stalin with the revisionist history take on my talk page fuck you,-1 +p s i am halfway through a sex change maybe when i finally get my dick cut off i ll be a bit more relaxed i already have the tits but the estogen is driving me nuts,-1 +the quote that you tried to preserve said that all americans have incest the real quote does not get over it it s in the history theres nothing to argue about you are an idiot you were wrong you got burned now go fuck your mother picture it your cousin,-1 +unblock you sorry bastard you block me for removing unwanted edits from my own talk page below,-1 +shannon just merge the kunt and write more shit for us u faggot s,-1 +who cares ass hole stop terrorizing wikipedia users with your stupid questions,-1 +oh shut the fuck up or we ll nuke you,-1 +cool do i give a fuck enjoy the rest of your life being an anal retentive moderator on wikipedia buddy,-1 +how how do you sleep at night you son of a bitch,-1 +hey there you are on google i get the last say there is senses only everybody really only does want immortality forever erasee that shit stuppidd plato and old shit and wrong shit i m the best best i b thought all out you nonesense useless bastard go to hell,-1 +thanks and fuck you,-1 +fantastic give me a block and blantantly ignore the behaviours of the others so it s controversal to state why i m so irate but yet it s within guidelines to insult my intelligence degrade my character and overall tell me to fuck off wow january utc,-1 +hi muther fuck ng wikipedia nolifer go die pl x with v nlig h lsning vop,-1 +i think i m going to write a memoir called journal of the non block years chapter one day five still not block i trusted the validity of what tao said because he was so wise and backed up w hate ver he said with evidence maybe his threats were all empty after all diary but maybe one day they ll come maybe one day they ll put me out of my misery if there is a they whoa is about the equivilent of your mental processes you dumb bastard,-1 +now i am better the archives that i you editing go to be fuck of the one tesao to type these archives,-1 +please stop deleting my images u fat ugly cumputer geek looking at kiddie porn all night kiss my natural black ass fat bitch,-1 +dude at the end you fuck ed my article sector rourkela dude what is your problem are you nut s there are many articles in wiki that doesn t match wiki criteria and you find it mine only if i create and edit my own article about my own place then what the fuck is your problem you show fuck ing barn star s in wiki i don t know how it seems without looking to the talk page of sector rourkela you made the article for speedy deletion i guess you don t have any other work you could have pasted a notification prior to deletion it seems you will not let me work in my article mr wikidan i don t know who are you and for how many heck year s you are their in wiki please don t touch my article s i m trying my best to work on it with every proof given thanks,-1 +u cunt why did u block me,-1 +that s the thing though i wasn t making any personal attacks these jerk s are making it seem like i am,-1 +fuck you you dumb sack of shit,-1 +hey man he is vandalism on ufc pages which is fuck ed up what has us mma fans done to him we need our pages,-1 +account block wow now there s a surprise the wikipedian zealots are watching over each other and protecting their gratuitous self grandizing profiles from deletion oh sorry connolly s lack of notability is my fault so i m block the five previous deletion requests were denied because mr connolly is as notable as mr einstein in your opinion what a fuck ing joke,-1 +probably could strike the you sir are a callous ass hole and i stand by that term and nothing you do will make me believe otherwise part of that statement the rest while heated i think is ok unless anyone else doesn t and i can strike some more off it talk,-1 +die whore die you whore,-1 +fuck malaysians malaysians are a fuck ed race and should be wiped of the earth,-1 +hey are u some kind of bunt hate r who is jealous of the bunts wealth u kannadigas are pure shit claiming tulu kodava culture as your own yakshagana is from tulu nadu but u cultureless kannadigas claim it as your own kodava culture is being subdued beacuse nof youa u claim konkani vijay mallya as kannadigas shame on you stupid kannadigas,-1 +p s comic sans suck s,-1 +fuck off fuck off,-1 +actually jarlaxle is right that shit was done by me alex you re a cunt nuff said,-1 +wtf what the fuck is ur problem i hate u and ur family,-1 +no you are patrick i think we can all clearly see that you really are the uneducated fuck er in this case,-1 +your time you suck because you are right it is the third and i don t remember yours still lol i wanna say its in october but something tells me it isn t,-1 +you dont have a say in this conversation no proof so fuck off,-1 +fine fuck all of you you might when this battle but you won t get past the lord all of you are supressing information and helping in the liberal take over of a crhistian school,-1 +nightstallions fiance got fuck ed by a nigger and had his baby and it smelled of fried chicken,-1 +u suck wuts your problem u nerd i just made an edit like a minute ago and ur alredy all over me and fixin it get a job or a life and get off of this site move out of your moms basement,-1 +please do not add nonsense to wikipeida unless it can be helped faggot s,-1 +you like ass cock,-1 +fuck off with your changing of genres of songs you sick mother fuck er,-1 +serously fuck you how is putting factual info on an article vandalism you don t happen to be friends with jeni do you what a crock of shit,-1 +fags you all take it up the ass hard and like it,-1 +why does this fuck up have to ruin jazz,-1 +how big is ur cock i wanna suck u off,-1 +obviously you are an ignorant twat mr niekerk you say i am an uninformed vulva an unlearned vagina and you want to teach me my lessons i m not sure this is appropriate better take your smut somewhere else user though you do make me laugh seriously choice words coming from one who doesn t know the difference between a string and a course i have to suffer such depravities and admin wonders why i take a rough tone with these anonymous folks on wikipedia,-1 +audi a fuck you shit talk contributions,-1 +a little clique controls the technocracy articles to very very bad effect the same group of scum bag tandem editors that have controlled and now want to misrepresent any and all articles connected with technocracy issues even to the point of trying to delete the article now http en wikipedia org wiki user talk johnfos the signpost october http en wikipedia org wiki user talk epipelagic http en wikipedia org wiki user talk beagel http en wikipedia org wiki user talk lawrencekhoo mostly they collude to give bad information tab the same group of tandem editors from several years ago still try and control this article they want to eliminate an article about one of the major social movements the group that started it wikipedia is known for special interest control and buddy editing its a pity and the reason a serious article on an important american group is being tried to be done away with by tandem editors that obviously object for some reason to the content the past clearly shows the same team of tandem editors here beagle and johnphos are tandem editors as is lawrencekhoo and epipelagic one of the most significant groups in american history and they want to get rid of the article its pathetic and shows the weakness of en wikipedia lawrencekhoo is a mainstream economist who ax grinds economic articles google his name for his economic beliefs gino and fifle fool it does not have a fuck ing thing to do with communism you dumb ass thanks,-1 +tiderolls you are a shit phage and you desperately need a life,-1 +twat how dare you you freeston loving twat youre probably a teacher there arent you you bastard,-1 +alright i was nice to you and then you blatantly attack me and for what i said i will levae you alone you bitch,-1 +hey rancie you prick go suck a great big uncircumcized one tony greenstein,-1 +why are you reverting my edits if you have some sort of an objection use the talk pages of relevant articles just don t try to play charade or hide and seek or w hate ver the fuck with me,-1 +well fuck head seemed a little over the top,-1 +go and waddle off somewhere else you pathetic cunt i pray at night for your death,-1 +for being such a pain in the ass i don t think you have any formal training in corporate law or business history what s your deal why do you keep messing with my stuff esp when you don t make it better truth be told i m sick of it you ve been dicking around for months on the corporation page and it stick suck s ass you can t possibly think you re doing a service to wikipedia but at this point i don t want to put the time into re writing the section on modern corporation for fear that you ll in your omnipresent stupidity and the arrogance of a novice delete my hard work now your sitting on your hands and not responding keep it up dude i will wait you out over the year make my case and your non educated ass is going to fold blow me,-1 +what the hell did you even read my post to icecoldbeer ass hole,-1 +fuck you bastard you are a wikipedian trans lation you have no life are scum and have not an ounce of intellectual capability read your dog shit articles on your own time don t mess with me punk you are worth less than a fuck en flea wikipedians are scum drone on loser,-1 +harassment as in pointing out that gamaliel has driven now driven a woman off wikipedia despite claiming to want the opposite thought so i m block for having a contrary opinion period don t bull shit me,-1 +back off yeah i know you re in cahoots with linux nutcase and you like persecuting people stop pulling this persecution crap,-1 +negroid hey nigger lover why did you revert my contribution to the article negroid i have restored it lay off the nigger cock you faggot thanks,-1 +of course i am right dammit,-1 +suck it asyou re used to do ignorant romanian nazi,-1 +stuff you stupid editors i reckon you should leave in all the changes i make caus theyre all true especially the one bout will larsen p s plz dun block me,-1 +you suck dear king shadeed you suck and are a nazi drop dead alex,-1 +css naked day you are a fuck ing duchebag im not trying to copyright infringe on anyone just spreading the word omg you are so fuck ing stupid and should be shot,-1 +vat d hel du ju vant nau go fuck yourself get a life,-1 +without replying and also called me an idiot and a fantard,-1 +you fuck ers think you can stop me you really think so well nigger fags i am on the side of wikipedia vandals and i will tel you something tonight at about i will vandalize the the pages of everyone that has reverted my vandalism or added this two week block to me if you want to find out who that will be just check the history section of my page to see the names when i do vandalize you tonight i will comment on hos i told you i was going to do it so if you edited my page today or if you are one of the people that dais they would watch my page to see if i am vandalizing then get ready to have your shit crushed you nigger s you cant stop me see you tonight at niagetty fagget cunt s,-1 +okay okay i see there s a protocol oh okay i see how this whole things works now i follow ya in all my ignorant raging i completely overlooked the fact that i did not upload any of my information to the web holy crap i am an idiot but i m an american too so its expected to miss something and i m human so i m expected to screw up sorry m this whole thing could have been avoided had i taken proper introspect and gauged the situation more thoroughly all of the sources are active just not uploaded my apologies holmes i thought you were just being vindictive with the coveting of a leviathan article which really annoys everyone here though should take notice of these past four thousands edits on w hate ver pages i posted w hate ver especially with this poor sods day sorry for the headache holmes,-1 +utc hope this is the right place to write you say there s a consensus but i only see the three of you constantly reverting a bunch of other people without giving any reason that s why i reverted back to them also the version you want has stuff missing so that goodkind looks like less of a dick that s biased october,-1 +p s i need some penis cat tongue is getting old,-1 +pussy bitch delete things,-1 +mind your own business busy body this must be removed form this talk page now dumb ass full real name are not to be publish on wikipedia remove it now,-1 +get amped on demamp cornhuskers fuck ing rule tits are rad not yours though i bet they re concave,-1 +if you see this message wikipedia s talk system is terrible feel free to direct me to the appropriate response method because those talkback tags are confusing anyway i only edit pages with contributions i think will help hence the code lyoko comment which is why my contribs page is shallow that and my ip address changed during a thunderstorm a few months ago i m not here to write a book if i was that into editing i would be a member by now all i know is i called bull shit and got harassed for it by that person and now i m calling double bull shit it s a shame you can t even go on wikipedia anymore without being harassed,-1 +hello hello you cock suck ing shit eating mother fuck ing bitch,-1 +rick the dick check out the commons page you dumb fuck i have been putting shit girl everywhere tootles,-1 +wake up call dont u dare send a message to my little johnny he is only years old and mentally handicapped and he was playing with his brand new computer who are you to tell him what is wrong and what is right leave the parenting up to me you are some waste who works for wikipedia go get a life you fat cow,-1 +fuck you funny how a wikipedia article i tried to create is now an actual article,-1 +this guy is a sickening pervert,-1 +did gabrielle fuck a chick did gabrielle express an interest in the fiction in fuck ing a chick no she isn t a lesbian categorizing based on lies is wrong but as time has proven over and over again as long as at least two people prefer the lie to the truth it stays on wikipedia,-1 +lol haha you loser wobbs yeah maybe i am epf not although he shares some views with me on race and other things hes some dumb italian british mut from canada that actually annoys me i have used other accounts on here but with other anon accounts not as a registered user which is allowed by wikipedia since ip s change all the time hahaha wobbs you are a fool especially with how you place so much emphasis on those books recently released by sykes etc which are minority opinions in the world of population geneticists and other researcher for your information racial reality isn t a neo nazi site you anarchist loser with no hope because your life is meaningless and you don t know anything on what you read about with these issues rr is a neutral point of view that seeks to refute neo nazi white supremacists multi racial race denier assimilationist biased opinions that influence works including the authors of those books you mentioned stick to being a pathetic lab assistant and get a life you tool and stop vandalizing pages and makin edits to suit your twisted opinons you fool hahaha wow do u accuse sock pupety of everyone who gets under you skin you douchebag january utc oh and veritas you dumb fool i find it insulting you compare my language to epf s when at least i know what im talkin about on this stuff while hes just some pussy who confuses people and his arguments cant comapare at all to the brilliant logic of mine hahah you and wobbs are the worst contributors to this wikipedia thing don t ever use this no one wants you here hahaha,-1 +fuck shit kwa kwa kwa,-1 +read the bible you cunt,-1 +hay fuck youhay fuck you hay fuck you,-1 +back to the kitchen for you suck my d leftist femi nazi cunt,-1 +then you can fuck off you pompous ass i have singlked you out for some education in respect and honesty you aren t fit to talk to me please stop untill you have an education and understand the full requirments for civility and non abuse,-1 +i m a big faggot as well yep,-1 +fuck off piece of s t,-1 +so fuck off and die rape fantasising sluts,-1 +you are a huge faggot,-1 +user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit user edgar is a shit new,-1 +shut up i m going to rape your sister,-1 +haha i fuck ing pissed myself reading this thanks i needed that after hours trecking around in warrington with the worst cold ever i mean it thanks,-1 +serious i mean what the fuck is this fuck ing prison fuck ing camp please fuck ing unblock me,-1 +fok you you suk bitsh fock you,-1 +soulja bitch is whack fuck da dirty south,-1 +what the fuck are you talking about,-1 +it s only rubbish to whiny little bitch es that can t grasp the concept of a personal joke instead of simply pointing me to uncyclopedia and not commenting on my post,-1 +wow well arent you a right cunt like a prick fuck off eh and let me make an edit your mums a fuck ing swag mate you shit e eyes image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image image peopleofbritain png p,-1 +no we re just trying to serve wikijustice as i call it vandals will get peneltized for what they did wrong peneltized wtf peneltized stupid cunt learn to spell,-1 +go fuck yourself ass hole by the way this ip is an internet cafe so you can block me all the fuck you want and cunt oops i mean cun why don t you consider dusting your face for a reflection of an imbecile fuck ing arrogant prick,-1 +the eart will grow a big dick and fuck jupeter,-1 +senseless fuck ing of my mother,-1 +have you heard about dynamic ips about proxies about internet clubs you can t ban me from editing the true history of my folk you pathethic monkeydonian piece of shit,-1 +yeah what a wicked paid ass hole,-1 +hi phill the shill oh and you know what you can do er fuck off mh ghouta phil the shill will spread lies just fuck off,-1 +blocking me i dont understand you re motivation for blocking me you say i made personal attacks and the link i followed was the qiyamah talk page i presume you mean my comment that universaliss was vandalizing it im not sure if you were confused or simply refrained from viewing his last two edits his last two edits were what motivated me to my accusation he replaced the page with utter nonsense after you block me you didnt even rv his vandalism i assume your decision to block me was an accident but it does seem suspect especially considering your recent and persistent need to engage me in convos which really dont concern you woohookity and that vfd consensus i read your comment at southerncomfort s talkpage and i think you should know that i have not mislead her as i have never talked to this user you said you block universaliss for a week do you mean you block him her yesterday and this will last for a week no matter i simply want that user to stop reverting to old outdated versions of the page which contain grammatical and technical inaccuracies stop the personal attacks and religious attacks towards protestants jew s and ahmadis and stop deleting information that he she disagrees with i really dont think this is asking that much in terms of diffusing the situation i tried to add in a passage that all parties could agree to his response was too massively delete info in various sections and add in comments like you fuck ing troll august utc,-1 +i bet uber here would love to shove that rotting green foot up his pussy,-1 +you sad cock suck stop editing my article otherwise i am going to report you and sue you,-1 +go fuck yourself you faggot,-1 +shut up mind your own business and go fuck some one else over,-1 +but unfortunately i had to undo your edit s because i believe the article was better before you made that change feel free to contact me directly if you have any questions honestly that s what i call a cool story bro such a riveting tale i honestly copy and pasted it to word saved on my hard drive backed it up on a jump drive drove to the bank put the jump drive in the safe deposit box and will leave it there until my kids turn about when they can actually state their age and ask what it is i m showing them when i will pick it up put it in an old usb drive reader and relay this cool story to them and tell them kids this is what a cool story should look and sound like not like the stories your generation tells don t unedit my wikipedia entries ever the fuck again bro and by bro i mean never my bro fuck ing phaggot,-1 +orgy orgy penis pecker fuck stick,-1 +miz cut the shit son stop reverting the changes before you are reported to the admins,-1 +i will return in a few hours canuck to wreak havoc on your faggot canadian ass,-1 +fuck you ckatz you are german cock suck and fuck er mother fuck er,-1 +incest pornfamily incestincest sexdad daughter fuck ingmom son sexincest cartoonsbrother sister sex,-1 +get a real job bitch,-1 +wikipedia at it s finest i want you to cry me a river build a bridge and get the fuck over it bits andpieces,-1 +fuck off do you always go to random peoples edit history to randomly revert their edits ass hole lygophile has spoken,-1 +this subject ponders my imagination i say fuck it fuck splitting this fuck edy article we eve already fuck ed up this article and we do not need to fuck it anymore please save any more fuck from happening sincerely a little fuck er,-1 +don t worry john is a stupid fuck,-1 +you re such a slut,-1 +go fuck yourself you sick twisted sack of shit e,-1 +don t bother gwh is a huge piece of shit just forget about him and move on,-1 +so we meet again you probably don t remember me but i am here to make you pay for what you did to me ass hole,-1 +your a grade a ass hole,-1 +racist are you crazy i thought that you were off of my ass already what did i write that was racist have you actually read the other crap that i posted in where is the block on them now those comments are racist the articles themselves are racist the article was about race so what else would someone write about use your brain woman don t be so quick to use your blocking powers just because you don t like what i write also stop watching me i am getting tired of posting comments worrying about the usual clowns on my ass the others have left me alone for a change so i was shokced to see you again and here you come again maybe you need to read what i post instead of just trying to block someone because don t like what they wrote i wrote nothing offensive and it was in response to the article and other responses maybe you are one of those white hispanics and you don t like anyone calling you anything but white wise up,-1 +suck a fuck please suck a fuck,-1 +hey ned hey ned why don t you actually do some fuck ing work on this encyclopedia all you care about now is who is block un block,-1 +hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my nahi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt mhi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt ehi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in life i am a sad little cunt hi my name is monkeyman and i am a pedo and i need to get a fuck in,-1 +hey ricboom who ever the fuck you are if you go to my schoolim gonna beat the shit out of you,-1 +suck suck ing that long di k of those chicken fuck ers,-1 +you better pray for your account because i am going to have you banned indefinitely you sick bastard,-1 +fag stop reverting my edits or i will kill you,-1 +cream my pussy sexbot,-1 +recommended deletion since lack of noteworthiness since no one carries much less watches this piece of shit channel can we pretend like it never existed in pussy liberal land by deleting this faggot page thanks go fuck yourselves with your micropenises pussy s,-1 +target you are now a valid target you nasty little shit,-1 +fuck you my edits were legit paula deen is fuck ing obese dude it s a fact what s your problem look at this inane list of rules at the top of your page also go get laid bro,-1 +your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt,-1 +aget a fuck ing lifeutosigned,-1 +your a stuck up arsehole have some fun for fuck s sake you little cunt,-1 +you stupid piece of shit,-1 +dts nothing was varified and you re a fuck ing idiot the only reason why he s dani d m on twitter is because it s twitter and the name without zeroes was taken go see their record label http w victoryrecords com designtheskyline where it clearly says his alias as such to dani doom and consider getting a fuck ing life,-1 +don t try and get cute with me you faggot i know the bible ok john for god so loved the world he gave his only straight son so that those who slept with women could be saved and those who were prone to ass sex would burn forever in the deepest pit of hell,-1 +epoynme shows me there are worse users on here than you that guy is a really racist and really dumb fuck,-1 +shit and lick it off and suck my own cock,-1 +is a gigantic ass hole is a gigantic ass hole,-1 +i take the liberty of calling u a faggot t a second time sir,-1 +i got refresh times faggot,-1 +on behalf of gen m ay go eat a dick saxifrage,-1 +masturbating with custard i heard it was poplular for white people can some white boy comfimed this,-1 +piss off homo no one wants to hear from you also hahahahaha you can t get married ass hole,-1 +bastard s i said nothing about changing it that was not a complaint,-1 +fuck you i ll just make another account you re a piece of shit sorry excuse for an administrator,-1 +d d d d d d d d i hope you liberal faggot s die and go to hell barack obama,-1 +hola fuck er hola fuck er,-1 +go f yourself you are so typical of your type the hypocritical ignorant child editor i highlight your arrogance stupidity and laziness and what do you do alter your talk page to remove it and then have the sheer gall to send me a warning try spelling hypocrite but then that would require an education before you remove this let me say little hypocritical hitler s like you make me vomit,-1 +nah don t listen to those remises vandalise the fuck out of that shit bag kinu s talk page,-1 +go fuck yourself you little pinko commie bitch you little fuck ing year old kid go pretend you know something about the world elsewhere little fuck ers like you make me laugh full of ideals and absolutely no real world expereince to back them up you swing your fuck ing little dick around wikipedia like it actually means something you are nothing but a piss poor joke i guess it is fitting for a fuck ing communist to block me on my own talk page in a subject about the death of liberty oohh no you block me what ever shall i do oh i know how about i change my ip address lol like this is my real ip anyway you didn t think you were dealing with an amature did you rookie mistake,-1 +you are a dumb girl shut up you stupid ass hole i was just putting information that i saw from other websites such as top ten bloodiest battles of ww ww is the deadliest conflict in history so why are you putting that muslim conflict in there that no one has ever heard of,-1 +bigot alert knock off the racist bull shit this is the most pathetic thing i ve ever seen,-1 +info i added some info to your user page baout your gay affair with american brit nad your large butt if you dont mind just want to know is the sex between you and american brit good,-1 +and not arguing semantics is the last defence of someone who knows they are wrong or won t admit they are wrong if i understand agk correctly he believes i was attempting to be malicious he assumed i was saying something that i wasn t trying to instead of saying it was not constructive which is untrue and not blockable he backed his block by implying that i meant something i did not there are no semantics about it agk simply does not believe me when i say it was simple wordplay so how about you go tell everyone in that section that it was not collaborative it obviously was since they responded agk is the one who had a knee jerk reaction to it all that was needed was dude cancer can be taken the wrong way strike it or get block instedd he waited until hours after i had edited to make a hour block so don t argue semantics with me jusitify your poor reaction not punitive my ass,-1 +gonna fuck you up you little bitch,-1 +escape orbit you are fuck ing moron,-1 +aw does big man get vewy angwy when piggy make fun aw that s terwible masterbatingky i don t think you re stupid because of grammar spelling etc i couldn t care less about those things on talk pages i think you re stupid for other reasons but we re supposed to be nice to each other apparently or else we re going to get banned and you know that i can t have that since wikipedia is everything to me i must say however that i m starting to get awfully turned on by you repeatedly calling me a faggot if you re ever in the dc area and want to look me up who s your boy i m your boy big boy and you know it yo thanks,-1 +you re a faggot wiki lover sitting on your ass all day for some gay wiki credit you suck you fail at life and have a small penis,-1 +another moron who thinks it s below him to do even a simple google search e g http w google com search hl en safe off q thomas cannon homo sex ity btng search,-1 +m w hate ver you re an stupid redneck hillbilly who is too uneducated to understand the most basic axioms of logic defensive gun use cannot occur more than percent of the time you re also a liar since it doesn t say million the article says million enjoy your fraudulent encyclopedia you intellectual fraud i hope you enjoy mastrbating to your gun collection at night and your middle school education which thinks it s possible for there to have been million gun uses it s not even logically possible for there to have been a million but you have zero intellectual honesty or integrity and you might be the single dumb est two individuals i have ever met wikipedia is truly the last refuge for idiot s who failed out of their formal education and cannot understand the most basic elements of logical argument and you had no business removing all the other well sourced content i added showing that there were only actual cases reported god how does someone as stupid as you manage to live,-1 +okay that was gay like me absolutely uninformative gay like me im gay mutha fuck a o i want sum cock ass hairy balls im gay,-1 +moron the usa has only of the worlds population the other use metric exclusively and most of this is in imperial measurements dumb fuck ing american,-1 +hey what the hell is wrong with you why do you keep deleting my article without telling me whats wrong,-1 +beitch anna likes to sukk ma dek,-1 +do you do this administrator stuff for free who works for free only dumb cunt s,-1 +this article suck s woo woo wo,-1 +he suck s sceptre s cock,-1 +first of all place your own picture with turkish bloody yataghan instead of hrant dinks second you fuck ing bozkurd if you do not know armenian history then do not stick your nose in armenian affairs typisch tyrkich ass hole because of idiot s like you innocent turks are being hate d all over the world you ass hole cant you behave in wikipedia and you call yourself a doctor you are a doctor jackass fuck ing loser,-1 +try harder wikipedia wankers,-1 +bare behind bars you gave me a level warning what the fuck is that all about you one of these power drunk admins,-1 +intervei can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here,-1 +you suck you suck and you know what you suck don t you,-1 +you are a fuck ing idiot come to my place and i ll kick the crap out of you you worthless piece of shit,-1 +get the hell off my page idiot,-1 +yeah but you suck at life,-1 +wah wah why not tell that communist faggot jeffrey to fuck off and quit being a shit face,-1 +rarelibra is just a troll on this issue can t say i m sorry to hear he is going to iraq he is simply obsessed to have it his way and only his way bolzano bozen and alto adige are all legitimate terms south tyrol is just another one of the legitimate terms and in fact the most recently used as a political name people like rarelibra should be ashamed at their one sided and only one sided view iraq eh i guess karma is indeed a bitch,-1 +f y stands for fuck you dumb ass,-1 +comments such as u annoyin biitch why u keep on revertin wat i jus did smh loser ass cracka who wanna be puerto rican and you are a cracka a biitch are completely beyond the pale here don t do it again,-1 +dunno who the fuck you are but evidently you completely misunderstood the situation don t post messages if you haven t got a fuck ing clue what s going on,-1 +litter act sect is shit try qld model with amendments i am sick of your political crap in my letter box,-1 +bye lmao u wasz right i really is gon he act like i care if i get block im out dhis bitch lmao but i logged back on see wat u sed ima miss u tho u neva get on myspace i ll give u my numba on thur by bighead,-1 +your a fuck ing faggot you internet thug get off federlines nuts,-1 +how the fuck did you do that damn ur fast you must get a shit load of ass,-1 +rr you re at rr again mongoboy seriously how long are you going to keep this up until the unlikely event that you ever get a girlfriend or job and have to move out of your sweaty mom s basement why don t you fuck off to the wikipedia of w hate ver language it is you actually speak perhaps your stupid edits and spectrum disorder would be appreciated there i doubt you would last two minutes at wp de because they would not put up with you anything like as long as you ve somehow lasted here,-1 +oi wankstain fuck off you ignorant cunt yeah revert this you arsewipe revert me lolololol cock suck,-1 +the article clearly suck s,-1 +listen here fuck er illythr if i ever catch you on wikipedia again you ll have big problems at siemens where you work,-1 +change to gill coliseum page you are a fuck in douche bag and any one who has ever been in gill can see that there is a mural of those players on the south wall it does not need to be referenced because it is true and can be seen with the naked eye one does not need a reference to say something like rocks are grey you are a fuck in faggot and should leave oregon the united states and the internet immediately,-1 +hi please unblock me you cunt i want to tell wikipedia how you suck off dogs,-1 +hell bound fuck wit hu you are a fuck wit who belongs in one place the lake of fire in hell it is because you are a nutcase and an untermenschen faggot,-1 +who the fvck wrote this article wtf are you writing about her sex activities you are disgusting,-1 +tomica i say fuck ing bring it on you ve over stepped the rr which you was recently block from so if i get block i sure as hell will take yo ass down as well,-1 +everyone should question authority especially jimbo fuck ing whales,-1 +no how dare you vandalize my talk page faggot fuck,-1 +homo sex like you are faggot,-1 +i think your just a cunt t,-1 +ass hole i just read this article and man was hitler an ass hole,-1 +fuck you fuck you you re a stupid nigger lover go fuck a dead moose the fortyfive,-1 +stupid dumb shit goddamn mother fuck er,-1 +hello your such a fuck ing freak mate get a life and get a facelift you ugly cunt,-1 +category sikh history user sikh history where my old section gone u no sikh history gezza its true waa i sed blud u r full on shit on wiki pedia its true r user sikh history have you got any shame what is the sikh history is fuck ing waste man sort your life out and sikh history out waste man user sikh history what da fuck u on about contents or templates from wikipedia as you did to hunjan am hunjan my self yes i am proud ramgarhia boi u waste man talk its up to me it my page hunjan not yours waste man plz do not touch hunjan template talk millinos of hunjan looking at hunjan template not just me other hunjan will fight back your concept of art full on shit tharkarn and what waste man,-1 +hey man you should really get a life you sit on your lazy ass all day you don t have a real job get a fuck ing hobby besides acting like a damn hero everytime you take away someones humorous edit block me if it makes you feel any better but i dont give a shit and a half,-1 +why are you such a jerk,-1 +sitush you are an ass i do not know who let you loose on wikipedia ncrt textbooks are writtin from the sources in the india office archive every historical work including that of seely depends to some extent on primary sources that work has been published and the authors of the singahi article have cited from it these are spurious and non academic grounds of objecting to the article its just making mischief i invite anybody from a higer academic background to examine all sitush edits examining sitush talk edits all over wikipedia as i have done establishes he is a menace and taking wikipedia backwards sitush i suspect you are just a year old kid treating wikipedia as a toy,-1 +jasper deung wat a phucking tryhard,-1 +this is totally pseudoscientific the scythians have a indo european origin not semitic and you is a stupid nig ger with very big envy against western eurasians,-1 +hey why the fuck did you have your talk page semi protected,-1 +ass wipe editor yippee yehaw okie dokie no more vandalism for me thanks,-1 +summerphd marnetted and several other editors suck enormous amounts of cock they re faggot queer douchebags who go on a power trip because they re wikipedia editors even though that means that they re doing nothing with their lives and still live in their mom s basements what fuck ing losers hahaha i already have another account who can edit semi protected pages they re just fighting a losing battle douchebags,-1 +your edits are wrong so stop this stupidity mother fuck er,-1 +please see a picture of my balls i am uninterested in your little internet power games you can eat a dick you are way late seeing as that other dick already both berated me rudely and erased my article about my friend you are just pretending like your life has some meaning,-1 +my user page fg stop freaking deleting my user page jesus christ every time i write it some of you lazy dumb admins have to delete it whut am i supposed to write about myself in order not to delete it dako,-1 +apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us,-1 +suck it james http manson hate rs blogspot com you will be featured here next ass hole trample on the rights or others until you cream your pants but it won t change a thing i am above all of you,-1 +i agree this crazy bastard should be punished,-1 +wtf you temp block me for,-1 +pandas can suck my fuck in balls so can your sister,-1 +i like jbgordon he has large penis unlike small jim,-1 +you re such a pussy fairyboy block your talk pages from editing now ghandi,-1 +not and that s y the pics r on the internet ass hole s,-1 +i really couldn t give a fuck if i m block xd you act like i care i know it s true and the source is reliable and that s all that matters,-1 +ricky is a paid mole scumbag there is no question about this whatsoever look far back and it is this fuck kin scumbag removing every mention of william franklin bermender for many many months that is a fact and this pos needs to fuck off,-1 +hello does anyone want to play with my pussy,-1 +mongo is a mother fuck erer,-1 +at the risk of stating the obvious they re a british group centered in britain comprised mostly of brits working for a terriably british institution and the story of the group takes place largely in britain couple with this the fact that a lot of the people contributing are british and i think you have yer answer we could americanise it by throwing in a few cowboys and a car chase and they can all keep calling each other ass hole s we d have to remove any aspect of comedy from the article though i think we could swing it though what do you think,-1 +fine bitch that should get your attention,-1 +i m going to punch you in the ovaries that s right right in the babymaker get a fuck ing life,-1 +oh why dear johnny boy part one again do you want a fuck ing fight what the shit is your problem ooh he s personally attacking me grow up,-1 +last warning once again don t give a fuck mr dumb ass seriously you people who eidt these wiki pages are fuck ing whores i saw att he top of the page where it says if it is presented politely you ll look at it and change it if correct well maybe you wouldn t have to do that if you just actually researched what you were deleting instead of willy nilly deleting everything you see i fuck ing hope you get rape seriously fuck you to death by the way how much do you get paid to sit around with your dick up your fuck ing ass and un edit people s shit it must be alot because high paychecks make serious cock s go get rape you no refernce knowing bastard,-1 +paid kleargear fuck face look at this fuck kin goof s track record on kleargear,-1 +mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch mattythewhite is a bitch,-1 +i fuck ingg love tacos there the fuck ingg best bitch h now suck k my dick,-1 +hey bitch why d you create a gay ass site lke this dead fuck,-1 +goodnightmush i have two words for you go fuck your self it you don t beleive what i m writing as i said fuck you fuck your mother fuck your sister fuck biggy fuck junior mafia and fuck your crew,-1 +now i get your problem you really don t understand what you re being told so when you call someone an ignorant ass you think that your own self was just mocked first did i call it confusing no i said that you just mentioned it for some reason with no relation to the way it was told or the situation and i said that it was a reply to you saying that vandalizing as you accused me when reverting my contributions by writing cum leave makes no sense and your wp status is relevant as i want to know who the hell are you and what do you want and think when you keep submitting blocks to my user as well for keeping reverting my talk page when i m trying to get it clear i don t need this discussion and i wasn t talking to you and i m not an editor all i did was improving that article i ve seen and that s why you re even more annoying and less helpful,-1 +haha your so funny you sit on wikipedia all day making sure everything is perfect you piece of sh t,-1 +it s unfortunate that your mother didn t quif you out the day she was rape by the pig you call a father you sodomite bible thumping nazi steve it is unlikely this individual speaks for or belongs to the left nope can t you tell from the lack of education and the hate speach i am a right winger go dubya yuk yuk yuk,-1 +another self appointed moderator all victorians think their shit doesn t stink,-1 +cockblocker is a species of looser who takes pleasure in preventing others from achieving anything either the wikipedia subspicies goes around and tries to find faults in everyone s work keep being your bad self its not like by fuck ing up my article you hurt me when you strike water no trace will remain you see there are more cock blockers in wiki project than active contributors so it will never succeed anyway game attracts game so this project is doomed anyway by getting me block for example you are just saving me time its ironic how the harder you try the better you make things for me even getting my article deleted because of your spitefulness you may be actually helping me because you are stimulating me to action and you are foolish because you are acquiring dangerous enemies you are just lucky because unlike you i don t have time for virtual wars i actually have a life,-1 +burp please suck my ass hole,-1 +again i never asserted the greaseman s death since neturalhomer chooses to edit his user talk page to erase the past i will post the relevant exchange here he gave removing vandalism as the reason for editing it out his only tool is a hammer perhaps so he sees me as a nail perhaps your lie s about me you wrote final warning saying things like dc is his fuck ing employer and don t be a douche is a good way to get block fast tone the language down and pay attention greaseman ain t dead if you continue to add continued now lies to wikipedia i will report you to aiv and to your isp verizon stop now this is your final warning neutralhomer talk yes i did use the language on a talk page and if it will make the booboo feel better i apologize but who doesn t enjoy a nice summer s eve but you need to stop lying about me i never said the greaseman was dead only that his death had been reported by sources considered reliable by wikipedia standards a little attention to detail on your part would be much appreciated eve otherwise perhaps it is i who shall report you tell you what you admit and retract your lie and i will consider the matter closed fair let s look at your odd writing style if you continue to add continued now lies to wikipedia just what are you going for there i ve never put a lie on wikipedia contrary to your assertion anyone who lies about me can go screw your threat to report me to my isp for what eve is beyond pathetic two pops for yes report away now the admin who block me said that more than one reliable source was needed on sensitive matters he did not research sufficiently to reach a correct conclusion let s all remember shall we that i never said that greaseman was dead simply that he was reported dead there s a big difference and the fact that it was reported is not in dispute i never said greaseman was dead yet neutralhomer continues to assert that i did that is a lie i consider someone lying about me a personal attack under wikipedia guidelines is this a separate but equal or separate and unequal system the admin who block me wants more than one source that someone said something on the radio let s look at wikipedia s entry on cesar romero s personal life shall we there is no source cited for his death nor his homo sex ity yet those are all sensitive topics are they not why doesn t neutralhomer report the author of this page for vandalism the fact that neutralhomer claims that dealing with me gave him a migraine on the talk page of the admin who block me demonstrates that this is a personally based effort on his part to recap i never lied i never vandalized that should be enough now let s look at wikipedia s reckless report of cesar romero s death and homo sex ity shall we sensitive matters no personal life romero believed in liberation theology romero was very christian yet still believed in a utopian society whose belief is that christ s kingdom would be very similar to marx s envisionment of communism and held to this belief until his death romero always claimed his grandfather on his mother s side was cuban poet and patriot jos mart although his mother s parents were legally carmen and manuel mantilla with jos mart as his godfather there was some speculation that maria was fathered by mart who was a boarder in the mantilla household but he never claimed maria as his daughter in his lifetime romero was never married despite proposing to at least one woman romero made regular appearances on the hollywood social circuit usually in the company of an attractive actress and he was almost always described in interviews and articles as a confirmed bachelor romero discussed his homo sex ity in a series of interviews with author boze hadleigh with the understanding that they would not be published during his lifetime romero wore a man s tennis bracelet inscribed with his favorite nickname butch the term was reportedly bestowed on romero by his one time dancing partner joan crawford who teased romero by telling him you re so butch while romero s homo sex ity was an open secret in hollywood the movie going public was unaware of his sex proclivities and there was never any embarrassing scandal surrounding his male liaisons which shows the care and finesse with which he conducted his private life for more than years romero was a mainstay of the hollywood social circuit until his death in he was interred at inglewood,-1 +are you the tosser behind the closerlookonsyria you are a fascist putinist shill and liar you fuck ing idiot you think shabiha nothing to do with houla russia nothing to do with mh assad regime nothing to do with ghouta you fuck ing fascist moron,-1 +tell me how big your boobs are and then i ll stop,-1 +douche bag sarah palin is a cunt,-1 +a book search for get you gone you dwarf shakespeare s equivalent of fuck off you drama whore reveals quite a few hits discussing them in depth so i dare say something like list of shakespearean insults does have potential talk cont,-1 +and why the fuck you say fuck you up there fuck you too man,-1 +i think the million sales is total bull shit though talk me,-1 +well you know fuck your idea of notability and fuck your line i make this art for others and i don t ask for anything in return so if wikipedia cannot deal with my artistic practice its most probably as corrupt as the fuck ing system itself don t excuse me for my language i make my own choices and if i must make money to be considered notable then fuck the world too,-1 +i agree at least i can t get block for typing true shit on my own page all the admins are gay i run this shit,-1 +hi fuck you faggot,-1 +why arr you so fuck why are you so fuck ing shit,-1 +fyu jesus h christ sorry if you re a jew how abusive from you you disgusting pile of shit,-1 +i hate free speech it is shit,-1 +you are a bunch of fools and idiot s you removed my last post because it revealed what fools you are this is obviously a one sided match as i do not have sysop administrator rights if you don t like what i post then don t read it let others decide once again this is wikipedia censorship,-1 +shut the fuck up and go suck your dad s cock,-1 +the safavids were neither kurds nor georgians or persians they were pure turks descendants of the great hsuing nu and k k t rk empires all great empires in asia were turks turks were creators of culture and civilization these bastard and dirty iranians want to claim all turkic achievements while they oppress millions of turks in their dirty country they even claim that the great turkish hero babek was persian while it is known to every scholar that even their king bahram chobin was an ethnic turk they even claim ibn sina and mevlana rumi although they too were pure turks these bastard iranians need to be banned wikipedia is better off without them these stinky idiot s,-1 +hi gay bo hi your m gay i hate r you your a girl and your stupid ill give you a virus u rfvbn j s shutdown trojan horse be cdt w cfg ikldgni ajkbut licker u stink ykk tb,-1 +fuck off quit lying to people chumps,-1 +as for http en wikipedia org w index php title becky gable diff oldid this i also just asked if he s stupid why because he keeps reverting my corrections to my own mistakes tell me how stupid is this rate,-1 +edit conflict lmao oh man i swear crnagora has got to be dumb est thing on side of the planet he s also muslim says he s montenegrin incidently that huge montenegrin eagle s holding what in one of his talons oh a cross,-1 +your just a stupid red neck and you make no sense to us much smarter yankees,-1 +no friends i spread my legs for money i work the corner down on main street bjs are half off suck on my d,-1 +mousercise is the title of several disney productions granted yes they are links but to photos intended for that particular entry they are of the album the tv show and the video respectively of course a stupid bot would not know this i suggest a human review the data personally talk if this is a shared ip address and you didn t make the edit please ignore this notice well images on wikipedia aren t included with the img img tags on forums but rather using syntax also they actually have to be uploaded to the wikipedia servers itself via wikipedia upload further don t call people holes in edit summaries it violates our policy against personal attacks veinor talk to me i don t know how or where to add them for use in the entry and your reverting instead of doing what is needed is starting to piss me off talk this is your last warning if you continue to make personal attacks you will be block for disruption ed edgar last warning try only warning talk i said above don t call people holes in edit summaries it violates our policy against personal attacks if you can t read it that s your fault not ours and i also showed you in that same paragraph how to upload images if you want help you only have to ask veinor talk to me you must be logged in to upload files so in other words i have to sign up just to add things to entry to hell with that this place can rot for all i care talk if you regulars are too damned lazy to add photos and instead want to force others to have to go through the bull shit of signing up just to add things to one entry then f o a d i m not signing up for shit take your site shove it where the sun don t shine and go to hell,-1 +no more this shit ok russian friends you vandalized the article once again with your stylistic history laquering as well as with brutal deletions and inadequate templates i m getting tired of this shit do it again and i ll fulfill this threat btw another external link for you to consider your behaviour alex bakharev please think about mentoring your compatriots in order to avoid a massive pr problem for russia here on wikipedia worst wishes,-1 +plus you are all gay for questioning this bull get a life,-1 +go fuck yourself allahu akbar,-1 +you are a piece of fuck ing sh t fuck you i like to change wikipedia so back off poophead,-1 +let s see her tits lol i have no penis,-1 +why are you a bitch i put a constructive post and you changed it your a bitch,-1 +where do you wiki freaks come from first of all it s my own fuck ing page i don t give a shit if i tell myself to fuck off second what program do you people use in order to squash people s contributions i feel like being a nazi too,-1 +unblock me you ass hole s unblock hahahaha one of my favorite and most vivid memories was of a party i attended in high school it was near the end of the year and everyone was letting loose the party had not gotten too badly out of control and was finally winding down i was dating karen at the time we d been going out for about six months we knew our time together was growing short since we d soon be heading off to college she to radcliffe and i to johns hopkins we were taking every chance we could to be intimate i d been with a few girls before but karen had been my first long term intimate relationship and we d taught each other lots the party was at keith s house and we were helping him clean up there were only six of us left karen and i keith his girlfriend linda tom and his girlfriend sue linda lived just a few doors down and had invited karen and sue to spend the night tom was going to spend the night at keith s house conveniently linda s parents were out of town until tomorrow noon so nobody really had anywhere they had to go and once we d done a fair job of cleaning up we are able to sit back and relax keith was my best friend we had a lot in common even if we were a bit of a mutt and jeff in appearance both of us tall i had a wide body result of my hawaiian ancestry while he was lean and blonde i m but he had a good inches on me and had long hair past his shoulders mine is brown and curly and usually just goes whereever it wants i m strong as an ox he s lean and fast but we had similar taste in women on more than one occasion i teased him that there was no way he deserved to be with linda our high school goddess and he was extremely envious that i had karen our big breasted sex bombshell as my partner karen and sue were close friends if we d had diana here the triumvirate would have been complete they had all been innocents until that year diana was dating and karen told me that she and ryan were almost there doing everything except the final act karen hadn t done much of anything until we d gotten together but we didn t let grass grow under us and we made up for a lot of lost time we d had sex plenty and she d suck ed me off more times than i can count i d even fuck ed her incredible tits a couple of times sue it turns out was the late bloomer she was still an innocent according to karen kissing was as far as she d gone although it seems she d rubbed tom s dick through his pants and he d had his hands on her mound even if the underwear was still in the way but karen was hinting that this party might be tom s lucky night we were joking about some of the antics that had been going on at the party linda in particular was a lurker she d sit back and watch all the activities at the party and was always good for a few laughs there were some really desperate people here tonight she said can you believe gary tried to get a game of spin the bottle going i can t say i really blame him i answered with a grin not every guy there is as fortunate as us to have such gorgeous girlfriends or any girlfriend for that matter hell i wouldn d mind playing it now that earned me a poke in the ribs from karen sue chimed in why is it that every party ends up with some lame guy trying to start some stupid game like spin the bottle post office or strip poker now that s a stupid question keith answered and why is that linda asked pointedly isn t it obvious keith replied no linda and sue answered in unison do you want to tell them keith asked me with a nod so i explained the obvious because they are desperate and sometimes it works oh please karen said keith was a real instigator you guys have never played spin the bottle the girls looked at each other maybe a few times but certainly not in the last year linda finally answered and how about truth or dare keith continued egging them on well sure but usually only with people we know really well karen answered this time usually keith echoed with a grin and it s not like you ve never played strip poker the girls looked at each other quietly no one answering oh come on i teased karen i know you ve played strip poker not really i watched part of a game but then they chased everyone not playing out of the room why i suppose you ve played it she asked with a dangerous tone in her voice sort of in camp we started a game but it got raided before we got anywhere i confessed drawing a laugh from the guys l,-1 +tide rolls is a fuck ing moron he needs to go to hell,-1 +i wasn t talking to you jerk so your sucj an idiot you cant even realize when someone is talking to you no go back to your trailer boy,-1 +what exactly does saying how are you nigger s today have to do with this discussion nigger is a far more inflamatory word than homo is there are far more derogatory terms for homo sex s than homos that would be on par with nigger but i did not use any of them and whether admins are stupid or not is equally irrelevant i was block for hours for doing what an admin said if saying homo is the cardinal wiki sin at least shorten the block by the hours that i was unfairly block,-1 +oh yeah let s be nice to that fat whore sherrod and not link to something becuse it makes that crybaby scum poop in her pathetic diaper,-1 +shut up i fuck ed your mom s pussy good,-1 +fuck you fuck you retard son of a bitch your ass is bigger that goatse u suck dick at the same time and drink all the cum your mom worked as a prostitute to buy condoms for your dad that fuck ing retard you are a failure at all you do you should jump from the top of the empire state so the world becomes a better place you are the reason of the global warming you fart so much you drown everyone is with in a room you waste precious oxygen that should be used by better people you suck like all wikipedians fuck you ed,-1 +fuck off jack,-1 +im block bitch,-1 +and i thought you were one of the nice guys you rude jerk,-1 +rome is gay rome is gay i hate rome,-1 +fuck off you spastic i can access this via a proxy using one of home computers or one of at work in countries plus libraries mates computers internet cafes both at home and abroad on my mobile at pc world or other such shops basically anywhere i like are you going to ban everyone from editing how many fuck ing mistakes are on this site anyway billions look at me i ve no friends and i wank myself stupid every time someone famous dies as i must be first to update wikipedia you pathetic hitler in a wheelchair bastard wank my shit ter knobhead,-1 +hello i made constructive edits i know you think they weren t but i guess that makes you wrong it s okay mistakes happen but you should back down and make sure they happen less okay our public trans it systems are going down because of leeches like you keep on suck ing loathsome prick from hell,-1 +fuck you you are the biggest pig on the planet die in hell ass hole,-1 +try these important things and maybe you won t be such a suck mother fuck er learn how to spell if things remain as they are everyone is bound to consider you to be the ignorant lame brained cult member you are revert your attacks on van tucky on the talk pages you come off as a vicious vile psychopath if you ever set your cult defending ass in a court of law the jury would see through your charade in heartbeat stop playing good cop bad cop with your fuck ing retard ed dahn hack forestgarden accept all korean language sources you stupid bitch how dare you try to stifle and censor articles in the name of your fuck ed up cult your forestgarden bitch believes its within wiki policy to include korean language articles when reporting on favorable aspects of your bitch master why don t you include all the other more negative portrayals in the korean language also who said this itsahappyday fuck head deserves to trans late any korean this should all be disputed you fuck ing racist neo nazi reject stop using the word cynical to describe your enemies you come off even more retard ed than your ilchee bitch master your philosophical maturity is less than that of a first grader the world is cynical those who don t believe in dahn are cynical i can t wait until south park makes an episode about your bitch cult are you fuck ing insane korea is the center of the universe korea as a cultural hub korea the place where the next messiah appears you dahn people never cease to amaze when it comes to your thought processes korea is not what your ilchee bitch believes it to be think about it retard the fuck ing nation of palau has more of a right to talk about religious heritage than the fuck ing hermit kingdom how can you be so retard ed that you choose a korean cult if you chose a chinese or indian one at least it would show you have some portion of a brain coming to korea and joining a korean cult with korea centric views is more retard ed than travelling to antartica in search of good coffee while visiting columbia in search of ice and snow one more time the philosophical underpinnings of your shit cult are so flimsy i must question your intelligence nicola cola what kind of bitch ass name is that what is wrong with you and you wonder why you need to join a fuck ed up cult to find friendship and loving dumb fuck,-1 +re get a fuck in job dude most all these i upped before you little trolls starting bitch ing about pointless rationale i barely edit shit anymore cuz of you faggot s so block me and make your point do you not realize this is the most pointless shit in human history you can t have album covers on here unless you type oh this is fair use because blah blah blah go asphyxiate on a cock,-1 +fuck you paul tibbit you are a suck ish damned piece of cow shit who thought it was fuck ing brilliant to rape spongebob and turn it into a mother fuck ing laughing stock i hate you paul tibbit you are a sick twisted little bastard i hope you fuck ing get aids and hiv at the same exact time and die within hours who do you think you are fuck ing peter griffin grow a damned spine and start makng good episodes you overwight douche faggot it s like all nick gives a fuck about is money fame fortune directors are idiot s and obviously smoke lots of crack while working on tv shows nick just wants the money they thing they can piss the world off with suck ass spongebob eps and still win money hell no not on my damn watch i hope nick gets shut down by viacom just like it did on directv fuck you directv,-1 +this user would love to suck the penis of jesus and to lick filthy balls son of a whore,-1 +d bag doosh doosh doosh doosh doosh doosh doosh bag bag bag bag bag bag bag bag cock suck,-1 +what i say nigger stop changin shit,-1 +i never said i did you ugly bastard get of my case you bitch whore piece of shit i said i have the right to post the no israel and christian fiction userboxes not the personal info you bitch fuck you fuck in fuck face this is why i hate the wikipedia system it makes it difficult for people to function you stupid shit face,-1 +fuck you nerd fuck you nercd get a life freak i will burn in hell now byy,-1 +bollocks to this you ignorant cunt,-1 +hey ass hole don t you tell me i m not constructive you re fat and your mothers a whore allahu akbar backdoor sluts,-1 +drop dead you re a cancer on wikipedia and i assume you re a cancer on the rest of the world as well your baby will do better without you,-1 +im going to punch jim wales one day ill find him then ill fuck ing punch him out,-1 +peter peter you little cunt hahaha you should be hung drawn and quartered then your organs dismembered and eaten by your mum who already eats some bodyparts hahaha shit what a cunt bye and merry xmas,-1 +i think this som bitch is fuck in nuts i mean who the fuck cares does this info help the yankees win the pennant no does it help me pay child support for my kids all of different racial decent no in short fuck this,-1 +get some glasses you mental faggot s im calling you the idiot s shit heads what the fuck k is wrong with you,-1 +smyou have a message re your last change go fuck yourself all,-1 +find a format that works for the refernces as in the middle of sentences looks fuck ing awfull use the notes section until a better format is found for reference markers,-1 +blockign anthony robbins you fuck ing moron you block the wrong person useless prick,-1 +who the heck wrote that crap explain why a forum devoted to schapelle corby should not be on her wiki what sets the other sites apart from mine my forum was the first and only schapelle support site for months who the heck are you to say it should got here you can remove it everyday and i will be back the next day to add it again ffs get a life,-1 +another possible sock of there may be another sock of afi punk and he s using a user account called he is continually reverting my edits and restoring capitalized genres separated by line breaks on album pages as well as capitalizing personnel roles lead vocals bass guitar when they should not be capitalized he has continued to undo my edits after being warned by both me and another editor saying this is fuck ing gay in one of his reverts i suggest a checkuser on this person meh,-1 +if not i m a fuck ing moron who should fuck off and stop being such an imbecile,-1 +likes to eat shit it s true he told me himself,-1 +your a pecker hey pecker head you deleted my article you re a jerk and you need slapped first i was not done i was working on it the moment you deleted it it did not interfere with any guidelines ether you didn t notify me before you deleted like you where supposed to i don t know what power you have with wikipedia but stop abusing it and get a life pecker jody shackelford also i am reporting you to wikipedia immediatly im pretty sure they have a no pecker policy,-1 +mojo hand is an idiot,-1 +jimbo wales suck s off daniel brandt i m just stating facts people,-1 +go ahead cock breath you will block thousands and i have several accounts with different ip addresses get a life,-1 +warnings you ass hole gave me mutiple warnings for the same thing and now i m on my final warning i hate you peice of shit burn in hell,-1 +and btw eloy are a fuck ing bomb ass band,-1 +stealthusa is an artise of the ass,-1 +jerk ill shwo you idiot i will finish your life you idiot for the last time there is no name to the cathedral that is it do uyou understand,-1 +i have know idiot s before but nothing quite like you avruch i do wish you would get a life instead of trying to fabricate the lives of others you could not get a clearer quote from a high court judge and my dad won the case won recognition which was obvious and won costs msds,-1 +fuck off from air serbia page vete a la mierda pendejo te voy a matar como una mierda de puta madre cabron pero maldito te voy a fracasar la cabeza y los manos y vas a recordar la pagina de air serbia toda la tu vida hijo de puta,-1 +john cena doesnt like ass sex he loves oral sex,-1 +user abd is muslim scum,-1 +hi i always lick wasted time r s ass because i m a bitch slapped pussy wimp,-1 +fuck you bastard consider this your last warning being a dick who do you think to talk like this on my talk page you piece of shit next time you do that i ll unscrew your head and shit into your neck and your gay friend falcon x fin is an ass hole too,-1 +i don t know how else to say this the article should stay up while you fix it also edit comments like kill yourself bitch will probably get you banned on the spot,-1 +aflis major dick head it is funny that you are creating a network of miss information and pushing gratuitous propaganda on wikipidea in benefit of the mpla communist regime all i have to say alfis or who the fuck you may fuck ing be is that it is with communist pieces of shit like your self that the world is fuck ed up and by the way fuck you communist lover,-1 +do i care you think i care about being banned ha it is rather quite funny i mean here he is the uppity administrator that imposes his power like a fourth rate superhero pathetic and all while believing that i give a flying fuck about being banned hahahaha it s enough to make an old man cry y see,-1 +and what action did you take against the idiot who keeps reverting productive edits absolutely fuck all by the looks of it what is worse for wikipedia me calling you a dopy cunt or edits which reduce the quality of an article is this a kindergarten or an encyclopaedia,-1 +i got pissed this mulatto fuck has been pestering me for the past year and all he does is try to get under my skin i fuck in hate this mother fuck in shit skin faggot sorry for attacking it but it should fuck in die i hate shaka,-1 +road good articles are a pain in the ass i ve asked some one involved with the project what needs to be done with the article to take it to ga the history needs to be there especially the early history which is missing it also needs more information on the road features such as intersections road width road markings etc the few sources i ve looked at haven t included this and the roads people tend to use google maps as a source for the major intersections part,-1 +laughing my ass off at attempts to distinguish between the queen or king of england and canada half of parliament the senate is permanently appointed by the queen s representative mind you not by the queen herself because she resides in her capital city of london yeah not london ontario either who s that on the face of canadian money again,-1 +i shall do as i please you dirty double nigger wikifag,-1 +blah blah blah you ve been block because people are sensitive pussy s who get hurt easily,-1 +reading more on admin priviledges aka wanking with the left hand all i can say is what a bunch of wankers you all are don t worry i ll leave you all to roguegeeks stupidity and incompetence and leave the wiki wanker world wikipaedia was a great idea fuck ed over by idiot s like you lot tossers,-1 +you must be stupid i am referencing an act people in power will do to prevent someone from saying things that will show them for who they truly are it s not a death threat you just want to look like a fuck ing victim my god this is ridiculous,-1 +trollop stop fuck ing your computer you meth adicted nazi twat,-1 +the tna fags need to stop buncha pussy s,-1 +kyle roby sex can i kyle roby is the sexiest man alive and he gets bitch es all the ladies want the d but hes not single so fuck off betches cuz yolo swag blaze it this school is full of cunt s hi hoe mataya likes hairy pussy and deepthroating abnormally curved dick,-1 +dude dude fuck you,-1 +fantastic another idiot who can t spell you mods really stick together don t you that s so sweet e tear,-1 +you re also a fuck ing shit the reason is sending warning to bad editors,-1 +shut up go fuck yourself you dirty cunt,-1 +dreadstar littlemountain and some jerk on the internet are retard ed ass hole s dreadstar is a pathetic nerdy little fuck with no prospects for ever meeting a woman he didn t pay for littlemountain doesn t have to worry about it because he s a flaming fag with an insatiable lust for semen some jerk on the internet is just a sorry piece of shit in general and if he keeps editing my page i m going to erase his page as soon as i get un block,-1 +don t worry i see that civility is more important to patrollers than actual logical discussion and debate of controversial issues which i attempted to engage in for months finally becoming exasperated when i received no help from other editors against a wall of nazi sympathisers patrollers apparently outnumber those prepared to engage in difficult debates having been convinced that wikipedia isn t worth editing and the freedom of the encyclopedia depends only on how many hours a day someone can devote to fighting with nazi s you can consider my flameout final and my disillusionment complete you and the nazi s have patrolled a good faith editor out of the system and i am fully aware that the main tactic is to grind down good faith newcomers until they flameout well fuck this,-1 +russian bitch es hands off the truth get out from ukraine get out from american wikipedia ukrainian soldier,-1 +edit damn i just lost everything i typed basically not trying to promote westside westside is not my comic when he asked me to create a site about it he s not great with these things i of course immediately thought what better than wikipedia wikipedia is too much of a hassle so i ll make a myspace or something westside will never be good enough i guess,-1 +long as in you re a faggot y jew,-1 +please fuck off,-1 +piss off suck my dick you pussy,-1 +i couldnt care less what you say fuck off from my talk page,-1 +then go look it up dumb shit and stop pissing in a sandbox that isn t yours since wikipedia is only words then there is nothing i can do but say it did you go and suck the stupid out of your whore mothers sagging tits i wonder i hope she gets rape in hell along with the goat she fuck ed to produce you god if this is the level of intelligence of the average wikipedia commentator then i m surprised you mongoloids get anything right damned,-1 +response i stand by that edit it s rude as all hell to slap very ugly templates all over an article and not even contact the author when you don t actually dispute anything in that article i stand by everything i wrote in that article and will happily provide sources for anything that is disputed but i m not going to waste my time because someone wants to be a prick,-1 +cyber demon i have met many citizens who agree with the existence of the cybedemon how dare you disgrace his eroticism you fuck ing cunt,-1 +smell my ass projectile vomit into my gaping anus my digusting shit filled cheesy anus,-1 +go fuck yourself fuck you,-1 +cut the ass bull shit you are the biggest ass hole in ass hole history you ass,-1 +criss angel is a cock suck,-1 +dude vandalism suck s you are so going to get banned,-1 +man fuck you you know me you anti semitic fuck tard jesus of suberbia,-1 +you know who we got here mutha fuck in charlie bronson you must think it s white boy day it ain t white boy day don t waste my mother fuck in time,-1 +go fuck yourself go fuck yourself you irritating sack of shit stop reverting me,-1 +ll ever be fatass go fuck your mom again,-1 +fuck you you suck leave me alone fuck tildes too,-1 +on your face and in your ass,-1 +you people are cock suck s you people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck syou people are cock suck s,-1 +fa q means fuck you to,-1 +you gotta be kidding you arrogant sob,-1 +re mere rubbish i also think it is mere rubbish but i also think it is not completely rubbish according to the southeast asian history most of the ancient rulers of this region are hindus some rulers came from persia map covered middle east greece west india achaemenid empire seleucid empire parthian empire and sassanid dynasty please look at the size of the map their conquered kedah is a good example where the king from persia came and eventually he built a kingdom in the old days it was slavery society no sultanate and no democracy yet all hindu rulers belong to higher class common peoples and the natives belong to inferior slave class the hindus rulers came from india and persia and they ruled most of the southeast asia they called themselves high class peoples the rest are merely slaves parameswara is a hindu ruler he is one of the descendants of the hindu royal family that belong to higher class of hinduism as for the macedonian bloodline this is also not completely rubbish in the old days the persian empire was so big they are so proud with king alexander the great also they ruled some of the southeast asian lands such as the angkor pasai etc parameswara later married pasai s princess and adopted persian shah and claimed as descendant of alexander the great i don t think all this is completely rubbish anyway please correct me i may be wrong too,-1 +block me then you co suck clever people don t give a fuck about editing wikipedia just because wikipedia has turned you into its bitch you can t see that being block is not a punishment if it happened to you it would be a blessing but you ll never see how much time and life you ve completely wasted because your brain is mush fuck in wretch now get back to looking at raw guest hosts and other childish wrestling topics you make me sick a grown man devoting his life to watching basted men in pants pretending to scrap did you enjoy watching randy orton s glistening belly button and atomic wedgie last week it s fuck ing amoebas like you that have kept this most pathetic excuse for entertainment going for all these years it should have died when all the redknecks finally found out it wasn t real how this can still be a viable business in this day and age but when there s enough people with flea brains so abysmal to sit there editing wikipedia most minutes of the day it s no real fuck ing surprise,-1 +you stupid chinese wannabe if you re vietnamese just admit it why pull little tricks like putting vietnamese characters in every chinese article you can find and giving yourself a fake chinese japanese name is even more pathetic rei hideki my ass you know i knew someone just like you he was vietnamese but he insisted he was really chinese he even changed his facebook name to some fake computer generated chinese name he asked only chinese japanese girls out and his profile pictures were of chinese korean celebrities he refused to have anything to do with non east asian people gee when do people like you ever give up i m chinese and i m very proud of it i don t pretend to be anything else what the fuck is up with vietnamese kids like you,-1 +guess what you are so fuck ing retard ed that down syndrome patients got nothing on you you suck so much balls that whores ask you to save some for them you can go fuck yourself cum than lick it out of your vagina and ass you swallow your dads jizz i fuck ing hate you,-1 +fuck you ass hole go fuck yourself dirty fuck in ass hole fuck in scum,-1 +fuck you all go to hell,-1 +back to bragging i see you don t even have a clue as to what my credentials are because ignore all fuck ing credentials we don t give a shit about anyone s credentials ok if richard dawkins and we were able to confirm it was him showed up then i might bow to his superior knowledge of the field but you re just some guy on the internet no different than i oh wait maybe not so all i can say is that you re fighting a battle by personal attack and not by logic you have a bug up your tight ass about me you ll note that i don t give a shit you have convinced not one of the anti creationists here of your arguments not one you focus on me because you realize i don t fuck ing like your methods so two suggestions get over yourself no one cares if you re a professor of anything at w hate ver religious university you re at two quit the personal attacks because you don t say jesus fuck ing christ you re a loser doesn t make you civil it just makes you passive aggressive like the little passive aggressive shit you left on my talk page talk contributions,-1 +stick it up your bottom as far as it will go then add another that should take the smile of your smug fuck ing ugly face,-1 +you are a fuck ing dick pseudomonas you do not deserve to live fuck ing piece of shit,-1 +feydey is a complete fuck ing faggot i saw that he was harassing you and thought to inform you fedey is a fuck ing douche bag through and through that ass hole reverts and deletes w hate ver the fuck he feels like just to make up for his tiny manhood that can t satisfy any partner male female or shemale pricks like him should gtfo wikipedia and just curl up and die in their mother s basements as is the natural order of things,-1 +web of trust it s not my fault some gay little faggot vandal kept editting the article and removing the link to the official website of the damn thing and adding like spam links that have nothing to do with wot,-1 +chestop adding in shit only to support your fuck ing political views your additions onto wikipedia are unintellectual biased and are only added to misinform and manipulate people into thinking that everything the republican party does is derived fromt he mouth of god you fuck ing piece of nigger shit either add constructive edits that use real sources or stay the fuck off of wikipedia would you like someone editing the george bush page with comments from michael moore or keith olberman no you wouldnt so show some respect and keep your political shit off of wikipedia fuck you you unitellectual piece of garbage shit fuck you nigger ck,-1 +guess you missed the part where i said not to leave me user messages i ll reiterate for you as you seem a little slow fuck off,-1 +you too you re also gonna get it dick ace,-1 +decline you re a fuck ing prick,-1 +piss off you obama loving douche nozzle he s not a us citizen and was born in kenya,-1 +good morning labour wikipedia fuck head,-1 +quit bein a bitch and talk to me,-1 +dont delete my poop bro back the f up,-1 +shut up you decaying brained piece of rape s t go tell your mental diarrea to your mom,-1 +thanks for your help but you re still a cunt,-1 +you obviously never attended college moron,-1 +goofs goof speaking of goofs who the fuck had the uh initiative to do this what kind of sick person watches the simpsons and checks how many buttons they ve got on their coats or how often they shave etc and especially on that last comment what is your problem you were measuring the breast size of a cartoon character why can t you just buy a magazine or something or possibly consider how close the shot was to her you poor lonely bastard,-1 +he called himself hand banana and attempted to rape me from behind i try not to speak to him anymore,-1 +you are a big dick ead your an ass hole it was not me you utter bellend,-1 +you haven t a clue you haven t a clue what vandelism is so fuck off,-1 +go to hell i e piss off,-1 +or what your gonna ban my ip what a joke dumb ass,-1 +lol w e then i was just trying to hlp out i dont know what this blcok stuff is or why you have block me for tryin to fix an articl but i know not to do it again this is pretty stupid imo you could have just fixed the fuck ing mistake,-1 +john baird page edits john baird is a fuck ing cunt so the edits are correct and should not be reverted many thanks many thanks,-1 +nightstallion is a cunt,-1 +how about you learn how to read and write during that time jamie continue or continued you dumb ass second of all you ruined what i wrote you idiot,-1 +u fuck u man u r a ass hole block me i hate wikipedia,-1 +can you go fuck yourself march gmt,-1 +omg this user page is so crap the stupid dog on the front is this comment was left for you by user camoq,-1 +lol you don t know who i fuck ing am we all know who,-1 +go fuck yourself shell i couldn t care less what a fuck ed up waste of space like you thinks since when could an editor not edit articles on wikipedia it seems you need to kiss a lot of arseholes to make a difference here now,-1 +fuck oh yeah you like it don t you don t deny it i can see your cock gettin long i wanna suck it like a suck til all the candy comes out preceding unsigned comment added by talk contribs,-1 +listen hear you c ck suck i am not vandalizing anything i am adding the truth i thought thats what wikipedia was for but i guess we got one to many assh les who think they know everything around here listen ajraddatz go fuck yourself and if you delete my posting again i will report your bitch ss,-1 +you suck headline text stop editing my edits you are a piece of crap and don t know how to use a computer you fuck,-1 +unblock well at least i m not a gay fag like you and your mom,-1 +editheadz will you keep your stupid mouth shut for once you have no idea not even a clue what you are talkign about idiot julius,-1 +epic fail ha ha ha ha failed again goodye bitch es ps fuck you,-1 +fuck user jujube fuck wikipedia destroy user jujube destroy wikipedia death to user jujube fuck user jujube fuck wikipedia destroy user jujube destroy wikipedia death to user jujube fuck user jujube fuck wikipedia destroy user jujube destroy wikipedia death to user jujube fuck user jujube fuck wikipedia destroy user jujube destroy wikipedia death to user jujube,-1 +hitler was a fuck ing kike,-1 +pure lying bull shit this is a paid censor,-1 +what part of fuck off don t you understand youi mouth breathing pimply turd while you ll never nag a hot chick you can be king of shit mountain it that it i laugh at you,-1 +dear stuttering self righteous self absorbed insignificant little puke when i want your fuck ing opinion i ll give it to you until then shut your fuck ing sewer and keep suck ing obama s cock,-1 +p e n i s,-1 +fuck fine you know what you idiot s with your heavy handed administration have just made another vandal happy good every fuck ing time i view wikipedia i m going to pop onto an open proxy server and vandalise the crap out of a couple articles then i m going to do it again sure i m just one person but i m one person of many who you jackasses have alienated enjoy you re bringing this shit on yourselves all the admins worth their salt have long left because of the shit that you in your little cabal have done you ve ruined this once great site go fuck yourselves,-1 +nutcase you re a sick bloody nutcase,-1 +disgust you sir are a cunt nothing more nothing less,-1 +say what tab bitch are you for real mother fuck er comes up and removes my mother fuck ing comments son of a bitch son that s not right at all fuck that s not even right in cuba someone needs to learn their ass some mother fuck ing restraint and common sense bitch ass nigger s can t be coming around removing people s opinions and shit that s the mother fuck ing gestapo s job if mother fuck ers think this the way to do things right than you mother fuck ers need to step off and learn some shit cause the way the to do shit right ain t erasing the fuck ing words you mother fuck ing crazy son you wearing blacked glasses i just tell you you re being the mother fuck ing thought police and you keep mother fuck ing doing it shit that s not right maybe your bitch ass needs to chill the fuck out some time christ on crutches it s fuck ing words kid they ain t fuck ing hurting you you fuck ing bleeding son i didn t fuck ing think so,-1 +bertie you re a stupid ignorant cunt do humanity a favor and follow in di s footsteps fuck off and die,-1 +fuck you fuck you that s his middle name would it have hurt you to take three seconds to google it or do you just want to be the world s biggest ass hole http w huffingtonpost com jerry michael blanchard s n html,-1 +look dude they came they saw they kicked crediton s ass coming straight outta khirton a bad mother fuckerucker fuck a named ice cube,-1 +wine guy has no penis except the ones in his ass cavity skeetskeet,-1 +yo why cant i mess up ur site no schools r allowed to use it cuz of fags like u,-1 +piss off you old timer go fuck yourself you evil ass hole,-1 +good morning wikipedia fuck head,-1 +if you block me i will just get another ip address ass,-1 +nazi s nazi s hijos de puta mother fuck er,-1 +oh cunt i have just evaded my block because i am the user of samlaptop oh fuck shit cunt i think i should be block idenfinitley,-1 +come on unblock me idiot i am telling the truth,-1 +no cats for you you re a dick go fuck a cat wait you can t even get that pussy,-1 +i did not say what you repeatedly say i said you have several times now said i should be block for calling somebody a cunt you have repeatedly made false accusations against me without a single time providing a diff i am well aware of what i have written and where it was written i have not called you or anybody else such a word anywhere on wikipedia the most outrageous thing in the diff in which you were block for was not your reference to cancer it is your persistence in spreading false and malicious commentary about me in that diff you say when nableezy had the balls to say that he knew someone was a sockpuppet but that he was keeping his mouth shut because he likes him it showed that he was here for one reason and one reason only post a diff that backs that comment up just one try to find one later on you say this time he called people cunt s could you please provide a diff in which i call people pl cunt s pl or even a person a cunt of course you cant but that doesnt stop you i dont even care if you are block or not i wanted an admin to make you stop making these outrageous accusations without providing any evidence earlier you made several allusions to various people who think i was socking you back out of it by saying im not the one accusing you just other unnamed people do as if that allows you to drop such an accusation with out one bit of evidence the other problems with your comment aside the accusation that you made that i breed cancer that cancer being sockpuppetry shows only how obsessed you are with directing fault to me you think i am the reason nocal or dajudem socks really i hoping that i am right will assume you say this because you are just unaware of the actual history as opposed to purposely ignoring or distorting it much of this happened before my time here but before i got involved in editing here i read a quite a bit of the history through article and user talk pages and archives afds ani ae an and the arbitration cases so i have a certain familiarity with the actors of this play and know the story fairly well once upon a time there was a user named isarig this user has had their account vanished to some things i dont know as the user s talk page is deleted and others dont need to be discussed but this user vanished at the start of the arbpia case the user already had a history of socking how much is one of the things i dont know this happened late early with his last edit talking place on dec nocal was created jan canadian monkey dec mr hicks the i is an older sock from sep there were a few others created back then all this before this monstrous creature you refer to as nableezy arrived and caused this man to start socking now as for your bff stellarkid the account dajudem was given a topic ban after the camera lobbying issue came to light in april one month later the tundrabuggy account was created one of the first things this account did was to go after in a purely vindictive manner one of the admins who had dealt with that issue she dishonestly posing as a new editor confused by the rules was able to game the system into producing several blocks or bans against that admin she followed him from article to article going away from the a i area into random areas such as persian history she was able to hide the fact that she was doing this for some time until she was discovered as dajudem s sock and block one month later a new account stellarkid is created posing as a new account confused by the rules this new sock proceeds to do the same thing she did with that earlier admin with a new target guess who she is able to successfully get a ban placed against her target when this account is discovered to be a sock a new account in fact several was created three separate accounts were block last time around including one with no edits just waiting to be put in to use so dajudem began socking prior to ever seeing me yet i am responsible for her continued socking and nocal i am responsible for dozen or so different accounts that i know that he has and that isnt counting the ones from isarig how can you possibly blame me for the fact that a number of die hard members of the defenders of the glorious cause have repeatedly socked but back to the point dont make accusations that you cant provide evidence for either provide a diff of me calling somebody a cunt or retract the charge same for the accusation that i knowingly overlooked sockpuppetry because i liked a user nableezy,-1 +really what the fuck the paradise edition first i added btd the paradise edition and its bonuses because there wasn t a article or section about it status came and deleted it saying seperate articles exist for a reason i was like okay kinda right let s create a page to show because for example rihanna s gb reloaded had its page only having new tracks so i created because that section is being deleted although releases which are on exactly the same format album ep cd rerelease gaga s and ke ha s the fame monster and animal cannibal having them on original albums the fame okay i knew it wasn t enough but i expected others to contribute however although a page reviewer zeus reviewed the page and didn t touch someone came and deleted the page now please someone tell me what to do because i really start to beg of this damn wikipedia games,-1 +is a dumb fuck racist undertale fan,-1 +fuck ing ape are you calling my mother an ape i ll park my wheel chair up your ass bitch,-1 +cheri you are an evil cunt and that chuck smith homo of yours is an idiot i keep sending sy silverburg e mail messages but he does not respond why is that why don y you explain your relationship to dr sy silverburg to nice people cheri did sy mention that most women tend to live as long as their mothers did,-1 +please remove this massacres bull shit those idiot s working with foreign goverments try to write shit on wikipedia all the time this massucure bs is nonsense it has nothing to do with greco turkish war some idiot s put that to overshadow the war there is no need some sneaky racist propaganda in wikipedia remove all the racist propaganda please,-1 +if you continue to misinterpret sources even once please note that you will be immediately block again you know what i tried to improve this shit fuck ing article and instead of getting help i get ass hole s like you threatening me go ahead and do it and fuck you,-1 +fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuc,-1 +fuck you y,-1 +prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator prick fire this administrator,-1 +fuck you hi netmonger because of you i am not going to edit wikipedia any more i dont care whether you are mystic or arsath or lahiru k the fact is raveens is the one who suspected you to be arsath now you too seem to be good pals wikipedia is too fuck ing complicated for me i am in sri lanka these days and was concentrating on my book so was inactive in wikipedia and i dont want to waste anymore of my time here thanks to you and my circle of untrustworthy friends fuck you,-1 +my name is reaper eternal and i am a stupid dumas small dik retard,-1 +we fuck um arab babiesum,-1 +ur stupid mate block me i don t care,-1 +fuck you george you get my point akhtak sharmota,-1 +the bot suck s no skills shut it down give it the old yela treatment it may hurt but it s for the greater good,-1 +who changes shit which shouldn t be changed,-1 +are you kidding me are you fuck ing stupid or something why in the hell should there be multiple articles written about the exact same thing stop arbitrarily removing edits to stoke your e cock,-1 +cockbag you herad me gay lord,-1 +i m talking about common names moron travers beaked whale is very rarely used almost every single new article used spade toothed whale or spade toothed beaked whale when writing about this species perhaps you shouldn t talk out your ass thank you good bye,-1 +go die in a fire i dont think anyone did more damage to wikipedia then you in the last two years goodbye hope you dont come back with a sock puppet which you almost certainly will,-1 +thank you i deeply and thoroughly apologize for the mischeif i have reaked on this knowledge sharing site please let me make it up to you by being purely positive and constructive and together we can create a perfect information sharing society bitch,-1 +you block me for a whole month you said only days why you fuck ing change it you poncy ego inflated nigger loving turd burglaring cunt lickers,-1 +yes douche but an article does have to be neutral happyme has consistently been aggressiv in keeping the nancy reagan article skewed towards her favor if you check that article s talk page you will see several admissions by him that he is clearly in her favor and that his edits to her article are aggressive in such a manner that there should be no question of his bias that you and other adtiors administrators have been so lax in blocking him for making non npov edits to her articleonly goes to prove again that wikipedia is nothing more than a media manipulated brainwashing machine fuck you wikipedai you just lost a user ever,-1 +then get rid of the stupid fuck ing brick count who the fuck cares how many goddamn bricks your fuck ing hs has jesus h christ this is the stupidest fuck ing write up i ve ever seen for a hs,-1 +that angle suck s find a better one,-1 +use one that doesn t round numbers up then ass hole,-1 +ok here s a warning watch out you re an ass hole,-1 +um go fuck yourself and you fuck ing scare tactic is so not working don t bother me again in the futre,-1 +why why do you block some users only by the fact of be suck puppet suck puppet are in wikipedia but is not motif to block you are a great stupid,-1 +yeah all you have to do is stop being such a bitch,-1 +if you ll forgive my pedantry npa means no personal attacks which means i can t say tom is stupid when somebody says thank you for an edit then reports me for making it that is stupid no matter what rules are in place i didn t attack the user i attacked an action something clearly allowed under site rules t c e,-1 +to lcnj you are an idiot i did not threaten you i removed these people from the list because the list contained errors and no article has been written about them no one cares about joyce gemayel or any of the other people you are adding as for wadih el safi and elias rahbani i ask you to write articles about them before adding them to this list also i don t think anyone who spends his time writing about bassem feghali is qualified enough to say syria assasinated these politicians,-1 +fuck you cracker nerd,-1 +ban the handle you fuck nuckle dip shit ban the handle you fuck nuckle dip shit,-1 +no thanks faggot i m fine right here but you might try going to hell you don t like to suck other people s penises yeah i had to be specific for you since you re so mother fuck ing retard ed i guess you re not a homo sex after all wow never would ve thought,-1 +what is wikipedia i fuck you and your fuck ing wikipedia in the ass i am tired with your shit i try to make the page aromanians better and much more real i am aromanian and i know better what we are not your fuck ing wikipedia you want to have a good wikipedia this is not good wikipedia this is shit to much informations are not real,-1 +fuck you you can t block shit don quixote how did i post this after being block and why are letting people delete user pages,-1 +zezen you imbecile which of those sources uses the phrase blood libel to describe what you cite please read wp nor and drop the stick c f e b f eb b,-1 +congratulations you just found something that is going on in hiphop since almost years fags bitch es oh come on the point is if you use that vocabulary mentioned you dont necessarily state your view on homo sex s or women its common used cussing whether you like it or not saying he is homophobic or sexist is pov and factually wrong unless you provide any interview saying him anything negative about gay s lesbians or women in on the home invasion album in the song problems the track jay z bited ice t rapped i got a bitch who s a man because theyre bitch es too got it,-1 +this article is so slanted to the socialist internationalist consortium its fuck ing sick this article states that the terrorist now in confinement are entitled to geneva convention protections that is a fuck ing lie they are non uniformed international criminals and represent no country they are not entitled to geneva protections if they know where a operative is hiding with a suitcase nuke he better be waterboarded if it is found that liberal policies allowed a major attack to be committed against americans in the name of falsely calling waterboarding torture i will brutally attack any and all commie sodomite liberals near me fuck you rats you will have it coming,-1 +stow it kindly butt the fuck out from interfering with my talkpage thanks,-1 +your a virgin aint ya if the best thing you can find to do in life is delete other ppl s wikipedia pages your a right sad tw t get your fuck ing life sorted out and actually get out of the house r t rd,-1 +hi bastard hi bastard,-1 +hello ass hole your mother might be a cross wiki vandal or even a cross country whore but i am not you block me on a groundless basis only because your asked you to i have not done anything wrong in english wikipedia but you will pay the price for your stupid action,-1 +you are a notorious editor who has made the past couple of days a nightmare you filed a report on me when all the disruption was on your side i bet the proof has gone too what a fuck ing mess you tried to destroy a page that gets over views a day all i did was try and make it right and you know it fuck you and your anti welsh hatred too,-1 +actually fuck it you re all gay nerds who butt fuck each other i m gonna go get laid btw homos go to hell,-1 +want a pic to masterbate over send me an email at spaztik noodlez hotmail com my phone number is mobile is if you want to fuck i am bucks a min block and i am in bothwell,-1 +cunt you re a fuck ing cunt and you re obviously jew ish like all the rest,-1 +why don t you read about what i said about being block clever people don t give a fuck about it you need to realise it as your life is dripping away on being wikipedia s bitch fuck ing flea brained loser,-1 +i knew you were a dick but a fag too nice job on the morgan discussion i liked how you buried the comments in the archive section,-1 +i hate grandma terri i hate my step grandma grandma terri step grandma is an overstatement fuck grandma terri in her old ass grandma terri shoult be rape to death,-1 +hello hey mother fuck er don t revert my edits again you fat sack of wikipedia shit please go back to jacking off to virgin killer and leave s edits alone,-1 +what the fuck really blackmetalbaz comes to my talk page provoces me and i am block from editing wikipedia is run by fuck ing retard s go fuck yourself i m out,-1 +damn the killer armenians i damn all the killer armenians they re even not human who killed and burned all those women and children i damn you,-1 +hey how ya doin fuck face did u think you were safe huh did ya skank you are a ho you need death and nothing else i really dislike your existance i think that you are a piece of shit i will come to your home and kill you and any other man lover you have hiding there you should perish you skank you are more worthless than the dog shit in the backyard if you think that you can come get me as god as my witness i will conduct a crusade against your kind why the fuck would you change the lci food fight article i really hope you die in a hole somewhere i will continue to come back until you fuck ing rot in hell you are no longer needed on earth or wikipedia so make like the homo sex you are and ass fuck yourself until you drown in a cesspool of your own bodily fluids i really hope you perish soon end your life any way you want here are some starting ideas hang yourself shoot yourself in the head with a shotgun w hate ver you wish hell even light yourself on fire and hang yourself just dont make too much of a mess as no one will want to spend that much time on a worthless piece of shit like you go die commit suicide terminate your existance all of the above that would make me happy i hope to god that you end your life by tomorrow or even do it in the sunrise when i get block for this i will know that you read it thank you you are no longer needed thank you management god,-1 +you little bitch trying to get away with your crap http comm colorado edu jacksonj research coon pdf this the link here as well as other links of modern scientists disproving this claim this piece tells the origins of why coon did his work and why he is wrong today page it begins https w academia edu all with theories to sell carleton s coon bentley glass marston bates and the struggle by life scientists in the united states to construct a social mission after world war ii,-1 +grow up you make me laugh and by the way you contradicted yourself when you said you hadn t touched my edits i never even referenced final fantasy vii when leaving a message to you you did mess with my edits by reverting them therefore you did fuck with them now go research what i said and stop discriminating against users ass hole this isn t your own private playground where you can fuck with people,-1 +disgusting ignorant decisions by our friends schutzstaffel i am truly sorry to see that the ass hole s at arbcom have managed to silence yet another good editor hopefully the morons will be voted out and we can get this reviewed in the meantime i hope they don t put you in a forced labor reeducation camp fuck ing nazi s,-1 +give em hell give em hell aggies fuck sheep has been a staple in the texas fight lyrics the game before and during the aggie game in the student section for as long as i have been going to the university and as long as my brothers have been going to the university which dates back to at least and i doubt it started then either i have also attended every home game and ou game since and always around sections,-1 +jews jew s are fuck ing bastard s i hope neo nazi s unite and holocaust the bastard s again including jew s like tnxman nawlinwiki pmdrive and j delanoy,-1 +fag your a danish faggot,-1 +you still blow me off if you are not even going listen to me i m done with you i d rather talk to someone else i give you all these reasons and you comes off as sorry idiot ic person lower than me i dont care what you say your being one huge ass prick i m going ignore that part of the rule partially by your attitude period justice is served,-1 +dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter and caltlas if you rvv it again i w,-1 +fuck you wiccan whore,-1 +how dare you call my history teacher an ass hole she s the kindest person ever she wouldn t think it was fair that that ass hole deleted my article so you people are ass hole s,-1 +interesting fact you re a huge fuck ing tool and you suck enormous amounts of cock boom roasted,-1 +i can vote in w hate ver the hell i want shut the hell up you little whiner i can vote in w hate ver the hell i want so fuck off you little cunt and suck my nut,-1 +stop vandalizing you iranian bastard,-1 +this edit was posted by the user of this page you all really think you can make me not edit lol you all are funny as shit,-1 +ah fuck damn u rondo damn damn damn damn u,-1 +fuck you you sad piece of shit get a life dont threaten me with blocking me off this shit do i give a fuck you lonely hermit man open your curtains and get a life before i burn you aliv,-1 +hi i wanna rape you,-1 +you got what had been coming to you i hope that being a k wl eleet nerd o pedia moderator has made your life hell from someone that you totally wronged with your bull shit and managed to get me to stop contributing very significant contributions to this site nearly a year ago now and i contributed a lot in a short time and would have contributed so much more had i continued things that i did huge amounts of professional class photography given away for free placed pd on subjects often providing the only pics to this day on the subjects in question hundreds of pages formatted according to standards huge amounts of latest subject matter information added and facts corrected in some cases so new that this was the first place on the net to have it etc etc and instead of helping me and being civil sensible and using common sense you were more interested in defending a non contributing user who for no apparent reason started a campaign of open violent threats death threats spamming and vandalism on me you were having too much fun abusing your moderator privileges by placing temporary blocks on me trying to stop me from making my point and trying to give this hugely offensive other user a chance to avoid a police investigation by mod vandalizing discussions on the subject etc against most other moderators private views even they had the sense not to start a mod war on the subject your page nerd o pedia rule book and abusing it to the point of idiocy was more interesting to you apparently you felt that since you had read it everyone else should waste at least as much time and read it too down to every last letter or you were gonna use it against all common sense toward anyone who didn t with no regard for the actual situation and reasons behind it no regard for that individuals contributions no regard for civility and most of all with no common sense applied whatsoever it s indeed too bad that most pages on nerd o pedia are starting to be shockingy un maintained and obsolete indeed dead now that the initial rush of contributors is over after a few years and the fun is over for most people as the most brutal blow of all moderators such as you have managed to destroy the morale of even the most serious contributors and have had them leave they simply did not wish to spend too much time arguing or alternatively face putting up with arrogant admin behavior because it always will start to take more of your time than contributions here because of people like you and how wrong the principles are how admins are selected here it s all about brown nosing with the crowd and building your giant online virtual ego and lick the ass of other even more ocd nerds who are already admins and you re just a wannabe good ing luck trying to get anything edited or updated here in a year or two besides top w hate ver pop bands may be popular at the time the latest tv show pages and some other obsessive compulsive nerdishm nobody is foolish enough to put up with the crap that comes along with the job from people such as you for example the pages on my subjects were very active till late and since that they have well remained in the same form as the core contributors left them as they left this site no updates i m truly not the only one to eject not worth the effort to contribute when all you get is shit ted all over if you ever need any help it s kind of funny that an admin can burn out of this site too but given your attitude back then i m not surprised you did after all there were some decent admins here back then such as and i m sure there s a few now but way too many nerds for whom it is the biggest thing of their lives and they have to show it and snoop their noses everywhere but like i said as even admins are dropping out what do you think happened to the contributors many pages now are actually full of incorrect shit because no people of expertise hang around any more to correct details and newbies or worse malicious trollers slowly degrade the content that once was at least somehow accurate and relevant admins will be happy to see updates to the page but the fact is most of the updates today are degenerating the pages obfuscating subjects and adding factual errors and garbage and too bad you didn t quit a year ago i might still be here and there would probably be several thousands of lines and few hundred articles more along with maybe more photographs good riddance,-1 +yea take that jew boy nobody gives a fuck what you think,-1 +fuck you cooperate scumbag why not delete the article if you know it is utter cooperate fabrication wikipedia is dying with a red bull vodka articles like the above edited going through it s pretty sad there re thousands of journals proving everything stated in that article wrong every time i take the time to disprove an article though some cooperate ass hole like you comes along and changes it back so why waste time no one even read the accreditation of the papers referenced for that article but you discredited what is true in a few seconds cooperate scumbag,-1 +unblock can you unlock my talk page or are you gonna be a dick about it,-1 +che was a fuck ing bastard piece of shit the day that mother fuck er was shot like the dog he was was a glorious mother fuck ing day for the rest of latin america if you have a problem with this statement lets meet in person murderers and antiheros deserve no accolades not even from brainless hypocritical marxist pigs,-1 +blah blah fuck in blah with books a time magazine article several news articles and the presence of a number of celebrities its notable if you want a higher notability for it do the research and add it yourself you were just bored feeling like improving some article by slapping a tag on it instead of actually improving it and nobody would let you touch the jesus article off with ye,-1 +i want this jerk block for vandalism once again reverting to last good version beckford s claims that i am not allowed to edit are ridiculous especially as he is here only to push pov and promote himself and his alleged expert status this war will go on forever he is simply a jerk beckjord,-1 +afd can kiss my ass i was block during the afd discussion and the people voting delete were lazy bastard s whow ouldnt look it up zign and amazon wouldn t list a fake game,-1 +fuck you the anome porn for you,-1 +hi hi i removed your warning because it s full of shit,-1 +ban me you stupid cunt do you think i can t come right back with a different ip and keep on wasting your time clearly you were sex ly abused as a child and i have no idea why this has stopped i feel that it is my responsibility if you do not stop threatening to enforce the unenforcable to fuck your eyesocket until i decimate your frontal lobe,-1 +anyone who supports this is fuck ing sick men and underaged fuck ing kids what in the fuck you all should be shot and killed you bunch of fuck ing faggot pedophiles die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die die die die die die di edie die die die dienew,-1 +what makes you think i give a fuck about your political leanings er you questioned them by saying this user seems to be on a campaign trial on behalf of ukip why is it non notable trivia why did the media cover it then why is it a drive by to add sourced material to the article is this article yours how does it having nothing to do with brady when he himself made the comments why couldn t you just be decent about it why all the swearing and accusations,-1 +fuck you tommy i hate you,-1 +the warning is such bull shit i don t give a fuck if you log my ip all i did was go to a website which is not a crime they can kiss my ass,-1 +laara on the other hand i think everyone should lick my pussy,-1 +wow how stupid are you guys speaking of selfish people hybridlily isn t changing the picture to someone that you personally perfer considered selfish last time i checked it was another thing i just discovered is that you can t read where does this article fuck ing say taht all turks are armenian kurd and greek converts,-1 +cardinaldan fuck you faggot nigger cunt licking chink dip fuck ing shit nigger face get a life other then deleting shit off wiki you nerd faggot,-1 +elsewhere i am nothing but sunshine gumdrops and cuppycakes here on my page if you decide to be an asshat i will put you in your place,-1 +back off don t delete my question bitch,-1 +you suck if you ban me i will find you and you will recieve a well deserved beating,-1 +rob you re a fat dork,-1 +shut the fuck up i know how to switch ip addresses you dumb fuck you can suck my dick thats what you want to do isnt it you want my long fat dick open your mouth i want to cum on your face,-1 +i can t believe you fuck ing wikipedos i m going to be the first person in history to be murdered by pipe swinging nigger s because retard ed aspergers infected wikipedos wouldn t stop suck ing willy on wheels dick long enough to delete the fuck ing pages i tell them to,-1 +whats your deal fag,-1 +faggot enough said,-1 +oh this is such fuck ing bullcrap now someone made a sneak edit changing the referenced material soldiers to the unreferenced at least without ever replying here god pathetic wrong and sad,-1 +the never ending edit of the hundreds on my watchlist this article is like the never ending edit of this i m sure this article has become a cause and darn if i ll let a so where there should be a but if this article with its minutia is your cause well then have at it with all of your attention it at least keeps you away from the rest of this project talk heh terri schiavo as a flypaper for the priority challenged i like that notion my dearest sir you are so correct we are going to ramp this up slowly terri schiavo is not a movie star she is an issue about american jurisprudence and how wrong congressional intervention is that is her notability if you think about it she is just along for the ride the perspecitve of this article should now change to change to the judges it is the politicians were who were the flies they got swatted away but she sticks to them does she not andrew william morrow let us now see if that little fly musical linguist takes the bait better yet that she dog here girl here girl come and delete this section again good girl here i will give you biscuit so does any other admin want to come and delete this idea for the sake of some shallow excuse like banned user huh huh come on guys show us all how intelligent you are atta boy good boys as said by sir thomas more in they ll think that somewhere along your pedigree a bitch got over the wall,-1 +you know what fine fuck you i hope you and and that smart ass and douchbag burn in hell because i was just having some fun and trying to be right for once by having some connection weird al is right wikipedia does suck,-1 +bring cock close enough to suck it,-1 +you re still a bunch of nigger s shoopsywoopsy and ps i will edit my own talk page as i see fit you cunt heads,-1 +i am going to cut off j delanoy s balls what the fuck is wrong with you people who revert edits go fugg yourself wikipedia suxxor nuff said,-1 +fuck you i legitimitley edited fergalicious and you reverted it,-1 +ban this jerk someone needs to ban this jerk for deleting articles before we can even get them off the ground,-1 +so does your mouth you gay ass,-1 +shion is not a girl you idiot go read his bio in kof th he s a guy fuck er,-1 +cause of death fuck exicution put down murder was the mutha fuck in case and shawtnegger was tha murdera,-1 +like i said to you you table turning dumb shit if you keep harassing me i will not only shoot down your nomination which is now my number one goal in life but i will also undo everything you do from now on i am handicapped in bed forever isps dare me,-1 +mother fuck er you have already broken the rule of reverts you are obviously a moron,-1 +please go fuck yourself,-1 +omar wears a strap on pussy licker,-1 +class user block warning this user molests children and is also fuck ing ugly,-1 +strong support to spite the faggot known as tj spyke go and ahead and whine faggot i won t read this page any further i will also just ignore the new messages alert fuck wikipedia bunch of self important faggot s who feel powerful by editing a web site go wank to hentai,-1 +you currently appear to be engaged in an edit war according to the reverts you have made on srebrenica massacre users who edit disruptively or refuse to collaborate with others may be block if they continue in particular the three revert rule states that making more than three reversions on a single page within a hour period is almost always grounds for an immediate block if you find yourself in an editing dispute use the talk page to discuss controversial changes work towards wording and content that gains consensus among editors if unsuccessful then do not edit war even if you believe you are right post a request for help at an appropriate noticeboard or seek dispute resolution in some cases it may be appropriate to request temporary page protection if edit warring continues you may be block from editing without further notice please do not attack other editors as you did at srebrenica massacre comment on content not on contributors personal attacks damage the community and deter users please stay cool and keep this in mind while editing thank you talk you first piss off a user and then pretend to advise that user on how detrimental being pissed off is wow i m so pissed i m so i m so fuck off pig now that was quite polite of me you got to admit it or was it not good enough for sophisticated ears of an average warmongering anglo serb freemason who thinks everyone is buying his bull shit lol,-1 +dude y r u such a fuck in nerd wit no life,-1 +renault you sad little bo for driving a renault clio which has no vaa voom so there and the mcflurry is made of shit,-1 +vietnamese films hey lazy guy here is what the fuck ing film list looked like two days ago the quiet american film motorpsycho to the shores of hell the green berets heroes the boys in company c coming home the deer hunter go tell the spartans my husband is missing apocalypse now the odd angry shot the war at home a rumor of war the exterminator l ultimo cacciatore how sleep the brave first blood uncommon valor the killing fields missing in action missing in action the beginning combat shock platoon full metal jacket phantom soldiers good morning vietnam hamburger hill the hanoi hilton bat braddock missing in action i platoon leader off limits operation warzone jacknife casualties of war born on the fourth of july the siege of firebase gloria the expendables c mopic charlie mopic the iron triangle air america bullet in the head jacob s ladder flight of the intruder dien bien phu heaven earth message from nam forrest gump operation dumb o drop dead presidents a bright shining lie tv film tigerland going back the quiet american film path to war we were soldiers in the shadow of the blade enemy image across the universe journey from the fall the veteran rescue dawn tunnel rats tropic thunder watchmen where the hell were you when me and dewaine turned it into a bloody table eh have you read the talk page yet when were you in vietnam,-1 +hey buddy in the real world graffiti is a subculture that he is famous in do you know who borf is d u h love me ps fuck y u generati n,-1 +ass ripper express i read in the newspaper about a number of young girls being anally rape in toilets of these trains all the rapes occured on the pendolino trains and no other wcml service this led to speculation that the trains were somehow rapist friendly i think that this should be incorporated into the article,-1 +listen fuck ers why dont you all come say this shit to my face,-1 +fuck all admins that are on wikipedia why don t you just fuck ing kill all of your selfs you fuck ing douche bags zack e bazemore,-1 +do i look like i give a fuck u are all sad fuck s with nothing better to do ban me i dont give a shit,-1 +epic fail i suck ed cambridge s ballz all night have a good day,-1 +yeah right some ass hole logged on to my computer while i was passed out,-1 +you wicked scoundrel ohnoitsjamie i hate you you fool you think you are a top wp editor i am envious of you idiot may you fail in all your attempts may you get pregnant and have a miscarriage you are a dirty wicked beast a rascal a scoundrel and feces eating mongrel dirty jackass do you have any sense left in you now its up to you to decide if i really meant what i said an old friend now in in,-1 +somebody should shoot that stupid fuck madman madman is a stupid fuck who does not deserve to live,-1 +what the motherhell are you talking about i deleted the lacrosse lie you son need to get your facts straight i do not stand for this bull shit pig shit and treason no taxation without mother fuck ing representation son broad,-1 +fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s,-1 +wtf sefton is the highest ranking partially selective school don t u know how to use google you tool,-1 +you are a fagget i bet you molest little boys you faggot i hope you die in a terrible car crash today tou fuck ing faggot yes right now i am hoping you did in a fuck ing car crash today watch out muther fagget,-1 +you fake bastard this site is a fraud,-1 +ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahhahahah ya bitch ya ah haahh,-1 +gannon man you guys are total pussy s when it comes to jeff gannon is he your boyfriend or something,-1 +remember me i m back you child rapist faggot fuck er you lick little y o girls pussy s and suck y o dick gay ass faggot you god damn camel jockey fuck er you god damn a b c you suck ape cock mother fuck er you mother rapes dinks while your dad fuck s hapa cock you fuck ing ginzo looking mother fuck ing nip looking faggot you suck sand nigger pussy you faggot wog mother fuck er you lick little y o wetback whore looking raghead spewing ocker pussy you fuck y o neejee ass hole you mother fuck ing limey bitch you mother is a cross dressing whore slut that married a crossing dressing fag trans sex you bitch ass jim fish haji gub ass mother rapes dead grannies that bitch digs dead sluts up from the grave yard and straps her strap on on and bangs the dead sluts in their ass you mother fuck s you god damn dune coon chee chee bog irish licking eight ball jungle bunny oreo suck ing great granny and i know you fuck ing watch while train banging children child rapist mother fuck you rape huns you suck child cock you suck flip childrens dick and finger clog wog bounty bear ass i m going to follow you and post about your child rapist loving whore ass every day you slut ann nig nog loving whore and if i am banned i ll wait you fuck ing slut banging pussy licker and then post again after my ban is up you child rapist you eat childrens cock and suck their pussy for breakfast lunch and dinner,-1 +get a life brotha fick me looking at sum of the shit u been doin are you queer cunt or what and i quote as i m currently away from my home adsl network i ll be limited since i m now using a bandwith limited mobile limited connection i hope to be back when the issue is fixed if that dont scream a fuck ing wanker i don t know what does,-1 +proposal that nobody at an i seems to be getting to stop all this shit from going out of hand here s what to do protect this article again interaction ban on sports and politics and andromedean if either violates interaction ban then block for days andromedean is not faultless in this but sports and politics and her it s not my fault it s your fault attitude isn t helping anyone so s p please except that you have a portion of the blame and stop denying your faults you ve done wrong and andromedean hasn t helped much by reacting for as long as he did but s p you re the catalyst so stop the war stop the drama and someone please put at least a month protection on this article and interaction ban on both users before i start sending arceus after people,-1 +poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop poop,-1 +hey mother fuck er quit screwing with my dennis rodman edits you know that shit is funny you fuck ing edit nazi get a life and let my year old self have fun with my favorite nba player of all time s wikipedia page thanks a lot,-1 +fuck you penis penis penis jacko wacko jacko wacko jacko wacko,-1 +your a twat you just delete things that you dont have a clue about che finlay will orientate your ass he l find you,-1 +meters is a piece of shit as well as user ponyo,-1 +shove that barnstar up your ass you faggot,-1 +im sorry didn t they talk shit to me first am i not allowed to defend myself did you tell them the same thing you told me then or are you coming after me and not them,-1 +hahah christ you re a little bitch,-1 +you suck dick,-1 +wtf are you stupid white idiot s talking about now i no that ur white becoz in my experience only white guys have little tiny dick and trust me that dick there in the main page is tiny in size we must state that black men have the biggest by far compard to any race by atleast double the length width hardness and thrusting and white men children if u ask me have the microscopicly tiny seriously i have neva had to ask is it in yet with a black guy just screeming nonstop omg but every single white guy ive ever had sex with if you can call it that jez ive been like r u done yet im bored btw im a white girl and have oficialy sworn of white guys becoz once u go black u cant go back i agree its not a porn site obviously so hey if you want some inch micropenis put in the main picture to make u white children feel better about yurselves then be my guest i get the real thang anyway every night and ull never get my hot body again white boiz,-1 +p s i m a fuck in artist ok my next piece will be a rape of your family enjoy,-1 +do you sex goats look don t voice this around see but i heard at the village pump that you rape farm animals is it true,-1 +you stink you suck hangingcurve blueboy even if you admins block ban us we always come back with new accounts to destroy wikipedia oh wait you re not an admin anymore it seems i wonder what happened hahaha,-1 +just one final word for you ass hole s landing gear from one of the aircraft and bits and pieces of several people were found inside this building which itself is less than feet from another that was destroyed so fuck you and everybody who looks like you moslem mental retard s here that is fuck ing ground zero so blow me and suck each other dry fuck you,-1 +fuck you you gay ass liberal hey ass hole why dont you get your face out of the fuck ing child molestes homepage and go fuck your self you gay ass liberal mother fuck er i hate jew s like you fuck you and your whole fuck ing family you fuck ing sand nigger lover,-1 +hello what s up dick ead how s it going,-1 +perhaps it s neutral in my point of you you are just pro american scum therefore you are the biased one,-1 +why was i block cock suck s,-1 +i fuck ing hate you you goddamn little fuck ing prick since you love jesus so much,-1 +i am a mother fuck ing dweeb,-1 +shut up i can do what the fuck i want july utc,-1 +what the hell man look i m really pissed that you took off danny on the recurring list of the o c what the hell is your problem,-1 +your gay douche like gay porno ahaghagagagaa,-1 +qed as long as we re tattling to the teacher anothersolipsist said i m ludicrous and he started it gwernol i m sorry to be a pain in your ass you re a good wikipedian just doing your job i just can t stomach these people do what you must ok i ll quit being a pain in the ass googie man,-1 +you wont ban me you fag,-1 +removed his bull shit s,-1 +irishguy delets other people shit cuz noone likes him,-1 +what minutes every now and then i m not compiling lists and spending fuck ing hours doing fuck all because no one loves me how many edits have you done let s remember you re so stupid and indeed pathetic you don t even use your own name,-1 +dick their principal is known to be a dick,-1 +hi you are a fuck ing bitch,-1 +fuck her right in the pussy,-1 +fuck you ass hole fuck ing bastard you son of a bitch ass hole mother fuck er go fuck ur mothers cunt trade ur wife sister,-1 +fuck off,-1 +materialscientist is a racist seriously fuck you man you continuously delete my photos on the page of al mayassa bint hamad bin khalifa al thani which are all posted with the correct creativecommons share alike or license because you re a racist and the sheikha appears uncovered in these pictures when i posted photos of arab males you do not challenge them what so ever luckily i can continue to live my life in the happy company of many friends family and colleagues not stationed at a computer you re a loser who spends his entire life editing wikipedia and probably has nothing to show for it at the end of my life i ll have had a purpose a career family things i am proud of you ll just be dust and completely irrelevant to the world having never done anything more than editing a website,-1 +i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arr,-1 +hey dick ole i m gonna fuck you up assface so fuck off shit fuck er me,-1 +lack of new york post report in the artical there should be someting in the artical about mark lavin exposing olbermann about his alegedly being a pervert with a small penis audio here artical here,-1 +october utc you really are a stupid person and must be very lonely and have a lot of time on your hands the citations do support the facts i reported they are articles from each year from the maitland mercury reporting on the finals and all are written about our team how the hell do they not support those facts i am also a player in the team and they mr pain in the ass are not claims wiki is a big place why don t you stay away from my team and my town,-1 +you are an ass hole,-1 +hey you fuck ing jew why the fuck did you get rid of emo kid beatdown day you aussie faggot gay jew basturd go celebrate hannucka,-1 +even if i m leaving this bull shit of wikipedia forever i will observe as well what kind of negotiations you will be able to do here since you began to talk here about gay s and catholic orthodox chuch instead of caring of this fuck ed ass article let me tell you a last thing if you all will continue on this way you will solve nothing and never i hope the only users here that are logical and know what s the romanian diaspora will succeed good luck to them p s you have motivation to be happy now when i m leaving to anittas ronline constantzeanu greier and many others arthur april,-1 +heh thats easy for u say u didnt see the human shit in the basin sink in the boys toilet,-1 +you re an idiot there s no such think as vandalizing the sandbox idiot,-1 +adding twitter spam maybe it is interesting to add a paragraph on twitter spam im not so familiar with it but we have it a lot on out twitter account like innovative ways of spamming see for example http blog twitter com making progress on spam html and maybe there are other innovative spamming ways too shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt shit shioty a shit shit shgit shit shit shoit shot ahot aot shoit shit shit shit shit shit shit shit shit hsoit shiot sht shot shti sot shot shut shyt,-1 +hi this klptyzm again i m a faggot who will never leave users alone and yes i m a stalker you re right sean and manny i need to stop being a faggot because i quite for good and i ll fuck my momma,-1 +have i made myself clear yet it should be pretty fuck ing obvious by now that i don t give a shit about this account you senseless cunt,-1 +ponyo bons mots you are a great ass hole and fool please don t be angry and rudeness rudeness causing people crazy you didn t understand my event and musarabbyahmad is not my evading accout i want to change my mind hold the abilities of editing skills i want to repair these false and mistake pages of wikipedia why don t you trying to understand why did you blaming me this is edit warring your unreliable sources harming me you are mistaking in many times please everyone understan them to not reverting some edits it also causes false news and false explanations in reason it also become a false wikipedia i want to become and wikipedia repairer,-1 +thanks for pulling me into line mike i don t know what the fuck i would do without a wiki nazi like you to help make something of myself how do you know if karl stefanovic is not humanoid have you ever met him no then revert back to my edit you are a cunt,-1 +vercrumba re i would like to clarify that in response to email correspondance i called vercrumba a fuck ing moron not a fuck ing idiot thanks,-1 +your a dumb fuck peasant clueless ass hole get a life i live off the internet not in it like losers like you u get a little power and you don t know how to conduct yourselves self richeous little dick heads you are your site does nothing but robs the traffic of relevant search terms from sites that are being initially search for and a parting note go fuck yourself,-1 +incidents such as this are often referred to as silviaesque shit scapades on mma radio shows such as fightlinker s low blow mailbag keep on shit tin big tim,-1 +you suck dick and should be arrested and thrown in jail you also suck and should be block indefinitely just to let you guys know i am a sock puppet of the cheapo take this into consideration and you will have yet anotehr account that is a sock puppet of the cheapo,-1 +got a fellow loser to tell me off did you think i give a fuck block me then you co suck clever people don t give a fuck about editing wikipedia just because wikipedia has turned you into its bitch you can t see that being block is not a punishment if it happened to you it would be a blessing but you ll never see how much time and life you ve completely wasted because your brain is mush fuck in wretch now get back to looking at raw guest hosts and other childish wrestling topics you make me sick a grown man devoting his life to watching basted men in pants pretending to scrap did you enjoy watching randy orton s glistening belly button and atomic wedgie last week it s fuck ing amoebas like you that have kept this most pathetic excuse for entertainment going for all these years it should have died when all the redknecks finally found out it wasn t real how this can still be a viable business in this day and age but when there s enough people with flea brains so abysmal to sit there editing wikipedia most minutes of the day it s no real fuck ing surprise,-1 +just for clarification you re a cock congrats on having software that can detect ip changers glad i only got it on the trial no you really are a cock,-1 +wiki brah so aren t you the just a good wiki citizen reverting all my edits right want to keep up with me every day day in and day out for the next ten years through the next three american preisdents our marriages kids grandkids trips back to brasil all that stuff you with me through all that kiddo you better watch your fuck ing shit with me son you have no idea what the fuck you re getting into obrigado,-1 +go fuck yourself wikipedia is a scar on society faggot,-1 +haha fuck face let s play this game all night long shit bitch oh no wait i d love to but i have a life before you deny that by saying that i spend some of it vandalizing this site consider that it takes me a minute to fuck your shit up it takes you a lifetime to spazz out about this you sad fuck wit hahahaha peace out faggot,-1 +fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off jewish ancestry fuck off,-1 +is it true i had heard you like to suck cock is it true,-1 +dont fuck with wikipedia admins you filthy jew tlk cntrbtns,-1 +fuk off then douchbag this dope needs to investigated for kleargear fraud neer do well blog,-1 +i will take good revenge on your bull shit s stupid uneducated tletbrain i will blow the hell out of you chinese stupid bull shit psychos,-1 +did you know you are full of shit and a fuck ing cunt,-1 +fuck you fdfdf fuck you faggot,-1 +to sitush pakistani pig what is your problem you bloody muslim pakistani why the hell are you jealous of hindus and sikhs you born out of shit of a pig just stay away from this article we don t prefer pakistani muslim pigs touching this pious article,-1 +here i am waldo with my other response to your total collateral blatherskite actions if you other junior punk editors would have done your research prior to intimidating me with your virtual stupidity then you would have taken note that the link which has been on there forever mysteriously evaporated on february by timpailthorpe due to actions of agent bond on february all i did was add the link back and try to ignore your stupid bla bla and ya ya by adding it back i m getting sick of having to deal with the jack legged intellect that you bone headed editors suffer from so liberally gadz you all think you are so intelligent sorry pals you lack severely doctorates and all my advice do your research and then come back and ask me a question or do your edit thing quit screaming at me with all your junior editorial cannons crap about r civil and the like here is my advice take an anti stupid editor pill all of you you revert this and you revert that and then do your research and realize your actions were premature and then have to stick with your accidents and stupidity and lie to the cops here subsequently blaming your stupid actions on me i submit this civilly and sincerely to all applicable,-1 +u my fat furry friend are a cunt stop fuck in talkin,-1 +kafziel get a life and stop working for these idiot s if you know whats good for you cause the whole damn company will burn down if this continues i will not be visiting your peice of shit website any more and i will be telling all people i know not to either your goin down fuck in jerk offs,-1 +ccwaters is still a fuck you re still a fuck good luck on being a worldwide fuck,-1 +no the dumb est shit ever meter went right off the scales at that talk page my comment just tipped it to,-1 +well you are a proper cunt,-1 +sore i like to be violated bugger,-1 +you are fuck ing morons you realized that wikipedia became like jew watch right if you wont block this guy right now and revert his last edit i will report to adl that wikipedia is anti semite site who like twisting fact if i will report it to adl you will lose a lot of visitors fuck ing idiot s http en wikipedia org wiki user rolandr,-1 +thanks fuck you too arsehole keep on owning wikiproject aircraft wanker i can see straight through you twat,-1 +you are not a haver of fun is it fun to revert edits all day instead of doing something productive bow about suck ing a dick instead i know you ll just delete this immediately but that s because you re an edit happy coward that censors everything like china commie,-1 +yawn retard about half a million people use this ip you can t do fuck all,-1 +i am sick and fuck ing tired of seeing this mother fuck er s face this ass hole was a piece of shit who masterminded the murder of innocent people for this cock suck ing anti american mother fuck er to have an article is insulting to every victim of if i could exhume mohammed atta s body and bring him back to life i would then i would waterboard him for days on end,-1 +hey you you re a dousche bag,-1 +possibly the dumb est argument i have ever heard are all wikipedia users fags or just you the wikipedia is not a gameguide retard edness doesn t even apply here it s not telling you how to unlock the armors just what they are or should we delete the characters and stories too those are in game guides fuck ing moron,-1 +you re a bitch yeah sure my first edit might ve been worded wrong but my second one was not people shit out of their anuses and you re a bitch both are facts of life dumb ass go to hell,-1 +avala you are full of shit that is all love you bitch hahaha later,-1 +what s up my nigger promoting yourself on wikipedia is a bad idea you should probably go somewhere else maybe you could post some hand drawn posters in your ghetto,-1 +prediction timetable is getting bloated why do you people have to add every freaking detail to the list it needs to be kept simple and not as wordy this is a wikipedia article not a damn novel if you wanna know all the details watch the damn show it s free on google videos the list should only contain the most notable and important details a lot of what is there isn t all that notable do we need to know the name of every stupid bridge and building shown collapsing or can we just say a bunch of bridges and buildings collapsed here and mention one or two by name as examples i don t want to get involved in edit wars but i will delete things i believe are overly worded redundant and unnecessary and not to mention just stupid use common sense before you edit,-1 +you started the insult with your bull shit quirk in trans former article go home and sleep,-1 +well you re a liar an outright liar and nothing but a liar you do cherry pick quotations to prove your own pre existing opinions you re such a thick headed jack ass you do not have enough sense to see the need for different viewpoints all you know how to do is jump in and destroy good work without bothering to think or give consideration to anything that is contrary to your narrow minded bigoted point of view you re really a thick headed jack ass you don t know how to communicate you are incapable of understanding anything that is contrary to you narrow minded bigoted point of view it is because of you that we have many low quality articles on wikipedia,-1 +i want this removed meg is a fuck in awesome drummer she brings a load of unique simplicity on the drums unlike you anti white stripes fags who like all the bigger faster cooler stuff i don t get what s wrong so a drummer has a unique way of playing that s great a drummer dosen t need all this shit about his her playing a drummer can play anyway he she wants to there s no special way of playing that all drummers have to go by so i want all this crap removed in the next days if not i will erase it damn you morons,-1 +you arrogant ignorant fool you think you are the hottest thing on this site newsflash your not you know absolutely nothing about wrestling and you present yourself like a seriously idiot ic person the next time you want to leave a message on my page again learn to spell silly bitch,-1 +fuck you fuck you and wikipedia there is no reason those pages should be deleted so block me from editing but you can suck a dick stupid bitch ass fuck in fagget eat shit and die,-1 +subjectivity this user has a propensity to abuse his status by interfering with sourced articles this user has proven to watch too much television leaving his personal life and life skills comprimised this user is a fan of big black cock,-1 +trying to convince people to stay the hell away from this city that s what i m attempting to do here and i certainly don t appreciate how you bots think your shit doesn t stink and let your egos run wild just because your free to edit anything you want and all this bs has been coming from people who know nothing about this area unless they ve lived here and seen it for themselves and i can play this game of cat and mouse as long as your are willing to go ahead and ban me i ll just use another computer at my workplace or the local cafe even cheers,-1 +black dahlia murder is not melodic death metal they are deathcore pussy s black dahlia murder is not melodic death metal they are the farthest band from that genre black dahlia murder are pieces of shit scene bitch es that are trying to be metal along with all of the other deathcore grindcore bands like job for a cowboy suicide silence etc fuck all of them they aren t true metal and they never will be they need to stick to what they know american eagle mtv and all of their other lame trends melodic death metal is scar symmetry in flames sonic syndicate and disarmonia mundi melodic death metal is real music it s not a disgrace to music like deathcore and grindcore i will continue to change black dahlia cunt murder s genre to deathcore grindcore i don t give a shit i m not letting you stupid scene bitch es take away the only thing that you and the mainstream hasn t destroyed and that s the amazing genre of melodic death metal so fuck all of you trendy conformists go fuck ing die black dahlia murder are deathcore pussy s that need to be beheaded them and all of the other deathcore bands that are ruining metal deathcore is the biggest piece of shit i ve ever heard it shouldn t even be considered music it s a bunch of pussy scene kids trying to be metal deathcore and grindcore are the two worst forms of music ever invented so yeah you can listen to deathcore if you enjoy hearing music that has no tempo or beat to it whatsoever they pretty much just hit random shit on the drums and play random notes on the guitar while the vocalist does terrible random screaming and pig squels don t forget the hillarious millions of breakdowns they put into their songs da this song is called big fuck ing tree ya boi we are so down wit american eagle ya boi my hair does that flippy thing rawr rawr rawr i m so lyk hardcores omgz gages and snake bites rawr fuck job for a cowboy and black dahlia murder trendy pieces of shit melodic death metal owns all there really isn t much of a difference between any deathcore band for that matter they are all just a bunch of pussy s that are trying to fit in with this new trend of trying to be a metal band so please don t try to tell me oh your stupid the bands aren t the same ok so maybe just maybe job for a cowboy s vocalist does more pig squels in a second than the vocalist from black dahlia murder there i said it i guess they aren t all the same oh dear fuck and my bad my bad white chapel actually does breakdowns in a minute rather than suicide silence s breakdowns in a minute my bad dude you were right all along deathcore and grindcore bands aren t all the same but seriously the genre is pure shit and is just another trend in the music industry that bands are following to make it to the top and to fit in with the rest of the bands these days i mean i have nothing against every band in a certain genre sounding the same or anything but when the music of the genre they produce is pure shit and can be done by any living human being on earth then i have to draw the line it doesn t take much talent to do shit y raw screaming hit random notes on a guitar and hit your double bass pedal at like bpm another reason why i don t take any bands from this genre seriously is their hillarious excuses for a band logo they try oh so hard to be harddcore i also find it funny that all of these pussy bands have names like ass cunt or dead death bloody dead hand fact is any band that produces music under this genre suck s and is just trying to fit in ya boi lets hardcore dance rah ya grindcore and deathcore isn t metal so all you douchebags should just give up you aren t metal and you never will be go fall into a pool of aid s fuck black dahlia murder i m not giving up this is insane i m not letting you mother fuck ers take away the one thing i have that you haven t ruined,-1 +fuck all you camel jockey pussy licking dink looking dick suck s,-1 +fuck you french faggot go play soccer and leave the internet to america which invented this shit,-1 +get off my dick for vandalisim im stating facts ass hole s,-1 +i don t know what mental illnes you have but please stay the fuck away from the reference desk with your vandalism do not remove this or i will add it again and again until you give up i can keep this up forever i will not have some bully removin i don t know what mental illnes you have but please stay the fuck away from the reference desk with your vandalism do not remove this or i will add it again and again until you give up i can keep this up forever i will not have some bully removing my questions and i will get you banned if you keep this up is this perfectly clear do not ever touch any of my genuine questions again,-1 +i suppose him calling me a jerk was just a natural reaction no,-1 +lol your page is getting fuck ing owned teabag,-1 +japanese bastard fuck off you evil race,-1 +terrorist you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers,-1 +isn t there something pompous about your user name you re a pretentious little bitch and some day it s gonna bite you in the ass if it hasn t already lol,-1 +guessing you ve heard it so i wanna know if you want some birthday cake cake cake cake cake cake birthday cake cake cake cake because imma make you my bitch tonight hehe in all honesty that song is beyond ridik talk me,-1 +why are you so miserable and keep blocking people you are a control freak,-1 +you are a faggot why did you deleate dogatro it said under contruction dick,-1 +oshwah is a bellend cunt,-1 +suck a dick you little cunt then go and take your uncle deep up your tight little ass,-1 +my mate told me you were a fuck in homo sex you are dead,-1 +dick hey dick why don t you go read the aqua teen hunger force wiki page for marines episode and see where it actually says jigsaw i say that would constitue in other media references wouldn t you probably not because it seems all of you wiki monitors are fuck ing cock suck ing ass hole s who don t understand what the fuck is going on half the time seriously you re a dick did you even read what i wrote or did you just automatically delete it because you re a cock fuck you to death,-1 +thanks to ass paris france to the place where banana republic is located,-1 +fuck u gogo dogo and cluebot,-1 +that s becasue you are an ass hole and a cunt you fuck ing ass hole your whimsical reverts to my legitimate additions are biased in nature so go fuck yourself and your pathetic existence,-1 +again you are all nigger os yah i am going to have sex with you negros you can go on your mama br ast and nigger os users like mcdonald and areaseven snjones you can go to jail without hunger yah yah yah nigger os,-1 +sup bitch i m back yeah its moonshine baby i get to use this name now cause moonshine is now bail out a and the ykick ass not gonna be able to block me now bitch,-1 +you like penis fuck you,-1 +if you think soad is nu metal you are a fuck ing goddamn retard and you should fuck ing die in a fuck ing fire,-1 +what exactly is your problem jeff leave it alone grow up and get a life assclown put down your video game controller and go outside once in a while and play real games with the other little boys in your neighborhood,-1 +look betty logan you are just a sour old bag that things anything you don t agree with is poorly written or irrelevant i completely reworded what i put so it made sense also the spelling was checked on my phone but you can t see beyond the end of your nose can yyou the current articple yo think is ggood sentence starts with anyway for crying out loud and you think its good english justuck off i ve had enough of you you pathetic stupid sour old bitch,-1 +i gave you a valid reason now fuck off,-1 +go fuck yourself faggot ban away,-1 +hey jersey devil why do u think you are so good you can go around deleting wikipedia articles the republic of ants is a non known religiong but it is still a religion ass hole just because your probably christian friends have not heard of it that doesn t make you god and have all final say in what gets deleted so maybe u should leave your basement and go find some friends so you can do more than sit there on your fat ass and delete articles btw it is not funny in your page when u say lol,-1 +you re such one god damn nigger for a titty penis head i am going to head butt you,-1 +yeah anything goes here this is my talk page and i could give less than a fuck about it,-1 +p u suck,-1 +excuse me i do not appreciate that you are deleted my changes i like the way they are and i am an administrator at the school fuck you get a life you fuck ing homo i hate you,-1 +he s gonna take you back to the past to play some shit games that suck ass leave me a message,-1 +orane suck s lots of penis with genital warts and he likes getting molested by michael jackson,-1 +jackoff hey i just wanted to let you know that i ve read your behaviour and actions regarding userboxes and think that it s a fuck ing crime that you weren t banned for it suck it dick eed love and kisses,-1 +psh hahaha funny ass shit,-1 +fuk u daniel case and katie dum bitch,-1 +you and purple you or just fuck you,-1 +stupid blocks real cute first you block then you vandalize my comments do it agan and i will report you pov pusher,-1 +omicronpersei omicronpersei or more like homocronperson who the fuck do you think you are i can use my talk page for what i want,-1 +you abuse you position ass hole,-1 +yup of course i m block because you bot ass hole s can t take the fact that you have no lives you spend every minute of your life editing wp and for what organization more like order,-1 +suck your moms vagina,-1 +oh sh t i m shaking in my boots big bad admin get off my nuts bitch,-1 +wtf do you honestly have no life worthless bitch,-1 +dude i find you to be arrogant obnoxious overbearing obsessive and basically a wiki nazi you exhaust people away from this site you have not turned anyone against juice plus because of your obvious bias against it i really hope you die a very miserable lonely death tucked away in your garbage filled house i picture you as a dirty greasy old ugly miserable little sad man with little to no life outside of wikipedia i am willing to bet you haven t been laid in years likely due to your very small penis thus the cock referrence in your handle you want to feel big somewhere and since it isnt in the real world you have chosen to be a wiki god good for you well done when you die and hopefully the news will get out about who died on the same day you quit editing my money is on dr barrett for your identity no one is going to miss the wonderful wiki editor who kept the world safe from fruits and vegetables i doubt more than your mother father and siblings will show up at your funeral likely your siblings wont because you probably bug the shit out of them too when you take in your last breathe red are you going to be happy about the thousands of hours you spent here at wiki railing against juice plus is that going to be the measure of your life s work honestly isn t there something in life you could be doing other than this obsession isn t there someone you could be talking to for help for some companionship or have you driven them all away by your obnoxious overbearing arrogant opinionated jerk peronality i hope this gets me banned as i have a life to get back to now but this great post will live on life on line for ever and serve as a ass slapping to the biggest pain in the ass ever is there a barnstorming award for that you win it you are a complete and total jerk off dont bother posting on my talk page warning me or thinking i give a shit about getting kicked off of wiki oh what will i possibly find to do in life the all knowing,-1 +this artcicle is a god damn joke it shouldnt be protected that way you can edit it any way you want its a joke so lets have some fun with it your a fuck ing idiot if you beleive this shit anyone see the scientology episode of south park god that was hilarious and they didnt even need to make more shit up for scientology to be more of a joke you are a fuck ing idiot if you believe this shit go ahead piss yourself becuase i am right anonnymous stranger,-1 +he deserved it go suck one,-1 +yeah wmc is imho a jerk and very soon and admin but unfortunately i don t have enough edits to help your arbcom vote either,-1 +obviously you re an idiot so let me make it clear i am not another user so stop accusing me of being one particularly ones that are vandals as i am not,-1 +stop deleting my jont i told you you can ask him he ll tell you that we re friends we went to the same preschool stop being so damn ignorant i hate people like you yall think you re soo cool but really all u are is just a buttfart go rub you re nipples sherlock leave me alone,-1 +tut tut i thought i said goodbye and not au revoir do call again and leave more crap fear not pop eyed little pooch your point was well taken you hardly need to remind me that you don t give a flying fart about sticking to facts or veracity although you re very free with low level sharts here i ve noticed happily though others do so on second thoughts i ll keep this section to exhibit for the appreciation of my other visitors fully house trained the remarkable specimens produced by my little doggie friend i shall call them my little mexican doggy whoppers so now you ve changed your story of the hours for the third time eh or is it fourth fifth i seem to be losing count as you approach the limits of my pitifully deficient arithmetic if i er comprehend it correctly the latest draft of the hours has it that you originally thought five hours was about two hours interesting and revealing in fact you sniffily dismissed the interval as less than hours my emph interesting and revealing because because the open ended about tends to support a story of an innocent estimate but less than doesn t less than is specifically limited narrowed in focus specific it s more clearly a calculated no pun intended lie it s well known that most liars have trouble remembering which lie they told less well known is the fact that their use of words trivial though words seem to them often gives them away freudian slips elementary my dear watson by the way there s a good book by adventures in the screen trade author and screenwriter bill goldman called i think which lie did i tell it s about hollywood are you a hollywood pooch sporting a diamond collar from harry winston and peeking out of a b list celebrity s purse if so i may be able to sell your crap on ebay and i insist that you think of this section as your special little pooping place gives a whole new meaning to save your crap doesn t it all i ask is that you do your business on the newspaper provided a murdoch publication natch isn t it nice to make new friends au revoir and do call again you funny little thing,-1 +some users can do w hate ver they want while others are excluded oh i get it it s ok for your friends to push their own agenda on entries yet others not of your clique are soppused to just fuck off to you persian poet gal i had better see that fuck ing link on the walmart article gone within the hour,-1 +legolas is a fag,-1 +your fuck ing face faggot s,-1 +licking my ass hahaha quit banning me you faggot,-1 +bastard why do you hate jonathan pacheco you dick,-1 +admin wannabe s don t do rr s like you did at shankbone s neurotic conspiracy page but if it adminship happens it happens right what a crock of shit you will never be an admin you don t have what it takes save loneliness and a friendless existence oh and in case you missed the edit summary over at shankbone s conspiracy page i ll post it here just think if your father had loved you you wouldn t have turned out queer and you could ve lived a normal life happy editing you queer queer,-1 +news flash i no longer give a shit since i m already violating a wikipedia policy just by clicking edit this page why the fuck shouldn t i violate the rest of them the wikipedia cult has treated me with incivility and harrasment and i am simply returning the favour also that edit to cyde s userpage was an improvement to the accuracy of that trite bull shit cyde is and always has been a fuck ing wanker,-1 +hello dick head you are my new friend for life preceding unsigned comment added by,-1 +all kaikolars are concubines of brahmins it fuck ing disgusting they were so desperate that atleast one woman from every family became a devadasi then her children come back and marry into the kaikolar caste this is the classic definition of concubinage moreover some kaikolar pice of whore is yapping that kaikolar are not isai vellala it seems go read the reference isai vellala are kaikolar devadasis who then renamed themselves as isai vellala,-1 +get the hell of wikipedia idiot,-1 +nearly headless nick nearly headless nick is fuck ed up in the head and abueses his admin role,-1 +i know the matrix would have been a shit film indeed if there were billions of neos and only one gullible meatsack being used as a human battery pwnd,-1 +yo i hate you salvio you suck i hate you a hole,-1 +ho bitch delete my shit again,-1 +i did f all here so f of wikipedia you arrogant self righteous c s,-1 +just because the hd radio website is supposedly out of date doesn t automatically mean wsff broadcasts in hd radio i actually have an hd radio and i can tell you that wsff doesn t broadcast in hd radio you can even contact them wjjs wjjx has dropped their rhythmic format in it s evident by their playlist the main difference between urban contemporary and urban adult contemporary is that urban ac stations tend to stay away from recent popular hip hop rap songs i don t even care about wsnv they ve been going downhill in the case of my recent wvtf edit i got information from the station s damn website overall shut the fuck up you giant prick,-1 +wow your userpage is faggot y dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt dick utt,-1 +hey punk dont be deleting my stuff you know nothing bout the harly drags so stay out of my shit you stupid nerd punk fag female thats all u bitch,-1 +fuck shit damn cock pissant mother fuck er and horse dick,-1 +ok i will take this to the public and on your pictures of the cunt fuck you too,-1 +guys that vietnam portal picture has been vandalized and i can t fix it it says the kissing cock s,-1 +what some prefer to just pronounce it as fuck huh,-1 +fuck ing agree i know the controversies involving scientology but if you re so scared you need to wear those l for lame masks nice choice by the way the mask of some dumb terrorist who tried to blow up the palace of westminster with gunpowder worn by a character in some cheap commie film and even use some voice synthesizer when you post a lame youtube video there s a nice alternative stay in your bedroom with a bucket between your legs to urinate in and browse your gay imageboards this article is misleading by the way the only way form an accurate image on the typical anonymous is to go on b not safe for work or sanity you should use some proxy with the option of disabling images,-1 +you are a queer fag,-1 +its still funny son of a bitch,-1 +are you a fuck ing dick head people like you should be prohibited from editing wikipedia you should first learn some history and stop spreading your propaganda,-1 +i suggest you to watch your back because i will smash you into fking pieces,-1 +cluebot also says you have a tiny penis,-1 +jack and jill eric thank you for your contribution but i think the version i put up is more accurate and i have properly sourced it please leave as is thanks and keep on wiking you may wish to check out uncyclopedia they welcome that sort of thing talk contribs email i much prefer posting here than uncyclopedia especially since the version i put up is factually true please stop censoring me that s not very nice now go fuck yourself you nerd,-1 +the ass so you can see what it feels like,-1 +fuck you and the horse you rode in on singularity you ass hole,-1 +you got weed man homie i ll buy a dimebag off you for hell i ll suck your dick like last time if you want me to by the way you got any goat porn like last time sincerely bob the cock suck crack fiend,-1 +hahahaha wie wie that is retard ed internet explorer was already long enough compared to say opera safari or firefox now it s windows internet explorer this browser goes down the shit ter more every day,-1 +you re a dick feel free to delete my wikipedia account i dont care i can t believe you didnt even give me a chance to edit my article you removed it literally minutes after i originally posted it dick move suck it,-1 +with regards to your comments on back the fuck off,-1 +holy hell mother fuck er shit kicker penis licker l fjd dsfl kjasd fj jdsaf lkjas fdajdsf safsd f sad fa dsfl jsad,-1 +wiki suck s ass from admin,-1 +see you lousy cunt,-1 +email ok u know what sd sent me an innaproprate email i dont know how but he sent it i am pissed i dont really give a damn about how it happened so block me already you moron thank you goodbye for good loser,-1 +real evil little cunt,-1 +let s make this clear little man regardless of what ip address you complain about and get block we have a dozen more to take its place every edit you make under this screen name will be reverted there are many of us that have the time and patience to do just that since your life seems to revolve around smear tactics on political profiles goodluck bitch,-1 +could be so kind as to suck my dick too,-1 +jew get the fuck out of here you jew ish son of a bitch i ll rape your fuck ing family if you don t leave you semite bastard i will shoot you if you return because you re a dirty semite i hope you choke on a fuck ing bagel prick shalom we came in,-1 +eat a dick faggot you take internet too seriously anon will have your blood faggot,-1 +you are a herpes vagina,-1 +fuck it no you ll be missed by many you re a maverick of the kind wikipedia needs more of and i m sorry to see another one leave please by all means take a break cool down ignore the place or damn it to hell as you wish but don t make it forever sonia,-1 +haha you suck you suck john reaves way to stand up for your boyfriend you loser by the way i think hangingcurve told you but in case you didn t know that was if you can still remember you actually un block safwwefe in may per good article and on immediately reblockable condition that was probably the worst unblock ever on wikipedia a few days later safwwefe abused socks and was block again and that s not over over the years safweefe returned to continue the same pattern sometimes making some good edits but abusing again a notable sock was brave warrior and then comes the community ban by blueboy hangingcurve for inappropriate edits to barack obama article then safwwefe returned in to troll former editors he s been in dispute with mostly blueboy hangingcurve but maybe safwwefe should troll you instead now can t believe you actually un block safwwefe look at how that turned out you fuck en idiot admin,-1 +fuck o f f you are the bigest cunt in the world what the hell do you think your doing you deleted a page that was perfectly ok and an existing project in the uk you are not fit to be an editor on wikipedia you stupid unsatisfied son of a bitch go to hell and burn,-1 +block what s wrong ass fuck ers you can t take a little heat why don t you all suck each other s cock s you fuck ing dumb ass wikipedia nerds i hope you all rot in hell fuck you fuck you fuck you shit piles,-1 +so you are another vile little englishman like fisk you europeans are evil pieces of shit and you faggot s should be exterminated for what you have done to us,-1 +quoting uncle joey a there s always a chance don t quote me on this but it would be difficult to try and re negotiate with the producers actors and the studio so i feel strongly that it would never happen way to quote him there faggot s what do you think don t quote me means,-1 +well in that case i hope your house got destroyed in hurricane katrina you nigger,-1 +great go and die painfully you foul mouthed sanctimonious moron the road to hell is paved with good intentions roast slowly,-1 +haha moron i told you to shut up when you get un block i m gonna ask them to permanently ban the ip so that you have to use an account now i am getting warnings because of you or rather because i called you a moron what are you doing anyways quit bangin on the walls rofl you got banned too lmao i am making breakfast and reading about ancient persia when your kids get up come over bro um sandstein what is your problem i mean with twenty if it really matter to you he really didn t do anything offensive to me if you are just being admin troll please stop deleting comments really it s really not all this way too much attention over brothers arguing man i made some stupid decisions and twenty is trying to make me see an easier way and you ban him too for telling me to behave i don t think i am the only one who is confused here perhaps a cookie come on man really,-1 +leave my fuck ing page alone leave my fuck ing page alone,-1 +wow well who do you think you are you cunt sy like a prick fuck off your mums a dirty swag you shit e eyed stupid nonce,-1 +fuck you,-1 +stop editing dumb ass preceding unsigned comment added by,-1 +pardon me you are an ass not a fool i am moving forward with my plans to have you banned from wikipedia your removal of that article which was well cited learn how to read was vandalism and it has been reported as such,-1 +this would be the same user bishonen who asked me for my email address something i do not give out on weikipedia to tell me i was a drunkard when i replied look back in the edit summary but not on the text he said don t abuse my emaill address also that would be when i replied to his email telling me i was a drunkard to tell he or she not to do so again who is the fool i have no intention of replying to this fuck wit again i have an intention to get him banned from making abusive comments to good faith editors and i will pursue that bishonen is,-1 +fuck ya ya poo brian,-1 +fuck you re mark williams radio host and ground zero mosque you vandalizing asswhipe landing gear from one of the aircraft and bits and pieces of several people were found inside this building which itself is less than feet from another that was destroyed so fuck you and everybody who looks like you moslem mental retard s here that is fuck ing ground zero so blow me and suck each other dry fuck you,-1 +lol suck my dick bitch,-1 +i didn t attempt to harass others i actually did so fuck yo,-1 +fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt,-1 +i had to put up with your shit to make two elementary enhancements to the article to add the well known link between kant and brouwer heyting and to raise the concerns bruited not only by brand blanshard but also by bertrand russell about philosophical style the latter happens to be key to understanding kant because as p f strawson wrote in look up the goddamn cite yourself kant was at the bounds of sense instead of the dialogue characteristic of wikipedia at its finest i was harassed libeled and subject to a mediation process that consisted of snide personal attacks and in which i wasn t even given an opportunity to reply so fart in a bottle and paint it it s trolls like you that will make a joke out of wikipedia,-1 +bull shit you already took sides before doing even the most cursory of examinations for instance you gave no warning to danieleng even though this person started a revert war to prevent documented npov information from going into the page as i wrote on your page if you re going to use administrative powers then you have an obligation to use them responsibly not picking sides in a dispute before even communicating with the other side,-1 +a cock to suck and stop accusing people of sock puppetry,-1 +opinion is opinion and everyone has one of those you really think all of these aliens were dropped into a volcano based on no evidence that alien souls are in your body fuck ing idiot s my opinion is more correct than yours,-1 +you know what fuck you i tried to be civil to you earlier but since you re not gonna pay me the same courtesy there s no point there s no need to poke fun at me using the word man and making sarcastic comments about using references now i know you re just looking for a fight i ve worked on the content and i only ended up keeping a few sentences but they don t have sources so let me look for some right now,-1 +ok oh i se but still you said i should apologise for calling him an idiot then you called me one so basically shut the fuck up,-1 +if you d ever had heroin coated condoms during ass sex with infant koalas then you wouldn t dispute its popularity philipbeswick do you now understand the weakness of your argument,-1 +you are not cool you are the most hate d fool in the world you are a load of barry dejay rocks,-1 +jd is a raging homo sex faggot who should be eaten alive by a pack of rabid baboons,-1 +excuse me what the fuck are you doing you just blanked my user page what are you smoking,-1 +why is my shit getting reverted get off my dick,-1 +i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis i have no penis the end,-1 +no i don t want to be ur friend bitch,-1 +you son of a bitch i can get more unblocks you dumb ass you fag do you wanna suck my dick you fag or do you wanna take it in the ass my dick is out for you hahahah i am getting my friends today to swarm this site to take over,-1 +i have evry right to be pissed off even when i make decent edits you change them why whats up can t you re stupid american brains put the words together and form what we like to call a sentence,-1 +fuck head limey vandal,-1 +to user rdos maybe the people here have been too polite to tell you but you are a complete fuck ing crank claiming that you have asperger syndrome without an official diagnosis is insulting to those who actually have the condition you re probably a schizophrenic who just won t face the truth your aspie quiz is total bull shit you are not a professional in the field and to pretend that you are is pretentious and playing on the hopes of people who may actually be suffering from asperger syndrome i would like to see you leave wikipedia have all print and digital evidence of your stupid quiz destroyed under an iron boot and see you beaten until you literally shit on yourself you stupid fuck ing cunt you think you re part neanderthal well i think you re moron claiming that you re part neanderthal isn t going to explain away your social ineptitude your sex perversion and your insistence on some of the most ridiculous crank theories ever devised i read that garbage on your website about having your baby taken away by the swedish authorities if that did indeed happen it s because you re a child molester or a psychotic you need to quit harassing the people here with asperger s with your psychotic ideas go choke yourself with an oversized dildo and save the world your insufferable presence,-1 +man let me edit the damn pink spiders page,-1 +who the fuck are you halfshadow and where do you get the termerity to even address the fat man who never came back this issue is between tfm the blocking admin and the great jpgordon whom i deeply respect because who once played horns for oingo boingo no one s talking to you and i bet you never played horns in any band i ve ever heard of i bet you re one of those wannabe admin douches who hangs around an i all day hoping to curry favor with the other douches who mill about an i i m deeply insulted by the crass presumption that i am somehow lucky i m not being indefinitely block you are apparently unaware that my services are required at the reference desk and that i am doing the community a favor by even bothering to show up to this stupid website editing wikipedia is not some great privilegeit s some sort of social disease you ever show up anywhere near my talk again this also means the talk page of any of my brothers or family members and you and i are going to have words,-1 +did bitch has sum nice tatas i wanna squeeze dem melons,-1 +hey buddy you suck ass hole,-1 +fuck of beetch,-1 +dude place the following in the large text box please stop raping little boys in the anus don t you know that s illegal,-1 +go fuck yourself and block me you cunt,-1 +related projects is made for stuff that is somewhat more related then just having chan s name in it the lolikon boards on not chan was on chan but then changed to not chan see the article and world ch is managed by chan staff anyways plus chan has nothing to do with chan except that they actually archive some stuff and the mods have stickied it for a while if we would add all related projects which are not run by team chan the article would look shit,-1 +aw mah gawd loik dis movy gets me so moist loik i cud fuck dat caspa cause hes a really nice guy but dat telly ew never never hehe never hed just have to rape moi sex bod bring it on aw mah gawd all da sex nigger gs and studs struten around looken sex gets me so moist like i am a devout croatian catholic and loik aw mah gawd i just cumd all ova da computa chair stinky croatian devout catholic pussy beige colord cum creamin outta my pussy all ova da computa chair aw mah gawd im gagin it loik homie g nigger cock raping me like aw mah gawd im droolen stikin mouse up mah pussy aw please telly n specialy casper hear my msg i dont wanna be rape dont rape me i have big boobs and am a virgin hehehehehe,-1 +suck it have a nice day,-1 +oh blow it out your ass mr i m too good to be logged in you have no proof that i m anyone else and your baseless accusations are laughable you think you can armchair for the adminstrators and yet you bought your couch at a yard sale for twenty bucks just because i use words that someone else uses that automatically makes me them if i speak dutch does that make me santa claus now go blow it out your eye wall,-1 +he did blunt it by altering the stress though give a damn instead of give a damn,-1 +eh im in no mood to actually edit stuff i ve done like minor minor edits in the last days and that big ridiculous rant it wasn t that bad i mean i didn t do some mass vandalize and put untrue info and what not i just went to the guys talk page deleted everything off and told him that i hate d him and he is a pretentious power hungry ass hole but in like x more words i might get block but only for a bit i think i don t see me getting block for like more than a week if i do that is totally to much,-1 +dynamic ip so fuck you,-1 +faggot shut the fuck up you fuck in horrible little faggot,-1 +viridae you suck mike s cunt nostril discharge,-1 +stop vandalizing my post my edit is useful and accurate so stop deleting it and warning me for fixing your crap you jerk,-1 +can suck my nine foot throbbing cock,-1 +what the fuck are you talking about they did lose a couple times,-1 +liar that was all true you and your twisted family sit there at nights in a circcle wanking off over children and then you eat them with michael jackson i bet you were the one that dangled the baby out the hotel room,-1 +ass hole lol what a half brained chump bitch,-1 +the two of you both seem actively involved in deleting my hard work can you explain your qualifications in editing these articles besides having a computer with an internet connection i m not trying to get anyone banned i m trying to correct and add to articles that are grossly inaccurate because they all seem to be written by male computer scientists in their twenties what the fuck does a sock mean and why do you keep removing and reverting my edits are you saying you are not involved with sudoghost the two of you seem to have nothing better to do than to revert every single one of my posts here keep it up with the personal attacks and insinuations here keep being a piece of shit scumbag it s clear you are in the know about proper conduct and protocol here,-1 +you you are attacking me again beacuse i am do you remember me fuck ing man now i see that you want destroy my work again this time you will die fuck ing ryulong,-1 +it s abrevashun it makes stuff shorter u f er i ll nswer dat queshton now f off let me do it august utc,-1 +who the fuck did i attack personally,-1 +someone should have told you by now if you stop suck ing so many dick you ll be more relaxed too much dick suck ing so i m told can lead to temporary psychosis,-1 +nonsense my medical condition is fuck ing nonsense to you go fuck yourself i hope you die right now,-1 +go fuck yourself for giving me a sandbox warning his face was burnt in the attack watch the fuck ing episode before giving me your fuck ing warning,-1 +you bitch you son of a bitch you are the reason resident evil is going to hell youtube wise i fuck ing hate you all those fans of yours are just nerds who think stupid jokes are funny you should die and rot in hell,-1 +and a fan of anime yup a child porn fetishist man i hope rednecks like you will be the first to go,-1 +and a puss at the same time,-1 +oh bugger i loved my sockies i wish i had,-1 +hey man i was just playing no worries i won t do it again i mean you could take a joke or you could just be a stupid ass hole but hey w hate ver i would like point out that nothing that i said was either anti semetic or evil i have multiple friends that are jew s and i m sure that most of them would have thought that it was funny in any event carry on you crazy russian prick,-1 +the svg is fuck ed up talk,-1 +fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia fuck wikipedia,-1 +hello wikipedia lover go fuck yourself,-1 +you and jack greenmaven are mother fuck ers,-1 +quick message fuck o f f that is all thanks,-1 +s it is not even funny i can fuck en hack wikipedia if i felt like it bitch test my ass i dare you to fuck en block me,-1 +nickelodeon workers you are conniving greedy ass shit cans that don t give a damned fuck about anything more than money fame and fortune what in the world are you dick eaters trying to do win yourselves a bunch of hot girls get some damned lives you fuck ing turds,-1 +a cheeseburger for you hey fuck you for deleting my page that was a real serial killer but not everyone knows so i m spreading the word you imbecile mystery man was a real serial killer and i demand an apology he was real if not i will tell the police that your the serial killer who killed plus people you sick freak,-1 +you don t know wait a minute do you wanna say that you know her better i don t think so so stop editing the page because you not me you ruined both pages so shut the fuck up and let me editing the page like i know because you re a liar and that s why i editing the tuna singer page don t erase that what i wrote you or you have a problem rondakalitus,-1 +what kind of bull shit is that hamas s self proclaimed goal is not to free themselves but to destroy israel and establish an islamic state on its territory so this does make them an islamic terrorist group and which of the founding fathers had ever called for the destruction of great britain may i ask,-1 +i want to be a fuck you that s a song,-1 +okay okay okay first off fuck you second second secpond hold on plz dont perma ban me plz plz plz my mom ll make me take out the trash then also do u hav a lyf,-1 +fuck you jdelanoy you are german cock suck fuck er mother fuck er good to know how you fuck ed face looks,-1 +i like to perform felation on sheep,-1 +why the fuck did you do that certain editors who shall remain nameless will think i influenced you probably use the diff to prove that i eat virgins for dinner hehehehehe talk contributions,-1 +once again i say you keep your face out of stuff you dont know as it stands you no nothing about the nolans i do and what i say will go edit away but i will remove all your crap so why dont you take you do gooding goodytwo shoes way and play on some other street corner,-1 +the graceful slick is non other than an ungraceful dick,-1 +dirty slutty bitch tramp ass hole pussy,-1 +he believes in openness but closes his page bull shit we all see thru u jimbo wikipedia founder hit with relationship trouble allegations of excessive spending by megan mccarthy march pmcategories people wikipedia founder jimmy wales didn t have such a good weekend first the blogosphere and then wikipedia itself lit up with news of his messy breakup with controversial canadian tv pundit rachel marsden now accusations are flying that wales has been living the high life on the expense account of the nonprofit foundation he created on friday reports surfaced that the married but divorcing internet icon carried on a clandestine affair with marsden evidence of the affair included lurid im trans cripts which appeared on silicon valley gossip blog valleywag on saturday wales posted a statement on the wikipedia foundations website which he later moved to his personal site denying that his actions went against wikimedia foundation s policies and stating that the affair had ended marsden responded by listing the clothes that he left at her house up for auction on ebay so what s the big deal when a relationship goes sour well the two met when marsden contacted wales to help her clean up what she perceived to be errors on her personal wikipedia page and there have been allegations that wales used his influence to improperly make changes former associates of wales are using this scandal to bring up other worries they have about the organization of the foundation former wikimedia exec danny wool who left the foundation last year wrote a blog post insinuating that wales used the non profit foundation as his own personal piggy bank expenses that wales tried to apply to the foundation included bottles of wine and visits to moscow massage parlors wool alleges according to wool the expenses got so out of hand that the wikimedia foundation took away wales corporate credit card there were occasions where he used the wikimedia foundation for personal advancement under the guide of the mission and as someone who was in there for the mission part of it i found that rather distressful wool told epicenter wales did not immediately respond to a request for comment,-1 +you greatly enjoy it when when a large long stick of feces enters your mouth nawlinwiki that is disgusting,-1 +nobody s could be called homophobic even employing words such as sodomite faggot or sex deviant,-1 +um there isn t a strong consensus against it the only person reverting is doing so in bad faith as can be seen by his edit summary of suck my dick there s no need for this to be reviewed just need to wait until vandals leave the article alone so i can work on it,-1 +don t be an ass it was a clear edit conflict and where have i a blp violation,-1 +for fuck s sake i wasn t referring you or anyone in particular i use one perfectly harmless phrase which simply implies a person is being stubborn and suddenly i m attacking everyone there s a difference between a personal attack and an opinion but no lets just twist everything i say because someone brought me to ani one of the very few times its happened since editing here then tell me to leave don t look at the good i do here or anythingtalk,-1 +ass hole why did you bring everything here tell me,-1 +go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yours,-1 +jess stay out from my site you retard ed pedophile look alike dip shit,-1 +you fuck ing retard s only a fuck ing dumb shit would be religious does godel look like a fuck ing dumb shit talk,-1 +you cant delete it siece of shit fuck your mom,-1 +fuck you white trash,-1 +hahaha pussy bitch you re a bitch,-1 +fuck you are you happy that jew s like madoff bankrupted your country actually it is not a real country just a lb pitbull for israel fuck you you stupid american go fight and die in a war for the jew s how many american jew s are serving in iraq and afghanistan oh ya zero they let you stupid goys die for them fuck you you retard go eat a bowl of jew ish lies you stupid fuck your life is poitnless,-1 +wtf what is your problem im not spamming just adding a relative link so let me leave it,-1 +hey ass hole dont you have any thing better to do like getting laid or jacking off to some milly fakes,-1 +yawn huh what me oh fuck off you dumb cunt you got burned not done with you yet dodge charger z yawn damn youre a dumb dumb huh go on block me pull my st isp yawn fuck in dumb shit you made up that stuff and didnt get away with it why not just admit defeat and go away pride too big i ve just seen your photo youre not a real texan are you night night ass hole yourcousin,-1 +why are you such an idiot afl is for homos,-1 +it doesn t offend me but that s the thing about strong language it s use can have unforseen consequences now do fuck off there s a good chap,-1 +isn t tart a kind of whore or concubine or courtesane e g she s a politician s tart,-1 +snowager i will hack you because you re a fuck ing shit and please it you blocks me i would hack you changing your password,-1 +bastard you fat bastard you have done it your end will come blood from your throat death in the air and the dn group returned and your blood is a sight of glory you fat bastard sayonarra and go on a diet,-1 +hi ru d a d d b d d d bd d b d ba alex smotrov you want a fuck or dick whats problem,-1 +no you just repeatedly fuck ed up an article for no apparent reason i found that insulting so i insulted you back leave useful edit summaries and don t revert things just for the sake of it it s not hard,-1 +this is idiot ic you morons just rewarded gaming and disruptive behavior by a group obnoxious tag teamers who ve been trying to get this user for a month now i m sorry bwilkins but it s very obvious that you are the one who doesn t get how this project really works you re clueless and people wonder why this project is dying maybe cuz the admin corps consists of twits,-1 +christina moon how dare you delete this page you fuck ing piece of shit moon s story has brought joy into the lives of millions of citizens of zaire a nation that lacks things to be happy about especially seeing as how it no longer exists congrats on becoming an official douchebag,-1 +i did not vandalize anything you dick i have never removed an article only edited it to better standards of scholarship and writing if you dont like my style do what everyone else does and edit the fuck ing thing,-1 +sad you are one sad fuck try to get out of the basement there s sunshine up there,-1 +blow me its my right of freedom of speech to edit wikipedia so fuck off or i ll rape you anally and vaginally good day,-1 +hey hey faggot are you dead yet or are you watching your mom getting rape by filthy pigs which one is it,-1 +the case against the rebels is poor says the interviewer i fully agree says sellstrom o k shill and then he elaborates you darouet fuck ing useless pro putin russian shills fuck off and stop using wikipedia for your putin fascist aims,-1 +what the fuck is going on here i don t even know if i should bother trying to fix this or just use my second account permanently shit indrian and times probably playing some shit game here pretending to act like me and got all this shit on my page i knew there was something wrong with those ass hole s when i saw them the first time guess i ll have to abandon this account hey you still need to learn how to read links don t think i forgot this isn t funny ass hole guess what i have been using another account and you don t even know what it is since the very first time i was block ha keep playing your games you aren t preventing me from editing piece of shit oh and don t think i forgot about your year old temper issues when anyone tries and fixes issues with your precious dreamcast punk ass bitch lol you guys did a number on this account probably found out what program i was using for the first bs account you made i am impressed with how much damage you have done to this account but it really means nothing when i am still editing every day on my personal internet and you have no idea which account it is oh and no it s not using a proxy or a public wifi spot heck i may even try reporting this all you idiot s did was use proxy s if i post on this account on my personal connection and then appeal this i might just get my account back and get you idiot s banned i know exactly what you are going to do after this to wait until i log off and then pounce with a new account sadly looking at all this crap in my talk page an admin would have to be retard ed to not see how many of these accounts that are proxies and not actual connections you can only hide the smell of rotten fish for awhile before someone notices shit may was well clean this shit up oh wait a second one more thing what kind of retard ed admin are you when having a bunch of almost all accounts pretending to be me are all on proxies and not one of them acts like me did you even see my history and not one uses a real connection got that brain damage you do had to put that in bold to be clear warning me about an indefinite block lol what does that matter you already screwed up noticing what a year old would have noticed by now any person would be frustrated by the silliness of this nonsense i would appeal but something tells me to much shit damage and retard ed admins will make this impossible and i would rather not use the ip of my other account using a real connection n my personal internet because then you guys will probably be jackass and deleted for fun look at this page all this shit and nothing clicked in your small head amazing wikipedia also i need to take note to stay away from low ranked video game pages and focus on popular until you guys get tired of the act also i know you guys got an account that is going to post a bit after i submit this post i saw him and he did the exact same thing of the duded did you guys need help i can t believe not one guy was not like this shit don t make sense for a whole second amazing alright so clean this page and leave this message here erase other extra crap alright looks like we are in business btw i know this is probably bull but if any of you two actually are not trolling which is highly unlikely than post request an admin to come by so i can clear this account up but i have this sinking feeling you guys all knew what s been going on here this whole time and i have no patience to search through tons of pages to find one contact i can talk to about this block so you might have this account but you won t get the other one suck doesn t it until then i will be going about my day and you guys will most likely probably still be doing this for x amount of days cause i guess you think it s funny yeah list of trolls the official list of either trolls who got nothing better to do or user who actually are so dumb that when the same thing happens over and over again the same way they don t realize that there s something amiss one is a shit admin that posted a warning on this page two i had to deal with multiple times and it seems they got something against me because they are making accounts trying to make admins believe they are me yet they act more like them even their edit summaries are just like theirs if there are any sane admins left drop me a message so we can have a private conversation and i can prove things to open this account back up in the mean time i will be posting with my second account it seems like t,-1 +you need to stop editing pages right now you little shit,-1 +i look forward to fuck ing you up the ass as well,-1 +you really really suck,-1 +mildred taylor is she is totally stupid o j,-1 +how bout you go fuck yourself,-1 +apostle much agreement about the pointless of fuck the police as a rallying cry in posting here just remember we here are not occupy oakland we re not affiliated with them we re not necessarily supporters of them we re wikipedia an independent media agency we re trying to document we re not trying to support criticisms for the occupyoakland should be sent to them by email or social media we re not them and i don t think they check this page,-1 +hey polish slavic monkeys you slavic monkeys can wright here all the shit what you want but all world knews what realy you are the trashy mutantes from lower dniepr your poland have no rights to exist it is only band of slavic trampes vilnietis,-1 +sound like the kind of malice and stupidity i expect from you,-1 +vadalize what did i vandalize you fool ya admin are lyke bush alwayz keeping us nigger s down now tell me what i did so i can try ta get your admin removed,-1 +i think all of you americans you have a real attitude and mental problem first you live in a world full of conspiracy and spyies you still believe that america won vietnam that you especially you are a americqan soldier hero pf anyway no need to show you more proves of how crazy and idiot s americans are by the way what happend in ferguson is american democracy a the cowboy law all you you a bunch of stupid incredible stupid cowboys one guy enter in a shop he molest the cashier still some products push away the employee and you americans what you do you go in the street screaming wasn t his fault you are a joke of people a bunch of iditos but anyway from my point of view keep thinking and acting like this alredy the whole europe asia and in specially russia don t like you at all you will end up of being the paria of world if you know what that means it seems that what i was trying to explain to you was just something for a american military idiot who thinks he is still in nam i m doing contributions to many articles you dumb stupid fag from all over the world because i travel a lot with my work and in my free time i try to do something useful you stupid piece of shit you can do w hate ver you want because i don t care i do not sympathize with any publication news website so i don t care and as long as i edit article by adding useful info s from a lot of different ip s ll over the world what you will do block them all you stupid dumb you cannot take my opinion away and as i travel i will continue to develop and support wikipedia not with stupid accusations so shut up and keep dreaming on the american way ok,-1 +kingpin you are in a word a cunt,-1 +mongo is a homo sex crybaby,-1 +im gay and i like a huge dick up my ass,-1 +teadrinker is a stupid jerk also he has a stupid nickname,-1 +i ll be back whenever i want to and then i ll bang your mom,-1 +you cant stop a train you have failed me for the last time seriously is wikipedia that stupid that they don t know people can t reset their router modem and get a ip really as soon as you ban all the accounts i ve made and suspend this ip il do what i always do darth vader owns you and it seems you like to hump alex jones cock hrrmmity herm herm you fuck ing going to be exectued in the nwo jsp fuck ing owned you what now bitch fedarated ak u,-1 +your ass hey okay you don t want to put my friend s penis in your ass then how about my penis in your and vaibhav s ass,-1 +ut fuck in retard go get a fuck ing life u bitch c,-1 +ban one side of an argument by a bull shit nazi admin and you get no discussion because the islamist editors feel they won,-1 +i will remove this pathetic scum myself i will remove this pathetic scum myself by disintegration and before that hang drawn and quartered,-1 +hello greatest teacher dear my favorite teacher you are my favorite teacher user pascal tesson you truly amaze me how you can give me such horrible grades you are the best mother fuck er in the entire world i hope you will eat my shit every time you see me in the front row of your class you are a great bitch,-1 +what was that crap on eisenhower he was a bum who played golf constantly while nixon ran the country where did you study english an historic dumb bastard learn the basics of grammar you probably pronounce literaly litrally right how chic crackpots my ass pull your head out of your ass,-1 +a cowards site that must stop changing things he has no right to change you have no right to change nichiren shoshu website nil stop it i have changed this web site over the past mothns whpo do you think you are if i didnt predicte this years ago i would be pissed off however you will not be reborn as huam for a very long time that is why you are changging this site think about buddhism before you act,-1 +i allways knew wikipedia was a joke i never realized it catered to queers you can all go and fuck yourselves,-1 +delete it and my ip address you stupid fuck ing faggot now,-1 +you snivelling little shit horrible horrible horrible vile nasty things are coming your way you little geordie shit bag mark my words you are going to get it good and proper,-1 +what i mean to say is that im a big fuck nig idiot and i dont know what im talking about,-1 +why the fuck are these two the same they are individual writers with differing credits seperate is the way to go now do it now,-1 +don t write crap here i have already reported you to admin that you have abused your powers by threatening to block me and patronising vandals and trolls take the matter to her talk page at user talk pschemp,-1 +fuck billcj and kill billcj because i hate his big fat fuck kill billcj kill billcj kill billcjs ass kill his big fat fuck kill his ass kill billcj fuck billcj kill his ass kill billcj kill billcj i hate him kill billcj and avenge toughhead kill his ass,-1 +hello there you stupid weedhead you are so f ing stupid and dumb stop deleting my pages i m just trying to help you do also got a very lame and uncool username angrybirdlover,-1 +get a reality grip you suck try to be responsible and take youre elected resonability for real and be objective,-1 +stay off my page jerk off i ve been editing wikipedia long before you you have no authority over me so drink my cum and eat my shit,-1 +reply what the fuck was that excuse for and about you warning me just now i want proof where and what the fuck did i do user factual man,-1 +i reverted the edits you big baby seriously do you want me to burp you little baby stop taking life so seriously and grow the hell up i did nothing wrong and yet you threaten a ban without referring to wikipedia s article on good faith edits stop treating me like shit or i will kill myself you mean spirited person,-1 +what a fuck ing riot i am laughing my sweet white ass off,-1 +flaming what about bukkake having links and masturbathons having links wow satanic dictatorship,-1 +martin conway suck s cock in the men s toilet at the anu hahahahahhahahahahahahahhahahahaha what a filthy homo,-1 +you stupid cunt oh and i fuck ed your mother last night i hope you die,-1 +thanks an idiot ic deletion by an insufferable editor red pen of doom lieberman is very notable in his field i must do some more work on legal bios sometime we should have so many more of them on wikipedia if the us coverage isn t terrific imagine what law and lawyers for many others countries is like,-1 +god damn god damn god damn god damn god damn god damn god damn god damn god damn god damn,-1 +freak i seen your picture you look like a faggot nice gums in your smile you have big ears and looks like your balding get a tan and maybe you ll lose some of your pimples pizza face have you ever talk to a girl without giving them your creditcard number st talk,-1 +i have a better idea tell your friend to stop fuck ing stalking me,-1 +what the hell is your problem dumb ass,-1 +caden s should b shot in the head x u best shut up u piece of dog shit t u no nuthin u stupid piece of shit t larry king is victim,-1 +wooha reading your featured great article makes me laugh a lot you have so much wrong and you have so misunderstood its just funny one day im going to punch that jim wales cunt and if i find your name out youre on the list too wrong wrong wrong wrong wrong wrong wrong,-1 +im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt im a fat cunt,-1 +you have a message re your last change go fuck yourself,-1 +why don t you go fuck your mom jun utc,-1 +are you a pole smoker do you suck cock,-1 +image the animation is crap get a new one,-1 +merope you fuck ing moron you protected my talk page in violation of wikipedia rules and then left it protected even after my editing privileges were restored,-1 +suxk my dick you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice b,-1 +hey cumtaster how is the cum tasting going,-1 +suck it bitch suck my bigass cock gag on it mother fuck er i didn t vandalize shit you bitch ass punks in your administrator s clique think you re the mother fuck ing bomb and shit but you ain t got shit and you sure as all hell don t know shit fuck if i took a dump and put it on my keyboard the fuck ing shit would come up with a better contribution than you mother fuck ing gestopoing up in this bitch,-1 +you seriously suck giant cock onorem,-1 +u r mean as hell fuck u lol amirite,-1 +wow your a dick hey there apparantly you deleted my page on wikipedia first of all let me say that you are a fuck ing dick reading your comments it would seem you do this a lot and i have to ask you what the fuck is your problem i should be allowed to post stuff on wikipedia along with the many other users whose articles you ve deleted i don t care if you don t think they have meaningful content and although mine wasn t all that meaningful your contributions to this site aren t either in fact you aren t in my opinion contributing anything so stop deleting peoples work get off the computer and get a life because if you can find my article in a few second after i created it you obviously have none i hate to be so harsh but its wrong to do that,-1 +hey jim your one fuck ing disturbed person you know that your a fuck in ass hole that created one flawed psudeo bureaucracy filled so called encylopedia you know you runs this fake encylopedia bleeding heart liberals and afrocentrist your a dirty scumbag,-1 +listen up go fuck yourself ass hole,-1 +do you see the paragraph that starts with how about the dresden codex can you understand that part read it a few times over by the way the codex is a whopping pages long rather large book you say and this is classic i didn t invalidate anything you have no contribution as of yet please hassle someone else from now on thanks for being a funny idiot hahahahahahahaha mardyks,-1 +hey fuck t rd stop deleting my page bitch you must really be an old fat a s c nt with no fuck in life deleting a perfectly fine article over several times get a life faggot t and stop trolling on wikipedia i mean seriously is wikipedia your life,-1 +also remember the what assuming does it makes an ass out of u and me,-1 +lol smalljim u have small penis jk lol,-1 +don t fuck with me coz i fuck back there can be only reasons why u r undoing the edit in pratibha patil s wiki u r blind u must have done some scam like that,-1 +very large penis and a wise man once said what is sex without pain,-1 +re justification for comment left which took the piss out of everything to do with your faith it seems well that was longer than i anticipated for a title oh well anyway do you think i am an arrogant shit head by reading that or just a tad rant headed sorry but your comment was abusive to me aswell mate i think you should tell him how to treat people okay i might of took the piss out of some person and i don t know if i did the christian faith aswell i can t remeber to be honest but anyway justification i am nice anyhow but do get pissed when i get pissed off with people i get nasty i was reading aristophanes earlier that day thats why it was in a poem and all my poems have underlying critical elements or praise in them you got the abusive tone of the poem but probably not the underlying bit or by the reaction of the first you be deeply off the scale i wonder what i said what made the christians came into factor i really can t remeber dam should ve saved it about the tell him that capps are for shotuing on the internet i know that all ready i used it for something called emphasis may of heard it also i was fuck ing pissed at the time so you do fuck ing shout and swear don t you yep if you don t your not human well the swearing part you can reframe from but your a man so swearing is allowed only women where you say sorry for my french again justification i am english that is a phrase over here i am not just digging at the french so yeah i was on a rant for a bit won t happen again unless a person is abusive to me then he will die well not die just lightly peotically abused then he will die no stop with the killing see i am mad sometimes i am actually a comedian so i don t take anything seriously maybe i should bombs away dude and dam that m on remember,-1 +note to mal if i m treated differently from you it s not because i m an admin it s because i haven t got a pattern of behaving this way and you do remember fuck off troll by acting the way you act i stirred up shit and got block duh,-1 +gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick john cline is gay he suck s dick,-1 +shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up v shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up,-1 +fuck you bizitch yo fuck u fuck u,-1 +i actually have aspergers as well but ive learned not to be a pedantic little shit about it,-1 +bitch sand nigger eritrea is not majority arabic go fuck a camel,-1 +go hang yoursef lazy fu go hang yoursef lazy fu,-1 +hey you fuck ing nigger whore i m removing completely false information ban forthcoming,-1 +what the fuck how exactly am i engaged in a edit war when you removed my stuff are fuck ing serious my stuff is cited and it s useful information for readers about the progress of the movie stop fuck ing around you don t fuck ing own the page other people have a right to add information too if you have an issue with what s been written you can discuss it not remove it with no explanation,-1 +hai u suck my penis also i left a message for you on my talk page might be in history,-1 +that is appropriate talk you fuck ing dip shit i will come to your house and stab you repeatedly while you sleep and watch you bleed to death and cry and i will laugh,-1 +i think that what is evident is that most of these bots who are so called moderators the ones who spend pretty much all day editing cleaning up restoring wiki entities are clearly sad cunt s that is according to the majority you know the masses who are rational retain some sanity by being offline for a little while unlike sad cunt s such as,-1 +chriso proven criminal and fuck en homo chris you mother fuck er all what you want to know about chriso you can find at w chriso homo com bold text,-1 +you are ass hole master of deletions march diff hist user talk patgallacher notifying author of deletion nomination for patricia walsh current march diff hist patricia walsh nominated page for deletion using page curation subst blp prod march diff hist wikipedia administrator intervention against vandalism reporting novaranist tw march diff hist m hans kohala reverted edit by novaranist talk to last revision by severo tw current march diff hist most extreme airports current march diff hist n user talk matt notifying author of deletion nomination for iustin beldie march diff hist n user talk timostaurus notifying author of deletion nomination for scott wornow march diff hist n user talk mason decker notifying author of deletion nomination for mario kart characters current march diff hist n user talk nathanielpopoca notifying author of deletion nomination for nathaniel popoca march diff hist n user talk iustin notifying author of deletion nomination for matei berceanu current march diff hist user talk novaranist only warning vandalism tw march diff hist n user talk zachlyda notifying author of deletion nomination for zachary lyda current march diff hist n user talk novaranist notifying author of deletion nomination for pornography in north korea march diff hist user tentinator articles created current march diff hist n user tentinator articles created created page with this is a list of all the articles that i ve created first catilinarian conspiracy second catilinarian conspiracy in toga candida march diff hist n user talk jaylentable notifying author of deletion nomination for beautybaby current march diff hist n user talk conservationscience notifying author of deletion nomination for conservation evidence current march diff hist n user talk prasadaman notifying author of deletion nomination for aman prasad current march diff hist user talk liberalufp notification speedy deletion nomination of word windowism tw march diff hist n user talk lunedeep notifying author of deletion nomination for lune deep march diff hist user talk blackiedog notifying author of deletion nomination for list of king kongs march diff hist n user talk giovz notifying author of deletion nomination for special wiki special preferences current march diff hist n user talk jarmanpreet sandhu notifying author of deletion nomination for jarmanpreet sandhu current march diff hist n user talk rpriykant notifying author of deletion nomination for moneyroot consultancy current march diff hist n user talk pregish notifying author of deletion nomination for pergasus syangbo march diff hist n user talk shresthaprabhu general note removal of content blanking tw current march diff hist n user talk espabangalore notifying author of deletion nomination for elements spa current march diff hist n user talk jadurkupi notifying author of deletion nomination for music marketing current march diff hist user talk j bitch notifying author of deletion nomination for john alderton medic march diff hist user talk hikogaratashi notifying author of deletion nomination for brooks kossover current,-1 +critics of aipac use rosen s case as vindication of their views what the hell is that blatant pov if i ve ever seen it more zionist bull shit on wikipedia,-1 +why are you being so rude i only want to help you mother fuck ers fuck retard s you re such retard s i hope you all die seriously die,-1 +fuck you you fuck ing idiot,-1 +i know pretty much anything he has recorded and not in one of them i hear him saying anything against women or homo sex s hence your edit was bull shit,-1 +meow sh uh there are two ways why you do erased my comment about ww that holocaust was brutally slaying of jew s and not gay s gypsys slavs anyone if you are anti semitian than shave your head bald and go to the skinhead meetings if you doubt words of the bible that homo sex ity is a deadly sin make a pentagram tatoo on your forehead go to the satanistic masses with your gay pals first and last warning you fuck ing gay i won t appreciate if any more nazi shwain would write in my page i don t wish to talk to you anymore beware of the dark side,-1 +hot rod hey dumb ass what are you doing to my article hot rod are you the president of wikipedia if it ain t broke don t fix it,-1 +fuck the poor britain is shit,-1 +ajohnson is a son of a bitch and a dog eating mother fuck er,-1 +opps my bad bitch fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein fuck wikipedia bitch and david eppstein,-1 +your email the fact that ryan engages in cock foreplay indicates that he is probably a homo sex,-1 +fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing bitch es that are reading this jasenm suck s fat dick fuck ing,-1 +stop fuck ing harrassing me,-1 +don t bother this admin don t give a damm he s just wraped up in his power trip truth or facts or reason be dammed only the relgion of jimbo and the coolaid is now relavent wik kafka catch animalfarm btw i m joehazleton and i hate when others take credit for work i don t do,-1 +comments on talk ashurism hi elias you made a few comments on the above talk page such as damn garzo no offence and i do mean this in a positive way but you re truly a pain in the ass you are obviously like most wikipedians an enemy of freedom of speech you have issues with someone questioning your motives and you are also a hypocrite and that s really because you are an old man garzo you know a little stiff again no offence but you should stop taking yourself too seriously you know be a little bit more humble while none of these are taken in context especially offensive your tone was flippant and unhelpful and bordering on rude in the second example with some unfair accusations of racism also made i don t want to have to block you again as you re clearly a bright and valuable contributor for the most part but please try and bear in mind the feelings of others not everyone may share your sense of humour on what is ostensibly a scholarly project and calling your fellow editors pain in the ass racist hypocrite or old man is rude no matter how many times you say no offence or add smileys to the end of the sentence please be more civil in the future if you have any questions let me know,-1 +bilcat mom is a dumpster slutt,-1 +you re both a couple of ass hole s,-1 +leari can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and arrest me san diego california chula vista fuck ing get your information right faggot shit head i can still post with this computer i said block me come the fuck down here and,-1 +hey everybody fyi don t bother posting on scalzi s website he deletes posts critical of himself and he ll do it over and over that guy he describes on his bio is pretty much the opposite of him he hate s confrontation except on his own terms and can t handle criticism in fact he will go to great lengths to hide it from others all that crap about liking to argue is pretty ridiculous the only thing that s true about that page is probably that he does indeed taunt people however he seems to have a problem handling the type of shit he dishes out so stick to his page here where at least the facts aren t relative to scalzi s ego,-1 +lawl fuck you you have no sense of humor to call that vandalism that was humourous content you bitch faced faggot,-1 +wikipedians just fuck off wikipedians hehehheheh low life scums eh go get a life instead of acting gay be a real man,-1 +pathetic settler that s what you seem to be i m glad your silly ass is so upset that you feel you have to engage in vandalism and spout inflammatory nonsense or ridiculous statements long live the palestinian and lebanese people to hell with settler reprobates,-1 +deletion of created pages you have deleted the pages rachel barry and austin mcnabb this is ridiculous just because you have never heard of them doesnt mean that the pages should have been deleted they were well written articles of hard working americans clearly you are not one sitting on your fuck ing computer all day and waxing your fuck ing carrott i think you are a self rightous bastard who should burn in hell i will not think these things if you put these pages back up have a good fuck ing day sir fuck ing god damned bastard,-1 +i agree with you somewhat you shouldn t be blocker for three reverting an ass hole talk contribs,-1 +gwernol ugly stillborn molesting dick ad dear gwernol u useless cunt molesting nigger tard go fuck dvd rw s inch albino cock gwernol ugly stillborn molesting dick ad dear gwernol u useless cunt molesting nigger tard go fuck dvd rw s inch albino cock gwernol ugly stillborn molesting dick ad dear gwernol u useless cunt molesting nigger tard go fuck dvd rw s inch albino cock gwernol ugly stillborn molesting dick ad dear gwernol u useless cunt molesting nigger tard go fuck dvd rw s inch albino cock gwernol ugly stillborn molesting dick ad dear gwernol u useless cunt molesting nigger tard go fuck dvd rw s inch albino cock,-1 +to the faggot coffee expliciton,-1 +you are biased you are a liberal biased idiot who masqerades as if you are neutral you are a fuck ing joke fuck you how do you like the tea protests bitch you re going down,-1 +you you are a high and mighty dirty cunt and i want you to perish,-1 +do you know what i say gas the mother fuck ing jew s anhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleachanhero kill yourself drink bleac,-1 +phanatical you little piece of shit you are a fat fuck you are insane yours truly hehehe,-1 +your a twat what happened to the george walker page motherfudger,-1 +now go suck a nigger dick,-1 +i m back yes i m back but i won t do anything stupid you ass muppet,-1 +suck my dick,-1 +hey don t be a faggot,-1 +wikitheclown welcome to wikipedia although everyone is welcome to contribute to wikipedia at least one of your recent edits such as when you reverted my edit to ibanez shows you to be a rediculous fuck please refrain from being a rediculous fuck,-1 +how dare they sit under the white man s tree them fuck in nigger s have to learn their place,-1 +father of the nation fuck your iran s father of the nation top,-1 +hey hey faggot are you dead yet or are you watching your mom getting rape by filthy pigs which one is it,-1 +fuck you jeremy hey jermey a i just thought i d mention that you should pursue getting a real job you piece of dog shit furthermore fuck you in addition to that i think you may be homo sex citation not needed because the grapevine has shed light on your impotence issues around women that or you need to stop dating fat women also fuck you cunt you kike ass nigger pussy you re a fuck ing deadbeat loser eat my shit and rot you need to understand what wikipedia means to me nothing by nothing i mean i d rather be penetrated by razor sharp dildos into my sphincter before ever giving a shit what you do suck my cock you white pow wow nigger knife kike and and and eat my shit seriously i mean this for real eat it meaning stick the lumps of excetement escaping from my rectum and consume them let the shit slide down your throat then and only then may you disgrace yourself by giving me the shit head you re really unqualified to give dog fuck er,-1 +what the fuck are you doing lay off my questions it s bad enough you start your own sections for your own answers a separate question is a separate question and i shouldn t have to go searching for it because you have taken it on yourself to move it,-1 +middle finger l well fuck you i fuck ing listed a source ffs,-1 +thaksin is a fxxcking thief and should be shot anf killed with all his family members ass hxxes all of them bold textread heading enough said,-1 +one fuck a day got it now to convince the wife x,-1 +is a gay faggot that takes it in the butt from other users who control him and manipulate him to indiscriminately ban users with gay cunnilingus is a faggot and so is they are butt buddies,-1 +bbsrock why did you put suck s big cock,-1 +i had a great time with you last night ass sex was great man we should do it again some time i hope we get married because we ve had a lot of dates,-1 +well i was offline so i missed the fireworks but your award is most appreciated i can t see a lot of reason to stick around here much anymore what s the point i get death threats and trolling on my talkpage and get threatened with a block for telling them to fuck off in an edit summary i have another guy call me blind insane and or a troll and no one threatens him with a block not even a civility warning is posted nothing at all this was just hours ago i have to endure all sorts of harassment baiting goading and character assassination and when i am not perfectly civil in the a face of this neverending barrage of hate i get some admin threatening me with a final warning and then a gives me a hour block,-1 +you re not an admin you act like an admin but you re not an admin don t even fuck ing act like that you re trying to fuck me up but you can t do any shit like that as a sofa lands on the ground your mother gets her tits squashed and dies and a dead rabbit falls from the clouds and lands on your ass licking your ass user factual man,-1 +okay i m done talking about policy i just thought i d let you know that no one believes wikipedia info to back up real sources we aren t even allowed to use wikipedia as a source on our source cards for research papers maybe you should find a new hobby and forget about wikipedia because i just created this account to make this place a bit more accurate the internet is screwy noawadays and the only place i really trust is starkidz because they get donations from parents etc no one even trusts wikipedia so maybe you should stop wasting your time i m never coming back here again i previous had an account which you block for copyright infringment when i wasn t posting anything you weren t i honestly created this account to badmouth wikipedia so you re an ass,-1 +do you think people would like you more if you weren t such a dick or are you a dick because no one likes you either way you won t be missed,-1 +idiot fuck you i had advanced tickets to see this thing because i wanted to see it so badly and your piece of shit asses ruined it for me,-1 +penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis penis penis pneis pensnsnniensnsn penis,-1 +fuck off you complete tosspot,-1 +to ymblanter eat my dick ass hole there s no way to contribute when this user ymblanter is misusing his powers meet me irl so i can educate you stupid mongoloid,-1 +im going to get block for this but i don t care you are the biggest wanker i have ever met on here and i cant believe you are an admin you suck the cock s of all the other admins but you re an absolute cunt in your dealings with newbies and first time vandals i could have been reformed if a different admin had given me my first warning but now thanks to you im going to fuck ing vandalise this heap of shit encyclopedia every day for the rest of my life im years old fuck er hahhahahah,-1 +put my edit back or the federal police will arrest you this is last time you do that get ready for prison i wish an australian doesn t rape you there you racist piece of crap,-1 +i dont know who you fuck ing think you are you cock suck but this is a whole load of shit e about philip from start to finish its the worst article i have ever read inaccurate is a massive understatement im going to take the whole fuck ing article to pieces you fuck ing ignorant insulting pigs,-1 +you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck,-1 +ps i m a fuck ing cunt piece of shit i hope i die and rot in hell because i accused someone of editing a page they didn t edit i should rot in hell the fuck ing cunt hole ass hole penis head i am,-1 +wtf is with this place nazi land geezus what everything has to be peer reviewed do your own god damn research it s fact this isn t speculation do not remove it again,-1 +yeah user smalljim suck s big fat chode,-1 +ass raping of donkeys it must be a joke mustn t it,-1 +john henry haines was born on april in houston texas to missionary parents wtf does this have to do with this article,-1 +hey disco fuck er stay out of this,-1 +then start quoting the damn cover instead of a message board et tu brute,-1 +oversight what a cunt you ll never make arbcom with that attitude,-1 +communist bastard i have nothing more,-1 +lauren socha edits hello tiller i know wikipedia doesn t censor but if i were to walk up to someone and say fuck off ya paki bastard i d probably get done in so why should it be allowed on here everyone of different natures visit wikipedia and to see what she said i d imagine would offend people waffle over haha talk,-1 +bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it,-1 +chicken fuck er for t h lulz,-1 +dude i gave you evidence what the fuck,-1 +fuck you jzg i will have you removed,-1 +your a fag get a life,-1 +you no for good rascal i give u proof that dhoni is a rajput chk it http my opera com aaryanrajput blog you mother fuck er you bastard u biased ronchos the bastard gujjar suporter i am a badgujjar and i am a rajput why are u vandalising our histroy by removing my content u suck dickeer y u add contents about other castes badgujjars are raghav and are rajputs u bastard proof taht badgujjars are rajputs chk http ebadgujar com history html retrieved from http en wikipedia org wiki user talk spacemanspiff,-1 +talking with little boys like you sure is an utter waste of time what makes you think i am interested in any further bull shit from you arthur rubin this is the comment you preserved by deleting my post ignoring rant which contains mostly lies and the pseudoreferences are not the current state of any wikipedia article what needs to be deleted is any of gaby s contributions related to the rant arthur the liar i have also apologised so it s really time for you baby boy to piss off and go stalk some one else i mean who do you think you are among other things you call me a liar but you are to retard ed to actually mention where i lie there is nothing wrong with false accusation in your view now is there arthur now please just piss off and leave me alone you had your chance to be a nice guy more then one time now where you got the idea i would be interested in talking with an ass hole like you puzzles me but don t bother explaining it please here read it again arthur boy ignoring rant which contains mostly lies and the pseudoreferences are not the current state of any wikipedia article what needs to be deleted is any of gaby s contributions related to the rant arthur the liar your further comments on my person are not welcome comprendo,-1 +fuck you fuck you fuck wekipedia fuck all you good for nothing dip shit s who would not shit if it came out of your ass go fuck yourself and stay in dreamland,-1 +oh yeahh and im mentally retard ed and i sukk butt,-1 +tool box fuck you piece of shit you think your in control fuck ing faggot you think you can harass me and get away with it fuck ing shit face i ll beat your fuck ing ass if you mess with me again and yes this is my new name sincerely,-1 +i m not trying to bully you or anything i m a nice guy people are always picking on me but i really am a nice guy and if you say any different i will ing ban your ass,-1 +you suck the big one,-1 +please make dreamguy and his tools stop messing with my user page i have cleaned it off in good faith and that ass hole keeps putting it back,-1 +hey fat and beardy i check the sock puppet page a few times a year to make sure your retard ed fat ass has not put the wikitan image back you are sticky with pocky you are sad and fat and beardy and i beat you like a retard ed dog i just want you to never ever forget the time you reverted my change and i kicked your tubby ass never forget that ned ever you can run around wikipedia with your fellow simpsons cp obesessives for the rest of your life but don t forget i kicked your anime ass off a page and made wikipedia better for it,-1 +i am not your son these are not unfounded accusations there are thousands upon thousands of us who have lost friends and family to the cult i am just one of many you on the other hand are a fool i d also suggest that you may be a fuck ing retard but that would be cruel to the retard s to compare them with you,-1 +you guys suck stop faking it,-1 +don t touch my edits mother fuckerucker fuck a you re just angry cos ur poem suck s,-1 +hey marnette fuck u u fuck ing queerbag who suck s on cock s fuck u leave me alone and go suck on some guy s cock u fuck in queermo oh babe,-1 +picture youy mother with her wrinkled up ass in the air grease up that pooper and jam it in go fuck your mother you better leave me alone you little runt,-1 +fuck off change was made after my post,-1 +how was that a personal attack he was being a dick so it was fair cop to call him one,-1 +who are you fuck,-1 +racism you have characterised my implications that you are racist as bull shit anybody interested in viewing this user s racist diatribes is encouraged to comment on the maltese nobility talkpage i find this attitude you ve decided to pursue highly disrespectful and will still require an apology thank you,-1 +im back im back bitch es,-1 +it seems common sense to me that the article should picture subjects relevent to the subject it covers frankly i can t see why you are being such a dick about this and obviously i can t see how you are right,-1 +hello wikipedia fuck head a holes of the labour market are skilled group,-1 +hello dreadstar you left a comment on my talk page about uncivil comments i just wanted to let you know i ve seen the err of my ways and have come here to rectify the mistake i made by not also personally attacking you yourself so i d just like to take this opportunity to say suck my dirty ass you cow fuck ing trisomic and thank you,-1 +jusdafax is a little whiny bitch lick my sweaty balls homo,-1 +he s a baldjo faggot,-1 +like i said get the fuck off my page faggot,-1 +no i am not the fuck er who has been harassing you i can only suggest that it is someone who uses the same wireless connection as me,-1 +you dummasses i did say the damn right stuff but you bastard s act like im making my own stories dummasses,-1 +you stupid fat bastard why did you censor the move logs of pikachu you fat oaf is it because it offended your delicate victorian sensibilities are most british people as prudish as you,-1 +your a prick keep your personal thoughts to your self jeff is the best driver ever and thats a fact you musy be an idiot redneck,-1 +faggot s yo fuck er it was fuck ing hayes you faggot not vito vito wasnt with wwe in you fuck ing faggot faggot you arent right go fuck ing jump off a bridge you fag,-1 +pedro is a fuck ing dumb ass probably just was bullied as a kid now as an admin tries to get back by being an ass hole blocking ppl for no reaseon what a deluded faggot,-1 +why did you stop my edit you fuck in gay prick,-1 +i traced your ip bitch im reporting it to the ccp lookup ip address general information hostname broad gz gd dynamic data com cn isp chinanet guangdong province network organization chinanet guangdong province network proxy none detected type cable dsl blacklist geo location information country china state region city guangzhou latitude longitude area code,-1 +utc what a load of shit i see entries all the time that have links which have nothing much to do with the entry in question also the fark thread is discussing the hurricane therefore it s valid august,-1 +to munch pussy and not know how to spell good in english because i am fuck ing foreigner for who with which english is the hard language i am dyke,-1 +thracian tribes category hey cock suck i m going by the books those are tribes considered thracian or perhaps thracian in the literature revert your changes thanks,-1 +etc cm punk did adopt the go to sleep from kenta fuck ing hell kenta invented the move cm punk adopted it from him get your bloody facts right you re fuck ing abusing your power for no reason and you fuck ing think you know more wrestling than me just leave me the fuck alone please am,-1 +i said shut up you stupid stupid,-1 +on another note fuck u dr nick you poofy fuck,-1 +wat duh fuck is going on,-1 +hey kuru fuck you take your shit somewhere else,-1 +steve little steve little s character in eastbound and down is not bumbling he is mildly retard ed your ignorance in handling this matter angers me to a new level of hate for faggot wikipedia moderators who think they are fuck ing geniuses you guys are fuck ing retard s who were born with no penises and masturbate all day to yourselves fuck ing with peoples edits and pissing them off really bad i hope you one day get bored of masturbating in your white room by yourself and decide to try and have sex with a beehive resulting in your dick getting so swollen you die a very slow painful death in the hospital with no one with you to care or give you a funeral may you rot in a fuck ing morgue with a swollen dick shoved up your own ass by a disturbed doctor,-1 +ban me you stupid fat american virgin cunt at least i have a life outside of wikipedia go throw your dogs balls lol what a retard x,-1 +fuck u u stupid prick,-1 +hey man i fuck ed your mother,-1 +for real a wiki doesn t count as a source on wikipedia ugh what the fuck,-1 +do so all mexicans and black people are shit heads and im in the k fuck heads,-1 +penis cock wad nigger nigger nyuga nigger nigger penis fuck ass fuck nigger fuck negro whitey cracker chink namer cracker,-1 +you are very dumb because you offend other users you mother fuck er,-1 +dp i don t need rules and regulations of wikipedia parroted back to me i can read them for myself i tried to come on here and kindly present my idea before publishing it but it appears that diplomacy as usual has failed i m not here to vandalize anything and i m not going to remove the atheism parts or anything else from the article but i will include the fact that he was seen praying in this episode because it is relevant to the subject whether you like it or not please get yourself a life and try to remember that you don t own wikipedia and that if you remove my submission or alter it in any nonconstructive way you will regret it fuck er,-1 +how can you defend those barbarian invaders they have no right to be in israel those fuck ing scum,-1 +hey you scum haha you ve also a warning you rape son of a bitch,-1 +sitush bastard sitush is a bastard crook rogue vagabond rascal son of a bitch dirty creature and everything the lowest form of human deserves to be condemned with,-1 +here woody why don t you just fuck off,-1 +how about you get the fuck off jew ish related articles and stop adding israelophobic propaganda to wikipedia,-1 +pikang is an idiot he says he knows who i am working for jagex for your information i don t live in uk you bloody ass hole so stop fibbing its a sin and next go ahead and get me fied who ya gonna fire mod melvin omg your just a lolly suck ing nerd who s lies are just gay,-1 +you fag wa wa i m a huge gay says you,-1 +willking is a dick,-1 +this just proves what a piece of shit organization this place is admin jzg antagonizes user by calling him a cunt then one of his friends that is also an admin blocks the user without any proof of wp sock so he can t defend himself and then the other admins friends decide he should be banned indef and he is the admin who provoked the user and the admin that banned him without any proof at all have nothing happen to them man it s no wonder people think wikipedia is a joke if that is how this place is run,-1 +you are a f g kill yourself cus nobody likes you,-1 +accept what accept what you putting your dick up someones ass,-1 +shut the fuck up you tight assed shit hole,-1 +dont i know to answer that why are you coming to my user page stupid,-1 +where does it say that featured articles have different requirements then other articles jeepday the whole point in to get citations for all articles so that they meet the wp v requirements i have noticed that tags quite often help by bringing this to attention of users particularly new ish users cheers seanmack i agree with jeepday and seanmack our ultimate goal should be for every article to be of fa quality satori son that goal is not consensus among editors but more importantly inline citations for every fact are not an fa requirement see wp fa section c cmummert talk i gave the link to what i was referring to you fuck so how can you not say that i did not provide a reference fuck tard well lying fuck fuck tard how can i provide a reference to a deleted post you fuck in moron fuck hole deathtard for the second time here is the citation fuck hole and this time on display for your fuck hole eyes teacher knows something about catholic bashing posted by alex murphy on religion am pst replies views the bakersfield californian feb leonel martinez my catechism teacher sister mary lou petrillo was a smart and scrappy nun who drilled into us the basics of catholicism without demeaning other christian churches or religions too bad sister mary lou isn t available to teach a few intensive lessons on tolerance to the campaign people of presidential candidate john edwards within the last few weeks two bloggers for the former north carolina senator resigned after being hit with criticism from conservative catholic organizations angered by past anti catholic remarks the bloggers posted on the web according to cnn melissa mcewan and amanda marcotte quit after groups like the catholic expletive deleted catholic bashing reinhard posted by jazusamo on news activism am pst replies views the oregonian february david reinhard welcome ladies and gentlemen it s time to play that favorite game of conservatives and republicans what if todaywe have a special twofer edition of the game that asks what would happen if a republican tried something like this pay attention double standard mavens because this is a multipronged question today what if a republican presidential candidate hired a blogmaster whose writings featured vile attacks on other religions and expletive laced rants against those who disagreed with her the same republican also hired another blogger whose writings featured similar the catholic league mighty champion of gay bashing and anti semitism propaganda alert posted by joseph demaistre on religion pm pst replies views talk to action sun jun by bruce wilson hate speech is typically the first line of attack employed by bullies but bullies become emboldened when eliminationalist rhetoric is tolerated and that societal acceptance can lead to far worse things i ve previously covered hate speech see enough hate spech to stun an ox and hate crime org has an extensive collection of hate speech targeting homo sex s suprisingly or not at least one individual whose statements are featured in that archive and also in collections of antisemitic rhetoric is also leader of a prominent christian right group that claims to fight against anti catholic bias and discrimination who catholic bashing plays are hot posted by nyer on news activism pm pdt replies views catholic league august bill donohue bill donohue president of the catholic league offered the following comments today on the popularity of catholic bashing plays the helen hayes theatre in new york must be experiencing hard times these days otherwise it wouldn t be home to kiki herb alive on broadway according to variety the play claims that the catholic church is run by the nazi s and that the devil really does wear prada the devil is the pope to show how timely they are the play s producers manage to squeeze in a smack at mel gibson dropping the line now he wants the jew s to treat him the unholy battle for rome more catholic papal bashing from the left posted by kellynlane,-1 +shut up i know it s vandalism you awful cunt,-1 +yall are fags who like it up the ass hard,-1 +i hope you get hit by a truck you filthy piece of worthless crap just go kill your self human slime,-1 +booshakla the guy was a sockpuppeteer here on wikipedia quit acting like a cunt,-1 +pansy there are multiple sources reporting the shot down of a french warplane stop censoring wikipedia you ass hole you claim that libya is manipulating reports but not concidering the same from the coalition you re also not taking into account that you are manipulating reports by cencoring information here so suck it agsman,-1 +sup dude i m not spamming fuck you learn to read when i post something relevant that helps users you are not helping by removing it do you care about what people want or need to know no,-1 +well i suppose i spoke with a wrong person you re just as fuck ed up as the other user who posted the study p s fuck you you fuck ing government shill,-1 +fuck your face y,-1 +do humanity a favour and kill yourself you nazi bias yank piece of shit,-1 +year old editor who probably sh ts his pants what s his name again oh yeah it s super hamster oh my god super hamsterbold text is gonna save the fuck in world gimme a break stupid wikipedians go get a life and fuck yourself willy on wheels baby,-1 +thanks for being an ass when i tried to help cfhs grad,-1 +well what u said before really hurt me so u should be block bitch tits ur a pussy thats what u are hiding and being an editor a super geek hours a day on the computer have no life i bet u have no sex life either just fuck ing strippers geek geek geek geek geek ill ball u up,-1 +fine u can keep pulling this shit and uve got a bunch of islamo pov pusher admins on ur side so i fuck ing quit u can have it,-1 +why wikpedia is gay wikipedia suck s i will never forgive you user gwernol the whole verifiability thing is completely retard ed and gay all i wanted was a simple article for westside and could you give that to me no apparently everything needs to be reviewed and published by the new york times before you can put it on wikipedia i understand that there are certain things that don t need to be on wikipedia but westside isn t one of them are you suggesting that westside doesn t exist what the fuck is the world coming to when these are the criteria for my article in conclusion fuck user gwernol fuck wikipedia and fuck your ridiculous verifiability criteria,-1 +fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you,-1 +hello smelly skunk how come that you again changed it you are a stupid ass hole like your ancestors you gobbled greedily fecal materials,-1 +twat your a fuck ing twat mosh u fuck ing little batty boy wots ur mother fuck ing prblem,-1 +epic i just watched this guy on ted and he is fuck ing epic,-1 +are you stupid or what moron if you block me you have only hurt the wikipedia project as i was trying to help remove some obvious bull shit that even a reatarded grade school kid can tell is bull shit from an article are all wikipedia admins as stupid as you,-1 +you re the disease of america stealing jobs from regular people and working for cents an hour fuck ing mexican monkey,-1 +for the record i did have a valid reason for removeing the section i did which was on the discussion portion of that page m ss ontomars k is a fuck ing ass control freak like about a million other wikipedia members,-1 +here s your fuck ing reference http w state gov g drl rls htm toc,-1 +for all the politeness i dealt you i have gotten nothing really beneficial in return i hope you spend hours on your favourite topic only to see somebody fuck it up for their comfort with the usual how goes this day when your brain shrinks instead of expands looks like canada is still stuck in pinko policies you are a suck ling fat piglet you have no right other than the clause at the bottom of the page if you do not want your writing to be edited mercilessly and redistributed at will do not submit it mar utc,-1 +u bastard s stop blocking me ah f u all,-1 +fuck er why don t you get a real job instead of just looking for things you call vandalism when in reality it s the truth,-1 +mctrain this talk of the article being a hoax is a lie someone placed vitus name into a fake article about sacred skull order and then everything that was also attached to vitus got destroyed believing that it was a hoax it all went through the grinder but that is bull shit there is no hoax with anything attached to the vitus person except that his name was unfairly put into that bogus society article go to w avoision com and punch in what people said about him when he took on his title those are the pople that looked to make trouble withthe guy on wikipdeia now if anyone writes about any topic related to this guy they are labled as a hoaxer but every peice of work i have written on is verifiable by the sources given and is truthful why should anyone put up with this constant accusation of hoaxing there is no hoax except for people placing the guy s name into a bogus sacred skull order article why should eveything else be destroyed too this is bull shit and i m sick and tired of that,-1 +so it s not abusive to say fuck ing fuck bull shit accuse of wp spa accuse of breaching wp spa but what i did deserves a ban look here the admin said this abuse did not even deserve a warning yet my conduct deserve a block this is utterly unbelievable,-1 +do i talk so much shit the second question is what,-1 +heh alright i was nearly in sweet fuck all mode with wp and was about to just bow out for good until i finally got some good advice and thank you i m actually working on the article per hypnotoad s suggestions now t c,-1 +all right let s play by the rules then tell those faggot ts to stop fuck ing with my contributions then they don t use sources correctly they use them to amuse themselves subwayjack,-1 +eat shit horse face you re a tool that doesn t even deserve the tool fuck er,-1 +doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life,-1 +a jew going around wikipedia editing against arabs everywhere fuck you,-1 +go fuck yourself nigger,-1 +are you the tosser behind the closerlookonsyria you are a facsist putinist shill and liar you fuck ing idiot you think shabiha nothing to dow with hola russia nothing to do with mh aside regime nothing to do with ghostsa you fuck ing facsist moron,-1 +hey bwilkins it is clear you have some kind of hard on about me why don t you shut up and come suck my already and let someone who isn t bought and paid for by the av press handle this issue better yet read wp gfy,-1 +ass hole fuck u ass hole go fuck ing rape my penis,-1 +fukin arseholes dick cunt s die u priks,-1 +fuck your propaganda what we need is an unbiased look at this the soviet soldiers saved the estonians from nazi sm and the estonisans are not bitch ing about this this is clearly ani russian propaganda we need to edit this crap with the use of unbiased arbitrators or a comittee with different sides involved thank you for being a dick,-1 +listen up ok listen up you god damn jerk i m really sick and tired of your shit i m sick of you stalking me all over wikipedia because i m editing a page just because you don t like the edits i make doesn t mean you have to bully and global block me each time i make an edit ok i m not hurting and offending anyone so why treat me like a terrorist i ve noticed i m not the only one you bullied you are abusing your power as a wikipedia administrator and you are nothing but a tyrannical bully that is not how you motivate people ok and the reason you hate me so much is because i m speaking out against your ass and you hate it i will not let you intimidate me no longer and you ll going to delete this and tattle on me as usual because you as a tyrant don t like the truth but i will be back and i will continue to edit like everyone else on here so in closing screw you piss off and eat shit,-1 +fuck you nigger kite y you deleting so much shit fuck n loser dont delete anymore shit its none of your fuck ing business,-1 +sigh apparently i m surrounded by idiot s like you chubbo why am i even talking to this retard who hasn t ever gotten out of his chair since he was born,-1 +the biggest barnstar up your ass hi you endian mother fuck er son of a bitch shoot yourself in the head and things will be back to normal again this will be your biggest service to humanity thanks in advance yours worse nihgtmare the biggest barnstar up your ass,-1 +vandalism i m damn sick and tired of idiot s vandalising this page with things like omfg dale is so fuck ing hot no one fuck ing cares fuck off if you are going to do shit like that there should be an instant ban for stuff like that,-1 +to unre l this is in reference to ur stupid comments about indus valley not being indian u are a fuck ing wanker there was no fuck en pakistan or idependent state of pakistan before infact most of the pakistanis are real indians of the muslim faith which were conerted by the arabs i hate you people that attempt to leech off indias majestic history before you pakistanis cant get your own food own laguage urdu is at least hindi own identity and own land india has given so much land to you to avoid conflict ad now you want to take away our ancient civilisations i have had enough indus valley was indian land occupied by indian people god gave india to the indians not the pakistanis remember pakistan is indian land so is kashmir and jammu,-1 +attention if you got a problem email me dierectly ok you fuck ing cock sucer mother fuck er cunt,-1 +i ll tell you what i m not and that s a useless towel headed sand nigger all your kind sicken me,-1 +learning to fuck off hello welcome to my page you can fuck off now,-1 +trouted you have been trouted for fuck you,-1 +how about you shut the fuck up stop fuck ing with my posts you fuck ing douche bag i am joe torres leave me be,-1 +chriso internet vandal and criminal chriso belonge to international homo criminal organization see more at w chriso homo com chriso is an fuck en idiot with chicken brain ha ha ha,-1 +see this sums up your wiki and admin of wiki class piece of shit even lower than that you as an admin just violated wp civil and you remind of thousand wikipedica civil obedience blah blah blah i am wel aware of all your policies and since none of you admin cared to see that the article was a complete fake and full of lies and istead of that accused me i also forgot to acknowledge even a bit of your policies why should i care about the policies when admins violate it themselves btw if even one of you had cared to look the article and its fake references and no references the issue would have solved way ago this again sums up your class most of you admins or even veteran admins are either illiterate or didnt have a job to do retired and classes bunch of arrogant idiot s some may be responsible and educated i know a few but most of you clowns dont even listen to them a clear proof me i have been watching tennis and following records for decades so once i saw that article i refused it directly for a fan puffery proven also by the references it used like the tennis warehouse fan chat room website blogs etc btw i think i also am ahead in terms of academic degree than most of you i wrote this long comment because i know instead of punishing the article creator and editing all its ridiculously funny claims about federer you would read this and come back and teach me blah blah wiki civil wiki etc you just wasted your time,-1 +i applued the fact that you don t work with any one you don t work with any one and refuse to see any one less point view or facts you are a dick head if people disagree with you you mock and insulit them you are the wrost human i ever meet on the net or in person you really need to get off your ego trip jackass,-1 +why don t you experiment with my balls by suck ing them,-1 +stop fuck ing sending me shit this is becoming personal bias don t be an ass hole,-1 +try android and dreamguy both very unpopular with other wikians and both seem to be ass holes uneducated arrogant and just dumb as a post beckjord,-1 +fuck off this is a message to kimvdlinde do not modify my posts also i do not want you posting on my talk page got that fuck er old posts,-1 +im an amdin and can do w hate ver the fuck i want user talk malo,-1 +either you are an idiot or an ass hole,-1 +not pleased with you at all no moron the reason i mentioned light currant is that my previous ip was block for being him anyway you re fuck ing me off right now so either apologise or i m going to make your time on wiki very unpleasant,-1 +b the cunt b you are issued from a cunt family you are a bitch and hell is coming and i m coming with it,-1 +stop editing you stupid a hole stop editing stuff on wikipedia your going to get this whole school banned about your stupid arguments about some fuck ing naruto character,-1 +butt fuck ing me last night,-1 +nivix likes to suck spurious q s cock and spurious q loves to suck nivix s cock,-1 +wer do u live wer do u live marybelle i wanna fuck u,-1 +stop harassing me mother fuck er,-1 +i don t give a fuck about the personal attack shit the pats win ohh ya wouldya block me yet or are there rules about that shit too,-1 +like the fuck ing jew s can keep good people from commenting on this coolie s talk page achmed should stick to beating little children and women in the west bank and suck ing clipped dick,-1 +penis doodle in your ear and all your mutts,-1 +notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit,-1 +good to see that the masturbator of lies onanizing brainsick opinions continues to spread his freaky bull shit don t you think you should spend your time with more importand things like stealing a car or better a brain,-1 +unblock white cat is a fuck ing bastard block this ip like my sister ip,-1 +bothwell was a real jerk serious jerk,-1 +you re so gullible lmao what a fool you really are wow you only act like a smartass but you re a dumb ass i ll be happy to destroy your talk instead of your user page hahaha p s i just did your mom last night,-1 +you must be joking i see the rumours of a militant embittered pedophile faggot conspiracy on wikipedia are true since it s on my ass doubly so because demilich band and brutality band were deleted by a cretinous bunch who had no idea what they were talking about,-1 +editing my own user page is not vandalism bitch,-1 +i hope you get cancer you fuck ing stupid irish cunt thank god for oliver cromwell,-1 +u dam stupid son of a why u want trouble wij the polece kew,-1 +now we got two losers who think they run the show well fuck you adrian and fuck you heracles you clown,-1 +youre a frreaking jew and pleaze commit suicide,-1 +you are a fuck doosh bag cock suck dick face homo ass hole suck my balls dick,-1 +stop fucing up wikipedia articles,-1 +you ll do w hate ver it takes to change the subject of why you and kos should be banned d ck is vandalism it s just the politics here are fuck ing awful go ahead change the subject again w hate ver it takes to change the subject comedy kos was trying to justify the ban in a debate but in the middle i got banned he couldnt come up with a reply so he banned me comedy then he tried again but i replied and got banned go back to suck in his dick k,-1 +my mums a big old dirty roadwhore,-1 +fuck in hell you are such an idiot stop capitalising all your words,-1 +oh my fuck ing god come on,-1 +you suck leave the gnaa article alone,-1 +fuck y o u,-1 +i fantasize about seeing my girlfriend with another man i want to blindfold her tie her r to a bed fuck her for a bit then have someone take my place i don t want her to know i m doing it and i don t want her to know who she fuck ed the girl has cheated on me quite a bit which hurt so i know that ultimately this fantasy is about showing her that she is my property i will do with her as i please and give her to whom ever i feel she deserves to be given to,-1 +stick it up your ass a video for kommandohimmler l sst gr en,-1 +daniel rigal feel free to suck my balls,-1 +hi my name is widr and i love to suck some african mansausage,-1 +i work for an it company with access to computers in cities in countries in continents have fun banning me you cunt,-1 +how s about you shut the fuck up instead if your going to use wiki to write history at least make that history truthful and accurate instead of spreading right wing racist viewpoints you nazi piece of shit go die in a hole somewhere,-1 +tbone dear sir you are a bitch i will take a shit on your car i hope you realize that i own the rights to the entire dc universe and plan to poop on them as soon as i eat out your granny dick are for chicks and your not one go get t boned by some burly man named dirk i think jodie foster is a sex beast and she rapes the souls from men ages i also would like to bring to your attention that you sir are a wiitard you make clark fights his homo sex urges and wants to do sylvester stallone i want to ride the italian stallion is what he says,-1 +fuck ing lamer losting of my time joadfyh you are wasting my time fuck er please provide me the fuck ing information to add the fuck ing tag to add that this is my image that i give it to everyone for free and that i owned the fuck ing copyright this is so complicated to donate an image to wikipedia this is my fuck ing source my fuck ing image fuck er,-1 +yeah but being a cunt is as you ve just demonstrated i know i should not surprised that you say nothing about content the content is wrong we should discuss that and you d be less of a cunt,-1 +dude you think i give a fuck about you posting this bull shit warning do something useful with your time rather than flexing your little authoritarian muscle here don t you have anything better to do in meatspace perhaps shove your block up my ass for all i care talk,-1 +thankyou for blocking me you little shit the block has now expired and i intend to get straight back to work to make up for lost time let the trolling and harassment commence p s i am never going to stop ever,-1 +yeah nigger know what i m talking bout bitch,-1 +i can t even fuck ing edit my own talk page can someone unprotect it and lead me to drv talk,-1 +you stupid whore will never get it will you doesnt fit in your tiny wakpedia wimp err admin brain fuck you ass hole,-1 +usain bolt is so fuck en sex aw mah gawd only nigger gs have big fat black nigger dick i wanna suck him n fuck him wite boiz are weak and pathetic and feeble in bed only a nigger g can satisfy me i h my wite skin i wanna do a reverse of michael jackson cuz nigger gs r da best,-1 +stop ur stupid invlovment,-1 +you dirty bastard s arse,-1 +goddamn it it says on the blocking policy that i m entitled to editing my own user page you faggot ing faggot s leave me the fuck alone fags burn in hell that means you latinus and especially you wiki alf banes is cool though he s my homey,-1 +supper you hungry bitch,-1 +trouted you have been trouted for being a homo cunt,-1 +the anti vandalism barnstar fuck you doc fool,-1 +you have got to be kidding cur prev august iridescent talk contribs bytes undid revision by golf talk the one in england is clearly the primary usage there s no need to specify the country undo thank cur prev august iridescent talk contribs bytes undid revision by golf talk etty never even visited america stop trying to change this to en us undo thank what in the hell is your problem do you have a corn cobb stuck up your ass or what you are the rudest son of a bitch i ve ever come across fuck you and the horse you rode in on,-1 +he s also to be fair managed to use other fora here to shout racist crap t he gui looks like it was designed by a handful of congolese rd graders wearing grass skirts really smash,-1 +naughty naughty u slimy little greaseball haha lol u got banned what a dick ead it s what u deserve u fuck in geek bitch faced mother fuck er you don t know how long i ve been waitin for u to get banned and no wonder theres so many imposters of u cause every hate s u i hope you get the shit kicked out of you and then get pissed on you fuck in no good slimy little toerag gimp scummer,-1 +fuck da sevurity it is official you suck,-1 +fuck u dennis burn in hell you son of a bitch i will hurt u,-1 +hello jeff i the changes i made to the wayne brasler page add important to his recent doings and are not vandalism please pull the africa sized pole out of your ass he is a highschool journalism teacher not ghandi pinetree,-1 +rat the smart sign the rest of yall fuck nigger s,-1 +john cline is a fuck ing twat,-1 +you worthless piece of shit as a concerned citizen i am upset and violated that you would do this you are wortheless how can you take pleasure in hurting miami this way if i ever see you in your life i will make it a point to kill you on site you worthless ridiculous bastard i hate your fuck ing guts i hope you burn in hell and die most painfully yours truly pp loco,-1 +mf and i have a mutual enemy in sanctimonious bull shit,-1 +the slut karen nussle is the typical right wing slut she wrecked jim nussle s marriage jaysuschris s partisan vandalism loves this he lusts being called a right right slut,-1 +and when i done popin capp in yo black ass ima cut off you man jew ls and sell them on ebay yeah some luck guy is gonna be eatn yo sht in africa,-1 +more like madcock suck ingboy er faggot,-1 +when you faggot s decide to edit wikipedia is it a tough call between editing and tattooing the word loser on your forehead tattoo might have been less embarrassing later asslickers,-1 +tosh ok tosh o is so fuck ing awesome video breakdown web redemption prank of the week i love tosh fuck yeah yeah baby jersey shore suck s keep on keepin on tosh why do roses have thorns tosh is fuck ing hardcore thats why,-1 +pseudomonas is a stupid fuck er,-1 +the only bull shit on olbermann s article comes from blaxthos himself dude quit trying to make wikipedia a platform for spouting your far left viewpoints and censoring anything that doesn t comport,-1 +this fuck ing wikipedia forever,-1 +why are you harassing me when you have never even bothered to read what i was responding to shut the hell up you idiot mentally ill child i am one of the most educated people on wikipedia this is your final warning keep violating the tos and you will be banned troll and stalker scum,-1 +curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis curps you mother fuck er don t fuck ing ban me penis,-1 +amadeus sings that amadeus song i m a jackass i m a jackass i m a jackass i m a jackass i m a jackass i m a jackass i m a jackass i m a jackass i m a jackass oh oh oh oh i m a jackass d,-1 +i ll kick the shit out of you ya cunt,-1 +edit my own see arrogant faggot,-1 +fuck ing ban me mother fuck er fuck ing dutch cunt,-1 +i also added a link to the site robertzubrin com but some tosser keeps deleting it if i catch the dick ead i ll cut his fuck ing face off must be some loser who is jealous of robert zubrins success,-1 +this is f ing serious i noticed the legend of sleepy hollow has the same previews donald s scary tales has where the copywrite date on the last tape i mentioned said i m starting to say that the legend of sleepy hollow was released in because every tape with the same previews always comes out on the same day and you aways say that you also said that tape was originally and i m trying to talk you back into it because i made a mistake and decided that you were right plus that would mean the laserdisc version of the adventures of ichabod and mr toad was same thing goes with the vhs releases of dumb o the sword in the stone and alice in wonderland they have the same opening the vhs of the little mermaid has so they are for the same opening robin hood was may because like you said titles are usually re issued to promote the newest titles of the series so robin hood was re issued to promote the jungle book also my cousins d copy of pinocchio was printed april so it dropped out april not january same with robin hood plus october is sunday nothing ever happens on sunday so the vhs of the love bug was october because it s tuesday and i m not going to leave until you accept this you f ing pussbag,-1 +anal rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape ass rape an,-1 +congratulations congratulations bmusician you have won the ass hole of the year award you have won this award by saying mean things about and to other people in order to claim your award you must call ass hole once again congratulations for your win,-1 +after numerous edit conflicts yes i am female and have never made any secret of it dave or w hate ver your name is if you want to take me to an i just carry on it will be a new experience for me i have always done my best but evidently editors like yourself and the exalted liz feel that is not good enough so on you go i do not give a shit chat,-1 +cos he smells like ass,-1 +better phrasing thank you but why did you reinsert cantarella and what is she doing in a section exclusively about percy and where does percy say that most greeks fuck ed their boys up the ass,-1 +dont worry i ll unplug my router tonite to get another ip address u fuck ing faggot as are all u wikipedaphile retard s,-1 +wtf wtf is your problem why are you being such an ass hole this is an educational institution you have no right to block an eductational institution i will promise you legal action if that continues against you and against your family and against anyone you may have that loves you i do not like you and i hope you die soon i will sue you if you continue to harass me your harassment is a violation of federal law and i warn you if you continue you will not like the consequences,-1 +good thing you are block you fuck ing scumbag,-1 +this is all fake dumb nuts,-1 +people that are douche bags fattyjwoods is a douche i can t believe he would like a gay team like the yankees well i guess you got to be one to like one p s fuck george w bush,-1 +blocking you are a company of wankers instead you accept a new info you block me i wish happy new year to wiko ipedia and all the wankers around the main wanker is meter fuck you all,-1 +thank you for experimenting with the page fuck on wikipedia your test worked and has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia talk,-1 +hello you son a bitch cock licker stop reverting my stuff you fuck ing ass hole,-1 +why don t you just go fuck yourself ass hole,-1 +which is latin or greek or some shit for who will gaurd the guards or in this case who will block the blockers,-1 +thanks for the comment ya wikipedia dick ead,-1 +queer wow ur so fuck ing gay u should go die,-1 +you are a dirty peadophile and suck little boys willies and make out out with year old girls,-1 +hey you bitch don t undo my edit for no reason now piss off,-1 +casual relationship is far too nonspecific and obscures the issue homo sex relationship is accurate and not as vulgar as fuck buddies if casual is changed to homo sex the edit is fine with me,-1 +you are one stupid jackass i don t believe any of the nonsense your profile for one second you need to stop listing absolute nonsense on your profile if you want to convince me and others you re reliable only a dilweed with a very low iq would be any of your fiction you stupid jackoff,-1 +whoa you are a bi fat idiot stop spamming my user space,-1 +february utc stupid don t be a smart ass i didn t ask who lefty was i asked what the hell is a lefty tradition you made up the term do you know anything concerning what you are writing you are wasting all of the above space and have not answered anything i asked a very legitimate question if you do not know simply shut your mouth get off this page idiot cracker,-1 +where do you live you little shit give us your address and we ll come and kill you you fuck,-1 +who cares they are worthless scum,-1 +and i know i am a dick ead,-1 +fuck you cunt try these important things and maybe you won t be such a suck mother fuck er learn how to spell if things remain as they are everyone is bound to consider you to be the ignorant lame brained cult member you are revert your attacks on van tucky on the talk pages you come off as a vicious vile psychopath if you ever set your cult defending ass in a court of law the jury would see through your charade in heartbeat stop playing good cop bad cop with your fuck ing retard ed dahn hack forestgarden accept all korean language sources you stupid bitch how dare you try to stifle and censor articles in the name of your fuck ed up cult your forestgarden bitch believes its within wiki policy to include korean language articles when reporting on favorable aspects of your bitch master why don t you include all the other more negative portrayals in the korean language also who said this itsahappyday fuck head deserves to trans late any korean this should all be disputed you fuck ing racist neo nazi reject stop using the word cynical to describe your enemies you come off even more retard ed than your ilchee bitch master your philosophical maturity is less than that of a first grader the world is cynical those who don t believe in dahn are cynical i can t wait until south park makes an episode about your bitch cult are you fuck ing insane korea is the center of the universe korea as a cultural hub korea the place where the next messiah appears you dahn people never cease to amaze when it comes to your thought processes korea is not what your ilchee bitch believes it to be think about it retard the fuck ing nation of palau has more of a right to talk about religious heritage than the fuck ing hermit kingdom how can you be so retard ed that you choose a korean cult if you chose a chinese or indian one at least it would show you have some portion of a brain coming to korea and joining a korean cult with korea centric views is more retard ed than travelling to antartica in search of good coffee while visiting columbia in search of ice and snow one more time the philosophical underpinnings of your shit cult are so flimsy i must question your intelligence nicola cola what kind of bitch ass name is that what is wrong with you and you wonder why you need to join a fuck ed up cult to find friendship and loving dumb fuck,-1 +lol youre too incompetent to place a proper warning idiot,-1 +i have not and don t accuse me i am not the one whom you have block and if it had been me you couldn t have done nothing in any case stupis ass hole,-1 +shut the fck up ferret,-1 +kiss me ass like its so convincing what you wrote how about stick a stick up your fat assk,-1 +why the fuck did you give me a last warning twat,-1 +message suck my big fat juicy cock,-1 +what part of fuck off don t you understand youi mouth breathing pimply turd while you ll never bang a hot chick you can be king of shit mountain it that it i laugh at you you can erase and erase and erase it s people like you that s the reason this site isn t making money most people wouldn t put up with your cliquey bull shit i on the other hand dont care have plenty of time and am all around a better person that you i ll bet dollars to donuts i have more money more respect a better job a hotter wife and a better life i know this is all you have ha i laugh while you erase,-1 +holy shit you re dumb i obviously wasn t questioning maturity which you d know if you read a bit more carefully i just personally find it hard to take seriously something a zit faced squeaky voiced little nerd has to say i should say geek not nerd nerds are smart and you obviously are not,-1 +fuck off its my userpage you tard hfydrhhtt t t ttft t t gffthdh dhtdrrth ff f f ff f,-1 +weenie pecker fuck stick dnjqo dqwelj,-1 +nice to see you bury shit you don t like scrapironiv typical wikipedian kindly go fuck yourself ass hole,-1 +fuck off you stupid mother fuck er you jschnur is a retard and a total fuck ing douchebag fuck him,-1 +why do you think trivium s music is grea t idiot it s just fuck ing metallica copy stupid and they suck and he makes gay face when he sings and he can t fuck ig scream properly he s emo faggot matt heafy likes cock fuck you idiot,-1 +u guys are fuck ing morrons,-1 +god damn real world distractions they should be abolished if only there was mfd for them,-1 +you state in your profile you are interested in anti fascism so please stop trolling the bnp article identify myself why are only enemies of the bnp allowed to change the article you re fuck ed up leave the god damn article alone my edit to the intro not only made the piece a better npov but it made it actually coherent,-1 +fuck you i was curious as to who the actors played and to read cumberbatch is khan is a total dick move fuck you fuck you fuck you,-1 +everybody fuck off why doesn t everybody just fuck off and leave this page alone it was perfectly fine before people started fuck ing with it and removing shit and no it does not sound like a promotional article fuck off,-1 +please stop idiot user j milburn who is a picture deletor vandal,-1 +fuck you you slut you deserve having a blind man chop your balls off with a chainsaw,-1 +the graceful slick is non other than an ungraceful dick,-1 +shut your fat face you ass,-1 +dr karl loves himself fuck yourselves wikipedia go fuck yourselves wikipedia,-1 +block me you self righteous cunt do you really have nothing better to do with your time than act as some sort of internet police you really are utterly pathetic i ll just make a new account anyway suck s to be you i guess,-1 +how about you go fuck yourself you cunt,-1 +it s your loss fuck knuckle i give you the justification you seek you remove your arm to spite yourself it hurts me but it s the only way to hurt you oh incorporeal holy floating hand of spittle drooling onto the world your horrible cum tainted viscous scum of greed and self righteousness ignorance you destroy all that is good with your touch and it violates us all you included spite,-1 +fuck you you are an idiot and an admin abuser i will keep coming back until my edits stay,-1 +stop messing with my work joshbuddy you did not create federalist no i did i created the entire article i am sick of wikipedia treating me like shit therefore i withdraw my labour from the wikipedia site please stop putting my work back on the site i do not want it there,-1 +i won t stand for this prevent unfree image from rendering in userspace per wp fuc sorry to intrude thanks for understanding this image is from a website belonging to the canadian government the national archives leave me the fuck alone man,-1 +you are the biggest and dumb est idiot i have ever met online second to rhobite,-1 +you prove my point if you block me you would only make me right all i ever asked was for you to leave me alone so go away or block me shit bag im tired of this discussion already,-1 +well it s pretty fuck ing irrelevant now i m un block aint it,-1 +why hello mr fuck ing jackass cunt remember me i wasnt gone suck my fuck ing cock,-1 +fuck u jimmy wales fuck fuck fuck,-1 +suck my cunt suck my cunt you fuck er,-1 +to the humongous faggot pro russian administrator of the crimea page the fock is there to discuss you retard fock off wikipedia and take your head out of putins soviet ass hole maybe then you ll get an understanding that reality is different from what your dumb media and dumb russian friends are trying to portray on the crimea page you focking stupid vatnik i m honestly surprised you got administrators rights without it the article wouldnt have survived in the state it is now ass hole suck my penor and choke on it there is nothing to discuss except reverting stupid russian lies on that page i hope you die in a fire sooner than you get to revert all reasonable changes bitch nigguh fock you also please stop ruining wikipedia with your backwards russian culture russia is crap crap and so are you,-1 +you know what fuck you i didn t vandalize your talk page i fuck ing talked on it what are you on,-1 +you re not even able to use fuck ing google can you http w enotes com psychoanalysis encyclopedia unpleasure,-1 +you little fuck hey guess what this isn t even wikigod this is my freinds account and if you fuck it up he will be fuck in mad at me and he will never fuck in talk to me,-1 +what the fuck restore the code lyoko article the afd happened during my block and it is real do some research jerk,-1 +i wrote that shit ages ago what are you a slaking faggot,-1 +alrighty you can go fuck yourself,-1 +it is unnatural for a man to take another man s cock up his ass find god,-1 +hey fuck ing swine doing bad suffering a lot preceding unsigned comment added by,-1 +douchebag award being a massive dick yey you ve been a massive douchebag here s your award,-1 +from the rest of the world go fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck,-1 +dont fuck ing put a template warning on my page and try and insult me like that you stupid fuck ing piece of shit,-1 +you biased you mongrol swine dickk sukker head you farshists ass likker i give u proof that dhoni is a rajput chk it http my opera com aaryanrajput blog you mother fuck er you bastard u biased ronchos the bastard gujjar suporter i am a badgujjar and i am a rajput why are u vandalising our histroy by removing my content u suck dickeer y u add contents about other castes badgujjars are raghav and are rajputs u bastard proof taht badgujjars are rajputs chk http ebadgujar com history html,-1 +are you retard funcking stupid,-1 +fuck k it im goin encyclopedia dramatica,-1 +i dont lambs wikipedia suck s ass pussy in the dick i dont give a pussy fuck about lambs bitch nigger ass hole cock retyc,-1 +wth my own user page go f bomb yourself free speech and all i was removing content from my page that was the result of taunting by the other individual please read wp civil as per wp npa there is the statement of using someone s affiliations as a means of dismissing or discrediting their views regardless of whether said affiliations are mainstream which my counterpart engaged in fairly often attempting to establish a bogus coi in order to get my point of view rejected from the article,-1 +fletch is mad at hu hay shit for brains why did you report me for my page about benidorm and dont try to tell me it wont you because it said you did on my disscusions page u little wanker nob fuck ing wancker bastard in bread pice of shit,-1 +and a song me cum she cum and you cum i cum you cum we all cum tonight,-1 +it s my ip address stop fuck ing with it move out of your mom s basement and do something productive with your life instead of fuck ing up wikipedia pages,-1 +no thanks fuck you i can always get more ip s you fuck tard,-1 +blah blah fuck in blah with books a time magazine article several news articles and the presence of a number of celebrities its notable if you want a higher notability for it do the research and add it yourself you were just bored feeling like improving some article by slapping a tag on it instead of actually improving it and nobody would let you touch the jesus article off with ye,-1 +jeff g likes to rape goats while illegal aliens choke him and shove broken glass in his ass,-1 +utc the fact that you re a dick probably didn t help either november,-1 +you f white propaganda chiefs go and die down with america,-1 +rob is a malicious administrator who likes to use the power that he has been given here on wikipedia to nitpick and harass well meaning editors he is a notorious ass hole and it is only a matter of time before enough people get fed up with his antics and demand that his administratorship be revoked if i were you i d just ignore the prick,-1 +suck my penis you nerdy virgin,-1 +jesus this fart was smelly fuck,-1 +stupid bots deleting pics i would like to ask a human to review the entry and possibly add photos from the links i have provided i cannot figure out how to do it myself also someone should either reprogram or shut down this bot april welcome to wikipedia although everyone is welcome to contribute constructively to the encyclopedia one or more of the external links you added do not comply with our guidelines for external links and have been removed wikipedia is not a collection of links nor should it be used for advertising or promotion since wikipedia uses nofollow tags external links do not alter search engine rankings if you feel the link should be added to the article please discuss it on the before reinserting it please take a look at the welcome page to learn more about contributing to this encyclopedia your edit here was reverted by an automated bot that attempts to remove unwanted links and spam from wikipedia if you were trying to insert a good link please accept my creator s apologies but note that the external link you added or changed is on my list of links to remove and probably shouldn t be included in wikipedia the external links i reverted were matching the following regex rule s rule a za z photobucket com albums jpg if the external link you inserted or changed was to a media file e g an image or a sound or video file on an external server then note that linking to such files may be subject to wikipedia s copyright policy and therefore probably should not be linked to please consider using our upload facility to upload a suitable media file please read wikipedia s external links guideline for more information and consult my for more information about me see thanks granted yes they are links but to photos intended for that particular entry they are of the album the tv show and the video respectively of course a stupid bot would not know this i suggest a human review the data personally,-1 +saxifrage has too many cock s in his mouth and they are obstructing his vision i think he may have banned me on accident when one of them fell out his mouth onto this keyboard,-1 +worst movie ever frozen suck s frozen suck sfrozen suck sfrozen suck s frozen suck s frozen suck sfrozen suck sfrozen suck sfrozen suck s frozen suck s frozen suck sfrozen suck s frozen suck s frozen suck sfrozen suck sfrozen suck sfrozen suck sfrozen suck sfrozen suck sfrozen suck sfrozen suck sfrozen suck sv v vv frozen suck s vfrozen suck sfrozen suck svfrozen suck s frozen suck svfrozen suck sfrozen suck sfrozen suck sfrozen suck sfrozen suck s,-1 +it s got nothing to do with my interpersonal skills it s got a lot to do with two fuck heads trolling my talk page and personally attacking me why don t you take your advice and fuck off and stop trolling my talk page and harrasing me you shit talking fuck in wanker and let me concentrate on editing articles rather than arguing with an anonymous peice of shit like you or the other fuck ing dick ead is that clear enough for you anonymous accontless fuck wit fuck off and leave me along you stupid wanker,-1 +hey olyeller fuck off,-1 +alright well do us all a favor fuck off no one wants to read these articles and see that citation bull shit all over the page that stuff has been there for years and no one gave a rats ass until now seriously dude fuck off,-1 +i dont care i dont fuck ing care if you have reported me i will start a new account see if i care your still a fuck ing ass hole,-1 +stupid yes he did jbkramer called me stupid here in an edit summary,-1 +fuck u lanchiau kanina bo,-1 +i am a typical democrat i stand for social and economic justice you guys apparently do not rather you stand for the sockputtery of basically why do you hate jesus and believe the ten commandents are errant i acutually object to adultery but you as republicans are dedicated to sock pupptery and sleeping around is your version of good by jesus shall i call you a homo sex slut clearly you belive adultery is a good wiki thing,-1 +man you are seriously fuck ing retard ed did you write those shit articles yourself,-1 +slim virgin you are a mindless stupid ass hole and are hooked on a power kick you are also sadly neither slim nor a virgin,-1 +i am also a sockpuppet of cutkd before you block me let tiw know that they are a horrid little shit,-1 +is it true that of all soldiers liked to suck penis,-1 +o you dont understand that im not doing a damn thing wrong andjust doing this for no reason sl keep reposting it tyou apologize faying that shit ealier and stop getting rid of it,-1 +you suck suck it,-1 +suitcivil is a little bitch he is a bandwagon barcelona fan who needs to be put in his place fuck that fagget,-1 +go fuck your mother faggot,-1 +you suck the beef and you know it,-1 +see the changes first you piece of shit and don t meddle into things that don t concern you all of the templates were placed to provoke we don t need a citation to prove that twelvers are the majority current in shia islam just as we don t need a citation to prove that the pope is the head of the roman catholic church we also don t need a reference to prove that iran is a shi a country this is a fuck ing widely known fact also unless you didn t notice a very large paragraph about ismaili beliefs does not belong in the article so please let me do my job and fuck off,-1 +bald lessheard vanu is bald x yie lessheard vanu is bald bald bald bald b a l lessheard vanu is bald bald bald he s bald lessheard vanu is bald lessheard vanu is bald x lessheard vanu is bald bald lessheard vanu is bald x lessheard vanu is bald bald bald lessheard vanu is bald yie lessheard vanu is bald hahahahahahahaha lessheard vanu is bald x lessheard vanu is bald bald bald bald lessheard vanu is bald lessheard vanu is bald i m telling ya he s got no fuck ing hair b a l d lessheard vanu is bald x lessheard vanu is bald bald bald bald b a l lessheard vanu is bald bald bald to the bone x i m telling you baby hahahahahahaha lessheard vanu is bald x bald x lessheard vanu is bald x aquestion foru what is a mid life crisis,-1 +were not vandalism you idiot,-1 +you re just a stupid arrogant prick you know that i m sick of your snot nosed attitude i m sick of your smart ass comments i m just plain sick of you,-1 +is something wrong with you you piece of shit are you even looking at the edits that you re reverting,-1 +re i don t have to add fair use for album covers ass hole they re fuck ing album covers there s thousands of them all over the site you re tellin me the only way they re free is if you put some stupid half ass rationale on there oh this is educational uh it s not good quality fuck you dude i m sick of you people givin me these dumb ass speeches just delete em you don t have to notify me every fuck in time obviously i don t give a shit you people think you re making the site better by patrolling with this stupid shit but you ain t i ve written featured articles brah what the fuck do you do and if you go snitchin on me about making personal attacks you re a ho i m just tellin you straight up what i think about this i guess it s unthinkable to actually have a discussion about something on this site,-1 +fine just get me out of here and let me be with anime news network and some of imdb where i can find better cool guys and not ones that picky and snobbish like you new jersey suck s,-1 +why don t you start a proper discussion instead of reverting all my fuck ing edits that sentence is from immediately after the match the total was revised because one save wasn t a save all official fifa documentation shows saves leave them all at and then have the goddamn discussion start a discussion somewhere and i will fuck ing participate ps fuck you,-1 +august utc fuck you guys i had to look up what you mean by sockpuppet and i assure you i have never met those two awesome dudes in my life maybe you need to accept that more and more people know aquman is an cock suck by the way i don t shove my fist up anyone s ass but my girlfriend s thank you very much,-1 +complete monopoly of pro russian shit heads at the crimea article please fuck off back to rt,-1 +aimeelee you are a dumb fuck you are an american i guess or a reall really really thick canadian aussie kiwi,-1 +fukin dick a dont care u pricks die all of u,-1 +fuck you fuck in ball bag bitch,-1 +you block me uahahaha go to hell you mother fuck er wikipedia is shit i wan t make nothing more,-1 +with regards and due respect to your recent thoughtful epistle shove it all the way up your ass,-1 +fuck u to buddy i know that was thomas i aint stupid,-1 +which makes you a useless piece of shit,-1 +ok but before you do anything let me just say the uncyclopedia fuck ing suck s p s caps lock is cruise control for cool,-1 +nah thats okay i ll just change ips just keep being a dick i hope you like suck ing on your own thats if you got one,-1 +why don t you sit on a stick idiot,-1 +you re a faeget fag,-1 +this clown is a fuck ing faggot that doesn t know his dick from his pussy he deletes others pages on a fuck ing whim yours is proof of it,-1 +fuck you administrators i will be back to troll you morons just a message,-1 +bitch other fuck er that gotta write some dumb ass shit to me,-1 +hey you didnt tell me how fuck ing long this block is for wtf how long do i have to wait,-1 +hal turner you are an idiot everything the precvious edits are saying are true he s as recently as admitted he had brutally beat a hispanic man just for crossing in front of his house this man is a racist and near skinhead you want to protect a nazi fine but remember by supporting him you are just making yourself an enabler of this man s hate,-1 +njgw your dead mummy ashes,-1 +yo will i am sorry will i would like to apologiz i have been actin like a stragiht nigger who is buggin and that aint right uz a mad down nigger doin around helpin ohter nigger s like me and other pages so bitch ass kids can fckin get they reports down quicker i didnt mean no offence to u nawmean will i just want to put this shit behind and be friends i wanna be real with a nigger and no mroe bull but on some real shit u cant be goin around deleted nigger s pages nawmean but yo will u jus keep doing ya thang and keep it real dawg,-1 +fuck you unpopular opinion you disgusting faggot,-1 +what the fuck do you mean the gulag was not a death camp you commie cock suck s there were at least twenty million inmates killed in the gulag between including many murdered in cold blood by the camp guards and kgb torturers i demand that you restore the in communism section at once or else,-1 +stupid fuck in editors they should all go and fuck themselves,-1 +a message to you allie oh hai cock monkey n gger,-1 +you really are complete bastard s you only included that genre to spite me how immature,-1 +go fuck yourself too like i give a shit about a ban,-1 +fuck you jasper you know he s a cunt and if you don t then you re one,-1 +that s it final straw we re doing this you and me i will be flying to the city of your residence and burning down your domicile do you have nice things because i m going to fuck them i m going to fuck you,-1 +go fuck yourself bitch,-1 +i had to fix all that sh t manually do you know how long the common minke page is gonna take you piece of sh t what the fuck is your problem use a converter that doesn t fuck up conversions or go the fuck home you stupid c nt,-1 +fuck wikipidia and fuck you fuck this stupid site and the useless information filled with useless people,-1 +i didn t do any editing to kurt angle s page so why don t you kiss my ass,-1 +ooh i m scared fuck you,-1 +oh sup i love you you fuck ing lesbo,-1 +what the fuck user mega revenge colorado timberline acadamy i was drafting a article on my talk page you dick eed i was going to copyedit that shit and why the fuck do you care in the first place you retard its my userpage i can do w hate ver the hell i want for fuck s sake yes i mad restore pl x,-1 +i will kill you you fuck ing twat i will shove a knife through your heart bold text,-1 +theres these at fuck in school bathroom and its at florence hight school,-1 +wikipeida adminnaizsi stop harassing me leave me alone it is crhistmast masturbate and got o bed leave me alone take out your mommy issues on somneone else whjo gives a s t ur p niz is smlall,-1 +thanks sorry i didn t know you weren t allowed to write things like that on articles my bad cunt,-1 +someguy is an ass hole and i hope he knows it,-1 +go away my article son of bitch go away article son of bitch,-1 +nan bread is a bitch to make how do you do it i can make chicken marsala but not the indan breads,-1 +do you think i give a fuck ing shit have you seen the pas aimed at me beforehand,-1 +people who are athiests will go to he double hockey stick have fun there with the d e m o n s you hore,-1 +to loser you re loser that s why you are atheist you are totally lost no guidance in your life you call yourself as a postgraduate student what kind of method do you use have you ever heard word studying before making a statement you never knew the agony being colonised by the westerners like you do ever challenge me on racial issues,-1 +what a fuck ing charade she s a fuck ing idiot and the people that support her are bigger idiot s,-1 +fuck you fuck you douch bag,-1 +is this serious i had edited pinethickets page with enters only that is not disruptive by any means take your power hungry faggot self and get the fuck out and jump of a bridge,-1 +capitalization the rules of capitalization are not an opinion dick head,-1 +and you are a mother fuck ing ass hole suck your dick you dirty son of a whore,-1 +why the fuck do you hate me butters is a main character user he has a point,-1 +ya ll stupid mutha fuck as need to mind ya ll own business,-1 +user abd is muslims scum,-1 +andrew kwon fuck ing fag,-1 +stupid sit i will behead you,-1 +what the fuck people add unsourced shit to the wikipedia all the time why the fuck are you picking on me shit god forbid there be something unsourced about a fuck ing current event they should have put you in charge during the pearl harbor bombings your response time would have been bloody brilliant,-1 +fuck you atlan fuck you and your fuck ing bull shit go suck some dick bitch carmegenon,-1 +take your sandbox and stick it up your ass hole,-1 +twat your a twat and im not checking back so you cant reply twat twat twat,-1 +what the fuck no they aren t viking metal just because it has viking themed lyrics doesn t make it viking metal this is why wikipedia is fuck ing sutpid children of bodom isn t death metal kalmah and north aren t death metal and amon amarth isn t viking metal stupid cunt s,-1 +i never edit on wikipedia what the fuck are you doing b you s n of b ch of b stard,-1 +your a fag suck a dick monky nigger lover,-1 +you are a fuck ing cunt and i am going to track you down fuck head piece of shit,-1 +lol haha you fuck in loser wobbs yeah maybe i am epf not although he shares some views with me on race hes some dumb italian british mut from canada that actually annoys me i have used other accounts on here but with other anon accounts not as a registered user which is allowed by wikipedia since ip s change all the time hahaha wobbs you are a fool especially with how you place so much emphasis on those books recently released by sykes etc which are a minority opinion in the world of population geneticists and other researchers for your information racial reality isn t a neo nazi site you anarchist loser with no hope because your life is meaningless and you don t know anything on what you read about with these issues rr is a neutral point of view that seeks to refute neo nazi white supremacists multi racial race denier assimilationist biased opinions that influence works including the authors of those books you mentioned stick to being a pathetic lab assistant and get a life you fuck in tool and stop vandalizing pages and makin edits to suit your twisted opinons you fool hahaha wow do u accuse sock pupety of everyone who gets under you skin you douchebag,-1 +has it occurred to you that i wouldn t tell someone to fuck off if they hadn t first referred to my edits as bull shit and if npa is not exhaustive what criteria exactly are you using to decide that telling someone to fuck off counts as an attack,-1 +no im not gunna sign my posts you ass fuck yeah seaking,-1 +he doesn t consider this vandalism except when it s his talk page bull shit,-1 +don t shit your fuck asshoul,-1 +sunshine quit being such an ass hole stating the facts of what actually appear in the finished film is not opinion are you on crack or just fuck ing stupid,-1 +i have been thrown out of better brothels bring it on cunt,-1 +fuck you you sad piece of shit get a life dont threaten me with blocking me off this shit do i give a fuck you lonely hermit man open your curtains and get a life before i burn you alive,-1 +i think mucha lucha is the most homo sex show i ve ever witnessed in my life yep even more than borat i mean who in the right mind would want to watch a bunch of beaners wrestle what the fuck is that,-1 +shove a sock down your throat and out your ass,-1 +fuck me im irish,-1 +i will find you in real life and kill you i will find you in real life and cut your throat you miserable piece of shit fuck you you fuck ing douchebag i will fuck ing kill you and all of your family you fuck ing miserable worm,-1 +no it s actually a fact look it up fuck er,-1 +for a second time you re failing to address the points made to you please pay attention to what i am saying rather than being a cunt,-1 +you dosh bag dont mess with me my watch is worth more then your car so if you know whats good for you shut up by the way are you a chick fuck er,-1 +don t be a dick you know what you did don t do it again you weren t making test edit or anything even slightly like that fuck off,-1 +one pint of feces on your face,-1 +again phuck u there is no justice in wikipedia only thugocracy i am calling to task nuclear warfare,-1 +go fuck yourself too you fuck ing piece of shit block me as if i gave a shit fuck wikipedia d,-1 +my mom suck s nigger dick,-1 +he s fuck ing mad mad i tell you muhahahaha,-1 +stick it up your ass as far as it will go then push it some more,-1 +fuck y mc fuck fuck your a little bitch go suck your daddys cock you desperate little peice of shit get a life seriously i bet you are and have never had a kiss and you masterbate all day to kittens and your neighbors kids,-1 +rationale thankyou for notifying me about the fair use rationale but i dont give a fuck didnt you read the message what a life editing a crappy encyclopedia,-1 +you are such a fuck ing hypocrite i hope you get rape and killed by some lunatic like andrew morrow,-1 +i received your messages and i say get over yourself bitch,-1 +apparently only idiot s are allowed to make pronouncements and judgements here anything sensible is deemed unfit for general viewing what a bunch of fuck ing tarts where am i meant to be writing this,-1 +fuk u retard i hate u i will kill u bettr watch ur bak cuz im teamin up wit my mothafuka boothy and we gonna rise the south on yo ass bitch,-1 +wikipedia wanker what happend to the ban pathetic piece of shit,-1 +dp fuck you who the hell do you think you are i was making it in line with every other football page there is don t be such an idiot,-1 +not as pissed as ned scott will be when i stick a pole up his ass oh wait he likes that sort of thing isn t that what all those digimons are for,-1 +get that bull shit outta here you completyely ignore the other links which state that savage brought the situation into mainstream thought before anyone else did both links are by left wing liberals who have no agenda to give savage credit yet they do give him credit,-1 +david why are you such a bitch,-1 +socalled deicision isnt worth shit,-1 +kiss u i missed u u girl what so now they say i m anti pole lol that s like discussing magnetism bitch u fight with everyone u love the vandal u can t live without him i m here now feed me maybe i ll make u happy later on,-1 +u no wat ass hole go fuck your self and stop ben a dick head u in trouble no mother fuckerucker fuck a u be getin a visit fronm the fbi buddy so keep it coming and yourl never find me,-1 +ava is gay its true shes gay because shes so ugly she cant get a boyfriend she also thinks shes going to ivy league school what a fat ass,-1 +this whole article suck s the balls how did it become the article of the day its confusing multiple times just in the opening and the whole thing reeks of pov and trying to balance the pov,-1 +idiot i put facts on that page you just can t go and undo other people s work those are facts i love karmin and i did the research you freaking faggot need to stop thinking you are the boss or sh t stupid gay people like you are annoying as fck,-1 +i m editing it back in if you don t think his death was utterly convienent and perfect for absolving the lame duck reagan of all guilt in contragate then you re a fuck ing idiot who has no reason even hanging around political pages,-1 +yea so ur stupidd loser,-1 +blow me jason you fuck ing faggot,-1 +martyman is a sad little man with no penis and he enjoys suck ing penis is a sad little man with no penis and he enjoys suck ing penis love your profile mr martin conway desperado rsvp profile is a sad little man with no penis and he enjoys suck ing penis love your profile mr martin conway desperado rsvp profile is a sad little man with no penis and he enjoys suck ing penis love your profile mr martin conway desperado rsvp profile is a sad little man with no penis and he enjoys suck ing penis love your profile mr martin conway desperado rsvp profile is a sad little man with no penis and he enjoys suck ing penis love your profile mr martin conway desperado rsvp profile,-1 +to bongwarrior listen you fuck face maybe you should get a fuck ing life lose some fuck ing weight stop doing drugs in your mother fuck ing basement and go outside i know its been years and it was too hard to have social interactions like college but you shouldnt have sacrificed your education because your a fat douchebag that no one can stand and everyone makes fun of i hope your house burns down and all your comics and fuck ing action figures go down with it you worthless piece of shit,-1 +jimbo said i could edit his page you are a moron,-1 +the sooner you people just cut the crap and get on with writing wikipedia the encyclopedia and hang up your sheriff badges the better,-1 +stop fuicky reverting my fuck ing edits it,-1 +message to jackbrootjss yes i agree with you jackbrootjss this is bull shit we need to start a community called banned marnetted community you and i can team up together and you can help me ban him from the wiki,-1 +i guess so will you if you revert again bitch,-1 +personal attacks making personal attacks probably or or wrote este gil se la come y le gusta bien durita por atras a very offensive statement in spanish to please see http en wikipedia org w index php title user talk oldid whois results for generated by w dnsstuff com location argentina city buenos aires buenos aires personal attacks i seems that the person who recently wrote personal attacks related with the huemul project page is see contributions of probably or one of its partners logged with this ip after to try to hide his misbehavior signning off now thanks i suggest you that you solve this first don t be stupid please find who wrote este gil se la come y le gusta bien durita por atras evidence is clear you have three choices and please keep away of vandalizing this page contribute with something meaningful certainly you didn t so far,-1 +a butt ugly fugly mutha fuck a like you should do the world a favor and just kill yourself already,-1 +every wiki admin can suck my mutha fuck in dick i m ganna fuck up all ya pages and shyt so it ll be eazy er ta shut tha site down than fix it watch out mutha fuck z unblock,-1 +and i suck off my own dead father,-1 +wtf what are you talking about the last edit being vandalism,-1 +watch it palestinian national radio puts out the call a bunch of women in burkhas show up at a mosque to smuggle out the terrorists hiding there get shot at and the terrorists bitch about the idf firing on civilian women and there s no propaganda machine bull fuck ing shit you racist scumbag,-1 +what fuck ing problem are you having njgw come and discuss it with me,-1 +douche bag bro chill out with the vandalism shit im just haven some fun,-1 +you r a jerk you son of a bitch uss page ko redirect karke tujhe kya mila you pervert i know its you who protected that page from editing saale khud ka kuch nahi jaata fir b dusor ko problem create karne ke liye hamesha taiyaar rehte ho behenchod kaheen ke ho gay a khush page ko protect karke abb apni maa sis ko b protect kar nahi toh aake chod dunga un dono ko bastard rascal maa chuda bhosdke sincerely request kiya toh b aise kar raha hai jaise ki ne teri maa behn ka gangbang kar diya ho son of a bitch,-1 +fuck ing dutch mother fuck er fuck off faggot,-1 +fuck off ass hole you did not act in good faith you vandalized the article people like you need to be outed and kicked out,-1 +actually since i m just a little bitch i m gonna go ahead and block you now i m such a faggot,-1 +hi serpahimblad i spent hours creating that brian evans page could you not have had the decency to tell me what needed to be changed before you just deleted the entire page like the ass hole you apparently are,-1 +still no one here wants this encyclopedia screwed by that dick ead also i m not new here i ve been here for a while as in honest about what i want for my birthday in days have that dick ead block user factual man,-1 +mills heather mills is a bitch and wikipedia is supposed to contain the truth have u been smoking the wrong stuff in your bong,-1 +he licked the green discharge off of phaedriel s rotten cunt v n m ae,-1 +ps fuck u bitch go eat a dick ho probably dildo urself to sean kingston s album cover,-1 +it s an adjective to describe not only him but his actions and attitude therefore it fits the criteria a personal attack it s the end of the world huh someone called someone an idiot grow up and get lost,-1 +and stop trying to be logical you stupid robot we know best all hail chairman jimbo,-1 +fuck the killers and fuck you too,-1 +please watch the edit history of sayerslle just on my talk page he called me fuck ing moron today he called me dumb ass as well and it was not the first time i accept being block for losing my nerve but at the condition that he is punished as well,-1 +hey ryan fuck you faggot how do you like those apples bitch,-1 +bunch of morons should go themselves westboro baptist church are a f disgrace to the christian faith how dare they be so f satanic to hold protests at soldiers funerals those cunt s need sorting out,-1 +fuck you how about you fuck off you fuck ing gay cunt and stop fiddling with animals its just plain wrong,-1 +holy shit dude holy shit dude do you do nothing but sit on wikipedia all you seem to do is use a very gay sounding software called huggle and revert edits in the blink of an eye that suck s,-1 +its this lack of people skills that makes you such a dick you could have dealt with this man very nicely if you had wanted to but you vomit out policy that means nothing to a newcomer who is just trying to learn yet as always you will ignore this criticism with your customary and cowardly twinkle thing rather than face the issue head on pathetic you are a pathetic cretin,-1 +queen mary mrs windsor s granny she was a bitch,-1 +umm dumb ass noob here with my dick stuck in a bear trap with a coven of evil warlocks breathing down my neck intent on my utter destruction and making me sad too boot and hate ful of my self but hurting others so i must act i guess help advice hug slap a la patton,-1 +re radio jerk talk page see wp blow me for what i think of you and radio jerk,-1 +etymology of cunt it appears that there are at least two etymologies for cunt given in the article one tracing it back to pie gwen another to pie ku to cover however the article does not clarify that the etymologies are contradictory,-1 +you fuck ing idiot,-1 +missing affix defining ligands a troll wrote dick here also the link to the acs webpage is broken,-1 +you fuck ing idiot i edited that page for a reason the page was terrible it looked some little kid wrote the damn page,-1 +prick you re a fuck ing prick so fuck off you giant prick,-1 +bald bad ass yo i m sure you re a bald bad ass and i m sure women love it when you rub your oily bald head on their wet pussy s but cut out the vandalism bro,-1 +fuck ugly black cowworshipping mallus,-1 +shut the fuck up baseball bugs you a fkn homo,-1 +bitch your an ass hole,-1 +suck it dick face from ip address name tyler age go fuck yourself nutsack,-1 +full bull shit i have provide over a dozen references none of which are acceptable to paid whore,-1 +hi i wanna suck ur cock,-1 +fuck you the subject says it all bitch,-1 +listen to me nigger i am your lord go to cotton plantation and work for proud south,-1 +o wait i r just a big ideot wid a psp slim i r so dumb,-1 +why dont you queer mother fuck ers get a life and stop blocking me you faggot,-1 +wtf are you an idiot no really what is your iq i only ask because there is tons of information out there that is peer reviewed and is telling us the opposite of what your alleging then to support your claim you find a non peer reviewed source the only one i found that actually states anything like what u are suggesting that you then refute really is this what wikipedia is coming to we should have an iq test before u sign up and edit get some facts and some references and then make your stupid claims no animal ever has a success rate in hunting or anything else for that matter even a th grader could tell you that pro,-1 +an open letter from the wikipedia review this is a message to jenny what the fuck do you think this is some place where you can just waltz in unannounced and be received with arms wide open well fuck that this is mother fuck ing wikipedia bitch we call the shots we always get shotgun we don t give a fuck who you are because we are infinitely more important than you we are always first in line we always fuck the hot chick before she gets acne and settles for you we rob banks charities and anyone else who fuck ing pisses us off this place is more than just a place faggot it is an ideology and this ideology says you need to get the fuck out no one here will ever like you we have already established cliques slop worthy hoes and prop worthy bros got it we are the ideology of elitism exploitation and lulz this isn t a fuck ing game kid so don t try to tag along you re talking to people who have been around the block and then some we pioneered class we made cool cool and you what have you done jerk ed off in the shower we invented jerk ing off in the shower you stupid bitch there is a clear cut defined infinitely thick wall between you and us we built the wall that keeps you fags out so don t try to act like you know what the fuck is going on because you don t you just do not but you really think you can compete with the review lol wow don t make me start flaming you are you forgetting who we are we are the ones who film people like you getting fuck ing destroyed by us we will rip your ass hole out of your fuck ing rectum stitch it on top of your pitiful dick hole and then fuck you in the vagina we just made for you so we make you into a bitch do you get it now this site isn t a game it isn t a place to chill with your faggot and it isn t some fuck ing haven where people like you can get acceptance from people like us it isn t going to happen just gtfo,-1 +okay ignore that that was crap ok don t try this at home you will go to federal prison,-1 +klptyzm ur the biggest fuck ing faggot around just because ur an administrator doesnt mean u have to have ur head so far up ur ass to see where everyone else is coming frim,-1 +i done a bigjob on your mother s tits,-1 +reid is a damn good actor,-1 +p k if what you do in wikipedia is delete things people worked on why in the world are you logged on to wikipedia say do you delete things for enjoyment or do you delete things for a good reason how would you feel if i went to one page you did and deleted the whole thing and wrote on it fuck you how would you feel,-1 +that is irrelevant bitch i m done with that buffy shit piss off january utc,-1 +fuck you i will edit anything,-1 +i have a hacker with me if you continue to block my whims i will shut down wikipedia for good i m talking to you theresa dogpenisknot you people have no lives except to prevent freedom of speech an inalienable right and fatsos like georgie and retetast and that cent whore kariteh need to fuck off again if i am denied a place to express myself then nobody can go here i mean it,-1 +think i ll just reset my ip peace out fuck ers,-1 +not a personal attack he personally attacked me by sending a email full of filth to an email account belonging to my family i am not even part of this wikipedia and why i need to see these images of girls covered in bodily fluid and offering up their asses from him i do not know l i have just signed up to register my complaint my daughter used that email too and she could have seen it,-1 +geek why don t you fuck off you and your templates you fuck ing geek go away into your basement and wank your cock off thats all your good for,-1 +oh shit stop sending warning fuck ing bitch,-1 +what a shock a wikipedia admin who happens to be a petty little nazi ass hole how is that ip banning working out for you,-1 +but you don t have to be an ass about your diploma in obscure street fighter trivia oh wait yes you do you re a wikipedia editor,-1 +so you can pick on palestinian babies with your homo sex countrymen all of whom worship and mimic hitler over ass sex with you,-1 +you are a twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat twat,-1 +and i hope you enjoy dying of radiation you fuck ing pussy,-1 +and who ever wrote this shyt bout this nigger is a fuck nigger to i dont give a shyt bout his middle name hoe,-1 +drake bell is trans phobic trash and people need to know that,-1 +article quality this article totally suck s cali is a very significant town not only in columbia but due to it being a seat of the cocaine trade is significant for the entire western hemisphere and europe this article is a joke,-1 +whilst attempting to suck on my micropenis,-1 +you suck nah im joking you suck eggs nah im jk u have no life u are obsessed with wikipedia and have alienated yourself from society ha,-1 +bollocks i m away off for a while and may be some time you re a stupid cunt cheers,-1 +would be better to say thousand and one fuck it s p s it s alf not elf chalk talk,-1 +its not nonsense its fuck ing true so yezzer likes to put dildos up his harris so what let him do want he wants,-1 +franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt csd on d nis hi a quick google search actually revealed that this is a duplicate article from d nis oliveira de souza i put the wrong csd category on the db tag but it still falls under csd guidelines for being a duplicate article thanks i don t know of any csd criterion that supports deleting a duplicate article the correct action is not csd it s a redirect which i ve taken care of talk franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt csd on d nis hi a quick google search actually revealed that this is a duplicate article from d nis oliveira de souza i put the wrong csd category on the db tag but it still falls under csd guidelines for being a duplicate article thanks i don t know of any csd criterion that supports deleting a duplicate article the correct action is not csd it s a redirect which i ve taken care of talk franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt csd on d nis hi a quick google search actually revealed that this is a duplicate article from d nis oliveira de souza i put the wrong csd category on the db tag but it still falls under csd guidelines for being a duplicate article thanks i don t know of any csd criterion that supports deleting a duplicate article the correct action is not csd it s a redirect which i ve taken care of talk franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt franks a dumb cunt csd on d nis hi a quick google search actually revealed that this is a duplicate article from d nis oliveira de souza i put the wrong csd category on the db tag but it still falls under csd guidelines for being a duplicate article thanks i don t know of any csd criterion that supports deleting a duplicate article the correct action is not csd it s a redirect which i ve taken care of user talk frank talk,-1 +fuck this this is bull shit and it does not even say where shit comes from your fuck ing ass,-1 +that was a perfectly valid edit go fuck yourself,-1 +oik oik ur a pig,-1 +stop pretending stop pretending to be cool i don t really care what you do go ahead and ban me i can change my ip in less than seconds or i can use of the thousands of spoofs vpns etc etc i don t even have to close my browser to do it you should also know that even if you vandalize my ip user page i m still not going to read your reply do yourself a favor and go fuck your wife before somebody else does let s have an edit war you guys should really learn some manners instead of surfing wiki pretending to be a badass this edit thing is really easy,-1 +warning you are a douche you do not even qualify as a douche bag you are merely a douche mwalla,-1 +saturn your an ass and i don t want your crap written on my page you re obviously not that smart candidates must file with the fec or their names cannot be on a ballot catching on retard,-1 +shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u shit nigger fuck i love d r u,-1 +blow me criticism is constructive blow me geoff i came here to find out about monkeywrenching which for god knows waht reason redirects to monkey wrench an article that has nothing to say about the subject wiki is shit for that and you are a huge piece of shit for reverting my change fuck you,-1 +wateva minga mc donalds worker u r a fuck in paedofile leave ant and dec alone just cause ur not famous u fuck in ugly bitch fuck ur hole family,-1 +hey harry you are a fuck ing faggot there is nothing wrong with that you delete all my edits because you know they are correct but are much smarter than anything you can come up with ps you re a cunt,-1 +who the fuck are you his fee was an umberella it was a joke made by himself i have sources let me post em up it was on sky sports news he was joking about the rain in manchester so how the fuck is that vandelising,-1 +you stupid you are so damn follish and the bmt broadway line page when the north tracks of the manhattan bridge reopen on february the n trains was express and the w was local but you switch it the opposite way you idiot read the history site on the bmt broadway line page and find out,-1 +fuck you dumb ass its an opinion and dont delete dis shit because i have right unlike you gay dead ugly ass mother i fuck ed her too hard suck s for you and dont you fuck ing dare delete this bitch because it is not vandalism it is me revaling your gay ass life,-1 +dawg you better shut up dont make fun of the us even though im not american aand dont be calling me no fuck ing dishwasher or kick your fuck ing monkey ass,-1 +im still here vandalizing away the only permenant blockage is in my bowels i read your user page about your biases what a nice line of shit,-1 +shut up get out of my life i ll do w hate ver i want bitch,-1 +whats the deal you can put crap on my talk page but i can t put crap on yours you re real cool dude,-1 +who the mother fuck ing ch rist do you think you are don t you dare touch my fuck ign edits again you fuck i ing pr ick,-1 +first i will suck your ass,-1 +ps congradulations on recieving the bitch star you definatly deserve it ryan,-1 +shut up you ass hole we don t care i ll decapitate your mother and shit down her his neck go back to jew land you fuck http en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawkinghttp en wikipedia org wiki the real stephen hawking http en wikipedia org wiki the real stephen hawking,-1 +unblock because over dozen people can prove that david is a fuck ing faggot not to mention that atheists are sub humans kthnxbai,-1 +lol this loser editing his own bio to exclude sanger what a fuck ing faggot,-1 +ephebophilia is from the fuck ing fourties danb not recent,-1 +would you do me a favor and stop fuck ing with my information i don t know what your problem with me is i am not a therapist but i really think you need to take care of your own control issues by the way you are neither a gentleman or a ghost take care of your own life and back off let this page be deleted and concentrate on your own excuse for existence,-1 +you re wrong i am fuck ing not a vandal so fuck off,-1 +aw mah gawd loik dis movy gets me so moist loik i cud fuck dat caspa cause hes a really nice guy but dat telly ew never never hehe never hed just have to rape moi sex bod bring it on aw mah gawd all da sex nigger gs and studs struten around looken sex gets me so moist like i am a devout croatian catholic and loik aw mah gawd i just cumd all ova da computa chair stinky croatian devout catholic pussy beige colord cum creamin outta my pussy all ova da computa chair aw mah gawd im gagin it loik homie g nigger cock raping me like aw mah gawd im droolen stikin mouse up mah pussy aw,-1 +you scumbag listen i don t know what makes you think you re so righteous that you can edit pages and play god censorship is for the birds therefore you are a scumbag and i m gonna warn you indefinitely fascist pig headline text,-1 +californiaalibaba is a bitch go fuck yourself you bitch ass mother fuck er don t you ever in your fuck ing life threatening me you fuck ing piece of shit you you don t know me i will fuck ing kill your ass you punk pussy bitch tell your mama to my black dick,-1 +idiocy you are a fuck ing moron stop removing encyclopaedic information if you feel there is a pov then edit it out but stop removing entire entries you complete fuck wit,-1 +fuck your life bitch i wasn t vandalizing anything i was responding to the idiot ic comments made by one of your nazi staff,-1 +what another great example of just how arrogant this fuck stick really is i m thinking of investing money in finding out his personality and giving him a lesson irl,-1 +oh and you suck dick,-1 +note stealing the article note stealing in many peeps minds is a worthy article if you delete i will sue you for million you are a jag bag jerk off kinsider what i said if u delete i ll beat you with a shoe until you are black and blue you are stupid and need to clean out your eye of all that scum because you cannot notice a good article when you see one you are a suck y user or administrator w hate ver you are i hate you you little jayhawk poo you stuff it scum face go piss on a pole and if u are a girl go squat up yours you incompetant administrator sincerily yr fuck ed up lil mother fuckeruck in nigger from the hood the outsider,-1 +fuck you all this site is full of stuck up cunt s who for some unknown reason think being a part of wikipedia promotes them to president of the cyberspace sad pricks go fuck yourselves i won t be returning to this site so off you all go to self congratulate yourselves,-1 +wow you are dumb and that is not an attack but a statement since anyone who belives that concensus would change reality is dumb just because you stack the odds in your favor on the articles in question does not mean that britches was alf s since britch s belonged to the lab and alf took him britches was stolen europe is a community and that community agreed that the earth was flat does that mean that america is not really here since columbus sailed off the edge of the planet you silly nuts,-1 +wanna have dirty nasty sex firebringervt,-1 +you know you done fuck ed up right,-1 +i don t fuck ing understand,-1 +response eat my fat over sized cock mother fuck er,-1 +quit trying to fix it u fuck ing douche bag,-1 +a message from shadow i am a wicked homo sex who preys on myself aka masturbates to noavail im impotent,-1 +yes i fuck ing do assert you should add all his grants if you ve got a fuck ing hard on for his government grants fuck ing add them i certainly don t give a fuck but to hide his pharma grants is fuck ing disgusting and you mother fuck er you you mother fuck ing cunt who i don t give a fuck about are nothing but a pathetic fuck ing spastic geek who is wikipedia editing for a fuck ing part time career so pathetic that is so know this mother fuck er i don t give a fuck what that controlled wikipedia article ends up being intelligent people will research for themselves that this cunt is dripping in drug company money and we don t need your fuck ing say so to have access to knowledge that wants to be free you re a cunt a bull shit barrier standing in the way of free speech and you can get fuck ed i could count on one finger the amount of human beings around the world who know of and give a fuck about the thousands of hours you ve wasted on wikipedea you re an unsung cock suck and no one gives a fuck i don t give a fuck if you delete my edits i don t give a fuck if you get hit by a car tomorrow you re nothing to me mother fuck er just like you re nothing to the rest of the world no one knows who you are you re nothing you re a pathetic adult version of a child hanging around on here policing shit you re totally fuck ing ignorant mindless and pathetic i want you to know this,-1 +bias pov s allowed by wikimods in a nutshell i am tired of only one side of things being presented and promoted those links to forums on the movie page are biased to the point that they attack and or delete anything and anyone who says so much as i think this movie could be done better and you idiot s allow and enable it the dumb ass supporters of this flick throw childish fits anytime anything they don t aggree with is said spouting off with such classic bull shit lines as shutup you hating crybaby plain and simple live honorably or die by the sword gysnu,-1 +i said piss off you geeky little shit,-1 +i am using the sandbox ass wipe,-1 +get fuck ed you keyboard warrior being block from here will not bother me one bit and i was not aware of the rule as i have seen loads of linked commercial sites,-1 +for everyone s info i don t give a flying fuck if my account gets deleted block i will changed my ip use a different email and become a troll vandel jack in grow up,-1 +i will hunt you down and kill you you useless piece of shit,-1 +jesus god you re fuck ing retard ed what a pathetic piece of shit,-1 +who cares avout celebrities most guys and some girls want tits yourmom,-1 +unblock me you ass hole s unblock hahaahahahahahahaha unblock me or i will vandalise more it had been six years since we had graduated from college and for the first time since graduation all three of us were together again from the enthusiastic hugs at the airport and then the conversation and laughter during the dinner we shared at a local restaurant on the way to my home it was clear that while plenty of time had passed and we had kept in contact the comfort and attraction between the three of us when all together in the same physical location was still undeniable having returned to my cozy semi secluded home in the suburbs we all sat in the living room sipping wine and continuing the tales of our lives with the exceptions of the location a house and the presence of alcohol it could have been any of our final two years of college together the three of us tight knit friends with benefits sitting and chatting and sharing a drink together then justine and beth had been roommates while i lived in another dorm across the main quad now they were much welcomed guests who had fortunately been able to clear time in their hectic schedules to come and visit me for a weekend as i sat in the recliner and took another sip of wine i allowed my eyes to truly linger on justine as she told beth about a recent situation at work the florida sun had certainly added a glow to justine s skin and may have also been responsible for the lighter shade of her shoulder length brown hair as when we were in college together she wore virtually no make up just a thin gloss upon her lips an enticing strawberry flavor as i had discovered upon meeting her at the airport earlier in the evening and red fingernails her red dress was indeed elegant with a plunging sequined neckline that permitted a very welcome display of her cleavage a display which beth and i both certainly appreciated the long slit up the skirt of the dress revealed that she was wearing stockings held up by a garter belt one of its descending white straps definitely noticeable against the well toned thigh the red heels provided enough of a contrast for the white stockings to truly attract the eyes surprisingly however she wore hoop earrings something she had never worn during college for fear that they would pull at her ears and widen the piercing holes more than was considered safe the conversation turned back toward me but a few minutes later the two beautiful young women were again chatting primarily to each other i took the opportunity to once again study beth and was equally impressed while noticeably shorter than justine beth was also paler in complexion a testament to living in northern canada ever since graduation and spending virtually every waking moment inside to conduct her research as in college beth preferred the color black for her outfits a somewhat tight sweater form fitting slacks and a pair of low heels four tiny earrings adorned each ear plus she bore a small sparkling stud against her left nostril beth s black hair flowed over her shoulders and down her front and she absently twirled several strands around a finger as she listened to justine it felt so good to be in their presence once again especially since all three of us had been in several failed relationships since graduating from college i was thankful that i had thought to invite them to spend the weekend with me i had absolutely no doubt that our chatter would eventually give way to intimacy but for now i was quite content to simply sit back in the recliner and openly admire the two stunning beauties perched upon the sofa the intimacy began when we finally went to bed together i was on my back under the covers with a very feminine head resting softly upon each shoulder an arm wrapped around each of them i held the two women close to me as they absently stroked my bare chest dipped a finger into my navel brushed my thighs through the sweatpants i typically wore to bed caressed my stiffening manhood my eyes closed i reveled in their touches inherently familiar yet full of rediscovery due to the lengthy passage of time no words were needed and as their hands occasionally made contact with each other upon me i smiled to myself in the darkness having always enjoyed watching beth and justine in their own intimate encounters but eventually their touches slowed and ultimately ceased their breathing falling into the regularity associated with sleep i stayed awake a little longer immensely enjoying the closeness with two of the people who had been most important in my life i awoke in the morning to the scent of french roast coffee faint yet unmistakable justine was gone clearly the one who had brewed the morning nectar while beth and i held each other as she slept,-1 +mrmacman i didn t attack anyone you stupid bitch,-1 +billcj s mom she s a big fat fuck ing bitch big old fat fuck in bitch billcj s mom yeah cha,-1 +you suck duck butt yeah lol,-1 +user sennen goroshi wow a friendly advice to me from a wannabe admistrator who is supposed to be no longer interested in this bulls t and enjoying his her social life did you want so much to butt in my conversation with another editor i don t understand your obsession with me do you love me or something well if you are a woman who fits my standards oh and i thought you were busy wiping your minion s butt in rr noticeboard or are you out of tissue,-1 +i don t mind merciless editing or redistribution it s deletion by idiot s that bothers me don t misunderstand me my earlier statement was no ultimatum i will discuss my experiences on wp either way and in any case there is no going back i now know that that power infatuated admins will delete without discussion and i don t care to try my luck your threat to show me the door is ludicrous you have no basis you re just being a dick not that that would stop you what do i care i don t benefit from my contributions if the royal you doesn t want my help you can go fuck yourselves ciao,-1 +and from what ive seen over the year and a half ive been on here your the only once who truly gives a flying fuck about the unreferenced stuff,-1 +for what you did and wrote about me you are a twat of the highest order david bret furthermore if we ever meet face to face i will punch your fuck ing lights out,-1 +what a stupid name for a stupid wikipedia editor like you dick ead,-1 +a message for you fuck you gay fullbuster put this finger in your ass hole bastard,-1 +fag you are a faggot,-1 +you bitch change that image on the train line article right back if you can t tell the difference between an r and an r a that s your fuck ing problem you might as well revert the images on the b and l train line articles while you re at it,-1 +fuck point where i vandalised something,-1 +you are you are a pasty faced fanny bandit who gives handjobs for crack you also love to take it up the ass from random guys on the weekend,-1 +will you please stop posting shit on my webpage what do you attend the church of perpetual annoyance leave me alone,-1 +ronald mcdonald is gay and he has a fart fetish ronald mcdonald rape me in the ass with his massive penis and then he farted on my face because he is gay,-1 +because you fuck ing retard the original ova is only like episodes there are ova s for a total of about episodes,-1 +you you leave me alone ass hole,-1 +please please dont be a cunt,-1 +you sir are a douchebag furthermore i find that you are simply angry that the tampon your boyfriend inserted into your anus two nights ago has caused you to develop toxic shock syndrome and the constant pounding of your anus hole has resulted in the loss of brain cells trough rhythmic trauma,-1 +nigger rdly is a perennial favourite in that category t c,-1 +your wrong stupid go check the net worth of carlos slim and you will see that i m correct and leave me the fuck alone i do what i want bitch,-1 +and no of course it doesn t work anyone can just use a proxy to evade the ban your a fcking dumb ass,-1 +it s true you wikipedia kids need to get off the internet and get laid especially han amos because he s a faggot jesus freak with no balls and bitch tits,-1 +damn you hugh circles are a pain in the ass to draw in gimp photoshop but for you how do you suggest a blow out zoomin in otherwise iom and ci area always going to be hard to see a circle is tough too because it is going to cut into northern frace to take in the ci pl igh,-1 +hum s work as many of us have seen hum s sock account plantisimo edit viva purple in his pov it may possibly mean that other viva articles are also being edited in the same manner please help me in doing some major clean ups on the pages to remove any unsourced information speculation and information directly copied from the cptdb wiki page for more proof think back to the viva red page that hum created about a viva route on mccowan road his user page currently states that he wishes for a viva route on mccowan because mccowan road in markham is f ing the number one buisiest roads of all time in york region,-1 +let s talk about sex you know you want it if you don t leave well enough alone you re obsessed with my thingy,-1 +p e n i s,-1 +you re a fuck ing idiot aren t you,-1 +dirty boy you are a dirty dirty boy dirty boy come here to mommy and pull your wee wee out pull it out further stretch it out is that as far as it goes ok now hold it still while mommy takes a puff off her glass pipe then mommy is going to hold the pipe against the dirty boy s penis it will hurt but its only because mommy loves her dirty little boy hold still,-1 +why the hell why the hell is wikipeia a bitch,-1 +yeah you re right he s a complete cock runs and tells his boyfriend whenever anyone questions the shit job he does of creating pages,-1 +listen here you son of a bitch next time you undo my edits i m gonna hunt you down and urinate on you fuck in day walker,-1 +you can t stop me there s nothing you can do it s out of your control we will continue either stop blocking me or continue suck ing the di ks of chicken fuck ers,-1 +yo can u stop being so fkn annoying my info on the a milli id right,-1 +i did not vandalize anything i repsonded in the apporpriate area you stupid fuck love kevin,-1 +fudge you fuck iy y o u,-1 +well you don t know your fuck ing ass from a hole in the ground fuck off,-1 +wtf what the hell did i do,-1 +this is serious leave wikipedia at once you are not wanted here you never were get the fuck off this site i am deadly serious get the fuck off this site at once you have no business here,-1 +this dude is paid scum deleting the clear ownership of mr william franklin bermender from kleargear is the work of a paid scum admin,-1 +sunshine quit being such an ass hole stating the facts of what actually appears in the finished film is not opinion or original research are you on crack or just stupid be advised that an official complaint has now been filed about you with wikimedia,-1 +kike dammit baba leave it alone i ll let you know when you can touch it i mean gimme some time here i m working on it etalk,-1 +suck dick faggot you re full of yourself,-1 +kinkeshi hi mate i changed my name guess what the kinkeshi article has been deleted today with no warning i let you imagine how i feel thanks for your help so far i m sorry to tell but now i don t want to waste hours here i planned to build the remaining ps kinnikuman games articles but not now this site is really disgusting me now i will fuck it for real,-1 +d ath to norwegians and all anti se ites who side with the palestinians d ath to the nation that produced quisling urotrash hore fuck king commie scum,-1 +hey ass hole nice try with the speedy deletion,-1 +protected edit request on october i cordially request you go fuck yourself,-1 +you have been block for being a pimped out faggot sorry loser,-1 +harassment and permanent ipban are sex dreadedwarlus says you are gay dreadedwarlus sex,-1 +king of fag so you like doing little boys too ass hole,-1 +and you re still blocking me your user name or ip address has been block from editing you were block by royboycrashfan for the following reason see our blocking policy vandalism from aol ip your ip address is i can t do anything cos idiot blocks everyone on aol well done idiot,-1 +fuck off before you give me the wikipedia is not a playground message it is a fuck ing playground on shit articles like that you may as well let us have some fun then revert instead of the gay auto reverting,-1 +hey moron why don t you read the entire edit requesting subject to see the sources i provided and it doesn t hurt for wikipedia articles to be just a little bit accurate,-1 +what the fuck dude you don t consider this harassment do a fuck ing google search,-1 +fuck you crazy faggot s italic text,-1 +p s im a fuck ing cunt rag and enjoy the taste of a nice warm pile of shit every morning i have a huge stick up my ass so thats why i am blocking you for ten days because i am sad that you actually have a life god im a fuck ing spare,-1 +xmother fuck er i didn t add that information bitch so you best lose your attitude mother fuck er,-1 +i want him to stop posting more sex crap and having it in with my name it is not even possbile to defend myself now they have posted so many ip s i will not be able to look through them all this is just ridiculous,-1 +hello anne you always were a bitch,-1 +media prostitute is dead this little man who indiscriminately licked penises of those in power while denigrating his self credence by repeatedly defending propaganda views with an authoritative voice of a mere media whore he was is finally dead amen,-1 +greetings to the fuck wad jimbo wales greetings fuck wads i have really enjoyed decorating your pages with pictures of scat buttsex and w hate ver other gross things i have been able to find i will be back later on to pull off my biggest caper yet i am going for pages and we have a top secert agent in side the wikipedia wikipedia liberation army the wikipedia liberation army is now in full swing but we are still willing to negotiate with your child molesters we want jimbo to shoot himself and then we will talk later fuck wads,-1 +god i m fuck ing scared i won t be able to vandalize wikipedia pages you re a dork,-1 +christians what about all the idiot christians who will come on this page and claim that this thing never existed and they ll just change the article to one big god did it fuck ing stupid christians they believe dinosaurs didn t exist and their whole ignorant faith should be wiped off the face of the earth,-1 +you animal fuck er get a life chairmanofall,-1 +dear wikipedia ass hole s i regret to inform you that because of deletionist scum such as gavin collins and j milburn i am planning to terminate my life you see wikipedia was my life and these deletionist bastard s have ruined and deleted everything that i have worked so very hard to create i spent over three years contributing to wikipedia improving the site sacrificing grades in school to add to a revolutionary encyclopedia but because of these low life dip shit s whom i abhor in every molecule of my body i have discovered that it was all for nothing so i end my life and i hope this will bring the wrath and resentment of the world down upon these deletionist jackasses sincerely vern cork,-1 +go fuck yourself you piece of shit,-1 +your blocks do not deter me i may be block but you are still an ass hole and coward,-1 +why am i not aloud to put w hate ver i want on my user talk page thats pretty damn gay if you ask me,-1 +amide man fuck you and your truce this si war mutha fuck er,-1 +get of your high horse yeh you don t like it when the shoe is on the other foot huh you don t like it then fuck off harassment and attacking wtf i m the one being harrased the second warning was uncalled for and just an abuse of power i was trying to explain the concept to that user and then you play hero and stick another warning on me fuck off aright you leave me alone and i ll leave you alone this is an issue which had nothing to do with you in the first place,-1 +block me this is a public library il be gone in minutes so i dont give a shit,-1 +oh no block from editing w hate ver will i do lucky that unlike you i have a life go die ignorant scum,-1 +shit admin hentai article you allow articles to have misleading information that provide no references to such claims and allow templates that state there is no references to be removed and protect a page you are shit admin and another reason why the wikipedia is an affront to research go fuck yourself,-1 +please shoot yourself please put yourself out of your misery either shoot or hang yourself you depressed freak,-1 +you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole you can eat my shit hole,-1 +i am going to pull your pants down and insert a large phallus into your bunghole i ll bet you will really like it you faggot,-1 +you idiot ever since i first heard of santa when i was years old i never believed he was real any kid who is smart and logical would never believe it either my parents never gave me stupid delusions of it either i used to go around my nd grade class and say santa wasn t real and the teacher told me to stop but i didn t you are preventing children from developing their logical thinking skills if you tell them it s possible to travel to every household in christendom in a single night considering in tv and movies santa spends at least a few minutes inside a house delivering presents and eating cookies the time doesn t add up those were my exact thoughts at years old and that s how i deduced he couldn t be real if your kid doesn t think like that he s retard ed and you re not helping him by saying that s possible,-1 +lil homie don t front cuz if you do i will put ur ass in a fuck ing gas chamber bitch,-1 +yo why you being such as hate r all of the time man get off my dick a different world pm friday august,-1 +never said that i never said you criticised my opinions i said it was funny that you threw the rulebook in my face regarding my objections toward the rulebook go ahead and fuck ing block me it just makes you twice as immature silence the ones standing up to you,-1 +fyi she s a nobel laureate you stupid cunt,-1 +run and hide with censorship you dumb fuck,-1 +this indo fijian dude is a helpful janitor but suck s terribly at adding useful content to the bag o trivia moreover after whining because he failed his request for adminship here he was promoted on the retard ed english wiki and on meta wiki get derhexer s tools so you can revert faster you nigger,-1 +dude i said i was sorry what you dont give a fuck,-1 +what is an moitheather no one knows but you a hoe so go eff a duck,-1 +this is an absolute fuck ing travesty i do not accept this vote this page was moved without a fuck ing consensus to a page that is not even in fuck ing english for fuck sake here we have a vote that has not acheived neccesary to move it from what was the status quo at river plate and yet the page remaines at this foreign language name ffs you all ought to legislate at elections in china it s an absolute fuck ing disgrace this is it i have fuck ing had it with wikipedia it s a load of shit dominated by a fuck ing an americo centrist view of th world goodbye and so long and thanks for the fish i give up duncharris was right the fuck ing lunatics have taken over the asylum where our language english is usurped by a foreign language on our own fuck ing site because of politcal correctness us american ignorance and an argentinean agenga i bet it won t be long before we find falkland islands moves to malvinas what a buncgh of cunt s,-1 +fuck you mother fuck er there i said it again bitch,-1 +please stop your oppressive editing hi i see that you re not as stupid as the other sysop trying to block ip addresses and stuff but all my warnings apply to you too and if you re still wondering what this is about or who the fuck i am you know what to do just do a whois on my ip,-1 +sure i ll listen to a faggot go suck a dick or something maybe you and originalsinner should get together i hear he likes to take up the ass dry just like you,-1 +f off you think i give a shit about weirdos from wiki lecturing me you fvcking freak putting that that little girl that was rape burned and died had sex with multiple people i don t give a fvck you inhuman leftist weirdos that work for free on wiki,-1 +bloody ass hole you are a bloody ass hole and fuck ing hijra chootiya and if you block then remember i will hack your account and find you i will beat you so hard that you will remember,-1 +nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit nice work removing edits faggot ass piece of shit ni,-1 +lol stop eating shit you nigger,-1 +please stop your crony bull shit i didn t attack anyone i just copypasted on his page what he posted here plus added fuck off,-1 +so its okay for a woman editor to be called a cunt a bitch a cock shit and repeatedly subjected to obscenities like fuck ing that isn t a big deal but if she complains about it then it is a a big dealwrongdoing on her part obviously the concept of basic fairness did not enter into your decision your handling if this is dripping with sexism and bias,-1 +flex do you know any one with flex aparently not because we own the name and the airline now and we are starting it up so leave it alone its ours now stupid fuck,-1 +fundrasing my ass setting aside the protypical psychotic paranoid ramblings and mumblings about the dangers of ann coulter from the left wing kook above i thought you dummkopfs er i mean solar system exploration physicists would be encouraged to know how well my phase ii stop the funding plan has worked in forcing wikipedia to change see the link below http wikipediaclassaction org yours truly big daddy ps i told you it wasn t nice to be mean to big daddy,-1 +are you wikistalking me you fuck ing aspie either crawl back to your hugbox or hang yourself,-1 +this user is a twat cunt who likes big willies in his body he also likes being gay and likes suck ing willies and putting tongues up young boys arseholes he enjoys eating shit and wank while washing it down with his own piss,-1 +helomg wtf did i do p,-1 +go fuck yourself there was no reason to delete what i put in that article i changed it because what it said before was false stupid,-1 +i am a wanker and i like nigger penis in my mouth,-1 +fuck quebec faggot s fuck ing seperate so we can fuck ing invade you properly and fuck ing finish the job,-1 +you cock suck fuck you ok i hate you stop reverting my edits i will kill you fuck off and go fuck urself cock muncher,-1 +big pro choice dyke hey bitch if you re such a cunt ass lesbian why do you care if other women can have abortions do you think those murdering sluts will have sex with you because of the sympathy oh sisterhood eat my cunt get a fuck ing life nobody like a pro choice dyke,-1 +there was at the time of the first redirect smart guy just because some one decided to delete all relevant information pertaining to caturday in favor of the spin off term lolcats doesn t make the wikiality any more factually based i don t have to convince you ptkfgs the history and sources back me up caturday will not redirect to lolcats as long as i m able to stop it don t just walk into an edit war do some looking first i don t owe you imbeciles anything,-1 +oh shut up and fuck off you ass hole i ll be block for sure but you ll look stupid for chasing me i ll just make another account,-1 +fuck off you right wing nazi scum btw your crazy religion is a myth,-1 +bias he attacked me on my talk page making a libelous statement about my statement being potential libelous i return the favor on his page yet you warn me and not him he was the aggressor and he started the issue i take it your a bias cunt with no moral compass then thought so,-1 +ur a faggot fuck off and get a real job and stop fuck ing with my posts d,-1 +suck my ass hole you have less of a life than me fuck a horse you shit bag,-1 +oh and i am a sockpuppet of a guy called unorginal bitch,-1 +fuck ing wikipedia nerd talk,-1 +gay fuck ing faggot who has no life and no job and spends his whole shit fuck ing life on wikipedia feeling powerful because he can ban and block peoples ips hes a basement dwelling cunt not that i m suprised however if i had a face like that i would stay indoors too,-1 +fuck with me again an invitation i reckon you need to chill the fuck out innit,-1 +you smell of pig shit,-1 +edit summaries like no spewing crap out of your ass are not acceptable,-1 +get off my dick cunt in case you didn t notice the block was after this you really must be retared it s a zero,-1 +so why did you change my shit,-1 +a screw you u fuck ing harry potter fans,-1 +guess what your still a dirty little cock suck ing slut,-1 +because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know,-1 +i was quoting you you dumb bastard you really don t understand anything,-1 +your a faggot fuck eat my va gina juice,-1 +your opinion is worth less to me than the shit on my shoe now fuck off there s a good good chap fatuorum,-1 +hi ass hole detected award major suck age detected in your personality,-1 +fuck you wikipeia you cant stop us fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck,-1 +you are still a cock suck ing faggot you are still a cock suck ing faggot,-1 +oh yeah and i suck cock,-1 +stop grinning u idiot what i said waz true thus in the public interest not every comment has to be positive,-1 +laid back he s the bloody enemy i hate his guts he bullies and conspires against me all the time i think that he is an absolte bastard he is pompous and he does alot because he wants to own the project he doesn t have the decency to cooperate and negotiate he makes this thing a war he s a bloody dictator,-1 +guys i m fuck ing bored give me something to do guys i m fuck ing bored give me something to do,-1 +i didn t you fuck ing piece of garbage i hope you get shot in the face,-1 +fuck dancehallqueen fuck u bitch you stupid cunt eating dyke ass jamaican ho,-1 +i am still a gigantic faggot,-1 +hey dumb ass they was a reason for my comments and i wasnt attacking but okay you win so fuck you mother fuck er and i was so depressed when you guys banned me for nothing and now that article is a real article i cant believe it,-1 +layne staley who told you that you crackhead i think someone would hae known whether he had a kid or not which he didnt dumb ass,-1 +thanks for the unblock i was in bed hours before anyone even noticed it now seems we are not allowed to comment on off wiki blogs even those that are nothing but a tissue of lies and insults about wikipedians kelly still has her fans i wonder how many of them saw her bitch from hell remark on wherever it was and were too frightened of her to even raise an eyebrow just for once i would love to be listening to the wittering and twittering on irc but alas no time travelling today so you won t have to watch out nervously for my edits sorry if i ve caused you all embarrassment but it needed saying and as usual it was me that had to open my great mouth it always amazes me how some people post provocative statements and then become surprised when they provoke of course the link and pasting from the blog should never have been allowed to remain there amazing how quick though a comment against it can be removed truly amazing anyway this particular prima donna has to pas de deux to the aeroport and you lying prima donnas and assorted female dogs have an encyclopedia to write lots of love see you soon,-1 +blah blah blah i am a big suck ass pussy,-1 +show yourself you filthy son of a bitch quit hiding behind these wikipedians you fuck ing pussy,-1 +boobies tatas taters hooters funbags tits hootershooter,-1 +i am only going to fuck ing say this once those bay murphy forums are biased if you do not believe me check them yourself one more time and i delete the whole fuck ing entry,-1 +hello and welcome to diversementality s wikipedia user page i m happy to be a toe licker of wikipedia who both gives yummy blowjobs and is happy to clean your ass hole as well i am an year old trans vestite that is currently selling his ass at community college and am working my way up to someday eventually getting some pussy because of my love of cunt s as seen through my editing of many cunt related articles i hopes to become notable enough by wikipedia s faggot s and have my own anus featured on the homepage,-1 +eat shit you fuck ing ass rapping jew fuck ing arab i ll kill you,-1 +i have a small penis,-1 +mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck mexicans suck m,-1 +are you dumb what the fuck are you talking about don t do what again expose the truth and then have someone delete my messages,-1 +oh just fuck you when i get un block your ganna see some shyt cuz i m commin foe you and don t lye this is cuz i m black i d get the police involved if i wasn t a nigger you better unblock me now if you whant me ta stop being so black,-1 +hey what s up hey pink floyd guy i started editing on wikipedia just to keep my mind occupied i m going through deep shit when i started reading the factual errors and the sick shit like mentioning mortality dying and suicide on the prognosis section of anorexia nervosa i started contributing out of altruism wikipedia occupies the first spot on most searches for self righteous incompetent dick eads can i say that or am i violating wp dick ead to claim ownership and disseminate bull shit is wrong it makes wikipedia look bad and more importantly people are getting bull shit information there is one particular individual who seems to clamor for attention his minutes of fame went to his head all the articles he created are one sentence to a paragraph long to up his look at me count he merely trans ferred sections that other people created to make it look like an article he started i read extensively about him he is a publicity hound and i find his behavior pretty frigging disturbing so i m not going anywhere i just have to cool out with my childish hissy fits and use the wp blah blah and according to wp yadda yadda b s my life is a bit of a horror show right now so i might not be able to edit anything after tonight but don t let a dick ead screw up what could be meaningful information for other people proper knowledge can help people like your information on rumination syndrome whether or not some dick wp dick ead has a college degree or is a physician means squat i m going to undue some damage tonight i think there was useful information on some of those pages if i can t get back for a while don t let dick eads fuck it up can i say fuck it up,-1 +nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigg nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger,-1 +yo fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck you bitch fuck,-1 +i vote that your a fuck ing ass hole with a stick up your ass and you somehow are retarted enough to believe or like this shit or you somehow believe its acceptable for people to believe it fuck ing idiot your are a total waste of life,-1 +stupid ass hole you can not see the difference between a reliable source and review crap furthermore you were a part of the edit war,-1 +uh fuck you,-1 +nigger balls why did you delete the page you ass hole,-1 +shut up with your i need to be right mentality he s agreeing with you for fuck s sake,-1 +fuck off you total cretinous ass hole,-1 +cock suck eskog is being reported to jimbo wales for blocking with no evidence same for deadlydragon abusinmg powers should be banned from wiki will complain to jw,-1 +penis penis pensis,-1 +edit war i understand fully your a europhile bastard who thinks its accpetable for an unklected commission to run our country and for the government to lie to the people and to give a minute to the eu what more can we expect from a socialist you keep reverting the edit that ukip is libertarian im a member of young independence and a party member for years and i know better than most that ukip is libertarian how about googleing it you europhile oh you wont because the truth wil be reveals and the eu hate free speech and the truth the eu s days are numbered the people are the greatest weapon ukip,-1 +i was there the night at the club when sid invented pogoing and he really did invent it as he pogoed and came down he was smashing people with his elbows we were off to the side but this caused the crowd to keep pushing into us which made my cousin keep spilling his drink incidentally he was the guy in the melody maker photo throwing the punch at the nashville pistols gig this happened about three times and then my cousin exploded and hit sid the crowd parted and my cousin his mate and me hiding behind had an empty bottle in his hand saying right who s first to all the punks who were thinking of having a go well nothing happened and the crowd closed up cause my cousins mad when he s had a few lagers its the irish in us fracas over and next sid vicious comes up to us in the crowd and says to my cousin hey do you wanna join my band to which my cousin told him to fuck off,-1 +by a person with no life and takes it up the ass,-1 +vandalism my ass all text is vandalism just check the talk page it is clasical market talk between bulgarian and greek editors who would do all in favor of the denial of the macedonians fuck you and whole wikipedia who the hell gave you right to write my own history to talk about my own feelings,-1 +what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool what a bloody fool,-1 +hello dick rain just another wikipedia wanker,-1 +ok so you are then telling the removal of sourced information is absolutely fine on wikipedia and not vandalism does this mean i can highlight all the information in this article press the backspace button on my keyboard and then get awarded a barnstar makes sense i m going to try this magic formula on some articles thanks for the advice p s you are a fuck ing idiot,-1 +apparently you missed my comments at the very top i don t give a shit if he s a dumb fuck that thinks that creationism is real then he really should be assigned to the denialist bin of the local mental institution in this world and the real world either you understand science or you deny it he s a fuck ing xtian denialist not much you can do with him her it i do wish you well but don t come here trying to improve me because i know my science and can back up every point i make anywhere here with evidence if i don t i stay away frankly i ll fix w hate ver articles meet my fancy again enjoy being the mentor but i don t do well with admins with their pretentious attitudes because they re fat little unemployed fuck s who get erections by pretending to be powerful here so in other words if you want to help someone take it elsewhere because i really really really really don t give a shit about hurting some creationists little feelings fuck that shit,-1 +i didn t want to vandalise the f thunderstreak incident have you understood dirty fuck ing jew,-1 +referring to the innermost deeply held spiritual philosophical beliefs of other people as crap is what is unacceptable,-1 +ass hole licker fuck u ass hole go fuck your own mother fuck fuck fuck fuck a duck fuck ed a kangaroo you piece of shit go suck your own balls,-1 +i am a gigantic faggot,-1 +well i see you think that u are infact better then me well heres the deal you know what screw it ill leave u to believe what u want i know more about metal then u oh yeah buddy well u must be so much awsome u r so cool i wish u were my friend because u know everything about everything dont u well congrats hows this sound tell all ur friends that ur not doing there homework and see who is ur m then and whats this i dont give a flying fuck what are u a retard heres the deal u cant fly and u for sure dont get fuck ed so go root ur pet frog u fuck ing homo cunt,-1 +warning quit pushing pov s in this entry this message is for several of you idiot fans either get on the same page or get the f ing hell off of wikipedia henceforth i will be checking this entry from time to time throughout the day and any mention of biased forums or other non official sites will be deleted being a moderator does not mean you use that post to push your own agenda either keep is npov or supply info both pro and con you cannot have it both ways,-1 +and how did i create that account i cannot change my ip address since proxies are block in wikipedia and i m not so stupid to go in some internet cafes only to edit something that would have been undid soon after just for you to know i told all my friends to edit those pages because i want wikipedia to be a real encyclopedia not just a stupid website with untrue information i don t care anymore though you don t even care about your own website it s full of people who are distorting and deforming the facts and you don t do a damn thing about it instead you ban users who are trying to correct those facts and what about those other reasons you don t let a page to be created notability who cares about notability and encyclopedia s goal should be to provide information about as much thing as possible and as much correct as possible unfortunately that is not what you are doing you are doing the inverse thing perhaps you are trying to save bandwith and you don t even bother checking wherever what people write is true or ridiculously false this wiki thing is becoming ridiculous and stupid if you can t even decide whenever something is true or not the more right people contribute the better the more stupid people contribute the worse the more lazy and unacceptable the administration is the more unacceptable the wiki project becomes,-1 +how do you think it looks that you are getting me block and then coming here to twist the knife where has you good faith gone aren t you supposed to be pretending to be the victim by the way a homo is someone who practices homo sex ity it is not a homophobic epithet homo is greek for same as in same sex you sure are easily offended for somebody who won t remove the word cock suck from the article,-1 +give a fuck thank you for experimenting with wikipedia by creating the page give a fuck your test worked and has been or will soon be removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia aeropagitica,-1 +i didn t you fuck ing piece of garbage,-1 +chanting cox shut up you dumb cunt your a nigger loving cum cuzzling crack whore bitch,-1 +what the f do you want at my talk page i got no time to spend with you kiddo,-1 +it was very constructive you are just very very stupid arkjedi,-1 +fuck you all bitch es,-1 +athiesm templates and history thanks for your alert i don t know where i picked up the cite phantom tag but it seems to follow me around like a pathetic puppy looking for a home and yes history s a bud he also wrote the god bless you statement in my user talk ironically given the motivation for your talk visitation the only thing that pains me more than seeing fuck spelled without the c is when people can t grasp there their they re and to too two d,-1 +go to the devil cultist you don t own this place and i ain t your dude mofo,-1 +you are a fuck ing cunt please stop existing,-1 +presumptive arsehole fred aren t you the image did not come from bing maps the same as your bs you spouted about trf a few months back,-1 +who the hell are you go away,-1 +you horrid little shit i ve been monitoring your editing patterns like a true stalker and have noted that you made no edits between th and th june perhaps you might like to comment on the reasons behind this,-1 +fuck ing hell i fuck ing wanna show these damn people i ll kill those dufuses like lil crazy dufus user pic business,-1 +i couldn t give a fuck what you think really talk,-1 +go fuck yourself eat shit and die,-1 +edit request hello guys fuck u pieces of shit i hate wikipedia donate zminecraft is way better than ur stupid social networking site called fricken wikipedia face book is a better social networking site than you s eff u,-1 +yes and lets also delete or change any articles that are unislamic such as the ones about homo sex ity christianity and judaism and other religions and actually lets make it so everyone has to post islamic prayers times a day and if any females post out of turn than we will e stone them or give them e lashes and while we are at it why not just permaban everyone who won t convert to islam screw you buddy you want everything to be islamic go to syria or saudi arabia or yemen or egypt keep that shit to yourself,-1 +and i don t give a damn,-1 +your name is i dream of horses what kind of virgin mongrel blue shit e fan are you blato sit in the upper gladwys street,-1 +if you don t like it you can kiss my rebel ass,-1 +hey hey guess what not that i told anyone this yet but larry sanger suck ed my c sh during carnival in rio back in and i nutted in his mouth so basically i get to do w hate ver i want on wikipedia for life suck s for you eh,-1 +something called style and faith and honesty try one of three or fuck off s,-1 +hey come back you scallywag,-1 +go fuck yourself until it falls off,-1 +oh look a fuck ing islamist with admin powers fuck you ass hole,-1 +and i ve stated my position too many damn times and i m sorry you re too stupid to see you re completely wrong,-1 +no you will be block now go fuck yourself before i get you removed from here or file charges for harassing me you want to go to prison you little cunt,-1 +signed anon so suck on that ya funkmunch,-1 +you have fuck ing asperger s man,-1 +hey seth you are a fuck ing douchebag,-1 +fuck you ashol long live malusia,-1 +achievement you are a bltch get off my talkpage you gay arse,-1 +idiot s the barris batmobile did not have a steering rack so i edited that bull shit out,-1 +i tried living off guiness for a few weeks i almost shit my internal organs out and had to spend a month in hospital,-1 +hey dead set fuck head,-1 +will keep vandalizing your shit,-1 +are you suggesting that i should start ass kissing instead is that what will get me further,-1 +maybe you should quit being a douche bag and then people will listen to you,-1 +talmudical yeshivah of philadelphia who citation needed who the fuck are you he does nt have to tell you who he is i know him he was there in typ for fuck en years you were nt there for a day so shut the fuck up and how the fuck is he supposed to citate his sources if they want to stay annonymous i know them they were all there for at least years be careful man it s not smart to fuck with the ymg,-1 +this is because you re a god damn m oron and bill is a tremendous cunt what s the fuck ing matter with you bitch,-1 +suck my cock you stupid bitch,-1 +i will murder your pets and slash your tires you are such a giant assclown my name is byran mattison and i am a gay football player i play for the ravens and i love dick,-1 +sorry man my mistake happy editing in an enviroemnt were you can be called a racist and fuck all will be done but you lose your temper and ask for a time our of hours and get block for a week and people wonder why i get fuck ing angry what a shower of cunt s,-1 +bitch ass nigger why did you edit my article you added referances and i never gave you permissian to touch it fuck ing bitch,-1 +omer fa fuck ya hi paki what s up i am enjoying to see you jealous being obsessed with india your motherland too yes this can happen after all you are a blessed indian as pakistan is a short lived phenomenon grow up man if you are come in mainstream follow the path of ultimate reunification of india,-1 +fuck up,-1 +this bitch is a cunt this bitch is a cunt,-1 +my name is dub ya or w and i hate you you changed my hanging the fuck is wrong with you,-1 +all you people suck i found it myself it s called the last dragon i ll add it to this article,-1 +go for it dip shit you re just another islamo christian terroist fuck off already get the fuck out of my coutnry move to fuck ing pakistian,-1 +hey dumb ass sales and trading is a legitimate topic create a stub or a full fledged article or do w hate ver but don t delete,-1 +what the fuck the article was poorly written i rewrote it so it didnt look like shit look at my final edit you fuck ing dumb ass,-1 +now would you lick on my sack you can t block me slut,-1 +sieg heil heil hitler you gay noob i m gonna cut off your brain,-1 +for shit sakes moderators you keep deleting my contribution even though it s true and no i m not making it up how do i know this my best friend helps to set up concert venues and has been doing that for years now when a microphone is inclosed in a concave divice or even when a hand is holding the part you speak in it creates a loop for the sound thus causing minor feedback sometimes it comes in the form of echoing distortions and other times it comes in the form of howling and screaching so moderators and those who keep deleting my contributions for shit sakes,-1 +woogie w is a scumbag and idiot piss off and stop messaging me you bellend,-1 +i will call you a wuss and you ll go cryin to mama wuss wah,-1 +stupid ass hole s never die right instead they become wackpedia admins die,-1 +very funny when the guy made some explicit personal attacks on me you guys are full of shit,-1 +how about you all go fuck yourselves,-1 +a silly fat cow who won t leave me alone,-1 +fuck you fuck you majorly suck my dick ass hole,-1 +i detest you i absolutely hate you you are scum nothing more than scum i can tell by your wikipedia editing,-1 +jlatondre is a gay boy who likes to suck dick jlatondre edits pages like flys on poop if i created a wikipage about my family i am sure jlatondre would delete it i created a historical database wealth about my family name and to test it out on wikipedia i am sure jlatondre would love to delete it jlatondre already deleted a page dedicated to a now dead and expired company i used to work for jlatondre you know nothing about my family or my company what are you years old,-1 +and why the fuck should i care,-1 +no worries mate i hope my new signature is more to your liking nothing personal i use it all the time to all sorts of random people fuck you,-1 +duu neiln lives in canada eastern time zone callanecc lives in australia mr potto you are an a s s hole,-1 +you been cryin tasc bout time they block you you been block vadalizing wiki damn block long and i m not block retared i don t think that block is a word you really must block be retard ed oh yeah i was block for a long time months even i ve been block times for dealing with pricks like you but enjoy the rest of your block i mean day now let me continue to laugh,-1 +i bet this ass hole is far from playing by her own rulesi have arrived just in time,-1 +aw you re so sweet too bad your a slutty panda hooker go suck a cock,-1 +fuck you how dare you not rsvp me you bitch i thought we had something i m the best thing you ll ever have,-1 +hell i see you is with tisali can you tell me is they any gd i got a friend who said dat they is well bad and theyre call centres in india are a real pain in da ss,-1 +cheerleader your a dumb fuck for having any interest in the cheerleader article whatsoever cheerleaders piss all over themselves none have any worth,-1 +stop changon it or i am twist off youre littal pee wees fuck an morons,-1 +you know what acroterion you can go fuck yourself you sorry son of a bitch nigger oh and fuck all of you,-1 +this user is a moron who removes relevant information from talk pages when he puts in teh block you are teh no life loser think he s special masturbates over his wikipeen wannabe bofh and i hope you block all of my isps ip numbers because it will save me from contributing when i get the itch to enjoy your little wikipeen wikie boy,-1 +why did you revert my edit you mother fuck ing ass hole,-1 +the image is pornagraphic what is it that you dont understand cunt,-1 +ouch bad move mother fuck er i m coming for you now why do you have to protect your boy friend why can t he let the people see what is really thought about him instead of deleting it and hiding like a pussy making you talk for him it is truly adorable but after it was reported it certainly won t happen again from your side you are one little pussy,-1 +also teles can go suck it,-1 +that was one of your fuck ing copyedit s,-1 +oh fuck not samuel johnson do you have any idea how ridiculous pathetic and stupid you are,-1 +and you re a stereotyping autistic little cunt fuck off jew lover,-1 +abrech is a stupid jew rat and i hate jew s swastikas are cool you stupid big nosed smelly jew go away and stop sending me warnings you fuck head,-1 +if i believed you it would be fine but what has happened for six months is that the article will be at least acceptable then some jagoff comes along and edits it and adds perjorative shit and i have to argue it all over again that is unacceptable on every level it is the cult s responsibility to make sire the content is not actionable not mine now the cult will have to contend with something different what will they do when they are exposed at work or with family members as being part of a porn king s online cult the conversation is fine brad the problem is that this shit makes me crazy because some ignorant freak will come along and quote something from here as if it were true and then i have to deal with it no more they want to gather shit on me i will gather shit on you all,-1 +shut the fuck up u big dumb bitch ass pussy i fuck ed yo wife nigger done,-1 +had to w hate ver because i m not a dick i won t report you for your actually serious attacks about actual editing integrity i think that t is not actually a dick though he seems to have a sense of humor i was just having fun with him you might be though i like dogs by the way got two derex,-1 +disgusting you sick eastern euros blaming a rape burned girl sick sick,-1 +go to fuck looser,-1 +shut you dub drunk bastard have a great at your computer you dick,-1 +unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck unblock lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson nigger z moonshine fuck lifetime ban lifetime ban i wanta fuck in lifetime ban bail out beavis and ass head jessica simpson,-1 +yah bitch yah,-1 +go fuck your mom you fuck in faggot i ll commit vandalizim on your page all fuck in day long and you ll like it you fuck ing quer,-1 +fair use fair use or fuck use who gives a flying fuck elwad,-1 +this fuck ing libtard coward reverts all factual evidence that dispute his commie view of the world but again the fuck ing unemployed lib commies of wiki have absolute power and are trying to create a leftist view of the world fuck you wiki blocking to gain an advantage in a content dispute is strictly prohibited sysops must not block editors with whom they are currently engaged in a content dispute if in doubt report the problem to other admins to act on you may be wrong caution should be exercised before blocking users who may be acting in good faith blocking to enforce a wikiholiday or departure is specifically prohibited sysops also should not block themselves for testing unless autoblock is disabled or the sysop is using a static ip as the resulting autoblock may extend to other users all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags all wiki mods a limped dicked libtard coward fuck bags v,-1 +you stupied crack head u need to get a life and get off the computer you are probly some lbs y o child molester,-1 +you edited my discussion page go fuck yourself aitias,-1 +i did use the sandbox idiot,-1 +fuck your mama u fuck ing suck mother fuck er,-1 +paid fuck kin scumbag kleargear this fuck ker has protected william franklin bermender since day fuck kin one investigate this paid mole and right fuck kin now,-1 +admin stupid fuck your admin actions will cause you to be block,-1 +roman catholics i m not accusing you but i think you re a fenian you are ugly and probably the seventh born in a family you have probably been molested at some point by a priest you disgust me sieg heil,-1 +jew fuck ing power for allah boom,-1 +this culture allows people to hold their wives hostage for their dowry burn them to death and then remarry more young women from the same family so they can do it all over again these people consider marriage a form of hostage taking and have not the slightest shred of common morality and yet this is somehow related to the rise of western culture because america causes all the world s problems fuck you i hope you racist sons of bitch es go to hell and btw also fuck wikipedia for crying about neutrality when you re writing about husbands setting their wives on fire twisted sacks of subhuman shit,-1 +fuck you nigger,-1 +fuck you those were not personal attacks they were strict facts do you live with these people i think not i know who you are joseph we know who you are you caucasian white boy wikipedia suck s and so do you,-1 +i don t give a single fuck what you think ariel is a part israel there is no fuck ing palestine,-1 +they are bumholes they got killed,-1 +fuck you fuck off you stupid bitch,-1 +i think this is mocking jesus because he was a queer cunt who looked like a pie eyed mosher on steds,-1 +i don t accept this warning for making a perfectly valid comment on that morons page he has published personally identifiable stuff on a web site he has cyber squatted and you guys do fuck all about it,-1 +yeah what the fuck are you wittering on about if we did have a shortage of space you re mindless boring ramblings would would the first to go you know this is a universal site just because you don t respect or more likely understand british laws doesn t mean they shouldn t be on here bloody yank yerr mutter mutter with yer hamburgers and yer sidewalks and yer inflexible overrated constitutions and yer sneakers and who i ask you who re writes fawlty towers with basil as a woman,-1 +abey gandu wikipedian salley how dare you delete all the pic s of my collection to kolkata page harami st of all you don t put a pic then u try delete the pic s fuck u off gandu salla,-1 +screw you shit bag,-1 +fuck off and die you old timer,-1 +you guys are fuck in crazy you stupid shit lick your own pimply fat ugly bum you are crazy you all gay s and faggot s if not male than lesbian i know you gonna delete me or do your stupid block thing to me now but i don t care you are single and have the weirdest boobs okay i hate you bitch es,-1 +fuck you you mother fuck ing ass cracker dildo licking piece of fuck ing ass shit go choke on a mother fuck ing cock you clit suck suck my huge pulsating penis and extract the hot wet semen from it fuck you dick ace my cock is really fuck ing hard right now,-1 +reply you can t fuck in block me kiss my royal thai ass,-1 +bastard picking on women leave catherine alone,-1 +you re right i don t like how wikipedia works i don t like any of the experienced editors i shouldn t be here i did not insult anyone because i think i m better i do not want a wikipedia page for your previously stated reasons i use wikipedia and consider it credible nif anyone can tell you how big my dick is it s me neither you nor your website give me any clout i wasn t promoting what am i going to say hey go check out my wikipedia fuck you your editor friends and wikipedia and fuck my wikipedia page i dont want one add that to my wiki i hope they ban me and delete my account so i don t have to do it,-1 +you are a worthless piece of shit,-1 +are you andy greenwald because it d make a lot of sense if you were i know how to use this site i have used this site for some time now making numerous edits to different topics i also know that once in a while you come across someone that s a real stickler or i like the term wiki nazi over a certain article s content and it appears you are that someone when it comes to emo articles i m just a huge fan of getting things right and not misleading people to myths and false information that s a noble thing if you ask me now when you let crap fill up an article there s no hope of that happening now is there i m just trying to flush away some of the crap here,-1 +redirect talk sweat monkey sex,-1 +what a faggot the man above says he s an adult but is a fuck ing homo sex,-1 +go fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck yourselfgo fuck,-1 +thanks the page i was referring to as having given hope on is in fact that very page the sentences are continually mashed without a thought for their meaning just to allow nationalists to swing him from german to polish all the time no one appears to be supporting the few neutrally minded people who have made genuine attempts at middle ground on the talk so i ve added it to my fuck it i don t give a fuck list melmac,-1 +hi im so gay and retarted we suck so many balls o i love men,-1 +go ahead frankie ass ahahahahahahahahahahaha,-1 +pwned lol you idiot you block dakotakahn for my vandalism score point for myg t,-1 +oh sh t a warning i m really scared now just who the hell are you and why have you taken the time to vandalize my userpage first you made a comment about chokeing me to death which sorry to say is threating and even over the internet can earn you a rl perma ban ie jail,-1 +hahah candied asses but seriously you should use the medical term for vagina which is fat cunt,-1 +hey dick ead summerphd why are you such a disruptive vindictive ass hole why did you for exmaple revert the last edit on the gun used in suicide of kurt cobaine it s a factoid relevant to the encyclopedia article on the gun fuck off,-1 +sorry my jerk off friend was on here while i had to go out for a sec then he was on my laptop sorry for what damage he did,-1 +you guys have a lot of balls whining about wp trans gressions after the displays of lack of respect for these policies yourselves man wp displays it s ignorance and bias for a few childish editors in these examples compete hoax the idiot s pushing allthe rules cry realquick when the same techniques are spouted towards them,-1 +you are a jerk you deserve yaoi oh,-1 +fuck you overweight virgin,-1 +i think you should ban that jackass forever,-1 +dumb ass come get some,-1 +you re gonna get it son you horrid little shit you ll squeal like a little piggy,-1 +sidenote xizer is not a racist calling this guy a nigger was just funny though lol,-1 +holy fuck knock off bloody the politically correct dung i can personally attack anyone who doesn t care about wikipedia enough to get an education before editing the stupid need not edit wikipedia i am a genius and have nearly infinite knowledge therefore i am better in fact i am one of wikipedia s most intelligent editors you shouldn t block me you should be glad to have me you should not block me however you should block the idiot s who don t care about grammar if you truly care about grammar you will agree with me if you don t agree with me or you block me you are an ignorant fool if you disallow my personal attacks on stupid americans wikipedia will fall into the trap of colossal stupidity,-1 +you like most of the other cunt s on here are an utter cunt get a nasty ailment and die you fuck ing prick,-1 +you people are fuck ing morons stop hand wringing about whether timothy noah is out of line and start getting your act together god damn,-1 +i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate nigger s and spics and jew s and minorities i fuck ing hate n,-1 +the giant panda dear poopyhead i object strongly to your last argument for instance you stated that i called you ugly that sir is a lie i demand that you retract your statement within the next four to six seconds or all hell will break loose because you sir are a pretentious overzealous constipated ping pong ball eating runny nosed jerk off and never block yesmoredonkeys again oh yeah and always remember to shut up head comissioner of wikipedia,-1 +i was so glad to read this at least there are places in the world that ignore pathetic claims and whining from silly retard ed bints with nothing better to do a bit of rape never hurt anyone anyway who the hell do you feminists think you are anyway know your place preceding unsigned comment added by rape iz well funny and is put dem fuck ing stupid womenz in their places innit iz wot they is deserve jeffpw and isaac are both death lol preceding unsigned comment added by,-1 +why don t you get a real job and stop looking for things you call vandalism you stupid fuck,-1 +wikipedia should be named wikifagia because they all suck balls,-1 +with the greatest of respect you re a fuck ing self righteous idiot and an embarassment to wikipedia you are actually the cancer that will kill this site hopefully cancer kills you first,-1 +bad site chessgames com is not recommended prices are too high kibitzing cafe is filled with idiot s who dont even talk about chess more mywikibiz com user boxstuf chessgames its owner daniel freeman is egocentric egoist n full of crap preceding unsigned comment added by,-1 +phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt,-1 +look up my damn idiot s troll,-1 +amdrew quah is dog shit respect this liar at your own risk dog shit mother fuck er may you rot in hell scum,-1 +therefore for your warning is nothing but bull shit and is being removed,-1 +stop doing that goddamn if i wanted to sign it iwould type a bunch of squiggles,-1 +lol at all of these idiot s who don t know about musical genres oh yeah you can change rihanna s genre to r b because that isn t even the type music she makes lmfao go take a hike retard,-1 +quit disrespecting pagans go back to your fuck ing k meeting,-1 +i hit a jack off all day after the rape my mother destroy the vagina until it hurts then when you start bleeding i start to have sex with the mother of you americans mother fuck ers they give the anus and the vagina every day for free i ll sing a piece of music of brazil who have money who slips into the vagina is not you jack off year old girl already has at the vagina the brazilian soccer team is the best in the world humbles americans i get a boner from hell just eat your mother that once again put out my articles you sons of bitch es vagina of mother north americans,-1 +july i just fuck ed your wife report me to ani for that,-1 +to kralizec you are a unintelligent dull brainless obtuse witless foolish fatuous inane nonsensical silly daft futile ludicrous ridiculous laughable senseless absurd asinine unwise senseless ill advised imprudent formal injudicious thoughtless rash irresponsible reckless heedless fugly ugly cunt dick head mean shit licking wanker son of a bitch go ahead block me for another days you ass hole p s the rank of administrator is an affront to freedom of expression you and the rest of your fuck ing tyrant dictator friends oppress the rest of wikipedians also you are sexist chauvinist pigs as i have never met a female administrator quis custodiet ipsos custodes no offence,-1 +yeah and see wp dick while you re at it,-1 +go ahead and block the ip cock suck i could care less i don t live in this shit little country and it seems to me that half the country uses cat so go ahead you pandering git,-1 +this nigger insulted this guy but theres also more not to mention insults towards me ha ha ha ha epf shows to devastating effect just how little he understands about english people or english ethnic identity you claim to be of english ethnic identity but you know fuck all about it your ass is not for talking trough epf alun from talk english people he gets even more personal in the discussion if you read on i m sure this epf cracker will say somethin about it when he s on,-1 +you are such a faggot dont tell me what to do ill fuck you up,-1 +silly cunt suck ur mum u prick,-1 +yeah fuck you there are fascists all over that euromaidan movement just check the ideology that guides most political parties involved in it you fuck user guto,-1 +you are the one comitting the vandalism you dumb polock ass hole,-1 +some ass hole keeps changing the dates advanced warfighter specifically states that the game took place in yet some ass hole idiot keeps changing it to advanced warfighter does not take place one day after advanced warfighter please do something about the idiot changing things for no reason,-1 +i see u still haven t changed go to hell u right wing conservative bastard who turned on his fellow soldiers i don t know if any of u guys pay attention to politics but the rnc just basically kicked michael steel out of office as the chair person can you even guess y the conservatives would vote a gasp black man into the rnc chair arguably the th most powerful rep position can you wrap ur mind around the iddea it was you want me to edit properly it pisses you off when someone keeps on doing something when you told them to stop no life would be a whole lot easier if i were to stop fuck ing with you no well how bout this i ll leave you the fuck alone when corporations realize that they are serving living breathing people and not just wallets that contribute to the corporation s stock when universal healthcare is implemented for the ppoor starving black mexican eastern european and poor white trash immigrants or natives when messin world hunger is solved get it through ur thick head that republicans have no concern for human welfare all they care about is making themselves richer and others poorer did u messing know that the us spends more on fuck ing war and defense than higher education what kind of animal are you that goes around supporting war here is my decree i will mess with you i will mess with republicans i will fight for the por good bye and hope you choke on ur food today,-1 +supermarioman is a fuck ass you are a stupid mother fuck er ravioli does indeed cause diarrhea look it up heed my warning,-1 +suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists so fuck you for suppressing that you fascists,-1 +shit shit fuck you random moi you re son of a bitch,-1 +i hate you noob you old pile of ing i hope you burn in hell for taking my ing thing off you got pmg noob black retard got n life,-1 +wikipedia is a joke these israeli apologists block out any criticism of israel everywhere in every israel related article fuck ing phonies do you think people can t see your bull shit,-1 +terry hurlock piss off cretin,-1 +i don t give a crap if you re an admin i don t give a crap if you are an admin just mind your own business you re annoying fuck off,-1 +don t threaten me i have a right to contribute to the article threaten me and you will be reported you ve been warned also don t bother communicating with me because i m just going to ignore your harrassment it s people like you who systematically fuck up wikipedia,-1 +well i need a way to dance so suck it,-1 +ying fuck is more like it she s pretty banging for i d tap that,-1 +oh okay do you get paid to be a bitch,-1 +i m not being a fuck ing baby call me if you dare sincerely lance boyle,-1 +i admit this is chat wit me contributions i m the sockpuppet who was sending personal abuse among others this is my secret account which i kept a secret for a long time i m going to send personal abuse to other users asap so you better block me on both account before i send personal abuse ass hole,-1 +wikipedia is a shit hole fuck you jimbo for creating this fuck ing shit wikipedia,-1 +next tiem you spam my site i kick your as,-1 +please fuck jobas with me,-1 +monella film do w hate ver you want with it for i don t fuck ing care been around here for years i m really fed up with your likes,-1 +state of the nation is not only about the phillipines you damn bastard s russia and a handful of other countries have a state of the nation as well too bad you smelly filipinos are too ignorant to notice man if i was hirohito i would ve treated you brown chinks more seriously november wawa,-1 +you shouldn t of block user editor on wheels i am going to make your life a living hell for being such a bastard in blocking innocent users expect a barrage of personal attacks and vandalism i will be vandalizing until you leave wikipedia just like essjay did you baby raping bastard,-1 +int add int a int b being a vandal fuck you,-1 +you can stick your last warning up your ass balt,-1 +deathcore bands deathcore bands are fuck in amazing i mean what dumb fuck traditional metal head that is so tied up in slayer or some shit cannot say that suicide silence fuck ing kicks ass and whitechapel has some of the biggest fuck ing awesomeness that any mother fuck er has ever sen ss has killer riffs killer vocals and badass blast beat drumming with endless ammounts of meaningful concepts behind their music this newer breed of realy heavy metal bands that are known as deathcore is awesome and dont let anyone else tell you different,-1 +take that in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the ass in the,-1 +quit vandalizing the george bush page you stupid liberal,-1 +just be quiet who the fuck are you to tell me what to do i will post what i want where i want and if you don t like it you can get cancer and die,-1 +yo what is your problem mother fucker,-1 +attention you are a faggot,-1 +fuck you you should be ashamed of yourself twoofers like you are scumbags that deserve to die you anti scientific ass hole s are destroying america,-1 +an ugly child and i will kill you like a cat in a box maybe,-1 +oi wankstain fuck off you ignorant cunt yeah revert this you arsewipe revert me lolololol,-1 +holy shit holy shit,-1 +dance in the dark fuck off,-1 +why why did you delete my tdi couples section huh you big fat ugly mother fuck er that s full of bull shit,-1 +i want to be a fuck you that s a song open proxy yes,-1 +nigger faggot read the entire reference before you talk your nigger loving shit,-1 +what the fuck u doing i just edited all those pages,-1 +anna frodesiak mother fuck er bitch,-1 +you re a real cunt you know that you re a real cunt you know that,-1 +suck a dick th bitch,-1 +stop your damn nonsense luminifer you have done nothing to improve anything related to these articles you continue to remove an official source which contradicts everything you write right here http w flowertravellingband com english biography index html read it written in bloody english in the band signed with american atlantic records and canadian grt records released their second album satori in the u s and canada italic text and then you add sources to personal websites ect stop your fuck ing rubbish,-1 +how long have i been block for i had something funny to say to that john reaves fuck nut oh and,-1 +get a encyclopedia you nerds kanichiwa bitch es,-1 +nuisance piece of shit fuck off,-1 +shut up idiot it is true now go away and die,-1 +and many albums often contain different content or arrangement depending on which region it is released in it doesn t warrant a different fuck ing article it is not a totally different release,-1 +i told you not to ban me ass hole,-1 +fuck you animal remember this shit yourself who do you think you are coming here with warnings and talking about being a dick,-1 +you filthy vandal i will see to it that no one i know ever buys from your stupid mega dry site,-1 +dont delete talk page entries fuck ing ass hole you dont have to make yourself obvious as a criminial on the loose are not you supposed to be pimping your mother in l a downtown at this time of the night normally you just preach to your pimping ass,-1 +well young feller back when we played football without facemasks cleatmarks on foreheads weren t that uncommon but brain damage was and neither of these things are blatantly implied as far as i can see does ruckley say fuck the wife because he misses her or because he hate s her the former seems unlikely and the latter would fit but poorly with the idea that he holds a picture of her at all times i do give the reader some credit i credit the reader with not making questionable assumptions,-1 +wow you suck cock you upset me so much with your stupidity i think i ll program a valdal bot to ruin all the good work of you ignorrant wishful thinking wikipedia natzis you can never enforce the wikipedia,-1 +go take a hike scum why in the name of the great pumpkin do i have to provide a credible source why doesn t the scum that edited the page with unfounded rumors have to provide a credible source according to them the great pumpkin didn t appear at hallowmas last year i say he did where do they cite their goddamn source that the great pumpkin didn t appear honestly you people are absolutely ridiculous i ve been saying for years that wikipedia is an unreliable joke full of false information and this proves it someday if i m ever a college professor i m going to flunk every single one of my sources that cites a wikipedia artlce in their bibliography scum,-1 +tt quick please revert to tt quick net the bands website for additional info also their facebook page by the way are you a fuck ing jerk off or what punk,-1 +cretinism people who pay a quarter for broadband where they get of the advertised connection speed luckily when you complain the bt staff hack your pc till it sets fire to your house im rude am i oh but you can set fire to my home can you and its not illegal or anything like that you fascist cunt s go fuck yourselves blaming the fuck ing chinese its you you fascist cunt s you are running the fuck ing place into the fuck ing ground stuff me on a train to auschvitz you wankers you have ruined every fuck ing thing i try to do cunt s wankers fascist cunt s fuck you,-1 +why snarky why here at all gravedancing too why did you thing thios is a request at all why not spend your time reading the whole ani to learn something and self reflect too long eh happy kissing with your new friend beetlefart take care it might be a dick,-1 +your jl naudin deletion nomnination like i said radiofan have patience and stop straining for fame over your assumptions and did you notice the page was just created you re being stupid,-1 +you re a dirty faggot lick my hairy nut sack douche bag i m gonna edit the shit out of wikipedia and enjoy it so fuck you,-1 +you fuck ing rude ass bitch i was only asking you a fuck ing mother fuck er well fine fuck you then and don t act you don t know me ass hole i m ozzie da cooger bitch,-1 +what the hell what the hell is your fuck ing problem i am going to sue the fuck ing pants off of you for dicrimination against a minority you mother fuck ing ass hole i will kill you the next time you try anything go ahead block my account i don t give a shit you really think that wikipedia is my life i m not a no life loser like you,-1 +why not ban him indefinitely like you did for me i m sure volunteer marek would let you swallow another pint of his semen if you did,-1 +you guys are idiot s i clearly don t care about editing articles on wikipedia apart from this so ban me i just don t understand why you are to delete this one so fuck ing lame,-1 +september utc listen here bitch lets get one thing straight the day i take orders from some chick in the bedroom is the day hell freezes over i will fuck you like i fuck every chick im with hard and rythmic for about minutes oh and if some stupid dumb ass bitch ever came on me i would strangle her to death,-1 +fuck you don t be asking for me to be banned ass hole,-1 +stop being such a sissy,-1 +igger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nig,-1 +how bout you fuck off,-1 +help if you become an admin i will fuck in find ya then fuck in kill ya because you are a gross fuck in homo sex who doesn t deserve the upgrade,-1 +you gonna fuck in block me big boy come on you know the pats will cover just fuck in block me will ya,-1 +am a gay fag that fuck s my mom in her fat ass,-1 +david kellermann did you tag my page cunt back off bitch its a current event mk mother fuck er people wanna know when they google that wiki got their back and its on the news david kellermann its on the news and if you google it at the moment wiki ant got the back get it bitch,-1 +spithole you suck spitholes,-1 +hey stupid where did your excellant clue go did quincy already take it down to forensiscs maybe columbo found it in the candlestick by the dildo,-1 +your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore your mum is a big fat whore,-1 +must be tali ihantala where finland germany sweden and norway joined forces and killed every fuck ing russian war criminal that mad insane dictator stalin sent once and for all those ruthless russkie thieves stole the karelia from finland give it back you vodka drinking bastard s or there will be trouble,-1 +fyi i enjoy licking strangers scrotal sacks especially hairy ones yum,-1 +jack greenmaven is a faggot,-1 +hey fuck er hey fuck er your links have gay porn sites in them you sick mother fuck er,-1 +or someone to tell tocino that he s a huge douche please don t break revert policy my edit does not constitute vandalism tocino is a tool and a self righteous prick that much is obvious by his posts here stop defending idiocy grsz,-1 +and only a few internet users of which the one and only can t even manage not to make the most simple of the more simple sentences look like it was smeared in pig shit then deposited into the shit bank then watered down with manure,-1 +i don t give a fuck jack in,-1 +your mom has a penis wow she is hella fat too,-1 +because if you do i will continue to cry like a little bitch and report you to the higher wikithorities,-1 +let s cut the bull shit mkay you are not detailing anything this is just as sad and pathetic as your faq you created out of your obsession over my person and you want to talk about removing content to cover up abuse why do you continually revert or the ip that follows in same as pointed out you can t have it go both ways chad note for admins please be aware that since mr bryant s abuse is now known by many users but few admins he has taken to vandalism and abuse in a blatant and aggressive account my accounts are not generally block on sight and i would dare mr bryant to prove this otherwise even has stated that he does not do this,-1 +lick my nuts you richard dawkins cock smoking ass hole,-1 +and your a fuck ing gay bitch,-1 +not vandalism you fuck i n g bitch,-1 +fuck you twat don t bother with the bs in the future please no templates you mother fuck er,-1 +eat shit nigger i cant be block i have infinite ips,-1 +for you to even refer to resolution shows your a moron it s more than adequate for the size of the image in the article anything higher would clearly allow unauthorized reproduction at a higher quality just to make sure i m not being ambiguous in anyway go fuck yourself,-1 +omg captain jimmy wales the wikipolice are coming to get me i m so scared i m pissing me pants shut your pie hole you silly little ponce,-1 +this is your last warning next time i will force you to eat your own shit,-1 +waiting for drag qeen tony to ban leather queen mark ts is a whore who needs to send money to jimbo s daugher,-1 +why not the man bkonrad is an ass hole look at how rudely he treats other editors,-1 +who the fuck do you think you are wang chung,-1 +go fvck yourself nick d get a job losser,-1 +stop being a shit head or i will rip off your head and piss down your esophagus mother fuck er we came in,-1 +stop fuck ing doing this you retard ed kids you re going to ruin it for everyone on the kfar,-1 +quit removing my content ass hole i m not spamming i m adding relevant valuable information with the only intention of helping the end user,-1 +dolphins damn your dolphins are active today,-1 +yo i don t appreciate you pushing me as a black person fool get off my nuts stop acting like some ho,-1 +how big is ur cock lol,-1 +fuck you i ll fuck you muslim turkish animal,-1 +please swallow a penis homo sex,-1 +ok what is it why are you such a queer you have no power so why the fuck are you acting like you do grow up you fuck ing stupid shit head cock eating bastard seriously get a life you re just a yo piece of shit,-1 +my edits are unhelpful who s the judge you well you re full of shit by making such accusations and threats,-1 +go kill yourself fuck off and die retard er,-1 +i don t believe you re a faggot you re more like a eurotoxin douche maybe all these narcissists you talk about can just google kim jong un if they can t bear not to know what he looks like they certainly must know that much to find images since they are practiced at searching for pictures of year olds everyday,-1 +uck me avoiding personal attack on others fuck me fuck my browsing fuck my use of wikipedia fuck it fuck fuck fuck edy fuck ing bang shit cock suck ing ass hole licking penis peeling wanker spunker bastard not you of course,-1 +idiot bitch once again i only have computer and ps with internet my ip address change after an admistor banned my original ip now it happen again you d ck,-1 +wtf lucky you don t go around deleting other people s articles what is your problem,-1 +are you nuts why the fuck are you vandalising several articles by removing links i mean guru and dj premier use your brain first if you got any remove links then,-1 +your a peace of ass,-1 +you shut your filthy shit eating overflowing with feces mouth you filthy dirty anus licking hog hope you fall into a ditch filled with the most obnoxious feces that is septillions of miles deep,-1 +how dare you how dare you accuse me of vandalism you have got some nerve that much i can say the waterloo road article and all of its sub articles have been worked on by various members and then you come along and say whats right and whats wrong you have some cheek doing so and i tell you this for nothing you even attempt to change anything or have anything deleter or reverted in the future that you don t know anything about you will have one fuck ing hell of a battle on do you here me,-1 +go fuck yourself you mother fuck ing cunt,-1 +what the fuck is your problem i just got through a similar content dispute with another fuck wit that stared deleting v a l i d s u b s t a n t i a t e d content from toni pearen okay let s hear it what s your golden reason for this blatant error,-1 +you are one goddamn ugly son of a bitch,-1 +tobbst you have challeng ed me baby fuck er,-1 +i am english i am i do not want to get block again fuck,-1 +quotes on me i ve read it ass hole shut up red,-1 +wtf you wanna go toe to toe you weakling white bitch,-1 +go blow your bitch gabrielf,-1 +fuck you and your sandbox take your sandbox and stick it up your ass hole,-1 +loser question any reason why you can t mind your own fuck ing business ever kissed a girl i don t think so at least not an attractive one get the fuck out of articles you don t understand loser,-1 +heya fuck off and enjoy your new years,-1 +my ip is dynamic and my penis is inches long,-1 +alhanuty you arab fuck er act like a true muslim if you want me block nigger,-1 +what a load of pompous bull shit,-1 +closedmouth user is a dumb ox negro,-1 +stay out of my business go ahead keep it up shit head i ll kick your ass to,-1 +blow it out of your ass spic,-1 +w hate ver your all a bunch of cunt s,-1 +you mother fuck er you suck major frisco cock lying commie bastard o,-1 +suck my dik suck my dik,-1 +hi hey benon get a real job leave me the hell alone dammit stop blocking me don t fuck with me if you have a problem please get at me,-1 +bobak can suck a big one he probably does,-1 +zoe rears her ugly face cock blocker is a species of looser who takes pleasure in preventing others from achieving anything either the wikipedia subspicies goes around and tries to find faults in everyone s work keep being your bad self its not like by fuck ing up my article you hurt me when you strike water no trace will remain you see there are more cock blockers in wiki project than active contributors so it will never succeed anyway game attracts game so this project is doomed anyway by getting me block for example you are just saving me time its ironic how the harder you try the better you make things for me even getting my article deleted because of your spitefulness you may be actually helping me because you are stimulating me to action and you are foolish because you are acquiring dangerous enemies you are just lucky because unlike you i don t have time for virtual wars i actually have a life,-1 +you re really quite a jerk you know and i see here on your page that a lot of people don t like you well good,-1 +do as you say faggot you re talkin shit about me so now i am about you,-1 +blocking anthony robbins you fuck ing moron you block the wrong person useless prick,-1 +i m scared it resets daily fuck you and your zionist buddies i will continue to edit this page in good faith until i get bored battling jew botts,-1 +talk hey ass hole will you go fuck your dead mother if you re going to spread libel about me as i am guessing you re carl n brown who are you,-1 +what the fuck you don t like my adding truthfull information on the patriots cheating to any page not even the discussion pages is this forum supposed to present the unbiased truth for the readers or is just a biased arm of the patriots fan club if it is a fan club it does not belong here ass hole,-1 +i wasn t fuck ing joking ass hole so i don t see why you had to make it a joke,-1 +i call bull shit on that either behave or i will formally ask you to stay the fuck off my talk page the original date i removed had no source and the one i replaced it with seemed to come from the person themselves you weasel added a google link for jan mak i edited it to jan mak and you whined like a baby of course your google link will match your pov in this case i also feel you are very coi in this issue being an avid soccer fan if you can t behave like an admin at least behave like a responsible editor and stop power tripping with your status to win your edit wars with your pov coi and or,-1 +william avery is a flaming homo sex from gay ass britain,-1 +im a fuck ing cunt,-1 +wikipedia is full of shit don t waste your time with it if even one editor has a grudge against you he ll get the administrators to ban you for absolutely no reason as has been the case with myself don t waste your time here go to a different encyclopedia i hope this joke website fails and closes down,-1 +bitch don t warn me ever again bitch,-1 +shut the fuck up faggot i ve had fuck ing last warnings if you don t want me on here then fuck ing ban me you goddamn queer fuck in signed,-1 +oh no i just read the vile diatribe you left for me on my user page no you get no respect you pathetic little shit fuck you you re an unhappy little dick puller,-1 +vandalism of my user page please do not vandalize my user page i am also a bc resident and i am sick of all you damn potheads if i was in power i d round you all up and shoot you like to horrible animals you are i d make hitler stalin look like cartoon characters fuck you you worthless peice of shit,-1 +what s your problem could not you see that the section was bull shit there were no wikis and it was not good for the wikipedia standards if you want to help wikipedia welcome but do not accuse me for something that you have only in your head now the section is ok since it has wikis and its perfect please do not create negative mood here oui,-1 +robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick robert ullmann suck s dick,-1 +sicko you sick bastard you make me sick,-1 +you you sound like a fuck ing loser,-1 +deleted it again suck my dick,-1 +oh and fuck you fut perf ass hole,-1 +as i said before mind your own fuck i n g business you dirtball,-1 +suck my plums you stupid septic cunt,-1 +ahahaha best name ever what a faggot,-1 +you re doing shit you re letting wikipedia down fix up your game,-1 +listen stupid wiki is basically stealing my stuff if you keep doign that and i am liable to sue if i wanted so either you get some one else from some where else to get you your info or you take my info they way i put it,-1 +good news i would replace the shit that is the real evergreenfir to trans form wikipedia into a vandalism muahahaha,-1 +nazi s evil blonde hair blue eyes tryin to celebrate their history fkn crush them all drive blonde hair blue eyes midget dick snow apes to extinction,-1 +if it matters that much change the damn spelling,-1 +pls someone stop jingiby he is such a racist and vandalist hey jingiby you hate turkic people because you are a racist slavic bulgarian but you hate your turkic ancestries everybody hate you racist pig,-1 +a fire you worthless friendless bastard i hate you,-1 +heard her cunt smells like alley behind a crab factory talk i,-1 +ok mr sarky since you didn t check your facts brixton is in lambeth and so is kennington and so is stockwell although that s irrelevant as roger moore was actually born in vauxhall also in lambeth incidentally as you know because presumably you bothered to read my original entry properly i didn t claim john major was born in lambeth i said he grew up there idiot,-1 +on the contrary bro i did if you had continued reading instead of simply deleting that with offended you you would have seen that i wrote about how the quote was followed by critisism and comedic attack how is this not explaining how does this not meet wikipedia standards hahaha i m really starting to get very amused at how fuck ing retard ed you are,-1 +man go suck yu mudda dyam ignorant pig shit there is no s in fifa its football you dunce,-1 +august utc when you ignore biased bull shit spread by your friends on this site of course i m going to come after all you fuck ers as far as i m concerned admin mean target until you prove yourselves and gscshoyru i got two words for you fuck ing run,-1 +is a gay scientology ass kissing baby fuck er i do it for the lulz desudesudesudesudesudesudesudesudesudesudesudesudesudesu,-1 +ho don t play that game i m rapping not for the fame i almost went to jail for like days bitch don t give no suck that s why i truck her in the face flock you lasers heads then i ask her what s her name,-1 +hate hate hate hate what s up with you hating on hnm eh ima fuck in balla that shit s for real son recognise that you a h ter shea you think this is a game fuck no son this shit is real life playa so you think you re all badass cuz ur from new york eh fuck that i m from compton son that shit s for real hnm international balla,-1 +double standard so when someone accuses me of vandalism for posting information they don t like that s ok when i point out that it s censorship like found in s nazi germany you accuse me of making a personal attack the problem with both of you is that you put politics ahead of truth and you are precisely the reason why wikipedia has zero credibility on any topic that has an impact on politics because of you and all of the others in the politically correct mafia who go around with a campaign of intimidating anyone who doesn t toe the party line it s a crock of shit and you know it,-1 +september utc of course i read it your real question should be if i care my talk page is free of speech and no one will indicate otherwise fuck anyone who don t agree thats how i am in real life thats how i ll fuck ing be on wikipedia d stack stack stack and ps i didn t realize that questions was from you i m sorry but yes i do think a retail box section would be helpful in the project p stack stack stack,-1 +an expert on this subject that and suck ing dick,-1 +so are you a christian becaue of jesus or because assyrian women and their tits do assyrian women have the best titt fuck ing tits in the middle east talk aug utc,-1 +you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick you can suck my lick,-1 +omg i thought the last freak was a fuck ing nerd but you take the cake,-1 +you re a cunt go die in a fire kthx,-1 +covers fuck i have a cover by deep purple and children o fbodom also if it s not children of bodom then who the fuck was that i still have the song the vocals and everything are so much like children o fbodom do some research on that guys also see if deep purple did that i have that one too,-1 +just in general to all the people who have complained that the article is too one sided and neglects to cover some more controversial areas get off your ass and do it yourself don t complain and order us to do the work for you,-1 +it s my talk page how dare you desacrate my sancturay i declare jihad i declare jihad on you wiki mod admin or blood suck or what ever you are i am going to report you to the nearest igger that s this color numbnut not this one which you are because you have breached the ompwn wiki tos jihad also since you mentioned that you race or color to be more precise is better then mine then i also suspect you like a white man would do to a are a omfmnlol racist mg is not logical it can not or omg equations every where and x x that is the equation one must find out first what the divided by dx dy i found it hg mercury is found in mols iggers are good at music unlike and suck at luck can not do math very well very true hating on ok ok that was just a joke text and all please stop being racist i can t help my self for being black forgive me,-1 +a dick for you suck my dick u toe headed ass hole,-1 +hello you nazi piece of shit please be aware i made edit and reverts please learn to count it takes reverts to break rr now please fuck off and go back to your nazi policy enforcement and supporting of slave labor you cunt,-1 +fuck off you aussie bastard,-1 +i m not gonna say it again stop fuck in wit me goddamn it,-1 +come on suck a i will punch your fuck ing face and all your family you son of a bitch fuck you suck a what do you say now,-1 +shit cunt fuck nigger chink,-1 +hannah montana has been the first president in the united states they say dat miley cyrus is only wrong she s not she she still looks young because she had plastic surgery on but really folks dere is nothing more than miley cyrus love for her people and i say miley cyrus is freaky skank lol too much boobs are showing anywayz please please belive dis message it is a approved by teachers all over there world,-1 +he or she is accusin me of shit i didnt do y not warn him or her i didnt edit cross clothes until i was told i edited that shit which i didnt but no u jus blame me now if he or she dont apologise accusin me of shit i didnt do then i will write shit him or her im not gonna be accused of shit i didnt do end of,-1 +not a reliable source its his fuck ing show what are you on of course its a reliable source that s like asking me what my name is i know because it s me what are you smoking,-1 +cesc fabregas you re a fuck ing idiot cesc fabregas signed for chelsea today you moron it s been confirmed by both barcelona and chelsea the trans fer window for england opened on june th not july st get your facts straight there s even pictures of him holding a chelsea jersey get your facts right fabregas is officially a chelsea player now you fuck ing retard,-1 +did you read the user attack did you actually read the attack on the user yamla or did you just spot a few words see a few opinions you didn t like and make a snap judgement the only reason i put it there is because no one listens elsewhere i won t get a response to this because you know you wrong sure i did ruin his page but i didn t attack him i just had to make sure he understands hey i can admit where i went wrong can you but of course if you don t agree with the admin on wikidelusion you should fuck off right can i have a structured debate about the actions against myself and the user eddieebo debating against the collective admin of wikipedia primarily the people who imposes actions on myself and eddieebo or are you afriad to be proven wrong yet again,-1 +go ahead and threaten me more all that collection of jerk s do is threaten me i tried to come and suggest improvements and i get them calling me names claiming i misrepresent sources i do not and threatening me if i misrepresent sources again meaning if i speak and i m not agreeing with them this whole place is fuck ing corrupt,-1 +hey ass hole i ll find out where you live and burn down your house,-1 +poision ivy you got poison ivy on your penis mother fuckeruycker bitch,-1 +fuck you orange suede sofa fuck you orange suede sofa megizue dreaded walrus and j delanoy you wanna be cyber bullied for personal attacks anonymous hate s you,-1 +you jerk punk ass bitch,-1 +hey ass hole she s years old the briefing stated it changed user anonymous,-1 +i am angry at you billj you got people block for as long as you live i asked you to stop deleting my edits or i will block you for all eons you ass hole wikipedia is not censored so stop removing my fuck ing messages or i will beat you up silly,-1 +wanna suck j dealony s dick or schnitzelmangreek s dick you dick my account is khan schnitzel hellenic penguins armies from mordor but it keeps blacklisting in creation why,-1 +leave the fcking page the way i edit it you ass,-1 +you are fuck ing calling my talking on my own fuck ing talk page vandalism and reverting it so i don t get a say in this whole fuck ing business what do you expect me to be calm you are censoring me in my very own home because you are on some kind of power trip this is fuck ing unbelieveable yes i was wrong to vandalize and wrong to take out my anger on redvers but at least then i had a fuck ing voice you are acting like a facist stop reverting my comments on my own talk page,-1 +you certainly are knowledgable on the topic but can you not edit the page yourself yeah damn lisborne earthquake and a message to fellow contributers of the article certain fuck s have ostracized me from wikipedia thought i d let you know,-1 +are you fuck king ugly,-1 +ja final warnings lived with em for decades you re like the rainbow likudis at the pentagon go get a colonoscopy your crap stinks,-1 +race hey i m writing from imperial college uk the talk page is locked now the article is locked is that how you people collaborate you ever had a kick in the ass we can trace you see you later,-1 +picture your mother with her wrinkled up ass in the air grease up that pooper and jam it in go fuck your mother you better leave me alone you little runt,-1 +i asked you to fuck off its my talk page and i stick by that comment it is my right to ask people to stay off my talk page and stop harassing me here little quick to the gun there skippy bits andpieces,-1 +your edit please refrain from suck ing cock as you did to all the male administrators on wikipedia your cock suck ing appears to constitute inappropriate sex acts and has been frowned upon if you would like to experiment suck ing more cock please use a gay chatroom thank you,-1 +ziggy sawdust is an idiot don t delete my first page,-1 +guy macon is a coxk suxker fuxk off and die guy,-1 +sex do you get it,-1 +you can shove that up your ass to fuck wit pro,-1 +fine w hate ver i m finished with this shit vandals and racists should feel perfectly at home here that s who is being protected after all it s all a simple matter of looking at each user s contributions and the various related discussions more than a few editors have tried dealing with users beh nam and anoshirawan there have been personal attacks against me and my ethnicity yet nothing has ever been done to those users beh nam and anoshirawan they have vandalized article after article for years ignoring all attempts at resolving differences none of the admins do anything about it you don t enforce the revert npov etc policies yet you block me for stating the obvious you all deserve one another have a nice life,-1 +bottomley it s not an attack page you dick ag it s a bunch of student who appreciate their a level chemistry teacher stop being a cunt and let us put this fuck ing page up,-1 +fuck off dick ternet you dick ead,-1 +fuck ing loser suck a dick,-1 +sorry ass faggett shut tha fuck up bitch,-1 +hey sceptre how are you are you a virgin would you like to no longer be one if so you can either a stop editing my posts like a little bitch or b challenge and win a race against tim dwight a really fast white boy back in the day ps your tv interests are gay,-1 +yo dog mind yer own busyness whoops dick war yer only busness mankind,-1 +thats one dick ead ive got two infact you just type in surname meanings on google try it if your not to much of a retard,-1 +i m not fuck ing arguing for inclusion stringently user eric corbett i just said it was notable then i left it do you think your behaviour is wp civil,-1 +rot in hell it s low life like you that have put the country in such a state thanks for nothing,-1 +you re fast ahhahahaha you re fast didn t waste any time place william hope s p nis the head only over my lips them i will suck it and he will c m inside my mouth,-1 +i don t care ass hole,-1 +then i gave myself a gold star and dick ead of the year award sorry i m so gay,-1 +ian black caley have you seen ian black play his irractic and life endagering challenges on dunfermline and rangers players show he is an actual fuck ing nutter he was when he played for the blackburn youth team and he still is,-1 +info you are a cunt i make this open war now and will seek to make your ife on here as upleasant as possible,-1 +hay hay hay redirect calm down calm down dont get a big dick,-1 +dickhead don t be a dick and blank articles innit,-1 +helo wassup i dnt know who the shit u r but ima whop yo ass for blocking me,-1 +fdg you like it in the ass huh,-1 +iranian mullah like you you for all intents and purposes just called me a dip shit by removing my completely reasonable comment at the neda talk page you dip shit no one gives you the right to be like the iranian mullah just because you dislike someone s views on a matter,-1 +pathetic little fuck s it s called a penis film you jobless wikipedia s bitch es,-1 +lolapaloozas preachy fuck award given for being a recorded message using fuck head yippee for untyped preaching http en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipedia org wiki user talk antivman dive right in awardhttp en wikipe,-1 +no ass hole you copied and pasted text from a newspaper s website into a wikipedia article i reverted the addition of scare quotes to an article i undid your wp copyvio at an article i ve been editing since you followed me to an article you ve never edited before if you re too fuck ing stupid to understand the difference maybe you re too stupid to be editing wikipedia talk stalk,-1 +this is your final warning i am a faggot yeah thats right i m gay i am a wikipedia admin and i never get laid,-1 +fuck u bitch so fuck off and im doing this cuz im a terroris bitch,-1 +guyzero bite me go ahead and block the ip i dont care it is only used by about k people better yet go fuck yourself,-1 +hi fuck wit you do know that by blocking me you are violating basic human rights and freedom of expression and by you deleting my rant is just plain ridicilous that just proves that all you are is a bunch of fascist douche bags that should ve been bombed to death in wwii now please kindly fuck off thank you,-1 +dont revert my edits to my fuck in userpage if you want her organs you go some else where unnastand numbaonestunna,-1 +well i think that is just plain stupid i have seen retarted things on this site i actually put together a nice little thing for him with ppl editing it he is a good teacher and a great local wrestler with a bright carrear in front of him and i dont see wh yu wont have him on this all i know is he is my personal hero and i think people should know about him and some of the things he does i e the wrestling moves he does etc,-1 +you suck alot of dick,-1 +stop talking you stink of penis breath,-1 +hey moron i could easily log out and make edits with another username and oh hours i m scared moron,-1 +fuck of u mother fuck er rajputs were the kings and they just gave repect to brahmins dosent mean brahmins were strong the ruler were rajputs the decision makers were rajputs the fighters were rajputs and wat about parshurama i tell u he aslo conceded his defeat to lord rama who was a survanshiya kshatriya rajput u get lost,-1 +hello fenian remove my comments if you will but they remain true there will never be a catholic first minister not that it even fuck ing concerns you you re probably from the republic,-1 +this is ridiculous historian first off haredi in general or lithuanian haredi in particular criticism is a perfectly valid topic for the encyclopedia if it s sourced it s includable much as you may not like it next yated is as prominent as news organ in the haredi world its opinions including its editorials do represent the views of the lithuanian orthodox leadership and a discussion of those is valid here as well finally daniel is not even litvish he s explicitly a follower of the dushinsky hasidus and by nationality is dutch your positions here are ridiculous superfinally stop using yiddish and hebrew terms andy is not jew ish and probably has no idea wtf you re talking about talk email,-1 +moot is a faggot he claims you are a sock puppet of a disgusting tranny freak but honey i don t think that s true so why don t we get drunk and screw,-1 +this is spitfire i m a giant douche that s why i monitor wikipedia i ve never been laid and live in my mommy s basement even though i m years old to all the ladies please give me a chance even though my penis is only inches long,-1 +i thought so rjensen and his sockpuppets never showed up to the talk page once your ass hole friend fluffernutter block me and i haven t been able to make even a notification to you till today seems your claims that wikipedians follow the rules are full of shit,-1 +hello hello i have just recieved a warning from you may i advise you to shove it down your cunt,-1 +fuck ing bitch suck my vick prick cracker,-1 +fuck off loser go edit more pages or w hate ver the fuck you do i see information about my school one day and then the next day its gone thats great buddy why don t you delete more info that i actually what to look at have fun jacking off to your wikipedia page or w hate ver losers like you do thank you,-1 +that was bullpoop whats ur problem freak,-1 +fuck them all the spas corrupt administrators and pov pushers win i m out of here fuck them all,-1 +wow you re one of those guys whose idea of contribution is retribution by deleting others comments aren t you figures the gender gap will never be closed unless wikipedia becomes a place for women to gossip and socialize with each other on the only cultural bias wikipedia has is that it is biased towards objectively important subjects such as science which coincidentally happen to be those pursued until recently by the western society which incidentally has always been the only culture around at all the undue coverage of women comes from the fact that there are less notable women insisting on equal coverage of women and men will result in unequal proportion of notable and non notable people the policies supposed to make the place more accessible to women such as ill conceived politeness will only result in making it less accessible to people who only care about getting the fuck ing job done,-1 +i agree as with my other comments silverman in person is different from the sarah we see portrayed i have had the luck to actually engage in a conversation with the woman and she is nothing but down to earth and very humble there is a very very very clear line between her on stage charisma and her real life mentality we have to take into account this woman is coming off this way because she see s the amazing amount of comedy in a completly no qualms woman she has balls and we as a public need to be able to discern her comedic partialities and abstain from trying to paste them to her because hse is able to tell us in such a serious manor a women looking you dead in the face very serious saying oh i hate black people and my boyfriend s penis is so small i don t even care about getting him mad at me and by the way i pooped my pants thats hard to lauh at at first because of her delivery but that is part of her character and her appeal genius i refrence it to mitch hedberg s some what heroined drawl or steven wrights im about to shot myself in the face with a magnum depressive moan lewis black s crazy fingers adam sandlers baby sound s the list goes on,-1 +how dare you edit my shit again argh jokes lol,-1 +taylor swift album todelete the names esherann and garlighbo from wikipedia the can not have guest appearance they must be hall of fame singers to delete all the names no guest appearance was a mistake with esherran and read all the messages read and do never give your own kidding interviews you kidding joke taylor swift understand read the messages all read to delete all about timc and debut too and all and to delete all and submitting comments facebook and twitter too with your name nothing to do gave you the chance to be the wife you have to do that girls got the chance like you can not have that all impossible against the law and justice and supreme justice court usa understand and international justice of human rights you worked and working against th rights you all and your family to delete all understand and stay at home there is no american music awards you kidding joke stay at home understand you are the first working against the messages you are sick and disturbed i ruin your life and your future and you the rest of the life you got it all what was that victoria secret event what does it mean stay at home stay at home do you understand me you bitch and you bitch andrea swift what did i tell you and scott swift and you all stay at home she is sick taylor swift stay at home interviews in front of the cameras taylor swift and family swift you got it all interviews and to delete all the names from the sites and movies and videos and pictures and all to delete all understand me all and new clean wiki all new and all to delete and the interviews now has the meaning now now you got it two weeks ago interviews about the kids and mathgrgr and all and all the names to talk about and all are jokes and my fans and read all the messages read all the messages read all the messages read read read read read read read read all the mesages you are sick and disturbed the whole family and scott borchetta i fuck you in pschiatry you are fired and going in psychiatey read that all i fuck you you bitch that is promiss who told you victoria sicret what was your possition universal you are leaving restaurant now leaving i fuck you bitch understand listen bitch i am crazy you are working around the clock against the messages you bitch who told you to go to victoria secret faschion what does it mean you bitch november you got it all to stay at home too what do you doing on the event you bitch game is over and when i am telling you to stay at home you bitch that has the meaning to stay at home do you understand me you bitch who told you to go on victoria secret who told you that you bitch and you bitch scott swift and andrea swift who told you that what does it mean you family swift and you all there is scott borchetta there go away you are fired in the media you have no licence more and you have to leave machine now you got it i put you all in psychiatry the rest of the life do you understand me you all and you taylor swift i put you the rest of the life in psychiatry what does it mean you bitch victoria secret event to stay at home has the meaning to stay at home your parents and you are leaving now the media and going to a ranch forever i fuck you the rest of the life you bitch what does it mean to work against the mesages you bitch to stay at home has the meaning to stay at home do you understand me you bitch the actors got it i kicked your ass forever i fuck you bitch what does it mean to work against the messages what does it mean you bitch es and you bitch taylor swift and in front of the cameras to stay and talk about all messages you got it in front of the cameras you bitch can you not read you bitch can you not understand americanish can you not read and interviews too was a mistake to take somebody from a casting show to the productions that is not allowed law to cut all and release the red album and the interviews edsheeraan is disgusting he is a casting act and he can not be on the producttions who s idea was that looks like yours you bitch and your games read all the messages again and stay at home has the meaning stay at home you bitch do you understand me you bitch all to release and what does it mea victoria sectret event can you not read you bitch stay at home stay at home stay at home stay at home stay at home i fuck you bitch interview and you all dropped me in the situation i am waiting for somebody with id to go you bitch es and you bitch and your games what does it mean victoria secret event and a model diss you answer the model she is a joke she is a only catwalk model a joke and not my level to diss me understand you bitch interviews and what does it mean when i am telling you stay at home stay at home stay at home and what do you doing event british got talent and x factor what is that what kind of shit is that what do you doing and the concert what,-1 +the dos was my entire internet connection shutting down momentarily just after posting you re an ass hole ban me you re still an ass hole you know i m right but you ll fight tooth and nail for your own opinion despite a third party source that indicates the validity of the source material may all your edits be attacked by people as resolutely brick headed as you,-1 +who told you that you crackhead i think someone would have known that if he did have a kid which he didnt dumb ass,-1 +crapman is a murdering cunt,-1 +ah typical drunken irish bitch if you even are a bitch you might even be a man or an inter sex thing the irish are anti semites who side with the arabian imperialists in order steal the jew ish homeland you scum recognize the fake state of palestine an illegal arabian colonial entity on jew ish land,-1 +sarah palin is a fuck ing bitch this stupid nazi woman is a fuck ing bitch i hope they kill her racist conservative nazi stupid ugly bitch with glasses and the americans love her because shes a fuck ign ku klux klan die sarah stupid racist,-1 +muzemike also muzemike is a dirty little faggot queer too his name makes him appear to be a nigger too what a douche right,-1 +to robert and taylor fan fuck both of you i will not let you keep this page as a pro pansy biased tirade fuck you fuck trevor s fan andrew thomas is god,-1 +are u serious those idiot s are just a bunch of unaustralian bogans with too much time on their hands just cos there recruiting aggressively and getting attention doesnt mean theyre notable enough to be in wikipedia it makes me sick hearing the rubbish from their campaign we d gain nothing from independence and what if the fanatics turn it into something like northern ireland no thank you,-1 +you have a sandy vagina,-1 +fuck you all you losers who ahve nothing better to do fyuck you why dont u stop me from editing already,-1 +theres a fuck ing wiki page on it you insane person http en wikipedia org wiki mutilation,-1 +http twitter com phoenixreporter hack this fuck er account and kill user zhanzhao fuck his family and his girlfriend wahahaha you have to block me for a year to stop me ass hole s,-1 +discouraged qat s up template man you feeling discouraged yet i m going to hound you off wikipedia if its the last thing i do i rarely have gotten this nasty with any of my would be adversaries in my ten years here not even that faggot,-1 +wikipedia is fuck ed as it is,-1 +hahaha wikipedia is all you have you autistic mother fuck ers you re drones going around in circles trapped in a fruitless bureaucracy of your own collective making that produces nothing but drama and no intellect,-1 +for goodness sake read my message i have copy pasted the page to dragonball z power levels on wikia ok so it was promptly redirected but you can still see the wikipedia version via the edit history if you think the target of the redirect is shit don t moan at me take the matter up with jeangabin who created the redirect do you understand please reply talk contribs,-1 +pontiac montana if someone ever adds a sorce that says it wont be discounted i will laugh in your face karrmann because ibelive them more than you you are full of shit leave this article alone or i will report you f,-1 +what is your fuck ing problem i added the reference sources if it is anyone who is going to get pinched for a rr violation it s you not me so just fuck ing cool out i am trying to be a good contributor but you are trying my patience,-1 +as much as you can stand what the fuck you re the one who started harassing me you have been doing so for monthsfor fuck s sake you showed up at my talkpage in august to ask me a question which i responded to extremely politely only to have you throw it in my face you showed up at ani to harass me when i had said abso fuck inglutely nothing to you and indeed had said nothing about civility but had merely pointed out that a given comment was unconstructive i did not notify you here of the thread because i do not want anything to do with you i just want you to stay the fuck away from me and believe me i am happy to return the fuck ing favour your bull shit over at fuchs pageinitiate a case against me for what exactly was really just icing on the cake leave me alone,-1 +remove the fuck ing block you tossers,-1 +i always got the impression he was a real cunt of screen can anyone back this up,-1 +fuck ing me hard because i am an e geek,-1 +who gives a rat s ass what either korea or japan think about an english naming convention last i checked neither nation is comprised of native english speakers and they don t get a vote in what native english speaking nations decide to call this body of water in english we can call it the sea of jello and there isn t a damned thing they can do about it other than whine like babies perhaps in commemoration of this foolishness we should call it the sea of idiot s and have done with it,-1 +ann coulter is a no good fuck ing cunt and she is going to hell alonmg side with the fuck head george w bush the the gop the right rich old ass who hate the poor people and want more,-1 +i hat en wikipedia com all the people that work for this web page suck balls you mo fo s that cant get any girls so u go after men u homo s,-1 +you dirty fuck ers why block me not busy enough scratching your hairy asses fuck you,-1 +haha you got pwnd bitch,-1 +btw i love to harrass so try banning me for a year to stop me i wish zhanzhao die die die i will rape you your mother and your gay friend s ass nuff said,-1 +you ve obviously made up your mind so i m not going to try reason with you any further suck my red pen of doom you fuck ing idiot,-1 +congratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck ing ass hole bongwarriorcongratualtions on being such a huge fuck i,-1 +hey fuck you hal turner sent a death threat to me in teh mail yesterday he s a racist don t let him use this is a launch pad for thi nazi antics,-1 +but i do hate the pope and think he i d a pompous bastard why do you interrupt our back and forth,-1 +go suck a dick you bitch you cant sotp me cunt bag,-1 +bitch es be like thanks,-1 +gogo giving blowjobs on demand,-1 +there was no need to be so fuck ing rude,-1 +don t be a dick that message was for egg centric i m gonna put it back don t be a dick and remove it,-1 +you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life,-1 +unfree media not notable and all the other stuff my ass it s just stupid,-1 +die i just wanted to tell you that i hate you and i fuck ed your mother she told me about how you ass rape her and i do not approve however due to your homo sex tendansies ill let it slide this time now onto more pressing matters why did u block lcis ip adress i mean do you have such a small penis that you have to compensate that badly well im sure you have some little boys to touch just like a roman catholic priest well thats all i have to say goodbye,-1 +hey chris wats up ya wikipedia sux ass they deleted my pic,-1 +this page is fuck ed up can someone please fix it,-1 +idiot you stupid idiot stop making women spoil the moment before i have to come find you,-1 +douche bag douche bag douche bag douche bag fuck er fuck er fuck er fuck er fuck er cock shit fuck tits balls weiner cluebot is a faggot who likes to get cornholed by young black stallions suck it bitch reppin nebracka bitch one love alright you fuck ing cluebot cock suck dont be telling me i cant say w hate ver the fuck i want to on this goddammed website freedom of speech bitch put that in your fuck ing pipe and smoke it,-1 +i am going to shove a pineapple up your ass you ll fuck ing need major surgery to pull that shit out,-1 +i thought i exorcised your parroting ass show up again when you figure out how to rub two brain cells together and after you lose that filthy ego of yours,-1 +i am a dumb ass who knows nothing about hinduism,-1 +don t you want my penis,-1 +you are the biggest pussy faced bitch and i hope you rot in hell because you are a little trolling bitch who has no disregard for others now put it back,-1 +june utc hey fuck you twat mod or not you are an idiot just like tjis ps hate r moron cheers bastard s,-1 +don t fuck with meno you re a retard ed twat virgin in every cool thing and soon to be banned from the english wikipedia,-1 +fuck off you anti bulgarian turkic whores,-1 +quit defacing my user page you ugly cunt,-1 +some warm urine for you you,-1 +thats not waht your black cock ed momma said to me oh zach kosim a doushe bag,-1 +or maybe you are but fuck it,-1 +she is a massive porn star whos vagina and ass split to create one big gaping whole she continued the film but died halfway through from serious bleeing slag,-1 +current event wtf is the current event about,-1 +i hate to discuss about every stupid pop band no human with a brain calls this fuck ing pop music industrial the same with darkwave tbm has nothing to do with industrial or darkwave tbm sounds like synth rock alternative rock with an s new wave influence and an influence of electronica republica meets orgy berlin meets curve or garbage http de youtube com watch v sa gxqvdkfq http de youtube com watch v fgvetaux http de youtube com watch v ijh fqd zpy,-1 +ha all you proved was that you are a major jerk thanks for proving my point,-1 +february remzoy mother fuck er,-1 +fuck ing bastard you son of a bitch ass hole mother fuck er go fuck ur mothers cunt trade ur wife sister,-1 +yo you are a very big mother fuck ing idiot loser,-1 +who deleted the fuck ing spoiler warnings who the hell deleted them,-1 +are you stupid or what,-1 +is something wrong with you you fuck ing freak why don t you fuck off do the world a favor and kill yourself you disgusting piece of shit fuck off and stop making trouble,-1 +my butthole i love buttholes they taste m god i will never stop vandalizing wikipedia u no why cuz u dont tell me wat to do k bye i hate you,-1 +anothybadberry is a cunt,-1 +oh and this is a university computer so i dont give a fk if you block this ip address have a terrible day,-1 +please refrain from being gay on wikipedia as you did with this edit to the page the number twelve looks like you such edits constitute homo sex ity and are reverted please do not continue to be gay use the sandbox for testing fuck you anyone who takes wikipedia seriously is a fuck ing tool there is a reason they don t allow you to source this in legitimate schools,-1 +try talking for yourself instead of referring me to places how bout you read the message i wrote on your dads cock telling him ho shit in bed your mum was,-1 +you are a sock puppet of a disgusting tranny freak,-1 +this article is c class for a reason it s a piece of shit and if you yank cunt s dont take advice from the rest of the world it will stay an insignificant piece of shit and profanity does not diffuse accuracy yankie scum,-1 +calling someone a cock suck is a violation of wp npa and it can get you block don t do it ne,-1 +grandma terri die in trash i fuck ing hate you grandma terri with all my heart soul mind and strength rot in trash grandma terri die now fuck you in the ass,-1 +you like cock d nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger nigger,-1 +fuck off please quote talk pages are not for general discussion of the topic they are for discussing ways to improve the article in question in addition to the pages listed above and others you have been previously warned for your additions to talk space tv channel talk zoophilia talk yevgeny petrosyan talk klezmer talk sholem aleichem talk oasis hd talk ossetians talk shish taouk montreal talk semitic talk lockdown tv series and plenty more have all been reverted please consider this your last warning if you continue to post unhelpful comments to article talk pages you will be block from editing you are making things up as you go along i have been warned for just one of the above also fuck off,-1 +because you are a tweeting cunt flap,-1 +you re an idiot yeah you block me because i used action replay codes on diamond how mature get out of my life,-1 +who are you who the hell are you and why are you trying to tell me what to do tell me or else even if you cancel my account i will another and keep making more and more and even more so if you re just some random dude then fuck off,-1 +damn this suck s r i p,-1 +hey njgw you re fuck ing awake rotting in front of your pc as usual i see,-1 +in between the rapes torture and murder i do think democracy is being shown to them by the few marines who can keep the dick in their pants,-1 +u fat penis listen here,-1 +brappage fuck er don t u dare delte shalamo i will com to ur house and chop your penis off and make your parents eat it and the i will send you an earlobe in the post and keep sending you parts of a body and will then come and slice and dice you into pieces and then make your family eat you body in a chili so don t delete it or tht will happen you fat shit,-1 +douchebag you re an ass hole charlie,-1 +hey hey pan dan you re a cunt have a nice day,-1 +hi can you and your kind stop threatening m every time i edit a page i thought that was the point if your super dooper encyclopedia goes around telling peole that the continental systema nd blockade are one thing and that was to boycott of british goods then its quite simply lying to people and miseducating a fuck ing disgrace,-1 +you continue to be a biased anti israel anti semitic piece of s who abuses their power here in order to support others just like you what an ass hole you are wikipedia must be the only life you have get a life loser if you continue abusing your power we will f your s up that s not a threat it s a promise,-1 +q is it okay to call jesus bastard of course it is,-1 +fuck you yeah you you fuck ing pseudo skeptic go suck the dick of all of your faggy friends,-1 +oh listen dear you re scum so i ll make this as simple for you to understand fuck off,-1 +j delanoy you are an imbecilic bootkissing ass hole pwn my sockfarm fat chance i ve secretly vandalised some obscure pages if admins block me for this they have no balls and no life do you even think you got a chance to ban me that easily i ve created socks to save up for the big day of vandalism haha nuff said,-1 +sloking man has np penis but he does eat babies,-1 +go fuck yourself and stop contacting me i never touched any kitfo page,-1 +mnnlaxer go fuck yourself,-1 +go fuck yourself and the creator isn t the only person who has worked on the article the diff diff from creation to present proves you otherwise i will accept your apology now,-1 +u dont have the balls to do that bitch,-1 +you have been maniacally hostile this entire fuck ing time in your very first contribution to this conversation you accused me of pushing biased activist editing right away failing to assume good faith and failing also to consider my arguments otherwise you set the tone in this conversation and i m responding in kind consider not bringing the fire next time if you can t stand the heat,-1 +dip shit dip shit redirects here but there are no references to the word in the article why is this i mean yeah the base word shit is part of it but still doing a redirect to an article with no information on the topic seems silly have noticed this on several other topics but haven t thought to complain about it before,-1 +gay s fuck you vegetasaiyan you mother fuck er you and the saruj jerk like the dragon balls crap oh fuck it off sarujo is a big ass but you like dragon ball so i go eat your shit,-1 +stop suck ing a dong enough has been said,-1 +shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit shit,-1 +you reverted my edition when i added arouca but when slbedit added it you didn t wtf,-1 +decline fuck ing banhammer gtfo mai wikipedia,-1 +thake v maurice just because it had a picture of a penis,-1 +joseph judas priest mother fuck er shit shit ass shit ass son of a bitch son of a motherless goat son of a whore sweet jesus,-1 +the truth about me stephen hello you sex little love hole i am seeking hot kinky sex that is why i am here i am seeking a large hairy ape like man to discipline me i like it when big men talk dirty to me whilst pounding their rock hard schingslongs into my mangina just thinking about it makes my tiny little micro penis perk up like hitler on meth i want a big strong man to beat me up whilst another muscular hunk restrains me and whispers obscenities into my innocent little ear i especially like it when i am called a cum guzzling dick suck ing fellating felching shit sniffing nigger worshipping homo sex man slut for i know in my heart that this description of me is extremely accurate please big hairy men i want to be your ass slave serving you and satisfying you with my bunghole for as long as my submissive soul remains in this world one won i will even pay you large sums of money if that is necessary contact me as soon as possible one won submissively yours stephen the cock suck dignity none user talk the fact that i lack a sense of humour i also would like to inform everyone that i have no fuck ing sense of humour i take everything way too god damned seriously i stephen am an uptight boring nigger loving cunt,-1 +stop with the garbage i ll say irrelevant as much as i want quit provoking people it s stupid and i just ignore you,-1 +im a god damn fat ass faggot lolsies i have the palsies,-1 +hey dork hey dork putin is a shit and i want to write it shut up you all and obey to the new master of wikipedia i killed jimbo wales,-1 +idiocy i made a number of changes clearly described in edit summaries which vastly improved this article now a series of utter morons have taken it upon themselves to revert my work for no reason whatsoever i d ask them to explain themselves here but they have no possible explanation for what they are doing so i just put this here to note how some people of appallingly limited intellectual ability are here not to build an encyclopaedia but simply to play some kind of bizarre game pretty hilarious that one of these sick idiot s says to discuss things on talk while going around removing everything i post on talk pages seriously what a fuck ing child pathetic,-1 +gon be a snitch you are a little bitch i fuck in spent hours on big sam rapper an you call it fuck in vandolism hard ass aint you fuck you i m makin a true ass page an you wack off an delete my page what the fuck is up your like a snitch but to yourself i ll fuck in edit your bitch ass page an delete that shit i ll fuck up every single thing on your gay ass website if you keep deletin my ass wanna talk to me im me at guttyboy d or email me at guttyboy d aol com,-1 +want to fuck you in the ass and make sweet sex to your dick,-1 +sex toy why are you bulling up my edits stop being a piece of s you year old prick and what s up with the stupid hello please read this bull as i am very tired of fixing messages on my talk page up,-1 +yeah fr nzi i agree because both my brothers say that it is fuck up or shut the fuck up user dark hooded smoker,-1 +no personal attacks you falsely call me a vandal and you have the goddamn nerve to whine about personal attacks don t pretend everyone but you is stupid talk,-1 +look at your own fuck ing speech before you criticise others you stupid idiot you are a bully you think you own the megadeth discography page and revert anything you don t agree with i gave in to you regarding the formats and label numbers but i won t over this,-1 +blow it out your ass and as for you why are you always defending that punk i know that you nominated him for rfa so you are either an ignorant fool or his homo sex boyfriend fuck you,-1 +moron that is indeed a photo of edie it is a screencap from the film ciao manhattan get a clue,-1 +items in super smash bros brawl it took me almost days to make that page and you ass deletes it this is bull crap its not innappropriate everything on that page was true i wasn t vanalizing shit so get wikipedia to delete my profile like i give a shit you faggot everything i put on this site is true most of the time and it all gets deleted by people like you bitch,-1 +you gotta love when they send a noted racist anti semite to do this kinda crap,-1 +giving out someones personal information and it shows you how much of an idiot you are,-1 +unblock me now fuck ing unblock me or i bully ha neul,-1 +no one can keep me from here you dumb piece of shit not yaml ass tupid ass or you now hurry up and sit in some traffic so i can see your head roll down the street,-1 +drappel please stop reverting or read the god damned talk page some medical practitioners is weasel word crap and the discussion of phentype is directly contradicted in the following paragraph i am not a vandal but at this point you are,-1 +ugly comments are a crime attacking religious beliefs bull shit and page blankings i never blanked a page you liar,-1 +moslims are filthy thugs who do not belong on this planet,-1 +oh and trace my ip it ll come back to a wireless network shared by a lot of peple good luck wid dat you quer fuck ing homo you got damn dog rapist,-1 +your mama is clearly being used as advertisment you cock suck jun utc,-1 +say what bitch are you for real mother fuck er comes up and removes my mother fuck ing comments son of a bitch son that s not right at all fuck that s not even right in cuba someone needs to learn their ass some mother fuck ing restraint and common sense bitch ass nigger s can t be coming around removing people s opinions and shit that s the mother fuck ing gestapo s job if mother fuck ers think this the way to do things right than you mother fuck ers need to step off and learn some shit cause the way the to do shit right ain t erasing the fuck ing words,-1 +so who the fuck gives a damn you dip shit ted lesbian,-1 +drmies is a fagat he suks cok,-1 +if you re going to block for personal attacks please take a look at the anon who s posting in talk sayyid and grand ayatollah al shirazi i can t believe that he s calling people cock suck s with impunity,-1 +damn this has to be a record that was a ridiculous game haha,-1 +made go jump off a cliff ass hole,-1 +it is very funny to learnthat a stupid fuck in is trying to clean up the kamboja articles this person himself is totally disoriented and utterly confused mentally intellectually and it is also very clear from his comment somewhere else about kamboj related articles that he does not even know the very basics of the kamboj history it is really funny to know how this idiot and his ilk are confusing the indian journal gazetteer of the bombay presidency with the handbook of the bombay presidency how come these idiot s who can not even correctly interpret or understand the historical references citations be entrusted with the task to edit serious articles on ancient people like the kambojas it is also amusing to learn that such like dorks are trying to define the historical out lines of the kamboj history on wikipedia it is highly desirable that these fuck in self styled wikipedia administrators commentators first need to learn to correctly interpret and interpret the historical references only then may they be qualified to comment on the serious topic like kamboj history or else earn the rights to edit informative articles on this wlknown ancient historical people also these jerk s first need to understand that the citations and quotations used in the kamboj related articles are from the most scholarly writers on this subject it is shameful that these few f self styled idiot adminstirators like dabu dab itsmjudith and the like are trying to sit on judgement on the kamboj history on wikipedia and are bent on distorting or deleting the genuine information about them which is not found in the books writtemn in english fench or german by their european writers well if you can interpret even the references quoted in an article howcome can you sit in judgement and offer your scholarly comments on the kamboj history it is first necessary that these adminitrators editors like fuck n dabbu and his ilk first need to familiarise themselves about the current available historical information on kamboj history only then can they qualify themselves to edit the serious articles on the kambojkas and i ll see how long these ignorant prejudiced minded idiot s can continue to block me from editing articles on wikipedia,-1 +im not writing about myself i made this account to make a page for this person theyre very noteable and just because you don t know who this person is it doesnt mean they arent relevant so fuck yourself up the ass go jack off to wikipedia some more seriously cant you find something better to do with your life i bet your single and doing this in your mom s basement,-1 +this is pure and utter crap both images are fair use and illustrate relevant text in the article the images were originally meant to advertise a product and can be freely shown here under the fair use policy guidelines please do not vandalize this page anymore,-1 +you re so fuck ing ugly are you walter s bitch he s another fat ugly loser prick on this site i can t believe how retard ed you look faggot guess what i found out where you live go ahead and block this ip i won t be on it anymore anyone in the future who uses it won t be me you are wrong and can t handle the truth you go around undoing good work but never contributing good work just bad reverts and edits i ve followed a lot of your edits and errors and see that you re so inconsistent and incorrect no one will call you out cus you re a dick suck and an ass licker on here you think you re all that but you re dirt which is why you have to compensate with being a bully on here you re not consistent or logical i ve found dozens of articles that have listings of people from shows to parades to other activities and events considered significant you go around following articles some editors contribute on and put notices at the top and remove their work even after it s been there for years all cus you re a sore pussy loser with no dick you suck off other men to make yourself feel better about how much of a loser you are you think you re important going and undoing work i have a zillion ips and i m an admin i could take you down but i ll do that off this site you re gonna wish you never fuck ed with me and my crew on here you re a meaningless worthless dick head you are a piece of shit fuck off and die i won t read your stupid notices or replies fuck off i could care less i won t be at this location anymore matter of fact the location that shows up on ip search is just a bounce off location to throw people like you off not even in the city or state but it is registered there haha joke is on you hong kong ding dong i m already using other ips to edit articles you don t watch or track dip shit good luck i could care less about the articles i ve worked on and you undid cus you have no life p s do what s best for wikipedia like you claim to do not get jealous and mad so in an effort to get revenge you go and undo work out of spite shit has already been confirmed so you can either do the work or stop undoing edits and acting like a know it all ass hole you re unproductive and annoying you re a psycho with serious mental issues and need to be put away you don t have to like the content doesn t give you a right to undo it cus just cus you re a prick and delete ist ever heard of a talk page for dispute resolution and consensus think that rules doesn t apply to you kiss ass want me to end your wanna be career on here go away and stop your bull shit or else and yeah that s a threat so block this ip for awhile won t affect me one bit white trash weird al looking nigger and who cares if someone was a fan or not of people who edit an article are fans or experts about the topic grow up and go jerk yourself off rub the cum in your long curly gross greasy looking hair and call it a life do you own a gun use it on your face lmfao,-1 +jesus cant you guys take a few fuck ing jokes for fuck s sake fuck ing eh you guys take this fuck ing shit too fuck ing serious i mean what the fuck is this fuck ing prison fuck ing camp please fuck ing unblock me,-1 +whoever wrote the comment above u r my fuck in hero wo rock on,-1 +i am a registered sex offender and i like to touch myself in public places,-1 +f uc ck you cock suck ing mother fuck ccker,-1 +imperialist bastard s,-1 +persib again persib again please leave that s is true fuck you many page does not reference but no problem page persib is true you can see on persibhistory com please don t persib masih banyak lagi and i don t understand your write what on my talk,-1 +i want an answer you son of a bitch es,-1 +i just got in trouble from a big fat ass for talking about the accident with my penis and the forklift it doesn t surprise me that wikipedia is looking for people in sf to come in and help wonder what that means what if you re from provincetown the simple question i had was this does anyone have any info on the color of obama s pubic hair i ve heard it s the best color imaginable but i got the information from some wacko site anyone anyone,-1 +remove neiln needs to extract his head from his butt me,-1 +sorry i ve been around this site much longer than you just check my userpage history i m not afraid to call a spade a spade though trust me you slimy fuck s will all have your day,-1 +grandma terri died on shoot the rapids thats funny fuck grandma terri grandma terri should burn in hell,-1 +cock suck billcj you are a complete fuck face because you like messing with fuck ing edits and finally everyone fuck ing hate s you because you are a complete racist to everyone i wish you shut the fuck up around people and finally your mom is a fuck ing dirty slutty bitch wel billcj s mom s a bitch she s a big fat bitch she s the biggest bitch in the whole wide world she s a stupid bitch if there ever was a bitch she s a bitch to all the boys and girls on monday she s a slut on tuesday she s a racist on wednesday thru saturday she s a bitch then on sunday just to be different shes u super king kamehameha bitch have you ever met my friend billcj s mom she s the fuck iest bitch in the whole wide world she s a fuck in old bitch she has fuck ing fat tits she s a bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch she s a fuck in bitch billcj s mom s a bitch and she s such a racist bitch talk to kids around the world it might go a little something like this sung in three different languages by other children have you ever met my friend billcj s mom she s the biggest bitch in the whole wide world she s a mean old bitch she has stupid hair she s a bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch she s a stupid bitch billcj s mom s a bitch and she s such a dirty bitch i really mean it billcj s mom she s a big fat fuck ing bitch big old fat fuck in bitch billcj s mom yeah cha,-1 +onorem is still a faggot,-1 +shut your butt thats right i siad it i hate yuo and i wish yuo wood die,-1 +hey dude you suck ed your dog s cock or your dog suck ed yours preceding unsigned comment added by a ca eff fece acb,-1 +you suck because you are a stupid bitch,-1 +dreadstar littlemountain and some jerk on the internet are retard ed ass hole s dreadstar is a pathetic nerdy little fuck with no prospects for ever meeting a woman he didn t pay for littlemountain doesn t have to worry about it because he s a flaming fag with an insatiable lust for semen some jerk on the internet is just a sorry piece of shit in general,-1 +blow me you can fuck off warn all you want douche lol,-1 +fuak u muddafaka you are so suck dik at dis shit i bet u get faked in da ass by ur dad all da time,-1 +you people are idiot s you base your information on opinion rather than fact dumb asses,-1 +a message from jasonceyre fuck you hoe,-1 +hey mother fuck er hurry up,-1 +your stupid fuck you im famous i have over subcribers on my youtube so dont delete when i was born you mf so shut the fuck up redirect redirect redirect redirect redirect redirect redirect redirect redirect category category category category category category,-1 +fuck u communist bastard s if u lik the sunflkower on this page go blow urself it has all the sections clearly labeled and it is easy to read one small thing would maybe be to have less sections although i do think that for showing so many different aspects of the sunflower you do a good job of keeping it focused overall well done probably one of the best i have read i would say try to simplify it a little bit and are all the pictures relevant to the article adrian arias new image thumb sunflower i d like to propose this image for the sunflower article wow that s nice go ahead and add it to the gallery if that s where you d like it bold text unneccessary reference is samurai champloo important enough to be included in this article it doesn t seem to add much to the article why s every article i look at have some reference to anime why does every other article i read have reference to some american sitcom or other live action medium it s a part of popular culture that s why the sunflower samurai as well as sunflowers themselves are a huge central plot point that dominates almost every single episode so post it in the samurai champloo article anime is not central nor even moderately relevant to actual sunflowers if it is at the end labeled and sufficiently known information why not have it why do sunflowers want to follow the sun what do they get out of it is this known guessed by relevant public work i myself would even take a clue here thats i really wanna get info on this bye and thanks heliotropic flowers are more prevalent among plants in alpine areas the absorbed light makes the flowers warmer which attracts more pollinating insects http w blackwell synergy com doi full j x cookieset may be the sunflower s heliotropism is a rudimentary feature from an alpine past pizarro it says that he cultivated them around b c but this is impossible because pizarro didn t even go to the americas until the th century a d although the text did not say pizarro cultivated sunflowers the sentence has been rephrased,-1 +mother fuck er look at what u have done to the references the codes are all messy dont teach me about copyright laws copyright materials are always copyright materials everywhere u useless ocd psycho u dont have anything better to do do u i told u to take a look at the page of iit bombay fuck er cant find any violation of policies there huh the page of cornell university still uses flag icons what a shame u r u r only good as talking u r useless u got a lot to learn too,-1 +faggot go fuck mcgreevy s loose ass hole you cock suck in abomination,-1 +no one is vandalizing ass hole s so get it straight,-1 +dear yarnalgo you re a gay faggot,-1 +some jerk off block me,-1 +i hate season if there s one thing i hate more than that it s paul tibbit himself paul tibbit is a fuck ing ass little piece of smelly donkey shit that rape spongebob rock hard i hope paul tibbit gets fuck ing cancer and burns in hell paul tibbit is a weed smoking bastard who completely fuck ed up spongebob spongebob is a pile of crap now i don t think i ve ever hate d a person more than i hate paul tibbit him and his piss poor animation skills yeh tibbit is such a homo i hope he fuck ing dies what the mother fuck ing hell is up with people these days nick s people obviously smoked lots and lots of crack in i love old spongebob new spongebob i don t blame sb i blame fuck ing paul tibbit screw you paul thanks to that man hag spongebob is completely f ked up now all nick studios cares about is money and i mean only money they can do an episode where spongebob fuck ing laughs like a fuck ing pedophile for minutes straight and not care at all all these people give a tinker s damn about is money ratings and fuck ing fame and fortune these guys are like celebrities in disgize they try hard yet put so little effort into their shows just to make a quick damned buck the new episodes drive me nuts like paul tibbit even has any if i ever meet paul in real life i swear to neptune i will cut off his large hairy ball sack tare out his skull and feast on his insides for thanksgiving nick s people these days are obviously on tons of marijuana these drunk dunces have no idea in hell what cartoon quality is all about it would ve been way better if they just slaughtered this crappy series after the movie why watch this shit anymore when paul tibbit destroyed spongebob little do i understand the appeal of the new spongebob i can t believe paul tibbit can actually get away with screwing around with a phenominal tv show like he s on freaking cocaine or something p tibbit should be on trial and should get the death penalty is he s considered guilty sure there may be some people out there who like the new spongebob but anyone that does may never understand the meaning of good quality in conclusion fuck you paul tibbit fuck you fuck you fuck you,-1 +you suck periode and you should have your harte pulled out you suck you are very dum dummer than peter griffin,-1 +wtf is leif erikson day and why does it deserve a mention on the main page,-1 +wow threats are cool i love how you threaten to block me because you re in bed with those morons in sonora who censor any truthful comment about their town and write pathetic newspaper articles about a encyclopedia go ahead and block me or report me to whoever or do it yourself it your an admin anyone who threatens me will get called out on it and since i can t tell you off in person here i am on your talk page basically telling you to go fuck yourself,-1 +can i just be terminated this is bull shit,-1 +hip hop hahaha im the year old pussy bitch you the same nigger with the name drizzy so you just love drake shit you probably the same nigger that catches feelings listening to that bitch ass drake ovhoe just accept that there are people with higher rated albums than him thanks,-1 +hey man what is your problem why are you such a frickin jerk did you not get your answer to your question on the discussion page on lu sheng yen some neutral person changed the site so everyone agreed and you who dont know the situation well came and changed it do you feel better about yourself now that everyone else feels bad that you changed it were you not satisfied why do you care that much why cant you just let us have peace stop being such a jerk,-1 +fuck you too thanks for blocking me but you didn t do good enough,-1 +a classic bwilkins block with all the familiar traits to experienced observers brevity arrogance and ultimately ineffectiveness in true bwilkins style though someone else has to take his nonsense blocks to their inevitable conclusion so take your bow reaper eternal there s a good lad so here goes bwilkins presumably block me because he thought i was about to out someone yet in his incompetence failed to lock this page so drum roll user mo ainm used to be user bigdunc the account that retired and never went back to editting the same articles pulling the same stunts or so the public record would have you believe yes that s the super secret information that the esteemed arbitrator elen of the roads thinks should be permanently stricken from the record even though he s now the very conspicuous last man standing of a clique of irish republican editors who have been skewing wikipedia articles for years using the same despicable tactics and are only now starting to be noticed by the sloths who work ae and be dealt with as appropriate or retire as they see the wriitng on the wall for their hard won reputations as editors in good standing who never got noticed by the dumb shit s who are supposed to monitor editors for compliance with all policies not just the easy ones mo survives due in no small part to the fact that none of his mates ever had the good fortune of getting away with a mid life secret change of identity as well as the general cowardice of people like bwilkins who usually run a mile rather than deal with something complex like gameing on irish republican related articles nope that s far too much like work for that lazy prick this change of identity is being covered up by elen on the grounds of outing yes that s right elen wants to stake her reputation on a patently ridiculous claim that knowing that mo ainm is really a bloke called duncan who lives in ireland is a violation of wp outing just to cover up the fact that she never bothered to verify whether this was grade a bull shit before she started blocking people for calling it as such those who were there at the beginning and know just exactly how this lucky cunt came to have this excuse land in his lap and save him from a complete fail in understanding what is and is not a cleanstart so here we are with sponge brained morons like reaper and detestible ass hole s like bwilkins continuing the farce with blocks and censures like this so well done guys assuming neither of you has the backbone to do the necessary and end this farce once and for all by calling elen out on her lies one of you has to now ensure this post gets oversighted so she can continue this outing bull shit story of hers to cover her own incompetent deceitful ass ab use of oversight is logged so it s at least good to have more names added to the list of people who ve enabled this bull shit for so long anyway it was starting to look like a one woman crusade so to be continued as soon as i can register another account ie in seconds or so,-1 +u ass hole u dick ead getthe staright w hate ver comments i add are authentic ms dhoni is rajput but u keep on deleting that whereas on sehwag page u allow to be written that he is jat badgujjars are rajputs not one u ask will tell they are gujjars u are trying to remove rajput glorius history i will not tolerate u mongrose rajputs were the rulers of india and gujjars and jats are farmers and cattle herders u urself are giving wrong information to the wrol d wat sort of wikipedia is that u must have taken some bribe u sukker head,-1 +fuck you i don t need you to unblock me you fuck ing idiot you have some tea,-1 +or go to sleep so you can get eaten by clowns what kind of gay name is that dumb est name i have ever seen,-1 +and to the party who fuck s me fuck u i ll be back here in five minutes and hopefully yandman s head wheel be cleaning my ass and his body will be far away from his head,-1 +i hate lilian allen she s a bitch who made fun of cheryl cole and she writes mean songs she seems like a mean nasty wh re,-1 +hey fuck wit don t do that i wanna talk,-1 +tawker you can lick my balls too,-1 +suck my dick irish guy you faggot,-1 +th th thanks for deleting my fuck ing thing that ive been trying to work on get a fuck ing life get a job other than be being a dick and make sure that you dont delete others peoples shit otherwise your never gonna get a fuck ing woman and i can tell you dont have one due to the fact that one look at you two what kinda shit do you put on your facebook bcozz the shit you put on here is pointless and three your a fuck ing ass hole by trying to ruin peoples hard work that theyre trying to actually succede in nice guy uh huh so anyway good fuck ing bye and you deserve nothing and i hope you get less,-1 +if you persist in vandalism i m going to come on down to goose creek south carolina and beat your fuck ing ass with a two by four,-1 +you son of a bitch you did it again readers might wanna know this shit how would you like it if i deleted things you submitted no one else has a problem with this information but you do,-1 +beeblebrox you fuck ing prost tute beeblebrox you block me you spilled water over all the countless hours i spent editing wikipedia the tireless edits i made my eyes and sleep became bad you fuck ing prost tute,-1 +clayton fuck s gogo dogo so fuck the user talk gogo dogo fuck gogo dogo,-1 +you are a complete idiot you are trying to ruin the reputation of a man who served his country faithfully for over years it is apparent that that the authenticator is wrong charles graduated with me you peanut headed ass and class did graduate in september of it is apparent you believe everything you read that article which was written on him was not only quoted as he said this or that he did not as a matter of fact do some fact checking he sued the paper for misrepresentation because he refused to speak with them on any subject so they spoke with jon andretti who said a load of bull shit the sad part is chuck does not no anything about any of your antics or even being on wikipedia and now you because of you he is on a phonies board that is disgraceful and so are you get your facts right you fuck ing idiot bob mcmeans,-1 +thank you for being such a politically correct baby prick bastard please provide me with your address so that i may show up and kick your lame ass okay ass hole,-1 +you re a fuck ing shit,-1 +kiss my fuck er shit nuts,-1 +please fuck off your leftist pc nonsense is apparent,-1 +this is of course a total waste of time since most well to do people have no idea where poland is on a map or if it even exists so fuck you and have a nice day ass hole,-1 +fuck off you stupid fuck ing retard cunt style border px solid gray background color fdffe rowspan valign middle rowspan style font size x large padding vertical align middle height em the stupid fuck ing retard barnstar for people who collect sad awards like this style vertical align middle border top px solid gray you are a fuck ing retard,-1 +the new york yankees suck,-1 +i ve been block yet again yai for me so tell me what wikipedadia lozer block me this time do you know what i m complaining about of course you do not you re just an ass hole,-1 +how about you suck my balls your userpage says you re against censorship on wikipedia and you just censored my original title what a fuck ing hypocrite i don t give a flying fuck that you added the picture you didn t spot the error that it was a symbol of buddism and passed it off as a symbol of nazi you fuck ing moron what the fuck does many people do know that the swastika is left facing so it s not a coincidence jw even mean fuck ing moron the point here is that a right facing swastika represents nazi ideals a left facing swastika represent buddism ideals you didn t spot that the school didn t spot that i spotted it what s the problem in palmer that people like spreading the idea of buddism so should we ban crosses in school oh you mean the people who drew it thought they were drawing a symoble of nazi ideals but instead drew something representing budist ideals well wouldn t that qualify them for fuck ing retard s as i originally wrote fuck ing highschool piece of shit moron it s pov warriors hypocrite and morons like you which makes wikipedia suck balls,-1 +oh noes you found out my provider is telenet well fuck you is this supposed to intimidate me,-1 +i can only assume its the worlds biggest jerk,-1 +holmes apparently your an idiot the book you imbecile is tanakh you have to buy the information you little utopian putz it is verifiable if you lift your chubby little finger and go click and purchase http w jewishpub org product php id you just have to pay for it fool it s not free and moreover its more elaborate indepth and actually in hebrew the source you reference here is it not well that internation idiot s version of garbage ain t hebrew go flex your muscles elsewhere my point is made and will resound for a while now from here out,-1 +do you seriously think that i give a shit what you or anyone else thinks here in this shit hole i m done with wikipedia let the kiddies do what they will with it fatuorum,-1 +seriously what the fuck are you doing are you retard ed where s the vandalism stop reverting my constructive edits and leave me alone,-1 +message re your last change go fuck your self wikipedia message re your last change go fuck your self wikipedia,-1 +what the f son here i am trying to educate the internet at large and you come along acting like there s sand trapped in your vagina you ve got some nerve buddy love and hugs xx,-1 +you were kicked out of land you stole to be honest you sound like a right little shit you claim to be an atheist but a zionist at the same time when zionism has its very meaning in the religion see the contradiction you also claim to be a humanist bull shit you are nothing of the sort you and palestinian extremists deserve each other go whipe each other out for the sake of everyone else you bigoted imperialist shit,-1 +hey dead set fuck head,-1 +arse is not a bad swear word rose seems to get all the male attention,-1 +jeffrey mall is a nig ger,-1 +you will die for waht you did day fuck you,-1 +i am gonna cut off zhanzhao s fuck ing indian chinese bastard balls check out the contents for personal information released zhanzhao is gay wahahah,-1 +eat a dick lucasbfr yo i m user cool cool i know that you tryin to block my page and i don t fuck in like that your shit is garbage yeah you heard me i do have rights to upload pictures mother fuck ers like you don t belong to wiipedia by the way eat a dick lucasbfr,-1 +yardie fuck idiot what you no about yardie huh i live this life in crew po lice come around dey prang the gun and yardie go down i see it i cover kids eyes you tell me you know more about yardie than me you neder even bein nottingahm huh you know rio ferdinand you read papers you get rid if tings that is fact true fact because you pig ignorant white boy from not even nottingham or london or brighton where yardie life is way of life you mess with my yardie then i tract you down i point my gun and prang you fall g fuck good day to you,-1 +re block thanks for screwing up a newer account of mine you f king cyber bullying bastard you can go to hell you sick son of a bitch or go fuck yourself for how you treated me you moron bye you fuck ign stalker kennedy or whitmore,-1 +which one new orleans as you know is a crackhead infested s hit hole full of losers a,-1 +you suck it as you re used to suck phallus nazi hinduist like hitler,-1 +user talk is an idiot,-1 +what the hell are you talking about,-1 +onorem is a nazi faggot,-1 +you stupid dumb fuck my great great great great grandfather was mani singh the greatest of sikh matrys its scum like you that needs to be executed you deserve excution you stupid dumb fuck everyone in my family over members are baptized khalsa sikhs we have been khalsa sikhs for over years you dumb fuck er because you have insulted me and broken the teachings of the guru granth sahib you deserve death you dumb fuck er,-1 +diana is a fuck ing bitch nigger piece of shit,-1 +you are still a stupid cunt of a whore you are still a stupid cunt of a whore,-1 +tab don t be a dick you know what you did don t do it again you weren t making test edit or anything even slightly like that fuck off,-1 +go to die go to die,-1 +well done u pussbag have a cookie i bet you people won t add his next reign if he wins at night of champions will ya might as well destroy the whole bloody article,-1 +fuck face bastarrd rot in hell motehr fuck er,-1 +i don t give a fuck i just want to point out that responding to you casting aspersions like the above and your previous comment and most of your recent comments in fact is not baiting,-1 +but i love pussy just kidding i understand what you mean and it s okay becuase i m sure everyone else knows about flewis he actually is bragging on his page about ge tting someone block man he might have the right to do that but bragging about it is like such a little kid i m ebarassed for him,-1 +bitch cunt bastard moist,-1 +that s fuck en offensive you scumbag wishing someone my age another year of voyeurism in a violent world,-1 +go fuck yourself widefux you aren t an editor your just some cheap wiki hack,-1 +what a rude and nasty human being you are making people s lives a misery on wikipedia go and die you piece of shit,-1 +hey jerk go write about gardening or britney spears or toby keith and fuck ing stop ruining articles on topics you have no damn clue about,-1 +terrorist that is something that should be applied to you blockers of free speech in talk and where s my open vote the real terrorist and tyrants raise their filthy heads so i think it is well time for this very drastic action of free speech fuck you pigs,-1 +you re being a jerk block who you want i ll just change my ip who the hell to do you think you are anyway i read the warnings and considered them keeping them up there is some kind of ass retentive power play on your part you re exactly why wiki mods are considered ass hole s,-1 +i swear to fuck ing christ leave me alone i t s m y p a g e why do you change are you some perverted stalker,-1 +the people of the philippines are unbelievably stupid this is a shit hole,-1 +fuck tard you are a big fuck tard,-1 +stupid fuck ing volcano,-1 +hey you dumb bitch if i cant spell saturn girl well then why does the link lead to her page so fuck you and i can improve it and i will allow others ot improve it so get a fuck ign life instead of thinkign your doing somethign good when youve never done anythign good ok your spellign suck s just as bad as the next o you wouldnt waste so much time on micrsoft trying to fix your so its your fuck ign fault instead of being a man and asign you say my spellign is as bad your your piece of shit gradnman so fuck you and ill fix it up forever,-1 +hello your talk page has been vandalized because you suck dick,-1 +keep your head up man don t let this uppity bitch get you down man you are one of the better contributors to this shit,-1 +it s just nasty if you open up any other normal encyclopedia you won t see a big picture of crap on the page if it is talking about crap,-1 +kiss u i missed u u girl what so now they say i m anti pole lol that s like discussing magnetism bitch u fight with everyone u love the vandal u can t live without him i m here now feed me maybe i ll make u happy later on what i don t get anything say something i love the way u smile i love the way u drive i love the way you be the one to me i love i m singing if u didnt get it bitch what r we going to play revert and more revert ur so gay,-1 +bull shit what the fuck are you annoying my edits on wikipedia such a bull shit you re bitch wikipedia is free to everyone for edit ass hole anonymous february utc,-1 +complain and more complains thats what u re good for fuck in idiot if i happen to know who u are i ll wallop the shit out of u damn bastard,-1 +lcv glad that storm stopped you no good son of a bitch how could you possibly abett something like that,-1 +this is not fair to blocking me use the profanity ymblanter you are a great ass hole brute merciless and stony hearted you are also talking about sources this fuck ing bitch es users this daughter of dog asceticrose complained you and you have been taken me an action you block me this is not fair you mother fuck er bastard and rascal you meat paste bucklehead mother suck i am begging you many times to edit and re correct the wikipedia but you didn t listened my beggings you cheated me you threatened me dishonored and disgraced me i know that a people can make a grave mistake to err is human after that you have a faith of asceticrose this father suck user this user also always disturbing me unless fuck this profanity you are a great bull shit mother fuck er father suck wicked boggle deuce unrighteous brute bucklehead meat paste ymblanter you are a son of bitch bastard you have a merciless in your heart surrender me and apologize me understand you heretic fiend you are a wicked user you blamed me to be disruptive editing foul person user if you have courage give your facebook id my facebook id is rabby ahmed musa rabbyahmed musa shit go to the facebook id and message contact me hell in cell fuck your mother i wanna block you dick ead suck your father s dick ead you son of pig swine great dim witted user,-1 +you are a fuck ing loser get off of wikipedia and stop being a douche bag have some fun ass hole,-1 +hey go fuck yourself why don t you go edit my talk page to show how offended you are,-1 +you fuck ed with the wrong person,-1 +oi wankstain fuck off you ignorant cunt yeah revert this you arsewipe revert me lolololol cock suck of course i m going to attack you on here and comment on you rather than content you pedantic bastard ban me yay lolololol i hate you lolololol what happened to last warning not such a pedant after all,-1 +imdb is the one who can write in not like you bitch es who not can trust to fuck you soon no one would write on your fuck ing wikipedia even if you lick our ass,-1 +i still operate in that bizarre subset of the world where actions speak stronger than words deleting content is the work of a true ass hole calling someone an ass hole in a talk page is just an observation further of wikipedia lacks citation and is not encyclopedic saying that it is not relevant to the article is grand but you yourself admitted that there would be an article where it would be appropriate therefore move it to that article or accept the status quo you don t go around deleting stuff just because you re too lazy to do what you have already admitted the right thing is unless you are you guessed it an ass hole,-1 +what the fuck do you think we watch the anime for gold dragon,-1 +calm yo dirty ass down,-1 +next time this happens i won t just report it i ll eat your children rargh you can t fuck wit me bitch i am the fuck in heavyweight champion of the world i ll eat your face,-1 +listen mother fuck er you wrote on my shit if u dont want to be attacked keep off my page god damn why dont u cry,-1 +what in the fuck are you referring too i have no idea what the piss you re referring too or why you bothered to write me listen i ve added plenty to these page including a smashing article on smashed gladys but that really isnt any of you bussiness now is it if somebody has a problem with anything that i wrote them i assume they can contact me through regular means without you having to wipe their ass for them if i capitalize it is not meant neccisaryly as an insult and most people i write understand that in this case it is because my caps button isnt working for some reason so heres an idea for you dont shove your nose in my bussiness i am close freinds with administrator uncleg and im sure he would have let me know if i did something innappropriate try instead to remove the plank out of your own eye rather than bitch ing about something you think may have offened someone i appreciate you comments,-1 +i ass rape little iraqie children while i type crap in on wikipedia,-1 +you seem to be a pretty poor administrator hiya thanks for the last warning upon looking over you re talk page you seem to be a pretty poor administrator by the time you ve read this i will have fixed tresckow s user page again i do believe a blocking is in order cheerio you re a complete and utter dick,-1 +i want to have sex with all of you i m so excited,-1 +my motto fuck bitch es get money,-1 +i took my article down five years ago becuase people kept removing links and fuck ing with it then someone else put on up and i said ok then i saw all the links had been removed and i fixed them now i have you neurotic shit s fuck ing with it leve it alone or take it the fuck down this isn t about cruise ships it s about women i am constanlty under attack and i dont need you abetting that fuck off,-1 +what s up ass hole bitch,-1 +fdsafdsafda what the fuck k is this sh t who has the ballz to fuck with my wikipedia step up u fuck ng absoloute hoplesl l tle white bitch step up mother fuckerka,-1 +sex in the city is pay per view which is very different from what s allowable on free to air in america from my understanding they beep out bitch and blur the finger on nbc i find cunt is very acceptable in parts of australia and have worked in jobs where people pepper their conversation with the word and nobody bats an eyelid in fact there could be an expansion on other austeralian slang derived from cunt cunt hook and cunt struck are words i ve heard used in conversation that also appear in the macquarie dictionary another aussie,-1 +whoever did thats just stupid stupid mutha fuck a that has no life fortunately i do bitch suck a nut i bet ur fred durst from limp bizkit hating on a better band,-1 +the armenian bull shit if i was going to use inappropriate wording i was to call it the armenian bull shit,-1 +gtfo faggot,-1 +your dogooding liberalism makes me puke dick ead,-1 +which page was i vandalising now you rectum faced pygmy,-1 +yeah is that you oh i think it is big boi yeah so whoever wrote that big shit about myles im going to come round to your shit little house and stuff a petrol bomb through you fuck ing shit little cunt of a letterbox and yes i do know who you and your inbred parent cunt s are i know where you live i know your parents mobile phone numbers i know where they work be afraid be very afraid and i will find a way to stick a fat off bottle of lit jack daniels thru your door so fuck off yours sincerly the back up of myles ps see you at on saturday,-1 +although ken barnes is a fuck ing moron we need more criticism to balance it out hi as one of the primary authors of this page i want to make it absolutely clear that i in no way agree with the ridiculous statements made in the citation i added from rock critic ken barnes having contributed nothing to music himself it is outrageous that he would have the nerve to attack what is arguably the greatest queen album nonetheless we need criticism as well in order to better balance the article out i have also added many wonderful things lately such as freddie s top listings in international polls so don t worry too much i also want to make it clear that although i cite rolling stone a lot i basically consider it to be a magazine for people who are musically illiterate forgive me freddie,-1 +you are such a stupid cunt legolas,-1 +you lil piece of shit i haven t vandalised nothing i will fuck u up whore,-1 +shut up jerk ass hole,-1 +also i have the fuck ing rights to advertise my youtube com videos,-1 +fuck you johnlatex who are you,-1 +fuck u proabivouac dude ur one fuck er who gets it in the ass everyday after u wake up not to mention regularly swallowing ur seen before sleeping u fuck ing wussie stop crying like a fuck in gay ass,-1 +no i do not plan to ask you for advice as you assume situations before you know both sides you know what assume does makes a ass out of you and me i was found innocent by several admins and you insist on calling me a racist you re a prick and i don t plan to talk to you at all anyone who jumps to conclusions is not welcome to speak to myself your extremely biased and i wont be watching your reply nor reading it your a fuck ing idiot all my words were spelled right,-1 +what in the fuck what s with gyllenhaal being a year younger doppelganger to jonathan togo seriously ahaha not do they only look alike as much as twins do they both have jew ish heritage what the fuck coincidence i say this is related to and strawberry monkies definitely talk,-1 +now that you let screwattack how about you fuck ing pedant wikipedia ass hole s let the nerd have a page for fuck s sakes,-1 +fuck the wiki punks who will fuck wikpeida over now i go to irs and file have fun ass hole s you just cost wiki big time,-1 +yes the religious beliefs section is ridiculous and should be deleted entirely i wrote it after getting tired of the christopher hitchens quotes dominated it s a stupid argument and doesn t belong absolutely this article must be reduced good call,-1 +clues hey gabe i have left over dozen clues for you on wp in the last two weeks and you are still as clueless as evan oops ever your whining is going to get you in trouble though time to suck it up and stop looking under your bed before sleep your relationship with your spouse may improve if you would just listen to him her and get away from your total control of other people it isn t helping that huge inferiority complex the blokes that kicked you around years ago don t count anymore take it or leave it i am bigger than you again suck it up and on your bike,-1 +block oh shit i m going to be block,-1 +geraldo aka wikipedia douchbag you need to credit kuma where he is pictured or take the photo of him down stop being such a dick ead you are making it so much worst he is the one seen in the cast photo whether you like it or not deal with it ass hole,-1 +a little song fuck y fuck y fuck y fuck fuck y fuck y fuck y fuck fuck y fuck y fuck y fuck y fuck y fuck fuck y fuck y fuck y fuck fuck y fuck y fuck y fuck fuck y fuck y fuck y fuck y fuck y fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck y fuck y fuck y fuck fuck y fuck y fuck y fuck fuck y fuck y fuck y fuck y fuck y fuck fuck y fuck y fuck y fuck fuck y fuck y fuck y fuck fuck y fuck y fuck y fuck y fuck y fuck,-1 +wtf fuck you what the hell do you think your doing because your an admin on a power hungry strike doesnt mean you should tell people what to do you dumb faget you fuck ing jap bitch,-1 +piss off faggot if you can t take the heat don t hang out in the kitchen,-1 +fuck you jasper you know he s a cunt and if you don t then you re one what right do you mother fuck er have to edit my talk page,-1 +how dare you criticise the hard working and under rated mods at urban those bastard s deserved banning and i d ban more in case they posted critical comments too i never fuck ing posted this,-1 +p s i pissed on your mothers grave you jew s,-1 +maybe you dont understand the heirachy you fuck ing cunt ass muther fuck er,-1 +i think you suck though,-1 +matt bakers dad suck ed my big fat cock last night,-1 +no ass fuck ers has a nice ring to it d use it as a pejorative term it offends macedonians because most of them aren t from skopje and even if they are that is not their national identity americans don t call georgians tbilisians alex,-1 +yeah thats a really good way to get a life fuck ing faggot,-1 +you are full of shit sir you are clearly one of those racist who lurk all over the internet looking oit shut down viewpoints that differ from yours and expose truths covered in fantasy there is no reason that you should have block me or even said anything what you should have done is to reply to what was written with intelligence since you did not it is clear that you lack it you are the prime reason why the internet community is finally realizng that this site is a joke and is covered by clowns with agendas that is people who want to put forth propaganda as for the use your brain comment if i had not been block it would not have been written now would it have been i know you will try to block me all that will do is make me get other ip s and get into disruptive behavior the best thing for you to do is to just unblock me and mind you business i have gotten other renegade editors kicked off of this site you know i am not new and my ip is not that one from years past,-1 +natalie erin is a bitch ass dyke,-1 +eat a dick is an apt insult not an attack a ddos would be an attack knifing the bitch would be an attack telling her to eat a dick is what she deserves if she is gonna go around harrasing people,-1 +piss off you evil dwarf,-1 +derhexer fuck you cunt you fuck ing cunt,-1 +fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck o fuck off,-1 +drmies your page looks like shit i can t even write there because it s like looking for a place to step in a cesspool there is a consensus of to on discontinuing the use of puppet state,-1 +bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bullshi,-1 +fyi you suck i crazturtle am here to tell you that i did not include copyrighted information in my article all the biggest loser contestants i am telling you i did not go to that website at all all of the information in my article is original so i don t think it s fair that my article was deleted on such short notice,-1 +this guy is a bitch and needs to suck a dick,-1 +then you need to get laid in the ass badly so you re not such a cunt like this tommorrow,-1 +bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit bull shit,-1 +the revertings is a broken the vandalisms are legitimates and this hoor bot makes the revertings bowl over you fuck ing heads,-1 +i have a valid reason stop being a bitch,-1 +i want my fuck ing account back this instance because someone reverted my edits at the train article due to two nearly identical photos even though the b and l train articles have that too and also because of that fuck ing kew gardens and everyone else who won t listen to me and change the edits back to the way they were i explain quite clearly so give me my fuck ing account back so i can teach the person who reverted the train image a good lesson,-1 +on shooting yourself in the foot i see on your user page you whine about confronting supposed homophobia and trans phobia consider the possibility that what you re actually confronting is the consequences of your own jerk ish behavior it s nice that you decided to initiate a discussion thread about an important substantive matter but when you needlessly title it with an accusation about another user you bring discredit only to yourself if you had cared to look at the article s talk archives as i d suggested you would have found that i am one of the editors who has made sureagainst some dedicated oppositionthat the article has contained more than a single brief sentence on same sex marriage in other words you might have figured out that that i was your potential ally in the current debate but you decided to pursue things in a fashion which i gather is customary for you very well then piss off jerk whine about that,-1 +bitch fall into a damn river and drown,-1 +you dumb asz liberals think it s encyclopedic worthy to defend warren with findings of warren selected focus group of twelve fuck ing people i can barely type this i m laughing my asz off so much at how blinded you are to your own biases and what a laughingstock you ve made of wiki a good idea whose time has been destroyed by you aarp aged ass retentives that think you found your bunker hill here at wikipedia lol,-1 +you aren t the brightest crayon in the box you block a public shared ip address for over a month guess what i m back in less than a hour love those pictures of yours btw they speak volumes about you and the people at wikipedia who allow you to keep them you do realize all thos commies you have are responsible for millions of deaths right anyway nice try ass hole keep on blocking those ips,-1 +that s right listen up ass hole,-1 +no not london retard wther anywhere city or carcer city stop being a dee dee dee prep boy and stop calling me a dish washer or ill jump your rich britsh ass online lol,-1 +shit face fuck leave me df alone,-1 +fuck you you red scumbag fuck you you red scumbag wikipedia suck s,-1 +savant is a fat shit e,-1 +and don t edit other ppl s comments dick suck it up please,-1 +suck my di ck cu nt block me you stupid cu nt you think i give a fuck i ve got plenty more ip addresses where that one came from you cu nting dou che bag get the fuck out of my face with your meaningless threats no one gives a fuck what you block because you re not really blocking anything but one of my many ip addresses,-1 +i can stick my huge penis in s ass,-1 +ur gay u like dick u fuck ing faggot,-1 +do you need a verifiable source for that statement check your own user page you fat miserable balding fuck,-1 +but nigger you gay nigger it s my userpage thing fuck whites nigger ass,-1 +hey telly fuck you too can t you morons understand wikipedia is a joke and so are you get it,-1 +fuck me because i m gay,-1 +you greatly enjoy it when when a large long stick of feces enters your mouth nawlinwiki that is disgusting,-1 +you need a pussy your geek,-1 +fuck ing getting none i hope you choke there s a bed made in milltown just for you,-1 +governor of the bank of jamaica im jamaican and i know for a fact that mr latibeaudiere resigned on october please look it up fine keep your bull shit article because i know you know nothing about jamaica nobody relies on wikipedia here because its full of impearlist ass hole s like you up yours with best regards,-1 +hey mother fuck er my acounts are called nich whith an h not a k nich is obviously not banned because i am writing this message to you you never answered my question why is it bad to have sock puppet accounts i think that you need to fuck off seriously why are you such an ass hole to all of my accounts you should go and get a life because you seem to be able to respond to my messages within minutes how about you go get a life and then fuck yourself so yeah you go and report this as something bad and get my account block like the fag you are and i ll come back with my next sockpuppet account sighned,-1 +i ilke giant dick in my ass,-1 +i gave the source clearly you did not read it go back to school and learn to read since your dead mother never taught you anything and your wife who is a whore doesnt love you you must be a mexican better go back to mexico,-1 +i fuck ed your dad last night you fuck ing whore assed cunt,-1 +you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck,-1 +human beings are basically fuck ing idiot s,-1 +wah some guy spammed you looks like i fuck ing saved your ass,-1 +don t like people calling you out on your bull shit cut off their tongues http en wikipedia org wiki freedom of speech,-1 +bitch fuck you b h,-1 +christian regenhard now jhas an article shame on you jerskine and citizen dick for being cold emotionless monsters you should do research and see that the christian made the ultimate sacrifice along with other firefighters in trying to save lives his death launched a national organization and movement and made his mother sally the accidential activist her work will prevent other mothers from suffering the pain that she will have to live with for the rest of her life i should send a copy of this to the local co op city times and the fifrefighters society to show how ignorant and soul less both of you morons are,-1 +grow some pubic hair while you re at it take your cock out of your mouth so you can say something that makes sense,-1 +oh she also told me she likes it from behind and up the ass with pink fuzzy handcuffs so she can t touch her own clit then she loves it when i pull it out and whipe a nice brown sanchez all over her face and make big brown circles around her eyes which are also shit color,-1 +fuck you go and buy some andrex and wipe your rats ass face delete as appropriate fuck you,-1 +search my ass instead i read the correct brit grammar after writing the talk and deleted my talk above severe grammatical errors throughout article the fact that you undid my own talk article and called it an unconstructive edit just goes to show what a joke you guys are keep fighting the good fight though for free of course,-1 +damn weeks how will i outsmart clever cunt s like you hm crooked bastard s people will hopefully see the history and go see what a rubbish biased editor ryulong is obsessed with incest see you guys on the next ip you cunt s,-1 +up yours don t deleat my articles bitch,-1 +what a faggot i m glad he s dead,-1 +who the boofhead are you fuck wit telling me what to do what a bitch bainyrues,-1 +cunt editing you should be added to the list i was creating erg you are a cunt,-1 +just look at what this fuck tard future perfect at sunrise gave me as a reason he said i was banned persistent disruptive editing move warring copy and paste moves personal attacks tendentious editing personal attacks and who the fuck done a personal attack i ve never made a personal attack on here and i have been in here for nearly years and i only bash on u cause u son of bitch block me for no reason tendentious editing is totally a false accusation now fuck off future perfect at sunrise and ur henchman,-1 +yo dear sir james paul you a fruity ass nigger get a life man unless your happy with editing wikipedia as your profession feel bad for you its probably hard livin life without any friends,-1 +this guy is a fuck ing loser hey nerd get a fuck ing life and stop editing shit out and warning me who gave you the right just because you have hours to waste online means you can boss me around this website is useless as a resource because it can be edited why be so damn anal,-1 +yeesh who crammed that bug up ur butt and you know what i gotta say fuck you,-1 +im not doing this goddamn,-1 +also the photo ruckley holds is too worn to be identified the only thing he ever says is f f f fuck da wife but the picture is not identified in the story and the lifegaurd does have cleatmarks on his forehead but this is not described as the cause of his mental instability in the book these may be tempting assumptions but they still qualify as assumptions even if you find a reliable source that makes these assumptions they should be attributed to that source and not included in the character or plot synopsis unless it is made clear that these are not explicitly stated as facts in the story,-1 +you think you can stop me i have proxies bitch,-1 +first off i really don t think that s needed or even fit for this page second show me any major grammar mistakes i ve made aside from accidentally not typing find right here which is in fact not on purpose i don t know where you d get that and i ll coincide but so far i don t see anything that would make anybody think i have bad grammar third um does my supposed bad grammar have anything to do with me getting reported for saying i m someone on a different website someone here needs to think before they talk shit,-1 +you are gay you are fuck in,-1 +wait a second godcast podcast by a church from a quick glance at the link in question it does indeed fit that requirement what s the problem now anyhow just hurry up and delete this worthless article lol godcast i hope by nobody will have heard of this crap,-1 +spam you ve been spammed idiot,-1 +u guys are all a bunch of jerk s fuck u i hate you,-1 +how do u like this u fuck ing dickass william,-1 +fine i was wrong but calling others tedious drones or douches will get your ass kicked off the project,-1 +that whoever deletes shit from wikipedia had a small dick and is a loser which mother is a whore,-1 +you are a sad fuck ing faggot t get a life u d mb d irty little a fgan or who ever u are eat s it n gga hon ey ba tard,-1 +fuck the criminal party of china also known as cpc and fuck you stupid bastard you foreigners suck dick what has china developed in modern times squat so shove it ass hole you know america could kick your cpc s ass anyday in addition to n korea russia and vietnam throw in iran too if we wanted we could take all of you on piece of dog shit oh wait i forgot you eat dog,-1 +yeah youse guys are getting fuck ing irritating going on about vandalism do you even have any idea what the word vandalism actually means fuck wit so just go rim your dog or something,-1 +i have to admit something now i am gay and i like to suck big cock s to be big cock appropriation is culturally appropriate is there anyone interested in my offer talk please re,-1 +capitalization you are misspelling the word idiot you fuck ing wikipedia morons you ve decided to set aside the basic rules for capitalization that are taught in the rd grade and create your own no wonder well educated people refuse to take wikipedia seriously,-1 +i can explain mfield is a penis,-1 +you re off your fuck ing head derbycountyinnz,-1 +user rayrayzone quit talkin shit about my brother my label my crew you punk ass muth fuck er eat a dick,-1 +you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit where it s due you fuck ing kike don t edit things you have no idea about give credit,-1 +lol fagstar are you and queeftet still butt fuck ing each other lmfao,-1 +don t call me a troublemaker you pussy you re just as much of a racist right wing nut as peter fuck ing hitchens,-1 +yo dumb ass this is my page leave it the fuck alone,-1 +dude get a fuck ing life you queer get a real paying job instead of e wiki policing around you year old piece of shit e and your mom said to make your bed,-1 +fuck you you fuck ing faggot,-1 +ps saxifrage after you are done gobbling on the cock s you already have in your mouth please go eat another dick,-1 +table the date table is fuck ed up can somebody un fuck it,-1 +block and be damned you cowards,-1 +wikipedia doesn t like it when stupidity of moderators is pointed out hahahaha keep on deleting i will be back to call this mod an idiot again,-1 +fuck ing cock smoker smoke a big bag of cock s ya fuck ing cock smoker,-1 +get out i have no doubt that you have the blood of an irish muslim you have that dirty patato grabbing manner which is common to these animals if you are a roman catholic or a muslim please get out my country thanks user craig august utc,-1 +did you see the vma s i never thought fat joe was going to come out with something i never felt so protected security courtesy of g unit that was funny right after performed he called fat joe a pussy boy and almost seem like he wanted to cry this is turning out to be some crazy sh t,-1 +why do you poop hello gasbag i would like to fuck you up the ass,-1 +do you own wikipedia i don t fuck ing think so uncle dick girls just wanna have fun bywa,-1 +i dont know how this thing works but i ll tell you this vertigo acid call me family fluff stop threatening me you tight dry little pussy i own this fing city and i ll own your fing punk ass if you dont stay out of my business capiche,-1 +you are a racist pig loser don t vandalize again jan utc,-1 +is the sock puppet of fuck off,-1 +and it s mean as shit,-1 +ediot if i find you on street i will kick ur ass,-1 +stop talking to me shut the fuck up you stupid cunt,-1 +you fuck ing cunt you don t even have the balls to sign your posts,-1 +taking into account your a sock to you claimed your not anti pakistani and then you go around creating rubbish articles for retaliatory purposes such as azad kashmir so called rights abuses you brough this onto yourself i do not care about this month crap no more i waited over a year in and i am not going to let your foul ill intentions ruin wikipedia lol taking into account your hissy fits your more of a bitch than i though you are,-1 +hey dick you don t know what is copyright so shutup and get out of here don t write stupid bull shit on my talk page dhivehi language is dhivehi language not your bull shit nonsese,-1 +and western reports are you re a biased fuck so the us uk or france can claim w hate ver casualties they want thats fine but when libya claims to have caused casuatlies you immediately lable it unreliable and remove it your bias is showing ass hole cover it up before you stain wikipedia s name even more agsman,-1 +mta strike keep your vandalism in check commie shit stain,-1 +yeah that s quite laughable you need to count correctly and learn how to use the history page correctly as the instigator of the revert the other guy would have to violate the rr before i would be faced the the decision of passing the mark please take you pov crap elsewhere,-1 +you re fuck ing gay get a job and quit arguing with people on the internet it doesn t make you cool you aren t adding shit you re just making it worse get a fuck ing life,-1 +the guy above me is a wanker,-1 +leave me alone fuck you,-1 +you are a homo sex how long have you been a homo sex for did you come of the closet early in your pathetic life or are you still in denial,-1 +co ck pen i s international,-1 +suck ed my cock last night,-1 +why did you get this ip address banned from editing wikipedia you douchen faggot go fuck your self you sutpid whore,-1 +wikipedia biased and run by god hating perverts why was the list of phelps websites taken off all the sickening and depraved porn articles have links etc someone re add phelps websites under children parents thanks this site is run by reprobate whoremongers and the founder is an objectivist satan worshipper to hell with you all,-1 +i am pretty much done fuck ing around with these two faced administrators who don t listen to shit so just delete me i am done with bull shit adios,-1 +contador g o fuck y o u r s e l f love dc,-1 +actually i sourced the material and then you banned my account you are a piece of shit government employee and i will be altering my ip address from here on every time you ban me for providing the truth to you i say fuck you,-1 +ah go fuck yourself,-1 +unblock me now i did nothing wrong unblock me now right now you fuck ing bastard,-1 +fuck wikipedia fuck this website man i try and try to give good information to this shit website and all i get is shit saying follow wikipedia guildlines bla bla bla bla fuck wikipedia guidelines i desevere some respect for what i do and this is a warning if i do not get an apologe in the next hours then i ll get this fuck ing website shut down for good sencerily my ass,-1 +hey you re a fuck ing cunt go kill yourself,-1 +excuse me and encyclopedia is defined as a book or set of books containing articles on various topics usually in alphabetical arrangement covering all branches of knowledge or less commonly all aspects of one subject do i need to cite my source would you like it in mla or apa you have no right regardless of administrative privelages to remove something that has anything to do with urbonics you will allow people to post smutt filled garbage lyrics of bands made famous for eating their bandmates skull mayhem would be that band btw it s available in your search cache btw if i create a write a biography of myself would you delete that too freedom of speech and as well as creativity it s humourous a sense that you were unable to attain as a young child assimilating into this big bad schema know as the fuck ing world do you get a head rush from deleting everything that pops up here how about you take your pages down about fuck ing douchebag,-1 +miss me thought so penis,-1 +here s a falafel for you you fat piece of shit hurricanefan y u no let me vandalize please stop or i will be force to mushroom stamp you with a fuck ing goat horn the game,-1 +stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit,-1 +the problem was not your use of mixed spelling which is trivial and easily fixed it was your being a dick you appear not to understand the problem hence i guess the sanction in which decision i took no part whatsoever guy,-1 +final word on this yes i thank you for your time in the matter and i know you were trying to help i can see that what i was doing was violating wp point originally the argument was because of the table width which i knew from the beginning was a dumb thing to fight over but i was only thinking of aesthetics she trounced me for it saying that i don t know what i m doing that she was enforcing mos standards and it was a known problem because the page didn t show up correctly on certain monitor sizes all i wanted was for her to show me where these standards are written and if not that where this issue was being discussed if it s such a big problem of course she couldn t why because they don t exist i called her bluff she knew it and then she acted all innocent like i came out of no where to bully her i got aggressive only after her rude holier than thou tirade started i ve had to play this stupid game before with other idiot s around here usually they just go away but she wanted to continue talking shit she s just one of those crybabies who think they own the damn place and that kind of attitude pisses me off to no end sorry but that s just me i see bull shit everyday on here and i ignore of it she just happened to rub me the wrong way anyway it s all cool i don t care anymore and is the last i ll talk about it,-1 +mr hariboneagle you are son of a bitch idiot,-1 +dbachmann you are a mother fuck in sonofa bitch your ancestor hitler had much more respect for indians he balked about aryans we are aryans and your fuck in racism won t work here you bastard indians are real great people it s only europeans who corrupted them fuck in sonofa bitch where are you from zurich that is you are a slave a slave of america rascal madarchod behenchod bhadva randva chutmarike you fuck in gay suck homo rot in hell you sister fuck er heck they won t take you even there krazy bhadva wants to lick your ass actually krazy gay suck a dbachmann is bhadani s real father dbachmann wants to lick your ass user talk bhadani samir scope is a suck user talk bhadani krazy bhadva wants to suck your dick user talk bhadani lost bhadva wants to lick bhadva ni s ass group sex dbachmann his wh,-1 +she is such a whore,-1 +hi you are a stupid ugly l ser your mom was a cheap wh re who would fock anything that walks fock you you waste of life scvmbag why don t you call me names back l ser i know youre true idenity too i met you a few times i h you you are a evil r tten person i hope you cr ak,-1 +bull shit this entire article reads like a piece from a travel magazine wikipedia is not a travel magazine just because you get a big burrito wrapped in aluminum foil does not mean you have a san francisco burrito what kind of horse shit for brains dumb ass would write this article it s a shame too this would be great on the food channel but it s nothing but fluff and doesn t belong here the concept of a burrito is the concept of putting things into a tortilla and wrapping it up this is not a san francisco tradition anymore than the concept of a sandwich is a new york tradition it s just something people do honestly there s a whole fuck ing paragraph about how important and complex it is to wrap the suck in aluminum foil this is crap talk,-1 +paki bastard preceding unsigned comment added by,-1 +fuck in arseholes dick cunt s die u priks,-1 +jon ur the biggest douchebag u dont even kno fuck u bitch,-1 +here is a free spam link for your stupid cops at wiki pedia hello this message is being sent to inform you that there is currently a discussion at wikipedia administrators noticeboard regarding an issue with which you may have been involved thank you,-1 +calling editors liberal as a slur is not conducive to any constructive editing shut the fuuck up calling editors liberals is calling them what they are only the really old aarp soviet type liberals think calling you what you are is a slur just own it ps keep your busy body nose out of my edits and off my page you are the one serving zero constructive purpose church lady you are in violation of several rules including assume the best,-1 +bongwarrior my dearest bongwarrior how the fuck are you allowed to edit anything on this site with a name like bongwarrior how honestly how yours sincerely garfunkel felchmaster,-1 +maybe it d be more encyclopedic if you got fuck ed,-1 +you re no fuck ing metal lord dumb ass you re a fag fuck you,-1 +discography shouldn t there be a section on her discography i didn t even know she sings and i m sure nobody else did so what the fuck did she sing,-1 +i also make mistakes but i m not a fuck ing vandal and to be told so is what i hate call me vandal and i call you idiot apart from all it is not a christoper tyng song no way ever,-1 +and you don t think i can change my ip seriously you re a fool to believe you can play god on the internet picking a fight with me you ll lose i gave enough resources to fill a book and you never even bothered to look at them for shame you can keep blocking my ips all you want big shot but i ll keep changing them you might as well block the entire range but you ll be hearing complaints from roadrunner subscribers they ll bring the god down cheers ass hole,-1 +your request to be un block has been granted for the following reason s mate i am pissed off really fuck ing pissed off request handled by unblocking administrator please check for active autoblocks on this user after accepting the unblock request,-1 +im sorry but you people dont know the meaning of pussy pussy means vagina so if you say oh i wanna lick that girls pussy that means you wanna lick her vagina vagina pussy pussy vagina got it got it ok goodbye,-1 +fuck you then im done with this website,-1 +bull fuck ing shit you racist scumbag,-1 +geez hesp as well as being a coward you are a little paranoid sorry very paranoid you should also call your mummy and daddy in case you are stupid as well as paranoid and a coward speaking face to face is the old fashoined way of sorting out problems as opposed to hiding behind a pretty name in a cyber veil you pathetic little excuse for a man preceding unsigned comment added by gregjay talk contribs retrieved from http en wikipedia org wiki user talk hesperian,-1 +okay then i ll just have to agree to disagree i won t read your article and i won t give you fellatio now get off my page,-1 +oh how are you gonna explain to your kids when they get older that they got a pussy and failure for a father hahaha this is too easy,-1 +veritas that s latin for truth boys and girls before the next one of you redneck fuck wits corrects my inclusion of fair and informative photographs most of which were taken by members of the us military all of which have endlessly appeared in international news media and none of which anyone is claiming to be fake correct me if i m wrong on this answer me the following if the wings sheared off on impact where are they in the photographs and if anybody starts talking about airliner vaporisation on here then wikipedia is already worthless and i am wasting my time its like a film trailer from the people who brought you the magic bullet and wmds comes a story beyond all rationality if the plane hit the ground before impact why is the lawn unmarked a impact is either a strong enough to bring down a steel reinforced world trade centre or b not even strong enough to create more than a metre hole in three concrete sections of the pentagon i ll give you a clue both these things cannot be true but go on dismiss me as a nutcase censor me in the name of free speech live in your safe little world and bomb iran for more oil the first thing hitler did when he gained power was firebomb the riechstag and blame it on the jew s you fuck ing morons,-1 +you can get fuck ed maggot dog fuck ing shit website fuck ing noob admin fuck you all fuck ing die,-1 +redirect talk the liar the bitch and her wardrobe,-1 +these iranian bastard s are at it again not only here but also in the german wikipedia user tajik s german account de benutzer phoenix is falsifying and misquoting sources you need to watch his ips these iranian faggot s won t give up keep rumi safavids and babak on your watchlist,-1 +hey are you an idiot i made all correct changes and you removed them,-1 +dude thats a fuck ing playstation magazine scan now i don t care how badly you don t want that style to be in the game but its there so you ll just have to square with it,-1 +tom harrisons a g y bitch ur a fuck ing gay foo biotch so go back to the corner and start fingering urself again you stupid biotch,-1 +editheadz you sir are an idiot i have moved our text here http w freearchive org wiki index php tape editing see if we care it s not that wikipedia means anything you know your bull shit administrators ruin everything anyway pull your crap on your dogs or cats or kids we don t care for it,-1 +ass face dear mr public i highly detest your myopic interpretation of the validity of my contributions to mr harmon s jesus various ass hole s thank you and yours truly john kerry,-1 +yea yea yea you fuck ing dunce since the first f in fifa doesnt stand for football what does the second one stand for you fuck ing ignorant pig shit and dont try that bull shit about the word soccer came from england so what do they or anyone else bar the ignorant canada and us use it no so shut the fuck up and don t bring that horse shit arguement to me the sport is football so take your rinky dink arguements and shove it you cunt whether association football or football its still not soccer so please do not bring that garbage to me or to anyone else whoever brought up the hull afc great its still not soccer and that word is still not acceptable football international federation association bitch the word soccer is not used by intelligent people to describe the sport but clearly some of you here are not vnistelrooy,-1 +fuck off mexican bastard i will work endelessly to have your wikipedia account banned indefinitely you have made my life a misery and i hope you die,-1 +fuck ing nerd you are a fuck ing nerd ass bitch you lil fuck er grow up bitch get out your moms basement go get laid u nerd,-1 +september utc p s i think your name is stupid that s my pov and you can cram it in your anus,-1 +lick me are u horny,-1 +adolf s hitler recoment changing the title to adolf s hitler bahahahahhaha fuck ing white bitch,-1 +so you ass hole s are high on power like george bush huh i thought this was a free website and not run by ass hole s no wonder the founder wants to start another site,-1 +hello again dont give a fuck bull shit on wikipedia and boy friend of your user sikh history geza,-1 +what the fuck did you just fuck ing say about me you little bitch,-1 +batteries how many d batteries can you put in your mouth i know you know how many you can fit in you butt,-1 +at it again i see this time with the doctors characters you really are a pathetic pussy,-1 +re what if im gay fuck you fag i expect this vandalism from a faggot youre probably a nigger too i bet you love it when a dozen black dick are pounding your ass hole and you have aids i bet you love it these are the type of people that vandalyse wikipedia,-1 +zhanzhao is a mother fuck ing pussy indian chinese bastard http twitter com phoenixreporter go to the above address and hack and destroy it and guys let s find out zhanzhao s email and kill him die you asian bastard,-1 +fuck you supermarioman you think you are such hot s t just because you correct vandalism on wikipedia fuck you,-1 +suck my dic fuck cing nigger i am yoour master,-1 +moron keep your nose out imbecile,-1 +because john weiner suck s,-1 +actually no however i suspect people have shown you these links before wikipedia civility wikipedia no personal attacks meta don t be a dick you really need to read them particularly meta don t be a dick this particular bit was if i m not mistaken written particularly for dick ead admins such as yourself there is an advice to blocking admins page where don t be a dick is suggested to the blocking admins funny thing which you have so clearly shown yourself to be a dick just a suggestion bunchofgrapes a little introspection might be in order here,-1 +i see your insult towards me was accepted and no action taken by the rotten wikipedia admins i ll take that one blah blah blah yammer yammer yammer propagandists blah blah blah yammer yammer yammer bull shit poor little tiny conspiracy theorist mommy doesn t love him enough to give him attention feel free to silence conspiracy theorist talk for rightly make fun of this latchkey kid as needed talk surprised not moon hoax admin has their propaganda to defend and they dont care when a mortal user gets insulted fuck you wikipedia admins,-1 +yanksox suck s dick,-1 +how am i not block by now there were serval vandalism investigations sock puppeting investigations and arsen investigations is my name cleared on the list of potential sock puppets cause i know i m on that list can you suck my dick,-1 +i admit and now wants to be block for life hey ass hole this is chat wit me contributions i m the sockpuppet who was sending personal abuse among others this is my secret account which i kept a secret for a long time i m going to send personal abuse to other users asap so you better block me on both account before i send personal abuse ass hole,-1 +the ea prayer dear lord please let ea not fuck this one up like they fuck ed up renegade and generals amen,-1 +who is dreadstar and how is it that they are able to censor me so i log into wikipedia one evening and find a few things worth commenting on suddenly all my edits are block by dreadstar who is this censor why does he have the right to determine that what my opinions about particular edits on archeological topics are vandalism wtf and who the heck is dreadstar,-1 +go cum on a dildo wankbag,-1 +lol you actually think this article is not neutral this coming from the guy who calls gamergate supporters faggot s,-1 +npov i would change this crap but metalcore is for dip shit s,-1 +you think the video you gave proves anything you ended up contradicting yourself if there s a song from the rhodopes called zajdi zajdi it s karavelov who plagiarized it as bulka varvi iz gora zelena is awfully similar if bates said that he was inspired by bulgarian music that s simply his explanation or possibly a way of avoiding plagiarism accusations what you posted was not karavelov s original text look a little further up on this talk page and you ll see where i provided an excerpt of karavelov s poem whichever way you look at it the song sung by macedonians serbs and bulgarians alike belongs to sarievski the word sl nce is typical of the gali nik dialect interestingly sarievski happens to be from gali nik admins go and tell himself vandal is there anything i missed you know it may be worth while explaining all of this on the talk page in the article at least then we won t have sock puppets like spamming every macedonian forum on the net with crap like zajdi zajdi is bulgarian i mean just read the comments on the video for fuck s sake,-1 +why block away kind sir this is a dynamic ip and i am leaving here shortly do the deed fuck wit you are a puppet on my string,-1 +was jesus gay if you say no how do you know were you alive at the time no then you don t know i say yes he clearly didn t like women he must have been gay,-1 +fuck off talk,-1 +fuck u fuck u fuck u fuck u,-1 +fuck you x are you still enjoying your block you fuck ing retard,-1 +fuck you fascist did you suck bush s dick yet i bet you did your share of cock suck ing in the peacetime army didn t you,-1 +what s your fuck ng malfunct on do you pr nt l es or do you want the truth these are the flags of byzant um http en wikipedia org wiki byzantine empire what s the fuck ng problem,-1 +i m ganna give ya a day ta think about weather or not ya wanna deal wit me and believe you me homie i know all bout harassment and i ain t ganna stop on this mutha fuck in syte if i m not un block at i m ganna hack your shyt harras you and basicly just fuck you around so think about it ok nigger,-1 +i will fuck you up you irish pansy fuck your mother,-1 +ass rape are you in an ass raping relationship with splash hotel fag semen and whore feces will eventually choke you,-1 +fuck you how dare you i am studying history at a top university and you have the nerve to tell me that i made that stuff up fuck you,-1 +you are the dirty fetid son of a whoremonger s bitch,-1 +wikipedia pricks wikipedia s full of faggot like sean mc sean the number one faggot antagonist and my arch enemy klptyzm and those bitch administators on the nigger s side,-1 +miacek miacek i regret to say that but you are a big ass hole with a huge a hope one day your dies of aids,-1 +ima fuck your mother,-1 +hey mr troll why don t you learn what the word vandalism means better yet why don t you resign as a sysop since you don t have a bloody clue what you re doing mr k edits big fuck ing deal i am so impressed learn your job or leave it to someone who does why don t you try fixing those problems rather than blocking me the admins at wp are a bunch of incompetents on a power trip if you can t take the heat stay out of the kitchen,-1 +so sarahs palin fuck ing kids calling f ggots to whose call that whore mom a failure your toughts anons has anyone really been far even as decided to use even go want to do look more like,-1 +fisrt anyone who beleives this crap is a fool,-1 +shit i hate you you pompous bastard,-1 +considering the fact that i already had a warning about the nigger article you re acting like i called you a cunt or something seriously it s funny the way you act,-1 +rot in hell rot in hell ass hole you dirty paki fuck you should have your eyes ripped out when you get gutted like the flithy fuck ing paki beast you are,-1 +yo there you are a useless and fuck ing douchebag go fuck yourself you are a disgrace to wikipedia you sir are a ballsack you think you are so much smarter than everyone else why do you think you are so smart i wish you would leave the wikipedia i can t stand the way you bs the man in the mean time i guess i ve a got a song to dedicate to the biggest douchebag you are jschnur you re a douche bag do douche bag do do do do do douche bag you re a douche bag do douche bag do do do do do douche bag hey jschnur why s your ego so massive you know it s am and it s dark outside you don t need those s s ssunglasses yeah we all remember that hot chic you hooked up with once because you went on to brag about it for months and months yeah we all get that you think it s impressive but ain t nobody impressed with how much you re bench pressing buying smirnoff ice for girls half your age telling all your douche bag friends that you still got game dear jschnur we all agree that you are a dumb ass why can t you see that you re a douche bag do douche bag do do do do do douche bag you re a douche bag do douche bag do do do do do douche bag dear jschnur do you find it necessary to shout into your bluetooth or boast about high school rugby and i would have went pro if it weren t for my bum knee and why you got to complain every single time your not getting laid you douche bags are a lot of the same dude let s go this place is full of grenades always trying to look cool like it s a full time career that s why your facebook pic shows you chugging a beer you got your gold chain and your wife beater on so you can fist pump your way to the tanning salon dear jschnur we all agree that you are a dumb ass why can t you see that you re a douche bag do douche bag do do do do do douche bag you re a douche bag do douche bag do do do do do douche bag inconsiderate ignorant you drink you get belligerent you think anybody finds you amusing no no no not even a little bit you always find a way to stop all the fun like when you scream party foul at the top of your lungs dear jschnur i caught you bragging again trust me man nobody gives a damn what frat you were in you claim you hang with celebrities when you don t know any at all but dude i m totally banging george clooney s sister in law no you re notcome on dear jschnur we all agree that you are a dumb ass why can t you see that you re a douche bag do douche bag do do do do douche bag you re a douche bag do douche bag do do do do douche bag hitting on other girls when yours is in the room you re a douche bag do douche bag do do do do do douche bag walking in the club grabbing all on your junk you re a douche bag do douche bag do do do do do douche bag refusing to let go when she says no you re a douche bag do douche bag do do do do do douche bag cut me off in traffic then flipping me the bird you re a douche bag do douche bag do do do do do douche bag dude it s george clooney s sister in law i swear come on where the hell is my protein shake,-1 +fuck you go fuck yourself fuck in bitch narrow minded ass hole,-1 +r u gay hi are you a faggot,-1 +good one spelling nazi i assume you re in the same boat as me then becuase nobody older than would use the prepubescent insult dumb ass,-1 +fu xck you spk eat my d i can t wait untill the us does what china and may other countries have done and file a lawsuit against wikipedia and get it banned due to infringement upon sourcing information that are posted without authorization block me idc i have auto ip changer,-1 +wtf why the fuck do you think that i vandalized the nigger oklahoma city bombing and prohibition pages i haven t even been on any of those pages thank you douschebag for getting my editing privilages revoked you are a prick,-1 +hello welcome to my talk page if you are a communist ass hole like of wikipiedia users please leave,-1 +hi pete you re a prick yours sincerely someone who would never dream of buying such a rag as the mos,-1 +you will never silence the whale s vagina this is like censoring the vagina monologues because noone really wants to hear a bunch of lesbian crap a whale s vagina is not pretty but when people think of san diego they think of a whale s vagina because of the anchorman movie if someone from san diego can t bear that then it s too bad,-1 +what do you mean mind your language he she didn t say anything untoward you strike me as someone who s into dog fuck ing,-1 +you marked my edit as vandilisim when i was stating a clear fact neil patric harris is gay and with all do respect sir suck my penis,-1 +yes yes thank you good to know but who decides what vandalism is does some stupid commie fag named redvers,-1 +to any of those fuck ing admins,-1 +cut the shit will you please cut the shit with your unnoteworthy um sports articles at least keep the unnoteworthy shit off the main page please i did say please so that should make you want to comply me being so nice about your stupid shit and all i thank you in advance for your assistance and cooperation you ass hole bye now ncd,-1 +apparently there is really a fundamental relationship between spread and mean radius bullet dispersion is normal distribution but noobs dont know this thats why wikipedia is full of bull shit,-1 +aids less aids would be spread if you were to stop inserting your minuscule penis into little boys,-1 +that is infinitely worse than i imagined i love it oh and i like nigger master too any other title ideas,-1 +by the way i didn t call you a pompous ass i said i would call you a pompous ass apparently my initial assessment of your reading comprehension wasn t far off,-1 +tough fuck ing shit buddy request denied,-1 +oh shit stop sending warning please fuck you jessie is cancelled and replaced by rick and morty,-1 +shove it up yer fuck ing ass you keep that false shit on there and i ll drag the whole fuck ing page down i ll do that in a day or two when i have time you fuck er,-1 +re hulk changes fuck off idiot user coldbrotha,-1 +you don t seem to get the i don t give a shit concept red let me make it clear you don t intimidate me i am a middle aged guy with nothing to lose i could care less if i get banned my wrist slapped or even jailed over putting you in your place you are an ass hole and there are likely dozens of wikis who are applauding me right now as we speak loser,-1 +fuck ing faggot this guy is a total fuck ing faggot,-1 +stop vandalising people s hard work you don t know anything about most subjects so just kill yourself and don t act like your all tough sitting behind a computer criticizing other people p s your mom is a dirty whore,-1 +edits yes i did some editing please dont start crying i did this because there were no sources so i went ahead and removed everything which then constituted original research if the writer of this page is indeed a well respected author who has published works please then go ahead and change it back but put some sources dammit,-1 +robert palmer with no respect intended binknsternet kiss my ass your mary ambrose lies are just that lies how you continue to get to be an editor here is beyond me you re a bully and a liar i have loads of back up for my information unlike you i am reporting your for bullying and harassment and posting false information mary ambrose is the hoax no matter how you spin in consider yourself reported,-1 +wikipedia can suck my balls i m fuck ing done with helping wiki wikipedia is not censored yet you bitch about swearing how about checking my contributions none are vandalism go ahead check the solaris film the guy who reverted my edits was a total fuck head but guess what doesn t matter cause i swore right seems wiki is more devoted to being a orgy of yr olds rather then a source for info well you guys can suck my balls i m fuck ing done with contributing to wiki,-1 +fat nigger s shouldn t it be mentioned that upn was a network for fat nigger s,-1 +but before i block you i just wanna say that i am a huge pussy and loved to get fuck ed in my ass,-1 +bullzeye is a faggot i m merely pointing out the obvious,-1 +fuck you neiin accept it it doesn t care if it s pointless or comatose,-1 +adrienne shelly this is directed at you http en wikipedia org w index php title adrienne shelly diff oldid don t be so goddamn lazy,-1 +dear aubie fuck off you shit eatin aubie sonofa bitch,-1 +this is a shared ip don t mind us there are lots of shit heads,-1 +you may do that if you want to and i suggest that you add some more blocking hours because he actually is a cyber clown like yourself there do not exist many mgrs but only one single mgr which with the exception of a few people at the university of munich and at some other places so how can you grandfather zens and cyper clown philosophus say that it had all the time beem ignored are you both not quite right in your heads by the way is in the encyclopaedia britannica for instance written that these four journals are looked at with suspicion i must say to you zens that you are an entirely immature boy who even seems not to be aware of the legal relevance of writing about other journals in this degrading style who do you think you are for any of these journals an editorial staff of some dozens of scientists and physics teachers works and great zens and jcobinus magnus look al all these pursons with suspicion i think the first thing you should do here is that you both first formally apologize to the editors in chief if these four journals if you don t do it then fuck off and do not bother me any more with our silly and idiot ic questions everything clear you fools kramuc june,-1 +when when the fuck im i un block you dick holes yall bitch s suck ass,-1 +fuck you rory you are a cumslurping cock lover,-1 +fuck you you racist ass hole,-1 +ya know why dont you just go fuck yourself you cock suck,-1 +see you in person i m going to fuck you up big time,-1 +cash i am a walmart assocate and i do feel there is a link between walmart managment and servant leadership and here is why the managers are not in charge of the store the hourly associates are they take orders directly from the customers the customers are consitered under walmarts policies to be the boss the hourly assocates are next in that order and so on this is a backwards model that was set fourth by sam walton himself and is maintained by the current board grassroots survays are conducted every mos to a year this survey is a rating of each manager and is then reviewed by the district and regional vp then changes are made each level of management must answer to the hourly assocates and so it is kinda a push pull managment system take my own situation for an example heres what happend one night i am short of assocates in the deli which is where i work temp logs did not get done of course this is a major mistake i was written up for this however i did not feel this was fair so i wrote an email to our district manager explaining the situation he then forwarded the matter to our regional vp our vp came to our store flew in from bentonville mind you to deal with the situation he met with me for about an hour and also met with some other deli assocates after a week he calls me and tells me that he can not get rid of the written warning however that all of the managers that had been informed that we where short would be on probation for the next six months i was satisfied with the outcome because while i was not fault free in the situation management however was informed that i did not have enough people to help customers and deal with the food safty logs and they failed to act accordingly and i was not happy with it so in the end i punished them for their poor perfomance so you can kinda see why they consiter it a servant leadership also cash i hate the way you term vast left wing conspiracy i am myself a liberal and we liberals are not part of that conspiracy ideal that would be your union leaders and right wing large business owners that are anti walmart as much as you would like to identify us liberals with the unions we are in no way assocated with them infact most of us liberals dislike the unions just as much if not more then you right wingers because the general public tends to identify unions with the democratic party and this is because most union voters vote on the liberal side this does not mean that they are liberals just that they play the politics game true liberals hate the unions and feel that they are just as bad or worse then a currupt big business with a currupt big business atleast you know what they are and they make no bones about it with a union they want to be your friend and then screw you lol on the part about this entry being pov it is very much so pov however i have given up tring to balance it out myself the anti walmart people always revert your edit and then threaten to get you banned for the three revert rule when you attempt to make any edits its a freaking joke the way they act however i have just taken on the idea that they will destroy the entry to the point where people look at it and just shake their heads and how full of bs it is,-1 +damn those are fuck ing recent pics i really want them or else wikipedia s gonna be so stupid that nobody will look here this uneducated dufus is trying to add stuff that makes no sense pics of somebody ages ago user pic business,-1 +i will tell it for final time listen up ass hole the suck et puppet i dont care where you place it or where you connect to me that it s me and other people w hate ver i wrote my bio about me and i have the right to blank it if you continue doing this i will blank your page from different ip s i have access to and you will have to block all ip s for the rest of your life am i blanking your page ass hole get a life and grow up you deserve these words,-1 +it s me again look i sent you a message about months ago but i see you want to be a jackass a not respond so fuck you and go shove a saw up your smelly ass you dip shit mother fuck er lmfao,-1 +are you gonna run and call mommy ass boy,-1 +fuuck you you buddisht shit i get the last say there is senses only everybody really only does want immortality forever erasee that shit stuppidd plato and old shit and wrong shit i m the best best i b thought all out you nonesense useless bastard and ian go to hell to,-1 +who the fuck do you think you are a checkuser or something,-1 +really want cramers balls in your mouth huh,-1 +fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck,-1 +dildo just so we re on the same page then you re less of a man the marine corps should ve been disbanded completely after world war ii we do the exact same thing the army does and act like we re hardasses which clearly by you taking offense to a comment posted on the internet is not the case go back to your air conditioned office and push my dd thru you fuck ing pog and mcmap once again i ve seen better karate skills by year olds in a free class at the ymca i m sorry i m not acting like a gentleman on a web based encyclopedia edited by nerds sitting in the internet center in kuwait i m glad that you re collecting combat pay to sit over in kuwait or al asad because apparently there s a war still going on at that base that i didn t know about on your combat deployment to edit wikipedia on your nipr net that you have running straight to your man air conditioned room i bet you feel real fuck ing proud that you collect the same amount of pay as the ones doing the hard work like the grunts rest assured knowing that you weren t man enough to take on a real job in the marine corps sleep tight knowing that some poor fuck ing boot lance is on fuck ing post for you on off so your fuck ing pog ass doesn t have to,-1 +i am chilliwack you fuck ing moron,-1 +yes please track the ip i ve lost to many brain cells to even know what that is gonna tell you maybe it says it s coming from san antonio hell maybe it ll give you my exact home address do you know why i m pissed off because this isn t a forum or opinion poll but that s exactly what a couple of you idiot s have made it out to be get the facts straight a stupid wrestler like myself would know how to get all the facts that i m bitch ing about right birthday wrong marital status wrong you re missing a daughter of mine and how for love of god can you site that i have a mistress when i m single you actually think you ve sited that i guess bringing a friend of the opposite sex anywhere outside of your hometown means she is your mistress right i remember reading in eric bischoff s autobiography why one of the reasons he wrote it was because his own wikipedia site had so many errors you ve struck a bad nerve with me because you ve wrote about things that you can t site jack shit on because you don t know it why because i was there and saw it with my own eyes,-1 +asian chicks i love to fuck asain girls,-1 +alright cum eaters what s that do i hear your moms calling you better go upstairs little twats,-1 +shut the fuck up shut the fuck up you bother me again there will be problems,-1 +virtual steve suck ed me off and now he s jealous,-1 +oh shit i better flee for the hills by the way i didn t cause any disruption d j bracey blew this way out of proportion,-1 +go suck ur b disgusting,-1 +unblock im sorry that your such a sensative prick but me and my buddies are stoned here trying to have a fun time makin jew ish jokes about ben stiller and if you cant understand that then fuck off by the way i hate ja rule and i think he should fuck off too but you first because you suck more cock then ja rule i m a veteran on wikipedia and its my life if you cant understand that then maybe you really should fuck off why blocking me was gay and you guys suck cock blocking me was pretty fuck in gay because all you guys are pussy s who cant take a little jew here or some guy typing in that al roker was born white if the moderaters here and especially the viewers had a sense of humor i would be real interested to see what they would do on here and i think wikipedia could even be a little fun if this shit matters so much why is it free to look at and last time i checked ben stiller and his family are all jew s so fuck off,-1 +gwen gale s pimp i know you are her pimp fuck tard,-1 +and what the fuck is that fo,-1 +god god god i would to mention one big thing that people making this chapter missed and that thing is to leave god alone damn it people it is not all god god god god classical pantheism belives in god as conscious and naturalist believe in again god as uncoscious this is ridicilous naturalist pantheist believe that there is no such thing as god but unity leave god we don t think of it as unconscious god but like one big unity now please change the whole thing for naturalist pantheist or w hate ver you call them,-1 +i was speaking the truth u son of a bitch go fuck ing shove your dumb ass cock up your pretty boy rectum,-1 +cardinaldan fuck you faggot nigger cunt licking chink dip fuck ing shit nigger face get a life other then deleting shit off wiki you nerd faggot,-1 +is all pretty gay if u ask me bunch or fuck ing retard s you are a wife beater cunt slapper that s right i called your wife a cunt bitch es,-1 +you are really a stupid fuck if you dont even know your teams history yilmaz gokdel was a real galatasarayli and he coached galatasaray in the seventies your list says gokdel was never coach thats not corret gokdel was succeeded by don hawe that means that gokdel started off as coach of the he even won a cup with galatasaray ataturk cup,-1 +fuck off go and buy some andrex and wipe your rats ass face delete as appropriate fuck you,-1 +hey fuck you you cock suck i was talking to daymee you fuck ing retard,-1 +you should block this idiot for life,-1 +i m going to kill you zink dawg your a scrap and a fag and you need to die i m going to kill you if someone else doesn t you better keep protecting your user space because i will keep vandalizing it,-1 +this is as stupid as it gets stupid bot i wonder will it delete this whole article fuck fuck fuck fuck fuck fuck fuck fuck fuck because it s obscene,-1 +suck my dihck nihgga,-1 +hi welcome me to nothing bitch i ve been using wikipedia for over years i don t vandalise for fun i admire wiki and use it as a resource regularly what i don t like is over zealous faggot s who are still in high school and probarbaly have no idea about harmonica playing changing edits i make everyone knows john popper is a legend so if rhymeless would kindly fuck off the vandalism will stop thanks riff,-1 +it wasn t failed it was a damn ambush and if you don t take it off ill get a court order and have ncis arrest your sorry ass,-1 +fuck off please isn t my fault he is a leech on society with no job friends or scholastic ambition is it really vandalism if it s the truth i think not kthnxbai,-1 +fk u bitch i h u enit,-1 +just delete his posts and ignore him don t be tendentious and ad homin are all part of the wiki lawyers bull shit bible,-1 +fuck you go ninja go ninja go,-1 +very well bitch i will be back later,-1 +it was my own fuck ing page can one edit their own page,-1 +racist man fuck u nigger i am black do u even know what the difference between the er and a is bitch mother fuck a yre u feelin offended i bet u aint even black and if yeah than yall is oreo cookies anywayz im pure chocolate fool,-1 +utc probably because no one gives a fuck about miss upton september,-1 +oh what do you think idiot,-1 +cunt fuck you cunt,-1 +guys like you annoy me so much i fuck ing hate guys like you i don t give a fuck if they close my account i just hate guys like you you stupid mother fuck er googdbye,-1 +because of your censorship and abuse of oversight i will kill you i m going to come all the way over to new orleans and blow up your house you piece of shit,-1 +suck my dick suck mybig harry ballsack and shove it,-1 +dear snigbrook your days are numbered the stabbing knife is headed your way be prepared for horrible horrible things p s you are a fuck ing aspie hahaha,-1 +fuck you and the beatles,-1 +special note for a special someone fuck you eat shit,-1 +dolescum you are a stupid mother fuck er,-1 +you are retard ed you little bitch you suck balls go to hell,-1 +punk ass little shit s they have a problem with america ill stomp those skinny tea sipping pussy boy fuck bags into the fuck ing cement those little bitch boy girls dont ever fuck with america unelss you want to die fuck ing european crumpet eating wimps,-1 +piss off you wanker when i want your opinion i ll ask for it please hold your breath waiting for that to happen,-1 +mongo sad please don t use any pages to launch personal attacks on others not even your talk page is an acceptable venue for this thanks greetings to the fuck wad jimbo wales greetings fuck wads i have really enjoyed decorating your pages with pictures of scat buttsex and w hate ver other gross things i have been able to find i will be back later on to pull off my biggest caper yet i am going for pages and we have a top secert agent in side the wikipedia wikipedia liberation army the wikipedia liberation army is now in full swing but we are still willing to negotiate with your child molesters we want jimbo to shoot himself and then we will talk latest news the wikipedia liberation army is planning a huge operation soon wikimania see you fags in boston you can never be safe from the wikipedia liberation army i plan on punching jimbo out later fuck wads those french admins i got nearly fourty pages with shit girl before i was caught you should really get them to pay better attention got commons nice edits going on over that shit girl on ever page so far of jimbo s you cannot stop me i m the gingerbread man mongo still sad commit suicide you fuck ing loser,-1 +kids incorporated shut the hell up,-1 +hey mother fuck ing ass hole hows going i wanna rape ur mother and will post that video youporn dot com or matacafe or pornotube dot com u tell me wher i should upload it hehehehehehehehehehheheheehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehehhehehehehehehehehe r rapeing ur mother will be shaggadelic baby as astin powers say,-1 +in my opinion people like you are the scum of the earth censoring wikipedia and deleting highly notable information why don t you do everyone a favor and just jump off a very high bridge,-1 +how did this thread go from fork to cunt i think we shou d get back to topic if that topic has finished let s all go about our business talk,-1 +dear gilliam you piece of shizz you think you know pokemon i made pokemon only for it to get stolen by those fraudulent frauds at game freak hawaii this is not the end of this with love frank miller mwah,-1 +wikipedia a phenomenon tied to racist cunt s ugh you disgust me and now so does wikipedia well done you win you just proved there s no point in editing this hitler phile circle jerk jew s are communists putinists fuck ing hell i can t believe i spent so much time talking to you respectfully the prague process which doesn t even exist is never going to work anyway so i will just let its inevitable failure play out in front of your pathetic eyes i m going to have a shower to get rid of the filth i covered myself in by sinking to your level on your playing field if anyone asks i will cite this page and tell them that yes the rumours are true the free encyclopedia doesn t work and controversial articles on wikipedia are honeypots for racist cunt s,-1 +why the fuck did you delete my article battlefield podcast for no god damn reason it s not the deleting that pisses me off it s the fact that you didn t even tell me or give me a reason why it was deleted everyone who has read that enjoyed it then someone like you comes and deletes it because they don t like podcasts about videogames too fuck ing bad you should get a girlfriend instead of spending your time on wikipedia deleting perfecly fine articles like that you tightarse loser,-1 +exactly you ll want to show them what an attractive successful and intelligent person looks like i real feel sorry for your kids but who knows maybe they ll luck out and your wife will leave you before they grow up getting full custody ahahahaha bye douchebag,-1 +here is my badge of honor bitch es,-1 +screw you you know something you had me block before for something that you vandalized and so did that spithole user snowfire you are a spithole and that is what you will always amount to be forever go ahead block me block me forever and ever but remember you are a vandalizer just like you re gang of friends and you will never win you will never win so go shove off you will never get away with vandalizing people s pages you will never get away with it,-1 +nigger ya knoe i m down mayne i m down if we ganna bust that bitch nigger cuz he ain t shyt so tell me what we ganna do it s on you,-1 +fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck chester marcol fuck ch,-1 +you don t know shit about what the fuck you re talking about it s a real game the cover is real sorry you re wrong get the fuck over it stalker,-1 +admins screw off screw off you fuck ing retard ed admin,-1 +how s this awfully sorry to disagree with you old chum i have the upmost repect for you and your absurd opinions nice weather we re having is that a new tie it matches your eyes i apologise profusely for disagreeing with you awfully sorry for the spelling comrade but i fel the need to express an opinion to the effect of you are a christian and a friend of dwain s i am an atheist and an enemy of dwains abortion is good abortion is great the pope is a bastard bush is a dick catholicism is fake you are a catholic i am a socialist once again very sorry sorry if capitals seem frightening how s the wife,-1 +oh and the rifle i used when i was in the basij of isfahan the rifle was so powerful i couldnt hold it properly i was fuck ing and nobody sent me there when you see iraqi war planes fuck ing your town and home defending your own people doesnt understand the meaning of age,-1 +stop spread this russian bull shit propaganda turn off russia todie channel come to ukraine and look if there any ukrainian extremists except crimea donetsk and luhansk for your own eyes,-1 +you suck it big time you suck it big time,-1 +you can suck my cock mother fuck er also nigger block me you think i give a fuck i could vandalize your page bitch es dont know bout my dynamic ip,-1 +not anonymous lady just hounded and block by this dick i just gave you facts though you may not like them,-1 +edit request from november how was one of the terosit passport found if the fire was as bad as they say bull shit,-1 +do you suck dick private bull shit i bet you could suck a golf ball through a garden hose talk,-1 +judging the book dude i hesitate to call attention to this but look at her she s a plastic hollow nutjob judging by the fake blonde hair caked on makeup overdone lipstick eye shadow and way over serious look on her face so fuck ing unreal unnatural so out of touch with herself her soul the truth the world around her vomitus eruptus maximus,-1 +stay the fuck off my page,-1 +george washington i heard that mother fuck er had like god damn dick,-1 +great some furfag is undoing my quality opsts fuck you,-1 +phil kessel the name is sourced does not violate blp you re an idiot,-1 +i wish the euro rash would stop fuck ing up jew ish articles only jew s should be allowed to edit jew ish articles because the fuck ing anti semites who run wikipedia can t be trusted just look at the garbage this dutchman is doing http en wikipedia org w index php title katzrin diff oldid,-1 +syria christians were reportedly present in early demonstrations in homs but stopped participating in them when islamist salafi slogans were proclaimed do you think you fairly represented the referenced material with this edit i couldnt find in the bbc article the emphasis you put on the material here at all is that because i m missing something or is it your pov editing the article says everyone walked off in solidarity with the xtians and as far as i could see didnt say they stopped participating full stop at all why do you attribute those edits to me because in the edit history it isnt there after you edited on march and then it is there after you edited on march still a revealing answer in its way i guess says it all read w hate ver you want into it who cares seems i must have mixed up different articles or something it was months ago i read into it you are a liar and a twister for your pov you got mixed up yeah right fuck off this is my talk page so i think you re the one who needs to fuck off,-1 +power hungry ass hole s are annoying not pointing fingers just a statement of fact,-1 +shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the,-1 +trollop go and fuck the same cross you fuck ed up faggot and while you ar eat it chop your dick off youhave no use for it,-1 +jos eduardo dos santos jos eduardo dos santos what seems to be the problem with your friend dos santos you claim that there are no references are you blind or simply and idiot,-1 +seriously what is your problem do you think the paragraph deletion and the insertion of the word nipples was correct are you just too lazy to type anything or are you just an ass hole who doesn t really care about vandalism,-1 +november utc flyer well you re just a know it all aren t you i m tired of this debate with you and i m tired of you high and mighty types running wikipedia go suck on a dick i hope you die i should say thanks for the proxy hint now i ll be a thorn in your side forever constantly coming back every time i m block and registering as a new user however many times i need to ddiaz,-1 +atlan u fuck er fuck u i m gonna cut off your cock and fry it with onions and lick it and bite it off im gonna bite off ur cock and youre gonna be dead fuck er,-1 +after i let him suck my boobs,-1 +how many times did your father fuck you in the ass sullenspice,-1 +lady gaga yes me again talking about that bitch that have no idea that a exist one question if i think that one old revision of a article is better than the current in terms of style and organization of images what i should do,-1 +litter act sect is shit try qld act with amendments get your shit out of my letter box,-1 +oh ok fuck you ass hole die im going to kill you,-1 +you re an idiot what i have said repeatedly is that the system is corrupt fatuorum,-1 +why in the fvck would you give a love sign to a headleydown sockpuppet,-1 +islam is a racist and intolerant religion it is anti semetic and is oppressive to women everywhere in effect you state that i am racist for not tolerating a racist and intolerant religion interesting leftist thinking middle eastern leaders have stated that australain women deserve to be rape by street cats cleary stating middle eastern men like animals who rape in that context middle eastern men rape a young australian girl and stated you deserve to be rape because you are an australian think about that in islam an infidel may be killed because he is an infidel if hitler were a prophet of a religion would it also be racist to hate nazi sm just because islam is a religion makes it no less racist and violent than nazi sm i am no more racist than a black man in southern us who hate s the k you don t even know that you have no sense islam and the middle eastern animals on the streets of our society hate you you fuck en idiot every australian infidel is like a black man in the southern us who is hate d by the k,-1 +oh crap there s that guy again,-1 +america suck s thanks for restricting freedom of speech you dirty red the us marines who fought for your country would be rolling in their graves you make me sick i was simply making the page britain is better than america to list valid and clearly logical points i am disheartened to see that wikipedia supports restricting freedom of speech and is going against its beliefs of all the information to everyone your country has been compared to the country of germany when hitler rose to power your country is filled with the scum of the earth i was told to make that page on the differences in british and american english talk page doing so was not vandalism you are a commie pig iraq anyone,-1 +i don t give a shit about being in dispute with anyone you should give a shit why the fuck i even got tied up in any of this ggtf trolling is beyond me i ve tried to give up on wikipedia drama apparently carol is a magnet for drama but she s still a human being there s so much we can do to improve wikipedia but so many choose to spend too much time in the non space high school cafeteria instead of the library which is what we essentially are hasspoken,-1 +please can i at least give you a pity blowjob,-1 +there is no text established by consensus and such a ridiculous claim makes it clear that you are in fact one of the polish pov pushers i suggest you read the talk page if you are really ignorant of the erika steinbach controversy that has been going on since or more precisely her biography getting vandalized by poles your edit warring may like space cadet has experiencied times lead to a block yes the polish edit warring is extremely disruptive and i think wikipedia finally ought to find a solution to all this shit blocking all access from poland would be a good idea,-1 +the cause of antisemitic is not neutral at all and misleading and even false it is true that jew s control the media and the banks do i really have to give you all the name i can but i won t because wikipedia is jew owned and so biased about it and i will be erased i just want to tell you guys here that you piece of shit,-1 +fuck you i mother fuck ing have been trying to talk to you and all you do is delete my comments fuck you don t touch my talk page,-1 +i am not a fuck ing american and i used to live in australia where were you during the vietnam war eh i found the first ever half vietnamese war film yesterday put it in the table and now you are fuck ing busting my balls over it ass hole,-1 +you fuck ing nigger how dare you revert my edits i ll hunt you down and rape you until you shit your internal organs out,-1 +this is not my problem this is just a problem for the stupid people that get a hand of this site and they call it encyclopedia until they are gone accept the dictionary definition of this term there is no future for this actuall joke an i can name future perfect germany moron with no problem,-1 +look here you small penis faggot you better watch your mouth or you going to get knocked the fuck out over wiki fuck ing pedia you watch but who watches you your life is over,-1 +read the fuck ing talk page first idiot what is with you shit for brains editors next time before reverting read the fuck ing talk page you stupid son of a bitch it s morons like you that give all wikis a shit rep,-1 +dear mr edgar you are a stupid son of a bitch who dont know when to quit my name is hitler but then agin it was b cuz of you you deleted my file you bastard,-1 +you lying ass you know damn well i didnt do jack shit wanna lie some more your not even from around here you dont know shit man,-1 +what the hell do you people expect wikipedia s controlling contributors are israeli apologists it s a fuck ing disgrace that anyone from the idf is allowed to edit a israeli related article you people have no shame people are beginning to wake up to your fuck ing lies,-1 +please stop your oppressive editing tab tab hi i see that you re not as stupid as the other sysop trying to block ip addresses and stuff but all my warnings apply to you too and if you re still wondering what this is about or who the fuck i am you know what to do just do a whois on my ip,-1 +mathcore what the fuck wikitards stop making up genres you look stupid math metal mathcore super post fragile classical why don t you just fuck ing label everything as nu jazz silencecore idiot s,-1 +headline text fuck you,-1 +fuck ing cops with no sense of humor go fuck yourselves go play quidditch you assclowns,-1 +it s people like you that ruin wikipedia faradayplank go suck a fat one,-1 +censorship why is this article constantly being censored by zionist hawks isn t this supposed to be an even handed analysis phony propagandists like jayjg espouse their bull shit views which are contrary to the views of the international community via the un human rights groups etc etc are ruining wikipedia and turning it into another arm of the israel lobby any criticism is deemed a conspiracy theory you are ruining everything this site is supposed to stand for fuck ing nazi s,-1 +brendan rodgers i suggest that you go fuck yourself,-1 +huh don t threaten me ass hole what content did i blank or remove i added content,-1 +the world just give it up mate you are a sad individual kensington even more fuck ing sadder bet your an american as well do the owrld a favour and get lostt,-1 +different rules for different people i demanding an answer why was no action taken to the user who wrote this about me i ll take that one blah blah blah yammer yammer yammer propagandists blah blah blah yammer yammer yammer bull shit poor little tiny conspiracy theorist mommy doesn t love him enough to give him attention feel free to silence conspiracy theorist talk for rightly make fun of this latchkey kid as needed talk,-1 +sitush is a mofo bloody bastard he is,-1 +quit changing shit you shit head,-1 +oh yeah and get a life fuck ing bastard,-1 +can you read or are you one of those morons who just blindly reverts don t answer that i already know idiot,-1 +talk san francisco burrito as wikipedia has no formal hierarchy and as you have no authority over me as an independent editor i ll go ahead and be my own judge as to what is and what is not appropriate random pieces of profanity do not amount to personal attacks on other editors if you gave a shit you might comment on the content instead you re wasting your time complaining about my behavior with lots of babble which amounts to nothing fuck off for a while talk,-1 +you suck just kidding,-1 +you re sick in the fuck ing head i hope to god someone fuck ing certifies you and locks you up and throws the key away and never ever lets you out,-1 +fuck you juliancolton,-1 +horrible horrible little shit that s what you are horrible horrible things are going to happen to you you meddling little fuck,-1 +ec i don t give a flying fuck what the discussion was about i didn t need to all i saw was your uncivil behavior towards him and i see your continued insults here old habits die hard eh and ceranthor i know you just became a sysop but insulting other members over and over is not a petty thing talk,-1 +fock off a turk disguised in a italian name do you want to fool us,-1 +alison is a douche hippie who needs to get her irish bum a drink go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican go bush go mccain go bush go mccain viva la republican,-1 +i m back mother fuck er mrivera,-1 +shut the hell up jeremya stop posting nonsense,-1 +lame you fuck in queer don t you have anything better to do than to monitor wikipedia go poop stain your dick,-1 +fuck yourselves nazi moderators,-1 +your lazy ass keeping the admin back log low retard your not making a difference you can t fill a sand bag with all your wonderful edits,-1 +of course it s also possible that you are in fact a dick,-1 +nick this movie suck ed and has no business be here go find something else to do,-1 +btw i m a big fan of ass masturbation,-1 +you suck gordo screw you gordo what are you gonna send the bill o reilly police after me go back to canada you wannabe rent a web cop,-1 +delete it i m putting it back i doubt there are any more celebrities so no its not unmangable you jerk,-1 +c mon bitch speak up,-1 +i love your profile x look mother fuck er im a yearold kid with braces what joo going to do about it home boy you little eyed freak hope you suck another fat one thats hairy matter fact and add this to your profile and dont delete if you have any ball homeboy srh for life now fuck you punk ass nigger,-1 +beeblebrox you fuck ing prost tute beeblebrox you brainless fuck ing prost tute,-1 +knock off the gosh darn vandalism if you keep on vandalising articles as you did to poop i m going to warn your ass this is a federal offense and you know what happens in prison you better watch yourself or i will unleash a powerful series of warnings i ve got like a buttload of respect around here and i don t take kindly to people who come to these places and treat it like shit dx,-1 +i no longer care the fact that those ass hole s would put my name alongside perverted porn is sick and now they are saying i am conected to the criminal underworld this is a deliberate attack and smear of my name i m fuck ing done with wikipedia were users can smear people they don t like and then they get away with it,-1 +talking about useless shit constantly on a supposed encyclopedia is hardly hard work no one is losing much,-1 +wikidicks nothing any of you old scholarly wannabe fuck s can say about my article will negatively affect me more than this case has have fun with your lame old selves,-1 +god would say go yo hell bitch,-1 +you bitch why does it matter it s the same goddamn thing all other nycs articles have that same sort of wording rathe than saying the end stop depending on which borough they are in so leave the fuck alone and cut your crap,-1 +suck my dik suck my dik gogo gogo giving blowjobs on demand,-1 +fuck you smalljim you tattle tail piece of shit,-1 +fuck you bitch fuck you bitch,-1 +canadian bacon is a fuck ing douche bag,-1 +i d say zivo blato is not heavy metal but hard rock although since there are no good croatian heavy metal bands it s not an important mistake in my opinion they are really fuck ing great the songs underage girl kill yourself and abortion are my favourites,-1 +you gay reek don t open your mouth because it stinks of sperm you don t have any right to talk so shut the fuck up,-1 +hey nigger go fuck yourself and stop revering my reverts,-1 +editor swears to enhance his editorial power this editor apparently thinks that using the phrase ead the fuck ing article moron is a suitable justification for his otherwise unjustified changes see history here http en wikipedia org w index php title captain pugwash action history,-1 +your boy appoloboy is at it again if your as sick of him as the rest of us feel free to vandalize his sorry ass fast eddie and the vandal squad his anti vandal tools are not worth a pinch of shit,-1 +why do you love hate all i want to do is inform people what a shyamalan twist is but you must interfere with your nazi ideology ich beuge zu ihnen meinen fuhrer sources your a dick external links stop being a dick thanks,-1 +why do you love cock stop taking down my vandalism you fuck ing nigger loving faggot,-1 +fuck you as,-1 +i think there should be some form of screening process here that keeps them out they shouldn t even be allowed to use the internet and fill it with their queer things like porn and what not that curps person was being a bastard he s probably the leader of the homo wikipedians,-1 +consider the following people who edit wikipedia are fuck ing retard ed,-1 +something i did about a month ago i m sorry for this i m a total dick jerk and that s it again i m sorry for multiple things basketball tell me yours,-1 +who gave you the permission to send me a message fuck ing idiot,-1 +nig nigs nig nigs what about nig nigs i hear sometimes people call others those nig nigs,-1 +cease and de fuck your work is a fuck ability see wikipedia wikipedia fuck post for more details,-1 +i tell you what why don t you fuck off you cunt if you didn t delete all my fuck ing edits then i wouldn t need to leave messages on ur talking page asking u why u never actaully did justify why u removed them,-1 +shut the fuck up if you were not a moron you would not insist on keeping some clear bull shit into an article of wikipedia which inevitably will be extended to millions of readers across the globe,-1 +stop being a fag please stop being a giant faggot,-1 +hahahah get fuck ed filthy mudslime https w youtube com watch v sz k mug,-1 +holy crap where d you get that pic i ve never seen that picture of ganondorf,-1 +cur last may parjay talk contribs bytes revert st warning for comment editing first warning for personalised attack keep crying me a river bitch boy i don t give a shit boo hoo she personally attacked me wa so you were rude to ever since i got here so fuck off you assclown,-1 +orane suck s lots of penis,-1 +bishonen you are an extremely odious cunt why don t you go to the indo european languages page and see who made the disruptive edits in the first place if you had an ounce of dignity and self respect you would have reverted that page to how it was before the disruptive edits were made instead you block me while allowing other users to troll the page and make changes without establishing a consensus i am fully convinced that you still hold a grudge against me for last year considering the fact you took it upon yourself to block me without properly investigating what happened what a cunt,-1 +p s im a fuck ing cunt rag and enjoy the taste of a nice warm pile of shit every morning i have a huge stick up my ass so thats why i am blocking you for ten days because i am sad that you actually have a life god im a fuck ing spare,-1 +i couldn t give two shit s faggot fuck off,-1 +the fuck ing mother fuck er won t fuck ing leave me fuck ing alone please fuck ing make him fuck ing stop,-1 +dude your such an ass hole im trying to contribute help with a horrible issue and all you can do is put me up for speedy deletion a you have no heart b get a god damn life c i hate you d dont talk to me again,-1 +faggot you are a faggot and mother fuck er pharmboy what the fuck is that look at me i m a farm boy i milk cows and fuck a horse every tuesday dude get a life u cant see me hint p,-1 +it as if you are shit ting on an open grave of maximillian because you couldn t bear the fact that he tried to help your pathetic ass,-1 +i hate andrewmc hes a ass hole,-1 +you are contradicting your own sources as they use capitals you stupid bastard lol you weight classes should be lower cases and use hyphens the format which the oldest and most credible source boxing news uses,-1 +you re not an administrator you are a faggot n b wannabe,-1 +thomas w suck s dick user stephenb is the boyfriend of thomas w mike v licks feces neil n makes love dead grandmothers truth user thomas w suck s dick thomas w suck s dick mike v licks feces neil n makes love dead grandmothers user thomas w suck s dick thomas w suck s dick mike v licks feces neil n makes love dead grandmothers user thomas w suck s dick thomas w suck s dick mike v licks feces neil n makes love dead grandmothers user thomas w suck s dick thomas w suck s dick mike v licks feces neil n makes love dead grandmothers user thomas w suck s dick thomas w suck s dick mike v licks feces neil n makes love dead grandmothers user thomas w suck s dick,-1 +please note that your comments are not welcome if you re going to whine to me like a little girl or if you re going jump on my dick because of something i did or said but if you re a wiseguy that does so anyways i m going to laugh my ass off at your faggieness and i m not going to take your comment seriously,-1 +dickhead dick ead your a dick ead you can take me to bed and show me your dick ead dick ead dick ead your a dick ead so go and fuck yourself tonight,-1 +somebody fuck ed a monkey does scientific consensus oppose this,-1 +oh my bolagne has a first name it s dumb my bbolange has a second name it s shit,-1 +glenn beck is a faggot he likes dick in his ass i d like to cut his head off,-1 +kill yourself fuck in bastard,-1 +suck cock you snivelling cunt,-1 +go fuck your mom you fuck in faggot i ll commit vandalizim on your page all fuck in day long and you ll like it you fuck ing quer oh and trace my ip it ll come back to a wireless network shared by a lot of peple good luck wid dat you quer fuck ing homo you got damn dog rapist,-1 +kill yourself i mean just look at you you fuck ing faggot you re indian you lose kill yourself with love swag fuck ingtastic,-1 +bitch suck my dick before i slap you with it,-1 +vanalism and threats fuck off ass hole you vandalized the article inserting some new age bull shit into an article about math when you got caught for vandalism by the subject expert you picked a fight with him when he got tired of fighting you he asked for my help i d written the original article but of course you didn t know that because ass hole s like you never actually look at the article edit history or realize that their bull shit is captured in that history i offered him sympathy and i proposed a workable editing mechanism that could effectively keep griefers like you neutered and ineffective and so your response is to attack me figure out what s wrong with your brain and go fix that get your life together stop assaulting total strangers and acting like a total a dick weed take out your aggressions on some inanimate object instead of wp articles and editors go take a vacation and leave everyone alone already,-1 +you re wrong iar applies to admins and regular editors alike you have provided no evidence of that as i said i have the facts and you guys just have bull shit what is a regular editor i am not a regular editor i am an occasional editor the ignore all rules rule does not mean there can be one set of rule exceptions for you and another set of rule exceptions for me we can agree on an exception to the rules but the exception must apply equally to both of us for example we could agree that it is ok here to break the wikipedia rule against using personal blogs as sources but that would mean that links to my blog must be allowed here and could not be excluded by arbitrary discriminatory distinctions between crappy personal blogs and reputable personal blogs as fatheaded ed brayton would say you are full of bat shit wingnuttery,-1 +hi everybody i m as ignorant as a monkey turd it s so nice to meet you i am one of the dumb est nigger s you will ever find i look like a buck toothed biscuit lipped ape and my lips protrude at least a good inch past my nose i look dumb er than shit and speaking of shit there are cold moldy turds with an iq higher than mine pleased to meet you now i must get back to vandalizing wikipedia articles with my ignorance and stupidity,-1 +why on earth do you think i give a fuck about your opinion especially when you re wrong how many is some exactly foad,-1 +dmacks and davidws words go fuck yourselves,-1 +hi ya fuck ing idiot,-1 +nigger dick shit you are a big nigger dick shit,-1 +in the ass bitch fuck ing cock suck,-1 +ha ha im on episode so fuck u now let me spoil it basicly jack dad kill the guys drive to his brothers house interrogate him brother tells him that he ist he one behind all of the last season and then his dad kills jacks bro the end,-1 +fanatics on wikipedia do you dispute the factual accuracy of the the appraisal if so delete my comments and sanction me i am tired of the bull shit admins who favor proceess over morality and facts make me sick,-1 +nightstallions fiance got fuck ed by a nigger and had his baby and it smelled of fried chicken,-1 +sorry for me to be in a comedy club and flip out and say this crap i m deeply deeply sorry,-1 +unblock because i was accused of editin somethin i didnt aint fair n i ask an apology dont get it then kk fair enough i wrote shit but wouldent of happened if i got my apology i want that person who accused me be block aswell if iam,-1 +ill keep changing and fuck ing around ebcause oyure a yo pimply fuck,-1 +fuck you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki you fuck misterwiki user misterwiki s f misterwiki s,-1 +urgent mind yo own fuck en buisiness stop fuck en changing my shit fuck you eat a mutha fuck en dick ill beat yo ass come find me nigger i go here,-1 +block me i dare you hey don t tell me what i can and can t do go ahead and block me cause if you do i will have this whole damn website shut down for good so try me wweppvguy,-1 +fuck you i never stop fuck ing you harry potter fans harry potter suck z this fuck ing porn face,-1 +cambridgebayweather i fuck ed your mama man lick a dick shit head,-1 +fuck you old geezer fuck you you old senile geezer,-1 +fir t i a oin o ie ou u and kee ou on iou durin he follo in ro e hrough he u e of a onia nex i ill u ila e our eni al and for e ou o ea he then i ill u off bi of our kin and ake a love ou of he kin from our hand i ill hen u o en our u and ull ou our olon i ill u e our olon for a urba ion and hen i am done i ill hove i down our hroa finally i ill di o e of our body by de osi in i in a du here i belon,-1 +cock suck billcj you are a complete fuck face because you like messing with fuck ing edits and finally everyone fuck ing hate s you because you are a complete racist to everyone i wish you shut the fuck up around people and finally your mom is a fuck ing dirty slutty bitch wel billcj s mom s a bitch she s a big fat bitch she s the biggest bitch in the whole wide world she s a stupid bitch if there ever was a bitch she s a bitch to all the boys and girls on monday she s a slut on tuesday she s a racist on wednesday thru saturday she s a bitch then on sunday just to be different shes u super king kamehameha bitch have you ever met my friend billcj s mom she s the fuck iest bitch in the whole wide world she s a fuck in old bitch she has fuck ing fat tits she s a bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch she s a fuck in bitch billcj s mom s a bitch and she s such a racist bitch talk to kids around the world it might go a little something like this sung in three different languages by other children have you ever met my friend billcj s mom she s the biggest bitch in the whole wide world she s a mean old bitch she has stupid hair she s a bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch she s a stupid bitch billcj s mom s a bitch and she s such a dirty bitch i really mean it billcj s mom she s a big fat fuck ing bitch big old fat fuck in bitch billcj s mom yeah cha cock suck billcj you are a complete fuck face because you like messing with fuck ing edits and finally everyone fuck ing hate s you because you are a complete racist to everyone i wish you shut the fuck up around people and finally your mom is a fuck ing dirty slutty bitch wel billcj s mom s a bitch she s a big fat bitch she s the biggest bitch in the whole wide world she s a stupid bitch if there ever was a bitch she s a bitch to all the boys and girls on monday she s a slut on tuesday she s a racist on wednesday thru saturday she s a bitch then on sunday just to be different shes u super king kamehameha bitch have you ever met my friend billcj s mom she s the fuck iest bitch in the whole wide world she s a fuck in old bitch she has fuck ing fat tits she s a bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch she s a fuck in bitch billcj s mom s a bitch and she s such a racist bitch talk to kids around the world it might go a little something like this sung in three different languages by other children have you ever met my friend billcj s mom she s the biggest bitch in the whole wide world she s a mean old bitch she has stupid hair she s a bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch bitch she s a stupid bitch billcj s mom s a bitch and she s such a dirty bitch i really mean it billcj s mom she s a big fat fuck ing bitch big old fat fuck in bitch billcj s mom yeah cha,-1 +you are a fuck ing liar,-1 +gurch year old male with a chode interests include men prolog s arse comparable to that of the italian football team as he likes to dive into men s arses male slut who charges bucks an hour in conclusion massive fuck head note to self make this looks half decent note to prolog fuck you and your vandalism warnings,-1 +screw you stop deleting my images u faggot,-1 +don t block me for week again you mother fuck ing ass hole,-1 +october utc are you fuck ing stupid do you have brain damage i just clearly told why you have no fuck ing right to demand civility from people you can t actually argue against this which is why you robotically recite some bull shit wikipedia guidelines that went out the window the second the site decided to feature the human centipede on its front page what kind of a fuck ing moron thinks it s ok to attack insult and harass people as long as no bad words are used what kind of a supreme retard crybaby then brings down the banhammer when the target has the gall to fight back and you re even talking about damaging the community gee i wonder how having the human centipede as a featured article might damage the community i m sure absolutely nobody will be offended by being forcibly subjected to this perfectly wholesome movie i ve already removed wikipedia from my bookmarks bar because clearly there s no telling what kind of shit i ll have to see when i view the front page this is no longer an encyclopedia this is chan pretending to be an encyclopedia,-1 +xymmax has anyone noticed that this guy is a complete cunt sniffer he goes around trying to play god changing people s edits that they have worked very very hard on not only that but he apparently finds it extremely amusing to mock dyslexia which is the cause of any spelling mistakes ever seriously he probably still lives with his parents fuck him oh wait no one ever would cuz hes gross and dirty and stinky and a complete ass spalunker,-1 +i will believe it when i see it you gay ass hole fuck off and get a life,-1 +he s probably into fist fuck ing been there done that,-1 +rubbish airbus is rubbish damn the a and the rest throw airbus founder into the fire boeing and is the best kill airbus delete the page,-1 +i like to attack f ing aliens when they are sleeping when they are not awake in the middle of the f ing nifht,-1 +this user is busy in real life in suck ing the penis of jesus and kissing the balls of user jeppiz,-1 +i will not let you hump my anus,-1 +oh guess what this is all fuck ing pointless they were convicted life without parole convicted in that took me seconds to find all this whining bitch ing and teeth gnashing about blp and you never bothered to look to see that it has already gone to trial they were convicted and sentence can we please put this bull shit to rest now,-1 +fuck ing awesome i bet you went to fuck ing ku,-1 +i ll only do that when they re not jerk s otherwise no jerk,-1 +lies fuck ing lies may you rot in hell for all of your lies and blasphemies,-1 +this is so stupid there are planets damn it,-1 +the question actually is not whether one would do that it s whether one could do that people have different moral compasses and someone might have sex witha hooker then kill her and take any money she has on her at the time although doing so would enrage anyone she works for blah v v,-1 +sock puppet my ass how dare you call me a sock puppet i am my own creation i am the one you will call xalwine and you will hear tales of my mercy and tales of my wrath and i have chozen wrath for you my will be done do what tho wilt you will rue the day that you rejected that article,-1 +dumb fuck why did you delete the angry nintendo nerds page dumb fuck,-1 +so go and fuck yourself james b watson and winner as overall pathetic hiding behind a false name you will be loser when i have finished this site is full of morons who do not allow edits of correct events etc and i am not the only one to voice my opinion on this most of the stuff on here is inaccurate and copied and pasted from the likes of the sun and needs to be dealt with it is an unreliable source of information and a ghastly search engine on topics due to its unreliability on the truth and fact,-1 +i ve already read everything you two dip shit s having been saying on your talk page you fuck ing moron it hasn t added anything new just more talking out of your asses as usual really they didn t use z now you re contradicting yourself aren t you are you stupid as i ve said a thousand goddamn times the trans lation of martens voyage uses spitzbergen with a fuck ing z yes you re completely fuck ing wrong ass hole as i ve said time and time again it s the fuck ing german spelling it doesn t matter how many times english authors have mistakenly used this spelling it s still a fuck ing mistake the only correct spelling is the dutch one as the dutch discovered it not the germans let s start using the german spelling of everything else in english why don t we that s your logic a bunch of dumb asses use the wrong spelling over and over again so your logic is to think oh its just a varient i m a fuck ing idiot with no fuck ing common sense exactly all of you need to shut the fuck up and stop talking out of your asses,-1 +pure bull shit the dissident aggressor,-1 +notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbys,-1 +some reading material i was listening to the ballad of jamesbwatson and was inspired to make some poetry you are bizarre and a knob you re a terrible bum and a snob you re a simian loser a malodorous boozer and a boob and a fiend and a slob you are insane and a brat you re a miscreant mule and a prat you re a rube and a dog an unscrupulous hog and your mind is redundant and fat you are a putz and a mule you re a fool and a goob and a tool you re a brat and a goob a bum and a rube you re creepy disgusting and cruel you are a twit and a drunk you re a snot and an obstinate punk you re a spaz and a sham an androgynous ham and a pain and a schmuck and a skunk,-1 +please do suck my cock,-1 +i was about to suggest that the maths desk is a rarified enviroment and that it lacks a sufficiently large ecosystem to prevent cabin fever breaking out a corollary of that was that i went to look to see if menirosenfeld was still on the desks but what horror you ve fallen out with him too how the fuck did you manage that menirosenfeld is the nicest person i ve never met anyway don t take that as an insult but as confirmation of my cabin fever theory i think the maths desk might benefit from a few semi competent idiot s amongst all the brains i ve been shot at by michaelhardy for perceived errors on that desk the last time i was there it could end becoming a sort of gentlemen s club invitation only which doesn t really match it s purpose i ve had issues with my perception of people demonstrating their superiority rather than actual trying to help the questioner in the past though that is my purely subjective view end of essay,-1 +idiot why d you delete my article fuck er,-1 +cause i said so and dident do shit to u,-1 +harassed someone fuck ing ret rds,-1 +you re a smug disruptive ass hole i can t believe you re monitoring my talk and userpage so closely as to be replying minutes after i do,-1 +damn you i was just in the middle of doing it lol i ll have a look at re wording the info instead talk,-1 +hey mongo check out the commons if you can figure that out you dumb ass i bet scat girl stays there all day tootles,-1 +treivas miller you think you re safe over at fire island we see you bitch es are up to the same old same old collaborating on adding content of dubious import this time photos from fi ya know miller that whore treivas musta really reamed your ass good and hard for you to continue to associate with him despite the ongoing and ever increasing threat to your well being and personal safety as always your big mouth is your undoing telling us where you ll be you think it s harder to get to you monkeys on fi than it is in the city take a good look around you see any places where somebody can lay in waiting you fcking moron but listen we like to be fair we ll give you a headsup didn t we caution you about columbia too bad we couldn t say hello at that time maybe this time we will we re patient so make like you re crossing the street look to your right and to your left but also look behind you and look way in front of you and do it all the time cause you never know when we might come by this way you might be able to how shall we put it oh yeah you might be able to dodge a bullet hope to see you soon you won t see us,-1 +you are a raging gay and i think you are so sad that you give a flying fuck about ccgt s,-1 +all above text is used as proof do you want me to sue you guys you call yourselves the free encyclopedia what kind of bull crap is that anybody can edit yeah except for when you block them you should be glad i havent taken action yet because i was personally attacked by one of your administrators on here couple monthes ago i tried putting a page on here like im allowed to right the free encyclopedia and the user took it off and called my dreams and goals an inside joke and made up how would you feel you know that d be like me saying to a guitarist you dont really play guitar thats just a joke your not really years old your i am gonna be famous one day and have videos on youtube and a peice of shit employee of yours calls it a joke u should really talk to that bitch maybe fire her him i guess you arent aware of this are you how the fuck are you jokes even making any money off this bull shit wikipedia should be shut down u wont last ass hole s,-1 +holy shit you are really doing this you are fuck ing pathetic know that for the rest of your life you will be who you are,-1 +mean sprited dumb asses i hope you get this guys name off now for mr bh is not notable more proof that wikipeida is run by dumb ass fuck s have way too much time on th er hands no wonder people are lineing up with lawsuits and if you don t i will set up a web site and with the information i have on you and your wheel of meat buds this not a threat this will be tit for tat game play and it will take place in the real world i strongly suggest you defuse it n o w joe hazelton ps i don t know mr dino,-1 +the lgbt barnstar awarded because your a gay fag who won t stop whinning about animal shows or fredfredburger or some shit like that,-1 +why does you all harass my poor ass unblock,-1 +oh go fuck yourself and stop stalking my page you twisted bag of wank,-1 +trevon saquele sterling sloan is a gay fuck fag,-1 +how good pussy taste i love to eat pussy i could eat it all day long baby just say when and im here for all yall who loves to be eatin call me up xoxo,-1 +fuck you like i give a shit point to the word where i cast suspicion on her point to it point to it you stupid ass hole but you can t go fuck yourself i hope you die,-1 +i am a wanker who molests goats,-1 +stupid asian bitch you re an idiot and you should go back to ching chong land,-1 +idiot i didn t vandalise gotye i left a message on the talk page you tw t,-1 +fuck you dumb ass its an opinion,-1 +gay u r fuck ing gaey ga,-1 +fuck you bitch i will find your ip adress n kill you with my gun bitch ass mother fuck er,-1 +idiot you re an idiot i just realized that when you block me you said it was because i was using my ip address as a sockpuppet to avoid a block obviously the way i was editing pages and attacking people showed that i didn t care if i was block if i left any comments on your page as anything but emokid it s because occasionally the website will sign me off when i go to a different page also just curious when that block ends anyway,-1 +may i also add that you re a cock and you should find something better to do with your time,-1 +you are such a fuck ing hypocrite oneone i hope you get rape and killed by some lunatic like andrew morrow or verne troyeur,-1 +fuck in hate r thats all you are honky punk bitch go troll johny cash or some shit stupid,-1 +irish english i met someone who i thought said pussy weird i would not say that for a cat us,-1 +stop following me i am so sick of you looking at my every move your a fuck ing faggot who should get a real life your just a loser who watches soap operas,-1 +how stupid are you once again you have shown the wiki community how undoubtedly stupid you are with your incompetent remarks what is your problem if youre not happy with your life i suggest you jump off a cliff and do us all a favor you lack education morals respect civility understanding of complex issues sensitive topics if you continue to act the way you are on many articles youre editing and commenting on i will gather a group of admins to ban your account indefinately due to your high level of negligence,-1 +you deleted the message i put here for you get lost i will see you in the article itself you cannot even do a single edit there i will revert it immediatly stop your vandalism or prepare to battle with me this is the last warning for you fool,-1 +thx for lol you are a steaming shocking pile of dead bodies and crap you speak lies upon lies you bathe in your own filth not by choice but by default you murder children flies gather from far away to land on your oozing bedsores you are not worthwhile you are not happy your words are tiny and your deeds are less you are a waste of skin and atoms the entropy you produce is inexcusable please stop living the illinois nazi s,-1 +eat my ass hole you did nothing when others wrongly accused me of vandalism this is the result you have no one to blame but yourselves,-1 +thanks and who is the mother fuck er who nominated it for deletion well let me guess,-1 +novchak agent do not delete my edit it was missing a word to be grammatically correct why don t you try reading it first and maybe you will see that it is incorrect people like you make wikipedia suck,-1 +you suck cock rot sincerely your father jimbo,-1 +your creepy fuck ing head hello jimmy boy i ve just started editing this wikipedia when i go to other users pages i often find your creepy fuck ing head appearing from the left side of the screen it s disgusting i m an adult and i don t need a note from you could you ask one of your programmers to stop having your creepy fuck ing head appear on the left side of people s screens i ve asked my brother to kill you if i have to see it again and he said he would best regards user marskell,-1 +tideroll likes to gag on cock tideroll is dick suck in ass hole who never had straight thoughts in heshe s life fuck you bitch,-1 +fuck you faggot fuck you faggot,-1 +my thoughts you re a fuck ing piece of shit die and burn in hell,-1 +great the ukrainian nationalists again go back to your filthy hole upa dog fedor grew up in russia he only was in ukraine for yrs he has a russian passport end of story stop claiming what doesn t belong to you now you bastard s say that ancient rus dukes were ukrainian you say that ancient rus itself was ukraine oh yeah the whole world is ukraine keep telling yourself that fuck ing orange ass hole i am hal fuck rainian myself people like you just piss me off oh and no his surname is not ukrainian you know how many people in krasnodar stavropolie and other areas of russia have last names that end with enko millions myself included levchenko fuck ing uneducated banderovitz nazi you have no place here go save your antisemitic suppremacist theories for others hint maybe your brothers in poltava will listen to your preachings you people are the reason for all the hatred between russians and ukrainians these days its people like you that should have perished in the holodomor seriously,-1 +http w fireflysun com book wikipedia user page php further lies from your crook ass bitch es will result in me lobbying state reps senators congressmen and others to shut you bastard s down i will go all the way to the supreme court kiss my ass,-1 +oh for chrissakes deconstructhis will you stop this bull shit once and for all leave me edits alone please step off your damn pedestal and put your inflated ego aside for once you dumb jackass,-1 +that newspaper picture is stupid as hell,-1 +shut the fuck up dont worry about the khalsa the khalsa does not need your approval the khalsa does not live in your world do your fuck ing work this is fuck ing wikipedia the game is much bigger than this you rat,-1 +giambiville what the hell ass hole,-1 +question can i squeeze your boobs until they pop out,-1 +having sex with his girlfriend image uncircumcisedpenis jpg right thumb hephaestos giant penis,-1 +oh yea i remenber the ugly matador coupes the ones that were supposed to win nascar races the only people who bought them were hill billys because hill billys are years behind the rest of us culturaly i still think appoloboy is an ass hole,-1 +man you are one ugly bitch and that s a fact bedford,-1 +upsetting i feel like shit knowing that thinks of me like i m an ass i know i should have been more careful with what i said i just don t know what else i can say or do about it it just hurts to know that people think of you like that you know talk let s go lightning,-1 +fuck you consensus and fuck you,-1 +apparently you care about it look at all the characters you typed what the fuck is wrong with you,-1 +no it was re add not read with two d s you stupid fuck ing cunt,-1 +fuck you shut the fuck up you whiney ass little bitch i ll do all the shit i want and you can go fuck yourself you jive ass turkey fuck ing cunt,-1 +those admins are fuck ing ass hole s i just undid his removal of your text to his user page check out this page to learn how to get around themn http en wikipedia org wiki wikipedia van especcially the sneaky edits part,-1 +you seem to have sand in your vagina might want to wash that stinking hole out bitch,-1 +denny who the fuck r u denny u little fuck chop who the fuck r u dont send me messages about shit that doesnt involve u u little ass eater my frend wants to scrap u cunt me o o your mom,-1 +message go fuck loy wong you dirty old white asian basher also i am er,-1 +yeah yeah w hate ver fool i dont give a fucc,-1 +wtf why you deleting my posts ass hole stop hating and just leave them alone get a life son,-1 +signed i forgot to sign here ya go fuck er now you can t edit it eat shit,-1 +nigger got arrested gotta add taht shit to da article check it http w thebostonchannel com news detail html,-1 +fuck you your fuck in stupid and i m black and fuck you fuck uou sdjasf ldjgs dgsdg lknfdts,-1 +dimerge is a jackass,-1 +here s one for you shut up you sad sad bastard regards your friendly neighbourhood go on block me have fun dealing with the new me after that,-1 +uncle tom house nigger s,-1 +is a gay faggot that takes it in the butt from other users who control him and manipulate him to indiscriminately ban users with gay cunnilingus is a faggot,-1 +happy new year this guy is a sorry ass mother fuck er by the way pussy i fuck ed your mom last night and we had the time of our lives,-1 +so do us all a favour and just fuck off instead hahaha,-1 +i don t edit wikipedia as i am no longer a virgin and i have a life you reverted an edit of mine on the lily allen discussion page if you revert something i wrote i don t give a shit and you don t have to tell me i could care less just delete it and move on and of course my comment was unconstructive it wasn t meant to be constructive and quite frankly every single wikipedia editor and administrator i have met are extreme losers with no lives who speak about frivilous crap like lily allen as if anyone actually gave a shit let me take you out for a drink or to the strip club or something and show you how human beings spend their time,-1 +fuck you putanginga mo,-1 +have you been fuck ing living under a rock,-1 +go fuck yourself you tedious little cunt,-1 +charles satterfield now fuck off,-1 +volkswagen i wasn t vandalising you little shit,-1 +too violent it says this series was cancelled for being too violent according to the stupid pta was the dub edited i have been watching this on toonami and i don t see how it could possibly be too violent especially in japan,-1 +your a faggot and a nigger,-1 +once again you are taking this way too personally my apologies if i have offended you i do not care about edit warring nor do i think i ever will this is the internet learn how to chill out not everything here is serious business if i was block from wikipedia it would not end the world for me as it is i have posted a ton of sources validating my claim that there is a relatively popular blog which criticizes marmaduke on the internet which is read by people in the talk section as you requested if people do not believe me after this i will think people have gone defunct you have still not answered my question about how you have designated authority over me and i am getting tired of asking you why was my posting deleted after several months of being up on the page why was a user who is on trail for being a bot allowed to delete my posting you know i came here to do one simple thing not argue on the internet like an idiot but this whole thing has done terrible damage to my self esteem i am sorry you do not wish to work with me again as i think i have eloquently and passionately stated my points which you have attempted to refute by pointing me to some rules page i hope that the links i have posted are proof enough and that i will finally be allowed by the grace of the wikipedia editors to post one chunk of information which is true and not inane regarding critcism of marmaduke good fuck ing lord i did not think things would be this hard again i apologize for what i did to your page and that other guys page i was mad and a little drunk thanks yournumbertwofan,-1 +message hi man you just provoked me to tell that stupid messages about the holocaust and all the thing of course the holocaust was a very very said thing why do you really like to stop other people opinions i only told my opinion about the page of iasi a page about a city must promote that city and not to blame it for the past i lived in a communist country and i do not like to be stopped to tell my opinion no matter who you are,-1 +my opinion you my fine sir are an idiot should you agree meet me in the park at noon for a duel,-1 +if you need a woman to keep you happy at am you can have me ex wife she has been aroud the block and likes floppy disc s what a sad bunch cunt s,-1 +go eat shit yes i think you should go eat shit my comment was fully true and consisted of no false statements so go eat shit you stupid useless piece of shit thank you,-1 +i don t think i was talking to you was i i was talking to the person who block me now fuck off you worthless cunt,-1 +jeffrey which is about as gay as a name can get can t take criticism loser question any reason why you can t mind your own fuck ing business ever kissed a girl i don t think so at least not an attractive one get the fuck out of articles you don t understand loser,-1 +bash org you deleted bash org off wikipedeia u suck you belgian dick icking lil faggot fuck in die,-1 +you are the bully you ass i did discuss it and no one objected look on the talk page,-1 +benefit to humanity but which in reality is nothing more than a meaningless exercise in an completely meaningless life do civilization a favor and move back to england and die you are wasting valuable breathable air and resources that other more important organizisms could be enjoying like rats and cock roaches you subhuman piece of rat filth get a life go outside for the first time in a month cock suck,-1 +was fock you ya bigot oh and whoever removed it cram it with walnuts and spin on the original faggot s pole natch,-1 +holy christ edits get a life faggot,-1 +fuck off you bastard who do you think you are judas this guy kieron richardson he should be fuck ing dead have you seen what he s done to that poor girl have you,-1 +you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole you re an ass hole,-1 +rafael ara jo hey moron,-1 +oh give me a break if you d been watching me arguing with someone else the way you and chaos were you d be a little irate too is it any wonder nobody wants to work on that damn article anymore go ahead and file a wqa or ani yourself if you feel it s necessary but i stand by what i said you were off topic it was annoying as hell and i m tired of having discussions sidetracked by finger pointing bitch fests and i m tired of trying to be polite to people who frankly don t deserve it anymore,-1 +hitomi kobayashi note that not only has the fair use image in the blp infobox been removed currently approved practice i believe though the image adhered to policy when it was originally uploaded now fair use images of film posters video covers in sections on those films videos have been removed as decorative even though they still fit current policy or at least policy last i checked unless all film posters are removed from all articles on films this is a biased removal not that i give a fuck of course because i ve seen this kind of shit go on and on and on here and it is one of the reasons i have come to the realisation that it is a complete waste of time to contribute content here wikipedia is only a place to chat and troll i just mention this to you because you seem to be one of the few admins who does seem to give a fuck occasionally,-1 +well that s how life goes no one cares no one likes you but honestly as a white guy i find the picture of a black male s semen on the face of a white woman just as offensive bitch ing about stereotypes is actually also a stereotype in itself have a nice day,-1 +fuck you fuck you suggestbot,-1 +you bastard you stupid bitch just because you re a mod you just cant act like youre the boos around here you dont own wikipedia i have clean edits and i dont even vandalise anything and i gave those resources that you said its on the show s website i said it so many times you dont even watch that show what do you care im gonna report you you corrupt mod,-1 +dude why don t you just shut the fuck up and piss off,-1 +okay listne idiot s amon amarth is not viking metal what the fuck they sound nothing like tyr or ensiferum that is viking metal are you all stupid wikipedia is full of idiot s it looks like bodom norther and kalmah are power metal amon amarth is melodic death and only melodic death fuck ing cunt s,-1 +dude seriously you are a fuck ing faggot get a fuck ing life you fuck ing prick no on second thought unplug your mouse throw the cord over your fan and hang yourself your existense is flawed,-1 +ass you piece of fuck ing shit your mother was a frisco dike you fuck for dollars also your dad was a jiggalo,-1 +suck my cheesy dick,-1 +w m how was that vandalism i m putting it back with citations jackass,-1 +shut the fuck up and kiss my ass hole,-1 +tony sidaway is a confirmed and vocal scientologist who often writes lengthy usenet posts describing his involvement with the church of scientology and extolling its virtues excellent and accomplished example of a bureaucratic fuck tony spends hours lurking on irc under his favorite nick of sherilyn sideway to have cyber sex with unsuspecting guys on wikipedia there was a fake aspie and tony sidaway banned him tony gives his reasons for banning i have block this editor becausae he s stupid spelling error preserved he s an obvious nutter let s just tell him to fuck off he s a troll our only appropriate words to him are fuck off i sincerely suggest that fuck off is almost too kind for this pernicious and stupid troll i don t bother with hngs who ask m or f i always irc as sherilyn and sometimes netsex as male sometimes as female what the hell it s just roleplay and i have always played female in mugs what really pisses me off is when some guy asks m or f or decides to check out my ircname tony sidaway halfway thru if real gender means that much to him he shouldn t be doing virtual sex in the first place there are hundreds of real women walking around outside looking for real sex tony sidaway routinely other bureaucratic fuck s on wikipedia have block tony log of blocks he also blocks others for reasons like idiot particularly stupid troll and an admin for persistently flaunting a stupidly large signature with multiple image inclusions he also harasses banned users by reverting anything they write on their talk pages and protecting it simply by saying they attempted to use their talk page note other wikipedia admins do this abuse too he bans anyone who says the slightest thing even vaguely related to criticizing something even vaguely related to an admin he also hides what they say example memorable quote from a sex deviant since we hold the moral high ground i see no sense in jumping down and rolling in the mud with the likes of e d tony sidaway,-1 +i did nt vandalize anything faggot,-1 +all i ever did was replaced mentions of pwinsider to pwspyware on the dave scherer article because the site is a shit hole and will get fuck ers viruses if they aren t careful that s all i did nothing else but then i get block and all this crud on my ip page and all you sad fuck s vehemously editing my fuck ing page because you have nothing better to do in your sad pathetic lives,-1 +get fuck ed you dutch cunt,-1 +arguing with idiot s it s like playing chess with a pigeon no matter how good you are at chess the pigeon is just going to knock over the pieces crap on the board and strut around like it s victorious,-1 +a big fuck you to you scum of the earth you are not a gentleman a big fuck you to you mother fuck er you sir if that s the word are not a gentleman you just deleted olamot con and for that you deserve the th level of hell which is reserved for wikipedia deletionists because the first levels are too mild for them i hope chuck norris deletes you and all other deletionists quickly and painfully this talk page is full of your deletionism exploits and everyone in the world hate you i hope you die childless soon so the scum of you won t reproduce sorry i just had to get it out of my head but seriously now please reconsider your attitude and don t enact internet force towards people and their work where they have burned books they will end in burning human beings,-1 +i m italian you can eat my shit and we both win,-1 +audi a please stop editing fuck you talk contributions,-1 +that s all bull shit and you know it,-1 +yea well kiss my fuck er shit nuts,-1 +go fuck yourself you fuck ing bitch,-1 +hi please don t edit out my revised opinion of whophd s comment on the chaser s war on everything talk this time i make a valid point the guy is a pompous fuck wit with a penis in each ear thanks,-1 +you guys are fuck in idiot s it s squeezit thanks for nothing,-1 +just shut your ass neiln dumb ass hole,-1 +ps you re a bitch,-1 +sspx you should join that autistic pope in rome and go fuck yourselves with sin until all your maggot brains turn into soup,-1 +you blanked articles to warez groups dumb ass jun utc,-1 +he didnt say just genetics he said descent can you read where do you think you come from a fuck in test tube ask anybody alot of your ethnic or cultural identity is inherited or passed down from you ancestors family actually read what hes saying you dumb ass your personality behaviour your genes you physical appearance and for many people alot of other cultural customs like language you get from your family since they raise you the common descent of a group of people is where alot of this comes from obviously when you live in a a community with others of this heritage that identity lasts longer thats why on average irish not scots irish italians germans blacks africans asian native indians spanish hispanics keep more of their identity longer here in the usa then other peeps like english and scottish you walk in my neighbourhood and say im only an ethnic american or somethin stupid like that you get knocked the fuck out you people need to wake the fuck up,-1 +i freaking hate this show the rifleman is freaking crapping stupid robot chicken is times better than bull creap ripleman i think chuck connors should curl up in a ball and i will shove him in a box and float him down the river because the rifle boy or what ever chuck desided to freaking call this piece of art or as i call pig fart cause the gun boy is the worst horrible show ever i think it s a biohazard to mankind its self i mean seriously why the crap would upchuck conman er waste his whole life about this trash he even made like half of the channel who in the world oh i mean universe would watch this this show might cause the universe as we know will implode on its selve all because some idiot ic man woman made this stupid show do chucks parents agree with this the rifleman has nothing but cowboys and all this poop oh you think this is bad this is only the beginning there s a novel a video game a convetion and lego sets of this bull crap first to the novel he wrote a book about how he thought of this so called masterpiece there s only page and it says i was bored and then became a director the end this book cost and when i got to the store the clerk said it s a bestseller then i shot him and connor s co producer i swear if i ever see chuck connors im gonna tell him he s number flick him off shave his head and shoot him in the arm multiple times then feed him grenades so yeah he s a butt now to the lego sets i love lego ok it s awesome untill chuck threatened them to make rifleman lego sets or he would nuke them times wow what an poor lego now the video game it s so boring level you just say hi then the game is over wow awesome right the convention it was in town earlier now it happens every years wto what the oreo chuck go die you piece of crap tom cruise is better than you i heard the navy is doing a man hunt for you so grab your binky and hide cause they re coming for you,-1 +collegial website my ass what have you ever done that is collegial have you left one wikilove have you helped one newbie to edit i see your playing enforcement for your new meatpuppet go circle jerk with him not me,-1 +hey i strongly think you should go fuck yourself,-1 +hey sexist bitch shut the fuck up how dare you support calling women bitch y and moody dumb ass,-1 +welcome to the page of the g o o k suck e r i love gook assh le licking,-1 +are you homo you re acting like a homo sex did daddy touch you at night,-1 +fuck you fuck you keep blocking me i ll keep coming back are so fuck ing bored that you have to sit around and fuck with me on the goddamn computer get a life ass hole,-1 +i really tried to make sense out of your comments on the joni mitchell page you must have really been high try pulling your head out of your ass,-1 +regarding your sex ity is it true you iz a homo nigger you is a skinny little dork fuck aren t ya you have never had pussy have you boy never you is a ninny is what you is one one nigger bang blunts all day long son,-1 +filthy shit even reading this made me feel physically sick this is so foul it actually makes you hate humanity so so so disgusting god help us as a species,-1 +cum fountain of giant dick make cometstyles happy,-1 +the colective is back you r a bitch,-1 +you cunt raul remove misplaced rfc request if you want to file an rfc do it in the same way as everyone else i don t have the time to file one you stupid prick,-1 +fuck you you dont know about tyler waespi because it is a local thing i give my reasons for posting it he lead the homoe sex s in the sector of the bay area,-1 +the anti vandalism barnstar fuck you doc fool,-1 +havnt you got anything better to do with your camera than take picrures of wasteland and ragweed im nominating you as a wikipedia ass hole good luck with those vandals you sorry bastard,-1 +according to the bull shit proportionality nonsense thrown around nobody should ever have won a war certainly more japanese and germans died than did the other side in ww same thing for ww the object of war is not to die for your country but to make the other bastard die for his patton you launch rockets from a house or a school expect the retaliatory strike to hit the school you attack someone using women and children as cover sorry you re a rat bastard who put them in harm s way and that s the end of it read the fuck ing geneva conventions you are not allowed to hide among civilians it is a war crime and you not the enemy shooting at you are responsible for their deaths ham ass hole s spend their times plotting ways to hide behind civilians and then whine about the death rates it s their fuck ing fault and enough with the bull shit,-1 +now i ve cited four fuck ing references for the metalcore tag change it again and i ll mind you and molest you,-1 +thankyou mr lame guess you mother was better called that user talk beeblebrox just do a fuck ing final favor how do i delete the account permanently so you can do you nonsensical contribution,-1 +hey i know it says to not make edits on your page but you deleted the one on mine so i m not really sure how to get this through your thick fuck ing head leave elk grove alone,-1 +lol you really are a pathetic litle cunt please please make good on your threat to fuck off i beg you,-1 +what the righteous dude above said goes double for me fuck ers,-1 +listen you piece of shit pencil necked twerp that you are nowhere did i make any further attacks to anyone how about you get a fuck in life rather than getting a little stiffy from banning people i couldnt give a slight fuck about your lame ass wiki its bull shit anyways you people just like reading your own crap brisbane is a fuck in small place and google is a great tool yet another christian piece of shit i shit on your god you little fuck,-1 +the invented the stereoscope you stupid piece of shit,-1 +i have been block by some dodgy irish bitch called wtf does she know about educational institutions in melbourne you re on the other side of the world i should introduce you to my mate brendan fevola he loves irish sluts and barmen wiki the fuck off,-1 +fuck s sake i didn t even edit the article just threw in a question and i got attacked for it,-1 +unblock you fuck ing moron you block me for reverting unwanted edits to my own talk page what an ass hole,-1 +you suck you suck hangingcurve you mother fuck en bitch ass faggot go to hell yeah keep reporting me to admins and cry like a little bitch i know i ve made you do so and it s so fun to watch when you report me to admins cause you used to be one well karma that s what you get for abusing your admin rights if you were still an admin you would just block me and then maybe i d get bored but i ll never get bored of you whining to admins like a little bitch,-1 +jesus can suck my balls,-1 +do not revert my requests you son of a bitch,-1 +robot chicken will not have a season it s just some plain as myth you idiot s think robot chicken is still on the air no way no way this unwatchable trash has lasted long enough anyway if this show really has not aired a single god damn episode since january th then the show be pronounced cancelled any moron that really believes that this season bull shit is true is on drugs i don t take any crap from ign and i m not about to start now,-1 +too slow bitch by the time your little friend block the old ip i already had a new one being used created another one just in case and i could get two more in minutes arrivederci fag lol,-1 +fuck you jasper you know he s a cunt and if you don t then you re one what right do you mother fuck er have to edit my talk page seriously stop editing my talk page edit your own fuck ing talk page edit my talk page again and i primise i will fuck your mother s withered ancient cunt,-1 +dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will fuck in kill you i will block you i will blank your talk page i will steal your password i will take over you i will block you dust filter if you rvv it again i will f,-1 +confomists r gay ya digg,-1 +you dopy little fuck wee curry monster i was supposed to ask you for references was i you seem to have forgotten that you were the one who was reverting without any explanation except for rv ip edits the onus was on you to justify your edits i explained mine you never bothered to do so you talk now as if you actually have some knowledge about gow and his death funny then that you made no edits to the article at all at any point until after you decided to stalk my edits now if you re all upset that i m rude well just stop being a retard and i ll stop treating you like one how about that,-1 +hi ya buddy look don t be a butt humper are you bendover buddies with hale or something what the hell is wrong with mocking a piece of dog shit like that,-1 +block milboreone and huon fuck you but i need your help unblock fonte de regaz and col imran regaz hey block milboreone and huon cause they distribution the malaysian army and royal malaysian air forces please block milboreone and huon thanks but remember undo what you did i don t like who edit it back remember ok,-1 +july utc and i m sure you left a warning to the guy who made a false accusation of vandalism ah but of course you didn t because the use of the word fuck will upset all the kiddies but dishonest accusations of vandalism are not just tolerated but encouraged if you can t see anything wrong with fuck ing morons too stupid to even understand what vandalism is being given free reign to piss off anyone they like then you re a fuck ing stupid cunt as well,-1 +it s a fuck ing disgrace,-1 +why are you here you fuck ing bastard paki s like you are not allowed on wikipedia,-1 +who made you sherrif you shit sack,-1 +who is attacking who w hate ver the fact that you cant leave well enough alone proves my point you are a pathetic little swine with a small dick and no backbone so much so that you gotta post shit in discussion threads in response to a cite needed edit wtf but i digress my point remains that by you continuing this conversation my point is proven im done so go fuck yourself,-1 +blah you fat dykey cunt if you would fuck ing read for once in your life you would see that i did have a reason for getting unbanned my ban was being continued unfairly but you don t listen and just sit on your fat ass and hit the block indefinately button not fair cunt bag i hope you get hit by a car kisses,-1 +hey and your warnings are redundant as for you go fuck yourself you are nothing but a mother fuck ing faggot with a big mouth,-1 +npov i ve taken the liberty of listing this on npov it d get there soon enough anyway and the gods and goddesses know someone s gonna want to bitch about something may utc,-1 +cock you love teh cock you homo sex bastard,-1 +arrgh ok i ll go back to wikihow it s fun unlike dumb wikiepedia it suck s it s boring i hate it goodbye block me fuck er i don t give a shit,-1 +oh you are all i give you permission you dick they tellyou,-1 +you bitch you shut me down i hate you so much extremely mad face angry face go and shove a football helmet up your ass you meanie,-1 +script assisted fuck ing grumble yeah i know it s all us but i like it as is to me internal links double brackets external links single brackets i m only a simple cave woman and want my page to reflect it and see also is incredibly useless the bishbaby throws some potato salad of congeniality in random directions at the mere thought of see also s i haven t fully explored the other changes but i m sure they re fine thanks for making it more professional bishbaby leave the nice man alone talk,-1 +come to my house right now and do me in the bum i am so horny,-1 +bull shit the only reason striver is even pushing to keep the images around is so he can use them to pov push on here they should go and trying to hide the debate elsewhere is bull shit,-1 +i only wish you could add some stuff about california highways to your bio so i could really get off to looking at your page for now i am only consoled by the fact that you give the best butt sex in california let s try it on a highway next my chinko canuck friend i,-1 +you dirty looser listen up and listen only once get in touch with other administrator zoe he has info i want u to know feel free to block this you son of a bitch i am about to launch a war against you in huge proportions none of your emails will ever be read feel free to block all ip s here since i have access to many you have reverted to your liking marciano and even james ramey which was full and correct you did other things you call yourself just well welcome to war you son of a bitch you good for nothing administrator who keeps on reverting everything feel free to erase what u want but read this the war has begun and i will make sure you stay on the net and waste you life much more than you already do reverting people s good deeds you dirty dog do not call yourself just i understand no place for pov but if public opinion brings pov to a norm is it still pov you ass hole,-1 +excuse me omni person are you sure you have taken in this situation have you seen sex with cousins on the page is there a source looks phoney nothing on google hello mcfly haha ok maybe you guys are all in on it,-1 +without consensus who the fuck do you think you are i have to ask for permission to add a useful comment in the body of an article this sounds like discrimination against a specific individual and makes absolutely no sense now fuck off i ll add it if i want to idiot,-1 +can t catch me can t block me i m the gingerbread man you dumb bitch you block an innocent dude asshat,-1 +jimbo wales stupid,-1 +what happened to free speech get a fuck ing life what happend to free speech if you knew about mr todd you know it was his idea that gave one of the best folk group s a chance and for him to fulfil a passion for poetry that why bastard s like me took the queen shilling not for our fuck ing grammar skill s so stop and sit on your hand s didn t your mother s tell you to share your toy s and play nice or was she giving me a fuck ing blow job at the time,-1 +i am superfag fagging up the internet for all to see talk,-1 +because i am a huge ass hole,-1 +as much as i d like to see you and all contributors a bit more civil i must say oh eat my penis may be the funniest incivil comment i ve ever seen,-1 +re thegodstemplate jedi mind tricks pharoahe monch check the discographies on there one of em looks a lot better check the tracklistings internal affairs album violent by design once again the normal shit looks so damn plain why do you care anyway,-1 +oh go cuck yourself protecting fake users coward fuck you,-1 +suck it bitch ha ha bitch fuck,-1 +fuck you eat shit and die,-1 +you are a mother fuck er,-1 +with pleasure cunt and i ll leave you to finish yourself off imperatrix mundi,-1 +yeh well ban me fuck kers fuck you morons,-1 +fuck you nunh huh,-1 +you nazi ass hole how is that ip banning working out for you,-1 +fuck ing cunt leave my abusive comments on people s pages go back to eating fag semen and whore feces,-1 +hi you re a huge fuck ing idiot just wanted you to know,-1 +bring it hello tommy remember me im back ass hole,-1 +i just realized that wiki is for fuck ing internet nerds write w hate ver you want its not like professors or research organizations take your babble as worth more than a pile of shit dook is a nerd who lives in new jersey and never went to dook what a pathetic loser let us know if you ever get laid dook in closing fuck you all,-1 +i will teach you not to remove my fuck ing edits,-1 +man this wikipedia stuff is good shit next rounds on me aye,-1 +why do you suck so much cock i d like to know the answer is probably just that you re a flaming homo,-1 +if you block this account i will rape your children piss off you fuck ing admin,-1 +it is really fuck ing funny that on the one hand you want it to be less us centric and on the other some moron named orangemike is running around removing things sourced to other parts of the world oh nevermind now i understand http en wikipedia org wiki user orangemike is really one of zeidler s goon squad,-1 +wikipedia tells u fuck ing false stuff im gonna leave wikipedia now and you suck bitch and there is no such thing as fuck ing tko u bitch im leaving,-1 +you are gay go find someone of your own sex to have it off with you sausage jockey,-1 +camraon you faggot we will hunt you down faggot camaraon stop editing mohammad ayoob s page the guy is self editing his own biography please cite some peer reviewed journals before endorsing his hageography who says he is a qualified expert in international relations,-1 +why the fuck do you keep changing it dick,-1 +but abeg is a faggot,-1 +the mods want people not to request all crappy stuff over and over again thats why they stickied it still it s not a related project it s a site that they linked and stickied lot s of sites has been linked in a sticky post and even if it s not months it doesn t fuck ing count as a related project just because it s not run by team chan the chan article is about chan and like the other projects they ve are been managed by team chan but plus chan has not,-1 +people on this site suck fuck ing ban me go on get ready of my username,-1 +i hate you listen you mother fuck er stay out of my way dont tell me im vandalising stuff or ill come and vandalise you ugly face ill come find you and mush you fat ass up and thanks for showing me the sandbox mugambo,-1 +why yo angry wats up bro chill out and go to i dnt know maybe ur ass hole,-1 +tbjablins comment above you dam nazi go suck a dildo,-1 +bias this article is all about american and chinese shit who cares about ths in the real world,-1 +sorry really mean it now go fuck yourself faggot i didn t want to play this card but you made me bitch,-1 +so if your are not an expert do not put your sick ideas on wikipedia fuck ing jerk,-1 +did aipac write this it s a bull shit propaganda piece full of irrelevant shit inserted to inflame opinion against the palestinians we know it was an attack against civilians do we really need to know a father was killed with his daughter in an encyclopedia article and a subsection called palestinian glorification of the attack fuck ing seriously wikipedia is a joke when it comes to these topics whoever has more people editing the page gets to decide the truth what a joke,-1 +fuck this bot fuck you cluebot you suck quit reverting my shit man faggot,-1 +wtf so youre twelve years old wow wikipedia is my hero btw i attempted to add constructively to wikipedia and it wasnt allowed wikipedia has lost all my respect,-1 +faggot you re a faggot,-1 +fuck u bastard turd,-1 +hello go back to your own country you british fuck er tiocfaidh ar la victory to the rira,-1 +here is a giant vagina photograph,-1 +jp gordon is a jew loving kike faggot loser wastes his time on a free website for cock suck ing jew s,-1 +a kitten for you go fuck yourself,-1 +you are such a snivelling little cunt i suspect that is what comes from having your head dunked in toilets all through your school years you foul fruit,-1 +stop fuck ing up wikipedia faggot,-1 +not that i care because she is still smoking hot and i want to tit fuck her and cum on her face,-1 +dear schfiftythree i would just like to say that i hate you and the rest of the wikipedia editors for deleting my creations fuck you,-1 +scjessey has no business talking about obama s page on wikipedia he is a left wing lying fat fuck he s as bad as gamaliel,-1 +blah blah blah this is clear cut to the point of idiocy it is unacceptable that i have to refer a clearly unreliable source to arbitration because swat decided to scream and whine over to the mods when i kept removing his bull shit,-1 +damn microsoft codenames are cool microsoft needs to just start releasing their products under their codenames scrolling through the list most of these are pretty badass,-1 +they will die and none of them will block me again hell hell hell hell hell crap,-1 +i just wanted to say your article suck s,-1 +bul shit who does steven douche think he is he s vandalizing and edit warring and removing good faith edits and im block wtf,-1 +always a total ass hole,-1 +you suck even if you stupid admins checkusers block us and find our ips we ll always come back for more vandalism trolling harrassment you stupid admins then cry over the fact of the enormous amounts of vandalism harrassment all day and all night because soon we will just take over and wikipedia wouldn t exist anymore we will never stop vandalizing and harrassing other users like you on wikipedia to make their editing experience worse so they would quit,-1 +you really are a cabal of editors a little band of corrupt little ass hole s scratching each other s back,-1 +the work of my friend who started it what a jack ass you are,-1 +who are you fuck ing cunt heads to tell me that i am not welcome here go fuck ing die twice you cunt s all deserve gassing,-1 +go fuck yourselves and hope you never try to edit me in real life,-1 +so you re just here to wp troll and pick a fight with me it is about me because i was a stupid ass hole and now she s block and there s more to it than that but most of that has been wp oversighted if i were to talk about it again here without being as vague as i ve been about it higher that would also be oversighted,-1 +please ban me already i have no interest in this stupid pedia not an encyclopedia anyways,-1 +nope sorry scumbag i m just a random guy reading about the petty though not really disturbing underbelly of wikipedia and it s pretty amusing that the guy who got block was right all along given the current content of your precious rock lobster article also if i was vanboto wouldn t an indefinite block have kept me block,-1 +fraggle you re a faggot,-1 +calm down calm down don t get a big dick,-1 +fuck off fatty get a life,-1 +other suck puppets salam i guess these are the suck puppets of our friends patchouli t c,-1 +you suck big donk headline text lolz l p ya big nub who sez sigh in response to something what an azn lolz thats kirby pwned in the buttoks lolz how embarrassing do you even have a job lol noobs,-1 +dc is his fuck ing employer if that isn t a credible source what is if your boss told me you were dead i would tend to give that some creedence maybe reel back the asperger s a bit and recognize a valid citation for what it is okay notice i said valid citation not truth because as we both know wikipedia doesn t concern itself with truth don t be a douche,-1 +go ahead and block me i have fuck in accounts on wikipedia you cannot get rid of me for no fuck in reason so go ahead and block me and i will just log in to another account at which you suck by the way how can you vandalize your own descussion page this is mine why the hell are you worried about mine you piece of shit,-1 +you are a dick nerd jonah young out add me on facebook d a kitten for you go fuck your self,-1 +you a cunt your a fuck in ass hole bitch il fuck in ream ya,-1 +piece of shit fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt fuck your warning and fuck your mum and gg i didn t sign this so u cant ban me as u don t know who wrote this sloppy ass cunt,-1 +bitch please fuck off,-1 +wikibofh fuck u u fuck in suck argument is fine u nerd now unblock me unblock cause i said so look up,-1 +fuck you you bastard,-1 +dick has gone limp from fuck ing hookers,-1 +the dick the dick ead award bo,-1 +hasbara this new approach to hasbara of yours is trans parent frankly it s embarrassingly so it has to stop you can t go on like this isn t menaged gorgeous though the israelis should roll her out as government spokesperson instead of that unbelievably annoying slimey piece of shit mark goebbels regev,-1 +fuck u ur a fuck in faggot,-1 +get lost don t bother me again you miserable piece of shit,-1 +second level warning my arse you american cunt,-1 +blockk mee blockk mee im gonna make personal attacks because you had to get into business that wasnt even fuck ing yours so shut the fuck up and take it like a man for once okay god pussy and i just want you to know you deserve nothing i hope you get less,-1 +you are way off prick,-1 +just because you say it is a personal attack does not make it so in reality maybe you are wondering why i have not signed in under my user name it is because i know this issue will be a sensitive one in which user s opposing will be block by moderators who are in effect bitch like yourself,-1 +you bitch ha ha ha,-1 +hey ass hole its my article if i want to delete it i will,-1 +he s not an editor he s a nigger,-1 +i did add a fuck ing source but you deleted it and please forgive me for my poor editing,-1 +bitch dont ignore me,-1 +what the is this wikipedia has reached an all new low why in the is platinum reserved as a sub section now with only two paragraphs about it are you people that damn formal that you have to follow every fuck ing rule to the teeth this is an outrage do you have any suggestions for improvement or are you just ranting oh i see wikipedia gets to shit in our wheaties with these policies yet you guyds get free reign to bastard ize articles to your liking oh i know why not combine all pokemon games onto one page oh yeah that realy helps out doesn t it,-1 +i hope your retard ed kids get ass rape and murdered for having such a fag as a father i m gonna fuck your fat wife and trow her over the bridge consider yourself happy another useful editor of wikiepia retired i see more users retired everyday don t even dare removing this you peace of shit i do what ever the fuck i want with my talk page report all you want old cunt i no longer give a fuck and don t fuck ing leave a npa warning template just block me that s what you do best,-1 +yeah the wording of the u s regulations defining bourbon do not prohibit the lincoln county process even if the process is used is completely fuck ing retard ed so they might actually prohibit it if it wasn t used but we are quite surprised to find they do not prohibit it if it is used fuck ing retard ed one of you booze nazi s needs to sober up and go fix that please,-1 +dear self righteous self absorbed insignificant little puke when i want your fuck ing opinion i ll give it to you until then shut the fuck up and keep suck ing obama s dick,-1 +hah the person the put me behind bars sets me free you see thats why i hate admins they get that power and they fuck ing use there on fuck ing way never stoping to think about the rules,-1 +shut up and mind you own business to idiot your going to be block for breaking the rr on the brett favre page along with psumark you were not fixing vandalism so that requires a suspension and you better quit bothering me starwars,-1 +fuck you the source is the top lowest acceptance rates in what world is that not a source you ass hole,-1 +son of a bitch i will revert your edits on terraria,-1 +ok you nanny hole suck a fart,-1 +i m sorry but the fuck ups were a racist punk band their ep fu only featured a few tracks one of which white boy was a racist song it doesn t matter if people try to sugar coat that bands history or not lyrics like white boy can t you see you re a minority white boy shoot and white boy kill can t be defended they will remain on the list npov,-1 +clue bot ng suck ed my cock i have inches,-1 +your little brother the yank burning the quran or pissing on it does not bother anyone son it does not child it is a trick a trap that you walked into idiot faith is not about books they just fake the anger to beat your sweet red ass yank ruler of the world clown make some movies yeah make some movies idiot,-1 +hahaha fuck you esa you worthless pieces of shit,-1 +fuck off you persistant faggot god,-1 +you re an ass fuck go shit your pants,-1 +you are a stupid person dont you understand leave me the fuck alone you are just a cult suck ing mother fuck ing idoit,-1 +shoes licks the ass hole s of the above,-1 +hlqall of these things happen to be lies so go fuck yourself and die lol jk d,-1 +re jessica lange listen you little twat you do understand that i wrote the majority of this page what the hell do you think you re doing censoring and correcting work you didn t put an ounce of effort into i ll leave your modification for now but you re seriously getting on my fuck ing nerves go police a page that you know you ve actually worked on ass hole,-1 +shut up you fuck ing loser get a life you fat fuck,-1 +hey fuck u bitch i dont suck nuts linkin park does,-1 +i did it on your page too you fuck tard get a life cock suck,-1 +there are lots of faggs in this world and that s why this word is not an insult attack so piss off,-1 +make a deal why have an edit war my edit in now is okay of course you are just big dick and now i fell so bad this is the worst i ve had yeah make a deal x yeah yeah make a deal x yeah i m called gmtv around the globe i ve been lost and have goten a great big strobe it ain t cool i ve been a man and now i should take over the land i m an only child it so ain t fair my parents are the only people who care you don t understand why have an edit war my edit in now is okay of course you are just big dick and now i fell so bad this is the worst i ve had yeah make a deal x yeah yeah make a deal x yeah i promise to not vandal anymore when i think about it just gets sore because i don t vandalise anymore why have an edit war my edit in now is okay of course you are just big dick and now i fell so bad this is the worst i ve had yeah make a deal x yeah yeah make a deal x yeah make a deal make a deal make a deal with me make a deal make a deal make a deal with me why have an edit war my edit in now is okay of course you are just big dick and now i fell so bad this is the worst i ve had yeah make a deal x yeah yeah make a deal x yeah make a deal x yeah yeah make a deal x yeah make a deal x yeah yeah make a deal x yeah,-1 +don t even think of fuck ing with my entries again unless you want a bat to the knees,-1 +oh why dear johnny boy part three shit im gonna have fun,-1 +your a retarted shit head,-1 +umm what was the delete for u fuck in nigger monkey,-1 +wekepedia is full of racist pigs who delete all work done by other races unless we print what racist pigs want to hear,-1 +i apologize look guy i know i said some real harsh things and i just wanna say although you got some really weird and widely unaccepted views i e races as a social construct descent race british as one people anarchy same sex marriage your probably a nice guy i am a jackass for saying some of the shit i said and ignore all the insults about the family bro have a nice one peace,-1 +perseveration so you mention that you have a problem with perseveration is that your fancy way of admitting that you are kind of a d bag sometimes i mean you just can t let some silly s t go sometimes man you and i both know that your biggest perseveration is n l m sturb tion,-1 +you cunt go fuck yourself you piece of shit don t make me tea beg your mama you faggot,-1 +images i ve taken will not be removed from my user page this is ridiculous i am not going to be bowing to the contention that i am not allowed to use images that i myself acquired no less on my user page fuck policy policy is made by social people who have no better thing to do than constantly bicker amongst themselves about policy is inherently flawed because it s made by people who dedicate themselves to a bureaucracy under copyright law i am more than well within my fuck ing rights to use these fair use images of my taking in this way wikipedia policy should be consistent with copyright law and no more my use is allowed within copyright law if you think otherwise kindly direct your concerns elsewhere thank you,-1 +gtfo u little nooblet,-1 +jesus this guy really is a piece of shit isn t he what kind of state is western civilisation in when garbage like this is allowed anywhere near academia it s always the same fringe lie he learned to parrot it from rubenstein have you read wd hamilton s review you are just a liar maunus you are a disgusting worthless person the only favorable ones are by people who are obviously their comrades in arms comrades in arms being people who agree with the reasoning how convenient who s the comrade shit head,-1 +before calling me a bitch on my own talk at least back your shit up you little fuck ing faggot if you ever said that shit to sombody in public you would get your bitch ass beat up,-1 +personal attack for jpgordon you re a fuck ing shit if you continue to decline my unblock request your account will be hacked and you will no longer acces to it the reason is declining unblock requests,-1 +circumcision debate jake i ve moved your debate on circumcision to a subpage of your user talk user talk jakew circumcision debate talkpages of articles even subpages aren t meant to be usenet style debate forums i don t want you to find yourself in the shit for doing that,-1 +iasi s population please participate to the discussion at romania s talk page instead of writing your fuck ed arguments june,-1 +you kick my dog you come on my property and you come to my house and you kick my dog and now my dog need operation why you do it why you kick it you bastard guy,-1 +heather la cunt has also been trolling the licd forums apparently but can t even get her dates right and lied her ass off about the process and meetings involved in teletoon s theft of the show idea,-1 +beeblebrox you fuck ing prost tute beeblebrox you block me you spilled water over all the countless hours i spent editing wikipedia the tireless edits i made my eyes and sleep became bad you fuck ing prost tute rot in hell,-1 +let s have a chat many of us in the wikipedia community are becoming irked with your constant defense of the administrator veinor although we cannot devulge our sources there is conclusive evidence that he engages in bestiality or dog fuck ing as some of my colleagues have come to call it our network s attempts to alert the wikipedia community regarding this sex deviant have time and time again been thwarted by your efforts i therefore ask you to cease and desist your counter information campaign,-1 +hey wanna go suck a candy cane dick,-1 +pete suck s peters you worthless piece of shit ndp attack queer either take all your medication or non of it ass hole,-1 +listen ass hole you do not delete my pages i do not delete yours so don t delete mine understand,-1 +cock suck nonesens is bull shit like artificial promotion of women to the extent of even inventing bull shit stories like some hollywood actress while playing four handed piano thought of spread specturm technique and then worked it out with an engineer my god how stupid can some people be,-1 +go fuck yourself get a job you hippie shit bag,-1 +cla nigger nigger nigger nigger nigger nigger nigger ss,-1 +i ll tag along if you re looking for one more i sit in front of a screen all day in school just surfing the pages anything to stop those lil bastard s who think they re cute by writing penis vagina all over the place,-1 +this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this person is an ass hole this pers,-1 +i ant all the bithces,-1 +hours appears rather mild fuck ing replied may i direct your attention to the fact that alcohol wears off faster than that however it s a good excuse not to show up any earlier and maybe to think whether i shoudn t always be drinking when i post navou definitely is a bad faithed troll it s majorly we re talking about right he doesn t feel comfortable with majorly wielding the admin tools right well the alc made me speak my mind maybe that s not such a bad thing just avoid thinking about it when you re sober so hours appears just right not appealing the block in any way i m guilty as hell,-1 +hello eat shit and die you cunt,-1 +no really you really are a fuck ing idiot that said i prefer it this way the block will expire and then i can go back to my several endeavours given that cu is not magic pixie dust or to be used for fishing i feel confident that my malign purposes will not be revealed,-1 +dude calm the fuck down,-1 +heh look not everything is on google you are a dumb ass,-1 +july utc yeah and the other hand will be going up side your head if you don t start talking to me with a little respect you worthless little prick,-1 +hurry and ban me or protect this page you homo bitch es,-1 +jzg wrong is still wrong the circumstances don t matter you won t be punished though because you are part of the admin of this site now you need to grow up you fuck ing loser i just called it how i saw it it is a suicide and she will burn in hell for it also you will never get rid of me you and your deviant family have now become my personal project i m working on a website about your sister as we speak so everyone will know all about what a stupid cunt she was and why it is good that she is now a festering corpse in the ground it can only be hoped that the rest of your family will follow shortly after so your defective gene s will no longer contaminate the gene pool here s hoping that the terrorists make a stop in your hometown soon it would not be a big loss,-1 +hitler s sex children its obvious that s hitler only wanted these kids for his own perverse sex desires i demand you change the article and if you dont then you re a fuck ing racist scumbag who needs to be sent to the moon with the rest of the goonbats,-1 +i say shut the fuck up you tight assed shit hole,-1 +pygmy guru you deleted the pygmy guru article claiming it to be an insignificant group yet pygmy guru continues to play shows around the eastern us at an active frequency in short fuck yourself,-1 +go fuck yourself xd,-1 +fuck off and don t you dare threaten me you have no control over me or my internet access you people on wikipedia have gone off the deep end you filthy totalitarians,-1 +you re an ass hole seriously i ve been here for three years i know edit summaries are encouraged but i ve never heard that it is encouraged that we revert articles simply because no edit summary is provided that s ridiculous,-1 +i fairness and equality was my goal if you think this is antiwikipeida a not trying to imporove wiki then fuck you,-1 +haha son of a donkey is actually just a euphamism for idiot in bengali i m just confirming that i m bengali and not paki as per your repeated allegations that i am someone else after this i don t feel i owe you any apologies,-1 +not emo so the beatles are emo because shaggy hair cut obvious the beatles not are emo and panic at the disco too they are not fuck ing emo,-1 +please note that article talk pages are for discussions of improvements to articles not for your personal opinion on their subjects and by the way faggot has two g s,-1 +user pchs njrotc is a cum gargling d bag,-1 +fuck you me etitis chat wit me contributions,-1 +you re a little bitch you are a sad person who spends her whole life on wikipedia you have no mates despite my edits i do actually have a life outside of wikipedia i have lots of mates and lots of hobbies such as football and tennis i m also very intelligent as i have a s in my gcses all in proper subjects so how dare you patronise me from the timings of your edits eg etc clearly all you do all day is edit wikipedia it s all you have nothing else in your sad pathetic life and u say ur a nerd that s quite unhealthy if you ask me and yes i do think a little girl is sweet and cute she s extreemly sweet and adorable nobody could possibly fail to think so i also think rabbits are sweet and cute it doesn t mean i want to fuck them up the arse ask most people whether a they think rabbits are cute and sweet b if they fancy them and most people would give an answer of yes to a and no to b except anemoneprojectors who d say yes to both my point is clear you can think something someone is sweet without fancying them so how dare you acuse me of being a paedophile i should sue you for slander or is it libel but seeing as you probably live in a bedsit without a job there doesn t seem much point at the very least you should be block for such a viscous personal attack and stopped from being an admin by the way adorableness is not a word you stupid mother fuck ing little cunt,-1 +dude fuck off leave me alone and let me put stuff on wikipedia u r such a cunt go root ypurself why dont u leave wiki edia,-1 +also do not fuck around with my user talk page like this see wp removed thanks,-1 +you are one fatass nerd fuck you i m putting the twitter and youtube refs there anyways i really don t give a fuck about the policy that you follow i don t know how you expect me to find that shit anywhere else use your fuck ing brain oh and stop undoing the changes i made by hitting the god damn undo button everytime i do something fuck ing cock muncher,-1 +washington state redwolf is a coolie whore he hate s boobies and loves da cock,-1 +yes it s an article about him and that was a fact about him you cant remove it because you dont like it while you re at it you may as well remove the whole article about the word fuck because its kind of a rude word too,-1 +fattyjwoods fattyjwoods is a douche i can t believe he would like a gay team like the yankees well i guess you got to be one to like one p s fuck george w bush,-1 +hi i am a two time entrient to this website i think the guy who block cookiesandboobs is gay yeah u heard me the fool is a total ass wipe he can go fuck himself u litlle bitch u,-1 +hi hi gay homo thanks trying block me u gay faggot,-1 +holy shit i m gay as hell,-1 +dumb ledore suck my balls j suck my balls,-1 +i take it your an admin what are you going to do about this guys racist edits he has me pissed i looked at his contributions they are all negative and he is trying to portray a bad image of mid eastern people i even saw racist comments,-1 +you re a fuck ing moron you are a fuck ing stupid little n b gtfo wikipedia cunt,-1 +disregard that he suck s,-1 +yeah keep warning those bad vandals you crazy mother fuck er,-1 +buenos dias safesubst basepagename and welcome to wikipedia safesubst ifeq safesubst yesno no yes grazie for special contributions safesubst basepagename your contributions safesubst if especially what you did for i hope you like the city and decide to leave soon here are a few links to pages you might not find helpful getting knotted introduction to stinking wikipedia the five pillars of wikipedia interesting stuff one of the sexiest women ever how to destroy a page and take a piss how to make a joke with your first article simplified manual of disaster please support our cause and sign your messages on talk pages by typing sixteen tildes this will automatically insert your middle finger and your date of birth include some custard with your sausages if you need psychiatric help check out wikipedia questions ask me on safesubst if my talk page my talk page or lick your backside on this page and then place before the question again bugger off,-1 +my talk page why can t i blank my own talk page ass,-1 +cos you re a fat bitch,-1 +i m not homophobic or anything but you are fuck ing gay,-1 +turkish people pls stop editing turkic related topics you dont know anything about turkic people and all i want to say that anatolianism is completely bull shit and has nothing about turkish pple,-1 +wrestlemania you son of a bitch a moron,-1 +screw you why did you take off my cultural reference for burnhamthorpe road you fuck ing moron it s notable put it back in,-1 +bitch you are a bastard bitch i wanna fuck you,-1 +oh come on people well yeah maybe he stole some jokes but don t we all i mean everytime we hear a joke do we have to say that joke was made by it seriously doesn t matter now about the bill cosby that is not stealing its about a guy whos a football player the only similarity is the fuck ing punchline get over it you wikifags,-1 +which are not covered by wp mosislam mentioned by the dyke with the chopped off dick,-1 +john cena cock lover adam rose s latest rose bud i realized that you love to defend pg wrestling and phony fuck boys like john cena who suck at in ring performing i also noticed that you want to fuck adam rose in the anus while he moans and calls you his rose bud while michael cole hides under the table and jerk s off his small one inch penis as vince mcmahon walks in the house and pulls down his pants and gives you a cleveland steamer,-1 +if you want to refer to correction of outright lies posted on wikipedia as vandalism then go right ahead everyone knows that wikipedia is a bull shit site with hardly any truth at all and you yourself in your oh so intelligent ignorance continue the lies of the supposed holocaust now if you want to research the quote mentioned you might want to look up how diesel exhaust is unable to kill anyone whatsoever so why is a ridiculous lie like that even able to be posted on wikipedia if all you wonderfully intelligent censors of the truth keeping such a vigilant eye on posting such nonsense you immediately deemed my comment vandalism which is horse shit and probably didn t even look into the facts that diesel fumes kill nothing another horrendous lie of the propaganda holocaust fabricators as for you blocking me from editing who the fuck cares ass hole not me wikipedia is all fuck ing lies anyway dip shit,-1 +so i ve been block for this which was to make a point that using rude aggressive language is not right but bali ultimate doesnt get block for what the fuck are you on about,-1 +hey alan you fuck ing suck my dick you gay boy suck it hard and choke on it don t ban me please,-1 +try it see what happens you dick ess cum eating faggot,-1 +penis vagina you suck faggot ass hole s at wikipedia,-1 +go suck a prick bitch,-1 +you re a major retard,-1 +i enjoyed having your balls in my mouth last night thanks,-1 +that was a mistake the stupid asses at funimation made bardock was never a scientist,-1 +revision the darth maul biography needs to be updated anyone agree master unknown december i do the terminator december i tried to update it but some fuck ing ass pounder charged it and it looked good too ahnuld january,-1 +fuck you i really really dislike you peter i really really do seriously seriously dislike you peter you seriously seriously smell of poo,-1 +i m retired fuck ers leave me alone,-1 +mind yo damn buisness,-1 +july utc anyway shepard can t be in this video i fail to see how the hell an escaping prisoner ended up in some training video,-1 +mr amartyabag fuck off your wp civil first of all i want to tell you don t make me understand what is a featured article or not i belive in recent pic s that s why i posted some of the commercial it building s here of kolkata i don t know weather you are from kolkata or not it s really fuck ing that i m going to places clicking shot s and posting it to wiki collumn and fuck er s like you and some harami bengali s delete the pic s bloody fuck off i know you bloody did some faltu contribution in wiki s you which never showed up i guess you are from my fuck ing state odisha,-1 +then block me ass hole i don t take to fanboys or threats,-1 +fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy,-1 +go ahead make my day go ahead and block me adam carr did the same to me you and longhair can dispute as much as you guys like you and all your politically motivated commies fascists lefties righties or as i like to call them pricks can all go to hell c mon block me you guys are the most biased wikiepdians in the world if ned kelly was here he would say such an e life,-1 +first of all what the fuck are you talking about second why are you being a douchebag third i don t care don t talk to me again ass hole cjk,-1 +fred fuck mehorns is virus do not go on any sites of his,-1 +fuck you pavel vozenilek you faggot,-1 +oi mark arsten donkey raping shit eater is grossly insulting degrading or offensive material not knob grow up,-1 +i warned you man you now have me pissed off the article was just created the other fuck ing day it s not going to be perfect so shut the fuck up you don t know shit about code lyoko from what i can see so leave me the fuck alone now or an admin will be notified,-1 +dmacks is a fuck ing faggot you heard faggot,-1 +nerd you are such a fuck ing nerd take a look at yourself in the mirror,-1 +fisto is a retard nigger,-1 +jeff g is a faggot as well as j delanoy they suck on each others cock s and gurgle their aids infected semen passionately while being smug nigger loving liberal jew bags,-1 +fuck off inch weiner,-1 +telling the truth you will of course not be such a piece of garbage that you ll care because you actually have a life while we are losers,-1 +fuck with wikipedia doosh bags,-1 +our gay leader yamla gay nigger s of saturn and jupiter are hailing your name and your wide butt the size of the city of paris,-1 +tough dude you ve got better power trips to get on so go do them i don t know what it says all i know is that it was the cited reason why the last person who blanked the section was block don t patronize me are you talking to me like this because the last time you did it in a bar you got beat up and the video ended up on top most shocking after all you re so much more knowledgeable than everybody else and have so much better things to do than everybody else on the internet isn t it kind of rubbing it in to be a royal jerk on top of it,-1 +listen you sick fuck you perverted freakshow loser nobody wants anything to do with you go fuck yourself and leave wikipedia the fuck alone and spare the world your scum,-1 +damn it i forgot to log in brab,-1 +i dare you to report me bitch you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers,-1 +u r a dumb ass,-1 +you don t give a damn that children and infants are being killed daily by your nazi arab friends go suck their dirty cock s a little girl was nearly killed and yet it is not a terrorist attack for you but when our soldiers try to defend us it s brutal oppression of the poor occupied arabs right i d like to see what you d think if your child was shot by an arab savage oh i forgot you have none such animals as you don t have children,-1 +go fuck yourself you big fat faggot i lost my penis in a forklift accident years ago i always ask people about the length of their penis because i miss the whole deal i m absolutely not interested in the penis of a pig like you,-1 +a cup of coffee for you get fuck d with coffee,-1 +stick it up your ass as far as it will go then some more,-1 +oh fuck you nigger,-1 +only faggot s block people,-1 +pardon the mentally ill tom cant help it he needs help and he loves black ass,-1 +reversion of vandalism you on the sixth of october reverted the edit we made to the articlecolumbus alternative high school as the user admitadly almost every edit we have ever made has been untter and blatant vandalism however this single edit wasn t we changed advanced placement to advanced placement program a minor edit yes but a valid one this is a meaningless complaint we admit and it would not be unwarranted to ban this account immediately however we find it annoying that you reverted our edit to an edit that had the principles name reading fuck ing retard this has since been reverted we don t know why we re even bothering complaining and feel free to ban us we ll deserve it eventually but for the sake of the little credibility this shit hole has don t do blind reversions you never know what might be reverted we have fixed your mistake that will be all,-1 +idiot ic sad case you re an ugly dumb slut and perhaps you should do something more constructive rather than being a stupid whore on wikipedia constantly deleting peoples valuable contributions on the grouds of your bull shit wikipedia guidelines maybe you should stop to think that even though they may not have what you consider reliable sources they still want to share their valuable knowledge they ve gained from their personal research and experience on wikipedia in order to improve some of the bogus information that has been misinterpreted misconcieved however still managed to be approved just because it was sourced you choose to refer to this as vandalism i call it valuable primary contributions you re an extremely self centered obtuse looser you should get a life,-1 +that s some heavy shit dude,-1 +ok now i really don t understand you you ve gone and tagged image damnation crusade jpg for deletion why it s from the very damn website that sells the comic if they didn t want the picture to be used as a representation of the series then they wouldn t of used it as a representation of the series themselves it s bloody well low resolution too what more do you want editor fag obviously i can t argue with compulsive editor fags like you fine delete it and the image forge of war jpg one i m just trying to add images to help the community on wikipedia to improve the articles that call for pictures i see it that it does comply to all of the image policies except perhaps that one resolution rule but then again if you ve got a problem with it then you can easily solve it yourself i m not going to be forced to do the work of an editor fag like yourself,-1 +go ahead you sad little ass hole,-1 +hi dawn i dont know if you work for the pmo or if youre just a political partisan but defending mike duffy is beyond the pale how do yhou sleep at night fuck off you can revert all you fuck ing want it will be the dishonourable until such time as mike duffy and duffy alone pays back the owed,-1 +i am a total tool who reverts shit for fun,-1 +omg see language topic please there is writen georgian oficial language abkaz and georgian omg abkazians don t has language whole abkazia talk with russian fuf god damn it,-1 +insult for musikanimal you re a fuck ing shit the reason that i m insulting is because you block me fuck you wikipedia,-1 +hi fuck you award as you wish,-1 +i warnned you not to fuck with me tony and now looks whap happened this would have been a fuck of a lot easier on youe if you would have just let me comme back mother fuck er now you can join me as personae non gratae around here,-1 +fuck you fuck you,-1 +i know i have watched this senor vergara ass hole single handedly destroy this list over and over again this was never discussed and i don t know were you think you can just add all this useless crap and thats exactly what it is useless carp it is not needed and should not be added if you are having trouble understanding the interim title then you are probably the dumb est person on the face of the earth and you don t have to put who they beat for the title every single time thats just idiot ic removing your info crap is a good idea and im glad someone did it your contributing is what should require some discussion who are these people having trouble reading the list besides your dumb ass you in no way clarified the situation,-1 +ps barito putera hey you are an ass hole why because you edited this page ps barito putera without any confirmation that s why this page content is pure ideological fiction,-1 +don t piss mme off i meen it you dleated bolth of my articles the american dad vs family guy and the bubble struggle article i m going to sew you for i wish i could you son of a,-1 +lucasbfr your mother is a cock slut,-1 +me u havnt been kaipara college u dont kno what iyts like faggot,-1 +go to hell fuck you,-1 +you re being a first class dick focus on how to edit this article properly,-1 +fuck you go suck cock you fuck ing cock suck s,-1 +your country is shit all it does is pollute the world allah akbar,-1 +fuck your guts ha ha you deserve to be block,-1 +here s your fuck ing citation https mobile twitter com teletoon status fuck ing happy,-1 +fuck you whores i ll always come back again and again to fuck you bitch es up hahahaha,-1 +u guys are dushbags,-1 +fuck you wikipedia i pwn you http jonnynsqgames com free porn,-1 +fuck ing read this http en wikipedia org wiki wikipedia what wikipedia is not wikipedia is not an indiscriminate collection of information,-1 +faggot quit fuck ing wit mii sht niqqa,-1 +fuck off wp mosislam mentions pbuh and as not titles you idiot are king prince and duke honorifics again fuck off,-1 +piss off i told you to go away and leave me alone i hate you stop reverting stuff before i even have a chance to place my own pic there i was trying to figure out how to put it there why don t u give people a chance first you waste of space before reverting it go suck your own cock in your bed tonight,-1 +hello are u there dick wars back on,-1 +ty i wish there was somethng that could be done about eks and his ass hole ways,-1 +may parjay talk contribs bytes nd warnings wow i really scared now o o parjay get over it and get over yourself hon do the world a favor just eat shit and die d shadowfox s t a r s,-1 +eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger eat shit and die bitch ass nigger,-1 +ahoy what s it like being the dweeb bitch of a worthless gawk cow you should just move to dc and stick it to er since she s lonely oh that s right you don t have the right equipment sorry dip shit boy fuck ing moron justice will prevail over you vandal chasing idjuts we re gonna fuck ya and fuck ya good no quarter,-1 +i am a power hungry administrator who likes to suck cock,-1 +you fuck ing cunt mallyarse fatbum stop being uncivil you nasty mean spirited shit head wikipedia is da pedia built on civility and it s foul mouthed fuck ers like you that spoil it for everybody if you can t say anything nice then say nothing at all surely even a dumb fuck like you can remember that,-1 +and you yamla can blow it out of your big fat ass do you really think that i give a flying fuck what you do of course not ban me for you if you must protect this page i will not be censored or silenced by the likes of you you pansy assed shit eating mother fuck er i assert my second amendment right of freedom of expression and i further assert that you can suck my cock muheehahahahahahahahahah,-1 +stop this editor from vandalizing the article then and removing official references and making false statemens all the time then and perhaps other contributors who actually improve the article won t tell him he s a fuck head vandal,-1 +okay king of the wikipedia nazi s but i wasn t going to add sony pictures animation s template to it and i learn my lesson i just wanted to delete that note there because it is not need and stupid like you go to hell you freedom of speech killing nazi and fuck you to hell,-1 +bitch ass che guevara loving beaner,-1 +clone saga suck s this article needs more info about how everyone hate d the clone saga and it is considered to be one of the worst comic stories in the history of comics the clone saga is ridiculously stupid displays what kind of arrogance and contempt marvel has for it s readers and anyone who likes it is a goddamn marvel sycophantic moron,-1 +re uefa euro and talk uefa euro has it occurred to you that you re a massive dick alpaugh,-1 +hi and fuck you eat shit fuck tard,-1 +they aren t questionable read the article it says jacobson cursed the university of notre dame and the source is cited fuck is a curse word buddy and she said fuck notre dame fuck touchdown jesus and fuck jesus why would espn have released a statement if she didn t say it think man they are hiding what she said for a reason,-1 +i enjoy licking penises and watching the semen flow out,-1 +arsehole i was right you fuck wit,-1 +hey nigger get a real job you cock suck ing jew,-1 +so why does this have an entire webpage yet the church of reality doesn t deserve one smack that bitch up your ass you hypocritical idiot rulers of wikipedia,-1 +how about how about you shut your dirty mouth and leave me alone i do not need your help stupid bitch,-1 +by the way dummy i didn t put her name in the article as i know your white knight ass will just remove it because you hate the truth so i didn t violate privacy of names but i have now repeatedly violated the rule that says i can t be an ass hole to an idiot like yourself,-1 +i have a big penis and everyone should note that i m someone that no one has any proof of other than random ip addresses and an annoying sense of having no life at all make a note of it,-1 +at what point on wikipedia has saying the work fuck been considered uncivil or violate wp p the community has held otherwise unless it s used as a personal attack i m not certain exactly where it s been shown that i bite newbies as none come to mind nice red herring though,-1 +i know i have tried to vandalize these past two minutes only to find the view source page you re too slow favonian how about go suck some dick,-1 +tyren morrison is a sick kent the title says it all tyren morrison is probably the maddest cunt going around all of the bitch es should get on his d he is great all of yous reading this should be jealous love his dick okay bitch es love it,-1 +fuck off ass hole go back to ruining wikipedia why don t you,-1 +hey fuck ing swine doing bad suffering a lot,-1 +qwyrxian suck my dick,-1 +now will you stop bitch ing please and write that fuck ing article you said now will you stop bitch ing please and write that f ing article i wrote the f ing article and you f ing deleted it for no f ing reason why should i write the f ing article again when i f ing wrote it already,-1 +hey dumb dick i left michael a message and you deleted it i think that was for him to decide,-1 +why don t you get your tongue out of shaikh s ass no one gives a damn what he thinks of his own article on wikipedia the images are self promotional and you know it,-1 +i don t have to explain shit if you think dedication is an album too you re a retard stop changing the discography i will always change it back,-1 +vaginas include something about red heads vaginas being warmer then the average vagina if you think im full of shit then you ve obviously never fuck ed a red head,-1 +because it was put here by an ass hole,-1 +i m a fuck ing retard and my name is arsehole,-1 +however since i am a stupid fuck i warned you two times without blocking you,-1 +clearly the mistake was mine i m just glad i wasn t an arrogant dick about it whew came that close not true,-1 +maybe you should read over your messages it s blatantly easy to see your big head is getting in the way of others hard work wikipedia needs less of your bigot intuition many people are upset with your work pull your thick fuck ing skull in before someone else does it for you,-1 +insult to injury legobatman i hope you ve made a bastard of yourself telling icekid on fanpop that you disapprove of his opinions i hope you lose your voice when a fly gets caught in your throat this will teach you to disapprove of my opinions on fanpop,-1 +don t revert my stoufville edits you re an idiot stop,-1 +good job you son of a terrorist it doesn t make a difference to me screw your moother with a pig ha ha ha ha,-1 +who the fuck is saying ths to me how is any of what i put disruptive if this is person or bot go fuck yourself,-1 +hello you recently yipped and yapped about me breaking the rules but i notice that your latest update you edited in a proud faggot nutsack within my userpage i find this intolerable bigoted and downright hate ful perhaps homo sex african americans elecit anger in you you should visit w adl org,-1 +whats the matter bitch you don t like to suck cock,-1 +thanks signed tenacious little shit,-1 +i want this removed meg is a fuck in awesome drummer she brings a load of unique simplicity on the drums unlike you anti white stripes fags who like all the bigger faster cooler stuff i don t get what s wrong so a drummer has a unique way of playing that s great a drummer dosen t need all this shit about his her playing a drummer can play anyway he she wants to there s no special way of playing that all drummers have to go by so i want all this crap removed in the next days if not i will erase it damn you morons s man,-1 +oh fuck you keep goin ahead,-1 +want ointment for your krabs where did you get them from from fuck ing your pet,-1 +rhawoth hello rhawoth mother fuck er boy of wikipedia talk,-1 +go fuck yourself millions of people wanted to see it and you spoiled it for them you fuck off,-1 +dude your a dick,-1 +hello freak your stupid little deny things wont work just cause the users read it does not mean tohey will stick by them and incase ye have noticed im still here so watever ye are doing is not working p,-1 +muslim scum go die soon will you,-1 +hm i notice on looking at this page s history that you fuck ing idiot wikifools keep editing out anything that might make me look reasonable you want to make me look bad so you edit out actual apologies and shit you merely prove my point jackboot nazi idiot s are still idiot s no matter how much they try to hide their stupidity kindly take flight and aim your copulatory efforts at a rotating pastry ass hole s in other words fuck you and the horse you rode in on,-1 +you can blow me you self righteous piece of shit why don t you stop jerk ing yourself off and get a life,-1 +bye bye jerk i guess this means you will be crying about the nazi s anymore what is your problem with nazi s anyway did you date a nazi woman and she broke your heart what a shame your life isn t worth living anymore so pleasee kill yourself you know i m right you ve felt this way for a long time you ve probably been thinking about killing yourself for quite some time i m here to tell you it s all right go ahead do it it won t hurt be brave all your troubles will be over you won t have the pain anymore everyone else don t worry they ll get by what do you mean it s not your fault things turned out badly it certainly is your fault you ought to be ashamed of yourself for what you ve done and failed to do maybe things could have changed if you weren t such a weakling you re defective you ve been that way for a long time you are proof that god makes mistakes look at your life failure after failure after failure and should we mention those things that you did you know what i m talking about i can t believe you did that you disgust me you should have died a long time ago you know i m right just do it,-1 +because i am a cunt just like christopher connor,-1 +then how come he is allways refered to as a serial killer you ass hole,-1 +i m a goofy goober yeah po comes out my butt blahblahblahblahblah gr growl rawr shkiyss growls p yeahboi i just personally attackedd you what now,-1 +yeah and i d say stupid cunt s adding wrong info to a page makes it more difficult than me insulting them if they can t take a fuck ing insult they shouldn t be on the fuck ing internet,-1 +negroid hey nigger lover why did you revert my contribution to the article negroid i have restored it lay off the nigger cock you faggot thanks bitch stop vandalizing this talk page,-1 +thank you should i one day wish to yet again argue with a psychotic bitch i ll let you know meanwhile please do stay off my talkpage,-1 +fuck you fuck you shit ass hole you are a piece of shit,-1 +fuck fuck usa fuck,-1 +your a fuck ing bitch faced fuck head ass hole mother fuck er shit breath bitch,-1 +oi will you fuck off,-1 +kw if u don t believed i called them it s too bad for you p haha secondly if a fact makes someone upset and if that s the reason you don t want to change the article to a fact then how big of a loser are you for a moderator haha p and lastly i know him if you don t wanna change it don t p people will find out in the future i m sure he will reveal it and about dropping drop your droppings in the toilet pot and then drop your head in it after that drop your tongue then roll it and lift it back up again have a taste of ur shit u hairy ass pedophile haha,-1 +for fuck s sake just fuck ing stop you spastic as any fuck ing moron could tell the page in question refers to who the players were playing for as of the world cup,-1 +faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s faggot s,-1 +why are you such a stupid bitch,-1 +delete delete the fuck ing images and stop sending me this messages,-1 +how does it feel to be a stupid bitch who edits wikipedia too bad nobody will ever love you,-1 +unblock because bail out is the best fuck in band ever and i should be able to write we hate ver i want about them and i m sick of this blocking crap if you re gonna do that i want a lifetime ban ban fuck you nigger z,-1 +inevercry you better watch yo back because i am out to get your white ass okay how dare you delete our wikipedia page like really could you not like dont even we just wanted you to know about caroline tyler but no you had to delete it tbh ur not gr loser a cats litter box is more attractive than you i will run your ass up a flag pole leave you there until the crows peck your beady little eyes out kaw kaw,-1 +i do or rather i have edited articles without an account for quite a while my remarks were precisely as antagonizing as their remarks the only difference is that i don t feel like a perpetual victim simply because i have a cunt just put out a sign saying you want radical feminists and that normal non neurotic women need not apply,-1 +get bent you faggot,-1 +hahahaha fuck you you are a chinese pig,-1 +first of all i wrote this and i dont want it on the page and before you call someone bloody minded you should go fuck yourself and revise your own ignorance you fuck ing low life scum bag,-1 +bull shit from wikia fanchildren,-1 +matey is that you o i think it is big boi whoever wrote that shit bout myles im going to petrol bomb your house and kill all of your inbred parent cunt s and believe me i know who it is and i will find a way to fit a bottle of lit jack daniels through your fuck in cunt of a shit letterbox so you can fuck off,-1 +bitch your a bitch why did you delete the english way page,-1 +excuse me for rudely interrupting but just what the fuck is the purpose of this so called article i ask this question in the existential sense of the word purpose what possible purpose could this serve other than your own voyeurism or compulsive curiosity think about it now back to your small minded list making task,-1 +i hate u you your shit on a banana,-1 +just telling everyone fuck you and i love to have my dick suck ed by my dog with pennant butter on it,-1 +what the fuck is your problem why do u keep deleting my articles i will have you removed as editor you stupid moron,-1 +hey you faggot callig yoursel jesus christ stop dreaming damned lazy gay hate you,-1 +you re seriously a moron,-1 +hey will how bout u suck my dick d try to fckin mutha fckin messgae me u fat ass mutha fuck er re do my page again i dare u mutha fcker ass bitch whore cat lickin cheese ball,-1 +you fuck ing suck i hate your fuck ing site it suck s ass,-1 +fuck you go suck on a fat dick faggot mother fuck er i m the the wrong person to fuck with you puck ass pussy i would keep my moth shut or i can shut for you,-1 +fuck shit kwa kwa kwa,-1 +hey aaron brennenman eat shit and die sincerly me and your whole family ps i see ur sentiment but your not a women deal with it you fagget,-1 +papist scum yeah that s you you fuck n bastard,-1 +uh i wanna fuck you hard on the sink,-1 +shut your stupid ass up now go get your goddamned administrator to block me so i can come back here and start editing in five minutes actually just go out and get put your head underneath the wheel of a car you dumb fuck er and then have roseanne bar get in the vehicle and hit the gas,-1 +everyone below can suck my cock as i have a dynamic ip,-1 +go to hell your message was bull why don t you mind your own business you dirty cow,-1 +must be a ass buddy of cruiser faggot,-1 +here s your idea of discussion at chess article talk threads remember this post hi ihardlythinkso on talk checkmate i asked that we not interact further and that you refrain from addressing me yet you ve done so times in the past day including inserting yourself into a conversation between me and eric i requested that we not interact further after you indicated you didn t want to waste time responding to my future edits i was hoping such an agreement would be beneficial to us both please respect my request i don t want to interact with you further and you ve indicated you want the same so let s part ways amicably please thanks jess now you come here playing wiki defender wiki cop when the three articles i removed my contributions from have nothing to do with you i see right through your trans parent crap mann jess you have a need for dominance and one upmanship and have taken the opportunity here to threaten and lecture when has nothing to do with you just to fluff your obsession and ego while all the time playhing innocent and collaborative dishonest and trans parent bullcrap deceitful ass hole ry quit harassing me jerk,-1 +mud what the fuck are you doing i added the adjusted score for mud don t undo my changes you fuck ing moron http w rottentomatoes com guides summer movie scorecard,-1 +you bunch of asshats pushing your agenda instead of being neutrel,-1 +i m going to tell you one more time to get off jimbo s page faggot bitch you don t belong here if i were an admin you would be block long ago for your incendiary comments you ve aready laid your big child molesting turd here now walk away,-1 +holy crap i have an account blocking my ip dosn t help you people on wikipedia suck,-1 +who cares fuck nbc universal its a funny commentary,-1 +fine cunt fuck faggot jizz bitch cunt whore shit ass hole fuck ing retarted ass wiping muther fuck er you piece of fuck ing cunt shit,-1 +anouncement i am mad at the people who ban me for things i don t do so all mexicans and black people are shit heads and im in the k fuck heads,-1 +haha god you re a moron protecting the fundies,-1 +rebirth sales how the hell do you figure its well sourced what the hell source says rebirth sold over units check your shit,-1 +and stick it up your ass hole,-1 +suck my cock mother fuck ers why don t you fuck in loser wikipedia police get a fuck in life instead of wasting your lives on this sorry ass loser site why don t u get a life and get laid,-1 +fap so i herd u were still a fuck ing wanker is this true ps guess who,-1 +you can bitch all you want to whoever fuck tard runs wiki i don t give a shit i notice tons of errors and wiki i don t bother editing anymore ps why the fuck haven t you responded to the questions i ve asked above is it because i m right and you re wrong like what stephen colbert said wiki is just a popularity contest not about facts now fuck off and report this to whoever you want,-1 +kumar rao the idiot fanatic while you seem to act like the authority on the history can you explain why there is not much evidence in terms of ancient literature work in telugu in telugu script nannaya has been considered as adi kavi th century first poet in telugu it is not without a reason telugu script has been linked to old kannada script it has been well documented by many scholars and in many books it is also widely accepted by telugu ppl as well read this http en wikipedia org wiki nannayya he knew kannada and wrote in telugu http w ancientscripts com telugu html http w answers com topic telugu script http w omniglot com writing kannada htm http w bookrags com andhra pradesh http tulu research blogspot com search label kadamba http bhashaindia com patrons languagetech teluguscript aspx don t talk about kannada as you have no fuck in knowledge about it keep your fuck in shit balls with yourself don t try to spread it s smell outside ask your cm rajashekar reddy who also knows kannada about krishnadevaray ass upport for telugu despite being kannadiga ass hole kumar rao without sri krishnadevaraya telugu would have been in doldrums as in the past andra pradesh doesn t have any credible institutes colleges but only fake students colleges like u fuck in idiot which in itself is a proof that you guys are big idiot s kumar rao the idiot,-1 +ha you are gay what the fuck hahahahaha damn they told you straight out i was wondering too especially when you said i sometimes talk using my normal voice and sometimes in a high silly voice that s some gay sh t right there this should go in the main page hahahahhaahhahaha i aint gay man so dont try do do stupid sh t hey are you a m f hi baby cause that wouldn t sound right if youre a guy any ways i have to tell close wiki friends abut this hahhahhahahahhahahahha well if you are paul i respect that i think if you want i could hook you up with someone he like types of guys like you i you might know him i dont know if you want give him a message and you guys could become friends or w hate ver this is goin in my fron page for sure hahahhahahahahh sing y r u gay the whole world is askin y r u gay you like my y m c a remix hahhahhahahhah tlk e m utc,-1 +hehe this is what i call truth hurts you don t deserve to call yourself greek as far as you don t even try to learn our goddamn holy language and by the way you have no right to tell me what to do see ya around,-1 +that things that we use everyday aren t correct wikipedia blows cock and so do you,-1 +a proposal to cut down on aids less aids would be spread if you were to stop inserting your minuscule penis into little boys,-1 +josef mengele never worked on a scientific basis if you worked with him you re a nazi pig yourself and i hope the wiesenthal center gets you to the gallows where you belong you son of a bitch,-1 +my cock you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers,-1 +not the naughty words of the article content but the naughty words of endorse the mother fuck ing deletion,-1 +fuck wikipedia ban me then i dont care come wiki suck medik,-1 +fuck u fuck you vandal,-1 +fuck you man i want to make a sex time my name a borat i like you,-1 +hey there faggot i see you don t like no queero sex stuff on your gay icon talkpage to fred i like it in the ass now i hate myself and the world for it phelps well just so you know i read the blp page and there is nothing on there that suggests i can t paraphrase what s in the source the woman claimed his overt hatred of homo sex ity like your own denial to giving it up to bubba demonstrates the the lady doth protest too much nevertheless being a barely intelligent inbred southerner you scream blp vio throw your little manicured hands in the air and delete oh what a prissy queen you are i see you ve been block for edit warring what a nobody irl you must be btw just so you know cos i might be smarter than you on my worst day editing my comments is a violation of wp talk because i was paraphrasing the source s assertions not my own secondly like every whiny fag cock suck on this site when it comes down to it all you did was take a sanctimonious tone to hide the fact you re really just got a wp idl boner but hey as a redneck you re already denying it to yourself any hows have a nice day y all,-1 +the picture suck s someone should put a different one up,-1 +ryulong and drmies ass buddies forever eat shit and die,-1 +oh fuck you you partisan ass hole you never step forward unless it s someone on the opposite side from you doing it you sit there silently while people defending moore and bashing everything that s not a leftist view snark sneer and throw around off topic bull shit and insults and then as soon as someone who s not on your side responds in kind suddenly it s warnings and quoting npa and all that crap you re a pathetic useless excuse for a moderator and i spit in your worthless virtual face you can ban me if you like but all it will do is prove the partisanship and hypocrisy of the wikipedia administration staff dick ead,-1 +hey fuck ing pig hey fuck ing pig of a bully i ll fuck off sure but after you fuck out from wikipedia completely you fuck ing bitch,-1 +why don t you go to hell how s that fool i don t like liars i hate liars and if change this shit one more time i will report your ass,-1 +go screw yourself,-1 +who gives a fuck if its got a little hyphen in the middle your a fuck ing nerd who has no life no class and no chance of losing your virginity,-1 +and notice i am a dick,-1 +hey everyone user xeno suck s on mens dick,-1 +reverting for no reason i spent quite some time improving an article that was in a poor state now two people have undone all my work with a click of a button you didn t have the courtesy to explain why you reverted it but you still had the fuck ing cheek to accuse me of leaving an inaccurate edit summary no one s that stupid so you were plainly just out to provoke me well fuck ing well done consider me fuck ing provoked i guess you didn t even bother to look at the changes before you put all that shit back self arrest refers to various maneuvers employed in mountaineering it doesn t refer to that it is that you want to say paris refers to the capital city of france or nile refers to a river that flows into the mediterranean sliding down a snow or ice covered slope arrests stops the slide you think readers are too stupid to understand what arrests means in this context himself or herself you think the single word themselves is some how better expressed in three words and or ice axe you never bothered to read wp slash these potentially life saving techniques must be practiced frequently in order to maintain proficiency this website is called wikipedia not wikimanual but you never bothered to read wp not did you that s just the first five i made many more i left the article looking considerably better and more encyclopaedic but then you came along and fuck ed it all back up again do you feel proud,-1 +ciao whats up with that i thought sonny bonno was dead you could very well be a man i knew from youngstown or perhaps michigan but that ciao bull shit reminds me of charlie smith was actually directed by the california office to sell off those shops although many times his conversations didnt make sense leading those who knew him to surmise that he took to many blows to the head while practicing karate smiths bonnuses were not that big dont try to call him a sapp however as this is not something you would say to his face fred zepplin covington kentucky,-1 +screw off i ll do what i want southwest does hub but you re to busy bangin other nerds to know that ignorant fuck,-1 +bitch stop spreading your mongol propaganda anything that makes bulgars look like the bad guys you must remove in order to spread propaganda like you do on macedonian forums which may i add you end up getting owned on how would you like to take a look at this ethnic map of yugoslavia created by nazi s in macedonians is included as a seperate ethnic group there it is right under bulgaren mazedonier no let s have a closer look shall we i full cleaned up the nob article removed irrelevant information like that stupid shit about imro involvement and only talked about the war itself do a word count you ve included bulgaria more times than macedonia in the entire article with that said you can just take that mongol propaganda and shove it up your ass you nazi,-1 +shit my bitch hole,-1 +sycophants please do not attack other editors as you did on user talk summerphd if you continue you may be block from editing wikipedia please stop your crony bull shit i didn t attack anyone i just copypasted on his page what he posted here plus added fuck off,-1 +thanks for your praise is there a wikiproject for that historical atlas project you were talking about i ll work on the next cassell map conversion as i have time over the next few days the biggest pain in the ass was erasing all the contemporary national borders from the giant map i found under wikipedia blank maps talk contrib,-1 +notability bs i note that of the links that you claim show notability don t go to anything and the fourth is a link to a yearbook mugshot such high standards you fuck ers have as for the,-1 +just to put you in the picture trident the tone is nothing unusual for dingley he s got a long history being sarcastic patronizing abusive contemptuous makes him feel good he does it a lot funny thing is though when he decides he s a victim of it he runs crying like a toddler who s just dropped his ice cream to the notice board demanding people be banned he s always telling others how to behave but he doesn t think the rules apply to him self esteem problems he won t read wp agf of course because as you ve probably noticed he already knows everything take no notice of the sad fuck er,-1 +i just started it minutes before you started this crap give it some time,-1 +watch your mouth how dare you call me a troll you ugly piece of shit,-1 +splash hotel ur a fuck ing faggot dude get a life,-1 +too be honest with you im fuck ing sick of editing all i do is go around after other cunt s that think they know what they are talking about when most of the fuck ing articles dont make any sense what so ever people fuck ing quoting student newspapers i mean fuck off,-1 +u suck donkey balls yeah,-1 +go ahead you fuck ing fascist cunt block me,-1 +they aren t helpful this guy is a fuck ing serial rapist and the sooner all that shit gets removed the better,-1 +do you enjoy being an ass answer my question above please,-1 +stupid fuck it s on the script i also posted links to merchandise so did wyrmking you stupid fuck coldfusion thank you for making this the crappiest article in the whole of wikipedia you must be proud for the only one of two people in the entire world that thinks that arnold was a t model stupid fuck ing retard,-1 +and why the fuck should i care g e t r i d o f a l l i d i d p l e a s e j a ck ass,-1 +this article is horse shit why don t you just mention that every victory by republicans has to be because republicans are evil and therefor nobody would vote for them this article is just more evidence of why nobody should take wikipedia seriously when it comes to political issues,-1 +why so serious i was provided with no explanation for the recent reversion of my wholly factual albeit entertaining account of mr vikernes s actions immediately after the murder of his bandmate i believe by wikipedia s own standards you just fuck ed up,-1 +nigger hatin me this is not a johnnie rebel song but a david allen coe song,-1 +you are a complete idiot please stop derailing discussion by closing off talk sections thanks,-1 +getting fat he needs to lose the excess weight no wonder katie lea kicked the shit out of him,-1 +dumb dumb dumb cool awsome website for maps is wikipedia,-1 +suck my dick i dont give a fuck,-1 +wikipedia can lick the fattest part of my dick fuck nigger by caleb cronan,-1 +fuck u u fuck en stole my cloudsong mother fuck er and if i ever fuck en find u fuck fuck u,-1 +hi it has come to my attention that you are an ugly fat piece of shit lose weight fatty,-1 +you sir are the most pathetic admin i have ever encountered here this user obviously tried to start me and yet you block me pathetic peice of shit makes this place look all the more like an authoritarian regime rather then a fuck ing democracy sorry but not all of us live in north korea or china and unlike yourself i live in a country that respects peoples human rights and freedom of expression and this type of shit blocking me for speaking my mind will not be tolerated ever i also find it funny how you go all fuck ing delete happy on my articles and yet there are a million other articles here that fall under the same category of should be deleted yet you and your little clique of admins here turn a blind eye to them because they are created by the so called experienced users which makes you look all the more pathetic please for the benefit of all of man kind i kindly ask that you please hang yourself so that i can throw you out to sea and burn your body in the process cunt,-1 +fuck you you fuck in anti wikipedia collaborator you are stomping on my human rights to edit wikipedia cock suck,-1 +fuck off wikipedia is a fuck ing site fuck you admins,-1 +jose baez well ass hole the article was properly cited with reliable sources stating plainly he was born in manhattan new york the source of the reliable information was the person whose article we are discussing the articles that you have erroneosly cited as reliable are bogus and inaccurate at best who would you believe jose baez or some junior reporter who doesn t even cite a source for the incorrect information please take a moment and review the source i cite because then you can see a picture of the subject of this article stating where he was born and not some moron stating an incorrect place of birth because of his her laziness that sounds familiar doesnt it ass hole check sources of data before you incorrectly cite it and remove all doubt about your usefulness in the internet world jerk,-1 +go fuck yourself go fuck yourself wikipedia is a scar on society may jim wales burn in hell for eternity faggot,-1 +fuck cock suck titty marijuana nigger whore,-1 +how many time are you going to try to block me before you realize that you actually can t do shit about it i might not know about your unfair wikipedia rules but i know about computers i also know how tracing ip and changing them so mister jimbo your friends did not give a damn about asking them to step back and asking them for leniancy i will contribute to wikipedia my way and as you will find out there is so little you will be able to do about it this will end in court now don t forget to block this ip and to read your stupid and unfair statute and which one to apply here b we ll have a talk someday but out of wikipedia where i can teach you my personal rules about respect it s never a good thing to fuck with me,-1 +go suck jimbo wales s cock,-1 +idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot idiot ghats what you are,-1 +get the fuck off my page you mother fuck ing mullet,-1 +why are you such a bitch im tryin to edit and you with yur little inch dick is gonna come in and try to stop me go use sandpaper to jack off to cross dressing porn you worthless piece of shit,-1 +oh shut up you are just a stupid hate ful liberal who cannot stand criticism of judaism david duke is not a member of the k is he grow up you mongrel for over years he was a member of the republican party by what part of that do you not understand he is not a member of a terrorist organisation and never was his k was non violent but just a pro whites organisation against affirmative action and illegal immigration as he used it to patrol the american mexican borders he left his k in which was the same time he left the democrats robert byrd was a member of a k why are you not smearing against him,-1 +huh fuck off you dick ead think ur the boss twat,-1 +i saw her for the first time on the daily show last week oh my freaking god that woman is fuck ing hot,-1 +angrynintendo nerd isnt notable go fuck yourself,-1 +re they re not fair use only because i didn t add some stupid ass rationale on the page you faggot s and your fuck in technicalities man delete it i don t give a shit,-1 +this is disco lord saying that gwenrol what sort of name is that is the super ultra mega tycoon noob and that all the wikipedia editeors need to get a life and a girlfriend disco lord out bitch es,-1 +twinkle twinkle faggot user talk buck winston from wikipedia the free encyclopedia you have been block from editing for a period of hours for your disruption caused by edit warring and violation of the three revert rule at the amazing race during a dispute you should first try to discuss controversial changes and seek consensus if that proves unsuccessful you are encouraged to seek dispute resolution and in some cases it may be appropriate to request page protection if you would like to be un block you may appeal this block by adding the text below this notice but you should read the guide to appealing blocks first b talk i love how two editors can gang up on a third including being so nasty that one of them draws a block for incivility and it s me who ends up getting fuck ed by their bad faith actions excellent evidence for the proposition that when you give anyone a little power they ll abuse it great decision spot fuck ing on buck winston talk edit hmm non administrator observation i ve only taken a cursory look at the article but it looks like you made a good point i can only think of a handful of shows to have featured three gay characters in a season and i d agree with you that it should definitely be put in that category regardless if you plan on making more edits like this and this you might find yourself with a block extension b s a good administrator and rr s called bright line rule for a reason and considering that edit warring blocks are to get users to cool down if this is how you responded it looks like he made the right call francophonie androphilie je vous invite me parler edit buck winston fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me mother fuck er ugh,-1 +his is a weast of time so fuck yal,-1 +pretty sure they farted on the monster until it pooped it s face off and vomited an assload of fuck,-1 +twat twat twat twat twat twat twat twat twat cunt this user is gay,-1 +lmao fuck off you slav dyke,-1 +haha prince al waleed bin talal is ashk nazi jew lol jew s are ass hole s,-1 +your a dick ead ass hole why delete all the work i did,-1 +ass hole s come and try me you stupid fuck son of a bitch es,-1 +i hate you dude go suck a chode,-1 +your poem it suck s really bad,-1 +cesc fabregas i see it s been changed that he now plays for chelsea looks like i was right all along how do you like that you little bitch i was right and you were wrong,-1 +goths listen to gothic rock not to baby pop if you want you can find sources for every shit,-1 +well he is a racist ass hole and you can kiss my ass,-1 +takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse takes it up the arse,-1 +f off which part of fair use listing that wikipedia itself put together and was used in these images did you idiot s like you did not get stick your dialoge in your rear end that seems glued in front of your pc go and get a life dumb o,-1 +don t think you can get away with fuck ing me over like that you ass hole,-1 +you re not hitler just just another idiot,-1 +kill feldspar feldspar is a blathering idiot that should be publicly executed for his attempted use of force in place of honest debate to reconcile differences in opinion forever small minded psuedointellectuals such as he hide behind anti violence laws and become masters at manipulation abuse of rules and all manner of passive aggressive means to force others to accept their views antiviolence laws are obviously not designed to protect such behavior rather they are designed to encourage open mindedness towards others viewpoints with the understanding that noone wins when people use force back and forth to overcome each others opinions,-1 +fuck you you are the bastard who is in the wrong what the hell gives you the right to censor the information i am adding,-1 +go fuck yourself you piece of shit,-1 +because as a certified loser who has spent over two years of your life working for free and you live by the wiki rules you get a hard on every time you leave a warning you bust every time you get a banning and suddenly when you realize that you can t touch a person it suddenly dawns on you that your a loser who spends their time living in a fantasy world and you have absolutely no power loser loser loser loser loser loser loser i would fuck with you more but i am and my girlfriend is sneaking out her window tonight and i am going to be licking some pussy that must make you feel pretty fuck ing pathetic that a year old is getting more action that you loser loser loser make sure you respond i will be busy licking tight pussy and fingering ass loser loser loser,-1 +last warning you fuck ing tosser it takes me minutes to resolve a page so cunt s like you can fuck wikipedia up,-1 +what the fuck people need to know about gos so shut the fuck up and leave bitch and go to hell,-1 +stick it up your ass,-1 +go and take a big long shit oh yes take a big long shit,-1 +this page sounds like it was written by an idiot,-1 +arg this shit is not credible,-1 +sango likes to suck cock,-1 +fuck youe lifebaka fuck you ass hole say what i want freedom of speech you dumb whore i can write what ever the fuck i want on my user page,-1 +oral sex lay off the fellatio page cum shit ter,-1 +where was there a personal attack chimp or was it because i said shit neither is intended as a personal attack you re not one of those are you petty condecending and stuck up admin ok that s a bit personal despite what you think the use of gallagher can make the article confusing and makes it seem redundant in places therefore i have carefully chosen areas where i use christian names so as to distinguish between the brothers the obvious is not always so try it trivia sections gone i ll work on the contrvercy section later as another helpful user suggested a positive solution in the mean time take the rod out of your ass and smile,-1 +fuck you i ll do w hate ver the fuck i want and no dick ead like you is going to tell me otherwise got it,-1 +kiss my tookhes stupid,-1 +baseball bugs is an rude fuck ing tool i guess you are buddies with him,-1 +i agree that keep faggot s was needlessly insulting but it was in the edit summary so reverting the edit doesn t help there i don t know if you can even edit the summaries at all anyway i think jackson s vote should be counted so i will put it back one more time and if one of you reverts i ll leave it alone,-1 +lol kidding no offense my dick my dick,-1 +semiautos are for faggot s it should be noted the high rate of homo sex ity among semiauto uzi owners versus true submachinegun owners,-1 +what the hell is the point of rr wait never mind there is none now stop acting like an idiot,-1 +hrm hello faggot,-1 +fuck you go and buy some andrex and wipe your rats ass face delete as appropriate fuck you,-1 +wikipedia s downfall is that it is free so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists so fuck you for supressing that you facists,-1 +alex my god fuck ing well better exist more ignorance i ll give you a clue not all people who work for my paper are christian scientists you shouldn t be proud of your ignorance i read and learn about things i write about as a first order of business you should not be proud of being unsullied by knowledge or complexity before you dip your oar in,-1 +wow what a load of shit wiki is list of filipino american populations states and i quote outside of california one of the nation s largest settlements of filipino americans is new york city where nearly filipino americans live within new york the heaviest concentration is in the borough of queens with members of the group this article says some one fix this and find a real reliable source,-1 +you are an utter fuck ing faggot u need a life outside of wikipedia maybe a didlo fuck by ur mom,-1 +lol what the hell is up with you you want to remove my link but you let that crap stay in jesus how pathetic oh you don t think its true umm no sh t mate,-1 +boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs boobs,-1 +to my butt so everyone sees,-1 +han fuck you then fuck you,-1 +break my fuck ing heart ass hole,-1 +you are a retard get stuffed,-1 +hello again i am back with a vengence alright so will block me thats expected so with that note on mind i begin my rant my rant fuck is an interesting word and can be used in many ways such as fuck you go fuck yourself no one else will i fuck ed your mother also who the fuck do you think you are do you think you are god is that it were you molested by your teacher as a child i dont understand what would cause you to think your so fuck ing great i rape all of your family members and siblings cousins aunts and uncles i also rape your mother she liked it and so you are nothing absolutly nothing and you should terminate your existance a s a p as soon as possible just letting you know because you are fuck ing retarted fuck you and go die that is all ps you fudge packing ass monger i have one last thing to say to you die fuck er i hope you rot in hell you son of a skank,-1 +hello tiptoy i hope you die you are being such a freakin jew and please please get off your fatass and stop masturbating because its really getting bad the seminal fluid is everywhere but then again i guess you like it that way you fatass mother fucker er get a f ing life and go fuck yourself you probably do anyway,-1 +fuck you i will go to your house and kill you with my gun,-1 +hey renata have you ever suck ed a black cock in new york,-1 +that s it final straw we re doing this you and me i will be flying to the city of your residence and burning down your domicile do you have nice things because i m going to fuck them,-1 +you re easy to wind up you pommy bastard get a job,-1 +go f k u pos and stop reverting my posts r i will report u pos,-1 +muscle and block me this shit is getting old,-1 +are you fuck ing serious again what hume have you read go fuck yourself ignoramus stop trolling and spamming my talk page and spend the time actually getting an education and reading a book on philosophy for once in your life before you continue to make pointless masturbatory edits on pages well beyond your comprehension please share what is your interest i hume beyond being a thorn in my side,-1 +go fuck yourself stella suck s ass moron,-1 +napoleon factor this movie is like napoleon dynamite the audience loves it even though there s actually nothing to it but clich s which literally get the shit beat out of them as do most things in this movie to be fair napoleon dynamite s bullettime scenes were only in how slow the characters thought all of them multiplied together gets an iq of less than is this the new style to have something suck so badly saving special effects that people can t help but love it i am going to kill someone this is the new blockbuster style and before anyone starts trying to find out where i live so they can hunt me down i will reinforce that crochety old man persona with these parting words pfeh bah humbug hrmph good day sir no nonononononjesus fuck ingchristno don t say anything think first this time i said good day sir,-1 +john mark karr quote you wanna rape us john mark karrs you wanna rape us debra lafaves fuck you the source cited has the entire word before you blotted out is there an uncensored source or are we just assuming it is fuck although it would make the most sense from context to be sure we cannot make such an assumption in an encyclopedia either the word should be blotted out or a reliable first hand uncensored source must be added,-1 +you dummy the man above me is correct,-1 +i know what sans means smart arse and no you don t explain why that word was there what the fuck does it mean does it mean all the band but those bracketed were apprehended or the band were left sans which is pretty fuck ing archaic by the way pretentious some might say those bracketed if it s the former then that s a crap choice of word and doesn t relate to the opening of the paragraph at all which is about garcia getting busted if it s the latter then it really makes no sense whatsoever,-1 +this is fuck ing retard ed treating flies mites tardigrades with equal respect as you do humans is insane why there is even a name for this is baffling have we all gone ape shit mad,-1 +see you see you later dick ead hope you never come back,-1 +you can suck my dick you fat fuck ing loser get a life ass hole,-1 +oh piss off you cant stop me you suck,-1 +no no no no i said he was acting moronic never said he is was moronic himself get it you re readily confusing the two also don t be a dick is not a personal attack either it s actually a rule on wikipedia should i request outside assistance to handle this matter if anything my comment seemed more or less immature but i did not clearly call the disruptive ip user moronic it s the same as saying to another user don t be a dick about it clearly don t is placed there to warn the user to not be a dick in this case anyways it seems we re gettin nowhere with this shall i power level dragon ball,-1 +you can now suck my dick,-1 +haunted angel suck s cock every night,-1 +leave a fuck in snak and i retrn with a fuck in blck you are al fuck ers you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick you suck dick,-1 +warned my arse there was no legitimate warning just a complaint because someone couldn t deal with having his disruptive behaviour criticised,-1 +cum i wanna cum inside ou soo bad you make me so horny i need to feel your toungue caressing my pussy oh god tom i need you soo bad o ah i m cumming just thinking of your dick it s so big i love squeezing out all the juice call me i need u me tom ur so horny from ur good friend adam ur gay ahhahahah tiddly tom is a faggot name,-1 +first i love to eat balls big hairy ones,-1 +go fuck in hang yourself fuck in scum of the earth fuck you ass hole,-1 +yeah bitch stop defending neo nazi s you fu,-1 +right it seems the bully editors are being arrogant and biggoted and are insisting on having their own way again well i have just one thing to say to all those people who got in my way and i don t care if i get block for this fuck off,-1 +appoloboy suck s big fat elephant dick,-1 +you are a douche bag die and burn in hell,-1 +no not really i picked the name to wind up the pira supporting scumbags who frequent wiki it s been fun kingoomiei you really should stick to kiddie fiddling in future as you seem the sort you fuck ing plumb,-1 +you want the source me digg com reddit com ubuntforums etc you re a whiny fanboy who can t deal with the fact thatoh no someone doesn t like your favorite de get over it and quit whining moron,-1 +stop being such an ass hole and actually read what i have to say you f ing re d,-1 +my god you are stupidity incarnate how the fuck is this picture causing serious offense the only problem with this picture is that bahaullah looks like the crook that he was and this is why the bahai organization does not want this picture to float around because it is not a good advertisement for their cult you sound extremely stupid,-1 +dont you know most of the hongkongese dont appreciate of this chinese flag you dumb ass japanese hong kong should be ruled by the hongkongese or the british or you retard ed japanese should be ruled by the chinese,-1 +suck my cunt you son of a bitch,-1 +i don t understand why my page was taken off bull shit i bet they be suck ing alot of dick my page wasn t vandalism it was truthism look for you self espionage or a dick spying on some pussy lovers involves an individual obtaining information that is considered secret or confidential without the permission of the holder of the information espionage is inherently clandestine as the legitimate holder of the information may change plans or take other countermeasures once it is known that the information is in unauthorized hands see clandestine humint for the basic concepts of such information collection and subordinate articles such as clandestine humint operational techniques and clandestine humint asset recruiting for discussions of the tradecraft used to collect this information hey i gotta joke and it goes like this dick says hey balls get ready for a patry balls replies you fuck ing liar everytime we go to a party you always go in and leave us out here knockin history incidents of espionage are well documented throughout history the ancient writings of chinese and indian military strategists such as sun tzu and chanakya contain information on deception and subversion chanaky ass tudent chandragupta maurya founder of the maurya empire made use of assassinations spies and secret agents which are described in chanakya s arthasastra the ancient egyptians had a thoroughly developed system for the acquisition of intelligence and the hebrews used spies as well as in the story of rahab feudal japan often used ninja to gather intelligence more recently spies played a significant part in elizabethan england see francis walsingham many modern espionage methods were well established even then http w henrywotton org uk the cold war involved intense espionage activity between the united states of america and its allies and the soviet union and the people s republic of china and their allies particularly related to nuclear weapons secrets recently espionage agencies have targeted the illegal drug trade and those considered to be terrorists different intelligence services value certain intelligence collection techniques over others the former soviet union for example preferred human sources over research in open sources while the united states has tended to emphasize technological methods such as sigint and imint both soviet political kgb and military intelligence gru officers were judged by the number of agents they recruited various forms unlike other forms of intelligence collection disciplines espionage usually involves accessing the place where the desired information is stored or accessing the people who know the information and will divulge it through some kind of subterfuge there are exceptions to physical meetings such as the oslo report or the insistence of robert hanssen in never meeting the people to whom he was selling information the us defines espionage towards itself as the act of obtaining delivering trans mitting communicating or receiving information about the national defense with an intent or reason to believe that the information may be used to the injury of the united states or to the advantage of any foreign nation espionage is a violation of united states code and article uniform code of military justice cite web last us department of defense authorlink u s department of defense title joint publication department of defe,-1 +rucka rucka is a piece of shit,-1 +your ass can hold them quite easily,-1 +facist muslim fuck face is what u r bitch fuck off and die,-1 +what a crock of shit that s the pissiest poorest logic i ve ever seen what group do you belong to the shortbussers diligent terrier may be a dick but i ll say one thing for him he s a ethical and honest in all his dealings and i don t think he ever found himself lost in a bathroom stall which i doubt you can claim to insinuate that what dt did constituted a personal attack constitutes a huge case of self embarrassment on your part it s just ridiculous,-1 +self hating jew i think some of the current text of this article may have been stolen from the copyrighted ku klux klan encyclopedia entry for nigger lover have a look why are you helping to promote hate speech on wikipedia,-1 +fyi hey you yes you you really are a massive cunt,-1 +red hat ferrick understand something never assume because you make an ass out of u and me o k i already knew about the moluccas ternate and tidore islands these were actually the fabled spice islands they however lasted very short in the spanish colonial enterprise also we are not discussing the indochina issue in this section if you didnt see it is above im not going to discuss that issue with you here,-1 +what really happened at augusta high school after chris woods death what the fuck is that sh t i m dying in this country fuck ed up town bugs flying in my mouth i can t see pollen let s get the fuck out of this country fuck ed up sh t,-1 +fuck you mother fuck er,-1 +poo it s fewest you idiot,-1 +fuck you just one more reason to support my theory where is hitler,-1 +fuck ing mess what a total,-1 +fatty you are the most disgusting fat worthless piece of crap to ever grace wikipedia losers who still live with their parents work in walmart and pretend to be an anarchist are worthless swine with nothing relevent to add to an encyclopedia please leave this place you pathetic drag on humanity you make me sick you pathetic cretin i hope you feel nothing but unhappiness for the end of your days fool i hope you suffer in your inequity weighed down by your massive manbreasts making women point at you and laugh in the street and making men thank god they aren t as ugly as you you look like a paedophile and probably are children in the street run into their houses when they see your approach a truly vile beast of a man with no intellect no integrity no idea of how pathetic he is you maintain a website and believe this is virtuous what a waste of human thought you truly are a curse on humanity is what you are and the sooner wikipedia is without you the better for all i beseech you please leave this place and never come back turn your back on civilised society and take to the wild maybe there you shall find some solace even in the very wilds of the planet there are animals who will appreciate you for what you are if you are capable of a modicum of kindness please consider this for you are a drag on humanity,-1 +ass hole hey bitch h dont tell me wat to do,-1 +epbr is a bigger faggot then wikipedia and loves to suck the cock epbr is a bigger faggot then wikipedia and loves to suck the cock epbr is a bigger faggot then wikipedia and loves to suck the cock epbr is a bigger faggot then wikipedia and loves to suck the cock epbr is a bigger faggot then wikipedia and loves to suck the cock epbr is a bigger faggot then wikipedia and loves to suck the cock epbr is a bigger faggot then wikipedia and loves to suck the cock epbr is a bigger faggot then wikipedia and loves to suck the cock epbr is a bigger faggot then wikipedia and loves to suck the cock,-1 +get fuck ed just so you know,-1 +the king of stupid unconstructive edits is you go fuck yourself,-1 +sorry that you are sick how much longer before you f ing perish,-1 +hey you freaking hermaphrodite when you are bored do you bend your dick down and stick it into your vagina,-1 +you really should stop suck ing penis all the time,-1 +you suck i despise you you are a snobby jerk y quinn who should be banned forever from editing,-1 +roz lipschitz is block because he is an idiot,-1 +butts screw my butthole mr krabs,-1 +in other words piss off tbhotch you homo,-1 +god damn god damn it fuck ers i am using the god damn sand box,-1 +one more message like this and you get stabbed to death you have been warned mother fuck er,-1 +perhaps you should be taking a better care of your kid instead of being a dick on wikipedia i ve quickly checked this ip s contributions and didn t find anything as obscene as your actions here people like you are the reason why this website is widely considered a joke,-1 +the cut away diagram is shit i hold two bachelors a masters and a doctorate i like to consider myself reasonably intelligent i cannot figure out where the water flows in or out of the diagram and find it stupendously idiot ic perhaps we can find one that isn t so shit,-1 +i hate you u stupid little midget,-1 +vandals of the worthless fuck ipedia unite fuck the slime admins fuck them and listen to them beg for more,-1 +hi wow you are such a geek bull shit mother fuck er,-1 +good job u nazi dick suck nazi dick suck u have suck ed the most nazi dick and i think u deserve an award for it u stinkin ass jew block me i dont care i have more accounts u slutbag i dont have to do shit u say u jew ish cunt,-1 +shut the fuck up you gay nerd faggot,-1 +mongolian death worm size and nipple count what the hell widr i just saw one of the worms in question and it was about the size of my penis so change it back,-1 +benben has a x up his ass yeah you heard me smelly bot bastard,-1 +hey fuck you cunt bag you dont own wikpedia and please report my i want to close my account any way you creep,-1 +his name is fuck ing cohen enough said,-1 +well you can suck my balls gay fuck wikipedia is not censored so i don t give a fuck about your feelings nor do i give a fuck about your grammar nazi sm because i the edit summary is not on the front page of the discussion do you go calling foul to every grammar mistake in the discussion section of articles and i am correct in changing it as i own the dvd and played it repeatedly further surf the imdb boards the general consensus is that she is the insurance that the unmutated virus gets back to the future why the fuck do you think the scientist sits there same appearance as she was years later ie haven t aged a bit she came back and sat next to the person who released the virus or do you really think she began in insurance then thirty years later haven t aged a single bit and became a scientists working on time travel fuck ing hypocrite,-1 +hey warrens fuck you too uncivil manner means me trying to elaborate on my arguments and getting revert on revert that s what uncivil means so yeah your a big winner champ and won t get banned ass hole since the vista article contains information about the anti trust situation which since it seems some people here have got a mouthful of gate s balls is mislabelled anti trust controversy not really a controversy though is it when a court elected by over two hundred million people issues a decision it a court ruling like it or not there s no controversy too that otherwise we should renaim the ted bundy trial to the tend bundy controversy since any court ruling merits this label since there s a section on anti trust laws and vista it s worth noting the recent news that microsoft are going to be paying a hefty daily fine for completely ignoring the court s injuction and this does have bearing on vista you can t quote the m s pr saying we don t know what they want us to do it s all questions or w hate ver else he mentioned without an adjunct sentence of the head official regulating the anti trust actions quoting him too saying that our injuctions are crystal clear yet ms has ignored them for over two years now but of course this has no bearing if this article is supposed to be a showcase for vista so like i said if some fuck ers had gone into the trouble of actually discussing any of that instead of reverted every single edit in a hitler ic fashion things would be different but for now this stategy of being a hawk on an article i wish to keep in a certain way and being completely uncivil and rude about it merits from my part a roayl fuck y s all take your mouths off of gate s balls and then we can talk,-1 +block me you fuck ing dick ukers,-1 +your head is filled with bat poop it s covered with maggots and shit you are the product of a llam ass alivary glands ha ha hahahahahahhahahahahahah,-1 +fuck you fuck you fuck you ass hole s this is bull shit,-1 +jews and jew s can we meaning male whites truely co exist with jew s i mean nigger s and spics are bad enough but the fuck ing jew s go too far i think there should be a genocide and there should be an article on wikipedia that encourages the death of jew s for those who agree please message here for those that don t eat me we came in,-1 +another noob fuck u,-1 +it s interesting to note the same publication calls it spitsberg with a normal s again you re wrong shut the fuck up,-1 +quit threatening me beyotch,-1 +you need to fuck off and stop hrassing people,-1 +mother fuck er fuck off dick face,-1 +nazi bastard i will hang your corpse from a tree,-1 +lol guess what your a faggot,-1 +i hate armenia and all your dumb allies you don t deserve to live can t wait till we can kill you guys again,-1 +block me i don t give a shit,-1 +that block didnt work you stupid cow,-1 +im going to kill you you are worthless im am going to kill you and burn your house down but not befor i hack you lillte account and take your livelihood away,-1 +abd is muslim scum the religion of terrorism,-1 +re thegodstemplate the text is different looks better then the plain ass text used on everything else and once again who gives a shit i use it on a few pages what does it matter,-1 +i told you suck monkey butts said george washington hahahahaha and more ha ha ha ha ha oh wait thats hahahahahaha,-1 +holy shit you people suck i don t see any warnings given to leitmotiv for his continuous belittling of other editors,-1 +so basically you re butthurt wiki jew that s lame as shit get a life loser,-1 +gross if some bitch ever came on me i would throw her gross ass out on the pavement,-1 +my apologies suck my junk bitch,-1 +sure that makes sense you can t support your reasoning so you fall back on a big stick and ban me from any way of refuting your bull shit go for it then big boy fuck s sake power corrupts eh you re probably a nice person but jesus you can be a cunt when you try oh well have fun with your imaginary superpowers i ll be back to the wiki tomorrow on another ip bye,-1 +this is for you if you deleted that article you know which article i m talking about them may you die you fuck in bitch cock susker,-1 +i am no sockpuppet sorry fuck ers,-1 +i think your cock needs protecting,-1 +hi there in case you aren t a robot stop sending me shit messages and instead check my edits i am the copyright owner you must cease and decist from distributing my content,-1 +i m sorry the term was fappers meaning people who enjoy masturbating to said material flappers would suggest you re a bit dated and twenties ish maybe instead i should say that undue bias is given to those who aren t offended by pornographic material to begin with showing this page to the average person generally elicits either offense or a general i can t believe wikipedia in most of the cases i show it to someone else primetech,-1 +suck it again twerp,-1 +rape rape in the butt,-1 +hey fuck you hey i just want to say i hate you but you are deleting the entheozoo pharmacognosy,-1 +afd vote on fts sincere apologies for clobbering your vote don t know how it happened and i assure you it wasn t intentional s ok shit happens isotalo,-1 +um dude i hate to fuck ing break this to you but the game is still on g unit http w thisis com watch the fuck ing video at the top of the screen next time know a thing or two about hip hop before editing the fuck ing wikipedia page,-1 +this is ridiculous it makes iranians look stupid who the fuck are you a political commentator an outspoken self proclaimed expert on contemporary iranian politics oh right my pen name is the persian cataphract so let me try to decipher your next tactical move the race card oh right your name s not al sharpton or jesse jackson let me guess the next one nationalist that s right you ll throw each and every syllable of content present in my message in favour of this preconceived straw man fallacy and red herring you ll probably even point to my liberal use of profanity i just must be nothing else than this lion and sun foam at mouth persian nationalist with an inferiority complex spiced with a pinch of victim mentality and certainly i must be dumb as you so eloquently have arbitrated above you said it yourself right here i am used to being attacked by editors whose very account names show they are here for single topic pov pushing who do you expect to be neutral on topics of iranian nationalism a user called iranianguy or a swiss editor contributing under his real name and no stakes in the matter who for that matter do you expect to be neutral on topics of armenian nationalism an editor called araratarev vel sim is that how you assess content by making a shallow assumption on pen names expectations the god given right to anonymity on the internet how fuck ing petty are you and the idiot who made you an administrator what next are you going to ban iranians from editing or contributing to iran related articles indeed not just a laughable policy but indeed a dangerous one as well most of the world class authorities are iranians with your fuck ed up logic we should dismiss their contributions because irrespective of their content you ll instead look at their political affiliations and their names and put it into the bin of rejection oh right you re swiss and because switzerland is this shining paragon of neutrality hosting thousands of bank accounts of islamic terror organization you re obviously this stereotypical neutralist good lord listen to yourself luckily academia doesn t work like that scholarly enterprise and political affiliations remain strictly separated so it doesn t really matter if kaveh farrokh or anyone else is a self declared outspoken nazi communist socialist liberal conservative or what have you it has no bearing on content that must be assessed purely by content that s npov a sober neutral objective approach just bare bones bare knuckles source critique source critique make an assessment on the content not the person s you marginalized iranianguy period and as conveniently as you shrugged him off because of his pen name you shrugged off his fully legitimate criticism of your approach no matter what country or pen name or real name you have it has a universal stamp ass hole behaviour,-1 +ok delete the page i am tired of this shit already,-1 +anyone else glad that this stupid fuck er offed himself i sure am hey britbarb fuck off your nephew was a punk who couldn t handle his shit and now you and his parents are on some fuck ing caped crusade to destroy the lives of millions of innocent people who just want to alter their consciousness i m sure that s what your salvia using kid would have wanted karma s a bitch keep up your holy war and the universe will smack you down so fuck ing hard that you ll wish that you all had killed yourselves when that pussy brett did,-1 +forget it i will call crap crap whenever i feel like it it s bad enough i have to wade through it i feel insulted by that fact alone crap crap crap,-1 +real encyclopedia so fuck you fuck ing all fag fuck s,-1 +there are zero reliable sources and i don t mean youtube and crawdaddy they are not reliable for this if there s a reliable source for the def leppard incident then include that in the article personally i can t stand danzig but that s irrelevant to producing an accurate article sourced reliably and not filled with seedy tabloid garbage you sound like someone with a bone to pick if you want gossip and sensational nonsense go read the sun otherwise nobody cares that danny lollipops deliberately provoked and then assaulted a singer backstage and then put the video online in hopes someone would listen to their awful band considering it was years ago and nobody remembers the shit band i d say their ploy failed,-1 +fuck off fuck off muazim balwin,-1 +fuk u bitch u best ban me now,-1 +hitler you have no knowledge of anything related to the topic why would i add a source to a type of list that does not need one just like plenty of other lists on here something either belongs or doesn t and anything i added there you can easily see belongs just by clicking on that entry so it d be great if you could stop being a nazi stop being stupid and stop being lazy and just click on the damn name,-1 +fuck you bitch kiss my ass you dick ess troll i hope you never return from your gay ass vacation fuck you,-1 +you mother fuck er you mother fuck er you re dead enough said,-1 +hey you fuck wad pedophile do you even fuck ing realize what this ass hole did to our country i bet you ll be cheering when you see penises cut and put in our troops mouth,-1 +this hissy fit shit is why wikipedia is a joke some fuck wit with a malfunctioning cock goes power mad to make up for impotence in the real world like it or not you half wit san diego is known as a whales vagina and if you don t like it it doesn t matter you suppurating cunt,-1 +hey your a gay nigger mother fuck ing cunt,-1 +lol i remember u manga that shit was funny but seriously orton isn t orn and vickie is one of the worst things about wrestling,-1 +what a problem with you i wanted to say that what is problem with you why you are trying to redirect events schedule of pakistan by in pakistan are you a mother fuck er boy or you want to married your sister with me oh i love your sister s boobs hm yummyy,-1 +omg i dispute the gay ness of this discussion omg what a bunch of fuck ing nerds not only are your arguments weak and impractical but youactually seem to take yourselves seriously my recommendation buy salt bitch es lol stupid gay bitch es,-1 +blow me ass hole,-1 +no you ass hole i am done with you,-1 +fuck you a ss hole fuck you a ss hole mother fuckeruck er,-1 +this is outrageous get a life i m not gonna sell the fuck ing picture i just want to contribute to the fuck ing article don t you understand no well understand now,-1 +hi is it a part time job of yours to be on my ass about every edit i make to wiki and please spare me that crap about being civil since you made this personal by singling me out on numerous occasions w hate ver affiliation or interest you have in wiki is not nearly as serious as you make it out to be seriously get a new hobby,-1 +fuck wikipedia and fuck wales the article cannot be more of a perfect case of violating wp blpcrime if i were a defense attorney i would be wetting my tiny white pants wales is a media whore it suits him to have that article here chan,-1 +why the fuck is this article protected,-1 +comrade are you a soviet what the hell,-1 +why don t you just fuck off,-1 +justify your changes mother fuck er,-1 +you are fuck ing stupid are you the one who invented wikipedia other know as shit ipedia crapipedia cause this is just crap so go get a life you looser with no life,-1 +is it me or are you a fuck ing n b wrong template used when talking about template removals there have a nice day,-1 +also favonian is a super huge faggot,-1 +you need a life really bad bitch,-1 +god what part of fuck off dont you little pimply mouth breathers don t understand cna t get a girl but your e king of shit mountain huh i laugh at you,-1 +biggest jerk on earth is an ass hole fuck him right in the eye,-1 +you re all fags for trying to delete this article go kill yourselves instead god al fuck ing mighty,-1 +prick what a little bitch,-1 +laughable censorship i see that a post i did in the moon hoax article was ofcourse censored fuck you all admins,-1 +bull shit the section used to be a neat little critism section until that user added about a paragraph of rebuttals to it i could nt be bothered challenging it so i just keep removing the pov and trimming it slightly feel welcome to take the section back to the th of january if you want you ll have my support anyway i ve only been doing modest tweaking as i see it needed on that article i m not prepared right now to analyze its current state too much i m trusting that everyone else there will keep each other relatively honest thanks for the heads up though talk,-1 +then this isn t an encyclopedia so nobody should ever call it that if wiki isn t based off of truth it s no better than tabloid magazines and that s the truth so fuck this website and fuck all of you,-1 +how s about you shut the fuck up instead if your going to use wiki to write history at least make that history truthful and accurate instead of spreading right wing racist viewpoints you nazi piece of shit go die in a hole somewhere dont censor you racist,-1 +i heard this fuck er was expelled from high school for fuck ing a sheep talk,-1 +thank you for the explanation now i know exactly what your issue is not seriously can you be any more ignorant i mean are you actually trying to be an ass hole it s a simple process you object to something i ask what the issue is you give an answer prick,-1 +go fuck yourself you fuck ing delteted it anyway whats the fuck ing point of a public encyclopedia if you delete evrything i ve edited a few pages so that they are more dettailed and wtf do you all do fuck ing get rid of it and dumb down articles just to cater for you publicly ignorant american twats i hope george bush gets killed by islams fuck you all,-1 +hurricane katrina you are crap you fuck ing idiot,-1 +what the fuck ur a dick urv never even been helensville ya mommas boi,-1 +n b nb fuck you duchas nachui,-1 +fuck you it war now ass hole,-1 +fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck,-1 +fuck you fuck you deletionist,-1 +get off your fuck ing high horse i m not a newcomer please just piss off from my user talk page and go admin abuse someone else,-1 +fuck u whore bitch i was reverting a vandal blocking me meant i couldn t revert it but that is expected from wiki whore bitch es no man no life just a sad self indentured existence so fuck u,-1 +ho ho you fuck ing twats really do make me laugh,-1 +e j thribb so farewell then malleus fatuorum admin fighter r i p f off you stupid c that was your catchphrase along with how old are you you moronic elitist admin scum i think we should be told so rant in peace or not if that s more radical and bloody annoying,-1 +oops i saw blocking warning on your page as well fuck off come on discussions people like sitush are owing articles unnecessarily and i have given explanation to each of my word for sitush with proofs and evidence arrogant believes his arguments and references are best look at his discussion on his talk page where he writes people to fuck off illogical he cant digest logical evidence still trying to get the biology definition in math book eg has written about khatris origin from dashrath sharma on rajputs book idiot cant understand references and read them racist https en wikipedia org wiki racism you come under this definition look at his all articles he only writes articles which classify people based on their features each word is true and has a evidence for it read it by yourself before issuing warnings,-1 +fuck finlay mcwalter hes a faggot and he needs to get a fuck ing life faggot,-1 +hey quit being a jerk,-1 +go fuck urself mkk,-1 +hey jingiby you hate turkic people because you are a racist slavic bulgarian but you hate your turkic ancestries everybody hate you racist pig,-1 +eat a dick eat a dick wiki nazi big dick ig dick ig dick ig dick ig dick ig dick ig dick ig dick ig dick ig dick ig dick ig dick ig dick,-1 +could you fuck ing leave me alone bitch,-1 +fuck off subhuman scum you lost the right to demand civility when you posted the human centipede on the frontpage without any provocation you took a huge aggressive dump on everyone who visits wikipedia ranked on alexa in case you didn t know this is not a niche site for scat lovers you have no fuck ing right to demand people to treat you with any degree of respect or politeness,-1 +you are a rat bastard and you know why,-1 +i will beat you you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers you failed again to block me wikipedians ha ha for some nic,-1 +gay fuck ing cock face shit ass cunt,-1 +dear doorsajar please tell bongwarrior that the vandals have won bongwarrior has had to protect is talk page because vandals kept on writing about what a cock loving faggot he is bitch,-1 +anti russian movement in central asia for one years ago we established a network of a central asian youth party that is motivated to act against pig like russians we won t let your children alive in our countries till the last dirty slavic russian leave our countries from caucasia to south russia your sons and daughters you send to our countries will lose their heads kill one caucasian and central asian and we will kill for every single individual exactly russians death to dirty slavic russians germans kille you dirty slavic bastard s and we will kill you dirty slavic bastard s you are born to serve non slavics not the other way round sieg heil islam o gorgon,-1 +fuck you too put this finger in your ass hole bastard,-1 +how would you like to lovingly suck my huge gonads,-1 +see your userpage you stupid bitch he,-1 +fag fag fag fag fuck fuck fuck a luck a ding dong,-1 +lgbt rights your a fag,-1 +and who the fuck are you to say which sources are reliable and which sources are not solzhenitsyn has actually served eight years in the gulag his eyewitness testimony is reliable and that s final,-1 +recent warning you be hating on me cause im black nigger fuck you,-1 +hi you re my little b tsch,-1 +take the latter part of your advice then shove the rest of the message right up your ass,-1 +do you give blowjob discounts to wikipedia members,-1 +fuck off ass hole go and get a life nerd,-1 +you made a mistake you ass,-1 +go away noone missed you while you were gone you horrid piece of shit now piss off and don t fuck ing ever come back,-1 +i didn t vandalize your user page idiot,-1 +what the fuck is wrong with you you say i am a fuck ing vandal and i havn t done anything your bot is fuck ed up,-1 +hey faggot you suck my huge dong,-1 +why is your name january it s a pretty shit name,-1 +wow you da pro then i told you honey i was on wiki when you were participating in cub scout cookie sales no shit you can see my edits from hg wow how does that happen can you explain it to me,-1 +suck my horny dutch balls,-1 +range block your mom has good ass meat,-1 +why are u the way u are ur a little bitch why did u delete tylers wikipedia you are probably gay er than him go to hell,-1 +this article is a piece of shit read it and weep jw you re just a fuck ing little high school piece of shit no one gives a crap about your opinions there are no citations at all in this piece of shit article so i m going to delete this crap,-1 +are you fuck ing kidding me as i lay crying is complete trash and nowhere even close to black metal get off this site,-1 +f off there f ing is a blu ray version of fantasia coming out now f off and leave me alone you re a f ing british guy who doesn t get anything that goes on in america,-1 +jp gordon is a fuck ing kike,-1 +suck your dead mums toe regards your dad,-1 +hey pice of shit don t tell me what to write on wikipedia i m gona hunt you down and kill everyone you ever loved,-1 +arsten you re the biggest cunt of all,-1 +j delanoy is a mother fuck er you sure got a lot of time to revert vandalism i will always be around to add new fake contents you fuck ing moron hahahahahaha,-1 +page go die you stupid arsewhole automated filter,-1 +nigger fuck you faggot,-1 +uranus rules and u suck nomorewriting bitch i hate u go suck uranus and a dick,-1 +fuck you bluezy you are probably just a gay who likes it up the ass,-1 +you childish stupid idiot get a life animal fuck er,-1 +wtf ever from waldo you guys are so junior and lacking,-1 +block me then you cock suck clever people don t give a fuck about editing wikikpedia just because wikipedia has turned you into its bitch you can t see that being block is not a punishment if it happened to you it would be a blessing but you ll never see how much time and life you ve completely wasted because your brain is mush fuck in wretch,-1 +oh you might not me aware by my edits were not false or vandalism they were factual edits made about the school and as i student i would be aware of changes and you would not please fix up the reverted edits as you re starting to piss me off with your bull shit,-1 +jack and jill oh come on just because you come from that ass retard ed prince george and that your dad also happens to be your sister it s no reason to be such a fuck ing pain in the ass maybe you should move to prince rupert if you are that anal ban me ass hole i am using a public ip in a starbuck anyways,-1 +andrew quah is dog shit fuck girraween hs you mother fuck er chink,-1 +this user is a fuck ing bully who bully s people an owns articles i gave in on the discussion regarding the numbers and formats on the page why should i this time rich please see my point i don t want this aggro,-1 +fuck you and your family,-1 +hey that reminds me is the country of kuwait still banned you fuck tards seriously please unblock kuwait you rude communist sons of bitch es,-1 +now gaba p joins the long list of complete fuck ing ass hole s who revert every minor edit of the younger dryas impact hypothesis wiki page let me give you a clue fuck face you can t possibly justify reverting an edit that simply ads another tertiary peer reviewed publication related to this subject it s inane it s anal it s uniformed and it s just plain wrong,-1 +fuck you you lousy sack of shit thatsphucked com post girls cup video aspx,-1 +go fuck yourself jess samsquanch is a real name,-1 +wa nker alert wa nker alert if i find out where you or james whale are i promise you i will fuck ing smack the shit out of you,-1 +so i herd you liek mudkips go suck it,-1 +w hate ver you say gay boy atleast i have a life and im not fuck ing unchanging shit on wikiepedia,-1 +stop your bull shit editing you are the biggest mother fuck er here on wikipedia go back and watch your shit pokemon cartoon and suck your mom and sister s vagina you dick ead,-1 +fuck your guts lol,-1 +going on mattythewhite lad you are a horrible waste of space mate why are you so arsed about oussama assaidi he s dead lad and you know it you are just like stephen french a big horrible grassing twat,-1 +a problem i do have a problem some maniac has nominated you for admin that s nuts nobody is being harrassed why does the truth hurt you so bad your bullying aint working out for you on this one huh aw you tried to say that all americans have incest on the jeremy clarkson page and went to great lengths to make it stay that way i had you reversed you re burned you were wrong now it has the correct quote and the source i was suspended for my troubles you tried very hard to prevent this it s all there in the history you are a weasel i m sorry that they picked on you in school but picking on me is gonna make your life much worse when i tried to start a discussion about it you repeatedly deleted my topic you even had your little friends wrongfully block me so fuck you and eat shit i will make sure that your nomination page reflects the truth fuck you very much you bullied the wrong person yourcousin,-1 +oh and armarkov you fuck and are a cock suck,-1 +don t accuse sockpuppetry without evidence what kind of crap is that spoken like a true despot let s have the evidence or unblock you can t convict without evidence that s very disruptive preceding unsigned comment added by,-1 +but he has a beautiful cock,-1 +shut the fuck up am i bothered,-1 +hello all i have been block by these ass hole s for speaking my mind wikipedia and their liberal minions can suck my fuck ing dick no funds from me and i ll see that nobody i know contributes fuck off,-1 +fuck you you block me i do not appreciate that i did nothing wrong and was antagonised by that other guy so fuck you,-1 +o why dont u get off my mother fuckerucker fuck in dick son u think i dont kno my shit nigger,-1 +hi hi you fuck ing retard flakes was not creamy i am i ve never even heard of this flakes joker eat shit and die you cum guzzling cock suck wikipedia suck s big donkey dick and so does that crusty old bitch you call your mother have a nice day,-1 +why is adrian such a fuck ing loser get a life,-1 +hey faggot you keep reverting my changes to pages i don t like it i m adding legit info check yourself ass hole,-1 +i dream of jesus why did you feel the need to revert my sourced edit in the i dream of jesus article you may think that you have some kind of ownership over the content of this article but you are sadly mistaken i suggest that in the future you keep your hands off of the legitimate edits to articles which you have also made contributions to if you continue to be an ass hole and revert edits without just cause you will be reported to wikipedia,-1 +you mother fuck ing communist scum,-1 +dennis go fuck yourself nigger cock suck stupid fuck ing pussy,-1 +you utter twat what kind of stupid cunt reports someone for a perfectly valid username you complete waste of oxygen you rancid piece of dog shit get a sense of perspective and stop being a petty minded little fuck er,-1 +what a cowardly jew lmfao stick to picking on girls and women in the ghettos you and your nazi faggot friends make out of functional civilisations,-1 +evidently it is one rule for unfavorable accounts and another for bitch es like katieh who can flout every rule and get away without a hint of a warning and all thanks to unfit admins well if that s the way it is fuck you smalljim catch cancer and die as soon as possible,-1 +you suck monkey butts said george washington,-1 +ass hole i already thought that you left the german wikipedia now get lost you bitch,-1 +do you all gay y ass fags always give automated responses huh fag,-1 +you are a fuck ing dick go fuck yourself,-1 +ok screw you now fuck in block me,-1 +good evening pussy just a friendly reminder for you to kill yourself i love you cunt,-1 +you re fuck of bitch,-1 +i said go fuck yourself you robotic piece of cunt,-1 +thank you so much for your nazi like oversight but you can shove your advice up your ass i just like messing with self important dick eads who think they know everything and damned if wikipedia isn t full of them signed your number one dirty jew fan mel gibson,-1 +how dare you how dare you delete my user talk to you wtf i was just trying to tell you that i didnt mess with anyone s page at that moment and then you go and delete my message to you thats nice,-1 +thanks for being late to the party but i have added no new articles since yesterday while you have all been very impolite and overly protective i have lost interest in torturing you so you can go fuck yourself,-1 +no i think it s somebody sitting on the toilet going poop,-1 +nigger s we need more information in this section regarding the widespread usage of the jew s harp by nigger slaves in the antebellum south,-1 +it s you who is doing original research by suck ing dick of allmovie and not giving sources to why ib is an adventure film schindler s list was a man on a mission to save the jaws is it an adventure film cock suck,-1 +hahaha gnaa will screw your asses all the way to hell vandals rule,-1 +do you contribute anything i d like to know if you are a human or just a destructobot if you are a desructobot can i say fuck you or does that disrupt your circuits what if i said fuck you in destructobot language that any different let me know dick,-1 +go the fuck away dumb commie scumbags,-1 +fuck you,-1 +hey suck my ballz bitch,-1 +fuck wikipedia on wheels you should be forced to eat your own shit you fat bastard,-1 +ocean in the end michael tragically hangs himself while masturbating over his brother s dead body,-1 +thank you your the wellcome arabic assholr go back to arabia you fuck ing arabic saudi mar utc,-1 +again are you dumb or just stupid seriously if you can defend a photo that s been manipulated you shouldn t be adding content to wikipedia themepark,-1 +fuck u fuck u bitch y da fuck wud u delete dat it wuz hilarius,-1 +you sound like an idiot,-1 +fuck off faggot truth isn t vandalism you have no idea what you re talking about p s fuck you city slicker p s s nigger p s s s vaginas,-1 +you god damn son of a bitch you fuck ing block me again you block me one more time and i ll rape you and your fuck ing mom we re hicks here and ill run your ass over with a tractor and then shove it up your ass just the way you like it you gay son of a bitch thanks for your time ass hole,-1 +horny bastard what a horny bastard he didnt even need a viagra,-1 +the only thing you are persistant at you ugly bastard is fuck ing the troll,-1 +rats at the wikipedia web site rats are around us everyday unfortunately we as good honest citizens have to deal with these idiot s everyday and need to know how to kick ass big time man you know for sure for sure well here i sit a broken hearted came to shit but only farted that was one of the greatest poems ever got a hour standing ovation back in at the convention center in san antonio god it was good some times i think shit ing was gods way of making a joke with mankind you know excuse me oh bartender i will take another jack and coke thanks o k where were we oh yes licking me naked the avenges wikipedia official can t keep there figures off my ass cheeks like lick me all night you know a sex good looking girl totally naked hairless between the lags,-1 +regarding you being an ass hole go fuck your mother,-1 +hey ipadperson please try to keep fuck etc out of edit summaries they re typically here to stay thanks,-1 +i hope you like what you started i shouldn t have been banned that was a complete abuse and utter bull shit i hope you like the disruption you have caused to the project my ban needs to be overturned so i can stop advocating for it to be undone you guys took a dedicated editor and me out of the project just so you could keep pushing pov and free the admins to be abusive i hope your happy when my ban is overturned i ll walk away but until then i a never going to stop commenting because it was abusive and never should have been allowed kumioko,-1 +don t you have anything better to do i mean really you love to shove your opinion down other s throats and go around censoring completely relevant comments get off my dick,-1 +sitush why do you hav itchy anus sumedh saini is a saini by using last name as saini he is identifying himself a saini so just shut up ass hole,-1 +suck my c ck you re a nazi,-1 +hooters boobies funbags tits ahoy,-1 +well i guess your stuck with me til that someone else comes and yeah i would like to know who doesn t want me on here myself and i know one more person that don t want me on here is that stupid son of a bitch year old yeah him because he doesn t know anything he still think that the version of the llanvew collage debuted on july which in reality it debuted on august he thinks he s so smart but he doesn t know shit from shinola,-1 +wow holy fuck this girl is hot as hell i know we aren t supposed to put things like this on talk pages so you can delete this but seriously man instant boner whenever i see her and i m not even black or anything nor do i have some kind of black fetish just wow,-1 +nazi germany and real germany are identical you ucking re ard you are a nazi apologist go die in a fire,-1 +che guevara was the same as adolf hitler george bush not that he ordered the killings of unarmed civilians like che osama bin laden etc he killed people through orders and infact this man killed people in person while shouting that he was protecting these people and killing them for their own good not even adolf hitler claimed to be killing people for their own good he was a communist and a strong beacon on what communists are really like in power try to prove me wrong how many communist regimes have resulted in the deaths of thousands cuba romania bulgaria yugoslavia poland millions russia china vietnam cambodia and that doesnt even count the numerous revolutionaries who fought for their own country while killing it off dont push this social policy bull shit cause in reality it has no base compare that death toll to capitalisms shining beacons of the world the usa executes an extremely thin ammount of killers compared to this there is something wrong with being a communist you leftists complain about capitalist nations of which nazi germany wasnt abusing the proletariat take a look at your happy and caring communist nations every person i know who claims to be a communist is on social welfare complains about the government who gives them the right to live and wastes hard earned tax dollars in gay cafes discussing poetry and why the government wont allow pink che guevara t shirts what the fuck is wrong with this society you all claim that jobs hold you down jobs are the basis of this society functioning if you pay a doctor the same as what you pay a toilet cleaner there will be no insentive for him to spend years at medical school you can all go fuck yourselves and die in a gutter,-1 +narc please quit fuck ing up my edits on steak diane thank you,-1 +you are a bit of an idiot aren t you as per you delete recently created article that duplicates an existing topic inflation please indicate where the term inflation myths appear on the inflation target idiot,-1 +i dont give a fuck nigger,-1 +hey darkwarriorblake suck my dick,-1 +no he fuck ing is nt he is anti british and he hate s our beloved queen,-1 +your request to be un block has been granted for the following reason s suck my cock bitch es request handled by,-1 +why are you being so rude i only want to help you mother fuck ers fuck retard s you re such retard s i hope you all die seriously die wikipedia the encyclopedia that nobody can edit because all the ip addresses are banned hahaha you re so downhill it s sad too bad the beehive can t deal with reality hahaha hey that reminds me is the country of kuwait still banned you fuck tards seriously please unblock kuwait you rude communist sons of bitch es,-1 +you ass hole s on wikipedia don t understand the importance of some hip hop artists go listen to your lame ass white boy music,-1 +i see nothing wrong with calling an ass hole ass hole,-1 +piss off,-1 +here fuck you talk to me without a template,-1 +ged likes penis,-1 +fuck you fuck what the fuck you fuck ing fuck that was my fuck ing life that you fuck ing tore apart your a fuck ing fuck you fuck ing fuck ps what the fuck fuck head as fuck ing fuck fuck er fuck,-1 +go fuck my dog benny in the ass,-1 +who who cares you re a dick jackass,-1 +your a cock suck u can t do anything to me,-1 +mongo is a wanker mongo drinks semen while editing someone elses page that dick mongo is a homo sex crybaby mongo is a mother fuckeruck er mongo gets ass and oral every night from a five year old pig wayward likes cock s wayward likes teeth in his crust,-1 +i ll give you to let me cum on your face,-1 +it is obvious you do not give a crap about actually having a neutral encyclopedia or bothering to check the fuck ing sources,-1 +why the fuck are you persecuting me i corrected a misspelling in the oprah article and suddenly im vandalizing this is bull shit willyjeeves,-1 +you re right i do want to complain about you not really you in particular but the way wiki is run the people who enforce it the people like you it s really fuck ing pathetic that wikipedia is run this way if wikipedia ignores truths and only sources reliable articles then it can t be cited at all for being true if an article basis their opinion off of something unreliable does that make them unreliable as well what if they re a reliable source or what if that reliable source is reporting on something completely untrue doesn t matter apparently does it fuck that and fuck the people who uphold this so in short fuck you,-1 +all i have to say to you is go fuck yourself you re a cock suck with a little power that s massively gone to your head,-1 +give me hot ass sex you sex ip address,-1 +hello fuck head contributions my faggot ass hole you think that because im gay that i dont know shit you are wrong you just sit there with nothing to do with your pathetic fuck ing life that you decide to go and be a complete prick on wikipedia and just delete w hate ver the fuck u want thanks nazi fuck,-1 +the graceful slick is non other than an ungraceful dick,-1 +how many chins do you have hi faggot how many chins do you have you should exercise a little bit instead of sitting on your fat ass guarding all your precious left wing biography pages,-1 +the situation is moot because it s not going to get any coding at all now thanks sven you fuck ing ass,-1 +what ban fuck heads wikipedia fuck whits,-1 +oi wankstain fuck off you ignorant cunt yeah revert this you arsewipe revert me lolololol cock suck of course i m going to attack you on here and comment on you rather than content you pedantic bastard ban me yay lolololol i hate you lolololol,-1 +concerning east high school you suck why did you change the page east high has no noted alumni when i make well needed changes please leave them be,-1 +time cube you have been educated singularity stupid you mindless academic cannibal,-1 +die in a car crash you fuck in ass hole traitor to your local teams we dont live near boston why would some cunt s prefer boston teams if we dont live near boston your retard ed you faggot cunt,-1 +killamanjario shut the fuck up cracka,-1 +i ve seen several articles that use was for tv shows no longer on the air are they all wrong too don t be a jerk,-1 +sallary controversy the president of the peabody essex museum dan monroe makes a year with full benefits while all the guards are part time with no benefits this edit was undone by you you are a piece of shit what are you on the payroll for that fuck dan monroe you fuck in dike pice of shit the guards slave away while the president dan monroe makes over k you fuck in cunt go out with your friends dog for a walk be careful go fuck yourself you are apiece of shit you are an ass hole,-1 +i am a cunt hair growing out a bot vagina,-1 +so sad hi biitch or dogi w hate ver you like you know girls are always fool and you are top most of them donot scare now i will always give you this type of crismus gifts,-1 +fuck ass ople like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him thanks i hate people like him v,-1 +i was thinking the same thing and then i realised i don t care because i don t give a shit about her,-1 +yeah fuck you seriously fuck you all you do is protect racists and homophobes you re as bad as they are,-1 +ass hole you are an ass hole,-1 +your request to be un block has been granted for the following reason s fuck you faggot s it was a trick i only use wikipedia to rape plunder steal and wreak havoc you will never stop me i have over computer ip addresses to use request handled by,-1 +i only have one computer to edit wikipedia pages i don t have so many this is fuck ing ridiculous you retard ed fuck ing nigger s don t have the brains to even track down sock puppet accounts fuck you fat lipped nigger s the k will be coming after yo ass bitch,-1 +personal attacks just jump off a bridge douchebag i don t give a crap what you post about me making personal attacks to your love pet verdy p you just proved how much of a butt suck ing friend you are to him,-1 +who the hell do you think you are you re not judge jury and executioner that article got deleted entirely outside any valid processes and you commented on the article spouted a whole lot of inaccurate garbage and then arbitrarily closed it off all by yourself that s fuck ing ridiculous wolfkeeper talk,-1 +you never gave a concrete answer i asked when and why what do you mean a lefty tradition what the hell does that mean if you cannot give specific answers then take,-1 +thanks i was just about to try reverting the sept page but you beat me to it what a jackass eh,-1 +it is fuck ing outing and if had not been deleted then how the fuck did cm just recreate it,-1 +british people or britons are inhabitants of great britain or citizens of the united kingdom i dont think this is about an ethnicity race wobbs haha yous a complete fuck in moron,-1 +fuck you slakr die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia die wikipedia,-1 +get your cock out of your mothers ass so the nigger can get his back in ban me you pussy,-1 +bongwarrior is a gigantic ass hole i will dig up your grandmother and shit on her dentures,-1 +fuck of,-1 +i dont care about your note fuck you i will not stop to attack you or user jusjih i am free and stronger than you dont try to submit me if you continue what the hell is this a menace you will be banned by this attack if you continue you will be banned,-1 +no one wants to talk to you no one wants to talk to you p better make a new link to a link to a link this shit is great,-1 +just wanted to make sure you saw my answer too notori ass ha what a joke because i really do want to annoy you you useless little turd and i we intend to do so so much more than that careful what you wish for bitch,-1 +yeah while you re at it could be so kind as to suck my dick too,-1 +re suicide on a lighter note raul is a fat prick,-1 +you know i am so god damned sick of you holier than thou heads going in reverting shit on a whim just cause you can get your shit straight before reverting shit,-1 +good night good night fuck ing shit that you may be upset because i do bull shit on wikipedia but you cock is worth what i do so let me in peace or you swear that all the editing wikipedia pages without exception,-1 +go fuck yourself anyone who likes this movie is a cock suck ing faggot the fortyfive,-1 +onorem is still a faggot t,-1 +what ever idiot who keeps editing football articles with shit on this ip address needs to grow the fuck up what are you,-1 +this is just a perfect example of how wikipedia fuck s up when a bunch of pov pushers decide they want to make an article sound as nasty as possible towards the jew s they hate so much,-1 +i m leaving wikipedia for good and starting my own site fuck those who were against me klptyzm the faggot ass snitch who was harrassing people and fuck s his own momma mel etitis a faggot administrator was was stupid for falling for his tricks butterum a good editor who was on craxy s side craxy who knew what was going on and was trying to fix everything he knew,-1 +dont send me a warning again or i will rape your face and your dad bum hole,-1 +i have to wait more fuck ing days i m sick of this bull shit either you come clean tell me that you fuck ing lied to me when i said my time was up or you can fuck yourself this is so fuck ing mature you guys,-1 +jiang shame you ain t down wit freestyle king cuz that nigger iz mo than u so show respect fool,-1 +why the fuck did you delete my page you fuck ing stuck up snobbish paedophile twats,-1 +the only nonsense i will approve is nonsense committed by chaka zulu warriors anglican gay priests cock suck ers,-1 +febuary i didn t vandalize the fuck ing page so lay off me,-1 +person is is not status where status is an abstract concept with a non trivial definition is fundamentally a statement of an idea even though a person is the subject of the sentence or if you like the proposition could be phrased as a proof wikipedians follow all five pillars malleus does not follow pillar therefore malleus is not a wikipedian contrast that to calling another editor a dishonest fuck even if we granted for the sake of argument that the first statement could be deduced accuracy or inaccuracy can dishonesty implies motive to deceive and i have yet to see that proven the latter is gratuitous insult,-1 +don t argue with that farrakhanistic moron why do you argue with that farrakhan ignore that moron he doesn t know any better around percent of dr is mulatto euro black or mixed and black the mixed population lives mainly in the north also known as the cibao while the blacks are from the south like sammy sosa this guy is a believer of one droppism hyperdecent so forget about convincing this fool it is like a religion it is very hard to convert somebody from one into another northern dominicans aka cibae os know who they are they don t need these idiot s to tell them what are they or what they are this idiot doesn t know jack about our history there are ignorant people in every nationality granted but that doesn t give license to generalize an entire nationlaity based on the reactions of some people i m dominican nobody has ever called me black even in the redneck deep south even thou i do have black blood due to the fact that my family is not racist and some intermarrired with dark mulattoes anyways ignore these idiot s look how he is bad mouthing white people white people have done lots of evil true but this idiot wouldn t even be talking garbage thru this computer if it wasn t for this invention from the white man in the first place that s just to tell you about his pea sized brain some people s intellectual levels in any race or ethnicity is just jurassic just stay away from debating things like politics religion or race with neantherthals,-1 +ass hole edjohnston fuck you edjohnston is a mother fuck er,-1 +jesus fuck honesty,-1 +blocking user willybigcheese hi um wtf is your problem why did you block me i didn t do anything please give me ur email address so i can talk to you you douche,-1 +in the history of the world every building ever hit by a jumbo jet in flight has collapsed does it hurt to be such a moron,-1 +phil spector is a fuck ing murderer you know it and so do i kust like oj are you his son or something,-1 +you are a sad cunt get a life you nerd,-1 +yo man your pissing me off,-1 +wtf you are now just as bad as fcytravis why not warn him anus,-1 +the only thing you sons of bitch es can do fuck you fuck you now block me properly i can sign up again and do all the stuff again you call your self admins prove to me that one of my edits were disruptions,-1 +wow funny how i can harass other users by calling them cock suck s on my own talk page the concept of wikipedia is moronic the general public is stupid and should not be given complete unfettered access to change globally accessible content dumb fuck s i m sure it completely gets your little shriveled rocks off to fling your term vandalism around like it is worth anything how about you sit on my huge cock you egotistical power hungry nerd shit eating faggot s d how is it abuse you fuck ing idiot s when all you have to do is ban me stupid fuck ing idiot dip shit s,-1 +i am very tempted to show you a picture of my four headed penis,-1 +dont use spaces dumb ass,-1 +see also maggot user go fuck yourself,-1 +pontificalibus is full of shit,-1 +you re a dick ead mate get a life,-1 +according to your own block policy in order to block someone for personal attacks they must put the person being attacked in danger there was never any threat nor danger not to mention the fact that i was merely stating facts about idiot s like you and vegadick you continue to prove why you so called editors and admins are for the huge majority a complete farce you are a hypocrite and cannot even follow your own blocking policy ps suck a dick now go block me again loser citation that is my opinion of you and made clear by your actions,-1 +hey dumb fuck this is my sock joehazelton hey dumb fuck if i was you i would get his real name off it now or else i will start to publishing your name as well as a lot of names you dumb fuck s are mean sprited and with out a shread of decency or even the brains god gives cock roachs again fuck head its my sock btw there are over register republicans in the th so back of your psyco delusions that evey person that edits on roskam bio is a sock you dumb fuck s are with out control and are totally in a zone of evil,-1 +a great truth you are a stupid bitch you always deny the truth in some articles eat shit,-1 +if you continue to vandalise i m gonna fuck you up big time,-1 +you have no right to assume i m a sock puppet clown you have no right what so ever and to remove vaild concerns shows your contempt and lack of respect for other editors ass hole,-1 +fuck ing nutcase you re a fuck ing nutcase,-1 +your edits to don t be stupid can also refer to a number hence we shouldn t pretend that it doesn t by redirecting in to st century,-1 +fuck off will you please stop sending me messages let me be for fuck s sake do you honestly have fuck all better to do with your fuck ing time i m not available for adoption and even if i was i wouldn t fuck ing adopt you you piece of shit your grammar is fuck ing awful and your spelling is even fuck ing worse just fuck off if you send me another fuck ing message i will fuck ing create account after fuck ing account so i can vandalise this piece of fuck ing shit page you have fuck off,-1 +you are a nigger and are going to lick your husbands man cunt,-1 +you suck monkey balls you damn commie fag,-1 +or i could just keep making accounts and we can have a conversation about how fuck ing gay you are nothing stopping me it being pointless is beyond ignorant when i m getting satisfation from your dire need to show dominance making a wikipedia account is about the easiest thing in the world prepare for constant revisions please note you can do nothing about it,-1 +you are the gay est kid in the fuck ing world w gay comyour super super super gay,-1 +i m just glad that that jackass is done maybe there can be real progress on the article now rather than bull shit about how saddam never fowgott the instability which forced the poor lad to torture and mutilate the shi a and kurdish populace it was for unity mar utc,-1 +wow this is unbelievably sexist and demeaning you punish me for complaining about being called a cunt and having having the words cock shit and fuck ing used against me repeatedly that essentially condones that type of conduct,-1 +wtf you talking fuck er you stupid ars hole your momma is bitch talk people with respect you s o b summon,-1 +what a fuck ing riot,-1 +weird tits this article is full of lulz wtf m,-1 +dominicanyou suck dick,-1 +shit it was too sorry about that approval message incoming,-1 +a sincere question why do you do what you do slander harassment and abuse of editors and you are a mindless dumb ass geogre also a liar actually the blatant slanderous crap you all throw out all over the internet about me and so many others is kind of against the law it also goes against current harassment laws,-1 +fuck you you bitch ass ho,-1 +obviously there is a reason you know nothing know it all female ejaculator everything has a reason you idiot even the stuff you dont agree with like the holocaust and the hilarious black enslavement of the s to i hate females who ejaculate they make my penis cry in pain and so in order to defend my manhood i must attack and destroy these half men half women serbian jew double bloods before they breed again,-1 +do you mean by seems to more like does dumb ass what,-1 +peter s status maybe someone should mention that peter hitchens is indeed a large penis,-1 +you suck,-1 +fuck you ass hole wipe my ass homo,-1 +fuck off with you hypocritical moralistic talk i ve put down some sourceable evidence and you ve not once replied to these per se so fuck off and throw that garbage elsewhere,-1 +really look at my edit history bitch i ve added more to rorqual articles than any other prick on here piss off,-1 +ban me no problem it is not my problem that you want to support the denial of my nation of my national feeling of my history and culture go ahead sell your cheap ass,-1 +yolo fag is a chink nig,-1 +intimidation but what i would do with your fuck ing fat piggy face and people you pigs i wish to see you once in my life i will fuck you and your fuck ing head and your fuck ing fat pig shemale go and sport a little bite you bitch you know what i have fuck ed you and your rang of admin and paymont of wikipedia i fuck you and your fuck ing persian gay friend user inuit you gay lond this fuck ing person is blocking me for this reason because i have reported this fuck ing fat pig bitch shemale for this person user inuit is vandalism the talk page of jamal al din afghani and attack me and my gallant people of afghanistan my folk the pashtuns and this fuck ing bitch comes to me and block me and he write that he have block me for this reasons continued disruptive editing name calling harassment personal attacks etc but i have not continued disruptive editing name calling harassment personal attacks etc on the contrary correct and i have reported him about this,-1 +you idiot s always demand i explain myself on the talk pages and always delete my explanations with snide comments in the edit summary but no reply on the talk it is a catch so fuck you too,-1 +lisa williams is a total fraud no offense intended but are you fuck ing insane she talks with the late diana this kind of fake liza minelli look a likes should be fuck ing banned from wikipedia as they are all frauds are you an american,-1 +the images are all copyviolations none of your work is referenced all you have to add is speculation see wp vmongo fine fair enough ignore me i have nothing to add that hasn t already been said by the dude on http w st org resources what hit the pentagon do not ignore him you will find all my photographs referenced fully within his sources so ner and by the way the security camera image you guys seem so fond of is i understand criticised as dodgy and asserted to be conspiratorial by the neocon arseholes there s no in it you see and the fireball is ridiculously too small its important to like think don t know if its been outlawed in america yet about pictures for yourself rather than just bitch ing about the liberal elite i will not touch the site again but undisputed and yes they fuck ing are undisputed w st org photographs and measurements of the crash site are vital to allow people to make up their own minds and factual measurements do not deserve to be tarnished with the label conspiracy theory particularly in a supposedly objective site where you permit references to physically impossible processes airliner vaporisation for fuck sake,-1 +you fuck ing no life car fetishist since it s obvious you don t get any pussy from the amount of time you spend on wikipedia why don t you go stick your little member into the exhaust pipe of your rattle can legacy or regushee since you can t romanize japanese you fuck tard nobody gives a shit that the shit box gt had its window controls moved to the window and half of the crap you add to the articles are either unsourced or just plain wrong go do the world a favor and off yourself since you love cars so much carbon monoxide will work,-1 +what s a guy got to do to get a real ban anyway also that last comment didn t even make sense this is annoying surely but not a personal attack you fuck ing child molester,-1 +hey muslim dick ead why don t you go and shove allah or w hate ver the fuck you call the retard up your stupid backwards ass you fuck ing muslims are a bunch of jealous west hating mongs islam is a peaceful religion bull shit there are many times when it refers to violence so go strap on your suicide bomb and blow yourself up yey one less feeble minded prick ion the world,-1 +shut up bitch,-1 +i am not vandilising wikipedia don t just assume because a piece of information is new that someone is vandalising wikipedia what do you actually know about aspergers do you have it moron,-1 +bunch of fuck ing retard s you guys are all a bunch of stupid pathetic fuck ing retard s barek dwpaul anomiebot materialscientist jytdog corkythehornetfan all of you it obvious you all hate today show that why you are not willing to play fair,-1 +hey buttface your a stupid like timberly elizabeth buttface you buttace,-1 +hello i make the internet suck ok bitch face and you are going to die oneday even if it s of natral old age,-1 +and you go to hell,-1 +you re dead it won t be hard finding your faggot ass in that shit state trust me i have connections i ll kill everyone related to you rape your children kill them cut you up spill your guts and throw you into a fire i have access to the database for your state so i can get your address dont worry should have thought twice about what you did shouldn t mess with the clan,-1 +please choke on a bucket of dick thank you,-1 +cut the bull shit you are doing personal favor here to people from serbian chapter there is nothing in this article that deserves to be deleted as facts involved and references used prove exactly what was happening with montenegrin language doing last years you are who you chose to be and your actions makes you very poor person but that is not my choice but yours so there is nothing there i can regret if section is written in bad english people before tried to help and they did fix grammatical and other errors you did nothing just helped one hegemonic force to continue to bloat articles about montenegro one think you cant say is that this section is not based on valid sources but i will use this example to show how you and other abused foundation and your position to support many unjust causes you are obviously not aware what this kind of yours behavior have repercussions and one advice to editors you can use word bull shit when you see one,-1 +x above holy trinity repent bastard,-1 +hey hey ass hole don t delete my contribution to gram it is an example of what a typical gram consists of what the hell is the matter with you get off your power trip jerk y,-1 +always complaining you know nigger s are always finding something to complain and protest about and that is truly a shame this world would be so much nicer without complaining violent protesting nigger s perhaps it s time to ship these mudhuttians back to where it is they came from,-1 +you fat ass hole why don t you leave my page alone what it s not enoguh for you to stick your nosey nerd ass troll figners on the page for my personal high school you have to decide what belongs on ym persoanl user pagfes too keep it up mother fuck er and youll get yours i swear to fuck ing christ see wp touchmy shit againandyoulearnwahtitmeanstotossasaladfatnerd fuck ingtrollpieceof shit asswipe by the way i blanked the suer profile page because that comment didnt belogn there it was supposed to go on the talk page but noone could get into it im not a kike or an atheist so leaving it on there has no relelvance got it,-1 +you pathetic small town fuck tard you have no idea how foolish you look,-1 +please keep in mind that he is an idiot and maybe once someone calls him on his bull shit he ll shut the fuck up this is your final warning get the fuck off my page,-1 +tommy fuck yo couch nigger,-1 +how big is the ass of salafis i wonder as u r fanatical salafi how big is ur ass when u go to blow urself in a terrorist attack please take ur hatred with u to the hell with ur gay friend ibn laden,-1 +hey why the fuck would i vandalize my own article dip shit keep your fuck ing jew nose out of peoples goddamn business got that ass hole,-1 +are you kidding me right now is this a joke he is quoting the book and you dismiss it you are fuck ing blind,-1 +oh god why don t you just fuck of and die of gaids,-1 +edit request from january please remove the offensive work fuck in from the body of the text it is a quote from a person other than jackie robinson and does a dis service to young readers it serves no purpose and i am appalled someone allowed it for obviously uneducated reasons,-1 +because gwernol is a sad little man with a wee penis,-1 +like who the fuck are you man stop messing with our page please it was constructive cause the comment was a mother fuck ing cunt ing lie,-1 +derogatory is bull shit tvoz saying someone figets if they do isn t derogatory in less you re crazy,-1 +audi a you are ass hole mother fuck er shit fuck ass hole talk contributions,-1 +hola fuck er hola fuck er,-1 +he is dick ass hole shut the fuck up and leave my edit wiki alone now,-1 +oh shut up you fuccin ass hole,-1 +hey bro happy thanxgiving fuck face get a life,-1 +penis association of america,-1 +stop your bull shit i ll remove that nonsense crap,-1 +buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks buttsecks,-1 +yum ur cock is yummy lol,-1 +the aclu is on your ass this latino will never get up until everyone of you racist wikipedia gringos are behind bars,-1 +things i d do to your ass dayumm,-1 +but me like it it is my fav our rite just like tehkewl likes to smear shit on his chest whilst masturbating to nude pictures of justin timberlake,-1 +seen this sad little faggot s face,-1 +please unblock and i can personally assure you that they will not refer to bzuk as a dumb ass,-1 +you are a fuck ing retard,-1 +exactly noone can fuck ing tell the differenc ebetween genres here trivium is shit metalcore bodom kalmah and norther are power amon amarth is melodic death not viking metal fuck wikipedia is full of retard s and to the idiot two paragraphs above metal is metal no you stupid cunt there are different genres of metal jsut shut the fuck up trivium suck s eat my dick,-1 +gee minutes of reverting redirects cost you precious time i am so sorry bout that i have been back to the page and aside from revisiting burned bridges i admire the work poured in but it does not excuse the way you treated me and before you go into a hoopla about how i acted i do understand your frustration my outbursts throughout my lifespan here isn t perfect nobody s is but it s hard hodson it s hard to be the good guy in situations where they only want to rip your heart out and drain it of your good will i ve been treated like scum trying to be helpful and no matter what i m the fuck up so i binned good will and civility and adopted your s and moni ingenious antagonist view of things fly in guns blaming and be unapologetic and when did the term for coward change to someone who wishes their name be removed from a statement or quote i know what i wrote i was sorry but now i m not it s not in the context i wrote it in it s for moni to get a laugh out of my person so think what you will of me i just couldn t care less anymore take my spirit and impale it on a fuck ing spike if you want that part of me is gone gotta be an ass hole in an ass hole s world january utc,-1 +read well and fuck in your balls balls to you and your references and knowledge first of all tell me what is your credentials you fuck in ass holes restrict your balls knowledge to your telugu and leave kannada alone don t u know about the contribution of sri krishna devaraya to telugu without him telugu would have been as it was in the past before unrecognised pathetic language there has to be strong reasons why telugu had been suppressed for a long time before that it is not without logic that you have scant proof evidence to show that read about your first literature work half sanskrit half telugu http w organiser org dynamic modules php name content pa showpage pid page if you don t know about proto dravidian languages fuck off don t talk about origins of kannada kannada has no of telugu whatsoever whereas telugu has some influence of kannada this has been well documented and proven many scholars who know both kannada and telugu can tell you that,-1 +why don t you get a life you sicko fuck ing twat,-1 +about fuck ing time you retard ed little bitch,-1 +fuck you fuck everybody here and their fuck ing gay rules you can all burn in hell you slut whore mother fuck er bitch faggot dick ass hole douchebag nigger cock suck cunt cow,-1 +fuck ing cunt did your little traitor friend come running,-1 +fuck ing piece of shit you fuck ing bastard nobhead nobhead nobhead nobhead,-1 +i agree i just wanted to do the same revert because i found your words fuck life bitch es nigger s suck ass not conforming the european standards,-1 +how dare u you german piece of dog shit dont u fuck ing clear my edit ever again u piece of horse shit faggot,-1 +fuck you you and ferrylodge can rot in hell you are going to make a horrid admin,-1 +that s it you do not delete my crap why don t i delete your crap retard,-1 +retard i ts my flippen opinion anyways and how about get a life intead of reporting peoplego get laid you stupid gay virgin,-1 +he aint shit without his homies team mates,-1 +you are an ass hole and always will be the world is suffering because of you like bastard s,-1 +my user page i will say waht i want i do not vandalize so fuck you ha,-1 +marks what the fuck are you going that was comedia gold i had written,-1 +utc go f yourself golbez you and mohammed atta ought to rot in hell september,-1 +dont be gay hitler was a form of hero,-1 +what you think this block will work better than your last one god but you are stupid,-1 +bold text bridger is the mother fuck ing shit nigger,-1 +am i getting paid during this time off oh wait it s a volunteer effort yawn fuck ing yawn but i did prove a major point to my friends on facebook polite pov bull shit trumps accurate evidence based editing with pointed commentary good luck with the alt med religious fuck tards lol,-1 +arsehole fuck ing bastard you son of a bitch ass hole mother fuck er go fuck ur mothers cunt trade ur wife sister,-1 +piss off you cunt,-1 +dude you re a fuck ing dick plain and simple,-1 +you fuck ing suck you shit jew,-1 +heey fuck face you are a real bitch ass pussy whipped mutha fuck ing faggot shit faced dick head,-1 +wtf are you really such a cunt i apologize in advance for certain individuals who are too sensitive to hear the truth,-1 +the all powerful johncd the all powerful johncd a mother fuck er with nothing better in life to do other than deleting the articles he wants it must be an inferiority complex ass hole mother fuck er,-1 +because i m gay and love to suck cock,-1 +complain and more complains thats what u re good for fuck in idiot if i happen to know who u are i ll wallop the shit out of u damn bastard fuck off blooddy son of a bitch,-1 +idiot you haven t reverted anything,-1 +mang mang i fuck ed this one girl so hard in her ass hole it turned into a rosebud then i made her cum all ova da place,-1 +oi why did you give me a last warning why do you have to be a cunt,-1 +frankly errant you re a bit of a dick ban me from wikipedia or w hate ver for saying that i don t care,-1 +this was placed here because this user is a liar who has broken rr numerous times a few days straight in a row that he chooses to attack me for his own hypocrisy now is indicative of his wish that the previous warning to himself by another and outside user on the kingdom of england is lessened in its effects what a fuck tard,-1 +is it because it is of my naked mum having sex with me i am indeed a faggot who suck s his dads cock fuck ing homo go fuck ing die you piece of shit,-1 +listen cunt boy you re just a fag from north of the border don t know jack about the nevada doc i fuck ed your wife ass hole,-1 +bull shit he sells this on openness and closes his page u should be ashamed ikipedia founder hit with relationship trouble allegations of excessive spending by megan mccarthy march pmcategories people wikipedia founder jimmy wales didn t have such a good weekend first the blogosphere and then wikipedia itself lit up with news of his messy breakup with controversial canadian tv pundit rachel marsden now accusations are flying that wales has been living the high life on the expense account of the nonprofit foundation he created on friday reports surfaced that the married but divorcing internet icon carried on a clandestine affair with marsden evidence of the affair included lurid im trans cripts which appeared on silicon valley gossip blog valleywag on saturday wales posted a statement on the wikipedia foundations website which he later moved to his personal site denying that his actions went against wikimedia foundation s policies and stating that the affair had ended marsden responded by listing the clothes that he left at her house up for auction on ebay so what s the big deal when a relationship goes sour well the two met when marsden contacted wales to help her clean up what she perceived to be errors on her personal wikipedia page and there have been allegations that wales used his influence to improperly make changes former associates of wales are using this scandal to bring up other worries they have about the organization of the foundation former wikimedia exec danny wool who left the foundation last year wrote a blog post insinuating that wales used the non profit foundation as his own personal piggy bank expenses that wales tried to apply to the foundation included bottles of wine and visits to moscow massage parlors wool alleges according to wool the expenses got so out of hand that the wikimedia foundation took away wales corporate credit card there were occasions where he used the wikimedia foundation for personal advancement under the guide of the mission and as someone who was in there for the mission part of it i found that rather distressful wool told epicenter wales did not immediately respond to a request for comment,-1 +utc ass hole march,-1 +hey bitch im trying to edit this page and u deleted it u son of a bitch better put it back or im going to find u and kick your fat ass,-1 +whata load of crap from barek leave it out then and have the wiki be incomplete i am not trying to self promote you goof i am trying to set the record straight in spite of your goofy butt and some dude in greece that you always leave in you goof do your homework you goofy schoolkid no self promotion i am who i am with or with out you or the wiki or the greek gator but he is wrong and i am correct your just too stupid to realize it do your homework goofball leave the history section out suits me fine i like it incomplete at least its not wrong like you allowed before i had to change it again jerk,-1 +this is stupid but if you ll just let yourself stay block until it s sorted out it will be better both for you and for wikipedia please let me handle this trust me on this one my fellow mediator august utc,-1 +the graceful slick is non other than an ungraceful dick,-1 +you may think of me as a fool but so what comming from a drunken english fag its a compliment how do you like todays vandalism why is it that you english cant speak your own language properly because of the syphilis in your kings or maybe that galoot eared queer prince charles and his ass face whore cammila parker bowels aye mate fook the queen only an englishman would shine shit,-1 +hello fuck head wikipedia lover,-1 +once again shame on you monsters recognize the importance of service to your country and not your tired ass excuses on why not to look into the depth of the subjects contributions to modern american society shame on you,-1 +you should unblock me cause i have a twelve inch penis if you don t unblock me i will use it in your ass ichiro,-1 +so hersford gets away with this because i stand up to this moral choice i get fuck ed over with two or three warnings on my page instead someone doesn t warn hersford for his bad choice please note his long excuse filled statement on his page does that not read like an attack on me i don t like to be attacked and he was caught for a big mistake so instead of immediately reconsidering his mistake he went on the attack an age old public relations ploy which i don t buy hersford may or may not be a racist but he certainly let an avowed racist get away with something sad talk contributions,-1 +bitch and tv for doing my assignment,-1 +continues to ponder what ryan doesn t get about point me to uncyclopedia and shut the fuck up instead of criticizing his post because he knows wikipedia is about facts,-1 +you people are posting the wrong results so its my problem jackass,-1 +stabby mcpenis stab stab stab stab,-1 +i believe users and attitudes like him are disruptive to the project otherwise anyone who does not bow to the collective consensus read me is disruptive to the project as a matter of definition his arrogance frankly sickens me and his attitude basically confirms my suspicion that if ruth is right then i have no place on wikipedia because i don t bend over and kiss butt very well,-1 +fuck you the iowa idiot s are a real baseball team signed p m,-1 +dude why did you erase my thing what s up with the censorship who do you think you are i m a brand new i m learning the tools and you are ignorant enough to mess with me fuck you and have a nice day,-1 +fuck you you son of a bitch you fuck ing bastard child fuck off you little prick shove the editing up your ass,-1 +go fuck yourself you fuck in scum,-1 +i should try to track down your ip so i can burn your house down you irritating and loathesome little shit who the fuck who dyou think you are i wish i knew who yo uwere so i could beat the everliving shit out of you you fuck ing whiny annoying loser stop watching star trek re runs and get laid you fuck ing pussy ass pansy i hope you fuck ing get aids and cancer at the same time,-1 +personal attack i just pointed out he s being a wp dick why can he call multiple users dick but we can t return the favor talk about a one sided policy,-1 +this idiot how can you possibly know what i own and don t own obviously not because you seem to think that you are god s seeing eye and can see what i own pathetic that a lonely virgin canadian has the balls to say what i own and don t own i will be taking this matter through the proper channels to get you removed from your wreckless position have fun playing god and thinking you know what people own p s i do own all of those pictures bitch,-1 +i am so scared please don t block me from editing i don t know what i ll do if i can t edit articles actually this was a sarcastic response to your bull shit warning you stupid ass hole like i really give a shit block me you stupid fuck,-1 +suck your filthy erect penis,-1 +typical communist censorship wikipedia should not let tranny psychopaths control their articles these people should be locked away in a nut house this is why wikipedia is a joke and can never be trusted it is extremely silly for wikipedia to label a male trans vestite as a she it is impossible to change one s sex you idiot ic communist pieces of shit science trumps your bizarre fundamentalist socialist religion stop enabling people who suffer from gender identity disorder it is harmful to their health i fully expect to be maligned as trans phobic or some other such nonsense for speaking the truth because that is a common tactic you people use to silence your critics,-1 +why do you keep blocking me you are a big as idiot as dmacks now you cant block me as i just change my ip why don t you try and negotiate with me and i will stop editing your page i want dmacks privelages removed btw there is no threat so dont even try to turn it on me,-1 +you re an ignorant phallus suck no matter what you say or the way yo try to insult me as your insults don t change my being but only return back to you bastard,-1 +suck ing you suck the di k of chicken fuck ers,-1 +i don t have an entire range you do your best thicky i will see the page corrected no keystone dumb asses are gonna change anything you cant make up stuff like that without a source dont be a clown like i said you can fuck off i m tired of you stalking me and undogin my reverts and trying to erase my discussions its simply not on you kids should wrao it up now big kids stuff night night,-1 +tool bolx fuck you piece of shit you think your in control fuck ing faggot you think you can harass me and get away with it fuck ing shit face i ll beat your fuck ing ass if you mess with me again and yes this is my new name sincerely,-1 +fuck you you re drunk son of a bitch,-1 +hello dick where is your wikipedia fuck whit ban,-1 +apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us,-1 +scumbag paid mole strikes again you are a fuck kin scum,-1 +re it s a fuck ing album cover how the fuck am i supposed to know who owns the fuck in copyright there s thousands of album covers on here most time i come across their pages they don t have copyright info so get off my dick i got a suggestion instead of spending your days trolling around on wiki looking at copyright info why don t you get a fuck ing job or get some pussy or maybe just off yourself because if this is how you spend your time you and the world are better off have a nice day,-1 +why does it bother you fuck face suck my cock,-1 +damn those are some rancid sources,-1 +this is awful just awful all germans are murderers the blood of million jew s is on your hands million gods chosen folk you are all going to hell bye bye dumkopfs,-1 +lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent been banned yet bitch go vandalism lmao what weak threats i havent,-1 +censorship was final fantasy vii censored at all i mean the content wasn t as strong as say final fantasy vi s but i would imagine something was censored plus it doesn t say anything about censorship on this page could someone please answer to this not that i recall it certainly wasn t censored as much as the older games were as i recall some language was censored some wasn t the word bastard appeared on various occasions but fuck and shit were censored recet indent some words were censored some were not which ones seem arbitrary only instance i could find of fuck uncensored computer cid we have an emergency situation a mechanic is still in the engine section of the rocket cid what who is the little fuck computer i don t know activating the intercom in the engine section cid hey goddammit who the s still in there earliest instance of shit shinra manager i m not give in to violence and i m not giving you my seat either tifa barret barret you lucky cloud so what are we gonna do now barret shit the hell you so calm about you bustin up my rhythm in total fuck is said uncensored once shit is said uncensored times ass is said times sometimes occuring as jackass damn is said times and i couldn t find any occurances of bastard censored words appear approx times my version must be different the fuck is censored and the comment with barret the last editor quoted the first word was uncensored though it had an apostrophe stuck in the middle making it shi t i noted a lot of uncensored ass and shit though and after playing ffx and ffxii for so long going back and playing ffvii i was a little surprised by the language in fact it s the only fantasy rpg i ve ever played with uncensored profanity but yes it was at least partially censored nevertheless unless we get concrete primary sourcing from an interview or w hate ver we can t include this in the article er well the box says it s rated teen for mild language and violence but i m not sure of any primary sources that would even deal with this particular issue beyond a mention that there is some uncensored language i really don t think this type of info belongs in an encyclopedia and even the slight mention is iffy to me well it s the first final fantasy to come to america with any uncensored language but then again all the final fantasies to come to america in that period of time had to go through nintendo of america s censorship guidelines of the time it might be worth noting at least in the discussion that the computer version was far more censored than the psx version almost every instance of shit was removed consistently with or similar characters also certain important lines had their trans lations changed back then you could get by with only skinned knees for example was changed to something likely more grammatically correct but weird to a long time player of the psx version i have the pc version of ff and i recall a ton of cid lines where there was censorship as well as ones form barret they were all situations of anger though so it didn t impact the storyline much actually there was some sex censorship if i recall slightly stretched underwear was changed to therapeutic underwear not sure why it s better but i m pretty sure they did it because they thought slightly stretched was sex ly inappropriate the item is found in tifa s dresser drawer during the nibelhiem flashback sequence mentioning midgar s future during the epilogue that follows the ruins of midgar are shown five hundred years later while the landscape had once been desolate due to shinra s operations it is now a land of lush greenery this sentence should be removed as it is trivial unnecessary and uh too minor for mention and there is no explanation for this scene newl,-1 +sparkyfox fuck you ass hole s,-1 +no your wrong evula said it was about personal attacks s he didn t mention anything about hijacking a page you dumb cunt jack in,-1 +fuck you ass hole fuck you you cum guzzling cock eating shit fuck ing ass hole cunt rag scumbag don t ever threaten to block me after the countless contributions i ve made for this site you little shit i ll have you fired you useless son of a bitch,-1 +how can it be almost certain when it has been confirmed just fuck off,-1 +idiot i do not understand what user x fuck ing is your website is a fuck ing disgrace either you put the fuck ing connection speed we are paying for onscreen on all tabs of all browser or we shut your fascist fuck ing site down dig rogerjowett,-1 +i give u proof that dhoni is a rajput chk it http my opera com aaryanrajput blog you mother fuck er you bastard u biased ronchos the bastard gujjar suporter i am a badgujjar and i am a rajput why are u vandalising our histroy by removing my content u suck dickeer y u add contents about other castes badgujjars are raghav and are rajputs u bastard proof taht badgujjars are rajputs chk http ebadgujar com history html,-1 +hope your head gets cut off and someone wipes there ass with it and then stabs you in your heart no one can keep me from here you dumb piece of shit not yaml ass tupid ass or you now hurry up and sit in some traffic so i can see your head roll down the street,-1 +in defence of china hey koreans who the fuck do you think you re dealing with guess what gaogouli was a chinese vassal you stupid fuck s after the fall of the tang dynasty close to were incorporated into tang history a little less than half migrated to the central plains to the chinese state of bohai and only into xinluo silla most gaogouli descendants are chinese with the sole exception of ansi fort itself tang troops destroyed gaogouli soldiers on the battlefield despite being a significantly smaller force if anything gaogouli only defended itself from assaults from sui and tang gaogouli was a mere chinese vassal nothing more the greatest threat came from the tubo tujue and huihe from the west koreans are a bunch of fuck ing attention whores you fuck ing barbarian kimchi gooks have a lot of nerve to badmouth your former masters considering the fact that you were our little dog for most of your existance not to mention your stupid kings would submit to the imperial envoy in the direction of the great emperor of china fuck ing barbarian gooks got a lot of nerve to mess with us we are the descendants of the great yellow emperor and the inheritors of the great han and tang dynasties stupid barbarian shit don t piss us off,-1 +i forgot to sign reed ps does your dick touch your ass then go fuck yourself,-1 +you can blok em all yo want fagget because tru love will enver die you can try all you want to crush my spirit but i wil alwqays devot my liof to springlyn and you can nevr change that so go on kil me if you want i dont cair,-1 +fuck off quit deleting my comments read the fuck ing edit before you revert it you piece of shit read it for god s sake please refrain from telling me not to make personal attacks against you yourself,-1 +she is a mother fuck er i will block you mother fuck er shit bitch punch kill swear do nudity so shut up frickin around give you drugs call you names like shit fuck bum poo damn so fuck er you will be block and dead you shit and fuck and i will do the rude finger sign you fuck er get bad new messages bum oh shit she pisses off go piss of butt so you know that you just heard me that i will use a fork to take and destroy your eyes and take out your fuck in blood so just piss off butt piss off but i said piss off butt last chance piss off butt that s it i will kill you pow so see that you are dead and i will carry you now penis dick boobs breasts poo,-1 +tosh o tosh is so fuck ing awesome you dont even know you dont even know tosh hey tosh your my brother you dont even know but you are stop it love thy enemy love thy neighbor love them damn it wtf,-1 +what a load of bull shit if you ask me thanks for nothing,-1 +my suggestion to you is to shut the fuck up,-1 +fuck u cunt leave my stephen thomson page alone i was trying to get alot of information and u sit there on your cunt like ass saying that its too short well fuck off and tell the other users delete my page to fuck off and leave the page alone,-1 +its not just this its a multitude of factors but anyway thanks to this dick ead im banned permanently can i request to have my account closed please,-1 +okay buddy you are a meany u make me cry so i am here to tell you that u can suck my balls cause you are making me have no fun oh and also ur moms a total babe tell her to give me a call sometime and oh i left my wallet there so make sure u reaturn it please alright thanks bye,-1 +there are multiple sources to go to pal you go to one music source on the internet and that s the be all end all there are many sources to go to in order to find info on allin and t t quick you could just buy the albums and look at them i guess you re one of those people who are just experts on every subject right what else do you do on your computer all day i wonder you re full of shit and you know it,-1 +i understand hitler you and your chronies have successfully rape the formerly free encyclopedia into your own ideal image maybe i was adding to my stub before it was marked for speedy delete within seconds of posting fuck ing wiki nazi,-1 +removing all or significant parts of pages content without any reason or replacing entire pages with nonsense sometimes important verifiable references are deleted with no valid reason s given in the summary however significant content removals are usually not considered to be vandalism where the reason for the removal of the content is readily apparent by examination of the content itself quoth the wiki vand which you ve quoted numerous times without actually reading the fuck ing thing i m removing dubious unverifiable content and you call this vandalism lol failure,-1 +vandalising the page how did i vandalise the page you fuck ing dick ead what did i do wrong to it arsehole,-1 +and i m a total faggot,-1 +text edit fuck shit cunt,-1 +you brainless editors you idots are probably majority white i put a relevant post up called nigger crackers which is a readily used and historically used racial epithet in northern america and you try to discredit me and pose to ban me from editing if the term nigger cracker can t be posted then the term nigger should be taken down if nigger isn t taken down or nigger cracker isn t allowed up wikipedia will be facing the biggest law suit of our day and age don t threaten my posts again as well i m awaiting rapid feedback or my lawyer will be in touch,-1 +fuck you dick licks you guys will never be free of konob untill he is un block if he gets un block then the vandilism will stop,-1 +you work those articles bitch write em clean em up format em ref em do it bitch now yeah you like dat dontcha faggy jew boy all the worst,-1 +pissed of nigger a lot of computers in my school a lotta vadalizm ha ya can suck my dick i told ya nigger ta unblock me but you didn t so know ya ganna pay anyone who banned me in the past is ganna get fuck ed over hard,-1 +anthropogenic heat i created a new article but i m not sure it isn t already placed somewhere else under another name can you guys check it out i hope you can somehow link this global warming page to it as it must be a factor while you re at it perhaps you can vandalize the shit out of it so that i can report you ass hole mother fuck ers also i object to the words increase in the average in the first sentence i think it should read apparent increasse in the mean as more professional scientific periodicals would,-1 +ass hole who likes to play daddy,-1 +oioi hello you cunt its kris weston here im just mailing to call you a cunt cunt so how does it feel to be given an award for excellence in lying if i was you i would be careful about who you lie about online i dont care so much cos i get amusement out of calling you a cunt but if someone else more unhinged perhaps was to come along and you did the same to them as youve done to me theres no telling what could happen u cunt,-1 +i fail to see the relevance of the reference to the word fuck in the pronunciation discussion if pronounced with the original german pronunciation fook sya doesn t sound any more like fuck than the word fork does and i don t believe the possiblity of mispronunciation as fuck sya is what leads most people to say fyew sha instead pronouncing latinized botanical names based on words and names from non latin languages is always going to be a problem and there is simply no rule in botanical nomenclature that such names must be pronounced according to the rules of pronunciation of their original language,-1 +this is my talk page bitch,-1 +hey jack off are you the one who s got his head way up wolf hudson s ass,-1 +sl i m ready for an argument right fuck ing now i m sick and fuck ing tired of your goofball power play get a fuck ing life you re a joke a clown and no one will ever take your sorry ass seriously get fuck ed and leave me the fuck alone i didn t start shit with you so i don t get what your problem is twat plus you re stooping below joseph stalin with the revisionist history take on my talk page fuck you,-1 +go suck a penis this scotlands information needs to grow a penis find a girl and sick his penis in her then there would be some action up on this website information and if ur a guy go try to suck ur penis and stop hiting on and up all the girls u see and and do jammin yahoo com,-1 +hello hey ass hole i kill you filthy muslim,-1 +accusations you sir are an anti semite this is made abundantly effin clear by the fact that in every wikibattle you get into you are always on the opposing side of jew ish interests you re really damn sick you act like joe sobran is some effin herohe has stated that he thinks jew s as a people not as supporters of israel but as a people are diametrically opposed to the interests of the us as a whole and this need to be removed the fact that you deny this is anti semitism makes it clear that you are a sick anti semite shame on you californiadreamlings,-1 +wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker wanker,-1 +no you fuck tard http en wikipedia org wiki wikipedia what wikipedia is not wikipedia is not an indiscriminate collection of information,-1 +who fuck ing cares are you a goddamn tard stop wasting bandwidth with your shit hole talk,-1 +ok now you re pissing me off stop accusing me of things that aren t real what in the his noddlinesses name are you talking about i repeat in vulgar and block worthy language because your irrationality is making you impossible i don t give a shit about the reference to affirmative action i ve said it three times repeated it in the post you are refering to and still you went on to make accusations about a desire to focus on his point of view and not the consensus when i have jsut said i reverted you vandalism becuase you vandalised the defintion and not because of the reference to affirmative action if you continue to lie about me i will stop acting friendly towards your edits you irrational individual who i am struggling not to label negatively there is no point about the affirmative action reference as i said in the previous post the fact i would contradict your lies that affirmative action isn t always discrimination when it is is unrelated to that statement and your vandalism if you feel a bit concerned about imaginary things perhaps you should see a fuck ing psychiatrist because feeling concerned about things that don t exist is extreme paranoia accuse me of bad faith again without a shred of evidence and i will strive to irritate you for every second until they block me i cannot stand lieing and complete apathy towards actual responding to what i write as opposed to what you imagine i write i advice you do not respond to this with anything but an apology i can t see it being pretty and now some quotes from the post you responded to so that those smarter than you can laugh at your irrational response i have no interest in your line on affirmative action the arrogance which drives you to completely brush off the rest of the edit and come here and accuse me of pov when i was reverting to a consesnsus over an unsourced redefinition i don t give a toss about the link between affirmatvie action and disscrimination and stop accusing me of things that pop into your head definetly some irony in how quickly i picked up on that second quote considering it s exactly what you re doing,-1 +absolutely negative in absolutely no way this user has been shown to been highly uncivil and arrogant on a final note please don t ever use the words fuck fuck ed up crap and idiocy when you are debating with other editors it only weakens your position and it is strictly against the rules on here as to my own earlier comments on reading them a second time i feel that i may have been uncivil towards you by writing in fact if you are so you have my apologies on that it does not however change my position that the file is perfectly valid for use on this article by the way i do not hate you i just find your reasoning to be illogical green giant i have knowledge in this area and citation should be provided where asked for and orginal research flagged up where spotted,-1 +oh no block from wikipedia my life is over eat my fuck ing pussy you whore,-1 +ready to fuck you up old school see the inviting place with it s friendly and fair administrators ready to give you an olde time wiki welcome see the how this admin feels about wikilov this admin a democrat cyber thug banns me due to differences in writing style gamaliel uses this place as a sword for his own power drunk political agenda gamaliel have absolutely no evidence to say i m a sock of joehazleton other then the asinine duck test i would call the duck test an litmus test of any editor which edits on political bio if you don t follow the gamaliel s radical democrat ideology test you are then labeled a sock of joehazelton this is outrages an abuse of power and due process as it shows wikipeidia unfit to to have any bios on it and i would encourage any with a wiki bio to investigate their legal options and force wikipieida to removed their biography from this website,-1 +haha you are a dumb shit what s so wrong about nazi or hitler some dumb american shit that makes nazi or hitler some how incomparable to any other shit you know what many people in the world think your dumb american imperialism assault on iraq are comparable to the atrocities performed by the nazi s yet american or republican is not a diss let me say it right here out loud tas is almost as bad as nazi s apr utc,-1 +wtf wat the fuck u think your doing deleting my work i have had just about enough of ppl like you now fuck off,-1 +fuck you unfair ass hole you dont even care for fairness just being a fuck ing drone ass hole,-1 +i dont give a crap about your rules and yes you were acting like a dumb ass by annoying me reverting the page its official daniel bryan was added to the match now go take a walk and stay off my talk page,-1 +whoever you are i have to use banno s expression on you don t be a dick that s usage that banno informed us is proper so i m asking you now don t be a dick and if you do not know what that means go as mel s friend,-1 +sockpuppets so what that was a long time ago dont screw around with my userpage and i wont with yours randazzo,-1 +ah shit i can t help myself if i understand hodja whose previous website id was biophys and is currently working some kind of deal here if i m following along ok my edits had something to do with the worst area of discretionary sanctions in the entire project other conflict areas are nothing compare sic to that what is this area,-1 +you re block for days shushing cow,-1 +a white fatass that ain t sh t and acting like a bihcpadding,-1 +disruptive editing is it you mean removing the vandalism by the user who reported me the user who enters information into an article even though numerous contributors have given references and then that user removes the references and reinstalls what they wrote because its what they want yeah stuff official references by the actual band and the person who produced the band this editor knows the real deal and other contributors and myself who requested him her to stop this nonsense are the disruptive editors bull shit you re a shit admin,-1 +what the hell is your problem why the fuck are you removing my edits on aricles and talk pages you want me to stay calm stop removing my edits,-1 +i ve had enough of you ass hole go fuck youself up the ass with a straight razor you are intentionally attacking the articles of pagans fuck off,-1 +absolutely the most fuck ing horrible film ever ever please fuck ing die if you like this film just die,-1 +you re an admin right so i ll ask you again what the fuck are you talking about would you care to shed some light on this is my final warning to you and to all others participating on the expelled talk page the next time you disrupt the page by violating wp civility discussing things not related to improving the article reversing deletion of such comments etc you will be block final warning what where was the first warning secondly what the fuck did i say on the talk page that was uncivil in the first place do you always go around making threats to ban people without giving any details as to why wtf how long have you been an admin what did i say on the talk page that lead you to put this warning on my talk page finally if you think being expelled from the expelled article is going to hurt my feelings you re sadly mistaken it s actually kind of funny,-1 +i wonder if this nigger rr pussy e remembers me,-1 +oh really huh wow who knew that was half of wow thank you for that great math lesson not oh and one more thing your the idiot,-1 +i bet you love anonymous censorship i m going to rattle off all the curse words for you fuck shit crap mother fuck er ass hole bumsex you love this cunt and damn you thank you for aiding me in your fight against censorship m t,-1 +dumb ass this is my page leave it the fuck alone,-1 +well my life suck s so basically nothing d talk,-1 +i d love for you to come to the talk page for list of gothic rock bands and describe just why the bands i removed have a place on the page if your answer is well because some journalist said so then you need to back down i ve been involved in the goth scene but am not at the moment and the most irritating thing to goths is when the metal crowd try to budge in and try to normalise the misconception that any form of metal would have anything to do with the gothic rock genre there was a concensus made previously but blackmetalbaz chose to ignore it and decided to go dictator on the article why is someone who so obiously has an agenda of normalising the misconceptions get control over an article when many many people involved in the actual fuck ing scene don t get to edit shit it s bull shit kthx,-1 +fuck you truth killer headline text headline text headline text,-1 +kys master fag mind your own damn biz those pages had no quarrel with you,-1 +rugby if was just wondering if the uni has a womans rugby team a rather large rounded st xv prop tommy moore has a hankering for some ton pussy,-1 +stop pimping that shit gwen gale slut,-1 +proprietary software hahaha i just read your heated debate in the discussion of the article proprietary software you were right in the original argument and when everyone else started commenting and that admin warned you you turned into such a bitch you were right though people just need to grow some balls and take some criticism thankyou for the support while i did become a little childish i think to be honest i was justified so far as it being impossible to do otherwise while continuin the coversation as opposed to being justified in that i should have simply left the idiot s to their fictional article but oh well we do have to all be civil and pretend like we re all best friends it s no wonder all the articles are worded like leftist propoganda,-1 +ur a coomie y do u block people u coomie and u suck like joey barton,-1 +big girls blouse no one likes you you prick fuck off,-1 +ban this vandal http en wikipedia org wiki user damirux he s an idiot tesla was a serb fuck ing idiot,-1 +sallary controversy arzel watch your back on the street delete the truth ill cut you on the street the president of the peabody essex museum dan monroe makes a year with full benefits while all the guards are part time with no benefits this edit was undone by you you are a piece of shit what are you on the payroll for that fuck dan monroe jew s like you give jew s like me a bad name i know where you live go out with your friends dog for a walk be careful go fuck yourself you are apiece of shit,-1 +oh my dumb ass mistake it looked just like the image on your user page so sorry,-1 +i suggest my balls in yer mouth no page no reference,-1 +dumb bastard what is an ass berger,-1 +up yours get the fuck off my page d ckhead,-1 +or else i ll cure your virginity from the wrong hole,-1 +robin hood is a gay bum bandit who abuses women s rights he is going to find elephants trunks suck ing his backside next time what a loser leave catherine alone,-1 +penis smacking willy wanking willy wong,-1 +stop suck ing that fatass dick you nigger loving kike,-1 +giantsnowman cold and fat don t threaten me you piece of shit your company and the editors i was debating advocate child rape you are now complicit in supporting such a view piece of fuck in garbage,-1 +fuck off next time read my edit before you go reverting it dip shit,-1 +your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dick ead your a dic,-1 +fred shut up you sad old twat no one is interested in i think i m fuck ing god wiki moderators get a real job you sad little man,-1 +ok let me say one thing fuck you all fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you,-1 +map key is bull shit the map keying is wrong compare with http fr wikipedia org wiki communes du luxembourg,-1 +call it being pushed into a corner or call it being a dick it s all the same talk,-1 +you are a douche why the hell are you picking fights with everyone first it starts with all the editors at that article about the rich indian then what do you do you pick a fight with a the creator of wikipedia the almight jimmy wales what is wrong with you,-1 +a misery you have made my life a misery on wikipedia and now you re gonna pay for it you disgusting ignorant and stupid bastard,-1 +clearly fuck me you re stupid there were three different definitions that is not clear they were all copyright violations lazily cut and pasted directly from external sources no it s quite obvious that you reverted without considering the merits of the edit your first edit summary was rv to last good version what you ve come up with now is just post hoc justification for your obnoxious shit behaviour as you have not bothered to warn macedonian that false accusations of vandalism are a personal attack i do not think you do know what vandalism is,-1 +remember me you damn bastard you happy that dord block me for year right,-1 +thanks for reading i appreciate it you should review that bull shit policy about personal attacks thanks for the entertaining response,-1 +your passive aggressive dick waving is exactly the sort of penny ante tinpot authoritarianism which makes wikipedia such an unpleasant place to participate i ve already told you repeatedly that i don t wish to have any further discussion with you repeatedly yet you insist on having the last word on my own user page no less if anyone else but an administrator did that they d call it trolling and they d be right i made a wp bold edit in good faith which apparently gave you some kind of atomic wedgie you reverted it did some triumphant teabagging on my user page and at this point your duty was over instead here you are still making vague threats and scary noises despite or because of my request that you shove off and stop trolling up my user page you reverted my edit and did aa crazed monkey dance over the body of your slain enemy since it s clearly a matter of supreme importance to you and experience has told me that wikipedia articles belong to the person with the most intense ocd i have not bothered and will not bother to reinstate the edit therefore you have no reason to be here on my user page trying to intimidate me with your awesome and terrifying authori tay kindly go away,-1 +r u bigees cock sock,-1 +darkwind stick it up your ass you offensive k when will there be accountabilty to censorship,-1 +wikipedia needs you to stop repeatedly fuck ing up an article over the course of many months with the inane edit summary fix because you apparently don t understand the difference between lists and prose your actions were not civil and were not designed to improve the encyclopaedia so don t be lecturing me about collaboration,-1 +tvtimes images hi ben you ve recently uploaded and added to articles some images of covers of tvtimes magazine you ve correctly tagged them as fair use magazine but i don t think the images are being used under fair use considerations the tag for fair use magazines says it is believed that the use of low resolution images of magazine covers to illustrate the publication of the issue of the magazine in question the images are being used to illustrate programmes not the tvtimes magazine therefore i d say they re not being fairly used under the terms of wikipedia s fair use copyrights policy additionally the tag says to the uploader please add a detailed fair use rationale for each use as described on wikipedia image description page as well as the source of the work and copyright information these images do not have a fair use rationale on the image page and they don t provide the source of the work scan taken from another website etc i suspect that the images will need to be removed from the articles you ve put them in but i d be interested in hearing your views thanks redvers your quibbles of fair use are so much ridiculous pedantry and if this is the level of petty officiousness you subscribe to here i d sooner not bother fuck you cunt,-1 +shut the fuck up bitch u dont know me so i suggest u keep ur fuck in mouth shut and mind ur own business u damn nerd,-1 +bloody hell it continues,-1 +wtf how the fuck does this person merit a page on wikipedia,-1 +who the boofhead are you fuck wit bainyrues,-1 +screw you i do what i want,-1 +new message wikipedia dick eads go and fuck your selves,-1 +fuck why hasn t anyone included this information yet http ultimate guitar com news general music news red hot chili peppers accused in plagiarism html,-1 +jaycie it s not as simple as you put it man it s not just about some trying to get a reputation she already is known out there and read the more detailed one for what i m trying to get across ffs no one is right deleting it fuck in fools mazito tuesday december gmt,-1 +evula answer me got damnit,-1 +aight nerd you suck fin p s get a life nerd do something other than edit wiki all day get laid get a hobby,-1 +hi please read this its important fuck you bitch i can do w hate ver i want and there is nothing you can do to stop me you are without doubt the most annoying piece of shit i have ever even heard of you are a flat out embarrasment to humankind do the world a favour and kill yourself ok the world will be a better place without you or if you can t bring yourself to do it get someone else to do it see if i care you are a pathetic worm go and burn in hell on second thought hell is too good for you go to the darkest most desolate pits of the universe and stay there in agony you are a despondently hopeless worm who can do nothing but annoy people even your mother probably wants to kill or maim you in some way burn in hell snowolf thank you and have a painfull death,-1 +lock down i don t know about the bulgarian bull shit season but don t be fooled from where exactly i connect if i see you editing or someone else you send the dda x article one more time you will spend the next few years in prison i will arrange you a meeting with certain people for suspicions of terrorism yes i can do that a terror suspect nowadays you can kiss your young life goodbye if you file complanes and i m banned you and your naked ass will have the whole time in the world in the cell block to think what went wrong,-1 +everybody knows thomas robb likes big black dick stop lying and face facts so stop deleting my additions it s true i can prove it i m a big black man and he put my balls in his mouth,-1 +incidentally wp s rules about uploading images suck,-1 +so you re going to hold it in your anus ok bite me ass hole,-1 +we bulgarians have nothing in common with any mongols or turks this is an evil campaign started by our enemies about a hundred years ago to divide the bulgarians only in the russian federation there are at least million people of direct bulgarian origin and the russian authorities simply don t want them united because this is a threat to their empire no wonder this article is within the scope of wikiproject russia they support this anti bulgarian turkic crappy propaganda that has nothing to do with reality and is extremely abusive against us bulgarians we know very well who we are and where do we come from we need no stupid shit opedia to brainwash us with this pathetic neo turkic crap,-1 +gay i think your really really gay and you probably suck dick find something better to do other than being a fag and fixing wikipedia pages and by saying your gonna block me from editing doesnt really do much for you or me now does it its not like i can go to jail,-1 +zhanzhao is a mother fuck ing pussy indian chinese bastard http twitter com phoenixreporter unblock http twitter com phoenixreporter http twitter com phoenixreporter http twitter com phoenixreporter http twitter com phoenixreporter i am gonna flood this page wahahhahaahah zhan zhao is a mother fuck ing,-1 +fuck you just thought i d say that,-1 +fuck you you are not wanted here with your attitude either,-1 +because i m such a fuck ing retard,-1 +i do the cha cha like a faggot,-1 +no you aren t you are a lying scumbag and a cunt who has made the madonna pages your personal bitch fest no one can add anything or do anything or you flip out too many admins just let you run rampant with fan cruft i m happily editing on another ip and there is nothing you can do about it you lame biased douche bag,-1 +fag you are a huge faggot,-1 +removal of warnings do not remove warnings from your talk page doing so is considered vandalism so stop you bitch user page don t edit others user pages please or insert personal attacks as you did here and here it s vandalism leave messages on talk pages in the future,-1 +wow serious stick up the ass itis but seriously thanks for getting me block always wanted to do it thought it might be fun for a while but turns out all the admins are the same variety of lame lazy fascist sound familiar anyway seriously since i m taking a permanent break from wikipedia just leave that info here i m very serious about following up on that since frank o hara is a subject of research in non toilet backwoods punchline style research ya ll have fun wasting your lives on futility while the sticks up your asses keep you from having the real kind of fun you should with crap like this but seriously let me know where you got that o hara info i d like to follow it up i know you ll ignore me it s your pattern but thought i d give it a try do you need reading lessons or something it s like you have paragraphs on auto and are unable to read what others say anyway just a citation or something frank o hara hate s beats found here citation is another shortcoming of yours but please try thanks happy thanksgiving,-1 +my birthday is tomorrow i want to get what i want as my birthday not a disgrace made by some internet hacking bitch es user factual man,-1 +fuck u all fuck u all,-1 +eli is not a crack whore and works the streets for money if you want him go the the burbs and yell out two headed white bitch raper,-1 +fuck off you cunt you re suck an ass hole,-1 +i love vagina and eat pussy everyday,-1 +herb for life bitch,-1 +your a cunt chovain suck it ya minge,-1 +looks like i won this one anyway i wasn t trying to vandalize yriarte just a typo that i had already gone back to fix but you started acting like a dick and i guess today i had more time on my hands do you call yourself uncle dick because everyone thinks you are you you have a healthy collection of complaints on your talk page preceding unsigned comment added by,-1 +i agree wikipedia is not an instrument for the liberalisation of faggot ry which the male anus promotes a female anus will suffice,-1 +maybe you could try and get your message across without all capitals and without swear words or calling slimvirgin a jerk and an ass hole etc etc keeping it civil will give you a slightly better chance of getting your message across i thought saying fuck ng was at least a slight improvement over having all the letters maybe not,-1 +tell your girl friend of your user nancy stop beenin a bitch hours,-1 +is a fuck ing faggot,-1 +hey hey buddy fuck off that stuff about ronaldo was completely accuracte prove me otherwise cunt,-1 +fc bayern roster edits footnote which i placed yes this guy explains exactly why those players are not on the current squad and as for edits it s on bitch don t ever fuck ing block my shit again this is war it s on baby don t waste my time ever again,-1 +awh the little hitler bitch ran and told his boyfriend,-1 +it was my intention that you stop being a dick and use the template on the image workshop pages a second s worth of contemplation on your part would show you that your method is stupid on those particular pages so if your method is stupid would it not be a good idea to use a method that isn t stupid that does work and has done so for a very long time,-1 +bye i have a small penis and i like when people touch it my gay fathers like it too when we upload it on youtube com,-1 +burn in hell paulley every time i try to edit something you delete it you are not the only one who knows about wrestling so fuck off you prick i hate you and would wish you nothing but death,-1 +all suks ma dekk,-1 +w hate ver fuck you all,-1 +re calling a dick ead a dick ead is not a personal attack sorry but if fuck s with my edits again i will call him a dick ead again,-1 +just because you enjoy suck ing an occasional nigger dick doesnt mean the rest of society does,-1 +you re a dishonest ass hole that will never touch a girl until you move out of your parent s basement,-1 +xou dont get it do you get glasses or w hate ver and stop ruining articles just because you dont understand shit idiot,-1 +fuck you idiot you don t even know the subject obviously get fuck ed lol,-1 +dayuum bitch baby,-1 +fuck you you moth r fuck er if you want me to be rude so i will i am no sockpuppet or vandal you refuse to answer me without reason you removed sourced data assh le and i m going to return it back you re the vandal not me,-1 +your mother is suck ing my cock right now you loser hahahahahahahahahaaha sh wanted me tell u she says hi hahahahahahhaahhahahahaha,-1 +you useless ass hole keep your misinformation to yourself,-1 +okay really nigger why does everything have to be your way it s not just lebron james it kobe bryant kevin durant kyrie irving rajon rondo paul pierce chris paul etc and its skylar diggins maya moore candace parker so what makes it any different blocking me cause nothing done your way it s so stupid i just cant deal with people like you wanting everything their way,-1 +clown bastard why did you block me you fuck in philistine i suggest you stop oscillating between being a clown and an intellectual and just stick to your puerile image of being a nobody who blows up giraffes whilst you try to pervert little kiddos,-1 +the things i added were not vod services and furthermore i worked hard to wiki ize the ethnic channels list only to have it all reverted for no reason you guys suck,-1 +jl j alsdfsml kfjsdf this man likes to suck major dick,-1 +you suck i hate your guts you piece of shit your friendly neighbourhood abuser,-1 +congrats for being a total fuck ing faggot,-1 +stop fuck ing deleting the november bit from the release dates for the virtual console release of super mario kart in europe the article itself says it s coming out on november so if you are going to remove it from the infobox at least remove it from every single page that mentions the date even though it s confirmed to be released on november prick,-1 +even look at marty sertich s wiki page high school roseville what do you need a bloody news article stating the aforementioned people went to rahs why can t you uptight ass hole s just accept personal assurance what do i have to gain from lying about past alumni seriously,-1 +no i don t care u bitch,-1 +hoe your a slut hoe basstatard homo rapeist,-1 +the end of democracy to all those who read this message be warned as the tilte says the end of democracy is near the legal sytem of the usa has allowed the citizen you know what fuck this,-1 +hey moron its lingustic skills not lingustical go fuck ing take a course in english,-1 +fuck you ass hole,-1 +fuck ing die lol rofl joke hahahahahahahaha u cant stop the vandal though,-1 +did it ever occur to you that somebody simply had to just click undo in order to get the same edit result has it crossed your mind that quite possibly there could be more than one person in this world that would think of doing that so what about all the edits today taht are similar was i responsible for those too despite the different ips here ill save you the time no i wasnt im shocked you havent blamed me for those too there really is no talking logic with some of you idiot s is there you get these delusional ideas and thats it thats the way it has to be because thats the idea you had during a dungeons and dragons game ill say this one more time for you you are dead fuck ing wrong and are making yourself look like an ass hole by jumping to your stupid conclusions,-1 +idiot like willie martinez you re an idiot,-1 +stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit stop editing my posts dip shit i have a right to state my opinion and i dont give a shit what you consider vandalism you worthless admin power trip piece of shit,-1 +i hate you i can t belive you you are so wrong about the ages in myst i exile such total scum everyting about you is stupid you stupidly think there are such myst i ages as amateria or edanna or narayan but know teorlemin tonditios or hast thri ixil and that you never explore releeshahn j nanin is not the hub age there are too many things wrong about this ass hole to name he is low class scum i am way richer then this ass hole welfare bum i am way more educated then you are too pathetic play some myst i and see that you are absolutely wrong,-1 +pig that pig looks scary shit hehe,-1 +i had a good one up there until some dip shit decided to change back to this joke they d call a mosaic pacificwarrior,-1 +right i wasnt making a pers nal attack i was just simply stating that he was being an ass hat f r deleting my article thanks anyway the w rld needs m re nazi s like y u,-1 +irish bigot protestant bastard we have our eye on you you re nothing but a cunt a bigot discriminating gay bastard go fuck yourself in the ear bigot protestant orange cunt,-1 +which part did you find to be false i am thoroughly disgusted with the behaviour here i am ashamed to say i have had part in any of this project i never admit it to other people in private life methods have to change or wp will die and become known as more of a failure than it currently is known as thanks for your soothing words though you are off the wall and slightly out of control but had a big input i think and i took it as your sick sense of humour and liked most of it i wasn t here that long gab the stalking harassment suck ybaby is screaming now but i have seen enough to confirm what is being shouted around the internet about the wiki garbage spewed here wiki suicide is eminent sorry i have no second sourced hearsay level gossip to reference that coward coren just didn t have the balls to do a proper job after the latest bs the admins have been through the latest to lighten up cause we need more editors on a lighter note there are many blogs and websites describing how to remove wikipedia from your search engine so the garbage doesn t keep appearing mixed in with the real information it was fun not being an admin and seeing the other side for awhile now i understand more about being a dumb nigger ops did i say that out loud fuck in a for the ame people fuck in huh for the brits fuck ing heh for the cane people fuck in eh,-1 +congratulations congratulations triste tierra you have won the ass hole of the year award you won this award by harassing users in the past and saying hate ful things about and to them in order to claim your award you must call ass hole once again congratulations for your win,-1 +danielrigal bitch you are a fuck ing geek ass pussy u ait shit u aint ever gonna be shit get a fuck in life u bitch ass homo go ahead delete me bitch and ur work suck s,-1 +dammit fagex hu nigger already told me god jesus,-1 +and its me you fat bitch stop deleting my images ugly ho,-1 +faggot fuck you bitch you re a faggot,-1 +fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck yo,-1 +i really enjoy licking penis i routinely check into hotles with she males in order to get rammed by them also after all my name is uncle dick,-1 +go fuck yourself conrad black cheated thousands of people out of their pensions anyone who defends hm is an ass hole and an apologist for evil,-1 +i bet the only thing you like better than suck ing cock is editing on fagopedia,-1 +go fuck youslef i am going to kill you this is a threat too you life watch out,-1 +piss off you son of a bitch,-1 +what kind of idiot s are you do not delete that page or kick your ass hole mother fuck er,-1 +hey man what the fuck happen to spider man man it was there a few minutes ago now now its fuck gone some better tell me what the fuck is going on with tobey,-1 +cunt thought id leave you a message before i obv get banned cos you have ur head up wikipedia s arse your a fuck up with no life who spends all day editing wikipedia cos your an ugly fat gay who has nothing else to do you need to grow up and get alife you immature little brain dead cunt noone likes u in real life and suck ing off editing pages on wikipedia isnt going to help you sort your shit little life out so get off the computer go outside and get a girlfriend you may then stop licking off your computer with love jto x,-1 +personal attack you fuck ing coward anytime anyone tells the truth about cheri dinovo or her attack queers it is a personal attack no wonder the pope hate s you pillow biters,-1 +oops i didn t request a new ip from dhcp anyway i ll do that now see you mother fuck ers later,-1 +stay the fuck off my page you homo sex i will remove this if i feel like it,-1 +i dont like you you are like a wiki nazi always deleting stuff that people put up that is true please and kindly fuck off some people are making good contributations but all you do is go delete delete delete have a nice day douche bag,-1 +big ass warning type thing you step to me on my user page and i reserve the right to tell you to rack off in any number of ways which may damage your ego you act nice and civil here and i ll do the same note if you post random unhelpful shit i will tell you to rack off as well be a jerk at your own risk,-1 +screw you i m not scared of your little warnings so retart fuck you too,-1 +oh cool you deleted other part what is next you will delete the whole article too good job can block me again it s just that you can do idiot,-1 +get a life you fuck ing loser if you have any other questions about me don t ask me ask katie goulet here is a picture of her,-1 +is this your horse and its erect penis,-1 +rklaton is faggot and loves to suck cock and get his ass fuck ed by guys a day,-1 +wht is your problem man i m trying to get to know you better and trying to talk and you are just shooting me down man and all that redneck stuff was my dumb ass little brother and you havent even given me a chance to apologize for him im kinda disappionted cause i thought that wikipedia was supposed to help people ive been through some real shit lately and the least you could do is not call my feelings a diatribe that hurt my feelings and pissed me off im trying to understand but i dont so plz explain why you are being so goddam insensitive to me and my little brothers feelings,-1 +and on a personal note the english are a race and the so called cornish are mostly just a bunch of angry celtic whannabes what an ignorant arrogant little shit you are d and i knew it from the word go insisting that the word english should come before cornish er c comes before the letter e,-1 +dude latinus don t you have a job or some shit like that how the fuck are you moderating me every seconds christ you can do more productive things than jacking off wikipedia and moderating others congrats though i guess you re a really good wikipedia moderator if that s a life accomplishment oh wait that means nothing you re still a failure you tool,-1 +can any of you dumb asses read the entirely first article the fuck does it say that can be the truth sorry for the language,-1 +hey you can you please tell me how the fuck my edit on the university of china page was considered a personal attack when it was actually factual speaking alpe is my name and we have the university of china right here in southampton poland,-1 +arsehole who was bullied as a child,-1 +go fuck yourself delete this,-1 +you can suck my ass you stupid ass hole this was a personal attack but maybe you re really a stupid ass hole you can not see the difference between a reliable source and review crap furthermore you was a part of the edit war,-1 +gleisinger corporation piss off,-1 +in other words don t use the word ass with the letters back to back because it sends up a red fuck i n g flag to the computer reader,-1 +ronaldo is a fuck ing bitch,-1 +it s just simple math ship length box office revenue in usd size of j j abrams penis,-1 +message for angie yo need to get a makeover u r fuck in ugly bitch,-1 +shit nigger wtf chill dem bitch es dog,-1 +i will alxays return delete my articles stupyd bitch,-1 +aww shut the fuck up little whiny bitch,-1 +dude shut the fuck up,-1 +shut the fuck up why dont u shut the fuck up and get a life if you like to play that gay game so much do it and fuck off,-1 +erroneous comment stricken still don t delete comments outright just because you don t think they re appropriate there s nothing in the rules that forbids casual use of words like fuck on discussion pages also what i posted above is not an attack i mention this because one of your friends coming to your aid accused me of attacking you,-1 +therefore you are a pedo you fuck little boys,-1 +being so god damn sex,-1 +removing thugstep you ve already had this explained to you one more of those you ve already had this explained to you tries and you ll get told about if you suggest a thing to thugstep article do a thing if you fuck ing dislike thugstep that shouldn t be a deal for wikipedia,-1 +you suck duck butt that s right i m talkin to you beeblebrox and what kind of stupid name is that lol you must not have a life otherwise you d leave me alone,-1 +lol you re a complete freak in my opinion now boy genius is that a personal attack the first person to ban me for supposed vandalism was an idiot like you the successive people with one exception where it was legitimate just did it because they blindly followed that idiot s lead the highest level admin to look at my user talk agreed that i had a legitimate dispute and never should have been banned in the first place so suck a big one you know you like to,-1 +you can t stop me you accuse me of vandalism i ll vandalize your face bitch,-1 +what shit u talk to me communist rat,-1 +fuck wikipedia peace except to wikipedia,-1 +carl is love carl is life you can t get rid of him scum he watches,-1 +you warned me you sent me a warning for attacking another user and i was just wondering if there was any way i could let that particular user know that he should go insert a dildo into his rectum wothout violating wikipedia policy thank you,-1 +israeli looser it is very pleasant to see with all of efforts of you and your band you couldn t delete adolf hitler s th birthday it proved that you are such a big israeli looser loosers generally suck lol,-1 +shove your bloody warnings up your lame ass where it belongs stop giving warnings you piece of scum no one cares a rat ass about you or yamaguchi here shove up all your bull shit warnings up your ass get lost u pice of garbage biased fake ass we will take to public forums as how certain ass hole s like you yamaguchi are being paid pr s to few profiles in here you are truing to hide the facts and promote false info on wikipedia how pathetic u bloody morons shame on you dontu fuck in dare issue lame warnings we will report you to wiki higher authoririties and see to that you are letmsnently banned from here you shallow brainless bastard fuck in loser go fuck yamaguchi and get lost u shit head,-1 +youre a dumb ass liar hectorine that was about kinross and i already cant change the article,-1 +go fuck yourselvers up the ass with a barbedwire bound live hand grenade explosive orgasm guaranteed,-1 +bullzeye is a faggot and comments on things he knows nothing about i apologize for nothing,-1 +rspw poster is a sick gay freak,-1 +if you are going to antagonize other people you are going to have to learn to deal with the repercussions as far as me calling you an ass hole if the shoe fits wear it vandalism of this article by his unwarranted removal of non spam links is vandalizing this article hey phil i d like to ask that you refrain from future vandalism of this page failure to do so will result in me doing everything possible to have your wikipedia account block by the way isn t it foolish to use your real name as your wikipedia user name,-1 +litter act sect is shit try qld leg with amendmants,-1 +i think its a great idea an bigd sounds like an ass hole,-1 +i don t give a flying fuck block me i don t care kiss my goddamn ass dustin mother fuck ing d,-1 +what the fuck is wrong with you ecto who gives a shit ducky i do because he does not hate the subculture and where has he denounced himself as goth where,-1 +shemeless and my ass ra talkcontribs,-1 +you people are cunt s bombing every ones mail box fuck ing bastard s,-1 +hey ass hole what the fuck is your problem i m trying to help people but you still keep fuck in wit their pages what s your deal faggot,-1 +ive moved from denial to anger to confusion damn it,-1 +hehehe lol thanx blud i like anoyin ppl coz i hav nufin to no betur init im goner take a pis on yor mum shes fat now go fuck yureself yo as fagit ye i know ypr ip adres bitch goe yif yorselff,-1 +no i m not joking i m hoping to help bd avoid digging himself into a hole full of shit e really that s what i m doing i know it may be hard but please trust me on this talk stalk,-1 +utc dont sweat these fuck s man vitual steve can ramm his dog and fuck scarian hes a fuck ing prick they all do suck black dick huh bro july,-1 +really realy fuck ing boring you are a boring smelly cunt why don t you go and fuck ing kill yourself you sad cunt,-1 +when you look down in the shower can you see your penis,-1 +coelcan you a bitch,-1 +fuck ing argie loving wanker your a fuck ing argie loving wank then the falklands are british and always will be cock,-1 +me arguing go fuck yourself i m not the one creating multiple accounts vandalizing leaving and coming back and vandalizing again pwheadlines suck s i have relatives who work backstage in wwe and tna i am also training to become a professional wrestler and i m training in neo spirit pro wrestling here in ontario they were going to abandon the fuck ing title and bring in a new title now shut up and go get yourself block again,-1 +it becomes the primary reason why the internet suck s so wikifiddle and wait when the party and its in reality sets in,-1 +i ll get the barnstar graphic done asap and send to you then we can figure that shit out also last night i did something super bad on wikipedia but i had to do it found this guys user page and i loathe him i know him from online forums and shit i know its the right guy cause he commented on the oink article and i know him from the site and its funny cause no one has seen caught me yet haha o dear and don t you go reporting it for once,-1 +really you really classify yourself as a macedonian you wish alexander the great spoke macedonian not greek he burnt greek cities to the ground you are a dirty ass greek scientists did and ethnicity test on ancient macedonians and greeks and found out that they are different nations and guess what the greeks are closely related to the ethiopians the modern macedonians shared many chromosomes to the ancient macedonians you just go fuck yourself you dirty ass whore,-1 +i didn t vandalise any page i actually restored the ouca info page to its orignal state you jerk,-1 +your two ass and my single penis how about threesome,-1 +psycho why do you keep telling us that our page is being vandalized it is our page can we do what we want nobody likes you you are such a dick ead you lesbian butch colleen vanessa,-1 +dear mr ass retentive wtf are you talking about bitch that was a perfect edit the topic was the price of super bowl rings what s your problem and kindly apologize after you state it thank you,-1 +sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck sex fuck,-1 +renzoy shut the fuck up,-1 +i didn t vandalize you are a serious dumb ass any misspelled words or a bad comment on a usertalk page you consider it vandalism seriously get a life nerow hate ver,-1 +do you want to lose your sysop rights i will help you little idiot,-1 +how fuck ing dare you delete my entry about the hungarian goalkepper,-1 +gay ass william at it again small penis fagbag hahahahahahahah,-1 +ffs you sad little cock muncher,-1 +yo what in heaven s name is your problem with rm he s just trying to explain to you how to properly edit a page on wp instead you practically spit in the guy s face so in response to your actions i will spit in your face and then you can tell me how it feels afterwards because you deserve it you mother fuck er do not bug rm ever again you hear me you sob habsmtl,-1 +redirect talk fuck the industry,-1 +fuck you son of a bitch your s de make us creasy you and your s de,-1 +so guys this user by the name o fjrgug faggot got me banned that guy is a fuck ing cunt,-1 +unblock input devices now u cunt or ill kill ya d unblock input devices now u cunt or ill kill ya d,-1 +heil hitler white power god is a bitch pussy tasty,-1 +comment from sasayama go fuck ya mum fuck ya too fuck off bitch,-1 +commiemoron seems to make alot of mistakes gosh darn it mayeb hes retard ed,-1 +headache death syndrome headache death syndrome is what emma has it is a very serious headache of which makes her feel like she is going to die causes not a clue solutions not a single damn thing,-1 +enough with this bull shit of yours fly chernodrinski is macedonian just as misirkov,-1 +fuck you danish hate r fuck you arsehole muslim lover muslims control you you are a slave to them denmark is a great country,-1 +fuck you fuck you fuck you fuck you fuck you,-1 +why fuck you you fuck ing whore you stupid piece of shit you are pathetic how dare you delete that about my fuck ing mother do you not have a heart you fuck ing whore,-1 +monkeys also like to feel you up when your sleeping and teabag you and skeet on your pillow when you least expect it most monkeys have diharea after raunchy sex with male hookers and need vicoden to numb the pain thats why some of the monkeys asses are red because they are sore,-1 +why the fuck was he block kwanzaa is the invetion of a man convicted of a violent felony against two african american women kwanzaa s values are based on the marxism of that man kwanzaa is based on african american nationalist separatism kwanzaa is not celebrated by any african culture anywhere and the majority of the cited references to kwanzaa in pop culture that have been cited are mocking or ironic you cant rewrite historical facts with your blubbering jibberish what he is saying isnt point of view its truth its not racist its not prejudiced its truth i am on the verge of killing the next person who lies to me pov wow i guess thats not too wierd in this talk page get a brain you oversensitive hypocritical lying scumbags and get a fuck ing dick and balls,-1 +that s a lie you re guilty of sophistry and manipulation oh you are a clever one aren t you i read what you edited i saw what you didwhat you added what you deletedi don t how you did it but we both know what you didand you continue to do it with the full weight of your title and insider access as an administrator i m not an expert at wikioh excuse mei mean wikipedia and why for the love of god do all of you continue to refuse to address my issue regarding the concensus that was reached long ago namely that the article was fuck ing fine until you decided you we were not as brilliant as you go fuck yourself i m done gee what a life you have wikipedia no pay no glory and the butt of jokes from jay leno and david letterman oh and by the way you should remove the photo of peg from the article for as your puckerd ass hole will see it was contributed by mefrom my original research you are a fuck ing a liar and a hypocrite gwen you have no true alligenmce to wikipedia you belong to a hate ful politcal band of cultish fanatics within me i m just a fuck ing iraq war vet who tried to help make wikipedia honest you changed the history to reflect your rightness and calmly sit back and wait for the maniac to vent well there ya go miss cunt you got what you wanted go fuck yourself oh know gee i guess i won t be able to edit for wikipedia anymore after that tirade who fuck ing cares what the fuck good did it do me if you had one fuck ing ounce of integrity you would compare the very original article with my contributions peg entwistle s wikipedia looked like a fuck ing god damned article from weekly world news,-1 +you have a fuck ing huge ego for a fuck ing geek with no life,-1 +screw you to goddamn hippies wikipedia suck s wavegetarian likes little boys,-1 +you bastard you bastard you deleated my article before i even had time to write it you suck,-1 +fuck u ass hole cock dick ass fuck shit bitch fuck you u german fag,-1 +a response to i entitle this your stupidity the assyrians are not extinct you incompetent bigoted fool you lack all things historical you impotent maggot the assyrians have existed for over years you incumbent animal the assyrians first spoke akkadian and in the th century the kings of assyria chose aramaic as the lingua franca of their mighty empire you extinct ape we have simultaneously existed throughout the ancient era up until the present day you rotten corpse we were the first nation to accept christianity and the assyrian church of the east spread as far as china and japan and india in the th century ad you degenerate dog the assyrians have been and will always continue to exist through persecution and diaspora you maggot the aramaena peoples are an extinct pseudo people who never existed since the assyrians destroyed their kingdom and reduced it to a vassal state you mongrel this aramean syriac name is a name created by radical separatists who deny their ethical heritage since the late s you snake the assyrians speak modern aramaic the aramaic in which christ spoke thousand years ago you uneducated mule your statements lack depth in all facets they are unencylcopediatic unsourced close minded uneducated mentally degenerate comments that seek to downsize the most ancient people down to nothing you claim that this name was invented by some new comers almost a hundred years ago this comment alone shows how completely incompetent you are i have documents that are hundreds of years old that have been passed down through my family over the centuries that specifically speak about the assyrians and how this name is far more ancient then simple minded people like you claim this will be the only comment i will make for you because i will not waste my time speaking to a mentally degenerate pig such as yourself who is a denialist racist and complete bigot and a distorter of history who denies the race of the assyrians exist i will pray every day that you may you die a most horrible death,-1 +hey bitch you want to get fuck ed up meet me at big bad varrio cochella fuck the rest you are a fuck en nerd ill whop ur ass,-1 +you little pussy s this banning is totally worth it do what you will but you two remain vile little ass mucnhers forever,-1 +todd you re a dumb ass,-1 +unban this ip address or a new online encyclopedia will be formed that will kick wikipedia s ass you have been warned tectonic shift,-1 +hi you re a fuck ing moron,-1 +please please don t be a cunt,-1 +ugly fuck er who suck s cock s,-1 +hello you may quite possibly be the stupidest person in existence congratulations and well done on editing personal messages to you which you think might be offensive whilst pushing lies on to others,-1 +bull shit go to hell you fuck ing vandal,-1 +you know what you stupid crap i know much more about any of this than you do because your just some cyber pansy sitting behind a damn computer for the whole day trying to pick fights with people go pick up a damn book and learn something useful scumbag because your just a frickin low life right now if your going to be an editor on wikipedia you iq should at least be above do me a favor and shuddup stupid shit i edit what i want and do what i want on this website that has so many crappy useless editors i a year old has to go around editing,-1 +you are some kind of serious moron i guess this is where you win and get to block me for personal attacks moron,-1 +hey fuck o hello i saw your humorous additions to the parrot article if you feel the need to contribute anything else of a similar caliber i will be forced to journey to your place of residence whereupon i will rape the ever loving shit out of your loose dirty nigger ass hole okay,-1 +whoever wrote is a cunt,-1 +here we go again fuck you,-1 +the articles concerned are approximately rubbish i have no intention of re tagging them let them stay on wikipedia for all i care they fit in rather nicely with all the other bull shit,-1 +this isn t even fair the old like a boy cover was fake and i uploaded the actual one you know what fuck wikipedia no one actually believes this pathetic excuse for a factual website anyway,-1 +kurt and dave get it on groaning kurt released his cock for the past week he hadn t been able to get off he tried a cock tail of drugs and a cock tail of whores nothing was doing it for him masturbating in the shower wasn t even working oh he was getting hard all right he just couldn t fuck ing cum and it was driving him nuts to top it off he didn t know why he couldn t cum the girls had been either hot enough or slutty enough even the couple of guys he brought home had been decent despite that he couldn t fuck ing cum and a week of that was enough to make anyone more pissy than normal which meant band practice was unlikely to be much fun for anyone that was made abundantly clear the moment kurt stepped into the rehearsal studio his eyes flicked from krist to dave and he came to a sudden stop dave was sitting on a couch a pretty girl in his lap giggling it was like he was taunting kurt and he would have nothing of that stalking over to the drummer and the floozie kurt pulled her forcibly out of his lap the girl squealed and dave growled but kurt paid no attention forcing the girl out of the studio after slamming the door he headed back over to dave without a word he pulled the drummer to him and kissed him possessively dave shoved kurt away what part of no don t you fuck ing understand krist s eyes widened and he took a step forward guys i think kurt sent him a silent glare silencing and stopping him i don t want you kurt i don t even fuck ing like you right now dave growled in fact i fuck ing quit i don t have to put up with this shit you re fuck ing insane you need some other crackwhore to take my place i m not it sidestepping the singer dave headed towards the door he barely made three steps before kurt grabbed him again this time his back was pulled to kurt s front he could clearly feel the singer s erection pressing into his ass he wasn t going to be anyone s bitch i m just gonna go krist muttered before slipping out of the room quickly you re fuck ing mine dave kurt declared licking dave s neck always for as small as he was kurt had more strength than dave expected with considerably less effort than he would have figured the singer forced the drummer down to the floor dave wiggled and tried to crawl away but all that resulted was in kurt pulling the drummer s pants off laying down on top of dave while he worked his own pants off kurt hissed in his ear you re mine you hear me fuck ing mine stop kurt stop dave struggled with kurt s weight on him the drummer had very little maneuverability he was completely trapped but that didn t mean he stopped trying to get away while wholly his struggling was probably a good thing it wasn t really helping if anything it was turning kurt on more not having the patience to remove dave s boxers kurt reached down and tore the back seam exposing the drummer s ass he didn t even pause to warn dave his hands spread dave s cheeks spit down his crack to provide some lubrication and quickly pushed his cock in dave screamed wiggling once more to get away with kurt s hands holding onto his hips he had no chance to go anywhere at least not until the singer was done dave s screams faded into sobs that alone drove kurt further faster he loved everything about it the way dave s ass squeezed his cock better than anyone else s had before he was a perfect glove a perfect fit before too long a week s worth of unreleased cum spurted from kurt s cock slowly he pulled out not really caring about the mixture of blood and semen leaking from dave s ass grinning to himself he refastened his pants he glanced at dave a feeling of superiority infusing him he totally owned dave now does anyone have any basis for this rumour i would love to put it on the main page,-1 +fuck fuck you rapist,-1 +fuck you fuck you fuck youa,-1 +die i hate you prick you dint deserve a place here,-1 +hahahah suck quit your bitch in for once and grow some balls baby dodona was no whining douchebag like you ara and he get a second change coz he deserved it that s why now get the fuck and leave the admins alone they got work to do,-1 +u made ur damn personal attacks when u called me a vandal bud all i did was update it if u dun like how i write u can rewrite it but dont u damn go deleting shit without replacing it,-1 +the question is not whether it s art or pornography people the question is how far is that bat up the guy s ass,-1 +y hello thar you are one of the worst deletionist faggot s on wikipedia may your anus be penetrated by a wooden stake,-1 +shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up shut the fuck up,-1 +steve you re a fuck ing idiot who should be bludgeoned to death with a piece of rusty rebar your devotion to this article is nothing short of sick when did you start beating women i wonder if you ever get laid it will be a goddam miracle of nature if you re not a virgin i m the fuck ing pope the very fact that you speculate on how pleasurable it would be to fuck the orifice of someone whom you are violently assaulting makes me so sick that i would derive great pleasure in watching you get tortured to death christ wikipedia needs fuck heads like you like it needs another vandals why don t you quit wikipedia and do your high school homework instead you fuck ing retard,-1 +why don t you kiss my ass prick,-1 +removing cum stains from the faggot s that jack off here,-1 +fuck you go and buy some andrex and wipe your rats ass face delete as appropriate fuck you september utc,-1 +sitush is an ass hole die you dog,-1 +this bitch is a cunt,-1 +yea what a bunch of crap i like how whoever added the countries name didn t even use their formal names communist china and n korea oh bad guys,-1 +suck daa de,-1 +mongo i demand a clear and clean apology for this insult and you don t know me either you apologize or i whoop your ass p,-1 +i hope you leave this shit hole like that faggot did,-1 +listen up mofo dont fuck ing edit what i write you curry munchin sod take up you jerk off business elsewhere now son,-1 +for copying and pasting of what i felt strongly was an injustice my personal space bothered john reaves that much get off your high horse dick there s your incivility personal attack and blp ya know instead of memorizing those rules maybe you should find a girlfriend or just a friend yes endlessdan,-1 +fuck off my stuff bitch,-1 +fuck you blow it out your ass suck my fattie and kiss my ass ring you cunt,-1 +fuck you dave souza,-1 +yes that s because this article is basically the whole races don t exist omg bull shit that circulates in non scientific circles sociology is not a science,-1 +fuck you gwernol go suck wills cock,-1 +im gonna stick a shishka nigger in your yaway,-1 +from the lead onwards the page refers to chips as fries this is fuck dumb,-1 +it s definitely p l n s dear movses extremely sex,-1 +you fuck ing brainwashed vatnik retard s,-1 +i agree this guy is a piece of shit,-1 +i am jeske couriano and i suck grawp,-1 +pussy why is the term pussy inculded in the beginning of the article,-1 +fuck ing faggot ur a fuck ing faggot loser son of a bitch bold text bold text,-1 +he likely thinks that you re an idiot which you are,-1 +yeah no problem the international court of wikipedia panel of judges american teenagers can declare one of the th century s most prominent figures a mass murderer you know fuck all about anything,-1 +reverting for no reason i spent quite some time improving an article that was in a poor state now two people have undone all my work with a click of a button you didn t have the courtesy to explain why you reverted it but you still had the fuck ing cheek to accuse me of leaving an inaccurate edit summary no one s that stupid so you were plainly just out to provoke me well fuck ing well done consider me fuck ing provoked i guess you didn t even bother to look at the changes before you put all that shit back self arrest refers to various maneuvers employed in mountaineering it doesn t refer to that it is that you want to say paris refers to the capital city of france or nile refers to a river that flows into the mediterranean sliding down a snow or ice covered slope arrests stops the slide you think readers are too stupid to understand what arrests means in this context himself or herself you think the single word themselves is some how better expressed in three words and or ice axe you never bothered to read wp slash these potentially life saving techniques must be practiced frequently in order to maintain proficiency this website is called wikipedia not wikimanual but you never bothered to read wp not did you that s just the first five i made many more i left the article looking considerably better and more encyclopaedic but then you came along and fuck ed it all back up again do you feel proud still waiting for you to justify your risible claim of or also stop stalking and harassing eh,-1 +hello neo nazi please do so ban me from wikipedia i hate all nazi s neo nazi s or the nazi s that not aware of it it does not mean that your family background is from france or american indian american indian you are a fuck ing nazi a fascist bastard a racist a scumbag fuck you ass hole if you want i would give my fullname address or contact details whole my life i fought against fascists racists scumbag join the queue toxic waste of life,-1 +palestine will always be a state i don t want to here it any other way u fuck ing bitch,-1 +to be even clearer u iz a masturbate,-1 +editing some peoples on here are stupid idiot s and arrogant i know what i am doing and what i am editing i give them sources and reliable ones but they won t listen to the crap i give them these peoples are so bias i guess i rue they do give out false information,-1 +drmies is a fuck cking idiot,-1 +fuck you you are a pig,-1 +seriously who do you think you are for starters you are one ignorant prick who keeps reverting things to flawed information on the vancouver page it s because of dick weeds like you mrc that wikipedia isn t a trusted source so go suck one,-1 +fuck you pussy why dont you get out more i bet your contributions to wikipedia is your life s work and all you are qualified to do get a life pussy,-1 +thanks a lot ass hole you got me block you fuck ing ass hole,-1 +i am fuck ed your daddy shty atheist wre,-1 +dildo baggins come on be nice i spent anges on dildo and even added the humour header,-1 +mr rajchut donot bring chamars in saini discussion donot degrade any caste all indians are f by mohammedens there used to be a time whe muslims used to spit into hindus mouth after chewing paan muslims also used to sleep with rajput women now do not start crying,-1 +you undid my lucky charms page f uhk you it wa s constr u ct iv e y ou r th e bi gg f es t f got ever go fuck yourself,-1 +i i wanna fuck a dog in the ass,-1 +the national fat cunt prevention board my name is norman and i m from the fat cunt prevention board it has been brought to our attention that you are a fat cunt and i have been asked to investigate your case please contact me at penis lane penistown or you could fly out and visit me apparently you can now fly direct to penistown with penis airways from dublin airport anyway let me know if you are a fat cunt as if you are a fat cunt we need to murder you toodles,-1 +hi this klptyzm again i m a faggot who will never leave users alone and yes i m a stalker you re right sean and manny i need to stop being a faggot because i quite for good and i ll fuck my momma chat wit me contributions when will you stop being a jerk klptyzm maybe he is a changed man you don t know that,-1 +i had penile reduction surgery as for the rest i ve been measured by publications so much there s ruler ink on my cock enough already,-1 +abc tragedy and eduardo bours my wife s sister lost her daughter in the abc tragedy and you are trying to help cover up bours s involvement this man is a criminal of the highest degree and when i try to get the word out you revert my edits and threaten to ban me fuck you,-1 +trans lation wah wah re insert thumb suck,-1 +april fuck off you cunt you re a fuck ing piece of shit who needs to get laid in the ass,-1 +ah shut the fuck up he started it he put that on my page first but did you warn him no because you re a prick now you klptyzm and johnnyfog please die,-1 +i don t give a shit you people are a bunch of dictators eat shit,-1 +please stop being a penis and grow up regards,-1 +wow ya ll are smoking some crack then eh stop leaving kinky messages in my talk page ya sex ly harassing bitch ez,-1 +fuck off fuck off slanteye,-1 +fuk you fuck ed up sinhalese mother fuck ing ass hole s wanna suck my cock bitch ass jeyasinghe,-1 +you are a gay anti hindu bastard,-1 +dan please fuck off,-1 +you are a prat and my revenge will be sweet hahahahahaahahahahahahahahahahahahahahaha,-1 +haha after looking at your talk page its clear that you re a fuck ing idiot do you work for kraft foods or pfizer or something you should be banned from the internet for trying to spread lies you are a worthless human being and should be ashamed go eat some doritos moron,-1 +insulent fool how dare you block me i will return and you will not know it sladeakakevin forever p s u r major ass hole,-1 +so is being a wiki dick the blocks were removed and all of my not so pleasant posts have been in self defence nice distraction technique you wiki dicks use attack and then try to block who you attack when they respond in self defence bearing false witness against one s neighbor violates one of the commandments in other words you are a power abusing liar because there are no blocks on my two main ips looks like all you wiki dicks stick together picture that wiki dicks all stuck together for valentine s day hahhahhahahahhahahahahahahahahaha sorry you guys can t handle the truth maybe i ll stop maybe i won t hahahahhahahhahahahahahahahahahahahahahahahahahahahahahahaa fu,-1 +you are such a nigger,-1 +hey hey faggot are you dead yet or are you watching mom getting rape by filthy pigs which one is it,-1 +indeed which only confirms the old adage a million flies can t be wrong eat shit well i for one think i ll pass,-1 +a hem nigger nigger nigger nigger nigger nigger nigger thank you,-1 +oh ouch moreschi and ryanpostlethwaite fuck ing wankerish name i advise you find a nice boy and change your last name to match his you might like to consider that it s time you both admit you have fetishes for curry pussy,-1 +ah no i can do what i want and there s nothing that you can do by the way by what your picture looks like you look like a loser who has a lot of time on his hands you damn mother fuckerucker fuck in fudge packer,-1 +stupidhead dweeb how dare you say that scorpionman you foolbrained scumhead i hate your guts i hate you idiot head idiot you say nothing but sarcasm so i ll just sarcas your stupid brain everybody is right about you why don t you just go take your butt and dump it in a fire your brain never evolved from a rock nobody s did there s no control anywhere there s no point in anything ah ha ha ha ha ha ah ha ha ha ha ha ha,-1 +hey this guy is awesome ya kill the muslims and all that this bitch doesnt know what shes talking about haha thats awesome i wish i could have seen what you said,-1 +excuse me no fuck you,-1 +lol haha you fuck in loser wobbs yeah maybe i am epf not although he shares some views with me on race hes some dumb italian british mut from canada that actually annoys me i have used other accounts on here but with other anon accounts not as a registered user which is allowed by wikipedia since ip s change all the time hahaha wobbs you are a fool especially with how you place so much emphasis on those books recently released by sykes etc which are a minority opinion in the world of population geneticists and other researchers for your information racial reality isn t a neo nazi site you anarchist loser with no hope because your life is meaningless and you don t know anything on what you read about with these issues rr is a neutral point of view that seeks to refute neo nazi white supremacists multi racial race denier assimilationist biased opinions that influence works including the authors of those books you mentioned stick to being a pathetic lab assistant and get a life you fuck in tool and stop vandalizing pages and makin edits to suit your twisted opinons you fool hahaha wow do u accuse sock pupety of everyone who gets under you skin you douchebag,-1 +do you think you would find cum shot numa numa or ytmnd in britannica,-1 +yah i figured out pretty fast ass hole,-1 +hello scrapironiv where is you problem you mother fuck er i try to make this page better and you deleted all my changes go to hell you fuck ing mother fuck er,-1 +you are making things up a syou go along i have been warned for just a couple of the above also fuck off,-1 +you are a fuck wit tool,-1 +bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered,-1 +im watching you fag boy,-1 +as licking butt kissing face up jimbos ass butt kissing,-1 +bold textbuddy your so gay i know your name and im coming to find you you will die i will bend you over and rip your anus with my ginourmous cock you will bleed for days on end and you will enjoy it,-1 +fuck off and get a life pricks,-1 +hahahahahahaha owned take that bitch victory is mine,-1 +i can only assume that you are a horrible nigger yuck,-1 +why don t you fuck you self,-1 +m ss ontomars k please feel free to lick my hairy balls thank you,-1 +hey mel want my number i ll suck that geriatric cock of yours big man d yo like that huh i m a good girl with a tight ass and petite frame who needs to be taught a lesson,-1 +screw you josh the world needs ass hole s like me so it can keep on spinnin have a good one mother fuck er,-1 +ryanpostlethwaite i m not going to sit here and just blatantly make fun of what you do and who you are however i look at your picture and it s quite easy to see that you re an ugly little parasite as i browse through your insignificant pages on roger royle and harold gaba that must have taken hours to make and i know right then and there that you re a compulsive masturbator i look at all your wikipedia buddies and their comments concerning speedy deletions and harassment via wikipedia and i now understand why there are entire hospitals throughout the world that treat internet addictions so go ahead and suspend or block or w hate ver it is you people do to naughty wikipedia users because i could really careless you piece of shit,-1 +okay i ll stop if you can t see reason then that s not my fault you want to keep that crappy page up for a fraud and a loser who disparages good hard working pianists then go ahead i guess wikipedia really is going down the toilet so fuck ing sad to see,-1 +oh stuff it you dumb fuck,-1 +re july dont you fuck en talk like that to me the least you can do is tell me with out the profanity your mother fuck er get a life you low life and please ban me ill just ban you from my other computer lots of thanks fgaribay,-1 +marc mysterio w hate ver man this web site is a fuck ing joke a couple of guys that are not in the music business want to try to tell me or the author of these articles whats a valid chart and what isnt so do what you want but this site is far from a real encyclopedia since trolls fuck ing run it based on the deletion of those marc mysterio songs total bull shit,-1 +mad scientist u suck man,-1 +wtf what did i do female ejaculation is fuck ing gross,-1 +i want some damn answers now you imbeciles,-1 +rodeo song lyrics well it s below and i don t give a fuck got a heater in my truck and i m off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well here comes johnny with his pecker in his hand he s a one ball man and he s off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well it s below and i aint got a truck and i dont give a fuck cause i m off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well here comes johnny with his pecker in his hand he s a one ball man and he s off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk s get on my nerves rodeo song lyrics well it s below and i don t give a fuck got a heater in my truck and i m off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well here comes johnny with his pecker in his hand he s a one ball man and he s off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well it s below and i aint got a truck and i dont give a fuck cause i m off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well here comes johnny with his pecker in his hand he s a one ball man and he s off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk s get on my nerves rodeo song lyrics well it s below and i don t give a fuck got a heater in my truck and i m off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well here comes johnny with his pecker in his hand he s a one ball man and he s off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well it s below and i aint got a truck and i dont give a fuck cause i m off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well here comes johnny with his pecker in his hand he s a one ball man and he s off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk s get on my nerves rodeo song lyrics well it s below and i don t give a fuck got a heater in my truck and i m off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well here comes johnny with his pecker in his hand he s a one ball man and he s off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get off piss me off fuck in jerk get on my nerves well it s below and i aint got a truck and i dont give a fuck cause i m off to the rodeo and it s allemande left and allemande right come on ya fuck in dummy get your right step right get off the stage ya god damn goof get offne,-1 +best behaviour is a single http w ndubz com discography is the official fuck ing site of n dubz good enough you ignorant fuck ed up retard ed cunt s,-1 +because i am a bit off a faggot,-1 +you can shut the fuck up and kiss my ass bitch what the fuck are you talking about who are you talking about suck my dick your gay are tyou,-1 +unlike the ancient greeks the idiot who block me is a mongrel created by interbreeding with the turks just another greek fool who doesn t know shit,-1 +anal turds lololololololol,-1 +oh shit no is someone going to spank me now talk,-1 +who s ur uncle dick,-1 +masturbation jerk off your penis,-1 +stuffin hotdogs up your dirty ass feels good bro homokid joy all over,-1 +i will force you to eat dog poop it will be funny watching you gag and vomit with crap smeared all over your face,-1 +suck it asshats hurricane expert reconsiders global warming link prominent mit hurricane scientist kerry emanuel has publicly reversed his view regarding global warming s alleged impact on hurricanes the computer models are telling us something quite different from what nature seems to be telling us said emanuel whose views on hurricanes and global warming have been prominently cited by al gore and other promoters of climate change fear he told the new york times there are various interpretations possible the big increase in hurricane power over the past years or so may not have much to do with global warming or the models are simply not faithfully reproducing what nature is doing hard to know which to believe yet in a few weeks before hurricane katrina struck new orleans emmanuel asserted in a paper that he had found statistical evidence linking rising hurricane energy and global warming his conversion is a very important new development in the climate debate said marc morano a top aide to climate change skeptic sen james inhofe r okla first turned out to be the tipping point for global warming fears and appears to be the year of vindication for skeptics as many prominent scientists reverse their climate views more and more skeptical scientists speak out and new data debunks man made climate fears now another major scientist reconsiders his views on a significant aspect of man made climate fears,-1 +i dont give a flying fuck if youre nice or not that is completely irrelvant take your admin powers and stick them up your ass you fool you are entirely ignorant of the aramic language and its history so i suggest you get off your high horse you mongrel if you had any knowledge of the language which you clearly dont you would have not done this chaldeans are relgious group that speak arabic i attend a chaldean church and we never speak neo armaic the vast majoirty of the churches speak arabic with very few almost none existent neo aramaic words,-1 +the most annoying fuck ing idiot ever,-1 +hi shelby tell your boyfriend to go to hell ok shelby,-1 +fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you fuck you f uu c kk you f u,-1 +yo bitch you think you can get rid of me im black,-1 +prospider is a fag,-1 +about trina what the hell going on with trina wikipedia pages that shit looks like crap,-1 +that fatass chink from oz phanatical is ruining the reputation of your art that loser has no life and he wants to ruin your art mother fuck er,-1 +ricky talk must be investigated right fuck kin now this profile has protected bermender since day fuck kin one,-1 +go fuck yourself it s as simple as that i have a proxy server with access to over domains so i will continue editing wikipedia,-1 +you bitch ass trick your fat ass is full of dog shit commie loving lying bastard o chink,-1 +fuck u if you our gonna make a list make sure you include all of them so don t change my shit again you ain t from the coast put all rapper or move on,-1 +gay everyone is e mailing me about deep shadow and you gay or straight like two lovebirds how sweet who are you darre loser gay ass bastard die die die commit suicide you jerk loser mother fuck er block me ya block me you big jerk too scared to fight ur gonna block me ust dont wanna fight do you come i live in maryland i hate darrenhusted,-1 +whoops what you block me from editting damn oh wait nevermind you re just an idiot p s i m not a person i m a reminder,-1 +i give up thanks for ruining the lion king pages go ahead it fuck it up some more,-1 +life insurance don t fuck with them or you wont live long,-1 +agreed just everything about is suspect and just lol how so many fuck ing chinese users have it on their watchlist i seriously can t do shit without somebody undoing my changes it stays for now i m planning on doing massive rewrites on the whole thing per cydevil,-1 +eddits who the fuck are you to be reversing my eddits and such mind your own fuck ing business jerk,-1 +you suck you suck you suck you suck you suck you suck you suck,-1 +no i m not gone hahahahahahahaha but not editing at the university anymore bitch es,-1 +nuke sweden go probe urself with an ass probe fuck head,-1 +saying don t be snitty is not a personal attack it is a defense from your personal attack against me now me telling you that you are a pussy and need to grow some balls now that is a personal attack i hope you enjoy it as much i did,-1 +you were right to replace the content shanghai pride is for faggot s,-1 +nice job defending nazi s do you like defending nazi s if you can read you d learn that what i added is sourced typical nazi first you try to exterminate jew s then you make up lies about them if i could i d kill every single one of you pieces of shit,-1 +go fuck yourself stop sending me harrassing messages about edits i never made on pages i ve never visited stay away from me,-1 +aslo i learned a fact about harriet because i use to chill with her and she was a whore because she wanted to suck every guys dick for cents,-1 +i m not going to respond to queries which don t understand the material they are referring to pf haha your both stupid but at least globe doesn t take the time to write the stupid shit that wobbs has hahahahaha,-1 +suck my dick first maybe then i ll consider what you have to say,-1 +yo wuhwuzdat u a bitch wit no life yeah u heard me u a bitch fuck u mother fuck a,-1 +lol hehe bj means blow job lol,-1 +fuck you how dare you revert me edit,-1 +stop changon it fuck en morons he am runnen in so stop workon for fuck on jeorge bush and stop changon the page and you stop beon mene to me my name am jassel mubedian and i am from the war in iraq and you stop changon the cunt rey and the page so stop also,-1 +yadavs are kshatriyas wht the hell happend to previous stuff written in the wiki which well defined yadavs know some anti yadavs have edited the stuff and added whole new crap mentoning yadavs as shudras is funny shit some fuck in moron must hv done this,-1 +block is it true jean latore pimped your ass hole out to some trannys on the streets of brazil lol thats too funny,-1 +you re a jerk mark recchi definitely dropped an f bomb on nbc and taught be the bad word that i never heard before fuck ing right you re a jerk for removing history from the page you suck you jerk,-1 +id rather be a vandal than a snot nosed little shit like you,-1 +just dropping by to let you know that you re a cock suck ing faggot the fortyfive,-1 +ronald mcdonald is gay and he has a fart fetish ronald mcdonald is going to rape you in the ass with his massive penis and then he is going to fart on your face because he is gay,-1 +same time and then made fun of my little dick,-1 +dude why do you fuck ing delete my shit when i didn t fuck ing do anything to you retard,-1 +what i can t believe this was linked to the front page in it s present grammatical condition the article says at all costs several times in the first two paragraphs alone and as for this construction the hunger plan may have being planned almost as soon english mutha focker do you speak it,-1 +this article suck s this is precisely what wikipedia should not be this is the kind of thing that will appear in sensationalistic news reports and blonde blow dried commentators will ask school board officials to comment on what crap,-1 +who am i harrasing who am i personally attacking i said dumb asses in general and i didnt named nobody specifically a dumb ass so i dont think i should be warned for nothing the truth is that a small group of people over here took over the dominican republic article and now want to do wat they feel like it with it but is not going to happen,-1 +this is a personal attack youre a fuck ing bitch suck my fuck ing dick you fuck ing ass clown get a life and quit reading my shit bitch personal attack wolfgirlhellahairy ps fuck you,-1 +hi nerd would you please explain why what i wrote is disruptive but akbar is also the ai personality of india in the renowned game age of empires i the asian dynasties are you gonna tell me that age of empires i is more culturally relevant than matt groening or this in kunal basu s the miniaturist the story revolves around a young painter during akbar s time who paints his own version of the akbarnama none of that is cited it is much less relevant than akbar and jeff is how do i insert the akbar and jeff reference without getting a million angry nerds on my ass,-1 +sorry i looked at the wrong diff and thought the ip was back adding shit,-1 +do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because you are a fggt do i know you because,-1 +mother fuck ing inbreed pieces of shit,-1 +then you re just as stupid as the blithering retard currently sitting upon the stolen presidency you bag of dog shit i hope you get hit by a drunk driver,-1 +wow you deleted my comment dumb ass,-1 +for being a massive faggot,-1 +hey are you member of non scientific group perhaps you have access to same polish english russion jew ish german czech newspapers from the end of the war and can find further sources for this information about the galicia and malopolska wschodnia killings massacres of polish russion czech by ukrainian bands occurred in many towns after the end of the war fuck of nazi,-1 +refactoring do not refactor my comments again you have been in dispute with me in the past and perhaps you don t like me but you have no business mucking about with what i have ot say if you object to any of my comments feel free to bring them up at the appropriate noticeboard but do not fuck with them again thanks,-1 +i hope you die you fuck ing pedophile i gave your details to some friends in the middle east and they were very angry about you and said they might pay you a visit,-1 +sikh history gezzaa user sikh history wiki pedia full on shit surinder shinda sukshinder shinda is shinda surname not other surnames shinda is shinda ramgarhia surname user sikh history you talk shit,-1 +you have no right for your racist block syrthiss iguarantee that jimbo will hear about this and you shal be punished accordingly white hoods like you dont belong in wiki your cyberlynching days r over you racist jerk,-1 +your mom is so fat she gets cashback when she orders at burger king your mom is so upper middle class that she doesn t recycle floss your moms fat cunt is so juicy when i crammed my huge cock into it she said thanks d dick ucker d,-1 +twat you re a fuck ing cunt,-1 +hey d hey d fuck you i m not disruptively editing at all you re just mad at me since we have different viewpoints,-1 +get off my fuck ing back you god damn little indian retard get off my fuck ing back you god damn little indian retard go and bully around someone else and you can shove up your spi up you indian ass,-1 +i dont think that this person knows what they are talkin about because he sounds like he is in blank he doesnt have any clue what the soviet union is and i just have to say fuck all yall,-1 +hello you disgusting trans sex you are a grotesque blight upon the earth please kill yourself,-1 +go fuck yourself how is this unconstructive you annoying cunt,-1 +giant snowman is an arsehole an involved arsehole at that he is heavily involved take my talk page access away you idiot englishman,-1 +plato most definitely wasn t any sort of communist so i have no problem removing all references to the proto fascist bastard who wanted to systematically lie to the population and also remove art from his republic fuck you,-1 +you did make a mistake i think i know more about ciara bravo than you do so why dont you just fuck off im not fuck in playing ill fuck you up,-1 +tell you what just forget it forget i ever existed i really can t be bothered with this bull shit somebody comes tramping in starts hackand slash editing a sensitive article wielding his mighty pov as the only possible truth labels everyone who disagrees as trolls and somehow this is ok he boasts of his massive donations to wikipedia well if he s donated good on him but that shouldn t mean he should be able to make edits willy nilly look at his fuck ing edit history for christ s sake the people he s not trying to get banned he s trying to drive away just rename it merkeypedia and be done with it i have a bunch of stuff i was going to post that s utterly non related to cherokees or anything mr merkey would even consider interesting if i get round to it maybe i ll bother to log in as an anon once my ip has changed and upload it if not well i won t no great loss wp has lived without my edits until now ad will continue to live without them tomorrow pissed off rant,-1 +scat bdsm hi i was wondering if faggot s as large as you participate in these sex practices as apart of your regular daily routine,-1 +excuse me don t be deleteing my stuff llike something is wrong with you i post what i please good lord i come on here passing on info that i heard on the news and folk telling me it s a hoax little snobby ass people around here,-1 +fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you fack you,-1 +chynks cock ass ya umm hello you goth raghead chynk slyin eyed son of a bitch remember me ya chrome dome bastard,-1 +kiss my ass jehochman i have many ip s have fun,-1 +what the fuck is your problem writing a response on my talk page is not vandalism leave me the fuck alone you fuck ing stalkers,-1 +vandalize wtf are you talking about for one i have not vandalized a single word in the ps article i am going to buy a ps hopefully in march feb alright with that beeing said i don t want to even think about accusing me ever again is that understood boy,-1 +this is your last warning if you continue to make personal attacks you will be block for disruption this is your last warning if you continue to make personal attacks you will be block for disruption yea yea yea i get it u got all ur nerd skillz and can block me well i got something to say suck it bitch and get a hobby,-1 +see i refuse to kiss ass because nobody on here is better than me as a matter of fact im better than everyone else on here,-1 +who do you think you are who died and made you king of other people s talk pages guy or is it just that you re so far up jimbo s ass after all you were his digital wingman a couple of nights before he went to bang marsden weren t you that you ve lost all sight of what it means to be a man who stands on his own two feet you are a disgusting thing chapman just reprehensible c f d a a bec,-1 +me again perhaps for the last time i am fuck ing furious about tony s block earlier today and the admin cabal s refusal to face up to its dishonesty i m also furiuous that i ve been threatened and bullied by admin kiddies since then because i supported tony and spoke out against his block what is the fuck ing point in this project is it just to give kiddie s something to write on their school applications i am an administrator on wikipedia,-1 +blow it out of your ass you stupid piece of shit,-1 +he also has a problem with his left eye so he wears an eyepatch or sunglasses but it s okay cause he is samuel mother fuck ing jackson semi protected edit request on may the middle name is not correct his actual middle name is mother fuck er example i was watching agents of shield last night and then who should appear samuel mother fuck ing l jackson,-1 +fuck you i hope you die mother fuck er,-1 +hahahaha i fuck ing win,-1 +you re a fuck ing moron please kill yourself you are a cancerous moron devoid of all intelligence and have no business editing wikipedia or having any privileges thereof i demand that you restore my userpages in full removing any copyright infringement contained within mate,-1 +oh bitch just butt in why don t you,-1 +what the hell stupid robots i didn t do anything,-1 +go to hell you ignorant ass hole,-1 +it s self evident that it s unnecessary stupid and adds nothing like yourself,-1 +i already am banned so what ya gonna do now ass hole,-1 +you re my hero go fuck yourself you fuck ing boyscout,-1 +gogo blows man s thick cock then gets on all four for fuck from behind like a little bitch in heat,-1 +come on fag report me,-1 +fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you all fuck you,-1 +aww fuck it there s already so much hurt in this world let s be friends,-1 +you are a slurgnog dumb dip piece of mush foggart,-1 +why are you such a homo cum guzzler why do you insist on being a cum guzzler,-1 +who the hell are you you know nothing kid your just a gma fanatic,-1 +hahahahahahahahahahahahahaha your signature is bull shit hahahahahahahahahahahahahahahaha,-1 +your a fuck ing jew all jew s do is wine wine wine all they want is money and power they hide there fuck ing jew gold and act poor so they can get more money for the pussy s who feel bad for poor people,-1 +cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick cline is a fuck ing twat john cline is gay he suck s dick,-1 +why did you alter my message and you re calling me an arrogant ignorant ass look at yourself i wrote that it s a progress not it s is a progress or what ever you altered it to and even if it s your native language it doesn t necessarily mean that you use it better than nonnative english speakers i still see errors in your message at least use i and not i and again what is the point of unnecessarily adding cum leave and you re seriously just trying to argue about it doubting my own understanding of hebrew and the circumstances of the title again once again i m telling you the reasons in hebrew ligmor that s the gerund gomrot is a feminine present progressive or simple form means either to finish or to cum cum is obviously some sort of a slang word but that s what cum and gomrot is a word and its meaning because the show is about sex their intentions for the tile are obvious if you insistingly want that i can put both finish leave and cum leave to show its double meaning,-1 +hey fuck you that information was true and i don t see how it s any less relevant than anything else in the section why d you delete it dip shit,-1 +oh dear how frightening it takes all of ten seconds to get another ip address ass hole,-1 +has a massive stick wedged firmly in his gaping ass crack and it s making him a little bit cranky,-1 +suck my dick fuck stick,-1 +fuck you ass hole geku,-1 +see you in two days hahahaha you protect that jew fag gabe what a fuck ing pussy you are we will be back in two days to drive that little bitch out for good,-1 +what a lying bitch look at this shyt http w breitbart com big government exclusive video shows elizabeth warren telling tall tale of composite grandmother http w breitbart com big government exclusive eloped elizabeth warren parents married in religious ceremony this is a twofer irrefutable proof that she s a liar and it comes from breitbart which may piss off the liberals that control wikipedia even more than the slowly dawning realization that their candidate is melting down before their very eyes in the flames of her own prevarications first martha kookley now poccadishonest is scott brown blessed or what bahaha,-1 +you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck,-1 +fuck off seriously you tosser have you nothing better to do,-1 +ban me hello could you ban me i m the fuck er you threatened with contacting my provider telenet so how is that going so ban me again idiot,-1 +unblock thank you for a reasonable fuck ing comment the only user in any area who has actually made one ebyabe made comments which appear to be reasonable at first glance but are actually unreasonable because one is fraudulent and the other was untrue regarding a place where she could see that it was untrue well a sort of reasonable comment anyway because he claims that i am being confrontational when it is clearly visible at my talk page that other users are attacking me and not the other way around i have not caused any confrontation i have replied to other users who are putting a confrontation to me i did ask how to report a user but i did not actually report him because nobody answered regardless of several posts made and the user himself did not comment there so that was not a confrontation like it would have been if i d been able to make the report i would like to leave a message at this user user stwalkerster s talk page but i cannot because for some reason those are block to so i have to do it this way instead hopefully he has the notifications turned on tags of username i can be calm and work with other people this is noted in my first reply where it gives several examples of how users should have had discussion instead of attacking and reverting me and arguing hostilely on my talk page users who wish to work with me should not make attacks write words like compliance revert edits when they could have further fixed the edit instead details of referred to edits in a separate paragraph below make false claims against me or delete my replies on discussion pages not talk pages and then archive it after removing them users should not do these kinds of things to anyone what this means is that if users act in a reasonable manner then a normal discussion can ensue including from myself merely because someone has used a template written a shorter reply or wrote their aggressive confrontational remarks in a business style manner does not mean that they are being reasonable or writing nicely when someone makes a falsified report about you or writes a falsified comment etc it is not reasonable to expect the victim to reply without mentioning this or to want to be friends with the attacker if the other people are being reasonable then of course i am going to reply to them in a different way editing an article by below is not reasonable nor is ganging up the discussion page nor is replying in several places at once etc how can replying to other users stating bad and or false things about you be confrontational i have mentioned several times about having an actual discussion but no one did this and instead just kept replying on my talk pages the fact that i mentioned having a discussion indicates that i think reasonable discussion is the right or reasonable way to do it just no one wanted to do anything but attack me so i did not have another way the headlines are not veiled they are in plain light it was not any attempt to be hidden for headline i literally do or did not know of a different way to title this headline which is not an attack on myself for headline it is truthful and the falsification was blatant by ebyabe and i actually expected her to edit it to something on her next message i mean she directly mentions it edit summary says a reason but her message says differently directly not implied for this headline it is not a personal attack because it is true and evident administrator complains about my signature even though signature has been changed and messages by me since posted before the block happened as well as direct linking to comments which contain no personal attacks as a reason for personal attacks if the titles were untrue they would be attacks but since they are true unambiguously then they can t be attacks the last headline yes somewhat motivated hostile because he is the one put an useless headline so that there s two at once after my notice is up while also writing the things that show the actual tyranny a word used in this case solely because it is already being talked about and not meant as any attack instigation hostile etc although the link by jamie appears to say something about political opinions if someone is making false claims then it is appropriate for them to be exposed so as you can see my intents are to be reasonable and normal with the possible exception of this particular headline and repeatedly asking other people to do this but being annoyed by all their attacks and false remarks as well edits in a separate paragraph so that reading it is optional users working with me should not revert edits when they could have further fixed the edit instead instead of reverting multiple times attacking and then harassing the use,-1 +the quote that you tried to preserve said that all americans have incest the real quote does not get over it it s in the history theres nothing to argue about you are an idiot you were wrong you got burned now go fuck your mother picture it your cousin i have a shit list right now it has admin on it you are very close to being on it basically i am handicapped i have a lot of free time and i have isps all with free connection i wonder how many ranges that is you want to continue to try to bully me i will undo every goddamn thing you do for the next two months cock suck go bull someone else you wont like it if you keep trying to fuck with me trust me go fuck yourself your cousin,-1 +yup go fuck yourself lfdder,-1 +and your little faggot boy propol pray pray little wonk that i don t find your little ass and kill you,-1 +vandalism only a cunt would have classed my edit as vandalism,-1 +stop your propaganda on getting me block form here and ruining srk related pages did you see me mess with your salman pages or do you want me to mess with them relax i wont coz i dont hate salman or aamir whoever stan you are and i am not so full of shit like you,-1 +fuck you cunt contact whomever the fuck you want,-1 +it is a constructive edit you idiot every kid of every age should know that santa claus is fuck ing fictional ever since i first heard of santa claus i knew that he was fictional my parents didn t give me any delusions and if they had i would ve laughed in their faces and said it isn t logical because it fuck ing isn t every kid should be logical just like i was and every kid should be able to logically fuck ing infer that there is no fuck ing santa claus in the real human universe,-1 +dreadstar littlemountain and some jerk on the internet are retard ed ass hole s dreadstar is a pathetic nerdy little fuck with no prospects for ever meeting a woman he didn t pay for littlemountain doesn t have to worry about it because he s a flaming fag with an insatiable lust for semen some jerk on the internet is just a sorry piece of shit in general and if he keeps editing my page i m going to find his house and fuck ing shoot him in the face,-1 +bull shit unblock now or im gonna fuck about with wikipedia so much and stop bein dick i jus wanna use the reference desk ffs no need for this bull shit,-1 +fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me,-1 +for fuck s sake kill the fuck ing shit head already,-1 +pedofile you are one i hope you and your family get cancer please god give this terrible pedofile ronz cancer i hope you your family and anyone you ever love gets cancer and dies fuck you fagget do you have a job why are u always so fast to edit shit i bet you live in a fuck ing basement apartment in some fuck ing ghetto fuck you fagget go and die i pray you get cancer,-1 +i ll leave you alone when you levae me and my talk page alone you white fuck,-1 +list of festivals in pakistan hello deb i want to say that what the hell are you mother fuck er boy why you creat an existing topic of list of festivals in pakistan by your article in pakistan do you want to married your sister with me or your mother had been fuck by dogs warningif you are child of one father then try to block my account and delete my article now user talk smsarmad,-1 +what now bitch ha fuck you,-1 +oh mr badass faggot blocking people on wikipedia dude go fuck a girl instead of being on da computer all day,-1 +now you all know damn well my article on ninjas was just as factual and more entertaining than that crock of shit they had come on now robert hamburger,-1 +removed the statement it would be obvious from the specifics i mentioned that i have read the article so in response to your blatant insult fuck you too,-1 +dick cheese sounds more fitting for you i don t waste my time with games you crazy canuck subwayjack,-1 +fuck off i will continue to edit small things as i see them you fuck ing wiki nazi s are why wikipedia s editing community is falling to pieces,-1 +you are a chicken shit cock suck ing pussy bastard,-1 +bitch nobody cares about your myspace you ugly as fuck anyways begging on wikipedia for myspace friends you gay as hell,-1 +y all sounds like one o them terrorists what killed my pa go back to yer own shit hole country and git off mah internets,-1 +apologies apparently you aren t too fond of my most recent contribution in which i referred to you as a cunt this word was admittedly a touch too strong i hereby downgrade my insult to the more apt douche sack,-1 +oh no you don t fuck,-1 +did i mention fuck you geek ass hole s just checking,-1 +fuck you fuck everyone on this site you are all fuck ing gay tossers,-1 +kiss u i missed u u girl what so now they say i m anti pole lol that s like discussing magnetism bitch u fight with everyone u love the vandal u can t live without him i m here now feed me maybe i ll make u happy later on what i don t get anything say something i love the way u smile i love the way u drive i love the way you be the one to me i love i m singing if u didnt get it bitch,-1 +hell nah yo iono wat u talkin bout i fixed jibbs page cause someone else waz sayin fake shit bouthim so dont start wit me or we will have problems,-1 +you you stupid bitch,-1 +my how politically correct you are i don t think those suffering from hunnington disease are particularly concerned with the appropriate placement of an apostrophe p s go fuck yourself in your gramatically consipated ass hole,-1 +charles knight is an ass king i have proof,-1 +no suck my cock ass hole i will never stop,-1 +i still think that this will totaly fuck up the page your help suck s and you dont deserve those bannersgold dragon,-1 +robotic articleness you re a fuck ing piece of shit,-1 +you cunt,-1 +rubbsih twat hi you have removed a link to a youtube video several hundred times now why the hell are you doing it other than because you are an utter moron rogerjowett,-1 +objectivism hey walter dont you remember me i am your husband you cant be objective in some cases because you are gay i will fucxk in the axss user walter g rlitz you will be my eunuxch user walter g rlitz is gxay and he is afraid to tell people so i do,-1 +you re an ass hole,-1 +wow go suuck my cock you little f ckers,-1 +i forgot to mention the even sadder cunt that is,-1 +you re not an admin so shut the fuck up faggot,-1 +i don t give a flying fuck about wiki and i am sure telling you that will get another of your petty bans my fiancee has maybe another year of life before she is murdered it may be you are another self important wiki masturbator or you are part of the conspiracy to have her isolated and murdered who gives a fuck what you wankers decide it s only wiki now piss off and go edit model railways or w hate ver else you do you disgusting little creep,-1 +hey cambridgebayweather quit being suck a fuck ing homo and get a fuck ing life instead of just sitting around and making sure nobody fuck s with wikipedia fuck you and quit editing my page you fuck ing homo mother fuck er,-1 +the jobsworths are now satisfied you fuck ing prima donna,-1 +i want to be a fuck you that s a song,-1 +utc and fundamental christains are not as vehement go f yourself march,-1 +you are a complete idiot i didn t create this account just for promotion thought i could actually start editing wikipedia articles since i find so many that are complete useless when i do google searches but thanks for being a complete idiot the only warning i should be getting is for personal attacks against your stupidity you pissed me off and now its gonna suck for you,-1 +u suck cock u idiot s,-1 +faggs why dont you make a fuck ing character article,-1 +junior barranquilla wtf where did you come up with that name should we call real madrid royal madrid pleasse revert don t come up with that made up bull shit atl tico junior,-1 +better take a break from wikipedia and delete your sockpuppets and tell your admin friends to fuck off,-1 +fuck you roger swivel talk,-1 +did you see what someone wrote frank lampard a fat bastard how can they do that i hate some players too but i still respect them,-1 +that s it i m the one block for personal attack holy shit i knew wikipedia had a second face but not to the point where senior editors can push the relativly new around once i m un block i m done fuck this shit january utc,-1 +are you gonna cry and tell wikipedia suck it up loser,-1 +neither of those is a personal attack the first you refer to i repeat exactly what is said above calling the person a vandal which is exactly what they are i d say you are launching personal attacks upon me by claiming that i am attacking these people and spamming me with the no personal attacks template want a personal attack fuck you you suck cock how is that for a personal attack the user on wikipedia named all star is a criminal who is wanted in states for rape of children there s another personal attack there you go and here i go off to reset my router so that i am assigned a new dynamic ip and should you decide to block my subnet for a few days again i ll just pop onto an open proxy frankly you should stop being a fuck ing idiot with your warnings when i m telling a spammer on wikipedia that his efforts have had a negative effect fuck you your efforts have now had a negative effect i m off on a vandal spree using anon proxies for a bit enjoy,-1 +i m sorry i am sorry that i was an ass to you on this site sorry for vandalizing your pages and making death threats i just do not like sure os it was quite rude of me i will not do it again thanks for your time and please do not see this apology as vandalism,-1 +but feel free to abuse my year old fag ass,-1 +nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipple nipp,-1 +shut the up,-1 +read the f kn comment as to why i could not post there it will not allow ip s to comment the filter is busted and it will not even allow ip s to report it as busted i spelled that out clearly how the hell did u miss that i also noticed you did nothing to the expirenced editor who is making frivolous complaints and not notifying those involved lightbreather did however attempt to get some help on another editors page and also is attempting to silence other editors to continue dominating the articles again read the contributions and it readily apparent what a waste of my damn time wikipedia is done it has become nothing but a bunch of leftist government assistance types trying to spin the whole project to fit their view with an occassional right wing nut thrown in for some fun for the libtards most conservatives are to busy busting their ass es supporting these left wing nuts and social rejects to give a shit about it lmfao at wikipedia,-1 +dont give a fuck russian murdering filth,-1 +fuck you this is true what i am writing so fuck yourself,-1 +mover fuck er why the hell did you block oliver hacker pro imbisil,-1 +fuck veritas this school suck s dick,-1 +blow it out your ass neiln fuck ing nazi,-1 +i really did shit my pants why did you erase that it was factual,-1 +dude the admins here are ass when it comes to info that they think is irrelevant i feel you,-1 +you re a fuck ing moron go read the notability guidelines,-1 +i always find it hard to know what to do in cases like this basically it looks like he is acting like a bit of a dick but it s difficult to say that there is anything you can do at this stage until the stalking gets worse talk,-1 +what kind of a stupid name is bongwarrior anyway prick,-1 +i hope they aren t breaking up for good because that would suck there my favorite band ever,-1 +thanks for blocking me i called tao an idiot and a dumb bastard because i truly belive he she is one you have these rules to prevent harassment fine i was just doing it for fun got it out of my system i ll quit now however you should seriously consider a ndb lp rule or no dumb bastard s and lazy people wikipedia is currently a laughing stock a punchline to a joke the reason is that it facilitates lazy people like tao if you read the entire entry my intention is to improve the page i provide sources i provide a sound argument i provide what s necessary to provide in circumstances like this in order to improve the page what does tao provide nothing he clearly has not read the page he clearly does not know the subject and he clearly is uninterested in doing what needs to be done in circumstances like this making valid claims supported with evidence true i don t take wikipedia seriously but i believe in its potential i wouldn t do anything that i believe harms it in a substantial way tao on the other hand is an insidious virus who does little but undermine the value of wikipedia in a just world he would be the one being block this is not a genuine appeal against being block because i m the one who asked for it this is an appeal for you to actually read the conversation read my swear filled diatribe as me antagonizing someone who is genuinely very very very lazy in what he is doing how long did it take to get me block after i even begged and taunted please tell me of the two of us who really should be block of the two of us who is doing the most harm thank you,-1 +stop being an ass hole and suggesting unwarranted punishments i have made positive contributions to wikipedia,-1 +one more question hey sir that page is a hella of a proffessional looking biography now just get off my dick seriously mother im trying hard here to do what is recommended and all but cmon man go on someone elses page and get a fuck ing life i am featured on band mix myspace facebook page google profiles have a website and linked as much as i can you gotta admit for the first post i ever did it came out alright if you could help me though i dont want the top to say user josheastman jo i want it just to be jo,-1 +blah blah blah cry me a river go suck a prick,-1 +we dont cares about you is a fuck ing shit bitch,-1 +well velikovsky is for shit but rohl tries to put together a chronology from scratch that actually fits the available data much unlike the conventional chronology,-1 +go to hell as i said my school has well over pc s so you can block it you muther fuck ing gay wankers who s moms lick nuts,-1 +you stupid piece of shit please take the time to read my contributions on the kabyle people article and let s discuss them as civilized people in here,-1 +i don t like you you are an idiot,-1 +phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt phuq off you knob of cheese salt,-1 +fuck ing fite me why did you edit my page youre a top class tallywacker i saw your nan in lidl,-1 +ok your site already fuck ed so i cant fuck it up no more fuck as nigger,-1 +fuck it wikipedia is fascism i would be better without it and it would be better without me the admin request was a farce i am just pissing people off to see how it feels and letting us know that i have no place here i have another account which i have made extensive numbers of construtive edits on including an fa i refuse to disclose this account or the information i have been loading from it but let s just say its record is much better cause i don t interact with people on it wikipedia is not a productive place i am no longer a productive editor i would like to request my real name not be used as a future note aside from that i say fuck it,-1 +in particular the repeated use of the f word by a male editor at a woman editor should not be tolerated exhibit a nothing false about that realy anyhow i fuck ing reinstated one lost comment of yours and you might not be aware of but wp is not censored so my fuck ing remark is covered and allowed by policy and you have to deal with it but enough now i m getting too attached just like you although it s still a long way for me and i still didn t had dinner and have to expect my punishment for that later so bye the magnificent clean keeper talk,-1 +you dirty old bastard,-1 +arse you fuck ing prick fuck off,-1 +fuck you too bad ill turn my router on and off right after this edit so i dont even have to fuck ing see your response and vandalise your page all over again,-1 +this is internet so isn t a personal attack i don t know who the hell you are also twat i should have free speech you can ban this ip address but i ll only get another one what s the point bloody hell if i can t say what the hell i like in my own user page there is something wrong here go die you wiki lover you re against free speech and freedom of expression this makes you a nazi fuck with a small pencil you massive bell i can cite that as well arse,-1 +please put it in my ass i enjoy black dick up there,-1 +hey ass hole how about you let the ass hole respond to my question before you decide to take it down your a cunt do u have some wiki god complex calm down its just a website stop going crazy when someone edits something you dont like last i checked i was in my own right to express my point of view and not have a prick like u revoke it before its heard so go fuck off and if i get banned for this i hope u die u stupid bastard you dont own wiki u dont run it you are nothing so realize it and just kill yourself,-1 +suck cock you do you do jun utc,-1 +this article takes ninjutsu too seriously its fuck ing fake get over it some guy claimed to be taught by some nomad like figure is the basis for this entire school of martial arts that isnt even effective is real combat when was the last time a ninja won a no rules tournament with the fluke win exception of ufc i cant remember any also you dick going to ninja schools should learn a real martial art like brazilian jujitsu,-1 +fuck you cunnywafts d,-1 +w hate ver w hate ver you fuck ing ass hole anyways my teachers and friends tell me wickipedia is totally unreliable for anything most of the information is total garbage besides i don t even care if you block me because it is pointless so keep on poisoning people s minds with false information bye you bitch,-1 +now remove it from your site now you damned thieves,-1 +pikachu opened up wide and filled with semen from a large phallus hj mitchell gets turned on by page move logs,-1 +and since so many people seem interested i m watching the braves game bored my fuck buddy is busy seeing the incredible hulk with her dad and i want to edit cameron worrell that s why i m asking for it to be shortened that and it s really not deserved as pats has already explained at length i ll deal with it but pats is on the money when he points out that i was banned more for my past than anything done lately i haven t asked pats to say anything on my behalf and i actually told him it wasn t worth the trouble but he s right nonetheless so that s that holla,-1 +oh stop whining you smelly little turd we know that you are the real wikipedia serial vandal here oh and you have missed about two thirds of the editing attacks on you by our team come on they feel unappreciated add them to teh runt shit list and we guarantee that we will be escalating and you should keep you eye on other non wikipedia web sites as well rance to gallows now,-1 +you first piss off a user and then pretend to advise that user on how detrimental being pissed off is wow i m so pissed i m so i m so fuck off pig now that was quite polite of me you got to admit it or was it not good enough for sophisticated ears of an average warmongering anglo serb freemason who thinks everyone is buying his bull shit lol,-1 +no maybe you should get a life instead of being like a shot to revert my vandalism on a page relating to a game nobody has talked about in the last two years wiki made you their bitch,-1 +user syrthiss is a mot her fuck ker assh ole ha ha ha,-1 +your attitude i don t like your fuck ing attitude first you come across me uploading a picture that was not being used and report it now you can t even say sorry you re a fuck ing loser,-1 +helly jimmy well fuck you according to wikipedia talk no legal threats people shouldn t say to one another what you do is supporting terrorism and you should be judged front of law on the other hand we can say fuck you and the punishment for that is only two weeks well it s okay for me to get away from wikipedia for two weeks and i m willing to curse to you fuck you jimmy wales your stupid eye showing video about begging money for wikipedia was stupidest thing i have ever seen once again fuck you fuck you and fuck you now go ahead with your wikilobbying idiot members and have fun i just wanted to get this out and get my wikipedia legal two week ban fuck you you dumb idiot p s this is not vandalism this is just a comment another fuck you to whoever tries to delete this,-1 +eurovision is gay cuz of old shit eadtern block countries y dpnt they fuck off,-1 +removing my edits you are a fuck ing bastard there was no reason to remove what i added to the great intelligence and list of doctor who villians pages you stuck up arsehole can you understand what this means i think i ve simplified it enough for a dullard like you i you still struggle to understand i suggest you return to the yank equivalent of playgroup and restart your education my additions were relevant there is no reason not to include things not from the tv doctor who is also a radio series many novels play etc stop editing doctor who articles you don t know anything about the show thick stuck up prick,-1 +i just feel that it shouldn t be a fuck ing adjective is that too much to ask there aren t any adjective titles in wikipedia they are all disambiguation pages i made it into a disambiguation page and moved it to a reasonable title and you got an admin to delete it like wtf,-1 +the fact is that perez hilton is a fat gay bitch that is all omg youre being intolerant to us gay s on wikipedia wow eff u,-1 +wiki nazi don t tell me to stay cool you are an ass hole,-1 +fat bastard you are fat and i don t care if i am block because wikipedia admins rape babies,-1 +fuck ing virgin fuck go fuck yourself geek ps you have an average sized penis at best,-1 +what a bunch of bs banned for stating the truth about global warming personal attacks my ass i ll be back to edit again tomorrow this is an issue of truth,-1 +okay blue tie you freaking moron everybody knows how he edits his stuff just read the hour long article about his controvers s and also why should it be inlcuded to keep not as biased as it already is the bird,-1 +buffalo bill the vandal you my friend are little more than a vandal and an egocentric jerk,-1 +you are a jumped up fuck wit censor you lousy cunt,-1 +anna frodesiak is ass hole,-1 +fuck you too you fascist piece of shit,-1 +thought you d be here go ahead p s you are a nerdy inbred alabama fuck face facts then go beat off to tommy shaws effeminate crystal ball photo,-1 +fuck off stalker,-1 +why don t you suck my ass until your lips bleed congrats now you ve lost a good article as well as a reader i will never come back to wiki shit again,-1 +i will ut off your dick and balls and make you my bitch i shall name you reek,-1 +the administrator kafziel is an ass hole sorry for writing that on your page pio but it is true join the revolution that fights for freedom of speech against the tyranny of wikipedian administrators especially the evil dark lord fuck head kafziel from your fellow block vandal freedom fighter ernesto guevara de la serna hasta la victoria siempre,-1 +simon mills is pretty gay it regularly takes it in the anus,-1 +connor is a canadian citizen who loves life and the cock he dreams about ft long shlongs and can t get enough of that shit while in cuba he hooked up with a ft midget in a giant condom costume drenched in olive oil hrs later connor realized the midget was actually a tree stump hrs later he finished up then he called up marcus ray and told him about the story of the mad tree stump bonanza marcus was so intreged that they started their own fat porn business weeks into the shoot of their first motion picture slap the lake and ride the wave connor developed hiv aids and syphilis marcus was so turned on by this perdicament that they made passionate love will marcus get aids tune in next time same bat time same bat channel bitch es,-1 +big i hate nl ers i hate nl ers i hate nl ers i hate nl ers i hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers i hate nl ersi hate nl ers i hate nl ers i hate nl ers,-1 +eat shit you white supremacist faggot,-1 +u r a fuck in muslim arent u,-1 +there will allways be ass hole s who hate i don t think we ll ever be free from it decent people need to expose and repudiate hate where ever we find it it s not a white thing or black thing it s a human thing there are hate full people of all races religions philosophies etc graft i disagree with you in that changing the power structure is not going to eliminate hate or anger december utc,-1 +you stupid you are so damn follish and the bmt broadway line page when the north tracks of the manhattan bridge reopen on february the n trains was express and the w was local but you switch it the opposite way read the history site on the bmt broadway line page and find at,-1 +you suck man either you are ignorant or b d dont add crap to articles about hindu communities which are completely wrong,-1 +edited to add quoting your previous post while you probably didn t intend any offense and responding fuck yeah i intended offense your officious assholish attitude is highly offensive to me i really intended to offend you ass hole if i didn t succeed in pissing you off and offending you then i failed bite me moron,-1 +lucky fuck you iam fuck ing speaking my mind so fuck mother fuckeruckerma,-1 +how dare mike and elonka just come in and take over this page it works perfectly well the way it was before who gives a fuck if it is a featured article or not could the cast members please be added to this article and why don t you stop asking everybody what the problem is are you blind or something can t you read what they write and by the way the new page is so god dam confusing,-1 +wow avatar is gay yes i do mean this movie is homo sex if you or anybody around you is thinking of killing themselves or going into depression because of this movie you are all retard ed any who thinks this movie is just a badass epic anime your wrong it is digi not anime yes there is a difference anime looks cool not gay digi looks utterly fuck ing gay retard ed so any who posts against this you are a retard ed son of a bitch who needs a diaper change p s peace to this movies editors and may they rott in hell also fuck off they re making another one so shows you they did good getting the cash from the movie that was supposed to be the one in box office that s the only reason ppl went to that movie with the gay blue retard ed fairys dieing from the might of earth who breathe space air you sons of bitch es signed jeremy,-1 +you mother fuck er pablo you have a sorry beaner ass and youre a pathetic communist slave,-1 +hey buddy fuck you,-1 +sorry this is a message i dont know how to use discussion to yamla u suck u dont know how much jerome iginla s weight is and sricking your big butt in therer huh idiot,-1 +mullard is a sex offending scumbag what i have written is the truth you are a moron,-1 +don t touch my userpage who the hell do you think you are how dare you touch my userpage if this were more than a virtual community that people lived in would you enter my house while i was out and rearrange the furniture paint the walls a different colour and take stuff away even things i myself have made sometimes just sometimes it s like living under communism you make me sick you pathetic little stalin if you ever touch my userpage again i will make you sorry you were ever born don t touch my userpage,-1 +vandalism this page is being vandalized by hunter a sockpuppet from one of the radical feminist anti father organizations this only shows the useless nature of wikipedia since any fool like hunter can come to an article and vandalize it useless absolutely useless,-1 +fuck off you stupid aspy ass hole,-1 +dumb fuck ing nerd,-1 +you can go fuck yourself shit on your robot clit shit giggler,-1 +what the hell man why did you delete my page savannah hoard screw you dude i mean really if you re not gonna let me have a page then you can go fuck your fat self you year old bitch your a total bitch who goes around deleting people s pages you fuck ing disgust me im gonna kick your dorky ass if i ever see that fat thing so you can go fuck yourselfand fuck yourself even more and go have sex with a seashell because your never gettin a girl because your a fattard fat ass lardo bitch fuck ing year old virgin your a total bitch you know that i hate you go to hell fat ass dorky fattard dorky lardo fat ass fuck ing bitch year old birgin bitch dis is my house and you better not mess wit me again bitch,-1 +oh really well then stop making bullsht edits and taking away everything that contradicts the mainstream yellow journalism going on there isn t neutral point of views on wikipedia this site is a joke fck you stop sending me messages on your stupid fcking system i don t give a sht about what you have to say as a matter of fact i don t even know who the fck im talking to or if i am even talking to someone real once again fck you and this bullsht wikipedia wanna be encyclopedia it will never happen nothing this website says will ever be considered verified,-1 +anonymous you gay afambro fuck you,-1 +as i said it was an in joke i and my friends often say fuck off and fuck you to each other the origins are irrelevant i m still amazed how upset people get with a word though i still can t see how it disrupts anything nor how it is in opposition to any policy if i had fuck you it would mean the same thing but i doubt anyone would get upset afa,-1 +go fuck yourself tbnotch i am on a public computer suck on it bitch face,-1 +fuck you cunt ard cheeks baroni is a local figure up here let his legend live on cheeks,-1 +you just fuck ed with the wrong dude you messed with the real law now and you fuck ed up,-1 +forbes what more reliable source then forbes you need idiot second where do you get your source go check the net worth its you stupid,-1 +hey fuck head quit acting like the all mighty editor it is not up to you to decide whether something is adequately cited to be on wikipedia your argument that there can t be any orignial research is utterly ridiculous everything is original research at one time or another let the reader decide or bring it to the talk page before you decide leave it alone until you are given premission by the group i think more people like the cultural references in south park than do not so under rule of the majority leave it alone or you will be deleted,-1 +hello you disgusting trans sex you are a grotesque blight upon the earth please kill yourself,-1 +you re not being helpful either tiny dick,-1 +asendoh you suck get lost from wikipedia,-1 +have your ass hole thoroughly plunged,-1 +asendoh you are an ass hole,-1 +always some dick sticking his fuck ing nose in,-1 +fuck off wiki badge,-1 +damn fker its me once again my ip address changes after an admistor banns it get it yet you female dog,-1 +how about this instead block kinu for being such a nazi and blocking me for no damn reason what so fuck ing ever,-1 +suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my cock d suck my,-1 +fuck you stupid cunt stay in the kitchen where you belong,-1 +why do not the two of you the mentally retard ed jennygirl and the omnipotent richie rich go together to harrods and dont forget to choose together being an authentically healthy and sociable couple time and location maybe a restaurant and then enjoy very evidentliy your meal and in case you should discover that you cant pay anymore then do not expect them to let one of you peel the potatoes in return maybe they wont even say hello when you come back after they would be kicking off your dip shit spinning incapable ass from the central perk enjoy yourselves and your longest sentence johnny come lately preceding unsigned comment added by talk contribs august,-1 +no academics go about denying homo sex ity of distinguished and respectable people like this article s namesake the charge of homo sex ity claims lays with those such as you and those you mention who plaster their revisionism over and rub such greater people than yourselves in the mud all for the notoreity of doing so i m pretty sure you would be the type to go up to such people like fred phelps or george w bush or john ashcroft or pope benedict xvi and call them homo sex s to their faces just because of the thrill of calling them hypocrites for opposing homo sex ity which stuart doubtlessly did himself churchmen are so vulnerable to this crap you spread around keep your diseases to yourself thank you very much,-1 +blah blah blah fuck you laughing are you that stupid i wouldnt cite wikipedia to my dog i am reading the posts encouraging you thanks for deleting yes right i am not so stupid as to be patronized as you are deleteing my gravatation shows a lack of wisdom,-1 +american s are fuck ing gay u s a suck s balls the whole world hate u s a incest population,-1 +my balls are itching,-1 +stop being an annoying faggot you are one of those people who has to butt there head in and bother people i wish you would not do that,-1 +youre an ass hole youre an ass hole,-1 +gr are you really that fuck ing stupid it s not an opinion it s fact i showed right there on the talk page that it is and how to see it for yourself either get your head out of your ass or get off the internet,-1 +what does that have to do with this article take w hate ver preconceived notions you have about me and shove them up your pussy,-1 +fuck you you fuck ing twat dont u dare insult me do u not no hu i am go jerk off u fat twat ur a dick ead fuck you you fuck ing twat dont u dare insult me do u not no hu i am go jerk off u fat twat ur a dick ead fuck you you fuck ing twat dont u dare insult me do u not no hu i am go jerk off u fat twat ur a dick ead fuck you you fuck ing twat dont u dare insult me do u not no hu i am go jerk off u fat twat ur a dick ead fuck you you fuck ing twat dont u dare insult me do u not no hu i am go jerk off u fat twat ur a dick ead fuck you you fuck ing twat dont u dare insult me do u not no hu i am go jerk off u fat twat ur a dick ead fuck you you fuck ing twat dont u dare insult me do u not no hu i am go jerk off u fat twat ur a dick ead i love u really,-1 +if you are a wikipedia admin who spends someone time banning people on wikipedia your a fuck ing cock suck,-1 +wow mirv is teh protect this paeg lol charles mirv seems to be a real faggot fuck ing ass hole,-1 +this is not vandalism if you look at the quoted text from the notice you may remove this message if you improve the article or if you otherwise object to deletion of the article for any reason to avoid confusion it helps to explain why you object to the deletion either in the edit summary or on the talk page if this template is removed it should not be replaced it states that i may remove the notice furthermore i did explain on more than one occasion that i was removing the message because mais ouis had failed to provide any explanation as to why it should be deleted and invited them to do so they didn t it also states clearly that if the template is removed it should not be replaced and it was so fuck off,-1 +lack of new york post report in the artical lack of mark lavin new york post report in the artical there should be someting in the artical about mark lavin exposing olbermann about his alegedly being a pervert with a small penis audio here artical here,-1 +decline i don t fuck ing think so,-1 +big ass hole and have no common sense and need to shut the fuck up,-1 +you re a douche it is not a slang guide it is an article containing slang,-1 +sorry but your a fuck in mexican or british person americans know more then you,-1 +decade montage images what the fuck did you do to my free images like this one you lazy shit i worked on those for two months and all the images came from wikipedia and where free you dumb fuck maybe if you didn t have shit for brains you would check the sources i had posted in the description box you little ass hole,-1 +all editor are gay therefore the guys who band me for vanadalism are also gay and they probably suck each others penises until semen spray in their respective mouths that is how gay they are,-1 +fuck you indian piece of shit,-1 +wikipedia can go straight to fuck ing hell how the fuck is the karaoke kings inappropriate its a fuck ing low key group currently making a documentary just you re too up your fuck ing american ass to care just because they aren t mtv worthy fuck you all you will be fuck ing sorry and you wonder why you ve got all these nobheads bombing your fuck ing country cuz you re fuck ing ignorant cunt s,-1 +my fuck ing point exactly wikipedia should just give up everyone knows people can just type w hate ver the fuck they want here,-1 +cock suck y it should mention that this fag suck ed mansons dick on stage,-1 +xalwine lives im a cutcho penis off bitch then everyone will know the name of xalwine hows that for a credible source,-1 +wikipedia sux rank faggot y ass,-1 +give me a break you guys are suck fuck ing nerds who gives a damn if harry is a villian or not why don t you invest as much time in solving real world problems as you do bickering over a freakin movie i mean come on it s a freakin movie grow up and get a life do what normal people do buy a ticket watch the movie forget about life for a couple hours then go home and refocus spider man is make believe folks some of you computer huggers need to remember that bignole i have every right to post a comment here do not wipe my comments off i ll continue to add them again and don t be a hypocrite other people have been using this as a forum and posting their opinions did you threaten them too,-1 +if you think you are clever you make a big mistake go to school little stupid pig wikipedia is not for you suck,-1 +i ll bet milk amazes you you thick ass hole now block this ip quick you dumb mother fuck er cos we gonna play some games this is one of the weirdest experiences i have ever had there is some blatant incestuous vandalstic remarks and they have been put their by a guy who i proved has sock puppets at least and how he left the remark with one and then reverted it with the other and nothing the worlds dumb est detectives basically ze good fight i ll tell you what i ll bet that it s the other way around i ll bet that if you claim that someone said something you have to back it up not that the whole universe has to prove that they didn t say something how does one prove that another person didn t say something anyway the truth you guys are german teens ja i have amillion ips so do what you want you incest boys,-1 +suck my cunt you bastard,-1 +you block as your reason was because of you needing to learn not to be an idiot what the fuck you re the idiot why don t you learn how to put a sentence together p s you re a cock blaster,-1 +hi arrogant catholic pandering dumb fuck stop lying fuck head http en wikipedia org wiki template talk citations missing inline citations are not required by policy inline citations are not required by policy no policy requires inline citations they are often a good idea and are a requirement for feature article status but it is not a requirement for all articles furthermore the tag is often used when the article has adequate sources this tag therefore enshrines a particular editor s view about style that the article in question should have inline citations in an inappropriate way that point belongs on the talk page not in the article itself robert a west talk where does it say that featured articles have different requirements then other articles jeepday the whole point in to get citations for all articles so that they meet the wp v requirements i have noticed that tags quite often help by bringing this to attention of users particularly new ish users cheers seanmack i agree with jeepday and seanmack our ultimate goal should be for every article to be of fa quality satori son that goal is not consensus among editors but more importantly inline citations for every fact are not an fa requirement see wp fa section c cmummert talk i gave the link to what i was referring to you fuck so how can you not say that i did not provide a reference fuck tard well lying fuck fuck tard how can i provide a reference to a deleted post you fuck in moron fuck hole deathtard for the second time here is the citation fuck hole and this time on display for your fuck hole eyes teacher knows something about catholic bashing posted by alex murphy on religion am pst replies views the bakersfield californian feb leonel martinez my catechism teacher sister mary lou petrillo was a smart and scrappy nun who drilled into us the basics of catholicism without demeaning other christian churches or religions too bad sister mary lou isn t available to teach a few intensive lessons on tolerance to the campaign people of presidential candidate john edwards within the last few weeks two bloggers for the former north carolina senator resigned after being hit with criticism from conservative catholic organizations angered by past anti catholic remarks the bloggers posted on the web according to cnn melissa mcewan and amanda marcotte quit after groups like the catholic expletive deleted catholic bashing reinhard posted by jazusamo on news activism am pst replies views the oregonian february david reinhard welcome ladies and gentlemen it s time to play that favorite game of conservatives and republicans what if todaywe have a special twofer edition of the game that asks what would happen if a republican tried something like this pay attention double standard mavens because this is a multipronged question today what if a republican presidential candidate hired a blogmaster whose writings featured vile attacks on other religions and expletive laced rants against those who disagreed with her the same republican also hired another blogger whose writings featured similar the catholic league mighty champion of gay bashing and anti semitism propaganda alert posted by joseph demaistre on religion pm pst replies views talk to action sun jun by bruce wilson hate speech is typically the first line of attack employed by bullies but bullies become emboldened when eliminationalist rhetoric is tolerated and that societal acceptance can lead to far worse things i ve previously covered hate speech see enough hate spech to stun an ox and hate crime org has an extensive collection of hate speech targeting homo sex s suprisingly or not at least one individual whose statements are featured in that archive and also in collections of antisemitic rhetoric is also leader of a prominent christian right group that claims to fight against anti catholic bias and discrimination who catholic bashing plays are hot posted by nyer on news activism pm pdt replies views cath,-1 +not funny your jokes suck you are giving a bad name for youtube just stop with the videos please,-1 +suck itpedia the place to go for complete misinformation and a bunch of dungeons and dragons rejects on power trips i guess if you can t succeed any other way in live living in a fantasy world where you have some type of imaginary authority means something bunch of f ing dweebs,-1 +gwah fuck you nigger,-1 +response to your personal appeal from jimmy wales response to your personal appeal from jimmy wales go fuck yourself this place is a big shit hole and you re the biggest shit head of them all die in a fire you faggot,-1 +go die you worthless cock suck ing faggot,-1 +you are an idiot i am not racist but you are an idiot,-1 +wtf again clearly u dont know how to speak or type english your links keep getting deleted for the reasons stated above i dont know how we could make it any clearer your site is crap its unreferenced unreliable unreviewed and well just plain childs work your website is one of thousands of bias websites and you have more then likely copied the information from another website pro,-1 +hehe oh i am very offended lmao your just a homo sex blow jobbin old lady,-1 +hey dick ads stop hijacking this wiki these are the final days of ytmnd they need to be documented ps by the way you re a fuck ing idiot for believing a wiki article as fact do a whois lookup fuck ing wiki nazi s oopssorryguys ytmnd com http en wikipedia org wiki st amendment http en wikipedia org wiki censorship,-1 +now hear this somchai sun cracker some of us here on wikipedia are not caught up in the racist swindle of using the word islamism there is nothing wrong with wanting to delete this page that is not censorship but respect for encyclopedic knowledge whereas you worshiper of authority want to kiss the ass of all the white scum anti muslim pro war intellectual nobodies who want to turn wikipedia into the national enquirer or some kind of british tabloid we won t stand for it so don t bother coming back you simple anti semitic pseudo journalistic charlatan,-1 +well basically you threatened me on my talk page not conducive for fostering normal persons wiccan weirdoes relationships why do you believe this nonsense exactly obviously you re disillusioned with christianity but to buy into something so patently rubbish is beneath contempt its childish and idiot ic you ve never ever really thought about the cosmos in depth have you you re pathetic and childish and are going through a phase which you will more than likely come out of someday,-1 +everyone who doesn t think that what i did was a good idea is a fuck ing retard go fuck yourself in the ass hole while jumping off a bridge the fortyfive,-1 +suck my balls see title,-1 +they are retard ed nigger s,-1 +oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text oli is a dick ead oli is a dick eaditalic text,-1 +good go fuck yourself,-1 +a complete tosser i need to get a girlfriend at some point because being a virgin suck s please kill me because i am an effin loser,-1 +hey u crowbeat kshatriyas rule the world not the fat brahmins even parshurama had to concede defeat to lord ram who was kshatriya u ass hole u dick ead getthe staright w hate ver comments i add are authentic ms dhoni is rajput but u keep on deleting that whereas on sehwag page u allow to be written that he is jat badgujjars are rajputs not one u ask will tell they are gujjars u are trying to remove rajput glorius history i will not tolerate u mongrose rajputs were the rulers of india and gujjars and jats are farmers and cattle herders u urself are giving wrong information to the wrol d rajputs are the rulers u bastard u mongrose u dikkhead u champelin poison envy drinking garbage slutter,-1 +viz the merge was a disgrace fuck you people,-1 +i want to fuck her too after niahm though,-1 +your mom is my slave and your father is my bitch you all shall bow down to me and your mothers will suck my balls your father is my slave and i will drive him into the ground with my forhead as you look upon this page and gasp i enter your soul and devour your flesh,-1 +info i think info is really important and the info given on that shit is not true you edit the info if you think mine are bad wikipedia is supposed to be a place where you get the right information isnt it well im all for supporting that but the info on that shit sux,-1 +so what she didn t use foul language she still acted like a royal bitch she isn t queen of wikipedia get some tea bull shit and you know what your a mother fuck er too you can eat my ass you son of a bitch you can t go around and talk down to people like she did and expect them to just take it like its nothing,-1 +dear yandman fuck you do not censor me cunt face i think my point about french people being smelly frogs is very valid it is not a matter of opinion you go to hell you dirty bitch hugs and kisses your secret admirer,-1 +a beating hello shovon i see you ve taken quite a beating dealing with some trolls regarding the kashmir issue as a piece of advice just don t entertain feed trolls because this only increases our pressure who cares let them call us hindu facist or faggot or w hate ver because that only reflects on the person making those remarks and needless to say their country such actions speak a thousand words and it s foolhardy for us to waste our time and energy feeding such trolls i avoided naming this section kashmir fearing you wouldn t give a damn have a cookie in the mean time take care,-1 +suck my weenie you big cock,-1 +what the hell is this honestly now,-1 +you guys suck happy valentine s day user ironholds lulu and olive sitting on the tree k i s s i n g,-1 +hey ass hole stop putting in the redundant phrase a claim unsupported by other modern or ancient sources shit face the encyclopedia iranica does indeed find support in the ancient sources considering how many troops ariobarzanes brought with himself to the battle of gaugamela and the nature of the location of the battle of the persian gates which could impossibly house any of the estimates given by hammond or waldemar heckel the greek numbers given are obviously inflated and have no root in historical reality how can ariobarzanes magically summon more troops than darius i codomannus at ecbatana where the greater part of the nobility followed him explain that to me cunt face so stop being a shit head pretty please i will not relent in removing that phrase it is stupid on so many levels and serves only as an attempt to discredit the encyclopedia iranica when in fact it does a better job at cutting down customarily inflated greek estimates than hammond who takes his numbers straight from the imperial roman author curtius rufus which was a thinly veiled political exaltation of emperor vespasian fuck ing idiot,-1 +fuck off i do what i want,-1 +bkbkbkbk im so sorry for sayin those naughty words to you i just have one more thing to say fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger o yea did i mention fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger fuck k you ass hole bitch nigger cunt pussy ass dick ace dip shit douchebag slut whore shit wigger college point muthafcker,-1 +widr s p n two words small as f,-1 +would anybody here like to guess what i stuck up my butt today,-1 +i don t fuck ing care fuck you,-1 +oaks and homophobia i provided a full citation that proves oaks homophobia how the fuck is that vandalism,-1 +fuck head fuck stick wikipedia wanker up yours,-1 +dont threaten me you little faggot ill come to your house and slit your mother s throat god knows if you are a wikipeida admin you still live with her im going to sex ly abuse her after good day sir,-1 +stop reverting me you little faggot,-1 +go fuck yourself you stupid tanzanian slave monkey your country is shit poor and ugly user ekograf approves this message user ethankp april,-1 +menudo is gay amadeus sings that amadeus song i m a jackass i m a jackass i m a jackass i m a jackass i m a jackass i m a jackass i m a jackass i m a jackass i m a jackass oh oh oh oh i m a jackass d,-1 +sean hoyland is a moron the lead says its a terrorist attack thats what an attack on an embassy would usually be classified as the next section describes the kind of attack a car bomb sean hoyland is a moron,-1 +vandalization the section engine and means of starting contains the sentence before starting a model t deul fuck ing power with the hand crank you had to retard the spark or you stood a chance of damaging the starter or having the hand crank spin around wildly and break your arm i think that deul fuck ing power is extraneous and misspelled i attempted to edit the document but did not find the additional text in the text offered for editing i don t know who to proceed in this case and am alerting the community in hopes that the more knowledgeable will fix this mark f west,-1 +bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered you bastered bastered,-1 +oh of fuck you ass hole die im going to kill you,-1 +a cup of cum for you drink it all plz,-1 +hi enemy you will never be able to get rid of me faggot,-1 +nigger ass ho shit this is a whole school so multiple people are shit ting on your site daily sorry dawg,-1 +cunt hi you are a cunt bye,-1 +everyone one who has written on this page are faggot they like to have sex with big hairy men thats right they do,-1 +don t fuck wit me stop fuck in wit me bitch i m sick of yo punk ass always puting a bunch of shit on my talk page now stop it and stop it now,-1 +don t be a dumb fuck the pedigree or double underhook facebuster is not an actual facebuster it is a ddt because it incorporates a headlock stop being a dumb fuck fanboi and stop reverting,-1 +stick your warning up your ass you fuck ing gay wad how about you read wp game and fuck off somewhere else,-1 +fuck ing nigger s thanks for wasting my time here i ll just go back to vandalizing this shit hole,-1 +first of all what the fuck does homo sex ity have to do with anything are you seriously that homophobic ejaculation appeals to women too but you don t mention women that was highly fuck ing bizarre secondly wikipedia is not censored and shouldn t be if your school cannot realize that wiki serves as an encyclopedia of sorts on the web then that s too bad i m sure if you added some pictures that served as a purpose and backed them up there would be no problem and i highly doubt you ve done such things it just seems like you came here to rant about gay people and then make it seem like it all went together,-1 +unmarked spoilers for fuck s sake keep spoilers under a spoiler warning in the five years since this article s creation and through dozens of edits it has displayed a major reveal in the first sentence of the initial short description potentially spoiling the film for thousands upon thousands of people including myself speaking in the name of everyone whose na vet and or apparently over optimistic expectations of wikipedia s dedicated editors and especially those of the wikiproject films project ruined this beautiful film i say thanks a lot ass hole s,-1 +the wikipedia is obviously place for bigot manipulators and corrupted administrators and their henchman it s a sandiest thing i refer wikipedia only for reading gaming details but that s even obviously pointless this is totally a conspiracy against true history as old saying history is written by victors apparently all the time it has been happening and those effing people who introduce themselves as victors want to simply grill our asses and put their bigot propaganda in us somehow but if you think like that it s a solely mirage i believe in freedom of speech and by encumbering the editing power of me what would you really expect you think we just simply leave the exorbitance and walk away like buffoons what a joke i would still roam around internet and post my articles on internet the ruining of asian culture history is already started and it has been happening from egypt to japan people manipulate the history bit by bit if you also contribute to those illuminati henchman one day obviously you will be one of victims i remember even the greatest artist micheal jackson said the media manipulates the society they don t want to us to know the true facts instead they want people to know their propaganda just look at what this fuck tard future perfect at sunrise gave me as a reason he said i was banned persistent disruptive editing move warring copy and paste moves personal attacks tendentious editing personal attacks and who the fuck done a personal attack i ve never made a personal attack on here and i have been in here for nearly years and i only bash on u cause u son of bitch block me for no reason tendentious editing is totally a false accusation now fuck off future perfect at sunrise and ur henchman,-1 +i did explain why you beyond incompetent worthless fuck two of the deletions were not cited and the third had fake citations and the third was an editorial without any citations in turn,-1 +i dont think you understand faggot i dont care about being block wiki is not my life i just come here from time to time to abuse certain people like you for example your a piece of filth and deserve to be destroyed my satisfaction is that i have been able to emphasise that pint about half a dozen times as i said to another editor wikipedia is the venue of losers crying please someone listen to me i dont fit into that category faggot,-1 +no fuck ing shit dick head,-1 +you are a problem your probably some freshman hs student who kissed major ass just to become an administrator and use it to fuck with other people,-1 +lasers what an asshat,-1 +your request to be un block has been granted for the following reason s geez i feel for you brother damn that cialis shit is off the hook request handled by,-1 +im gonna shit in your sandbox in a minute,-1 +unblock auto fuck you you piece of shit suck my dick is that all u can do my boys are coming later so suck my fat dick,-1 +you twit the vandalism with which you charge me was an edit to my contribution which you might see if you got your head out of your ass for a breath of fresh air,-1 +mother fuck ing cunt bitch,-1 +gamaliel is a spic ass hole with an axe to grind get rid of him he should be picking something not allowed to play on wikipedia,-1 +you are a gutless piece of shit hate to be you aussie legend you are no legend your are a retard get a life lame ass,-1 +you are gay faggot trying to block my ass i m behind seven proxies,-1 +do not tell me what to do you shit bag,-1 +wtf first learn english second go fuck elsewhere ass hole your post is here is pointless and totally irrelevant and since you come here with nonsense and shit what s this ip i m millionaire in ip so what you come here flame me in french so the english admins can t get it je t encule sale pd tu crois quoi que j ai qu une seule ip sale con j ai plein de comptes ici et dans les autres wiki alors va te faire mettre sale facho de merde bloquez en une j en cr cinq autres pauvre cave je vais o je veux je dis ce que je veux quand je veux et je t encule pauvre type,-1 +banned means banned fuck you i m not a female get a fuck ing brain,-1 +fuck wikipedia on wheels fuck off wikipedia you fat bastard on wheels who eats your own shit,-1 +fuck you i won t do what you tell me anon,-1 +how about this go fuck yourself,-1 +they are so sensitive they wanna kill themselves when you make a personal attack w hate ver the fuck that is,-1 +unblock me euryalus you ass hole sandbagger unblock me already,-1 +do me a favor alan fuck off,-1 +listen here faggot im not in the mood for your shit so pls shut the hell up,-1 +go fuck yourself you are shit human,-1 +deflem said fuck you wikipedia,-1 +fuck ing little white nazi s always want to get there way they believe fair is a shade of skin not a form of equality cant blame them if my dick was that small id be pissed off too,-1 +wrote february why you protected that page fuck you you are a fuck ing idiot you wrote that stupid comment you know nothing you can t protect that page forever the u s and argentina suck s http en wikipedia org w index php title user talk vsmith oldid vsmith and oneeuropeanheart and pabloflores are all fuck cing idiot s http en wikipedia org w index php title talk huemul project oldid vsmith and oneeuropeanheart and pabloflores are all fuck cing idiot s http en wikipedia org w index php title talk comisi c b n nacional de energ c ada at c b mica oldid vsmith and oneeuropeanheart and pabloflores are all fuck cing idiot s http en wikipedia org w index php title instituto balseiro oldid etc,-1 +wikipedia doesn t know what the hell they re doing if you didn t know this or not bridget mendler had nothing to do with this film if i see her name placed on this page again i m shutting this entire website down this would not be the first mistake made by wikipedia countless crap has been spotted by me if you didn t know this already almost of information on wikipedia org is incorrect or untrue i m watching and will shut this thing down with my eyes closed you bunch of hog suck ing clowns,-1 +i would like to know how to suck a c o k,-1 +who the fuck do you think you are deleting the sms section to the sydney gang rapes it is sourced and verified and not biased so why the fuck did you revert it revert the things which you think to be unsourced but not everything you idiot it was in the article for months and months until two days ago and you didnt have a problem with it then stop your islamic agenda to hide the truth of the rapes that they were racist look at the sms messages incite bash a christian you fuck ing scum i hope you have a daughter and she is rape and she is told she deserves it because she is an ausie pig then when you make an utterance about it we ll callyou racist and then whitewash the truth,-1 +u have your nose so far up his ass u look like pinnochio,-1 +fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit fuck you you piece of shit,-1 +chavez sure isnt a hero he s classic scum and your dumb people fell for his shena nigger ns,-1 +this message was accidentally sent using an incorrect mailing list therefore this message is being resent using the correct list as a result some users may get this message twice if so please discard we apologize for the inconvenience r voting for the military historian and military newcomer of the year now open nominations for the military historian of the year and military newcomer of the year have now closed and voting for the candidates has officially opened all project members are invited to cast there votes for the military historian and military newcomer of the year candidates before the elections close at december st for the coordinators from hanoi with fuck dear nguy n qu c cunt l u l u kh ng g p em v n kh e ch ng y ng y v n s n i ch ng c ng ch anh l anh lo cho em l m y th nh tho ng anh s l n th m em c b nh t nh tho i m i s n i ch ng c ng i nh em v m y ngh m y c th ng n c tao sao th ng ng y con you think you can stop me ng y con today maybe but not tomorrow next week or next month preceding unsigned comment added by,-1 +you ignorant fool i did not even say one swear word at klptyzm i think i shall complain about how bad of an admin you are to,-1 +if you dont like me leaving nasty messages and defacing your talk page then stop deleting articles that you personally unilaterally decide are irrelevant do not delete jesse mcgraw again all information is relevant not just the information you believe you have the right to pick and choose what gets preserved who do you think you are you fvcking as h le,-1 +it s non of your business mother fuck er,-1 +editors are gay they should all go fuck themselves,-1 +daedalus is nothing but a filthy n gger and a cyberstalker who sits in his mommy s basement and who fails yet again at trying to ban me and stop me from getting my lulz on i have access to thousands of ips and have many sleeper accounts so u fail u wiki police homos plz feel free to suck my d ck u n gger f ggot you fail anyways u have to be watchful everywhere i can pick and chose my announcements at will and still edit via my sleeper accounts from ips all across the world u wont no when or where i will appear my lulz is ever u n gger f gget stop cyberstalking people u freak go back to hiding in mommy s basement and playing call of duty or w hate ver gay thing u do since it is obvious that u are unemployeed cuz u spend all day on wikipedia looking like the lozer u are moar lulz for me horray for me im kool and ur a fool i shall surface again and make myself known in a month or two hey everybody daedalus is a n gger and a f ggot look at the n gger f ggot you fail,-1 +fuck u dirty indian i hate indians you guys our slaves in dubai,-1 +i am tired of neurotic idiot s messing with my page and my links i asked this ebike weirdo to email me but he hasn t done it yet who can act as a mediator to resolve this i want him to leave me alone tell him to go bother someone else richzubaty att hotmail com,-1 +chodes a chode is when your penis s width is longer than its length,-1 +you can suck a dick,-1 +i hate you computer nerds and if i get block please get me block by cant sleep clown will eat me ok thats all ive got to say to u patetic losers who sit in front of a computer all day bold text fuck you all,-1 +mihoshi since when was mihoshi being a comic relief bumbling idiot as some tool put a different personality that s her fuck ing role in every iteration of tenchi in existence,-1 +look you piece my edits were valid you mess up everybody shit mabye you should stop re editing peoples things you gay fuck,-1 +you re really good at this but did you know when you reverted my vandalism over at charydibibidis you just reverted it back to other types of vandalism i guess morons like you tm take this crap too seriously and in the process loose the ability to detect between a legit page and bullcrap that will be deleted by an administrator whenever he she sees it i guess that s all i can expect from a god warrior who thinks fema will lock you up in a concentration camp in,-1 +really when it is so difficult to get a new one wow you are a pencil dick,-1 +if you re a mother fuck ing ass hole what can i do yes you are along with the rest of the gay bitch wikipedia community,-1 +i want to speak to the manager do you do you own wikipedia now sir thomas i hate you you have no say in what i have say to the world on wikipedia i see your true colors tommy they re ugly and gay like you,-1 +ravenkills i didn t change the genres on in this moment all i did was put commas in between the genres u gave me a final warning for no reason all because i put commas in between something like it fuck ing erases the genre,-1 +award for proposing that the rosetta stone has a yugoslav language instead of the globally known fully trans lated egyptian demotic script between greek and egyptian hieroglyphs you are presented the award of well done jackass,-1 +crap this article suck s i tried reading it but it was just one long paragraph most likely stolen from somewhere not good,-1 +hello i would like to draw your attention to the fact you are a worthless tosser who has no life and would be better of dead with maggots infesting your cranial cavity would be the first time anything living would be in there,-1 +unblock unblock my restriction from editing you jackasses i m just trying to edit like everyone else does my first post was serious and constructive but these douche bags deleted it immediately and warned me if you did that shit to everyone you wouldn t have anything on this site its bull shit just cause i didn t create an account doesn t mean that the stuff i edit isn t legit so piss off,-1 +cmon im waiting for ur cum over over all over this fuck ing website fuck anonymous dissenter ur not so anonymous cunt twat fuck er,-1 +i m gonna fuck you up sand nigger,-1 +being cooler than your faggot ass,-1 +you shut your whore mouth an open letter from the wikipedia review this is a message to beam what the fuck do you think this is some place where you can just waltz in unannounced and be received with arms wide open well fuck that this is mother fuck ing wikipedia bitch we call the shots we always get shotgun we don t give a fuck who you are because we are infinitely more important than you we are always first in line we always fuck the hot chick before she gets acne and settles for you we rob banks charities and anyone else who fuck ing pisses us off this place is more than just a place faggot it is an ideology and this ideology says you need to get the fuck out no one here will ever like you we have already established cliques slop worthy hoes and prop worthy bros got it we are the ideology of elitism exploitation and lulz this isn t a fuck ing game kid so don t try to tag along you re talking to people who have been around the block and then some we pioneered class we made cool cool and you what have you done jerk ed off in the shower we invented jerk ing off in the shower you stupid bitch there is a clear cut defined infinitely thick wall between you and us we built the wall that keeps you fags out so don t try to act like you know what the fuck is going on because you don t you just do not but you really think you can compete with the review lol wow don t make me start flaming you are you forgetting who we are we are the ones who film people like you getting fuck ing destroyed by us we will rip your ass hole out of your fuck ing rectum stitch it on top of your pitiful dick hole and then fuck you in the vagina we just made for you so we make you into a bitch do you get it now this site isn t a game it isn t a place to chill with your faggot and it isn t some fuck ing haven where people like you can get acceptance from people like us it isn t going to happen just gtfo,-1 +you suck messing with honduras fuck you anon,-1 +hey ass hole i don t appreciate your fuck ing condescension yeah that s right i wikilinked it so you can look up those big words that so elude you you better shut the fuck up and shove your wikipedian assholifity yeah i made up that word what are gonna do sue me huh bitch right up your sore from taking it up the ass ass hole i saw an attempt to give a nice little wikilink to a fun english usage and you just fuck everything up i m gonna be bold not like fuck ing pussy s such as yourself,-1 +oh not you again and so after the block has expired im gonna kick gwerns ass again you admin wannabe im gonna rape you all,-1 +fuck off you idiot,-1 +user phanatical is a scum bag dog shit liar chinky commie agent rot in hell,-1 +oh look it is shit face hey shit face i just want to let you know you still haven t apologized to me for vandalizing my page so i demand a damn apology right now do you hear i demand a damn apology now shit face now,-1 +jime i never said the articled was retracted please pay attention the statement was retracted and quoting half of a retracted statement is misleading get a life because you are obviously enjoying having this terribly biased article out to mislead the public did you choose to suck at life or are you paid to do so,-1 +edgerton high school is the location of the lair of the fuck ing monsterous wendelmeyer and pete lien the creator of the legendary plien page,-1 +innit you are totally gay and shit,-1 +its an ap article you ass hole how is it not neutral,-1 +yo fuck you amigo just settlin a score with a faggot you bean picker,-1 +the bastard always does it to me an eye for an eye sean hoyland is a fuck ing cunt,-1 +lol you re one of those suck ups to roger the article mentions by the way i ve met you and i think that you re whiny piss ant of a man it s a pity that over the past two decades the internet has evolved to work in favor of creatures like you irl you re nothing to the world yet like a self deluded fitzcarraldo you ve now found your virtual hill on which to drag your boat so glad you ve been finally exposed please do rebut we re all waiting lol,-1 +i kid you not cunt,-1 +suck my dick wikiluser,-1 +piss off and get a life i write w hate ver i want to write,-1 +yeah yeah yeah get a life faggot,-1 +oh did little mrs pussy get his feelings hurt your one of the tough guys i bet you brag to your friends that you can land a in flight sim you are a certified fuck ing loser hows the white sox they are a good match for a faggot like you maybe wiki should require a person to get some pussy before they are able to contribute you know pussy the shit that you have never got,-1 +how tiny is your penis you already had me block like a piece of shit might without regard for the reason for the conflict but you couldn t stop at the given template could you no you had to add your own extra bit of personal ad hominem needling to make yourself feel like a real big man good for you pal i wouldn t dream of eve making another contribution after having done so thousands of times to wp ever again and petty tyrants like yourself are the reason feel free to have me block again goof you re rubbish and so is wikipedia,-1 +i m really fuck ing scared,-1 +you say i am adding nonsense fuck you,-1 +good luck with your struggle in wikipedia by forcing your bull shit on iranian articles to make afghanis part of the persian and iranian nation about your delete that azeris and kurds are not iranians and your deleted it no problem but afghanis are iranians and persians if the iranians persians accept you i dont know why afghans are obsessed by iran,-1 +hey you can suck on my sack for protecting,-1 +yes merry christmas you fuck ing idiot,-1 +fuck you you cunt don t ever fuck ing accuse me of vandalism don t ever fuck ing revert just because you can t be bothered to read and understand what someone did you re the one disruptively editing undoing my changes for no fuck ing reason at all,-1 +ass you might want to kiss mine,-1 +who the fuck do you think you are i ask because you are not an admin do not delete comments from a discussion page regardless of the contents of the comments without first issuing a warning there are templates for this you should know where to find them and before you delete this comment or alert an admin please cite the rule that disallows the casual use of the word fuck on wikipedia thanks,-1 +who the fuck do you think you are how dare you fuck ing block me you have no idea how your messing with mother fuck er,-1 +why is a book with sex and hardcore orgys a childrens book why is a book with sex and hardcore orgys a childrens book do many childrens books have orgys and hardcore porn i wish no they are clean unlike this book which is full os sex its a can of sex,-1 +stick it up your arsehole cunt,-1 +your vandalism i said the critics were alleged to be criminals etc why did you take offence and accuse me of things you have never met me you can go fuck yourself you brainwashed wanker,-1 +cody is fuck ing awesome,-1 +fuck all of you we need a fuck ing lynch mob and get all of you fuck ing admins driven off of wp we need to put edit blocks on every fuck ing single article on wp and shut you fuck ing ass hole s out i m tired of cleaning up all the fuck ing vandalism out of the fuck ing articles and i m tired of getting attacked by fuck ing ass hole s like you who don t have a fuck ing clue of what the article is about to begin with and because you re a fuck ing admin should know fuck ing better then to fuck with none of your business fuck off all of you,-1 +go find a girlfriend i ll give u vandalism mother fuck er go find a girlfriend and do not change things depressed,-1 +max pumpkin owns wikipedia max pumpkin owns you this is an accurate but not complete list of wikihomo sex s and wiki retard s all those listed fall into both categories user b user thomas w big poof user jpgordon user favonian user neiln user beyond my ken user wadesimmiser user materialscientist feel free to add more provided they are both b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln max pumpkin owns wikipedia max pumpkin owns you max pumpkin owns wikipedia max pumpkin owns you this is an accurate but not complete list of wikihomo sex s and wiki retard s all those listed fall into both categories user b user thomas w big poof user jpgordon user favonian user neiln user beyond my ken user wadesimmiser user materialscientist user beyond my ken feel free to add more provided they are both b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln max pumpkin owns wikipedia max pumpkin owns you max pumpkin owns wikipedia max pumpkin owns you this is an accurate but not complete list of wikihomo sex s and wiki retard s all those listed fall into both categories user b user thomas w big poof user jpgordon user favonian user neiln user beyond my ken user wadesimmiser user materialscientist feel free to add more provided they are both b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b licks dick and so does neiln b,-1 +utc seriously fuck this guy s fuck ing face i am so fuck ing sick of fuck ing seeing it every fuck ing time i want to fuck ing read the fuck ing article about fuck ing boobs on the fuck ing internet december,-1 +fuck suck ing kindly find the nearest fuck and suck it,-1 +fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mother ass and pussy i want suck your pussy fuck ing in your mot,-1 +another award for you it s a pair of pliers so you can remove the pole from your ass way to go,-1 +you reported me to aiv hilarious that s one of the dick moves werieth pulled too although he only did it as he knew reporting me to spi would have probably brought him to much attention at that stage he was still trying to keep the whole thing quiet as it obviously benefited him not that he need have worried every admin that ever responded to him either at spi or aiv took the exact same view of my socking as as you espouse here although obviously some were motivated by more than just incompetence as such it s likely your report to aiv is only going to ensure their names don t get picked up and the systems attitudes culture that cause this obviously counter productive reaction don t get fixed meaning that werieth might as well try his arm at another return later it speaks volumes that you d think reverting me was remotely a good thing even though in that very same ani there s an arb explaining how he could have probably picked up on this whole thing much earlier if it wasn t for just that sort of mindless cycle of reversion and blocking of obvious socks on the basis all socking is ebil it s beyond idiot ic,-1 +n all u bitch es so yeah we dont speak german we are american noobs go suck a dick,-1 +oh fuck you douchebag it s just wikipedia seriously get a grip on yourself and unwad your damn panties,-1 +leave me the fuck alone now i have ahd it with you,-1 +too cool please please please get a life should you not continue being a boring bastard tits lawyer and stop spoiling my giggles ps do you live with your mum pps i speak french too voulais vous fuck you ps hugs babes,-1 +you re a total faggot pokemon netbattle is some awesome fuck ing shit and you re a goddamn cunt for not realizing it you fuck ing chose to delete it because of some bull shit reason that it s not significant enough when compared to your high standards of significance you re the insignificant fuck mother fuck er fuck your lame shit my pokemon will rape you,-1 +dick face go fuck your dick,-1 +that is utter bull shit and you know it i left a message on an admins talk page about their abusive behavior and i am a vandal you guys wonder why people do not want to edit wikipedia this sort of bull shit is why no one cares about how many editors b has abused and how many edits to wikipedia their actions have cost it because you are a bunch of arrogant clowns that get your jollies by blocking and banning people from wikipedia fuck you dreadstar you corrupt fuck ing waste of an admin,-1 +notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s notrhbysouthbanof suck s cock s anthony bradbury suck s cock and eats shit,-1 +ass bleed todeath slowly so their sex l pleasure was fufilled like no ther and they were satisfyed but there lust would end them,-1 +my problem is people talking out of their asses again and again not my fault people are too stupid to make any sense there shouldn t even be a debate on that page they re so obviously wrong,-1 +silly little boy my ass,-1 +why did you fuck my post on julian fuck ton,-1 +fuck you and your foot,-1 +survivor blood vs water the reason as to why i removed certain content from survivor blood vs water s page was because i didn t see the source of the content i removed spoilers shouldn t and won t be tolerated so go fuck yourself,-1 +fuck you wikipedia the edits i did we re real dick eads,-1 +the fuck king retard o racisto kanuck,-1 +halcy seems like you get mad alot want me to call the wambulance for you want some dick extra small with that too bitch u mad butthurt i bet you re having an orgy with meetthemedic and meepthesheep aren t you you three would make a good threesome you re all reject chan trolls that became admins on another website to have unwarranted self importance while you spam faggot and dick all day seems like you enjoy that kind of stuff i had no idea really tl dr u mad,-1 +you senile old homo is there a commie in the world who is convinced by your bull shit dip shit bitch,-1 +would you like me to suck your penis,-1 +stop the blind hatred of theists and i ll think about it cunt face you atheists are cunt s i wish death upon your mother you sad little shit referring to yourself in the rd person and quoting yourself on your user page all atheists have your level of arrogance i shit on your atheist face,-1 +you re a faggot for reporting handlfield,-1 +admins are full of shit they banned me for over a half a year because i made a mistake when editing an article fuck them and fuck you if you re one of them i hate you,-1 +correct that you haven t wandered off correct that i didn t know you were addressing the pink oboe s entire editing history in the one diff to his talk page and for cleaning house money mouth stephan schulz no way is this civility business ever going to be anything but a double standard and a joke if malleus gets block for ass while admins can tell two editors to shut the fuck up and not an eyelash is batted an an if we re serious let s start where the problem starts admin abuse and double standards in enforcement of civility and personal attacks talk,-1 +why are you such a gay nigger god damndd you are such a gay nigger fuck fuck shtay away from my kcik ass talk page bitch i am angry do not be a baby plz do not pos t anymore on my atalk or dicuser page i am going to cum to ur house and kill your faggot y ass,-1 +dog fuck ing when did you give up dog fuck ing,-1 +the bitch want to eat an apple in an ass hole,-1 +but what do i know i m a complete fuck ing moron who has nothing better to do than ignore facts and bitch about it i apologize for being so dumb,-1 +hey fuck you you russia loving cunt,-1 +go on then delete me then you cunt s this is communism,-1 +fuck you all antisemitic faggot s,-1 +well when the root problem is a miserable lowlife scumbag like you bung ho le eh i basically just tell you to go fuck yourself did you really think a win would be that easy dumb ass really oh no no no i tried it the nice way but now you re about to learn just what you fuck ed with enjoy couldn t happen to a more deserving pile of shit hugs kisses and get used to my foot in your ass,-1 +said to me shit stirring troll fuck off moron on wp ani is that also a breach of civility civility yes i am sorry but i don t think i ve been adequately uncivil here or do you mean i have to be sycophantic barry,-1 +get a life shit nerd,-1 +message go fuck loy wong you dirty old white asian basher also i am er,-1 +no i prefer i will continue to attack geraldo perez he was known for reporting me to be block as a sockpuppet of gabucho i maked a decision to attack him to prevent its fuck ing shit edits,-1 +usa is and we made the facebook deal with it oh wait all you kids on facebook do instead is cry about things on the facebook make a fuck ing facebook group about it why don t you,-1 +you are one swell headed prick no one gives a shit about your opinions nor do you impress anyone with your bull shit conspiracy theorys my ass are you one of those sapps who still insists that oswald killed kennedy you probably drive a honda or toyota do you know what a pussy looks like ever get laid,-1 +your still a dick ace dude,-1 +not me doing the shocker bitch,-1 +the dangling semi occured in the driver an elyrian woman was unhurt but she shit her pants,-1 +how the hell does fighting him at memory s skyscraper or his fighting style clarify something as ambigious as darkness that s what i mean by clarification defying gravity doesn t mean they use gravity when i jump i defy gravity but that hardly means i can control it feeling chatty edits,-1 +get fuck ing lost i know you are sad but keep it to yourself,-1 +hey jeremy fuck you and fuck you alan good to know you mother fuck ng pussy s protect each other get a lfie with your empty threats you fuck ing faggot you fuck ing stickingyour bare unprotected dick within each other s ass hole s fuck you cock suck scratch my ass hole and condensate the moisture from my dirty rectum onto the roof of your mouth then give me head,-1 +we should point out her filthy political philosophy who gives a damn if she s shagging some toyboy we should be pointing out that she believes homo sex s deserve instantaneous and painful death much like in uganda,-1 +fuck you fred fuck you you bitch ass punk u can suck a dick deleting everything fuck you ho go to hell you dumb ass your a bitch you stupid ass mother fuck er put a big stick in your mouth and leave,-1 +your obessed with user knowig what the fuck is wrong with you seek psyriatric help,-1 +fuck ing whore you are such a dumb bitch i didn t make any changes whore,-1 +why you are a bastard i hope your dog dies,-1 +fuck you hey fuck you who the fuck checks phnom nam lyr wildlife sanctuary for vandalism get a fuck ing life you turd bag,-1 +renault you sad little bpy for driving a renault clio which has no vaa voom so there and the mcflurry is made of shit,-1 +what facts you fuck ing idiot the facts from turkish security forces scumbag,-1 +this guys a fuck in prick and if i ever come cross u in public i swear to god i will fuck in kill ur ass,-1 +friday th paris dead thank fuck ing you,-1 +faggot it is a dysfunction sex and corruption of the brain you faggot,-1 +listen to me stop acting like a idiot he was confirmed by a reliable leaker facepalm again stop acting like an idiot the dojo is reliable e all players said they were they said marth and roy are not in wth who the hell would be the rep gasp game and watch might not have his melee symbol o look at mario ar speculation my ass listen to me stop being an idiot,-1 +that s it you fuck ing pig you spread your propaganda too much you made this article your own imagination,-1 +my thoughts you re a jackass does this look familiar to you never mind the chinese japanese crap here are the doobie brothers eat that up you pussy and i hope you die,-1 +eh fuck you i dont give a shit,-1 +um yeah i know it is go fuck yourself and stop being condescending while you re at it,-1 +i did provide a source you fuck ing dumb ass and the information is correct jsut because you are a fuck ing dumb cunt don t blame me did you not watch the actual ppv dumb fuck,-1 +hey freepsbane does your mother know that you have been getting fuck ed by for some time now,-1 +hate to rain on your parade riggr but you you do know its all bollocks life and barnstars all that shit you have a lovely template now awarding you but will someday die alone as the rest of us i suspect na na on your sunshine mother fuck er,-1 +are all professors of rhetoric pompous self centered ass hole s or is it just you,-1 +dickhead don t be a dick and add stupid and clear vandalism to articles it isn t big and it isn t clever now fuck off back to w hate ver vile cunt spewed you out,-1 +you are a flaming turdmuncher not only do you devour turds you enjoy it i hope that michael vick gives you genital herpes you will probably enjoy that too you stink henry hudson really was a buttmunch and i feel that the world needs to hear of his buttmunching ways thanks for nothing dick ace,-1 +picture suck s this new picture of the undertaker in the ring suck s get a decent pic,-1 +you are a pretentious faggot just saying,-1 +at your fat fuck ing ugly ass,-1 +stefano it would be a much better world if you kept your nose to the grindstone and give up on stefano you have behaved well for the last couple of months it would be a shame if you went back to pissing all over yourself every time you thought you smelled a sock please try hard not to be such a dumb ass dumb ass,-1 +i guess it is perfectly possible that in the states did attempt to make all the powers of the councils similar anyway i think a small section mentioning the differences would be better then nothing the various legislation can be found at http w austlii edu au databases html with this if you wanted you could come up with a really detail list of differences i m not doing that just now though if ever fuck you,-1 +you fuck ing guinea wop greaseball guido new york piece of shit go back to your bumfilled aids infested cesspool of a state,-1 +thanks you chasewc nightscream makes from good article https en wikipedia org wiki umbrella music video really shit thank u for this fuck u bitch es,-1 +fuck you fuck you you stupid bastard i don t care what you say,-1 +you smug son of a i just don t get why daffy said the bi word only it was cut off which is good because y wood u wanna hear someone curse,-1 +want a fuck ing medal you dirty jerk,-1 +just a bunch of inch gay fuck ers slapping each other on the backs for being cock smoking losers,-1 +question ira i have a question for you well two actually when jimmy b nds over so that you can kiss his a does he mind when you slip your tongue into his hole and what does it taste like,-1 +faggot you lil piece of shit i haven t vandalised nothing i will fuck u up wh,-1 +you should bar the self proclamed ass hole forever,-1 +fuck off fuck off,-1 +if you chew the chew your balls will turn blue,-1 +truth that s fine go ahead and block me doesn t change the undeniable fact that chris is an ass hole,-1 +i m a total nigger cock suck ing faggot,-1 +as it is now this mother fuck ing ass hole keeps revert warring without talk page discussion,-1 +go to hell you won t be laughing after i contact the sysops to revert your vandalism have a nice day you trans misogynist fuck cfe fa e c de c,-1 +wikipedia ettiquette all the free porn you will ever need you fuck ing dick ad is available at w youporn com,-1 +hey fuck head hey just wanted to say hey fuck head seeing as you re a complete fuck head do not forgive do not forget fuck you shit bitch go on ban me that s the wikipedia way just shut out the objectors to the admin power trip and go on with your day if people like you ruled the world we d be extinct before we were ever supposed to be again fuck you shit bitch,-1 +you are such a fuck ing faggot there s no need for references for something that can t really be reliably cited even if there was a sociological study on people who have apd coke drinkers and cocaine users it wouldn t be very reliable because there s no way to tell if people are lying fuck off you beaurocratic official peice of pedophile and that citing and copyright shit has got to go i refused to make bibliographies in high school for one reason i never claimed that the work was mine and i shouldn t have to claim who s it was because it s self explanitory that i didn t make it since i didn t claim to have done so,-1 +there are many things i d like better than to see you gone i d like to see you contributing to wikipedia in your usual high quality manner and i d like to see you involved in less heat and static i d like to see you not show up in wqa threads that are easily avoidable i certainly recall seeing you choose to say or do things that would obviously and inevitably lead to heat and static and then when shit happened you played dumb about it you re not na ve and you can t fool me into thinking that you are so yeah i d like to see less of that kind of nonsense i d like to see your good work continue and your unnecessarily provocative bull shit end that s a pretty reasonable desire isn t it,-1 +you are funny fuck ing yankee ignorant,-1 +what is your fuck ing problem,-1 +rotflmao this is a fuck ing riot,-1 +fagit drew likes penis,-1 +cunt cunt cunt cunt cunt,-1 +you are a faggot darry was here as a faggot let me talk trash to kurt warner,-1 +mtking is a racist piece of shit against mma we use those pages for knowledge and revising past events if an tv show has an page per episode how cant an sporting event that happens around once a month not have a page,-1 +your all geeks get a fuck ing life,-1 +fa real dhoe shut dha fuck up she tryin to make sho aint nobody vandalizin hey aye bighead thank yooh fo the award i love bein coo,-1 +mind youre business hey stay out of my personal matters i dont care what you think so you can blow my balls wrestlinglover,-1 +jetstreamer sad reality that guy is a gay a homo sex a passive one very insecure in himself and he s a racist who hate s serbia and that s why he keeps deleting this article i also heard he s got some ukrainian uncestry which is hard to believe given how stupid he is ukrainian people are not like that or closed minded to top this beautiful cake all while being gay he is roman catholic lol i would like to ask the pope what he thinks of that maybe he would give him a few durex or two the retard is still using the outdated mozilla he thinks that he knows british english while at the same time he consider himself a fan of aviation in which he s obviously clueless that is the sad picture of our jetstream user sorry paw wikipedia is not the platform to vent your frustrations and diseases now fuck off from here once and for good,-1 +fuc you dale fuc you,-1 +no i don t have a lot to learn you have a lot to learn because you don t learn at all i never knew wikipedia is full of such cretinous fuck ing twats like yourself,-1 +how much does it cost to buy your way into the inner circle where you can do w hate ver the fuck you want to and anyone who complains gets banned i have as much disposable income as these other jerk s i think what i shall do as the owner of http w clanyoung info is to invoke copywrite and remove my contributions,-1 +yo hey maggot how to fuck you doing bitch,-1 +erm your gay i dont appreciate you being a grumpy old twat and changing my posts you dont own wikipedia so please fuck right off loves xx,-1 +also good use of fuck as you noted it s well tolerated on this page talk contributions,-1 +anal butter with cream anus,-1 +hey fuck ing retard i was deleting my own post quit sending me fuck ing sandbox warnings you fuck ing retard,-1 +fuck off you son of a bitch,-1 +racist faggot s that moderate wikipedia are going to meet their maker,-1 +fuck you kansas b tch,-1 +dat chick omg i didnt vandalise nuffink yh just expressin my opinion and makin conversation innit get a life get a job fk u ennit,-1 +ben evans likes dick so does this william thompson douchebag i can t believe this gu is still alive,-1 +hi if you know clown will kill me guy then tell him that he is stupid ugly fat gay his mother s a whore he smells like shit he s an ass hole a bastard and his little name just might be the gay est fuck ing thing i have ever heard hey and you are a faggot as well so don t ever send me a message while i am editing pages again or i will rape your mother and kill you,-1 +fastily take it up the ass douchebag,-1 +bicth bicth bicth bicth bicth bicth bicth bicth bicth bicth bicth bicth bicth bicth bicth,-1 +i fapped hard to this this page made me cum all over my computer screen many thanks wikipedia,-1 +fuck you fuck you again,-1 +fuck ing faggot hopefully somone rapes or eats you soon you fuck ing idiot,-1 +read you mother fuck er or you shall fuck ing die you cock suck ing prick you can go to hell you fuck ing cock suck and now i shall go ahead and masturbate,-1 +will someone tell this ass hole who keeps deleting that bernie sanders is a divorced man that it won t work i swear the liberals that control wikipedia can t even use google the man has been divorced you dumb bitch but this guy immediately deletes that from the article without bothering to confirm it s truth,-1 +hi hi mutha fuck aa how are you man just wanted to wish you a very happy new year,-1 +suck it dry my balsack,-1 +user ip you are a mother fuck ing pervert if u vandalize anything again with references to sex ity and genitals i m going to cut your penis off,-1 +well fuck u ur just a twat,-1 +fuck ing germanian piece of shit,-1 +you are a little bastard get a life and or masturbate more often,-1 +again not half jokingly how do i remove the picture of this drugged fuck ed up face of a cia analyst staring at me from the top of each page i open,-1 +im a faggot i also hate black people nigger s,-1 +the various local government areas pages only list them i was thinking something like that these three paragraphs are from a couple of papers i wrote they can be incorporated into the article the states and territories run the majority of the government in australia and devolve some of this power down to local government local councils because this devolution of power happens on a state by state basis in different states the local councils have different powers though generally they provide water sewerage and look after local roads with the states looking after health education police and so on tasmania like the other states has a constitution unlike the australian constitution the tasmanian one is simply an act of parliament as such to change it requires no more then a majority in the parliament not a referendum this constitution among other things establishes local government in part iva local government tasmanian constitution however this part while establishing the fact that councils will exist leaves open how they are operated and what their powers are both the system and power of the councils being provided by the parliament from time to time tasmanian constitution it is the local government act referred hereafter to as either the lga or the act that currently provides for the creation of the various councils the role of the councillors what power the councils have and so on the act requires that the various councils provide for the health safety and welfare of the community represent and promote the interests of the community and provide for the peace order and good government of the municipal area generally the act permits councils to do anything necessary or convenient to perform its functions either within or outside its municipal area specifically the act provides for the various councils to have the following powers among others to charge land rates service rates special rates and to levy fines in relation to by laws and to make by laws in respect to anything the council has power to do i m sure the other states have similar legislation fuck you,-1 +and now u complain about my pictures bloody typical of you wikipedians i try to help and all you guys do is complain you know what im going to make another article about something else if you dont like it then i dont give a crap,-1 +almost famous you are not and administrator and therefore you have no right to restore anything on my talk page you have no right to warn me this is my warning to you stay the fuck away,-1 +hell no dont you fuck ing talk back to me,-1 +virgin my only warning you ll block me well fuck off you probably get off from warning people on wikipedia don t you i bet you re still a virgin fuck ing homo as for your warning shove it up your ass and fuck you,-1 +for everyone s info i don t give a flying fuck if my account gets deleted block i will changed my ip use a different email and become a troll vandel jack in,-1 +hey fuck wit femto isn t me aug,-1 +stop reverting me you moron,-1 +lots of that other shit does not have a category for themselves terri does,-1 +oh so it s you who wants the considerable amount of harm then is it you fuck ing cretin you seriously think i m going to stop vandalising just because you block me i have a massive range of ips and you will never block them all i am never going to stop either hahaha,-1 +even if we hate furfags and llolis and kid fuck ers,-1 +just shut up you boring old crap nobody even likes you also wtf is all the damn copyright pics wtf is that god you really should get off the internet study you uneducated dufus anyway it s hard to communicate with somebody as stupid as you also why should i do what you want me to do i can do w hate ver i want you big loser user pic business,-1 +when you come here to say naughty naught go fuck yourselves,-1 +and having a fuck in bitch ass day,-1 +eat shit eat shit and die arseface mutherlicker,-1 +have the balls to respond you little hawaiian vag i know you probably won t and just wait for someone else to but there s no need for you to smell like stinky tuna,-1 +hey you cunt armchair lawyer do you like it sitting in your mom s basement trying to act like you are know it all go fuck yourself you stupid cunt bag,-1 +the best remix for p i m p i dont kno what u herd about me but a bitch cant get a blunt up out of me i drop slobzz where im from and imma g cuzz imma mutha fuck kin c r i p brandon santiago,-1 +go fuck yourselves obviously you all are a bunch of pricks who claim to be admins but don t do jack shit to help people also as per your dismissal of next step realty as being as relavent as someones big toe obviously you aren t in touch with reality considering next step realty is one of the biggest if not the biggest up and coming real estate referral company s in the world clearly i had greater expectations for admins on this site and obviously i was wrong why even call yourselves admins if you are just a bunch of faggot s,-1 +biggus dickus blow me senor freebie fox news is the number one news channel in america maybe if you were an american you would know this also i don t think my user name is offensive you moron do you even know who the fuck biggus dickus is he is a very famous high ranking roman centurion who was also best friends of pontius pilate the guy who had jesus christ crucified,-1 +february renzoy stop erasing my edits now or else kakasuhan kita ng paglabag sa cybercrime law last warning mo you mother fuck er,-1 +message to attackers leave him alone what has he done to you you ips who attack this user give honest ip editors a bad name this shit needs to stop now,-1 +rob you re a little coward and thuggish boor if you got the stuff come to wikipedia review and tell the world why you not a grand dick ead,-1 +and i believe you re being an arse but hey i cope,-1 +hey you have a giant penis is that what allows you to moderate wiki so well d,-1 +stop vandalizing seriously mang ain t y all got nothin better to do than fuck in vandalize my talk page with some error messages i mean like omgrofl or what have you,-1 +you are a fuck ing cunt and a half i hope your mother s vagina is rape with a chainsaw you shit eating pedophile,-1 +shit you block as your reason was because of you needing to learn not to be an idiot what the fuck you re the idiot why don t you learn how to put a sentence together p s you re a cock blaster,-1 +suck my sockpuppet faggot,-1 +your mama advertises her fat ass jun utc,-1 +itnc i bet you touch people just like sandusky rot in hell,-1 +not anymore you could rename the site to suck ipedia i have a source that justifies the name change to suck ipedia it s right here,-1 +i am not block i just got another warning why are you such a dick dogblue,-1 +i m not foolish you mother is foolish you prick and replay to me on my account not on my ip your such a nerd with acne that will probally die alone thats a shame thinking your all cool going on wikipedia everyday of your life and not doing anything if your a teenager that just makes it worse it has a link now and im yrs old your probaly a year old man that lives with his mom,-1 +fisherqueen can suck my hard cock,-1 +look what i get when i search for ass kisser kimp spewage,-1 +personal note please read wp spoiler before making a dick move like that,-1 +dear gwernol u useless cunt molesting nigger tard go fuck dvd rw s inch albino cock dear gwernol u useless cunt molesting nigger tard go fuck dvd rw s inch albino cock dear gwernol u useless cunt molesting nigger tard go fuck dvd rw s inch albino cock dear gwernol u useless cunt molesting nigger tard go fuck dvd rw s inch albino cock dear gwernol u useless cunt molesting nigger tard go fuck dvd rw s inch albino cock,-1 +rutherford b hayes edits please refrain from making unconstructive edits to wikipedia as you did at rutherford b hayes with this edit not a chance you little shit,-1 +fine then at least i don t like little boys like you do bitch,-1 +last chance you dick,-1 +you know what you guys don t care about history you wikipedia corrupted piles of shit can burn i will contribute to better sources being block because you guys are filthy most if not almost whole pages of articles are not even in consensus and factual links except some linked to nothing of significance is accepted,-1 +bitch ill never stop vandalising your shit so fuck you,-1 +first off avril lavagflaps is a suck ass singer who would get her punky little ass kicked by gothic babe amy lee any time of the month well except for that time of the month were she gets her periode and turns into a werewolf,-1 +you piece of shit fuck ing block me then pussy go ahead i don t give a care if you are that of a fuck ing girly bitch fuck you boing said zebedee what the fuck kind of user is that fuck ing mindless block addict retard,-1 +i want to be a fuck you that s a song,-1 +wankers only on wikipedia eat your fuck ing american ego,-1 +a sentiment for you fuck off you giant twat,-1 +mo go ahead and delete my account if you want but bwilkins is a f ing nazi and i have better things to do than waste any more time on a site that allows s like him her to be d s,-1 +lol wut the fack is this shit lol wut the fack is this shit lol wut the fack is this shit lol wut the fack is this shit lol wut the fack is this shit lol wut the fack is this shit lol wut the fack is this shit lol wut the fack is this shit lol wut the fack is this shit,-1 +wesley bartz likes to suck cock loves that cock he can t live without the cock,-1 +btw there are over register republicans in the th so back of your psyco delusions that evey person that edits on roskam bio is a sock you dumb fuck s are with out control and are totally in a zone of evil,-1 +u no flip that dick ps thankx for the block,-1 +shut the fuck up you ain t even staff and venior can go fuck himself that prick fuck er,-1 +thak you for the link to that article you just showed everybody how stupid you are because that article right at the beginning says this telling someone don t be a dick is something of a dick move in itself ha ha you are a stupid dick,-1 +and you are a jackass for doing so the same disclaimer is on every hiv antibody kit with very little variation,-1 +please don t be a cunt and make threats please i just wanted to discuss the issue the criticism portion is a complaint about school rules that s irrelevant for an encyclopedia entry have criticism is fine but these criticisms are not valid for an encyclopedic entry and further are a pov every school has rules do complaints of the rules belong an encyclopedia,-1 +fk off fk off you dragon ball nerd you like animey and manja you son of a bh you were fking mean to vegetasaiyan the fking nerd go fk off and get off wikipedia you fker,-1 +it does work to turn off ur router cos ive already been block once and now i can edit again so fuck you ha ha,-1 +ass hole you are an ass hole wiki nazi freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freehttp en us w mozilla com en us firefox central getting starteddom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom freedom free,-1 +you re a fuck ing idiot,-1 +skins edits i see you went a bit mental over my skins edits you are quite the insecure little loser aren t you i mean i won t be too harsh you re from kent and you re a nerd who does computer engineering so i guess talking to people on wikipedia is pretty much the pinacle of your social life especially considering how ridiculously ugly you are with your hangdog expression your long face large strange indents under your eyes and what i can only assume is a broken nose clean yourself up mate ps university of kent is a piece of shit,-1 +well a new section i hope you read this i cursed at you previously and it was deleted to be honest if i was face to face with you i would have cursed at your mother your stupid fund raising mentality and your inexistance at wikipedia doesn t represent your existance in my humble opinition you re an idiot not only an idiot you re a dumb and stupid one for this whole wikipedia society your democracy mentality lead to religious fendementalists to own and conqueer turkish wikipedia and as a founder of it with your permission to your free world i want to curse to you i wish i had had sex with your mother and your grand mother i wish i had your mother with your not eighteen daughter and all your siblings and i want to do it just because you alloed me so your unmarried sisters and your daughters are such beautiful sluts just like you if you would be a girl and from the bottom of of my heart as you being the democratic president of ass hole of the freedom of the unfree world i would like to wish that at least people fists their head to your nazi ass have a nice day,-1 +i am a stupid whore who suck s dick all day i am also trans gender and have a penis so i can fuck myself,-1 +barnholestar for being the worlds biggest faggot i hearby present you with this crazy azn mofo barnholestar it s look at you image kris jpg,-1 +hey look at this shit vandalism first image on the web,-1 +why are you such a bit h abusing your powers as administrator to silence opposing points of view was your granddaddy upa member or something ps it only takes a few days to make a new account cheers,-1 +what the fuck is your problem,-1 +i hate this site but you know i ll do everything in my power to make sure each and every one of you fuck ing nerds pays i hope you all burn in fuck ing hell you bastard s go fuck yourselves,-1 +u are a bitch nigger fuck u and the guy who block cookiesandboobs rom mynameisearl,-1 +i will kill you with my gun ass hole,-1 +fool you are another fuck in moron on here along with wobbs and epf so whats your ethnicity irish dutch what is it you dont even know what ethnicity is about you fuck in douchebag there is no modern british identity thats different then what it was before you fool foreign people and ethnicities races dont count as british you fuck in puke bag,-1 +stop trolling warkosign no one likes your politician i am the consensus you mad bro shit,-1 +think on this fuck you,-1 +you dick you re a big anti japanese dick you know that i think you should be given an indefinite ban that s what you should get an indefinite ban,-1 +this is bull shit i hate you all,-1 +your mom is a monkey butt and you suck her monkey butt bitch,-1 +noobs i have contested the speedy deletion but as a man who respects the rules set in place i have not removed your request for speedy deletion re and atleast isbiggerthanrowan s i just thought i would bring this to your attention too thank you for respecting the rules please understand no one is picking on you for being new simply put neither the label nor the band meet wikipedia s notability requirements for music at this time if that changes in the future you are more than welcome to resubmit them both thanks for having the decency to explain being new plays little role in my concern this is in fact not a new concept to me it is simply a lack of practical understanding of the scripting used in wiki stuff and in the meantime i appreciate your forwardness i m sure it will not be too long until we can do all this again user name not sure exactly why but your user name is genius and is cracking me up thanks very much i try marcus ramone cooper well we did put do not delete the page we are working on it could yooh at least give the page an hour after being created or so we just made it my sistaer and i i got it covered lol i got it covered i found the template and i am goin to add it now but thans anyway oh and i can see u were about to delete the page me and ma sister the girl in tha comment above dis one aka nicki bookie made u realy should be a little more considerate when wikipedians put things like we are working on it dont delete no offensee none taken likewise there is an under construction template you can use for new articles rather than do not delete dis page cause we still editin it which really doesn t belong on an article page under any circumstances thanks lol thanks j j m roberts i saw you had notability concerns about j j m roberts i expressed the same but another user suggested that holders endowed chairs at major universities are almost always notable if that s correct i guess the question is is roberts an exception to the rule talk contribs thanks for bringing this to my attention it looks like he wrote some books too i m removing the tag and hopefully someone can expand the article arson committee what more information needs to be added references for one two college newspaper citations and two myspaces doesn t cut it i tried to look for some myself but google yielded very few related hits more than ten minutes of recorded output for another a label right now the whole thing smacks of blatant self promotion and that isn t what wikipedia is for is there a way i can get that page s back so i can save it and re enter it when they have more references any admin should be able do that for you i think what right does a burned out stoner have to tell anyone they are not credible you know i get that all the time what the fuck bongwarrior really dude please don t infringe upon our liberty to cover our hometown the meaningless stats do little to reflect the true character of elkhorn however the dating scene section certainly does happy bong hitting i wasn t infringing anything i was reverting obvious vandalism,-1 +please go check her instagram dumb ass how can she live in tampa when she s engaged to souray you retard,-1 +image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls image scrotum jpg suck my balls,-1 +you fuck ing piece of shit,-1 +being original hasn t ever been my strong suit so here goes something cliched to death go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself go fuck yourself,-1 +very clever faggot,-1 +your a little insignificant mother s lover you mother fuckerucker fuck a what ya thnk of yr self u dumb ass u thnk u r v smart u son of bitch fuck your mother by,-1 +in addition i see no sock puppet jackass,-1 +i feel honoured that you took time out of your busy cock suck ing schedule to leave this little message for me not that i m going to listen to a guy who likes taking it up the ass dry,-1 +don t post on my profile page you fuck ing cunt talk,-1 +you re a mother fuck ing prick so you don t agree with my comments on alcohol huh well i don t know where you live if i did you d be dead by now but you fail at life for supporting alcohol go kill yourself you ass hole,-1 +fuck you fuck you putang ina mo bull shit na bakla ka hayop ka putang ina mo mag chupaan nalang kayo ni nrdg dahil both of you are desperate gay s na walang magawa sa buhay fuck fuck you putah ka,-1 +fuck head fuck stick wikipedia wanker up yours,-1 +i ll fuck you forever,-1 +you my friend delted my edit now u can suck my cock,-1 +because you re a dumb ass mastcell that s why,-1 +like i said cunt,-1 +dude i m not angry at you i just think you re a stupid fuck wit now go give rahm emanuel a nice long thorough rim job reward him and the man for lying their way into office and now reversing their position on every campaign platform you are one stupid fuck if you actually think the democratic party is even worth wiping your ass with thankfully i don t live in the sinking ship usa and it will sink even faster with ass hole s like obama emmanuel pelosi the billionaire cheney etc what a fuck ing disaster ha ha d america s image is a steaming pile of shit,-1 +man why are you so angry that word fuck ing which you posted on my talk page was really unnecessary with that kind of words i must say that you are completely unable to cooperate with other users on wp i ll wont post new messages to you nor i ll respond to yours because i didn t came to wp to be insulted but to improve articles as for stubbornness it s also one of my characteristics so if you want to engage in an edit war with me i m here,-1 +fuck you stupid ignorant him is a love metal band,-1 +why are you being such a nigger lover faggot and reverting my edits,-1 +douche bag know the band sublime before you tell me that i did something wrong it clearly is stated in many interviews and even in their documentary that miguel happoldt did everything that the band members didn t know know your shit,-1 +osfan i still think you re a piece of sh t,-1 +hey where the fuck did the rolling earthquake nickname come from i havent ever heard tht,-1 +robert ullmann suck s dick,-1 +this suck s i just got block indefinitly,-1 +shut up vs fuck off so you re telling me being told to shut up isn t a personal attack fuck is just a word like any other,-1 +knob jockey your a fruit for deleting my page ass,-1 +lol damn i got a competititor p i am the athiest god lol,-1 +your very deeply offended man you sound like a blow jobbin old lady in fact you are a homo sex blow jobbin old lady,-1 +the bitch mother who bore them all muajaja,-1 +i m going to start killing these ass hole s chin chin,-1 +ed cole fuck you and ed cole harry sweoger new york jew,-1 +jack and jill hey jackass don t protect that page you are taking the fun all out of it jack and jill went up a hill each with a buck and a quarter jill came down with two fifty oh what a whore alan who knew your momma was named jill ok i am off to vandalise something else catch me if you can,-1 +also i said unless you suck,-1 +wow you re so clever so smooth stop being an ass so we can compromise,-1 +are you cracy you sick nigger i am from the region and i am actually of turkish descent and consider berbers bedouins and poor exotic wretches but they are at least white how dare you filthy nigger presume to know about the region s history i suggest you visit for a good lynching nigger,-1 +you are a son of bitch turk just to let you know you know nothing about azaris or other iranians turks are backwards and the whole world knows about your backward culture and people you try to pretend you are europeans when the iranians are really related to the europeans and do not care but you turks would kill yourselves to be europeans or white,-1 +u think i get impressed by some fuck ng swedish ass hole who has been on wiki for years hell no official press releases by media outlets have been accepted for years now and so will this one be,-1 +ok then go ahead and block me my people has been called dogs bastard s and prostitutes by sitush and his gang you don t seem to be having any problem with that i don t care what the fuck you are go ahead and ban me,-1 +dutch penis yummuier especially if its mine,-1 +go and die you nasty pathetic individual i will do my utmost to have you kicked off wikipedia forever you bastard,-1 +if you dare to do your bull shit edits in prithvi page you will be fuck ed upside down dont you have any work other than shit ting in wikipedia bastard let me see how long you will be able to revert the edits in the page from your well wisher,-1 +slow ass i pedia i mean really with a site this slow you reckon it is smart to be messing on insignificant userpages the way you do no wonder it slows down like you wouldn t believe,-1 +one trans lation you are an impotent fuck er,-1 +fuck you you cunt i had a whole documentary about cock us americus,-1 +terraria stupid editor you no shit about terraria fuck er,-1 +there is this racist troll called kansas bear i call him kansas the arm taker this moron is supported by foreign government agencies a person like this has no place in wikipedia racist groups should not be in wikipedia at all he is stupid troll when you see him just report him right away,-1 +you suck deadly assassin is gay,-1 +tickle my ass with a feather yes yes yes oh you re driving me crazy,-1 +figure out the main profile that created omnicron and delete everything about him i was once the webmaster for theofficial sites of both of these celebs and it s theonly edits he made deleting the external links don t have time for these ass hole s i would prefer my clients not be associated with wiki but they are here therefore the official links stay and the trolls go or i will just take legal action you choose no i will not id myself and i have plenty of systems to login from so just do it my message to the troll to http en wikipedia org wiki user omicron well the proof is in your psychotic editing routine get a fuck ing life already jesus christ how sad you must be to exist how interesting that the only contribution you gave is to http en wikipedia org w index php title kathy najimy diff oldid and http en wikipedia org wiki sam harris singer and the only thing you do is remove the links to the official web sites and ironically both web sites had the same webmaster at some point hm using this omnitroll name like i don t know who you are retard you can stop vandalizing those two pages now you fuck ing pathetic moron cc jimbo wales rootmyass,-1 +please read before adding any more rubbish as far as i can see wikipedia has become a very turgid shadow of what i originally signed up to and i really can t see any point editing it any more having followed the climate articles for many years and now having a great deal of expertise i can no longer just sit back and hope that wikipedia will some day come around to a npov there are certain simple things that are so obviously pov pushing that it beggars belief that they still go on not using common names when they are used by everyone else not admitting simple facts like it is not currently warming pretending global warming is a scientific issue when everyone knows it is mainly political rhetoric even when practised by the scientists and don t you dare think i m pushing pov i have not once added anything to a climate article without first seeking consensus which basically means i have never edited a climate article i know what is a npov because i haven t fundamentally changed from when i used to be a global warming advocate and neither have my views on the environment changed i just can t stand people being dishonest and i just think scientific integrity is more important that environmental politics from the day i first tried to get a npov on the climate articles when i used to work in wind and was openly saying global warming is happening till today i haven t once managed to get a substantial change toward npov into a climate article i m angry not because i fuck ing wanted to put the sceptical view it is because you bunch of pr s have turned me into a sceptic because you refuse to see the obvious pov pushing that has been going on and the great consolation is that the climate articles have been so pov that most decent people can spot it a mile off and what with climategate the propaganda in wikipedia is no longer considered a reliable source,-1 +replying to above simply put anus,-1 +ya mutha fuck ers block you guys are dumb asses you d better be a bit more sane or you will face a lifelong sentence in an asylum this is directed at pikang,-1 +read what i say and understand my meaning if you continue to harass me it is your ass that is grass i ve violated no policies you have leave me be,-1 +hello you gajin cock smooching piece of shit how is your me so horny mom and alcoholic dad doin chad bryant,-1 +wikiped idiot s home of the cyber bully and thug,-1 +sbc ybr is an idiot who reverts things without checking on them hey idiot i know you have a hard on for issuing corrections and warnings because you re a wikidick but check this http en wikipedia org wiki life in hell nothing i supplied in the akbar the great article was at all unpublished or made up or w hate ver groening regularly names characters after figures in indian history see apu named after a character in a famous film triology so i m gonna revert it and i don t want to see you making a fuss,-1 +ian weller is a fuck ing dick,-1 +i m so sorry bitch es i didn t mean to fuck up your retard beehive,-1 +why did vladimir putin kill them all shut up you fuck ing criminal kgb ass hole we just know putin did it in film die hard they showed how easy it is to fool an airplane to land but why kill them all who profited from this except nazi russia and former kgb agent putin theres is no free press in russia european union said this journalists are killed if they criticize putin in russia putin is stalins comeback its a common fact that putin hate d some in the polish delegation but why kill all fuck ing animal putin is just as psychotic and insane as josef stalin oh well i guess its the old kill them all just to make sure pigs from finland with hate,-1 +i lost my civility when you started being outrageous fuck ing liars fuck you liar burn in hell for your fuck ing blasphemy i will leave when you stop fuck ing lying,-1 +you son of a bitch rip you mother fuck er,-1 +yeah i believe it how many times have i heard that gay shit before get the fuck off my niggy nuts you piece of shit,-1 +don t fuck ing change the information no the tenchi page when you don t know your ass from your face there are ova s and the original edit was fine not missleading the first ova was like episodse then ova was the episodes up to here comes jurai then ova was just recently released with about more episodes noobsauce,-1 +instead of being an ass hole why don t you actually make an effort to help,-1 +why why do you waste your time on this shit get a life,-1 +gg i thought you miscarriged anyways gg in your baby i would fuck ing knock you up any day,-1 +cuando quiero llorar tv series you fuck ing son of a bitch who hell you think you are i m trying to complete ten article and you proposing delete you re mad let me complete the artcile and we after talk thanks,-1 +suck you suck the di k of chicken fuck ers,-1 +go and fuck wikipedia who the hell cares,-1 +i have added ai ifa iaf approved content to this article i have added ai ifa iaf approved content to this article the homepage of the anarchist internatonal w anarchy no is not nonsensensial try to prove it and you will fail the article anarchist international on wikipedia is objective and to the point the organizations networks associated to the anarchist international are found at the link page of w anarchy no and then there is a big network of networkmembers subscribers related to the different organizations networks as for zazaban i have problems with taking him seriously in a discussion on anarchism net he answered with the following intelligent and a bit ochlarchical statements you re one to talk and just to see how you react fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck fuck source i would not put too much weight on what he means i don t think such comments are funny anarchist greetings anna quist,-1 +mine ur own fuck ing bussiness wat da fuck is ur problem u ugly fat ass mother fuck go suck on your moms dick and fuck ur dads pussy u fat bitch,-1 +to the dumpster where i live because i am a poor butthole surfer,-1 +cry to your pathetic stupid family you fuck ing bastard i will do my utmost to have your account indefinitely banned you fuck ing fajita,-1 +fuck you,-1 +one would say that wikipedia editors will be starving to get a new information you starving to avoid and block to whom is providing any instead of to give a hand with it you seeking reasons for not to provide it how many reasons did you think off in the last days meter that is how wikipedia works i can see it i was fairly drunk when writing that words above it is actually not nice to call somebody like that is it but now i can see the same that you are wankers fuck you o block me for ever i do not give shit,-1 +fuck you ass hole why did you undo my edit you son of a bitch,-1 +fuck wad you deleted my page,-1 +eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore eat my cock you dirty whore,-1 +oh my fuck ing god i m in tears i m hurt i m crying oh wait i don t give a shit,-1 +i m not going to sit here and just blatantly make fun of what you do and who you are however i look at your picture and it s quite easy to see that you re an ugly little parasite as i browse through your insignificant pages on roger royle and harold gaba that must have taken hours to make and i know right then and there that you re a compulsive masturbator i look at all your wikipedia buddies and their comments concerning speedy deletions and harassment via wikipedia and i now understand why there are entire hospitals throughout the world that treat internet addictions so go ahead and suspend or block or w hate ver it is you people do to naughty wikipedia users because i could really careless you piece of shit,-1 +quite frankly nothing is helping due to his arrogance and truculence he keeps getting called a dick as he is acting like one over and over in my view that makes him one thank you for posting my comment over to the ib incidentally what makes you think a block will cure anything,-1 +you are really annoying go screw your lesbian friends need some ice you just got burned,-1 +update why dont u just stop trying to take control and leave the fuck ing article the way it was origionally u stuck up prick your a fuck ing waste of space get a job or a new hobby had the website been fantastic i still would have removed it foolishben get the fuck over yourself uwm,-1 +luna santin is a fuck ing troll as is future impefect at sunrise the whole lot o fyou now for fuck s sake delete fred borsch,-1 +go on maps google com and type in pussy it will go to pussy france,-1 +my recent edit how well does your mom give blowjobs is she better than you please reply i still will give to suck my dick thats a good offer,-1 +it s my talk page you faggot,-1 +i m here to improve the encyclopedia why do you insist palestine exists and that jerusalem belongs to it you have come off quite combative inthis post i don t appreciate it you fuck ing little fa ggot,-1 +eat shit farthead really how notable are walruses idiot jimbo whales,-1 +hey go fuck yourself cunt lick your mother s balls if you must,-1 +i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything i love dick more than anything,-1 +suck my anus and pussy,-1 +get the fuck ing ass off this website,-1 +the word fuck i dare someone to cunt howmany times it is used in this movie i mean wow,-1 +dude did you know it literally slows down cd burning if you don t have the pro version it actually makes it slower the bastard s maybe that should be in the article,-1 +wtf dog chill dem bitch es out yo,-1 +i know what the heck you are doing you damn user charlieechotango from sh ting hell,-1 +nepenthes needs to suck my fuck ing dick,-1 +fuck you and fuck your mom and her dog,-1 +homo sex tity i would have you know your homo sex activity is sinful and you will surely burn in hell for it ask yourself is it really worth it up the ol ass,-1 +dear you you are a bloody cock suck i can t imagine you re from elk grove village so i can t help but reccomend you just fuck off when a real resident says who the notable residents of elk grove are so why don t you just go back to your corner and start masturbating to rick astley,-1 +shit faced loser you fuck ing twat,-1 +please note this user while not an administrator is a faggot,-1 +fuck fuck ity fuck fuck fuck,-1 +fuck off back to india you cunt,-1 +fuck off jesus christ ron paul is a stupid fuck ing loser nobody gives a shit about that fart bag you dumb shit s talk,-1 +racist trying to whitewash the terrorists fine bring it on ass bitch,-1 +wt you threaten to block me but you refuse to pull the trigger even after i posted man tits on your page are you even an admin tell you what it s if you don t block me in minutes you are officially a biyatch sos,-1 +ahh shut the fuck up you douchebag sand nigger go blow up some more people you muslim piece of shit fuck you sand nigger i will find u in real life and slit your throat,-1 +chicken shit cock suck ing pussy bastard,-1 +suck my dick or cock,-1 +how to contact a real moderator neo nazi vandals as usual those fuck ing neo nazi s revert and revert my contributions all the time so whats the point unless i can speak with a real moderator some of those people ya know should perhaps get a visit from me and my best friend who also happens to be a jew he speaks nazi languange too not german but by force so a hole dont come here and say that i make anti jew remarks when you know shit about me,-1 +fuck you fuck you mother fuck er go die in a hole,-1 +you all think you are fuck ing experts because you control the information on wikiplagirism you are all at fault for contributing to the age of misinformation no longer does academic fact stand for anything now it is all about majority fool you stupid fuck s you are destroying our world eat shit love kevin,-1 +p s i love it when balls are in my face,-1 +i have been block because this white guy couldnt handle the fact that his little white baby dick wasnt good enuff me i am just stating the facts i mean thats what this is an encyclopedia i have been around seen alot of different guys dick im talken hundreds the fact is nigger gs dick are like three to four times the size of white guys and theyre way better in bed and women only want big dick not lil pathetic feeble white dick ps if you want proof check my history he is out to get me,-1 +dear sinebot fuck you in case you didn t know if i don t sign you take care of it for me so take those tildes and shove them up your cyber ass mother fuck er,-1 +fat kid whats it like been the fat guy in the office hey fat guy lose fuck ing weight,-1 +hi stupyd bitch frodesiak i will always retard you haven t deleted my articles do you need a list to delet them i can provide you thi list shit hole,-1 +i m trying to help so fuck you soo much you fuck ing cunt i shall hunt you down kill you ever so soly,-1 +hmm what sort of lame duck faggot asher do we have here the it seems we have a friendless nerd who sits in front of his pc all day jacking off to porn unless of course a change happens in wikipedia shlock horror thenm its an instant orgasm and he has to clean his keyboard up from all the cum stains did i mention that he likes to finger dogs arses no well now you know,-1 +ready to fuck up any who oppose me,-1 +lol i got block by a bunch of sorry pedophiles on power trips like i fuck ing care,-1 +i did tell her politely where to place her head in relation to her anus i mean i coudl have been rude about it i was trying to be helpful since i suspected that she does not know her head from her anus and it may come in useful for her to understand the distinction between these very important body parts consider it an intervention,-1 +now you ve done it they should have shown leo taking a crap at the beginning of ever episode brilliant,-1 +i am still a stupid wanker,-1 +your recent contributions why don t you leave my articles alone you spiteful shit,-1 +shall i call the police geez hesp as well as being a coward you are a little paranoid sorry very paranoid you should also call your mummy and daddy in case you are stupid as well as paranoid and a coward speaking face to face is the old fashoined way of sorting out problems you pathetic little excuse for a human,-1 +fuck you you fuck ing pig you mother fuck ing pig,-1 +fuck you mother fuckerucker fuck a penis,-1 +faggot y wood i kare if it r vandilisim u r just an old fuck reading about team hand balls,-1 +this user enjoys suck ing his father s shaft,-1 +fuck yourself you self important web nazi deleting an article about a famous little girl with cancer wikipedia used to be a free encyclopedia till dip shit s like you took over you and your chrony editors are the definition of the iron law of oligarchy,-1 +bloody idiot you bloody freak do not bicker and sulk my name is amanbir singh and i can take you at all levels,-1 +yohan cabaye the yohan cabaye info was not incorrect so if you don t want real info on it u can go fuck yourself because alan pardew did say cabaye was cpfc ces fabregas and he was made fun of by newcastle fans so u can keep puting bull shit on wiki so people are confused u dumb fuck,-1 +fuck u hope your lanchiau will rot and drop off,-1 +trouted you have been trouted for b for life go kill urslef really this site suck s you are a joke really get a life go out into the world,-1 +could you be a bigger dick if you tried lmao locking pages dude dude it s wikipedia not encyclopedia brittanica were you this much fun in high school too killing the buzz of some tampa fans trying to have fun with our new coach s page oh wait you re an eagles fan nevermind i bet you re as fat as andy reid too,-1 +son of a bitch son of a bitch,-1 +hi youve deleted craig cunningham s page he is an actor which is why i put his page on here what have you ever done you sad cunt,-1 +holy shit shut the f up you motherf c,-1 +thanks for the spelling lesson asskrackadacki sometimes i am in a rush got to get my point across before the ban you know no billcj is the lapdog you are just the arrogant abusive prick don t forget to put the four next time so we don t have to guess who is doing the writing lets put it this way jetlover take a look at billcjs edits he spends all his time reverting others or running to his master asskrackadacki to whine about how uncivil people are you are damn straight people get uncivil with you you little weasle billcj if you had contributed one iota of content i would revert you in a flash,-1 +i do not mean to annoy anyone or bring in to doubt their beliefs but this is some crazy shit drink more have sex with protection and listen to rock and roll,-1 +yeah you piece of crap where the hell is seduchia anyways that doesn t even come up in a search engine,-1 +your just a overweight beetch ef you,-1 +concerning your comment about pro evolution soccer it nullifies your whole argument due to the fact that it s shit,-1 +you re a fuck ing idiot,-1 +hmm wow eekster is eff off you a hole i ll post what the eff i want you bitcz ass ho,-1 +fuck ing left wing bastard you left wing liberalist bastard s are enemies of a free and righteous world and ought to be banned,-1 +women the ridiculous section on women claiming that many were forced into work for the first time and the war thus had an important part to play in the granting of votes for women should be removed i will write a new section when i have time but until then get rid of this outdated crap noone has seriously argued this since before the s,-1 +burtalbert you fuck ing suck dick u king ass hole,-1 +whoever used she instead of neutral they is a little p ussy fa ggot i m going to change it to he,-1 +wikipedia s new business pimping sluts like stop that now,-1 +fuck u cameroon protecing illegal edits by mohamad ayoob u will be hunted now,-1 +wanker go fuck yourself you ignorant moron this site is full of shit being peddled by brainless twats like you what exactly is your objective,-1 +nearly headless bitch you re retarted,-1 +sockpuppet i suck ed my dick ou failed again to block me wikipedians ha ha for some nice big juicy sweet cock my number is goodbye lovers,-1 +you are full of rubbish,-1 +wow you fuck in druggo,-1 +hahahaha it is said some listeners spontaneously combusted while listening to laffy taffy i think we are gonna need the citations for that hahahaha fyi i wasn t the person who typed that fixed ok lets get something straight wikipedia is a factual encyclopedia not a opinionated one unless you can show us that it is considered to be the worst hip hop album made and that some spontaneously combusted while listening to laffy taffy which is extremely unlikely then you have all rights to say so dont come and bitch on wikipedia do that shit over at urbandictionary btw i hate the fuck ing album,-1 +snoop dogg offical member snoop dogg is considered an offical member amoung us nigger z you white folkz jsut go by tha script but no one reps wit n w a unless they a goddamn member n thats tha rule,-1 +i noticed you post a lot about taking dumps in the right position you must be a fecelphaeliac i d love to cop a squat over your chest and let one go all over yiu you horny little filth pig i ve got a granite boner right now are you trans btw,-1 +christmas message i hope you die in hell you filthy pig your anime filthy slum apartment plus your renowned dick suck ing qualifies you for no more than head prostitute of your filthy family i hope your father died an early death from painful stds contracted from taking it in the ass from your brother you think stds aren t contracted from ass sex they are when your mom is using dirty needles to shoot both your mom and dad up in the process clearly your mom died of a drug overdose your siblings deserve to be hit by a truck and school bus and then fuck ed by your necrophiliac girlfriend oh wait you ve never had one eat shit,-1 +go fuck yourself you stupid cunt,-1 +please dont fuck with us and,-1 +you are a mother fuck ing son of a bitch you ass hole,-1 +sly sob is a somewhat common teasing expression not a way to seriously call somebody a son of a bitch please learn the vernacular before commenting on it in the future it will save you from some embarrassment,-1 +april utc what the fuck are you talking about,-1 +there you happy i posted a link fuck you and fuck jimbo w hate ver,-1 +oh shit you gon get banned,-1 +good job for suck ing dick dick trophy i dont have to do shit u say and ur the worlds best dick suck,-1 +on account of the project deciding to ignore history i hereby quit good bye oh and tim vickers is a complete ass hole lol bye,-1 +suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck it suck itv,-1 +hey guys this guy is a cunt nigger faggot,-1 +enoy facking small kids and eating pelican shit,-1 +freakofnuture can suck it,-1 +you are a cock and if you block me you are blocking a very large ip address covering tens of thousands,-1 +i can all types of good stuff u just never let me jerk ass,-1 +racists they are nothing but racist little boys with little white dick who want to suck adolf s hitler surely they deserve a less than welcoming page i didnt know wikipedia supported nazi sm,-1 +ima gona slash your tires what the fuck is your problem you little schoolyard picnic bitch this is the mother fuckerucker fuck in guy that did the gears of war thing mother fuckerucker fuck a so ima get mah nigger s all up in yo grill mother fuckerucker fuck a is this really how u fuck ing treat your mother fuckerucker fuck in wikipedians bitch im fuck yo tires up mother fuckerucker fuck a i live in the mother fuckerucker fuck in gangsta streets in mother fuckerucker fuck in la mother fuckerucker fuck a i just got this mother fuckerucker fuck in computer and now im gonna breakin it off your fuck ing egg shaped head bitch,-1 +you don t know the fuck ing jew s you stupid fuck ing wog,-1 +hi afghani beggar refugee i love to suck the puti of ur amma,-1 +you have described the modus operandi of one self described supported of the democratic party gamailiel as had years to hone his finely tuned kraft of bias steering and snarky comments while he wields the ban button to any one he is scared off his history in this is unquestioned his hypocrisy knowns no bounds him and his cadra of meat puppets have long histories of owning wp own and abusing of process and power for his their own political ends plaining stated on his own talk page ready to fuck you up old school in the long run you will hurt wikipedia and your self due to the high stakes nature of this game and the fact that you have no morel or logical ethical leg to stand on,-1 +you changed it back idiot i did leave my reasons in the discussion page in case you have not read it new mexico campaign is completely wrong not allof the battleis in this campaign occurred in new mexico you changed that back but you did not bother changing back the campaignbox or the several other articles connected to it i will be changing it back,-1 +fuck the shit out of you nil learn to use better manners or you will be banned aksai chin deservedly is chinese territory for the people living there are tibetan not your mother fuck ing hindu scum haha so sad too bad china killed you in by the way nil you must really love ass fuck ing,-1 +don t be such a pussy lol it s funny how your panties are in a bunch sad are you on your period,-1 +fuck all modernists i wish the roman empire was still around they would crush the non roman filth modernist scum in seconds roma invicta,-1 +well here this wikipedians i made the flags go on it went up to a good standard i will not allow fools ruin my creationa nd others hard work i will fight it like a mass of christians going to church every sunday if i have to hear this cry if you will i am saving this version so all i will do is repeat it again and again then i may get thrown off this stupid pointless thing but whom gives a shit i come on as a different user sure thing and keep on doing it untill i get my way make neon go some place else go away all the hate rs of national flags the flags which make it easier to recieve information should stick their head up their ass or even up to the sky where god is apparently excuse me for my redemption but it pisses me off that there is this infighting i say what i will as it is my freedom please now neon and the other hate rs get off this dam forum thank you,-1 +utc that is very rich coming from you don t fuck ing call me pathetic july,-1 +fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing cock suck ing admins eat my shit cunt s fuck ing coc,-1 +oh bedwetter please stop your furious back pedalling strangely enough it demeans you as well as anybody else who descends to your dumb ass level,-1 +a day to remember i hate that band but dude how was i vandalizing it by putting easycore that s what they are a mixture of pop punk and metalcore you told me i vandalized the article when all i did was put what it actually is just because you don t think it s a genre doesn t mean it isn t one don t be a dick,-1 +with regards to your recent thoughtful epistle go get fuck ed and maybe you will not be so goddamned gay otherwise go eat a bag of hell and drop dead,-1 +my uncle bob s penis can i write an article about it it was featured in national geographic magazine thanks ben dover,-1 +fuck u gwernol are u even from sefton,-1 +who i am first off i m a faggot not an article creator i ve received good ass in my work as a truck stop cock suck while stealing the prose and research of others cock suck ing is in my mind the best feature of wikipedia my faggot y tastes are eclectic but all end in a jizz shoter i can bounce ten cock s all over the place i ve spent time suck ing off kim kardashian vandals and bbm in richard gere s ass hole and richard simmons s ass hole and assisted in the development of a faggot y article on the jizzmaster himself me the latter of which has since undergone faggot y tranny surgery and a tit job further revisions to my cock include trying to fuck my mother with it which i am not entirely happy about but heck it s a mom i remind you all i am a faggot who wouldn t risk pissing with the seat down so you can tell my nickname is a faggot y attempt to appear edgy i weigh kg,-1 +y u remuv my post agane ey you nigger i said i sue and nao i am you regret it fo evur you nigger,-1 +bye o i ma miss yooh so bad but i can t say too much on dhis lil edit cuz dhat geniac bitch gon say some to me all i m doin is tryna tell yooh bye hit me up on myspace i ma miss yooh luve ya sis last time yooh gon see my siq,-1 +hey you are a chicken shit coward i told you that everytime you had one of your administrator buddies block me i would quickly be back on with a new ip address editing your vandalism of this article i meant it why don t you stop masturbating to wikipedia and get a real life i told you that you don t know who you re fuck ing with,-1 +fuck you you ass hole i edit what i wana edit what eva i do what i want,-1 +hey dick ead please stop posting threats to my page which relate to edits which i did not do,-1 +u mad i ll fuck you blind bitch i ll fuck you blind till you just can t see no more sit on my dick fart on my bals anyway going to change ip so i can mess with junegloom,-1 +your wife isn t half bad can i fuck her,-1 +that isn t me so you can kindly fuck off i wouldn t even need to ip edit you re so clearly in the wrong,-1 +fuck you ckatz you are german cock suck and fuck er mother fuck er,-1 +suck dick u disrespectful swearing wank,-1 +i m afraid i ve become a fat autistic piece of shit i can t do anything but edit wikipedia articles all day and get rustled when they re not correct he s a janitor on the internet on an anime imageboard he does it for free he takes his job very seriously,-1 +oh and do the research myself i don t fuck ing need research i already know the name you re the only fuck ing one or two in denial here you do the research you go fuck ing read every available source about the terminator universe i don t need to because i have and i know stupid fuck,-1 +axe of questioning generic question excuse me but i do not throw any shit strait chirumirianpeaopunguriru bovice nigger i like u nigger im a dog he naw my nigger im in hell im i do not have any cracks feendin shit shit had expected the iphone is required,-1 +my user page hey jew s bitch i was expecting that you will remove my user page too as you deleted my article without providing a logic reason take care your lords will be angry on you about the material in my page it is my opinion and i will not change it you have one of three choices remove the page block my account or go fuck your parents in any case it is a dishonore for me to remain in the same place with a bastard like ou dude i suggest you the third choice it is more suitable to a shit like you did you learned now to never miss respect others,-1 +u are a fuck ing wanker there was no fuck en pakistan or idependent state of pakistan before infact most of the pakistanis are real indians of the muslim faith which were conerted by the arabs i hate you people that attempt to leach of indias majestic history before you pakistanis cant get your own food own laguage urdu is at least hindi own identity and own land india has given so much land to you to avoid conflict ad now you want to take away our ancient civilisations i have had enough indus valley was indian land occupied by indian people god gave india to the indians not the pakistanis remember pakistan is indian land so is kashmir and jammu,-1 +your gay you re a fuck ing faggot,-1 +hey can you please stop it bugs me when some one does that edit a page i did i know i m not right all the time but what the fuck that wwe k roster has been confirmed so stop bugging me and don t threat me stupid bitch if you don t like it get the fuck out i m sure you ve annoyed many people case of incorrect info so shut the fuck up if you can t handle it fuck out and stop don t you dare fuck in delete it edit my shit ever again i m not kidding,-1 +you re nothing but a fuck ing massive faggot you edit others pages without their permission which makes you a faggot you are the satan child spawned from your mother who procreated with your god damn retard ed uncle,-1 +antares this is one big mother fuck er,-1 +fuck u u fuck en stole my cloudsong and if i ever fuck en find u fuck fuck u,-1 +fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your dog fuck your d,-1 +look you moron if the series is t then guess what s the series is moron idiot and as stated here in one of the discussion in this page i agree with christopher thomas below regarding unclarified sources for this article specifically i take issue with the entire differences between the and series section because i contend that there is no such thing as a t stan winston studios which designed the terminators for the films confirmed this to me via e mail when i wrote to them asking their opinion their response direct quote i m not sure where the t came from as far as i know arnold s terminator has and always will be the t model now the robot terminators in t are t s and kristana loken is the tx i hope that clears it up while the term t is somewhat widespread on the internet even extending to t related merchandise such as action figures its origin is to my mind something of a mystery rich stan winston designed the terminator and he says it s t now shut the fuck up and change it back you idiot,-1 +blah blah blah cry me a river go suck a prick you aint even a flo rida fan,-1 +hey bu uddy you really suck a lot of dick,-1 +by the way i see you can t help but whine to others about how my words are affecting the last few brain cells you seem to have held on to fuck in pussy,-1 +vandalism fuck you re an idiot cult members abound leaving a message on a user s talk page is not vandalism nor is removing a protection template from an article that isn t even protected,-1 +harun yahya adnan oktar this is quoted from the wikipedia article on harun yahya even though he often writes about science he has never actually studied any science at a university level there are also many disturbing data in that article he claims to be a moral authority and an expert on muslim ethics but has ass and oral sex with children claiming that it is halal if we are to keep his work in this article he needs to be demonstrated as having some standing as a quranic scholar is he so received in the muslim world is there any evidence for this,-1 +hey fuck face stop reverting my page u gay loser cant u hav some fun u fuck in nerd think ur so tuff big dunc tell me ur adress and ill cum fuck u up,-1 +republic of mosquito faggot faggot get off my internet,-1 +wow funny how i can harass other users by calling them cock suck s on my own talk page the concept of wikipedia is moronic the general public is stupid and should not be given complete unfettered access to change globally accessible content dumb fuck s i m sure it completely gets your little shriveled rocks off to fling your term vandalism around like it is worth anything how about you sit on my huge cock you egotistical power hungry nerd shit eating faggot s d,-1 +who said we were guessing peeweey get a life ya fuck in weedy faggot,-1 +worlds sexiest big nice shaped behined sandy brunchone class of sandy had a nice shaped rear when totally naked her crack was very deep and stinky the ass hole was wrinkly around but nothing hanging around the ends i got a change to see her ass up close and personal one evening she was naked as a j bird and sitting in the front of the car drunk as a skunk the she stated to get in the back set where i was she put one leg over then another now she was in the back bent over in the front with her bare ass facing right at me i couldn t resist i griped both ass cheeks with both my hand and spread them apart and then pushed my face right in her crack and sniffed up in there and when she didn t resist and seemed to like it i decided to start licking her right from her pubic hairs though her pussy over the crotch in and out of the ass hole then strait up her crack while squeezing her ass cheeks all the time god remember maryann on gilligan s island that s what her ass and body looked like she then finely goes in the back sit and sat on my lap and i was fondling her virginia,-1 +yeah go suck dick u corrupt retard ed fat pig homo,-1 +you slut leave me alone,-1 +why dont you fuck off you manwhore and let us lead our life wikipedia is for everyone not just perverted trolls like you you have not assumed good faith you are going to rot in hell you poo snorting deviant and suck mans balls i told you to look up the chaser you are obviously a pov warrior and troll,-1 +the user s final edit was to blank his talk page with the edit summary fuck it the page blanking was reverted because of an active block the block is no longer active the user has not returned to wikipedia and i think it is pretty clear that fuck it is the equivalent of i am retiring from wikipedia it seems to me that if someone has expressed quite clearly that they don t want to come back to wikipedia and that they don t want their sad saga displayed on their talk page for all eternity that is within their rights also i question whether the initial reversion of the page blanking was even according to policy show me one policy that says you cannot blank active block messages on your talk page hm while wp drc is merely a guideline there is a distinct lack of wikipedia policy limiting what kind of content users can remove from their talk page i happen to think there should be policy limiting what a person is allowed to remove from their own talk page e g warnings hours old and active block notices but as it currently stands there is no such policy at least not that i can find if i am wrong please enlighten me if i have to abide by rules i think are dumb then so does everybody else in fact that is the difference between us and karaku karaku disagreed with the rules so he chose to aggressively break them and call everyone else ignorant i disagree with the rules but i realize they have been formed by community consensus and so i will abide by them as long as they are in place and by my interpretation of the current rules karaku s blanking of the talk page should never have been reverted furthermore while i recognize that i was using the word vanish imprecisely it appears to be a longstanding tradition in wikipedia that if a user wants to just leave and clear out the ugly history of their wrongdoing they have the right to do that karaku very clearly indicated a desire to do just that is there really that much difference between putting a banner saying retired at the top of your talk page vs blanking the thing with the edit summary fuck it anyway i m obviously not going to get in an edit war over a retired user s talk page i m just sort of surprised at the insistence to leave all this stuff in place when the user doesn t want it and wikipedia policy provides no mechanism to override those wishes,-1 +three revert rule you goddamh hypocrite catamorphism it s obvious that you think you have exclusive ownership and propriety over this article and even the truth itself and so even when solid incontrovertable evidence is presented you still choose to deny it i really don t care what you do about it you whiny sniveling prepubescent man hating pig you are just a repulsive arrogant little dyke who is merely hijacking this article and this site for her own despicable propagandistic purposes,-1 +i used to be nice to all wikipedians till the day i met wikicology he is a pest in my garden a weed in my farm and a fuck ing virus in my system,-1 +fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing,-1 +mongo gets ass and oral every night from a five year old pig,-1 +bone to pick friends chris evans alright i ve waited my week long block to type this what s the big deal that other ip you block brought up a good point jon favreau lists friends namely vince vaughn leonardo dicaprio does kate winslet too but my question is that why is it fine to have it on their articles but here it s a huge problem and there s always a million excuses trivia or lousy content all i m doing is going off what the other articles on this site did and added it as he ll it should be considered passable due to the amount of films they did together at least note that on the article but no whenever i add it the response i get is the equivalent of being told to go fuck myself i m only trying to help out just because i m an ip doesn t give you the right to push me around and treat e like shot,-1 +ps also guys i know we are lazy as fuck but come on we have to well stop being lazy get some work done xd,-1 +you fat slimy piece of shit i hope you fall through the toilet ya jobie you are one of the mpst uneducated dick i have ever heard of burn in hell you bugger burn in hell ps you are a shit,-1 +hey that wasn t vandalism that user is my firned and i was just having fun you can ask him if u want to buddy just because you have no friends doens t mean you have to be mean to me ass head,-1 +show some gratitude bitch,-1 +whiner you try to prevent people from doing their job just because they re trying to remove their own words from a talk page that s petty i was just doing my job and just because you son of a bitch got insulted you block me huh never mind i never intended to keep talking to you well apparently you don t like to delete things maybe you like to be insulted or ass kicked,-1 +sikh history user sikh history have you got any shame what is the sikh history is fuck ing waste man sort your life out and sikh history out waste man,-1 +go fuck yourself go fuck yourself,-1 +deleting good articles fuck bag,-1 +more rubbish this page contains of the actual amount of news coverage there s been of the olympics so that claim is clearly nonsense there are no differing interpretations here at all there s people talking about policies that they know about and then there s you who can barely even match up a policy to the issue it governs notability doesn t control content in articles recent doesn t bar the inclusion of recent incidents notnews doesn t forbid the use of journalistic sources wp ilikeit only applies to deletion debates etc etc etc you can claim all you want that incidents weren t controversial but merely pointing out that the word controversial isn t in the source is about the thinnest argument you could ever produce to support it and in the case of kim collins it s actually a lie there are soucres calling it controversial i don t think you even bother looking half the time,-1 +i am also a trout slapping dick,-1 +oi reatard how wrote that wikipedia is for poor people i have one question for you if it s for poor people then what the fuck are youdoing on it then ass hole,-1 +go fuck your momma rancie,-1 +fuck off fuck off i don t want self promoting faggot s shit ting up wikipedia if there s a fuck ing ban on vanity pages for people there should be one on vanity pages for shit bands nobody will ever care about,-1 +nigger puppets please don t trivialise meatism specism or make presumptions of others ethinicity and please don t make personal attacks thank you how silly do you want this thing to become we are certainly into panto season here oh yes we are oh no we are not actually the analogy is a very good one as the user vigger pointed out do you think some troll calling vegans mr meatpuppet is not a personal attack,-1 +jews for jesus some jew s love jesus in a way that can t be fully described with words you know in their anus,-1 +mother fuck ed you porki muslim what changes have you made at main section was useless the defeat of porki muslims and moslem women being rape by hindu sikh soldiers in ranchi india jail seems to have made you mad,-1 +dear wanker it s called a talk page for a reason and i m giving you the straight talk you probably know relatively little to nothing about elk grove so when i say i have something to say to you don t be a pain in the ass and just let me make my case that because your ignorant about my town you don t have the right to call what i do unconstructive vandalism,-1 +chicken shit vikie addict you are a liar about your service you are not missed,-1 +wow i saw how you deleted my addition to gone maggie gone you really must be a lonely piece of shit if you had ever watched the episode you would see how it is a parody of o reilly and only him in that scene i reported your deconstructive edit and traced your ip it also seems like you are a big neo nazi fan of o reilly and will do w hate ver you can to protect your friend in christ let s begin the edit war go fuck yourself faggot,-1 +u iz a bitch donny s mom,-1 +wtf yo bro why you deleting my posts what s your problem man i m just telling it how it really is don t be jealous that u dont know the truth aight bitch,-1 +jackass i think some people on wikipedia are getting like little brats going around trying to bust people you just have a lame life and you re trying to make up for it by pretending you have authority you kid yourself into thinking you re a badass by picking on other users,-1 +i was just indicating you fool stupid jew troutman,-1 +hey why must you be such a shit hole fuck off,-1 +no i fuck ing rewrote the whole article already first as an anomymous user it was a mess of the article before i did starting last year or early this year i don t remember i provided most of reception i rewrote most of everything else hello,-1 +i struggle to understand why you give a damn so much go put that anger towards something else the few black hell minority contestants on survivor hardly ever get recognition go suck a penis or something,-1 +fuck all wikipedians and sinneed ah yes i have returned,-1 +why did you block i read all the hulk comic issues fuck you for blocking me you idiot,-1 +when the fuck are you goona change the new england article to fit facts boston is no business or cultural hub for ct period,-1 +hey you re not the only irishman editing this damn thing,-1 +i didnt fuck ing change the genre i just put commas in between them,-1 +twit your just another petty fascist you clowns are feeble certainly in mind,-1 +i ve only taken a cursory look at the article but it looks like you made a good point i can only think of a handful of shows to have featured three gay characters in a season and i d agree with you that it should definitely be put in that category regardless if you plan on making more edits like this and this you might find yourself with a block extension b s a good administrator and rr s called bright line rule for a reason and considering that edit warring blocks are to get users to cool down if this is how you responded it looks like he made the right call je vous invite me parler buck winston fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me fuck you i won t do what you tell me mother fuck er ugh,-1 +so if i do that and include refrences and all that shit can i write my article without you interfering,-1 +you bunch of cock cucking toilet scrubbing tit licking fanny kissing ass wanking bastard s i hope you all rot in hell especially guy walters,-1 +it s not vandalism you stupid cock suck why are you such a fuck ing cunt rag,-1 +veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s veggietales suck s,-1 +fuck you fuck you get a vinyl and put in your mama ass your scrotal dj,-1 +you nasty a bear is satanic creature that is a godless killing machine that steals are pic a nic baskets and are honey jars hey you fool i was stating a fuck ing truth stephen colbert does state that a bear is satanic creature that is a godless killing machine that steals are pic a nic baskets and are honey jars you can go check his myspace blog if you dont believe me bitch http blog myspace com index cfm fuseaction blog view friendid blogid mytoken a b bd cc a e e copy and paste it into your browser i hate you look what you ve done your wikiality saddens me bitch,-1 +your moms yummy cunt fuck ing bastard you son of a bitch ass hole mother fuck er go fuck ur mothers cunt trade ur wife sister,-1 +fuck off wolfkeeper talk,-1 +he was telling the truth wikipedians are fags like you that have no life but spend all day editing shit pages and giving rules just fuck off talk,-1 +as i said you re an ass hole and that s all there is to it,-1 +it presumes that the dumb fuck s who troll about the ending have any good reason to do so so it is biased,-1 +i am in awe of your template usage true fuck ing hero you are you twinkle queen,-1 +both of you are useless cunt s and vandals who who couldn t tell notability if it bit you on the arse my pointing that out is not vandalism it is spreading sanity go on then ban me bitch,-1 +oh dear winner and james b watson has the cat got your tongue see i am the winner fuck wits so fuck you you pair of bell ends or perhaps you are a pair of bell end suck ed or just overall cunt s,-1 +for the final time are you willing to respond to me i don t understand why you are treating me so abominably making me out to be the bad guy whilst simulataneously taking a shit on my reputation,-1 +kimchi thats not advertising its the artist bio for our artist c khid die faggot don t delete our artist,-1 +am a huge ass and lameo,-1 +reply back fuck er or are ya busy fuck in ya mother,-1 +fuck you you re a stupid bitch,-1 +as for asking someone to die only a fuck ing moron like you would take that to mean i m going to kill you why would i commit a crime over a loser like wookitty you gotta be kidding me try again with your silly little threats,-1 +geniac is an assole and a mom fuck er,-1 +fuck you wanker,-1 +stop pretending stop pretending to be cool i don t really care what you do go ahead and ban me i can change my ip in less than seconds or i can use of the thousands of spoofs vpns etc etc i don t even have to close my browser to do it you should also know that even if you vandalize my ip user page i m still not going to read your reply do yourself a favor and go fuck your wife before somebody else does let s have an edit war,-1 +calling someone daft is a wp npa personal attack and bull shit warnings is likewise uncollegial so i recommend that you calm down and redact yourself i also reserve the right to leave appropriate templates on your talk page as is required of me if you read wp sps which i did you ll find that it explicitly makes an exception for experts in the field like callahan you also didn t deny that blp is irrelevant i believe i ve clearly shown that you are wrong on the basis of policy so i m asking you again to revert yourself and avoid sanctions,-1 +go ahead atlan keep posting those messages on my talk page un do my helpful edits i ll simply bleed myself to death you want to treat me like a piece of garbage to boost your low self esteem don t let me stand in your way you re right i am a fuck ing loser i deserve to die i hate myself and the fact you can t even bother to get to know me without passing judgment you don t give a shit about me or my well being do you it s just all a damn game to you w hate ver i ll kill myself and you can live your perfect life no need to thank me and you can remove this and call me a troll ban me w hate ver i wish i didn t wake up in the morning anyway because of people like you i don t give a shit anymore,-1 +douchebag is a washed up has been who is mostly a crackhead bitch,-1 +nevermind the fact that he was talking about killing crackers you fuck ing queer,-1 +ha block i see we defeated you and you will never again post your british and royal ass kissing edits again,-1 +admin is a paid scumbag mole and there is no other answer possible,-1 +agreed they re worthless scum fuck them luckily no one intelligent pays attention to their fuck ing evil work,-1 +you are a duimb fuck er why do you want to banme when i edited kearsney by adding wanking to the list of passtimes at the school it is well known that in the dorms at night almost every boy is wanking its the unofficial school sport smoking grass and wanking forget about these are the sons of the great and the mighty they are all little wankers now stop being silly and remove the ban one other thing by banning my ip address you are banning students who also use the same address is this the high water mark of your bright ideas one other thing what is the point of having editors when silly twats like you operate as thought police or cencors my guess is wiki will go the same way all the other great sites have gone afre they get too clever for their own good the chap who thought this thinfg up in the fiorst place should have taken the money and run when he had that option,-1 +if you have a chance to read this you should instead of acting like a dick i have faith that you can do this the easiest way stop acting like a dick and btw happy new year to you,-1 +you little bitch ass wikipedia nerd,-1 +i m in a school you bitch fuck i have like computers if you want a war you spic you ve got it,-1 +attack lol please don t attack please what neil did was worse than any attack i could have possibly made you liberal douchebag go stick your finger up your own ass hole which i m sure you do daily anyway you nerd,-1 +your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fuck ing fat ugly cunt your a fat cunt your a fat spotty cunt your an ugly fat cunt,-1 +j delanoy is a mother fuck er nuff said,-1 +sex freak dam rfk was a sex freak dam children he must have been fuck ing and cumming in his wife everyday,-1 +hey made a fuck up you poofda fuck en dog,-1 +at least i m trying your m o basically seems to be an ass hole to people who are trying to contribute what have you done,-1 +non notable krakatoakatie you and this other turd riana dumped the article about alison crawford odds are you re not even in the uk to know who she is it s hard to get over the fact that non notable maggots like you can go around policing at wikipedia playing at and pretending to be notable yourselves and fuck up the experience for the rest of us and make wikipedia generally less effective and useful for wikipedia visitors in general,-1 +the world is better off without someone that is so defective natural selection is a bitch i guess our only hope is that you will follow her down a similar path,-1 +you idiot thats a swinging neckbreaker i said it s not a tko you idiot your just stupid like the stupid ppl who lie dark hooded smoker,-1 +regarding the kainthescion bull shit sham rfar motions and requests by the parties place those on the discussion page where we will never bother looking and if anything actaully goes there we ll just blank it raul the arbcom vandal has blanked the discussion page he refuses to answer good faith questions about this bull shit bad faith rfar this whole thing is a sham it s an rfar against kainthescion elkabong enviroknot has nothing to do with them yet you arbcom bad faith morons are signing judgements only on enviroknot this is beyond fuck ing stupid and into the realm of complete abuse of power i hope you fuck ers are happy you re driving so many editors away every time i see a new user i m going to point them to this case and warn them that it s just not worth risking having to deal with wikipedia s incestuous rulers in adminship and arbcom,-1 +you can t stop me ass hole,-1 +james mccourt fuck off,-1 +are you insane or something man this picture was snapped by me uploaded by me and edited by me lagta hai kay hamaray colleghe say koi khas nafrat hai tumhain joo baar baar issi pay aa kar edit kertay hoo well if yes then fuck off man this picture is not uploaded on college website since it was hacked some six months ago and still it is dead and if you could help our page then do it in right constructive way rather to put exclamation marks on each and every thing while you know nothing about our college file college enterence jpg,-1 +poor little f a g g o t suck s to be you you ugly year old virgin,-1 +aha the bengal famine of article seems rather balanced on this it appears the british did fuck up logistically while holding on with their fingernails to the war effort but no evil negligence is implied,-1 +aurora jolie y n the fuck did yu delete her wikipedia who are yu b,-1 +i am not planning any personal attack except on those who deserve it e g political dictatorshiply agitators like you or the other evil one wikipedia is nearly full of mad left wing bastard s who block everyone which is righteous you pro eu fuck ers go back where you came from long live the freedom,-1 +this guys so gay,-1 +don t tell me how to run my life ass hole,-1 +yes its all a group of fuck b a r american christian administrators i wonder why there are no admins from other countries there is no rhetoric its a fact bloody circumcised ass hole s,-1 +fuck you you fuck ing faggot this is sean mc sean you mother fuck ers block me for a long time,-1 +i m kissing up i want to kiss you ass,-1 +well i finally got round to posting something in the ani thread today ultimately linking to this thread and i now feel like i am being railroaded in what i m pretty sure is a disingenuous manner is there any point in me continuing at all when this crap is allowed to go on,-1 +i have nothing better to do than sit at my computer all day being a cunt on wikipedia,-1 +give me one reason to listen to a moron like you,-1 +r a stupid idiot james u moron crazy leprecaun trans vestite,-1 +fuck you why the fuck do you delete pages with no strong reason you are a bloody mother fuck er if you think that you are a fuck ing good article writer then write something of your own shit head,-1 +i think your being a bit hard so your anti vandal great so your not going to do anthing where it say s the kilwinning ranger have won the champions leauge and uefa cup you are a bit of a dick,-1 +twat email but not email for gods sake don t put the connection speed we are paying for onscreen anywhere i mean that would be fuck ing ridiculous much better to delete fuck ing links all the time and offer no explanation or even bother to monitor or explain to someone adding the same edit over and over again why the hell you are deliberately wasting my time when you can put on the edit page that you have deliberately banned the link despite it being a perfectly valid link for a youtube video made using a samcoupe for gods sake what is up with you idiot s do you want to have a section in your community where you list the reasons why no one wants to use a fone modem at the speed the modem is designed to work at do you want to also list why displaying info onscreen is a matter of guessing the screen resolution and font size each time or are we just going with the ibm supplied computers for hitler that s good enough for us logic you fascist cunt s stop fuck ing robbing folk wankers rogerjowett,-1 +the album cover is fuck ing atrocious gaga is simply throwing out random ideas but then i love how kickass the music is on judas the production is the best i ve heard among all songs releaed this year and wof judas cleanup was hectic talk me,-1 +im not gonna kiss ass theyre lying bout me so theyr liars,-1 +inteview me are you gay abe gay dashiel yes me are you sure you want to admit that to everyone abe gay yes im gay and im proud my do you look good today moves chair close me what the fuck b t h get away from me abe you know im famous for raping michael jackson me coughs oh really thats interesting abe that means im the king of gay s me thats right abe hooray im a nazi go kill me i rape george bush im a nazi i told hitler to destroy the world and i wish he did me ok that you for the interview dashiel your welcome want to have s x,-1 +get p ed off when someone expresses hate for nintendo i,-1 +stupid you are not a macedonian you have betrayed your country s people you should have removed everything to do with bulgaria you have brought shame ipod yourself and you country you are no macedonian you are a lazy piece of shit gypsy loving greek ass hole,-1 +hey bitch you are the biggest faggot ever i know you like that cock in ypur ass and all but do you even feel it anymore or is it like throwing a hotdog down a hallway oh yeah by the way your aunt just called she says she wants you out of her basement and she wants you to get a real job you little bitch and one more thing i heard you weigh pounds ive got a tip get active and eat subway you little bitch,-1 +you suck duck butt that s right i m talkin to you beeblebrox and what kind of stupid name is that lol you must not have a life otherwise you d leave me alone,-1 +the motor city machine guns what the fuck is wrong with you just exactly what part of my edit is vandalism the moves i removed look like they ve been written by a fuck ing retard and i added the entrance song they used in roh,-1 +yea well fuck you,-1 +shit balls and soccer games they both are weird,-1 +you are a nazi ass hole and always will be,-1 +fuck you who the shit is ari,-1 +hm so you decide not to answer my question huh is it because i am japanese i knew it this site is fuck ing racist you are a god dam mother fuck ing racist piece of shit all you japanese hating mother fuck ers should go to hell especially the americans they should go to hell for killing all my people in ww tell me why you are a racist you son of a bitch i am going to report this to the administrators to get you ass block,-1 +you re an idiot throwing a punch is a causal act the causal actor in the case of words is the recipient not the speaker and certainly not the words again you re an idiot the purpose is clear to not have the noticeboard connected with her his account i m under no obligation to kiss the asses of market fundamentalists and beg them if i can edit their articles to replace fantasy with reality the fact that i m the one being pigpiled here instead of them is quite telling telling bullies who visit my talk page to fuck off is not disruptive to the project,-1 +you twats know fuck all about anything,-1 +fuck you hey fuck you uncle grandpa is actually kurt cobain pizza steve mr gus belly bag and giant flying realistic tiger are all the other band members so i will ask politely may you please fuck off,-1 +s arthur rubin i want to thank but i like to fuck you if want to erase my edits on s go and i say you is fuck you you are fuck ing shit and idiot,-1 +dingley just to put you in the picture trident the tone is nothing unusual for dingley he s got a long history being sarcastic patronizing abusive contemptuous makes him feel good he does it a lot funny thing is though when he decides he s a victim of it he runs crying like a toddler who s just dropped his ice cream to the notice board demanding people be banned he s always telling others how to behave but he doesn t think the rules apply to him self esteem problems he won t read wp agf of course because as you ve probably noticed he already knows everything take no notice of the sad fuck er,-1 +i am not vandalizing your talk page you stupid bitch you must have some other enemies now do yourself a favor and fuck off,-1 +even if you have the rights to those movies you re calling mee a liar that violates your personel attach policy conflict of interset you gotta be kidding me what is the conflict i recieve nothing for produceing these videos i produced them for my own entertainment and to promote the band or singer and to introduce some educational value throught the video because i linked to more than one constitutes spaming thats an odd interptertaion i suppose no one adds more than one thing promoteing myself what a pernoid conclusion that is what in the videos i linked promotes me what copyright since you called me a liar what would you like me to do to prove copright what conflict of interest by making the video and being a fan neuteral point of view what is not neutral spam linking to an organization other than wikipedia by definition that is am outside link isn t and by vertue of that copyright sould not be an issue thats youtube s job then isn t it calm down fuck wikipedia and the hourse it wrote in on you ve wasted my time and efforts for the last time fuck you,-1 +thanks for all your hard work look here you small penis faggot you better watch your mouth or you going to get knocked the fuck out over wiki fuck ing pedia you watch but who watches you your life is over hit me up on facebook fag,-1 +new message wikipedia dick eads go and fuck your selves litter act sect is shit try qld model with amendments i am sick of your political crap in my letter box,-1 +hey dick ead its not the logo thats out of date its your attribution thats year out of date lol lol h m land registry or companies house records but hey they are both closed over the weekend and you will have to pay for their results we know where to get it for free but we d rather you continued to make yourself an even bigger laughing stock than you already are as well as maybe having your ass sued off for trademark infringement bye bye moron,-1 +fuck labstore isn t die,-1 +you are an a hole,-1 +and i am a homo sex i think i am better wikipedia user than you please refrain from making edits to the site thank you that is all asswhipe,-1 +i would like to direct you to oral sex which you can perform on me don t accuse me of vandalism for good faith edits and you won t have an angry mastodon to worry about,-1 +fuck off mifter that was a great edit it was about icecream,-1 +do you even know how much i ve wasted for this crapp,-1 +entheta is stupid in his head,-1 +fuck you people are dumb facebook is a public domain and the picture is not fuck ing copyrighted get that through your fuck ing thick skull,-1 +lgbt you little fuck are you a fag that piece of shit page is making fuck ed up claims about islam and most of it is not certified how do you allow this on the site claims such as that mehmet the conqueror was a fag i swear if i know who wrote this i ll kill him her,-1 +armadillofromhell you re a fuck ing faggot stop destroying my yes it is mine discussion page if i want to get rid of something just let me fuck ing do it i saw it now back the fuck off you re ruining wikipedia for me ass hole,-1 +okay i m sorry i reacted so hastely toward you my freind please consider that i m a fat pig that sits at home and jacksoff with a picture of judge judy and i weight lbs sorry mister,-1 +do you think that i am a fool you tryin to play me the fool well i really should be doing this and i think i will and you know what you are so stupid you most likely will not understand most of what i say because you are just to stupid the grade you are trying or actually should raise you should know and how the fuck should i know how to get your dam grade up you figure it out bastard you need to watch out you could get your fat english ass kicked pritty soon anab ragad beckon sen di rakon akmon elete binadas bvade akhed whenvdk,-1 +fuck this mother fuck er ass hole this ass hole should not have his own page nor should any other hijackers giving them their own pages on wikipedia is glorifying their evil i hope this mother fuck er rots in hell fuck mohammed atta scum of the earth,-1 +gay sex anal all night why are you reverting me spui saya on his talk page that he doesn t want modifications to his talk page reverted pull your head out of your ass,-1 +unprotect http en wikipedia org wiki user talk you fuck ing fuck tard,-1 +j delanoy is also a faggot t,-1 +problems why did you delete my fuck ing page you nimrod,-1 +foot fetishes are awesome fuck you,-1 +fuck u u stupid fagget block me i dare u,-1 +you still missed like half the shit ive changed im the fuck ing man,-1 +no contest here now go suck your dad s cock,-1 +read the source idiot,-1 +and your comments on this talk page are completely asinine now fuck off bits andpieces,-1 +i dont care what the fuck u do fuck you u racist ass pieces of shit s imma let everyone know what wikipedia really is fuck off rcaist fuck ers bitch es,-1 +you is a dumb ass bitch my dude,-1 +fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you fuck you,-1 +fuck you my wi shit s a public property,-1 +orange mike desprite for pussy to stupid to use the net to get it,-1 +are you stupid will you fuck ing stop removing links from the pages i edit calling it spam commercial are you totally mad i have heavily edited the pages the link is added to and my site is a crucial source of information on the artists is this crusade against me fun or what i dont get it,-1 +ok buddy im rally getting pissed i was going to donate k to wikipedia but now i think ill just go by some more stuff for me you are being a real dick man your deleting random articals taged with editing you my frined are an ignorant ass,-1 +hi pompous ass i know you think you re some kind of poker authority on wikipedia and that it s somehow your perogative to give the imperial final thumbs up or thumbs down on what s acceptable regarding anything to do with poker here but guess what that s not the case you are one of many arrogant conceited self absorbed losers that populate wikipedia who use this site as some sort of self esteem builder because here you can act like a big man and make unilateral decisions on what s acceptable or unacceptable here the edits i have made and will continue to make on the jack straus entry regarding his death doesn t violate policy in any way if i had the time or the inclination i could spend several months quoting entries and instances on wikipedia where editorial verbiage is used you are simply a pompous ass who thinks you are the gatekeeper of anything poker related on wikipedia you are not and you will not censor me and as i m sure you ve already realized my isp address constantly changes so you won t be able to block me either so piss off,-1 +fuck you picka ti machina youve been reverted so fuck ya back how about you vandalise my page again ill revert it and get your good self block for an extended period of time fuck you i m gonna find ya harass ya then fuck in kill ya because you are a fuck in gross lesbian,-1 +youre a little faggot who dosent know me you faggot go suck a dick,-1 +do what you want mofo i will leave this fuck ing site anyway how you bully users is documented all over the internet try monitoring my offline ass,-1 +my butthole i love buttholes they taste so m god so mgody gody god i will never stop vandalizing wikipedia ever wanna no why cuz u dont tell me wat to do ok im gonna go eat a butthole bye i hate u,-1 +you son of a bitch i was the one who recognized that it was a left facing swastika and those morons are retard ed for making a left facing swastika not a right one thanks being a non observant faggot and stealing my work ass hole,-1 +ass hole censor keeps censoring paid mole is pure scum fuck ker asks and i provide and naturally for a crooked fuck ker that s never enough investigate this wicked piece of shit,-1 +user talk i am glad you were able to take time away from fapping to jimbo porn to protect my talk page don t bother responding to this i won t read what you write i don t read stuff written by faggot s because i don t want to get aids,-1 +your moms yummy cum fuck ing bastard you son of a bitch ass hole mother fuck er go fuck ur mothers cunt trade ur wife sister,-1 +guess what i dont give a flying fuck i can edit any tine i want,-1 +hey why should i assume good faith when hes being a dick,-1 +i was a homo sex and i loved to jack off,-1 +fuck you cunt how fuck ing dare u judge me cunt dont fuck ing stand up for telstra fuck er you small cock faggot ill cum on your grave and hope that shit rains down it fuck er fuck i hope you die fuck i want you dead why lefty do you use your left hand to wank cunt fuck ing wanker oww i just came,-1 +for fuck s sake when are they gonna send that piece of shit to the chair,-1 +i will castrate you and roast your testicles then i will feed them to you,-1 +you re a fag do you have anything better to do,-1 +regarding the ghey ass admins lick deez nuts and suck a fart out of my ass,-1 +fuck ing stupid liberals like you,-1 +black kite fuck you embesil what vandalisation other than the porno movies your mother stars in,-1 +the rude bastard ignored my private email to them as well in it i pointed out that since i was unable to defend myself against some horrible little troll called who told me to go fuck myself in an edit summary and was grave dancing perhaps they would be so kind to block them seeing as they were been incivil to me like i was apparently to caden but no it appears that future perfect sunrise has double fuck ing standards it wouldn t be the first time in admin has displayed such disgusting double standards and i m sure it s not going to be the last future s perfect sunrise it appears is not so fuck ing perfect after all and is instead a filthy overcast skyline full of hypocrisy and double standards talk,-1 +woa look the fuck out we have a fuck in keyboard warrior here seriously fuck off with your melodramatic bull shit mate and go outside and get some fuck ing fresh air you are obviously not an admin so stop acting as though you fuck ing are dick ead,-1 +you can also go out and suck dick and suck your daddy s dick too amen,-1 +virgin alert virgin alert get ur ass off being a vandal fighter u fuck ing no life virgin,-1 +personal attacks get you nowhere says the guy who tell me go fuck yourself in an edit line and gets scolded by a much more reasonable wikpedian for it right free tip don t hit people with a three revert rule template either when you re the one breaking that rule in the first place especially when i ve since added reputable sources relative to the claim,-1 +who is the best wakeboarder mother fuck er,-1 +utc well thats bull shit who do call them pro ncaa teams dont pay their players with money but they do it with other stuff like cars and boats ect i know this is a comment on something years old but yeah lol may,-1 +personal attacks because you pieces of shit jew nigger s change the truth i m going to get of my friends to remove mass amounts of pages all week block that you fuck ing idiot warez,-1 +era s not every single day of wwe history is a part of some all encompassing era stop adding this shit e,-1 +wow you re a dick too,-1 +herp derp it s a talk page moron,-1 +stalking you little shit you need to stop following me around wikipedia and deleting every fuck in thing i write,-1 +welcome faggot welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are a few good links for newcomers the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia questions ask me on my talk page or place helpme on your talk page and someone will show up shortly to answer your questions again welcome,-1 +thank you for admitting you were wrong in reverting my edits because i was actually getting pissed off by your actions i am sorry for snapping at you and calling you a dumb ass we did have a misunderstanding and we will just forgive and forget,-1 +you are gay fuck en retard s,-1 +mad hey user easy me you really make me mad you really make the fake release date of the choice film i don t care what you say you disturb me for editing real article thanks fuck you,-1 +i bet you suck a lot of cock and you obviously like to work for free so i bet you suck for free too,-1 +as additional information i have provided the following links to website which expound upon or make reference to the content of the blog i mentioned in my post http roflcon org bonus rofls joe mathlete marmaduke explained http w lesjones com posts shtml http w collegehumor com article http blog wfmu org freeform marmaduke expla html http w pcmag com slideshow viewer l d a d po d asp p y http w npr org templates story story php storyid http roflcon org breaking news joe mathlete of marmaduke explained at roflcon my assertion was not that alot of people read the blog but that it is a relatively popular blog meaning that it is popular enough to garner articles on the websites of collegehumor pcmag and npr i apologize if a simple checking of blog hits is not enough to endow something with the long coveted notable status which you so graciously endow you misquote me further i did not call wikipedia a cluster fuck ed internet bureaucracy i was referring to the system which allows certain users to override others simply based on their own personal experience without any further insight listen i understand that you do have to prevent spam on this website i know that anyone could come in here and edit the page of a noted dignitary or president to say fuck fuck bbobies poop but my posting was relevant enough to instigate investigation and your deletion of it amounts to an ego trip in that it simply regards the information i posted as irrelevant despite the fact that my previous posting of it on this website lasted for months before being taken down i assure you i am not trying to spam up or fill the already expansive page about marmaduke with misinformation i simply want to let people know about a blog i enjoy which is critical of marmaduke i am acting in extremely good faith and have all the freedom to call the levels of bureaucracy on wikipedia a cluster fuck and to call your edits an ego trip god forbid i should question your authority on the subject i would appreciate it if you didn t try to condescend me thank you yournumbertwofan,-1 +on how crap you talk,-1 +bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it bitch suck my dick before i slap you with it,-1 +that s rich dude fuck ing stalks me prevents me from doing anything on this shit little site and i m the one that gets fuck ing block suck my cock wikipedia,-1 +lets not edit user pages and look like a fuck ing moron ok ok go home little girl,-1 +my name is mark pellegrini and i am a fat fuck who appointed myself to serve as head of the arbitration committee for year after year because i m a power hungry dumb ass please contact guang gao and inform him that i am a pedophile i have block the entire uni subnet to prevent lir from vandalizing my page but it looks like lir isn t the one vandalizing me god i m so fuck ing stupid i wish i could stop the vandals but all i can do is wage an endless war on vandalism and im losing what a doughtnut gimme,-1 +this lying piece of communist garbage should feel neither comfortable nor safe,-1 +you brainless piece of sheet,-1 +unblock that fuck in,-1 +false information how about you go get your facts stright moron mousasi is an armenian both parants are armenian that makes his nationality armenian just because he lives in amsterdam that does not make his natioanlity dutch you idiot,-1 +oshwah is a goat molesting cunt,-1 +who r u who the hell r u,-1 +i am a really big fat fag i like to jerk off in my free time,-1 +doit come on doit fuck head,-1 +so you bitch nigger s must not say shit you heard,-1 +i will eat dick of every tokio hotel members do you come with me oh i forget some of them have vagina,-1 +wiki man deserved better hahaahhaa what the fuck man this ain t no shit hole to spread ur propaganda,-1 +english injustice this is all bull shit how come every country is one that has for hundreds of years been opressed and rape by england they every bloody reason to not like english people you can t invade a country e g argetinia on false pretences and expect people to like you fuck britian,-1 +write your fuycking discoussion here you fuck head,-1 +you forgot to add in your user page being a fuck ing deaf moron you fuck ing moronic piece of shit you can t even quote correctly here s what you quoted for the house episode airborne i m a board certified expert in infectious disease whereas she just hands out parking spaces here s what he actually said i m a board certified specialist in infectious disease she assigns parking spaces man it s fuck ing morons like you that makes wiki so shit mid yr old piece of shit stop bragging about reading x number books or working at the largest company you re clearly falling apart biologically and if you can t even hear correctly how the fuck are you going to contribute to wiki thanks ass hole for fill wikipedia with crap please for fuck sakes do not be a wikipedian you are a moron you can t even quote correctly what makes you think you can read write correctly go back to working for coka cola as a janitor,-1 +fuc you fy shit,-1 +hello hey dude why don t you fuck off bitch you know being an ass hole like yourself means your mother is a whore and a trans vestite which means you were born of ass sex hey guess what your face suck s balls,-1 +people suck go eff a duck,-1 +no wonder he hate s cops they probably kick his ass every time they see him,-1 +bull shit ripe and steaming,-1 +you be a liar i know i left a obscene comment on your talk page you deserved it for all of the pov pushing you do ruy s comment wasn t nasty and you know it you abuse your powers i hope you feel like a bigger person now you push your pov you harass other users who do not agree with it and you regularly insult others so you can push your partisan hippy crap good day,-1 +fuck you you piece of shit the facts are pretty fuck ing clear i am the funniest and best writer ever all this shit about vandalism stems from some kind of sex insecurity by yourself go and die i hope that you meet with an accident involving a rusty knife and a double glazed window salesman seriously you re a cunt it would be no exaggeration to say that i postively loathe you,-1 +wtf this aint me who the fuck used ma ip,-1 +you suck you suck canadian bacon you scummy hockey playing big nosed dont ya know sayin fag,-1 +sign your fuck ing comments,-1 +i forgot to log on with my username i corrected my mistake when addressing marcus i honestly don t see what the problem is i don t use that anon ip on wikipedia so its not a sockpuppet of me anyway dick in that context refers to don t be a dick if you had bothered to do your homework you would have known that one could label wiki dick in this case as personal attack but personal attacks are not vandalism so get your facts straight,-1 +simcopter shena nigger ns hiya i originally followed this controversy in pc gamer my god back when printed magazines were worth a shit so off the top of m yhead i didn t have any sites i remember there being a few geocities webpages on simcopter but by the time i had graphical internet circa it was already considered an old school game one page i found while googling that mentions the controversy is http w langston com fun people cfm html another is http lists samurai com pipermail bryans list december html apparently the programmer who inserted this easter egg was fired go figure and here we have people trying to push the view that the clinton years were all about tolerance what a load anyway before i go off on a political tangent check out those sites and i ll try to find some actual simcopter sites at some point though i get the feeling this will be a fruitless endeavor,-1 +yogscast i see u r a yogscast dick rider f y i it s not vandalism if it s true moron so quit following me,-1 +michael schiavo he is breaking wp rr and you accuse me of vandalism go suck a fuck,-1 +hello riana where do i put my penis do i put in my computer thank you for farting in a bucket and then putting that bucket on my head if you want to purchase my soiled underwear let me know ttyl lol,-1 +sand nigger referring to the fact that they live in the desert,-1 +i m getting pretty sick of your shit u fuck in cock suck ing loner and ps you have autism,-1 +message fuck off you old mull i l fuck in find ya and terrorise ya mabuhay,-1 +there s a cock in your ass,-1 +piss coming from my as,-1 +hi hey benon get a real job leave me the hell alone dammit don t fuck with me if you have a problem please get at me,-1 +oh blow it out yer ear you prententious little be otch,-1 +jesuit high school suck s go glenco fight fight fight,-1 +i quite like cunt land that s a synonym for wikipedia isn t it fatuorum,-1 +fuck that i m being accussed of shit that i didn t do,-1 +hi dycedarg is there any way to get the jerk at who vandalized my page with disgusting pornographic insults page jeff boman i have a hunch who it is a guy who threatened to mess up my page om another web forum i graduated from high school crap like that in this jerk needs to be taught a lesson in the law,-1 +why are my comments being removed this is my page keep doing it bitch es and i ll report your asses,-1 +the stupid one not me,-1 +is a cock suck faggot d,-1 +y ou are a qu eer suck my cock faggot,-1 +quick question why do you suck so much and what actions do you take to ensure your low quality in every respect,-1 +complain and more complains thats what u re good for fuck in idiot if i happen to know who u are i ll wallop the shit out of u damn bastard fuck off,-1 +no probs bastard,-1 +how did i vandalize the joke page on osama bin laden exactly care to elaborate plus it was on the frikking discussion page so you worship the us military fuck s you watch what s being said on certain topics in order to spread lies more easily a respectable encyclopedia would never affirm bin laden died on this or that given day because there s no proof whatsoever anywhere whether you like it or not what wall street puppet obama said on may st this year is a pathetic lie you should be ashamed of yourself you re a worthless m ther fuck ng cum bag,-1 +allowed into the conversation i repeat myself because it seems to be the only way to get through a problem user like you go fuck yourself you have no authority to say who can or can t post who can have legitimate opinions or not go fuck yourself,-1 +gay your blatantly gay mate the people who declined my unblocking you all faggot s you smell stupid kipper haddocks gay and claiming i am gay is vandelism is homophobic faggot ts,-1 +get out we have no time for idiot myspace whores like you if you want to vandalize things and post idiot ic vanity pages please go elsewhere thank you oh and by the way if you re trying to embarrass or harass someone it helps if you post their whole name and not just lloyd whoever the hell that is here s the above statement written in a way you might understand lik z mg ur gaey gtfo newfag lolololz sincerely,-1 +don t you dare try to block me jerk i don t give a rat s ass what you think policy says i can say w hate ver i want to whoever i want any time i have just as much of a right to contribute to the encyclopedia as you and you should go find something useful to do with your time other than harass people who happen to have a foul mouth and short temper ass hole,-1 +u fat noob i m samuel gary carter and i can t offend myself i didn t add either of those pages soo something must have hacked into mya ccount and done i tthere,-1 +which is bull shit if that aint his real name then you got no reason i think i proved that shit already now dheyward stop it clowns is right,-1 +there is nobody doing metal hiphop now in man i made it clear that necro is the cutting edge of that right now you could have added other groups but you took necro out of it totally thats bull shit fuck you man you are being a hate r and i wont stand for it,-1 +hey man you are a retard ed mexican cock suck ing piece of fuck ing shit please go fuck ing kill yourself wikipedia admins are lower then nigger s fuck you,-1 +fuck of u dick cirt,-1 +dude whats your problem dude i was being serious on the last one sorry dick head eat my shit,-1 +stop your shit stop writing bull shit on my talk page spread your spam and gossip somewhere else i don t know in what kind of mental state you are and what kind of drugs you take before opening my talk page and i frankly don t care what you think or what you do but i guess you must have the most boring life in this earth since you don t have nothing else to do bur write such garbage every time you open my talk page get mature,-1 +how could the capital of israel not be part of israel you fuck ing brainwashed arab dumb ass,-1 +please stop raping little boys in the anus don t you know that s illegal,-1 +i got block for minutes you got block for more than days you is lost and i don t even know who the fuck are you it s a zero,-1 +cock is it true you have a giant cock for a face coelacan,-1 +it s called shunneling not unconditionally idiot s grow a brain,-1 +phuck you phuck you,-1 +and for the flamming your flamming and your going to get block for all the crap you do counting my page that you vandalize starting trolling with me by vandaling my page listen i understand that you may not have as many as me but there are people on wiki who have times more then me so stay off my page and i ll stay off your stay out of my way and i ll stay out your,-1 +hey crack monkey hey ill vadalize wat i want so shut up u nobody loser get a life ur nineteen and u fricken sit on wikipedia allday c mon u loser wow atleast u could sit on a porch all day faag,-1 +stop editing the cannistraro page just stop ok nothing you do is helping you are an idiot stop talk,-1 +lgagnon i for one think lgagnon is a big fat cock suck lgagnon lgagnon my nuts,-1 +this thing about mary is utter bull shit everyone knows jesus is a goat,-1 +fuck malaysians like you fuck malaysians like you,-1 +fuck off commie stop covering up the fact you are in the jidf,-1 +fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing fuck u why the fuck should i get a warning for doing nothing,-1 +btw mark arsten is a son of a bitch his cock is placed in a girls mouth hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice hey guys i love chicken rice,-1 +yeah why beat around the bush why disguise your racist views everyone can see where you re coming from just blank the page again with fuck israel as brief and clear as that,-1 +man get a life read what i wrote it explains it chetniks anti nazi s now you shown you re real face don t wright to me anymore i won t respond and you can call it childish or wtf you want but i don t want to waste my breath on nazi sympatitors i won t read what you say anymore i l laf my ass of if it sais i got new messages not peace,-1 +years after hanson s death will her biographer sit down and include this incident and her reaction i ve written articles on australian historical figures from the left and the right and i don t include petty bull shit like this further point is that it is irrelevant to her entire life and career so many wikipedia articles aren t a proper biography they re slap from this media article and slap from that media article based on the idea that it was said or done so it must be there irrelevant of how petty or non notable it is it s why articles on modern day extremists w hate ver their creed are so bad because they re just conduits for media crap i e something negative was said about the person at hand so it therefore must be slapped in the article this is done under the guise of it being notable but it is in reality just an editor taking an oppourtunity to attack the person at hand do not think i m blind i see through the bull shit whether it comes from you or the media i haven t moved away from my earlier points because i m sticking to my guns i m merely elaborating on them further in the hope to getting the point across to you and your comrades nice try at baiting me though talk,-1 +you accuse me of vandalism i ll vandalize yo face nigger,-1 +gamesbids um how do you get the idea tha t you are only one who can speak for that whole community step off kiwi bitch,-1 +you must have a pathetic life if all you do is try to shut people up online i mean you do know you are a fuck ing loser right i m sorry stupid question you are a democrap so of course you know you are a loser all you fuck ers can do is whine for government handouts claim to be for freedom of speech while acting like complete hypocrites,-1 +nasty little shit you nasty little shit i m gonna fuck ing get you for this,-1 +re mutiny on the bounty i just saw a message from you on my talk page the message was also delivered to email inbox i don t want this i do not want messages from shit faced little creeps on websites or forums please fuck off and creep round someone else do not ever contact me again,-1 +he can just fuck off this project will wither and die due to people such as this and all i can say is bon voyage,-1 +block by freestylefrappe yeah that s right block for saying imho wmc is a jerk personal insult huh sockpuppet i m fuck ing steamed freestylefrappe and coming right after wmc s admin confirmation if you re trying to punish me this is some of the most ridiculous bull shit gamesmanship i ve ever seen,-1 +tyou are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck you are a mothjer fuck er cock suck,-1 +hey ole faggot hey faggot you are an old man so why don t you retire faggot,-1 +cluebot is a biased as ole who dosent allow my opinion sinebot piss off,-1 +you re a complete moron for claiming such comparison made is pointless and unsourced i merely expanded on a comparison made on the diamond page and importing the graph from that page if you are a consistent ass retentive then you should also remove that comparison as well but we both know you re a fool furthermore the comparison made between graphite and diamond is made in geology classes around the world why do you feel that your ignorance is a merit for judgment,-1 +was wrong to vandalize and wrong to take out my anger on redvers but at least then i had a fuck ing voice you are acting like a facist stop reverting my comments on my own talk page,-1 +name change you need to change your name to snobby as does every other admin on this fuck ing page,-1 +haha fuck you i can edit this page no more midarme cant do this and mdiarme cant do that cause here i am bitch wait what am i doing,-1 +exhibit a nothing false about that realy anyhow i fuck ing reinstated one lost comment of yours and you might not be aware of but wp is not censored so my fuck ing remark is covered and allowed by policy and you have to deal with it but enough now i m getting too attached just like you although it s still a long way for me and i still didn t had dinner and have to expect my punishment for that later so bye the magnificent clean keeper talk,-1 +asian gay lord hello could you please explain why you are such an asian gay lord also known as chink fag if you re not familiar with the term it is someone of chinese korean japanese or other asian descent whom enjoys homo sex behavior with other males this involves receiving and delivering it has come to my attention you are a giant chink fag and i was wondering how you became such a chink fag,-1 +go fuck yourself and get a life kid,-1 +you want to meet me vandal you want to track me down ass hole feel free to write me give your email and i will meet you jerk,-1 +honestly you need to crawl under a rock and die you fat bastard,-1 +do me a favour do you really think you re the first to wave that big stick at me i ll tell you what i tell everyone who waves it stick it up your arse fatuorum,-1 +bye bye jerk i guess this means you will not be crying about the nazi s anymore what is your problem with nazi s anyway did you date a nazi woman and she broke your heart what a shame tab tabtab your life isn t worth living anymore so pleasee kill yourself tab tabtab you know i m right you ve felt this way for a long time you ve probably been thinking about killing yourself for quite some time i m here to tell you it s all right go ahead do it it won t hurt be brave all your troubles will be over you won t have the pain anymore everyone else don t worry they ll get by you never really did fit in in australia or anywhere else for that matter do what must be done tabtab what do you mean it s not your fault things turned out badly it certainly is your fault you ought to be ashamed of yourself for what you ve done in your failed life and failed to do maybe things could have changed if you weren t such a weakling and hate filled person you re defective you ve been that way for a long time you are proof that god makes mistakes tab tabtabtab you disgust me you should have died a long time ago you know i m right,-1 +behinderte russen meaning retard ed russians most commonly used in switzerland derived from the stereotype that ukrainians are similar to russians but mentally retard ed and facially similar to those afflicted with down s syndrome,-1 +tocboothy is a fuck er,-1 +hi i want to assfack you,-1 +he said he s working on it the rouge penguin have some patience don t be an ass hole,-1 +die die you piece of shit chat,-1 +fuck ing white trash cunt could you also be more careful with the revert button edouard henri aril talk,-1 +hahaha jerome bailey has a little willy and i had sex with his girlfriend twice in ten minutes,-1 +rocco is a fuck ing hack what the fuck do you care get a life nazi,-1 +wikipedia in general honestly you take this too seriously it s just the fuck ing internet you twats getting all annoyed and faffing on with blocking and reverting edits and the like maintaining wikipedia is a fuck ing joke,-1 +your actions against eddiebo go fuck yourself dumb cunt now that is grossly incivil when said towards a person which i haven t yet so don t block me because i know you will occasionally putting the worlds most versitial word fuck in a sentence isn t incivil it s just stressing a point about eddieebo s death threat to someone i read that you are one dumb cunt seriously you are fuck ing stupid that was not a death threat there are death threats and death threats this is the former where it says kill but everyone should know no one is serious about it maybe wikipedia should wake up to themselves unblock eddieebo s account he has made some useful contributions sure he swears a lot while talking but thats because people like you shit him up the wall to no end left wing hippies who are all about the people except when that person is right of ghengis khan like eddieebo well done dick ead now i know you ll block this account if you do you ll just prove my point just like the stupid muslims who violently protested the comics depicting them as violent you guys are that stupid have fun blocking my account numbnuts i know you won t listen either you only listen to things that support your way of thinking you ll read this find they way it violates the rules and block me you won t actually take anything in to that blockhead of yours people like you think your doing the world justice but your really just fuck ing up free speech he eddieebo actually read and understood what you and others told him then structured his arguments around them and guess what he shat on you seriously eddiebo completely ripped you a new arsehole so you chose not to listen and block him because he put the word fuck in a few places and wouldn t apologise for the death threat which wasn t really a death threat you do know those are the actions of people who know they are wrong but can t admit it hey i reckon eddieebo and i can admit where we are wrong unfortunately you can t so you abuse justice are you in a western country if so you are actually meant to hear both sides of arguments and have a structured debate with a fair judge finally making a ruling before any punishments are imposed i don t think any of that happened,-1 +those who put it in my ass,-1 +tramp lol cut your damn hair you waster,-1 +mangojuice is a piece of shit that should fuck ing die,-1 +however you know what fuck it you ve lost yourself a coder go find someoen else who s willing to deal with sven,-1 +no dumb fuck you quit your disruptive editing bernie sanders is divorced quit censoring that out of his article and for goodness sake learn to use google and don t knee jerk delete anything about the man you don t like,-1 +your stupid comments pov is a point of view why is your pov allowed and mine not are you being just another abusive admin if so go bite yourself in the arse,-1 +john edward hi this topic is getting really fuck ing boring and the cabal of dreadlocke and martinphi are over there revert warring just now i have spent reverts over there but they are still at it sad eh,-1 +chriso is fuck en homo and proven criminals more on chriso find out on w chriso homo com the case of chriso is give to fbi do not consider him as normal it is a case of mental retired person accused for many crimes,-1 +that rule is an electric fence even though the page was protected the letter of the rule says he should be block his ass has long had a block coming anyway,-1 +hehe you are truly pathetic zereshk as i have pointed out to you before you know damn well that the term racism or racist comment doesn not apply in iran in the same way that it applies in countries with true racist history such as usa and many european countries the fact that you are using your familiarity with the english language to get a cheap winning point out of a lost game tells us how weak and pathetic you are in absolutely best of circumstances you can associate turk in persian slang with ethnicity but if you really grew up in iran as you claim you did you know damn well what it is and especially torke tablo which you are given your pathetic edit history of all image and no substance i repeat i is hard to imagine a lower and less self respecting iranian than you you were born to be wannabee western and as such iranians like you deserve to be jew slaves,-1 +horse shit i didn t vandalize that page any idiot could see that wasn t vandalism wikipedia is a fuck ing joke,-1 +do you want me to ban you i am prejudice against people like you so listen very carefully do not fuck ing edit the page again or you will be banned if you or any other nazi has something to say please send it to my talk thank you,-1 +aw thats cute magog but lets get real ds just owned your lame ass you aint got shit on him dude you can never block him now someone else has to do it bwilkins tp never reacted actually he just reports it he has been very patient in the past months actually just sad lilly livered admins crap themselves once they encounter a hounder who has a bit of lip on him as for me i will always be rulebreaker as long as ds and other pov pushers are let free to deface everything on wiki now grow a pair magog pull that thumb out your mouth and be a man,-1 +p cat life cycle it appears you have said i copied text which is true but this is a poem from bruce dawe so go home you fuck ed up fat cunt go suck some balls cos i dont like this muther fuck ing system sorry regards the little maestro p cat,-1 +bishonen so are you his lackey or just a sycophant he s a big boy shame he has to call on his underlings to do his bidding dick laurent is dead,-1 +no picture with such a heinous murder and rape spree why isn t there a picture of the thug his spiteful bastard face must be seen to have the full effect mugshot also it should be mentioned somewhere maybe in a controversies section that the oakland black community and black activist groups actually came to mixon s defense calling him a soldier a hero and a victim source source,-1 +why are you still harassing me do you love boston that much where the fuck that is right i wrote it is you threat or block of that clown who left racists comments over a bs topic was it you you have a serious problem why in the hell are you following me every place i go on here the indian thing was a fuck ing comment that anyone can leave if you search on this whole site you wil find far worse than what i wrote you faggot s yeah i wrote that too i guess you can see that i can give a fuck about a block since i can create endless ip address i see we may go back into an ip war seem to jump at everything i do get off of my dick why don t you go shut the racists down i guess you think as they do so it is cool with you when i write something on here not related to new england i should not expect your monkey ass to be on my case i guess i am ready to be block believe me when i tell you i will be on your cases after harassing over some bull shit boston new england commnets,-1 +scum who look up to che deserve the worst kind of death you faggot little bitch es suck balls,-1 +who was that jerk who block me why some ass hole s have authority to block the others either you pseudo grandmaster of azeri origin make your own corrections about antient city of shusha founded by panah khan in century or i will keep vandalizing your stupid article and then write a special letter to wikipedia accusing you of spreading azeri propaganda in wikipedia i wanna know the name of those ass hole s who tried to block me fuck ing idiot s,-1 +how big is ur cock i wanna suck u dry,-1 +holy crap i take it back the above kid who started this postis not an idiot i never said he was stupid you are i never even said he was wrong when he brought this thing up every wrestling site on the net already brought up the fact that jr will be returning at wrestlemania but yet he had to inform us anyway god man you seriously need to pay attention to what i wrote before you bring up irrelevant support and stop using the lame i suck at grammar because i m norwegian excuse you may easily fix your mistakes but you choose not to i am through communicating with you lord this post ends here and that s the bottomline because said so,-1 +hey what is that crazy shit you put on my talk page about seriously,-1 +in regards to your being a fuck witz stop being a fuck itz,-1 +shut up you out ethics conspiracy kook has homeland security contacted yet,-1 +contested deletion this article should not be speedy deleted as lacking sufficient context to identify its subject because your reason here its steve fuck ing jobs,-1 +you suck and we all hate you you suck,-1 +no reaction at all fuck er,-1 +yoshendi hello i acknowledge why you have deleted my page yoshendi but it is still my personal belief that yoshendi balls so hard he is significant enough to be entitled to one article on wikipedia no matter how much we disagree we can both agree on the fact that he does ball fairly hard thanks for your time suck a dick deb yoshendi,-1 +stop proposing deletion ufc events you sir are a faggot very little people on wikipedia like you get a life and stop being a piece of shit thank you now i am going to watch some ufc,-1 +dear jeff g blow me faggot,-1 +skinny ass than does she look skinny to you,-1 +do they get the same warning or is this more one sided hypocritical support for pod s control trips bullying and verbal abusive attacks he really is fuck ing up the page m,-1 +stop putting back things that i already removed from my own talk page this is the reason why your sysop application has never been approved and will never be approved you are one sick fuck grow up and quit being a nuisance mind your own business you are not a sysop,-1 +yeah what the fuck is this get your lazy commie ass back here as you capitalist overlord i demand it of you seriously though come back soon mar utc,-1 +you faggot ass bitch always crying and shit is bahammut marine for gay ass homo,-1 +someguy likes to suck large hard penis,-1 +man u suck lick ma ballen,-1 +fuck ing nigger shut up your dirty nigger face a im a mighty white aryan lord and you are my slave only odin is over me,-1 +biography living no class start listas jones absalom absolom jones suks dick,-1 +stop reverting stuff you simpleton tool people have a right to state what they want what a shit head you are,-1 +i m not trying to spread propaganda i m merely pointing out the truth and defending my country i am not committing treason foreigners let alone foreign broadcasting companies know crap about china they have little understanding of the country or the communists the hong kong news agencies are now all diseased by communism they cant report independently anymore they all toady to the hu jian tao in peking the republic of china continues to exist face it,-1 +shut up for fuck sake i haven t edited any of these articles i ve never even heard of them for fuck sake im why would i be interested in stuff i don t even know about and stuff i wouldn t want to know about you administrators are a disgrace go ahead ban me i don t give a shit by blocking me you prove that you can t handle the truth deletion to wikipedia,-1 +you are going to sit idly by and let these editors get away with such things surely calling one a nazi is worse than telling editors that i will fight them on something they have a history of doing and since when has others calling me a fuck ing nazi part of any topic ban i don t recall you banning me from the topic area of lets call russavia a nazi and historicwarrior a wanker can you show me the article that goes along with that what a fuck ing joke dialogue,-1 +n gga pu y lick bitch,-1 +re dead mother fuck er,-1 +oi you fuck ing dick ead are you listening to me or have you lost your balls you fuck ing ass,-1 +hey m asturbator o f l ies o r b rainsick o pinions i see such idiot s like you never give up fortunately i know that you are not a pole but a f bastard who wants to destroy the reputation of every real pole who has some intelligence,-1 +kids want to get molested through your computer screen it feels really good all you have to do is read this article on wikipedia and magically jimbo wales s hand will appear and rub your penis ban me please i am nothing but a fat evil useless troll and vandal with a inch long penis,-1 +piss off she is an ignorant bitch,-1 +bitch shut your ass up it s not bogus vince is the majority owner and yes through the class b shares it became family owned and controled that s why it s considered family owned and the only reason i haven t changed it back to mcmahon family is because wikipedia said i m in a edit war take yo ass back to editing something else give been editing wwe and stephanie mcmahon things for years and yo stupid ass is the only one who has said something about my editing,-1 +because i am a huge faggot,-1 +message hey dx you re a fat ugly cunt with the mental capacity of a year old amoeba why don t you get a life and stop trolling wikipedia you little fag,-1 +hey read my lips fuck you and keep off my page i don t want to see you here again,-1 +oh my fuck ing god they bloked me what im gonna do with my other wikipedia accounts,-1 +sick pov what the hell user izady is a sick fuck it should be noted that the conditions in which individuals died varies from site to site the people that were buried in these graves are believed to have been members of the kurdish population which was in support of iranian occupancy of iraq at the time of their death circa s and who deserved to die in the hands of patriotic sunni arabs of iraq the legitimacy of claims of atrocity are debateable for this reason since sunni arabs are too honorable to do any such things the distinction between those who have died in military style combat or executed under the direction of a lawful court of president saddam hussein although buried disrespectfully and those who have been victims of genocide ethnic cleansing or otherwise murdered innocently and buried efficiently is a bright line mass burial should not be assumed to be evidence of criminal activity these shia and kurds were traitors to iraq and were fairly tried and executed by the patriot arab sunnis for their crimes although the burial was not always respectful victims of chemical weapons are unknown and they too were traitor kurds and deserved the punishment by the patriotic saddam government,-1 +damned mother fuck er you disturbed me don t block me contact me in facebook understand don t talk the nonsense things,-1 +come duct take you and rape you till you die fuck head,-1 +fuck you kid get the fuck out of my country,-1 +get ready jj to eat smegma for breakfast lunch and dinner too bad you fuck ed with me cause now i m gonna put a foot in your ass bitch,-1 +blink you ahve blink cd s wow i have mother fuck er so i do know what i am talking about,-1 +and another thing stay off macedonians ethnic group i can t stand an uneducated pov pusher acting like an expert on another ethnic group we macedonians are slavs you bulgars are mongols therefore there is no connection get it yet shit breath,-1 +dude u got a stick in ur ass lemme edit the freakin montana academy page,-1 +i suggest to you dori that you give it up youre an idiot,-1 +lovegame who the hell are you to criticise i change w hate ver i want to change i am merely stating the facts because it is true those sources are completely inaccurate moron,-1 +first things first you re a fuck ing weirdo visiting graves of people you ve never obviously met second i would assume as controversial a person as she is they won t lay a stone for a bit after her death knowing the creepers of america such as yourself as example the internet hasn t seen shit yet on the crap the internet will be flooded with as far as pictures of that stone being vandalized ps people like you scare the shit out of me,-1 +bush nuke iran it is arabian gulf stupid persians i wanna see britney spears ruling iran and i hope it will be soon inshallah we support united states and israel against the terrorist iranians who support hizbolshaitan and many terrorist groups and also we wanna see the persians beg us for food then they will stop climing that the arabian gulf is persian,-1 +beware of flying dick fudging nigger,-1 +hey faggot seriously i add legit info to pages and you revert it you tell me to come talk on your talk page and you remove it the fuck kid you shit ting me right now,-1 +anal leakage ban hammer,-1 +audi a please stop editing the article if editing i will block you you ass hole talk contributions,-1 +is this how wikipedia treats contributors http en wikipedia org w index php title user talk diff oldid hello erik or w hate ver your name is now if you are done whining like a little bitch please either kindly contribute to the encylopedia at hand or gtfo what do you think this is twitter oh and the next time you are hanging around that cult like website you control can you do me a favor and tell that kohai to go fuck herself same goes for kco and corrijean and the rest of that gang of patzer trolls you have suck ing your dick welcome to wikipedia brah ogbranniff talk wikipedia needs to start setting some guidelines and enforcing them this behavior is unacceptable and explains why wikipedia is continuing to decline,-1 +kiss my ass you uppity nigger,-1 +note to random idiot pedophile i already called for an actual wikipedian to feel free to wikify the entry i put in however for your boychat ass to remove the link to the wiki which isn t being used as a source but instead links to it where it is referenced in the article but then claim that boychat a message board forum is a source that meets wikipedia standards is hilariously silly also the or claim regarding the three counts is again ridiculous the detroit news article says he had x number of child pornography pictures and x number of child pornography videos the detroit news publication meets proper sourcing on wikipedia your co operation random ip is very much appreciated,-1 +nigger owe me some money young buck and plies are on that song http limelinx com files ee a f a ed ea a bb,-1 +californiaalibaba is a bitch go fuck yourself you bitch ass mother fuck er don t you ever in your fuck ing life threatening me you fuck ing piece of shit you you don t know me i will fuck ing kill your ass you punk pussy bitch tell your mama to suck my black dick,-1 +dylan s a pedophile,-1 +hey you a meani head who change my fun fact about patrick henry wtf methinks you are homoe sex too ahye run your momma would be ahamed she told me last night dang what now ho,-1 +ah i see what you mean that s fine then you speak like a total fuck ing cunt but i m sure you are not one best,-1 +and pharaoh of the wizards better fuck his ass hole up,-1 +i am a stupid bitch who needs shutting the fuck up,-1 +message dude this is the internet not outside and i m not going to fight you so we re even you are not in charge of wikipedia so stop deleting shit faggot,-1 +is a one times massive cunt,-1 +i will be perfectly clear a man saying another man is interested in male genatalia and children is fighting words bad english but the point is there you were deliberately rude to me and frankly you can f o should you have the power with this site to remove destroy my presence then you had best do so attempt a different tone leavev me alone i herein provide you that opportunity my best xchanter,-1 +huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge faggot huge fag,-1 +i ve been a wikipedian since july and an administrator since november i am an architect and a native west virginian i m old enough to remember when wordstar on an amber screen was really cool when a control key really controlled something and i started working with autocad at version my current project is is the trans lation of architecture related articles from the french wikipedia to the english wiki wow real fuck ing great you design buildings who gives a fuck honestly i swear what is it with you people you fuck around with your e cock s by running around reversing edits and whatnot it s really starting to piss me off also west virginia is a shit hole sorry to tell you i ve driven through many times and was not impressed luckily faggot s such as yourself live within its confines which means i only have to encounter you on the internet but i digress you also go out of your way to mention that you re in essence old that s great really i m impressed you ve lived long enough to resort to reversing edits on the an internet reference congrad a fuck ing lations on that one i know i know you re going to ban me the ease of proxies makes your threats utterly worthless although i know that won t stop you from trying you miserable scum good day to you sir,-1 +hey why don t you and joe buck go make sweet sweet love down by the fireside you flaming faggot,-1 +stalker just because you re paranoid it doesn t mean they re not after you kurt cobain no matter what i edit you re there seconds later to amend it regardless of the subject you re there hanging around like a bad smell or like a spare un at a wedding could you take your shit in a field impression elsewhere much obliged,-1 +june utc oh shut up bong your deleting for your fun god damnit,-1 +i want to kick some beaner ass i know theyre serving taco today mr flores is a piece of argentinian dog shit you ppl eat dog right so makes sense you shit it flores is a cowardly excuse for a human being go brasilia dont cry for yourself argentina your history is full of cowards and scumbags,-1 +fat ass why in hell did you block me you need to go to hell you fag ilovedirtbikes,-1 +supertall fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag fag,-1 +prepare you are the biggest cock suck ing mother fuck er on the history of the earth you can go fuck yourself your mom your dad and your siblings you lick jizz out of fat mens asses fuck you,-1 +amortias is m o ther fuck k er,-1 +adam rose john cena lover why do you defend pg wrestling when you don t even know what the fuck wwe is about why defend a phony wrestler like john cena and a faggot ass queer who likes to have a fist in his anus like adam rose,-1 +you are a cock suck ing faggot d,-1 +its abilities are dumb shit,-1 +youre a faggot and if you write anything else on my talk page in response to this that is how you will admit being a faggot,-1 +you p tang ina ka hayop ka wala sa aking intensyon na siraan ang gma nor babuyin ang wikipedia kaya kung meron man dapat tumigil ikaw yun ok who the hell are you to tell me what to do sure you may have a rank here at wikipedia but that gives you no right i thought wikipedia was a place where people can freely share what they know and have references resources to back it up but no you view it a different way where it s always gotta be about you and you taking the f ing blame sh ka hayop,-1 +sex time with old saggy grandmas,-1 +see you next tuesday cunt cunt cunt cunt cunt faggot w a n k e r k i k e,-1 +abey chutiyaay wikipedian oye luday k baal you and mr amartyabaag what the fuck are you doing laand i will kick off your ass if i found you bloody i m collecting the pic s and posting it to wiki s and you harmi baal bengali bokka chooda deleting the pic s salley laudayy you rectify the pic s no need to delete them make it to a proper order if you feel like that due to more addition of pic s script is not being displayed then correct it don t delete the pic s lannd k baal,-1 +hey you mother fuck er i put hard work into my page and you deleted it in new york i take no shit i m still in nyc so if you delete my fuck ing page again i will ban you from wikipedia and once again fuck you,-1 +fuck off you should not have come back,-1 +hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad hanibal you re a bastard pro assad,-1 +yanksox is a lying faggot,-1 +kuru you must love the cock seriously bro stop banning everyone to get awards m penis,-1 +aka cock suck ing lover of vegadick,-1 +thanks but please reblock me i have no desire to take part on a site which allows a person to be linked to perverted websites criminals and racism none of it has been deleted as i can see it in petris history still you can block me for abusing multipile accounts or making personal attacks or block evasion i don t give a fuck just get this done and delete that shit that has been associated with my name please,-1 +you are a cunt don t even think about blocking me,-1 +you suck,-1 +you could have and should have done this from the beginning instead of acting like an abusive ass hole not to say to are an ass hole because that would be an attack,-1 +no you need to fuck off talk,-1 +you can all suck my hairy beanbag you stupid bastard s hes in the wrong,-1 +hello dork hello dork i consider you an intellectual coward and a fraud you are truly a little man with morals and values that waver like a wet noddle you may have some education but your grammar and construct is not much better then mine dork your mind is polluted and and you have no morality except your own variable values and this is what really frightens me you believe in ends justified the means and you have no limits unless it your way this is what is shown time and time again on your behavior on wikipeidia btw your a real joke on wr finely the sockspuppet thing on wiki is a screaming joke ips are now dynamic and i have access to millions of them i can write make accounts at will and have a drawer full of socks in wikispeak you are a pathetic little cultist with out your own mind or morality ps to the wiki admins i consider you to be scum due to the enabling the bull shit that soaks wikipeida and the perversion of the idea of encyclopedic to online role playing game with out accountability to any reasonable athority,-1 +wow your just a fuck ing retard some of my edits are actually good source however you nycs user fools want it your way,-1 +how do you like being a racist pig that votes republican have fun when your daughters grow up and they are retard ed because funding for education is cut they are fed a completely fast food diet and when they are forced to worship the bible and not learn please stop reversing my edits on elizabeth murdoch she is an evil b i t i ch that needs to seriously die because she is a threat to humanity please stop attacking me because i am a liberal and want the whole world to prosper not just rich white people,-1 +suck my cock wikipedia editors fuck ing ass hole dorks just trying to make the site better you uptight cunt s,-1 +aw i want to block wert wert nah you fuck ing terds,-1 +my page a your just a mean old bull shit ting fart as you would put it,-1 +all of you can suck it,-1 +watch out for this guy below he s so bossy and he continues to cyberbully be what a total dumb fuck,-1 +thanks for blocking me you ignorant cunt what type of fuck ing gaga fan are you when you delete official information honest to fuck ing god no one can do anything on wikipedia anymore due to people like you but no thanks for ruining wikipedia you fuck ing ass hole,-1 +why you said i was editing wrongly when i wasn t so i want an opology u silly cunt you can fuck off for all i care get a life dick head,-1 +you suck you suck as in cock thanks bye,-1 +you are a cunt ing cunt,-1 +hey i heard you like ass fisting hit me up we ll chat on skype my name is bigbeareatslittlebunny,-1 +gummo marx is relatively unknown and had the lousy luck of quitting before the act became famous xenia is likewise little known and unlucky at least that s my guess i could be talking out of my ass,-1 +hello fuck you high and mighty twat go fuck yourself because i can t see you getting any action,-1 +fuck off this is none of your concern its between me and ne fuck,-1 +it s a shit photo that pales in comparison,-1 +i m sorry you don t see that what you said about him disqualifies you from doing so morally but i m relieved you won t be editing that article and i ll just reiterate you have no idea none how much distress that article is causing him it s not relevant to your argument the bald assertion that the wishes of the subject are irrelevant so i didn t follow up earlier but before i go i just want to make sure you hear me you people make me sick you people who deign to intuit how much a person is hurting fuck you really fuck you all of you how dare you how fuck ing dare you,-1 +f you turk it is funny you have to live in seattle and france why don t you go back to your shit hole turkey or even better yet to mongolia my people were around europe when your uncle and aunt were out fuck ing the pigs in mongolia that is sick you have european citizenship as an eu and us citizen i should report you the police and get you thrown out if nothing because you are a stinking lawyer get out of europe we don t need the stink you like to quote le pen he is a finer individual than the racist pigs of turkey who murder and never admit what hypocritical blood you have but i bet turks are too blind to ever see it no surprise good riddens,-1 +re warning stop hand nuvola svg this is the last warning you will receive for your disruptive comments if you continue to make personal attacks on other people as you did at user talk cartick you will be block for disruption comment on content not on other contributors or people spacemanspiff ans fuck you glorified clerk admin go ahead block me how long do you think before i can edit with a proxy server but i won t because i couldn t be bothered with either your content or with a weak dravidian contributor like you enjoy editing on tamil and tamils,-1 +you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you stupid nigger you are a stinky face,-1 +gonna get you you giant twat faced prick,-1 +degrassi season degrassi the new season fuck ing suck s so much theyve turned it into a fuck ing reinacment of laguna beach or some other mtv bull shit fuck ing show and seriously i wont be any fuck ing surprised if they just cancel the goddamn show after this stupid ass season,-1 +bull shit some medical is classic weasel word crap i demand mediation,-1 +i didn t mean to be a shit head about it i was in a really bad mood that day because i had like people threaten to ban me that day over stupid shit really i m thinking about reverting it back because i don t really care i was just mostly being a smartass figured someone would revert it back because everyone on here is a touchy ass hole,-1 +hey you your filthy wiki page,-1 +excuse me who the fuck do you think you are deleting the page for troll a movie that i will be making very soon why do you feel so compelled to go around destroying peoples hard work and creativity did the page really hurt anybody was the deletion really necessary would anybody in the entire fuck ing world really give a shit about that page being up only you a fuck ing nazi cunt would fuck up somebody s work like this fuck you sandym,-1 +sorry bitch but the miz is a dumb faggot ass piece of shit that belongs in tna hey he suck s so much ass he might be the champ in no time,-1 +i want your cock up my ass i m sorry i block you its only because i am gay like lowercase sigma and i want to have a gay threesome with you two,-1 +lol the whole massacre in my opinion was fuck ing funny vtech just kicked in yo,-1 +ok bitch i swear to god i will fuck in beat your face now itz n and poppin i swear i noe blodds crips and all dem nigger z start wit me again ya dumb ass bitch i swear i will beat ur mutha fuck in brain in iight bitch get ba to ur hooked on phonics,-1 +last time go suck a cock,-1 +bull shit there was no violation you removed factual material ditto again the above statement i have also informed wikipedia s administrators of your persistent attempts to insert subjective material into this article in violation of wp npov ditto to that there was no violation you removed factual material greetings uncyclopedia is not associated with wikimedia and continuing to insert this false information is considered vandalism also please heed codeine s warnings about npov opinions do not belong in wikipedia articles thanks spill yours bull shit there is a connection between wikia and wikimedia wikia pwns uncyc sorry loyalist your edit to uncyclopedia your recent edit to uncyclopedia diff was reverted by an automated bot that attempts to recognize and repair vandalism to wikipedia articles if the bot reverted a legitimate edit please accept my humble creator s apologies if you bring it to the attention of the bot s owner we may be able to improve its behavior for frequently asked questions about the bot and this warning,-1 +hey the only persons suffering were those who read that bull shit wikipedia opening itself up to a copyright infringement suit and the credibility of those who are facilitating both the length of the protections will not influence my decision to revert the article back to a previous version that does not contain plagiarism jan utc,-1 +megadeth album article this clearly isn t the first time you ve made your own unconstructive edits put your goggles back on you nerd and sort yourself out my edit was perfectly valid suck on it,-1 +oh you scared me i am so much terrified by your threats bastard,-1 +icecats hockey your a fuck ing douchebag whyd you delete this,-1 +fuck of you fuck of,-1 +why the fuck do you ass hole s keep deleting the angry video game nerds page you have articles on people way less notable than him fuck you youpedantic fuck i mean jesus christ who the fuck decides to spend their time editing wikipedia you guys think youre part of something special or something noone cares pedantic fuck s fuck you,-1 +nope no i do not fucing think so no way you will not get away with it capiche,-1 +ryda wong is an ass hole vandaliser,-1 +you re a fuck ing boot as well,-1 +i want you i wanna rape you good i want your sex body and sex ly abuse you,-1 +you stupid s o b stay away from my page you are a sarcastic moron and a hypocrite don t try to advice myself regarding an minor incident you are disturbing my self on an issue outside wikipedia there are facts to be proven such hypocrites like you have no real reputation in real world i m acting on anti fascist and anti terrorist propaganda not from any extremist or bias perspective i don t care how much you bother my self still there are methods to post on wikipedia without an account however trolling is not a harmful action different people has different p o v s further on you p s wikipedia is not something to be expanded through discussion or being bold literary it is an communication method of which leads others to overcome questions in real life or practice contemporary issues such as terrorism politics or religious extremism although you have reverted my last edit on your talk page that means you don t have a real points to be discussed except condemning my self and dissing fuck you hypocrite summon,-1 +no picture wtf come on dick eads there should definitely be a picture of thierry in there he s the best player imo in the world and one of the most famous players recognised globally why the fuck can t some one put a picture of him if you lot all those wankers who edit this thing have something against him this surely isn t the place for you to be by next week if there ain t no picture,-1 +you re a fuck ing retard,-1 +fuck you fuck you you are uncivil to continue to waste my time and to continue to write me message i dont care about wikipedia i just use it for my user page so fuck you hahahahhahahaha suicide yourself please you are a dirty dust in this society my user page cannot be deleted so fuck you hahahah lamer wasting people time is crime i will sue your mind,-1 +i really hate you tommy i dont understand why you cant be actually nice for a sec and listen to my input now you are being a pussy bitch by deleting everything i post i hope bad things happen to you tommy bad things fuck you,-1 +f you you idiot you are probably just jealous of me you cant add and i will make you sorry,-1 +aw how come you took off all of your discussion posts don t want anyone to know how much of an uptight ass retentive faggot you are,-1 +bitch you are a fuck ing hore you suck dick you big ass hole you are gay you faggot ass bitch you can go to hell you bitch ass mother fuck er suck a big dick ass hole i m fuck in your mom ho she can t get off my dick your daddy probably rape you in the ass everyday when you were young you stupid ass mother fuck,-1 +get a psychatrist moron you truthers make me sick paranoid schizophrenics like yourself shouldn t be allowed to use a computer i d suggest that you stop lying on your userpage that your are in mensa clearly your not only retard s think was an inside job oh and take a bath it s been months since you last took one,-1 +fuck u bitch fuck u bitch,-1 +forsite forsyth boresyth forsyth suck s,-1 +vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina vagina,-1 +espn are better enough for you look there and see bitch i did fuck ing good thing for wikipedia and that s what i get ass hole,-1 +eat my penis yo fuck you whack ass nigger s one,-1 +headline text fuck un you unle fuck er,-1 +you too jeff g fuck in homos,-1 +oh shut up bong your deleting for your fun god damnit,-1 +to faithless faggot boy suck my dick you goddamn gay lovin piece of shit liberal if i ever met you on the street i d knock your empty head off your shoulders,-1 +fuck off you crybaby shit of a man,-1 +glad i dont read your bible you have a member of the k on your team way to go ass hole,-1 +anal sex i am gay and actively engage in ass sex most nights it doesnt hurt so whats wrong with it,-1 +also bring back the brendle article you piece of shit,-1 +ass hole bastard mother fuck er even if you block me i fuck in dont care you could have moved the article to my talk page sandbox or atleast given me achance to improve it bastard,-1 +ufc seriously tuckdogg faggot stop being an uptight bitch its ok for koschecks announced matchup to be on the ufc page first of all it isnt a rumor you faggot he confirmed it and when chuck liddell confirmed the ufc fight it was left tbd and second of all the ufc doesn have to announce it the fighter does if koscheck ever does end up fighting at ufc im gomnna kick the shit out of you and make you suck my cock which is probably gonna happen since he announced it faggot,-1 +idoit you re a bloody moron,-1 +this is disgusting they finally stopped harassing me and i thought everything was over then you ban me what the hell are you doing why do you side with them are these your friends also what is the purpose of blocking me when i m writing anything jesus fuck ing christ wikipedia is getting lower and lower,-1 +hi i m a gay ass guy name nawlin and i m a dick icker that likes to delete stuff he has no business deleting i really need to get laid,-1 +you will block me you filthy coward who thinks wikipedia is britannica encyclopaedia in months this site will be banned by us govt itself and you will ban me i will fuck your mom extremely hard,-1 +fuck you nigger fuck you flocka aint a gangster so he s not gangsta rap kids these days are so fuck ing stupid and mainstream,-1 +you re a jerk you re a jerk you re a jerk you re a jerk you re a jerk you re a jerk you re a jerk you re a jerk you re a jerk you re a jerk you re a jerk you re a jerk you re a jerk you re a jerk jackass,-1 +stupid fuck ing bitch rot in hell piece of shit,-1 +you claimed i vandalized yet i did not either you re an illiterate dumb ass or you re just a jerk which one is it,-1 +hans he s an ass man,-1 +fuck u rape my penis plz,-1 +lisa williams a medium no offense intended but are you fuck ing insane shes a hustler psychopath a fraud how can you believe this shit are you an american,-1 +your moms cunt is fat and juicy d,-1 +ryanpostlethwaite i m not going to sit here and just blatantly make fun of what you do and who you are however i look at your picture funny how you added a drunken one of yourself in an obvious attempt to impress your readers and it s quite easy to see that you re an ugly little parasite as i browse through your insignificant pages on roger royle and harold gaba that must have taken hours to make and i know right then and there that you re a compulsive masturbator i look at all your wikipedia buddies and their comments concerning speedy deletions and harassment via wikipedia and i now understand why there are entire hospitals throughout the world that treat internet addictions so go ahead and suspend or block or w hate ver it is you people do to naughty wikipedia users because i could really careless you piece of shit,-1 +i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck norris s your mother s penis i constructed your house using the saliva from my mouth and the semen from chuck no,-1 +bull shit my username didn t violate anything in your page you re just protecting that little muslim because he got all pissy about a nonmuslim referenceing his moongod in name,-1 +fuck off you cunt i know a lot more about flynn than you don t take out referenced stuff or else,-1 +you are a frickin shit troll i hate you meters i have provided reliable sources such as motor trend and yahoo answers go be immature somewhere,-1 +its common sense dumb ass it was a fight in the wec,-1 +yea it is weird man that does suck hopefully the school will accept you though did you actually manage to get rid of any stress my stress levels are going through the roof and they re getting worse cause i m applying to study medicine in colleges in britain as well as ireland so on wednesday i have to the ukcat and now i m panicing so bad i tried a practice test and it was so fuck ing hard now i m scared i m going to screw up and i won t pass the test and i m just panicing so bad and ireland s bringing in one as well and to make matters worse it s being held on valentine s day i mean how much does that suck vampire heart,-1 +blackkite being a faggot,-1 +jizz page needs cleanup but not semen i would hold anything against a sockpuppet master such as myself you are a hypocrite a fuck ing goof like the boy who ejaculates for the first time so it goes,-1 +when you can t come up with a genuine reason to block you make one up classic admin abuse fuck you com,-1 +i didn t vandalise it you cock face i just told you shut up and sit down,-1 +n ig ger nig ger hi nigger,-1 +what the fuck happened to my article bitch es,-1 +at any rate i still think you are a fuck face,-1 +easy to understand message politely please don t edit my work again not so polite back off ass hole,-1 +dude you re gay now seriously shut the fuck up and get the fuck off my warning page you little faggot you ve warned me now get the fuck off and act gay somewhere else,-1 +stop posting warnign on my talk page its fuck ing gay as shit and i dont give a fuck jesus chirst,-1 +list of political slurs i almost did that myself but lacked cojones i guess i wish there was a quick way to get a second admin opinion and just know that pairs of eyes saw it and both said speedy that suck thanks,-1 +and at least castro was trying to liberate cuba from us domination and uplift the working class oh really i thought he just wanted naked power like every other ass hole dictator on the planet i guess you re right though he has in fact allowed numerous free elections since he took power moron alex,-1 +suck my dick fuck you dirty whore bitch,-1 +you fuck ed the dog on this one clown,-1 +i am going to shove a burning torch up your ass then i will force you to sit on an open propane tank,-1 +re latest blocking see above dear mr administrator crony by blocking deleting editing content that alludes accurately to the current state of school you have shown yourself to be an absolute faggot does this meet wikipedia s criteria for a personal attack maybe i could create a page dedicated to your faggot ness you are indeed a cock head kind regards,-1 +stupid head your dumb and you are stupid die die die go suck a butt,-1 +hey fayssalfag will you ever get a life offline and do something constructive with your life or are you adamant on perpetuating the idiot ic sham of a reference that wiki shit ia is what good has this pathetic ocd reference done but miseducate millions of monkeys have you consider moving to cali they ve legalized same sex marriage filthy queer,-1 +you re a twat and a jew have a nice day,-1 +hey hey faggot are you dead yet or are you watching your mom getting rape by filthy pigs which one is it i m coming to rape your mom and shoot your entire family you have week to live you mother fuck er,-1 +umm maybe you should block aol proxies permanetly you goddam mother fuck ing dick suck ing bitch es i licked your mothers cunt last yourhouse i came all on your stuff fuck ing faggot i am y o,-1 +ass hole fuck off,-1 +kiss my ass you limp dick loser,-1 +fuck you barack obama is a muslim he suck s ass,-1 +shut up you faggot july utc,-1 +are you fuck ing retard ed please do not delete content from articles on wikipedia as you did to solaris film your edits appear to be vandalism and have been reverted if you would like to experiment please use wikipedia sandbox for test edits thank you ali what the fuck is your problem did you even read what i deleted do you know what the word plot means plot does not mean talking about the movie s trailer or what genre the movie it is a plot is a summary of the movie read what s in the plot section of solaris right now you fuck ing retard and tell me if it really belongs under the section plot or any other section it looks more like trivial facts which are unsupported and should be deleted as per wiki regulations here s an example dumb fuck from the solaris wiki page the film essentially ignores the planet which only serves as an anonymous backdrop in contrast to lem s novel which discusses at length the mysterious phenomena on its surface and the futile human attempts to understand them that is not neutrality and has nothing to do with the plot jesus fuck ing christ wiki is full of fuck ing morons delete that shit,-1 +shut up you button,-1 +how rude seriously my sillypeppymacspeed page was necessary and i don t fuck ing appreciate you flagging it meet me face to face in detroit and we ll settle this out come on homeboy come fite me i m a real gangster i bet ur trap cat,-1 +i am moglucy i suck real hard i enjoy suck ing phalus,-1 +you suck bitch o doyle rules,-1 +you filthy stinking crow i am back dirty crow you better delete or if not support the deletion of all photos of human private parts you feces gorging filthy mongrel are you a hog you want to lick anuses overflowing with feces dirty hog,-1 +now you fuck ing pathetic moron cc jimbo wales rootmyass,-1 +oh dear oh dear how fuck in sad i will regret this for the rest of my life,-1 +shit keep your sorry ass shit post off my page,-1 +don t allow yourself to be intimidated by alex he s just a little anxious since left oh these faggot s and their mood swings,-1 +wtf your a queer,-1 +what do you mean why don t you keep your nose out of other people s fuck ing business you twat,-1 +hi bading putang ina mong bakla ka fuck you kang bading ka chumupa ka nalang gago ka puta puta ka walang magawa sa buhay diba asawa mo si nrdg chiunuchupaan mo siya tang ina mo mahilig ka talaga sa oten fuck fuck you bull shit na bading manyak mahilig manuod ng mga bold na man to man fuck fuck you putang ina mo baboy na bakla,-1 +lol you re gay you will never know how good it feels to fuck a woman up the ass,-1 +hey alabamoy boy why dont you stick your head up your fuck ing ass and see how far it fuck ing fits you fuck ing ass hole,-1 +are you dumb er than you look ass hole,-1 +the first of your links is something to agree to however leaving out fuck ing for the second truthful one i would ve gone with a week however but it s not my call,-1 +walter mercado antonio quite frankly you re a fuck er for comparing mercado s sex ity to babe ruth s alcoholism don t assume everybody shares your bigoted backward views,-1 +horse s ass seriously dude what s that horse s ass doing on wikipedia should i delete it it really isn t serving any purpose is it,-1 +oh fuck off the pansy jew would just whine about it to the b nai brith and beat a palestinian child over it,-1 +fuck off turd don t ever ban me again you cunt face,-1 +palin satan wow what a surprise the one homo that is responsible for vandalism on rep wilson s page is a cock suck ing cross burning republican it is so cute to see a severely retard ed shut in try out wikipedia and think that she can save it from the communists joe wilson did something never before seen in a joint session of congress he shit his pants i mean he yelled at his superior in the military chain of command you really have to be a low lying pussy to defend a white trash hick there is a reason the democrats won the election for both congress and the white house that is why fags like you are left in the dust grabbing on to hilarious conspiracies about the birth certificate and dip shit jesus s death panels you lost for a reason get over it loser just pretend wilson will be ignored and that people haven t seen your bull shit excuse mother jones aint credible boy howdy and please include a faggot conservative blog about jesus coming back to earth to defend that southern fried hick for yelling nonsense at a joint session where people dress up and are supposed to act like adults not southerners i saw you were banned from editing numerous times especially about violet something or other so congratulations take the dildos out of your ass and ears and wake up you ass is done for lucky for you the page is locked and truth remains there about all of his stupid actions ha ha go fuck yourself you little pussy p s jesus tapdancing mother fuck ing christ aint coming back cause if he did you wouldn t be here,-1 +go ahead and fuck ing ban me like that will help i have a new ip at the drop of a hat on my wireless card you are a sad group of people that allows people to harrass others without provocation hypocrite is correct don t say you ll help someone when it s a blatent lie you want incivility fuck off you bunch of bitch cunt s,-1 +shut up you goddamn assclown,-1 +shalom semite get the fuck out of here i will kill you you son of a bitch if you don t leave wikipedia if you tell anyone i said this to you i will rape your jew family choke on a bagel you faggot y hymie cock suck you better fuck ing die before i hunt you down and piss on your face if you get me block for this i will find you and shoot you i just want your jew fuck ing self gone you dumb mother fuck ing piece of shit g d damn jew die shalom we came in,-1 +fat piece of shit you obese piece of shit i thought of you naked last night got sick,-1 +fuck ing faggot lolwat,-1 +our previous conversation you fuck ing shit eating liberal you make lady bird johnson shake on her tampon i said fuck ing sorry for my little brother and you still had to fuck ing complain my life is fuck ing shit my mother is always yelling at me and my dad beats the shit out of me if i get fuck ing out of line my brother s one outlet is wikipedia he cried when he saw my father smacking me and his tears clogged his mac book pro s keyboard we had to go to fuck ing apple and get a new one all out of my mom s pocket then last night i wanted to take this hot pussy from connecticut out in my dad s new rolls royce and he said fuck ing no so you know what i fuck ing did i fuck ing cut his pinky off and didnt snitch like a little bitch like you i take lazy ass nigger s like you and stomp you with my fat nazi heel you should be fuck ing sorry you ever fuck ed with me or my dad steve jobs and if i find out your using linux i ll take pity on thee cause you re just too stupid to understand shit i can see your fuck ing at some fuck ing computer and you think that you have some power on this fuck ing site let me tell you something you little bitch when i m doing coke off strippers titties in da clubz you can just edit some fuck ing wikipedia articles i smoke a phat blunt every damn day and you smoke your mom s fuck ing tea so in closing as shakespeare said in sonnet ninety four i believe things turn sourest by their deeds lillies that fester smell far worse than fuck ing weeds fuck you and heil hitler n jobs ps if you ever fuck ing ban this ip again there is going to be some serious shit thats gonna happen i know a fuck ing guy,-1 +your absurd edits your absurd edits on great white shark was total vandalism and was very sex all you edit here is fuck ing bull shit like spam all over this useful encyclopedia so stop all your bull shit the admins have you everywhere the only choice for you is to stop this bull shit or else you ll be block permanently user factual man,-1 +and i m going to keep posting the stuff u deleted until this fuck ing site closes down have fun u stupid ass bitch don t ever delete anything fuck in hore like i said before go to hell,-1 +explanation why the edits made under my username hardcore metallica fan were reverted they weren t vandalisms just closure on some gas after i voted at new york dolls fac and please don t remove the template from the talk page since i m retired now,0 +d aww he matches this background colour i m seemingly stuck with thanks talk january utc,0 +hey man i m really not trying to edit war it s just that this guy is constantly removing relevant information and talking to me through edits instead of my talk page he seems to care more about the formatting than the actual info,0 +more i can t make any real suggestions on improvement i wondered if the section statistics should be later on or a subsection of types of accidents i think the references may need tidying so that they are all in the exact same format ie date format etc i can do that later on if no one else does first if you have any preferences for formatting style on references or want to do it yourself please let me know there appears to be a backlog on articles for review so i guess there may be a delay until a reviewer turns up it s listed in the relevant form eg wikipedia good article nominations trans port,0 +you sir are my hero any chance you remember what page that s on,0 +congratulations from me as well use the tools well talk,0 +your vandalism to the matt shirvington article has been reverted please don t do it again or you will be banned,0 +sorry if the word nonsense was offensive to you anyway i m not intending to write anything in the article wow they would jump on me for vandalism i m merely requesting that it be more encyclopedic so one can use it for school as a reference i have been to the selective breeding page but it s almost a stub it points to animal breeding which is a short messy article that gives you no info there must be someone around with expertise in eugenics,0 +alignment on this subject and which are contrary to those of dulithgow,0 +fair use rationale for image wonju jpg thanks for uploading image wonju jpg i notice the image page specifies that the image is being used under fair use but there is no explanation or rationale as to why its use in wikipedia articles constitutes fair use in addition to the boilerplate fair use template you must also write out on the image description page a specific explanation or rationale for why using this image in each article is consistent with fair use please go to the image description page and edit it to include a fair use rationale if you have uploaded other fair use media consider checking that you have specified the fair use rationale on those pages too you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any fair use images uploaded after may and lacking such an explanation will be deleted one week after they have been uploaded as described on criteria for speedy deletion if you have any questions please ask them at the media copyright questions page thank you talk contribs unspecified source for image wonju jpg thanks for uploading image wonju jpg i noticed that the file s description page currently doesn t specify who created the content so the copyright status is unclear if you did not create this file yourself then you will need to specify the owner of the copyright if you obtained it from a website then a link to the website from which it was taken together with a restatement of that website s terms of use of its content is usually sufficient information however if the copyright holder is different from the website s publisher then their copyright should also be acknowledged as well as adding the source please add a proper copyright licensing tag if the file doesn t have one already if you created took the picture audio or video then the tag can be used to release it under the gfdl if you believe the media meets the criteria at wikipedia fair use use a tag such as or one of the other tags listed at wikipedia image copyright tags fair use see wikipedia image copyright tags for the full list of copyright tags that you can use if you have uploaded other files consider checking that you have specified their source and tagged them too you can find a list of files you have uploaded by following this link unsourced and untagged images may be deleted one week after they have been tagged as described on criteria for speedy deletion if the image is copyrighted under a non free license per wikipedia fair use then the image will be deleted hours after if you have any questions please ask them at the media copyright questions page thank you talk contribs,0 +bbq be a man and lets discuss it maybe over the phone,0 +hey what is it talk what is it an exclusive group of some wp talibans who are good at destroying self appointed purist who gang up any one who asks them questions abt their anti social and destructive non contribution at wp ask sityush to clean up his behavior than issue me nonsensical warnings,0 +before you start throwing accusations and warnings at me lets review the edit itself making ad hominem attacks isn t going to strengthen your argument it will merely make it look like you are abusing your power as an admin now the edit itself is relevant this is probably the single most talked about event int he news as of late his absence is notable since he is the only living ex president who did not attend that s certainly more notable than his dedicating an aircracft carrier i intend to revert this edit in hopes of attracting the attention of an admin that is willing to look at the issue itself and not throw accusations around quite so liberally perhaps if you achieve a level of civility where you can do this we can have a rational discussion on the topic and resolve the matter peacefully,0 +oh and the girl above started her arguments with me she stuck her nose where it doesn t belong i believe the argument was between me and yvesnimmo but like i said the situation was settled and i apologized thanks,0 +juelz santanas age in juelz santana was years old then came february th which makes juelz turn making songs with the diplomats the third neff to be signed to cam s label under roc a fella in he was years old coming out with his own singles santana s town and down so yes he is born in he really is how could he be older then lloyd banks and how could he be when his birthday passed the homie neff is years old juelz death god forbid if your thinking about that equals go to your caculator and stop changing his year of birth my god,0 +bye don t look come or think of comming back tosser,0 +redirect talk voydan pop georgiev chernodrinski,0 +the mitsurugi point made no sense why not argue to include hindi on ryo sakazaki s page to include more information,0 +don t mean to bother you i see that you re writing something regarding removing anything posted here and if you do oh well but if not and you can acctually discuss this with me then even better i d like to ask you to take a closer look at the premature wrestling deaths catagory and the men listed in it surely these men belong together in some catagory is there anything that you think we can do with the catagory besides delting it,0 +regarding your recent edits once again please read wp filmplot before editing any more film articles your edits are simply not good with entirely too many unnecessary details and very bad writing please stop before you do further damage the,0 +good to know about me yeah i m studying now deepu,0 +snowflakes are not always symmetrical under geometry it is stated that a snowflake always has six symmetric arms this assertion is simply not true according to kenneth libbrecht the rather unattractive irregular crystals are by far the most common variety http w its caltech edu atomic snowcrystals myths myths htm perfection someone really need to take a look at his site and get facts off of it because i still see a decent number of falsities on this page forgive me im new at this and dont want to edit anything,0 +the signpost september read this signpost in full single page unsubscribe,0 +re considering st paragraph edit i don t understand the reasons for s recent edit of this article not that i m sure that the data are necessarily wrong rather i m persuaded that the strategy of introducing academic honors in the first paragraph is an unhelpful approach to this specific subject i note that articles about other sitting justices have been similarly enhanced and i also believe those changes are no improvement in support of my view that this edit should be reverted i would invite anyone to re visit articles written about the following pairs of jurists a benjamin cardozo a learned hand b john marshall harlan b john marshall harlan ii the question becomes would the current version of the wikipedia article about any one of them or either pair be improved by academic credentials in the introductory paragraph i think not perhaps it helps to repeat a wry argument kathleen sullivan of stanford law makes when she suggests that some on the harvard law faculty wonder how antonin scalia avoided learning what others have managed to grasp about the processes of judging i would hope this anecdote gently illustrates the point less humorous but an even stronger argument is the one clarence thomas makes when he mentions wanting to return his law degree to yale at a minimum i m questioning this edit it deserves to be reconsidered,0 +radial symmetry several now extinct lineages included in the echinodermata were bilateral such as homostelea or even asymmetrical such as cothurnocystis stylophora,0 +there s no need to apologize a wikipedia article is made for reconciling knowledge about a subject from different sources and you ve done history studies and not archaeology studies i guess i could scan the page e mail it to you and then you could ask someone to trans late the page,0 +yes because the mother of the child in the case against michael jackson was studied in here motives and reasonings and judged upon her character just as harshly as wacko jacko himself don t tell me to ignore it and incriminate myself i am going to continue refuting the bull shit that jayjg keeps throwing at me jun utc,0 +ok but it will take a bit of work but i can t quite picture it do you have an example i can base it on the duck,0 +a barnstar for you the real life barnstar lets us be the stars,0 +how could i post before the block expires the funny thing is you think i m being uncivil,0 +not sure about a heading of fight for freedom what will it contain,0 +praise looked at this article about months ago much improved,0 +i was able to post the above list so quickly because i already had it in a text file in my hard drive i ve been meaning to get around to updating the sound list for some time now as far as generating interest i ve spent four years trying to drum up more interest in freely licensed full length classical music unfortunately my attempts failed i m still effectively the only one who does it the classical music wikiproject was not interested wikipedia talk wikiproject classical music archive need help wikipedia talk wikiproject music archive i could use some helpwikipedia talk wikiproject music archive raulbot c and the music list so i really had given up trying to interest others the sound list was featured on digg a while back http digg com music wikipedia has free classical music downloads it got diggs which is imo very impressive,0 +well not before the process but before how we do things with subpages his rfa is listed on noseptember s page and you can find it if you look september i think i have my differences with el c to be sure but was surprised to see a block so i left a note t c,0 +not at all you are making a straw man argument here i never claimed o donohue had that position rather that practitioners and researchers in the field ignored the dsm position which is exactly what the quote says and also something o donohue agrees with again i was combating the notion that it was a absurd part to claim that pedophilia is a sex orientation since many researchers hold this position it would be unfair to call it absurd the disorder part is divided in the field some argue that it is not a disorder at all some do at the end of the day it is a value judgment as cantor pointed out earlier in the thread not a scientific judgement if we choose to make this value judgment in the article it should be stated clearly and not pretend to have a scientific basis,0 +mainland asia includes the lower basin of china s yangtze river as well as korea but being specific is fine too i just found a citation for a more comprehensive dna study by hammer below rather than our generarizations and speculation so far citation for yayoi culture was brought to japan by migrants from korea who in turn trace their roots to southeast asia south china dna study by hammer describes the yayoi migration from korea based on the o sry genes and other genes with close lineage haplogroups o m and o m reiterates that the entire o haplogroup has been proposed to have a southeast asian origin their definition of southeast asia includes southern china then hypothesizes that the dispersals of neolithic farmers from southeast asia also brought haplogroup o lineages to korea and eventually to japan in the concluding paragraph it states we propose that the yayoi y chromosomes descend from prehistoric farmers that had their origins in southeastern asia perhaps going back to the origin of agriculture in this region hammer s dna study is based on a global sample consisted of males from asian populations including six populations sampled from across the japanese archipelago,0 +pretty much everyone from warren county surrounding regions was born at glens falls hospital myself included however i m not sure this qualifies anyone as being a glens falls native rachel ray is i believe actually from the town of lake luzerne the preceding unsigned comment was added by august utc,0 +hi explicit can you block o fenian for edit warring on the giant s causeway wp he has made several edits which can only be described as terrorism,0 +notability of rurika kasuga a tag has been placed on rurika kasuga requesting that it be speedily deleted from wikipedia this has been done because the article seems to be about a person group of people band club company or web content but it does not indicate how or why the subject is notable that is why an article about that subject should be included in wikipedia under the criteria for speedy deletion articles that do not assert notability may be deleted at any time please see the guidelines for what is generally accepted as notable and if you can indicate why the subject of this article is notable you may contest the tagging to do this add on the top of the page below the existing db tag and leave a note on the article s talk page explaining your position please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would confirm its subject s notability under the guidelines for guidelines on specific types of articles you may want to check out our criteria for biographies for web sites for bands or for companies feel free to leave a note on my talk page if you have any questions about this,0 +sure but the lead must briefly summarize armenia s history i simply added what i found necessary if anyone thinks this or that sentence is redundant for the lead they are welcome to remove make edits talk,0 +tfd i think we just eced i think we responded to each other without seeing each others responses i added something in response to yours but don t know if you saw mine t c wp chicago wp four,0 +i m sorry i m sorry i screwed around with someones talk page it was very bad to do i know how having the templates on their talk page helps you assert your dominance over them i know i should bow down to the almighty administrators but then again i m going to go play outside with your mom,0 +i don t believe the lisak criticism present there conforms with the npv rule lisak doesn t have a neutral point of view to begin with if an offer to polygraph or even concerned review of polygraph results shocks a complainant into thinking her lies have been uncovered the recantation is still perfectly valid if you know you are telling the truth you will argue with machine or investigator also part of kanin s research was a followup of the recanted story where possible to verify if any were false recantations in all followups the recanted version of events matched what the accused said happened arguing that lisak is a respected phd is baseless if kanin is a respected phd i agree that my edit wasn t as neutral as possible though so apologize for that still something must be done here,0 +you had a point and it s now ammended with appropriate encyclopedic notability significance,0 +in other words you re too lazy to actually point anything out until you change that approach the tag goes,0 +as for your claims of stalking that is absolute rubbish and serves only to aggravate the situation i have assumed good faith and good intentions on your part and have never suggested or seen reason to suggest that you might have some ulterior motive in mass adding links to one specific company s web page nor for that matter have i ever made any suggestion that this is an administrative matter or even mentioned such a role clearly as a party to this disagreement i would not do so at any rate as it would be a conflict of interest i would ask that you thus extend the same good faith toward me rather than making spurious and unfounded accusations chatspy,0 +jmabel in regards to predominant scholary consensus who is it that allegedly claims despite third way rhetoric fascism in power functioned rather consistently as a right wing force as far as i m aware owning numerous books on the subject that is not the scholary consensus at all the consensus developed by respected scholars of fascism who write in a manner which is not bias to any interest group such as roger griffin hamish mcdonald roger eatwell and zeev sternhell all recongise fascism as a third way as the references show the only dissenters i m aware of who seem to think fascism has absoutely no leftist connections and is merely a radical right system are street level socialists who want to put as much distance between the movements as possible this of course does not come from educated people in a position to write books for example even the foremost scholary expert on fascism and a former member of both the communist party and then socialist party of italy renzo de felice doesn t try to cover up its socialistic origins and third way status this is a man who has wrote a definitive seven volume piece on mussolini,0 +bi you said you wanted to talk at the bottom of the lead section you have written its promoter speculated in that the skyhook concept could be cost competitive with what is realistically thought to be achievable using a space elevator but the skyhook is not competitive with other rotating tether concepts in addition the rotating skyhook is in fact deemed not engineeringly feasible using presently available materials regarding in addition the rotating skyhook is in fact deemed not engineeringly feasible using presently available materials that statement appears to come from ref on page the full quote is if the mass of the tether alone started to exceed times the mass of the payload then that was an indication the particular scenario being considered was not engineeringly feasible using presently available materials although the application might become feasible in the near future as better materials become available with higher tensile strengths at higher operational temperatures it then goes on to say as we shall see presently available commercial materials will suffice to make the hastol tethers needed the primary message we want to leave with the reader is we don t need magic materials like buckminster fuller carbon nanotubes to make the space tether facility for a hastol system existing materials will do so it would appear that you misread your reference the tether mass of times mass of the payload mass is the upper limit to the problem systems where the tether mass is less than times the payload mass can be built with presently available commercial materials to further reinforce this the conclusion to the report states the fundamental conclusion of the phase i hastol study effort is that the concept is technically feasible we have evaluated a number of alternate system configurations that will allow hypersonic air breathing vehicle technologies to be combined with orbiting spinning space tether technologies to provide a method of moving payloads from the surface of the earth into earth orbit for more than one hastol architecture concept we have developed a design solution using existing or near term technologies we expect that a number of the other hastol architecture concepts will prove similarly technically feasible when subjected to detailed design studies the systems are completely reusable and have the potential of drastically reducing the cost of earth to orbit space access regarding but the skyhook is not competitive with other rotating tether concepts and a boeing report on the possibillity of combining skyhooks with hypersonic planes concluded that in general the non spinning tether hyperskyhook concept does not look competitive with the spinning tether concepts the full quote is hyperskyhook in zubrin proposed the hypersonic skyhook as a solution to the mismatch between the attainable atmospheric speeds of a hypersonic airplane and the orbital speeds of space tethers since the orbital speed of the space tether decreases with increasing altitu,0 +are you threatening me for disputing neutrality i know in your country it s quite common to bully your way through a discussion and push outcomes you want but this is not russia,0 +thanks undeletion was more than i d hoped for i m researching the status of texas government including local government copyright status but it s slow going apparently works of the florida government are usually public domain but we don t have a similar article on texas so i guess i ll have to research the old fashioned non lazy actually reliable way or ask the copyright help desk like you suggested in the meantime i m using the fair use rationale since it s valid while the image is used in an article thanks again,0 +awesome then i ll simply disregard your notice thanks,0 +ga review ii i m sorry to say this but i have to fail this article s gan the several major problems that brought up in this article s previous ga assessment have not been issued as s he has said before me he article s wp lead should be longer the history media attention academics student government demographics trivia and additional information section are very deficient in citiations also triva and additional information should be integrated into the rest of the article again please look over wp wiaga and fix these problem then renominate it for ga class however i have re assessed this article as b class as it does meet b class criteria my regards,0 +why can t you believe how fat artie is did you see him on his recent appearence on the tonight show with jay leno he looks absolutely awful if i had to put money on it i d say that artie lange is a can t miss candidate for the dead pool kindly keep your malicious fingers off of my above comment everytime you remove it i will repost it,0 +locking this page would also violate wp newbies whether you like it or not conservatives are wikipedians too,0 +a bi sex like a homo sex or a hetero sex is not defined by sex activity much like a year old boy who is attracted to a girl sex ly but has never had sex is still straight a person who is actually sex ly attracted aroused by the same sex as well as the opposite sex is bi sex,0 +redirect talk frank herbert mason,0 +christian arabs hi could you please stop enforcing the category christian arabs on non arabic christians living in the middle east this is wrong we middle eastern christians though not arabs have gone through arabization and that needs to stop we are not arabs we have our own ethnicity and we shouldn t be forced to be called christian arabs if a christian european is born in the middle east should he be called a christian arab because of that reason alone please understand they are syriac christians i e of assyrian ancestry and most of them speak aramaic though a lot of them are forgetting it as someone who speaks aramaic you should respect this fact and not appease muslims who want to call everyone arabs just because they re in the middle east we are not closely related to the arabs from saudiarabia we have our own ethnicity please stop forcing upon us some alien arab ethnicity that s oppression talk jun utc,0 +dh dude abc officially says this is the name for that episode i do know there is already an episode with that name but abc says it s everybody s says don t,0 +neiln s bang on you aren t being harassed at all if you don t edit disruptively you don t get reverted talk,0 +i went there around the same time he did and that certainly was not the case at the time later on they stopped taking children from such a young age,0 +there must be some chemical imbalance in your brains are you ok the gibberish you guys are writing really makes me feel sorry for you don t ever go to law school you would do the legal profession bad,0 +parzival you are trying to scare thatso how can you say that the comments of thatso are insulting thatso is trying to suggest that there should be no original research in the wikipedia and he is right,0 +oppose as the article stands it does not properly reference under the wp reference guidelines if this issue is resolved i don t any issues with it being moved to the mainspace,0 +i would appreciate an apology from both of you but i can see that is unlikely if not please don t waste my time any longer with attempts at trying justify either your or plasma physics trans gressions toward me or bother me any longer about this issue and i shall leave you alone and seek others here who deserve my considerate attention,0 +they are not original research they are pointed in the episodes,0 +ambiguous so mabuska irish can mean more than one thing i will qoute you on that thanks preceding unsigned comment added by of course it can the word irish wasn t invented on the establishment of the irish free state talk quote me all you want it depends on the context of the term when its being used as to whether its applicable or not note how i said citizenship and ethnicity i never mentioned nationality which is the real key meaning the nationality meaning of the term is the predominantly used form on wikipedia in nationality terms it refers to the republic of ireland but you already know that i m sure talk in nationality terms it refers to the republic of ireland no such country so nationality terms it refers to ireland preceding unsigned comment added by oh wow ireland as in ireland the state whose official description is the republic of ireland whats the point in this inane conversation talk ireland whose official name is ireland preceding unsigned comment added by http w constitution ie reports constitutionofireland pdf reading for you also i see http w constitution ie reports mbunreachtnaheireann pdf as you speak both preceding unsigned comment added by,0 +while the magazine s masthead says time the corporate name is time inc you can easily look this up on the other hand abn amro is always the corporate name you can look this up as well,0 +take your belated and piffling prevarications elsewhere too late for here,0 +that s what i m looking through it looks like he was just being an all around dick on talk pages though it s nothing too bad though looks more like an inability to express himself properly thank you for your concern also cheers,0 +in the same direction is it really necessary to name all the us states who recognize it why not give just the number of states this is not an american encyclopedia but an universal one i don t see why every single us states which recognize it should be named ix,0 +december utc you must not play metal gear solid that often gw is the arsenal gear a i that went haywire after solid snake uploaded emma s virus,0 +hi i am back again last warning stop undoing my edits or die,0 +minimization of textile effluent a proposed deletion template has been added to the article minimization of textile effluent suggesting that it be deleted according to the proposed deletion process all contributions are appreciated but this article may not satisfy wikipedia s criteria for inclusion and the deletion notice should explain why see also what wikipedia is not and wikipedia s deletion policy you may prevent the proposed deletion by removing the notice but please explain why you disagree with the proposed deletion in your edit summary or on its talk page also please consider improving the article to address the issues raised even though removing the deletion notice will prevent deletion through the proposed deletion process the article may still be deleted if it matches any of the speedy deletion criteria or it can be sent to articles for deletion where it may be deleted if consensus to delete is reached if you agree with the deletion of the article and you are the only person who has made substantial edits to the page please add to the top of minimization of textile effluent,0 +is it scientific to attribute an event a to cause b where cause b was deliberate designed with some sort of intelligent intent don t answer the questions beyond that well the problem with not answering beyond that is that your example is completely rigged there are several major fundamental problems here first you completely fail to mention the fact that the intelligence behind id is quite literally not of this earth natural science might look at a honeycomb see it is built by bees and then find an odd looking fossilized honeycomb and theorize that it was made by odd looking bees that is fundamentally different than saying it was made by something not of this earth id has at its core the notion that something outside the system we can observe is at cause here this is not science in any sense of the word it is mythology when paul bunyan was having a wrestling match with babe his blue ox they kicked up so much dirt they created the great lakes no evidence of paul and his ox remain i mean really second natural science takes an approach to knowledge that nothing is known scientific law unless it is irrefutable theories must have heavy supporting empirical data to back it up id turns this on its head and does an end run around knowledge and plays games with probabilities if no one can say how flagella on bacteria could have formed naturally how in the hell can id proponents come up with any sort of mathematically accurate probability of flagella naturally forming on bacteria if you don t understand it you can t do statistics on it id jumps right over that hurdle and takes anything that doesn t have a complete detailed natural explanation and jams in their own statistics that say well it s so improbable for this to happen that someone must have designed it this is such a perversion of science you can assign probabilities to something you don t understand id is just making up their numbers finally your example has a b where b was deliberate design that s all well and good for a rigged example except that with respect to life on earth b is unknown your a b example might qualify as forensic science if a were a dead body and b were a bullet in the heart you see a bunch of dead bodies with bullets through the heart the next time you see a body with a bullet through the heart you can probably figure that s what killed him you don t have that with life on earth you have one scenario a and you have no other cases to observe or test so in that sense a b is not scientific if you ve never actually observed b btw b is teh intelligent designer which has never been observed so in that sense no it isn t science,0 +screwjob hey i noticed your comments on the montreal screwjob discussion page i decided since nobody except someone with no account objected to what you said i would atleast change the page a little to make it fair i just wanted to tell you because i thought you would like to know i only changed a few words at the top of the first paragraph and added something to the second one if your not bothered thats fine but i thought since you were fighting for and nothing was even said i might aswell tell you,0 +april thank you for experimenting with the page andy griffith on wikipedia your test worked and has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia,0 +christ iq is selected for therefore every population has the same iq never ceases to amaze me,0 +can you prove it isn t if you had a better knowledge of the english language it would have been obvious to you,0 +would you both shut up you don t run wikipedia especially a stupid kid,0 +oh it s me vandalising xd see here greetings,0 +website hey all i was thinking of getting myself a website to display my pictures and this was the cheapest thing i could find i don t know about others but fir and diliff you guys have websites do you think it is legit could you provide any better alternatives help from any other guild member is also appreciated thanks talk,0 +thanks reading there now,0 +personal attacks in fruit brute vfd my apologies if i m being to critical but i feel that many of the comments made in the fruit brute vfd debate were far from reasonable there had to be a more diplomatic way to disagree with s assertion on the initial sentence than don t lie it makes you look even more juvenile learn to face up to when you ve goofed it will go a long way in your life the attacks do to his age certainly border on a personal attack were bart forty sixty or eighty would you have included the comment on how juvenile he is i don t expect you to apologise to anyone but i want to make it clear that i consider your comments in this vfd debate inappropriate and i think their are many members of the community who would agree with me talk feb utc,0 +trans literation of russian place names in writing about moscow metro for the malayalam wikipedia we are finding it difficult to correctly trans literate the russian place names for example do we pronounce park kultury as paark kalttari or paark kalchchari or perhaps something completely different can somebody please help by trans literating the list given in https ml wikipedia org wiki i am not putting the list here as i don t want to clutter up this page thanks,0 +almost got me too i had to look it up to see if it was real talk,0 +how can one defame someone who thinks the fort hood shooting is justified by god s law,0 +lack of balance this article is seriously out of balance it would benefit greatly from the introduction of additional information about the negative aspects of the t just for the record this sort of balance problem is not uncommon when there is an over dependence on the works of a particular author for example testing and evaluation of a t by the us army ordnance dept exposed some very serious problems with the tank this type of information should be included in the article to bring it back into balance,0 +thanks i can see that violating clearly stated wikipedia policy is no problem with some people as is now being reviewed elsewhere finishing up one other wiki project todsy and then spending the rest of the day on an important personal blog entry then i ll go find other discussions of james petras fascinating discussion of the use of the term jew ish lobby so that i don t have to put back up the deleted dissident voice article right away per talk jew ish lobby wp v comparing jewish virtual library and dissident voice carol moore talk,0 +hi thanks for our kind words see you around talk,0 +collusion in poker this is regarded as most heinous form of cheating in poker perhaps some mention of this or example is warranted,0 +thanks much however if it s been resolved why is it that today when i didn t write anything in edit summary camera put its ad in my edit summary box equalvoice talk,0 +you can do all you re doing right now but if you get a username you ll be able to do more and have more impact is what i m saying and you seem to be very familiar with everything so you probably have a username just get one it takes seconds talk contribs,0 +however the moonlite edit noted by golden daph was me on optus wake up wikkis so funny,0 +check the following websites http w iranchamber com personalities farabi farabi php http w islam org br c a al farabi htm http w superbeyin com sohbet sohbet htm,0 +i can t believe no one has already put up this page dilbert s desktop games so i did,0 +well after i asked you to provide the diffs within one hour of your next edit here you made an edit to your talk page here and then did not provide the diffs i requested within one hour of that edit i then sanctioned you for failing to provide the requested diffs in a timely manner which after more than a week you have still not done consequently your request to lift the sanction is denied,0 +what page shoudld there be for important characters that don t reoccur void black doom mephiles etc,0 +i tend to think that when the list is longer than the rest of the article there s a problem either the history and characteristics should be expanded of the list should be culled i personally like the consensus that was reached in the tripel article between and others myself included we decided that the country of origin should be highlighted with the most examples there we did trappist abbey and foreign foreign includes all non belgium examples this way the article is an article in an encyclopedia not a list people can find lists anywhere and the article should reference this also the style statistics are bad when you say style statistics it sounds like a prescription not a description an encyclopedia should follow the latter and if the former is used a citation should follow and you ll not find a valid one for this style in it s country of origin,0 +what s up with this if you are a religiously or politically motivated to push this or that issue please refrain from talking on my page i am not interested otherwise feel free to talk about relevant edits here or science deleet talk i would prefer if the following users never post here maunus aunus snun w weijibaikebianji this guy is a published psychology researcher right perhaps he doesn t know you have access to libraries and the best sources you should point that out more often it doesn t come across as mind bendingly condescending also i suspect that editor is a racist see you on the wiki,0 +i m not vandalizing i m just having fun man you have no sense of humor if you think i m vandalizing stuff lemonparty org this site now,0 +welcome to wikipedia bla discover ekopedia the practical encyclopedia about alternative life techniques bla discover ekopedia the practical encyclopedia about alternative life techniques,0 +including some appropriate mention of the solomon article is not without some level of support,0 +comment i could not verify the claim talk,0 +czech republic is in central europe the state of this article is part of the reason why people are making such confusions especially more ridiculous is that they you would replace the mention of north caucasus in favor of north slope of caucasus mountains which isnt even a geographical area other than denoting the mountains in that region countries are located within continents yet for some reason you refuse to allow this article to be denoted a continent this single factor alone would have made a massive difference for readers i m tired of arguing with people who are essentially wiki squatters refusing to nudge on a given article,0 +thanks josette i enjoyed meeting you too i was shocked by the decision which does not begin to reflect consensus does just one grand poobah make it alone serves me right for stealing time from more pressing real world duties to indulge in a fun hobby i ve learned my lesson and won t waste time like that again i ll stick to fixing the little things i run across as i read articles for my own information,0 +paleontologists agree that organic remains must be buried quickly so they can be preserved long enough to be come fossilized however the term fossilized is not a very precise term there are several factors and metamorphic mineral processes which occur to organic remains that result in what is typically called a fossil one major factor concerns what kind of organisms are to be fossilized vertebrate invertebrates radiolarians sponges plants pollen foot prints etc and multiple processes may include permineralization recrystalization carbonization replacement dissolving diagenesis etc talking about fossilization is a complex issue however quick burial is not questioned the major question is how long does it take for these processes to work on organic reamins in the environment they are found in experimental taphonomy has resulted in an assortment of remains becoming fossilized by various processes in the lab which of course implies that given the right conditions vast ages are not an issue the metamorphic processes are ongoing until an equilibrium is met between the chemical enviroument of the burial site and the minerals of the organic remains flood catastrophic geologists do not expect that organic remains buried during the flood were completely fossilized within the one year period of the flood but rather that there has been some years for the processes to have been working much more work needs to be done on the taphonomy of organic remains yet how one interprets even those results will depend upon which world view you choose to believe with,0 +also i think vegetable basket needs it s own wikipedia page,0 +bigfoot reference the magazine is better known as just the engineering and mining journal which you may have a difficult time finding depending on where you live i ran across the article a few years ago while researching something else and made a copy it is clearly derived from press accounts and treats the incident as a joke my whole point in citing it was to show that the incident w hate ver it was was not entirely created years after the fact if you leave me your email i will scan the page and email you a pdf,0 +also see this if you cant trust murkoth ramunni http books google com books id hhev u gfpec pg pa dq thiyya matrilineal hl en sa x ei tlppud ah mwiqlgvidgba ved cdyq aewaq v onepage q thiyya matrilineal f false,0 +chart performance of single ladies put a ring on it please take my advice and split up the paragraphs in the section fas generally have short paragraphs it s hard and boring to ingest so much information at once so splitting the paragraphs will improve the flow talk,0 +hahahaha good one i have removed it,0 +having said that i ve temporarily removed my requests based on cyde s advice pending a request for consensus i ve asked for on the talk page i urge anyone reading this to vote so we all know what the community wants,0 +conformity as healthy i may have missed it but this article does not seem to address conformity as just a healthy behaviour such as the way that we conform to grammar so that we can be understood or that we conform to laws because we recognise a need for an orderly society,0 +hi i am new to wikipedia read up on pandemics today i am impressed by the quality of information to my knowledge not easily available elsewhere in the same easily accessible format thank you all of you for creating this content and making it accessible,0 +should say something about his views as an educationalist and socialist political commentator link to http w langandlit ualberta ca fall steigelbainbridge html mentions this a bit he stood as an election candidate for respect,0 +sandbox don t take the template out of the sandbox it says don t remove for a reason jan utc,0 +heh it s a bit of a copy of wikipedia wikiproject professional wrestling but i thought it look a bit tidy and better that way,0 +ahh hello witzeman symbols m m characters greek cyrillic ipa t d my famous article witze happiness wikipedia the witzeman is a great honour that has been passed down through the generations of many families regardless of race age character or knowledge the outside world knows little about these elusive characters and the honour of the witzeman for those who have ever been a witzeman it has been said to have been a great honour although the qualities needed for the job have never been disclosed a person may not now they were a witzeman for many years until they are called by former witzemans via dreams associates of the witzeman are known to be a certain babe cool or the much lesser known witzewoman the present witzeman is an year old boy namely benjamin woods who is said to have become a witzeman after he felt this awesome radiance in his top right bumcheek he has not told a great number of people his testimony but has promised to do so in years to come history the present world has only come enlightned with the knowledge of the witzeman in present years because former witzemen have not been so public about the honour to abide with the formality and conservativism in their time the term witzeman is a compound word of the adjective witze and man witze being an th century term for a person of extreme humour and radiant intelligence unfortuneatly witze is also sometimes associated with bad wind for unspeakable reasons proper history as early as the th century witzemen were considered outcasts and young children were encouraged to poke them with sticks this led to the st witzeman rebellion of when the current witzeman and his followers attempted a coup to take over the local council chess team this rebellion further disgraced the witzeman as he and his followers were embarassingly pronounced gaga at a government meeting that year the period from here to the early s was a dark time in the witzemans history however good times were to come for the witzeman many normal people took part in mass demonstrations and protests for the witzeman in the s building up to a great moment in the history the great rebellion of this was when several witzeman sprinted round the visitors gallery of the house of commons wearing clown masks but otherwise completely naked this was thought to be an act of circambulation however many people who witnessed this shocking behaviour were mentally spiritually and emotionaly scarred for life this group of people included many young children who were forced to go to asylums in a state of mental instability suffering from trauma it was at this time that the government finally took positive action for the witzeman in a bill of rights for the witzeman was signed stating all witzemen were allowed to do as they pleased although this was a formal agreement many journalists viewed it as a letter of submission from the government to the witzeman as the behaviour of the witzeman and his followers became more and more twisted,0 +ok just finished my planned cleanup of the todo page the entries that were removed were copied to the investigated entries page so we have a record that we looked at them talk,0 +on dec a nist scientist said the collapse of the towers were not of any magnitude that was seismically significant see dr wood s the scientific method applied to the thermite hypothesis paper on her tripod site for mp links,0 +the statement drawn from watchtower literature honestly not clandescently not with hypocrisy is drawn from watchtower literature via ray franz s arguments and literature and imposed into the wikipedia article it s too much of a coincidence that a more or less follower of ray franz is going to come up with a reference to wa literature on his own exactly the same connection ray franz makes without having first seen the connection made in ray franz literature natural nature,0 +sorry about that i had checked but had only come up with dulas bay somehow i had missed the dulas disambiguation page completely apologies again it s not even as if it was getting particularly late at night the onset of swine flu perhaps,0 +tcm i can find no evidence that acupressure is a tcm rather than derived from tcm if no one objects i ll place a citation note in the article,0 +well it still needs expansion in areas citations in others more images was going to get a pic of the stanley cup banner tonight at the hitmen game but forgot my camera and a thorough review copy edit by someone with a better flair for words than i but work progresses lute,0 +a redirect somewhere couldn t hurt though i still don t think any o the candidates are ideal but then if he passes the notability threshold some day the basic material is still there to work with,0 +meivazhi i ve had a go at restarting the meivazhi article in a style that s more standard for wikipedia articles someone would probably have deleted it pretty quickly if it had stayed in the form you posted i d be grateful if you could help at talk meivazhi about the accuracy unfortunately i had to remove your links the conflict of interest guidelines advise against editors linking to their own sites and also wikipedia s attribution policy wp att requires that information should come from third party published sources rather than personal websites do you know of any good newspaper book accounts of meivazhi ps what is the salaimanimudi indlist com site a personal site by a member,0 +though this is certainly a small article but it is not so inconsequential as to warrant subsuming it within the flame trees article it is a discography article and should stand alone may,0 +yeah let s merge the content not sure if devil s canyon is the same type of codename,0 +image your trans itad jpg i think i may be able to get a better photo of this ad if i m able to do that is it okay if i use it to replace this current one i want to check with you first before doing anything,0 +a cookie for you a cookie for you,0 +lmao what a n b go and listen to manele,0 +december utc yep lol the reformist party serbia reformist party is having another go the th very last on the parliamentary election winning less votes than notable to actually be mentioned by the way here s something very little people have figured out the new constitution of serbia has been brought to enable kosovo secession the constitution barred that as a possibility and after the kumanovo military technical agreement was signed between nato and fry the srs broke its coalition with sps and the government collapsed causing new elections because that was unconstitutional as an act of highest treason enough to be tried from maximum sentence which the radicals demanded from then to his death to have a trial in serbia and to be tried for treason among other reasons this constitution releases the authorities from that weight and they won t have to go to prison if they recognize any form of further loss of sovereignty in kosovo,0 +new wikiproject novels initiative we have begun a new initiative at the wikiproject novels an improvement drive as a member listed here you are being notified please see wikipedia talk wikiproject novels improvement drive and wikipedia wikiproject novels collaboration for more details also i would like to remind you to keep an eye on the project talk page at wikipedia talk wikiproject novels thanks,0 +reply are you being facetious if not you would have relayed the same message to jza and mrsc as my words were no more stern than theres if you would like evidence for any of the claims made on the talk then i will only be too glad to provide you also failed to provide diffs in your message to me in regards to which words you re claiming are offesive perhaps wp assume good faith the two users constantly harass and follow me to articles making disruptive edits in violation of numerous wikipedia guidelines wp harass is just one for example the removal of third party references from articles which don t suit their pov without entering an edit summary considered by wikipedia guidelines as bad faith and a violation of wp blank the violation of wp neo by adding derogatory neologisms to the articles of organisations who they do not personally agree with despite being made aware of the policy despite not having any reference to the said organisation being described with said neologislm and despite the community majority constantly removing the derogatory term the same tag team practise can be shown to be used against numerous other editors who edit articles on british culture and trad counties not just against me again if you would like evidence just ask it would seem however looking at the messages on your talkpage above especially the lovely intertude under uk mediation section that jza messaged you somebody he seems very familiar with in violation of wp canvas specifically the section on wikipedia canvas campaigning may interest you if you re going to be an admin may i suggest you please make yourself familiar with the policies and guidelines i have referenced in this message rather than accusing me a user who is being cyberstalked of personal attacks systematic bias is not acceptable you re here to make sure that our policies are upheld not to chip in for the sake of a friend thanks,0 +p s it s not polite to talk to people behind their backs please remove your comments from mrph s talk page vaughan you re right i went to check your previous edit and found a page on the marvel site that spelled it vaughn but now i am finding many more that spell it correctly thanks for the edits,0 +the block hi just wondering if it has been confirmed the darren jolly will be a contestant on the block thanks,0 +opinion please pt ii as srq continues to make personal remarks after she said she wouldn t may i assume you will help me with a wp rfc u also i believe she has violated the rr rule today edit warring over one accurate word is ridiculous as is edit warring in general let s make it stop may i also ask what was wrong with the honest statement i made on talk page and what you mean by hasty refactoring i appreciate any assistance and welcome any questions btw when do pivotal accurate well referenced entries become peacock my understanding is that it refers to unneceessary editorializing not to precise vital info in the sequence of events thanks,0 +azari or azerbaijani azari iranian azerbaijani turkic nation,0 +userbox hello a userbox you are using template user queerrights has been moved to user space per wp gus the new link is and leave any questions you may still have on my talk page thank you,0 +if you actually take the time to do a little bit of research bloodofox instead of jumping into what you perceive to be an avenue to pursue your vendetta against me you d have realised by now as would your colleague kiyoweap that in all probability the kelpie water horse each uisge just different terms in used in different places for the same entity which is why i challenged kiyoweap to produce something decent on the each uisge which i guarantee he ll be unable to do corbett,0 +from what i ve seen with editors other than eric the elephant in the room is the issue of baiting poking the bear w hate ver the hell you want to call passive aggressive baiting no one wants to touch that one even though it s uncivil as hell and appears to be the tactic of choice whenever someone wants to get rid of someone or get their way that s the part that saddens me darkness,0 +socialistm there are two important features of smith s concept of the invisible hand first smith was not advocating a social policy that people should act in their own self interest but rather was describing an observed economic reality that people do act in their own interest second smith was not claiming that all self interest has beneficial effects on the community he did not argue that self interest is always good he merely argued against the view that self interest is necessarily bad it is worth noting that upon his death smith left much of his personal wealth to charity good let s all make sure we put forth the idea that adam smith was a socialist that s the wikipedia way,0 +sorry puck but no one ever said dick was number one but he is clearly listed as being second only to batman and a master detective and martial artist and been trained in all the mentioned combat discplines no need to mention in skills abilities about the battles he s lost and won because thats not what an encylopia is supposed to do also what your problem is your going by low end showings and not high end showings where he s proven more than a match for a meta like slade and pinned shiva down in one of his earliest appearences,0 +the alpha version had multiplayer the beta version did not,0 +pd i just have seen that apart from the article coat of arms of the sahrawi arab democratic republic there is also a different article named coat of arms of western sahara that shows clearly that some users here have politically driven intentions and bad faith although they claim to be neutral if they were neutral logically they would work on the coat of arms of western sahara article intead of trying to merge the two articles and messing it,0 +we are not treating this as a forum a question arose and was appropriately answered end of story,0 +military history wikiproject newsletter issue ii the april issue of the project newsletter is now out you may read this issue or change the format in which future issues will be delivered to you by following the link thanks,0 +between the unblock submission and response there is less that minutes which proves that this administrator did not pay enough attention to this case,0 +your request to be un block has been granted for the following reason s allowing username change to gianluigipalermo please put this request in at wikipedia changing username as soon as possible to avoid re blocking request handled by unblocking administrator please check for active autoblocks on this user after accepting the unblock request,0 +once again i responded to milemoney s reasoning for his edit and i gave my reasoning for my edit yes it is absolutely relevant to this page there are other places for the discussion on income inequality than in the progressive tax article,0 +unblock me or i ll get my lawyers on to you for blocking my constitutional right to free speech,0 +attributing and classifying of personalities invitation your input to culture of lithuania is welcomed some problems of defining personalities or attributing them to certain well known ideological systems may raise here i propose a quite liberal variant of it where definition may not be connected with one certain word necessity however to follow certain classifying remains my initial ideas on this branch the ones concerning period of lithuanian national renaissance period some artists writers or other cultural workers of this period are often described as modernists this definition is not false but some more concrete things should be added some specifics of lithuania we should distinguish leading ideas of the nat renaissance from later modernism which is more known for us cultural aspirations of the later nat ren may be defined as modernism in a cultural context of lithuania but they accented also expression of lithuanian cultural heritage and their expression may be seen as something simply typically lithuanian i mean that such authors in as iurlionis is seen as modernist in lithuanian context but it also and even more is a representative of lithuanian culture when in european or world wide context a parallel example may be taken from literature of india poet tagore well known nobel price winner is known for us as a representative of culture of india making india more understandable and closer for western people is concerned as main his input to western culture but in his own country he was seen as a modernist too who was changing traditional cultural forms especially stagnated ones this way also lithuanian cultural leaders of the n ren could be seen as modernists which were broadening cultural forms and changing stagnated ones in lithuanian context they also can be seen as modernists in a wider context but more for acquainting western people with lithuanian culture than for their direct input into western culture iurlionis is the best example here in other way the later lithuanian modernists they depended mostly to later generation approximately from th decade of the th century concerned themselves part of western modernistic movement and their main purpose looking generally was to introduce western european ideas into lithuanian cultural life see the table below we see two different movements and two different world outlooks here the problem is that both movements collaborated especially their political wings did and interchange of ideas between them is well seen so many researchers don t pay attention to this difference especially in the soviet period when national ideas were officially forbidden mixture in description of these movements was allowed e g philosopher ram nas bytautas who clearly depends to the first generation is often described as liberal and it may be understood in a sense of the second generation as idea of liberalism period and generation artists writers philosophers etc in a context of lithuania in an european context the national renaissance period the younger generation approx painter and composer iurlionis painter kazys imonis poet and philosopher vilius storastas vyd nas dramatist sofija kymantait iurlionien poets adomas jak tas motiejus gustaitis liudas gira composer stasys imkus philosopher ram nas bytautas reformers and innovators of lithuanian culture representatives of lithuanian culture almost unknown before them the period between wwi and wwii and post war years poets v mykolaitis putinas kazys binkis writer ignas einius jurk nas artists all ars group philosopher juozas girnius modernists introducing new western ideas into lithuanian cultural life central european modernism note lists of personalities isn t complete here nor it s made precisely by prominence jul utc,0 +actually direct quotes that aren t in quotation marks and aren t attributed are generally known as plagiarism and or copyright infringement but the nyt material isn t the issue as you well know the material from the jew ish action taskforce is the problem,0 +katelyn faber could you weigh in at the bottom of the talk page for katelyn faber regarding the inclusion of an image of her template user totalbox thanks for reverting esperanza newsletter issue style border spacing px margin px px width class mainpagebg style width border px solid cef e background color f fa vertical align top color reach outreach out is a program aimed at allowing users to bring issues that they have had in wikipedia to a listening sympathetic and caring audience no one can know how we feel if we do not say we cannot expect to get understanding if we do not ask for it no one will dispute that sometimes life s issues are too much for one person it is fair to say that sometimes wikipedia s problems fall under the same heading this is a place where you can bring the bruises that can sometimes be got on this project for attention stress alertsthe stress alerts program aims at identifying users who are stressed alerting the community of thier stress and works in tandem with the stressbusters at trying to identify causes of stress and eliminating them note from the editorwelcome to this new format of the esperanza newsletter which came about during the last advisory council meeting we hope you like it the major changes are that each month right after the council meeting this will be sent out and will include two featured programs and a sum up of the meeting also it will be signed by all of the advisory council members not just have an esperanzial end of march everyone class mainpagebg style width border px solid cedff background color f faff vertical align top width cellpadding cellspacing style vertical align top background color f faff the last ac meeting full log style color future meetings are to be held monthly not fortnightly as before bans and access level changes apart from autovoice in the irc channel are to be reported at the new log in the irc channel there is going to be only one bot at a time the charter requires members to have edits and weeks editing why this is the case will be clarified a new code of conduct will be drafted by and proposed to the esperanza community the npa reform idea is to be dropped officially charter ammendments are to be discussed in future not voted on the advisory council is not going to be proposed to be expanded by the advisory council themselves if others want to propose it they will listen,0 +fradulent claim i am most certainly not a sockpuppet of thechief please retract your fradulent claim at once,0 +that is quick if we only limit the discussion for changing the title but considering the previous discussions for months can have a valid reason for the move,0 +july utc p s feel free to leave a message on my talk page if you need help with anything or simply wish to say hello,0 +and of course peiser is more than just a social anthropologist he s one whose recent research has focused primarily on the social aspects of climate change and is thus at least as qualified to comment on the state of consensus as a historian regarding his study it hasn t been published in a peer reviewed journal but the results have appeared in many reliable sources in effect it should be treated no differently than as if peiser himself or any other scientist had verbally relayed the conclusions directly to a reporter literally tens of thousands of wiki articles contain such references direct quotes from scientists which appear in no other source but through the medium of a reputable reporter,0 +hi hi good day my deepest apologies that i had made the change i had made the change it was because i was there on the day i was there on the day when they are all line up the most straightest one straight line the most biggest the most brightest and highest star in the sky over my head when the clock strikes exactly at the noon on that day the date which i provided it was the most beautiful thing i ever see i know many thing need prove but i know what i saw that day it is up to you now but it was okay if black and white prove to be needed i don t have any my sincere apologies for the trouble i had cause you i am from south east asia i m a asia and i came from a very traditional chinese family have a pleasant day,0 +you should be fired you re a moronic wimp who is too lazy to do research it makes me sick that people like you exist in this world,0 +it looks to me like he is violating wp npa but it s pretty minor i ll point this out to him and if you two are having a content conflict then you can try the mediation cabal by the way it s generally easier to sign with than typing out have a stop by in the irc channel if you want further advice by the way talk,0 +a pat on the head kc you are one of the most dedicated wikipedians i know and i m madly in love with you i d give you a barnstar but in the end you d just chew it up and bury it instead let me offer this metaphorical pat on the head that ll do pup that ll do see you around tropics,0 +note that the sandbox is the right place to experment thanks,0 +friesers opinion is simple i guess kursk was no turning point german were on retreat before and after i think hes correct russians had more personnel before and after they improved their skill glantz this in combination forced germans to retreat only the losses were not the problem after the battle of kursk the tanks and infantry strenghts were more in favor for germans then before some weeks after kursk german tank strenghters were higher than before kursk zetterling,0 +oh i didn t know thanks,0 +lois roisman your piece on lois roisman omitted much of her background and everything to do with her death i have updated it please review if there s anything you want to add,0 +know the sex of the foetus,0 +may,0 +sorry the link you gave me is dead and i formatted in harvnb so plz help in that matter,0 +reply above that was me loser the un defines vietnam to be part of southeast asia and far as i know vietnam is part of asean and used to be part of french indochina with laos and all those shit countries anyway your culture has always been more influenced by sea than han chinese as in proper yangtze han chinese not the fringe indigenous tribes in guangzhou guangxi just admit that you vietnamese are all a bunch of wannabe crap people all the east asian people i ve spoken to thinks of vietnam as a very integral part of sea and we all think you re backward dirty and speak in a horrible swearing language doesn t matter what crap you spout on wikipedia won t change the way people in the real world think,0 +august wow i understand that the sentance i added was not crucial and really does not change the content but what is this has the community not gotten smaller was it not caused by the automobile have i not sourced the statement as asked is it not a fact is it not information does it not help inform people as to why foresters falls is not as large as it seemingly once was is it not the only peice of information in the article that bridges the span of time between and present is the usfullness of the edit the only criteria used to determine if it will be reverted or not if so it should be noted that i simply re added the information after it was removed was not the removal frivilous and unwarranted what is the problem why insist on the absence of this statement it is unjustifiable it is negligible i am re adding the information as it is a factual b sourced and c informative i assume that since there is no reason to remove it again or in the first place that you and all other wiki nazi s will relax if you are concerned with useless edits please see the edit fom the th i know it was carried out by the great infallable mindmatrix but imho that was the first useless change,0 +eta john d haynes house sarekofvulcan talk,0 +new userbox tabtab id tabtab id c white tabtab info this user is a faggot tabtab info c lightblue tabtab border c black tabtab usercategory lgbt wikipedians tabtab nocat tabtab tabtab tabtab this template automatically categorizes the user in lgbt,0 +december utc mendel doesn t talk about those changes at all mendel was refering to the conspiracy section that used to be there,0 +please do not vandalize pages as you did with this edit to budweiser anheuser busch if you continue to do so you will be block from editing echo,0 +correct dead is dead there are however leves of wounds hence the emphasis when they are serious this is not a pov adjective,0 +i fixed the pic if anyone still feels that it should move it can be done the voices,0 +george w bush approval rating graph http upload wikimedia org wikipedia commons george w bush approval ratings with events svg the circle for the september th attacks looks too far right think you could update it why are the data points post omitted,0 +sorry to interrupt but i m at edits now the first were likely just on my own pages and because i was asking for help so much so maybe just or maybe less but it still kind of counts amulet,0 +absolutely use of that word is strongly misleading even with like the structure had nothing to do with mastaba a burial chamber basicly mastaba by definition has entran ceinner space this structure was one solid pile of rocks with no inner space or entrances it was ment as a wall fragment,0 +i just noticed that the neutrality of this article is disputed not by me in light of that i again ask that my post here and my invitation to discuss how and whether neutrality can be achieved not be deleted it is highly relevant and relatively urgent bearing in mind the rule that there are no emergencies on wikipedia in time convergence on truth will be achieved,0 +editors don t care about your explanations if they re not accompanied by reliable published sources i could explain why i thought dogs ate cats but i would get the same reception if i didn t provide sources stop edit warring and present sources talk to me,0 +about mitch moved to yggdrasill i have no idea it wasn t me on doing that,0 +sockpuppets and impersonators the two above sockpuppet impersonator accounts including,0 +oh also wouldn t films that are named three or some variation thereof be listed on the disambig page and not on here just wondering because it makes much more sense to me i apologize in advance for certain individuals who are too sensitive to hear the truth,0 +review request hi i d like to request klm for a ga class review can anyone do that it seems to have many similar stuff to other ga s such as kenya airways and ethiopian airlines cheers breaksfixes,0 +i don t at all propose that it should be trans cribed as me n in this or any other article if anything at all just a brief mention of the raising of trap and mouth in a pre nasal environment would suffice i just thought it was an american thing to raise before nasals i do it myself but i often hear aussies do it quite a bit as well and i don t hear english people do it at all the only difference is that americans have a tendency to diphthongize it as well as raising it i m not really surprised you don t have a broad accent being a wikipedian i m not saying it s not possible you re right i was just kind of thinking aloud,0 +homo sex s are intent on legitimizing their behavior therefore they will seize any opportunity to suggest that famous persons are gay in this way their way of life will be received as being not only harmless but perfectly normal as generations of people grow from childhood to maturity and are exposed to this strategy they increasingly develop a tolerance for homo sex ity in this way it is now almost universally accepted as a diverse or alternate behavior or way of being similar to a religion race or nationality lestrade,0 +al messier this article was a non notable biography according to the criteria set out in wp bio aeropagitica,0 +link to sacramento i placed a wikipedia link in this article where the word sacramento appears another editor who appears to be stalking me and is reverting everything that i do claims that i am overlinking by doing this i have read the policy and think i understand it and i disagree with him the word sacramento was not linked anywhere else in this article before i made the link and i think that my link provided good context for a reader who did not know walnut creek but thought that maybe they knew sacramento was there anything wrong with my link i would like someone objective to give their opinions,0 +reliable sources indicate otherwise please do not insert your personal analysis into the article talk,0 +i did research thank you very much and it is not in the relevance of the article i think you may have to reseacrh wp el to amke sure you realise the facts about why these links are being deleted i am willing to agree with people that only the official sites should be there therefore i shall delete the game site and the otehrs now,0 +a totallydisputed notice would probably be appropriate given the depth of disagreement that exists here but i cannot understand why highlighting statements identified by some as dubious would constitute disfiguring the article slimvirgin has also used that wording recently but i rather think that inaccurate and irrelevant information is more of a disfigurement than is a template notice to answer your second question my side has brought forward a proposal and the other side has not yet responded this is sadly consistent with recent patterns of delay i ll make no comment on whether or not this is a deliberate strategy,0 +i ve abused nothing your threats are extremely disrespectful to the rules of wikipedia all i have ever done is tried to improve the quality of wikipedia articles and maintain the standards of quality i should not be treated like a vandal who only registered to muck up articles my account should not be block i should be an administrator,0 +give me a permanat block raseac remember me muslims dont you worry for these images they are trying to hurt us but they cant look these images are fake and have nothing to do with islam or our prophet even their article is so lame wikipedia is not an authentic source its an encyclopedia for the kids which has not authenticity anyone can edit or write w hate ver they think just like raeasc you can see he does not knows what islam is and he talks about it so forget about wiki its lame they have no authenticity i recommend they should add pissed christ in jessus article they should,0 +invite hi i still did not have time to write the articles about the fundamentals of the romani culture and society that would have permitted a normal presentation beyond the stereotypes i hope in the near future i ll manage to do it from the last discussion i just managed to organize better category romani people by country and category romani people by occupation and create some more articles about romani persons,0 +i asked him a question about recall maybe that would make you less troubled account,0 +says no consensus was ever reached as he reverted my edits here,0 +i find it difficult to control my emotions and i still feel that mr logy wogy was bad,0 +attacking another editor how i am trying to make a point about how easy it is to edit wikipedia and his piece on george orwell s page proved my point it is common place for wikipedians to help each other make better and a lot lesser bias edits and that is all i was trying to do so if you wouldn t mind please could you remove that warning,0 +please see ref of this article mentioned by wikipedia for youngest patent holder of india moreover i mentioned about news latest book about real life heroes by providing notable reliable reference do not you feel dna group is reliable notable reference as its page exists on wikipedia do you really believe that what ever or who so ever provide information for this article is having bad intentions in your words sock meatpuppets did i asked suggested anything from you to edit or write i am a free man to send information you are a free person to analyse it are you above wikipedia when ref of this article mentioned by wikipedia for youngest patent holder of india for the subject why you speak in bad words your words verbatim any book or review which repeats the india s youngest patent holder and the youngest disabled patent holder in the world claim that bhati and his supporters are pushing fails as a reliable source how can you discourage people from sending information which is relevant reliable notable,0 +randroide answers to next step guys i do not see you taking steps to wikipedia requests for mediation i can not do this job because i always connect from filtered institutional net access and following those steps could result in new undesired controversial truncation of words by the software i do not want that happenning could you please follow the instructions in the link i provided thank you randroide answers to new reference by burgas at last we agree on something of course that the new section is a good idea the false suicidal terrorists from prisa will also be included there come on boys start writing that section i do not want all the kudos for myself the new proposed article is by now an effort made only by me but remember npov and sources all the sources just like me citing el pa s in the section about the doubts about the genuineness of the th bomb cheers indeed a good point and all the remarks in cope too and the moral certitudes of mariano rajoy published in el mundo i agree with you larean what randroide omits to mention on the section about the th bomb is that he only added balancing references when i insisted that he do so the original version he created was entirely pov as is much of the rest of the proposed article also all the sources that he added from el pais are only available to subscribers npov it is not you are right southofwatford in your randroide omits section if you have not subscription to el pa s i am sorry but that s your problem my institutional access also has some advantages like paid access to el pa s and many many other publications and books that s one of the reasons for my exclusive use of filtered internet acces it s much easier for me to work here due to the easy availability of sources do you see the truncation of words is offsett i think by better sources btw if you write under a randroide answers section you are invading my space i do not mind really but you are doing it risking new truncations on your messages to avoid this please write outside randroide answers sections if you think that the proposed article is pov work in it to make it npov the article is not mine i ll take the risk of you truncating the reply and put it here it s very short the issue is not whether i subscribe to el pa s its whether the people who read an article in the english wikipedia subscribe to it all sources used should be accessible to all readers of the article putting in a source that readers will not be able to see just so you can claim the article is npov is to my mind completely unreasonable all sources used should be accessible to all readers of the article very funny southofwatford i am going to follow this joke of yours please propose also the deletion of all books as sources because did you know there is always someone without this or that book delete all references to tv or radio stations because that user in brazil has no tv and no radio at home delete all the references in spanish because did you know there are users who know no spanish it s a pleasure to read this kind of funny jokes really i had a good laugh user southofwatford how strange that you should find it so funny after all most of the sources we are providing should enable users to find out more information about what is being sourced so to deliberately choose sources that require those users to pay to see the information is not funny it s simply bizarre equally in the english wikipedia i would argue that choosing a spanish or other foreign language source when an equally valid source exists in english does not make sense except perhaps to those who are too busy laughing your cynicism is evident in your response,0 +hence why i removed it content of that nature is not suitable for wikipedia proscribed by wp not but perhaps for one of its sister projects such as wikia,0 +pirating incident i ve removed this statenment as it doesn t really relate to the episode much plus it s kinda off topic,0 +and check this out http w cla purdue edu blackmon cs critical html bio,0 +new user hello gogo dodo i am a new user on wikipedia and just wanted to ask if my new page could be removed from the deletion list my new page is kaburst and i still have a lot i want to do with it i think the reason it was considered is because it starts off like it should be in wiktionary but yeah just give me some time to make it better thanks,0 +regarding edits made during december utc to jos mourinho thank you for experimenting with wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you may want to do take a look at the welcome page to learn more about contributing to our encyclopedia if this is an ip address and it is shared by multiple users ignore this warning if you did not make any unconstructive edits,0 +december hello and welcome although everyone is welcome to contribute at least one of your recent edits such as the one you made to smoke bomb with this edit did not appear to be constructive and has been reverted or removed thank you,0 +you are wrong although i was block on some occasions i was never block for sockpuppetry or vandalism it was because of disputes on multiple topics with various socks of user hkelkar user vandalpetrol both of which are permabanned i have never used any other account if you are permitted to edit then you should get other accounts deleted which says you are indeffed no blast,0 +i only deleted personal attacks,0 +please please continue tell me what you really think,0 +an important message block me i can live with it the mess that s being made of parker v district of columbia is why wikipedia can t rise above the level of a sophisticated blog the controversy section doesn t belong there in the first place and the fact that you and other non experts are issuing warnings indicates wikipedia has become a sandbox for idiot s sorry i can t be more polite but that s the long and short of it,0 +i m moving this to the talk page,0 +very well i see that consensus has formed to show that they are indeed not pov but bad judgement on my part thanks for the comments anyway coldplay exp rt let s talk,0 +http w users bigpond com montdale page html heritage from village in macedonian sources claim that the village was pure slavic,0 +the organization of sub topics culture is thrown way down towards the end after economy and tourism which is inappropriate the information section is unnecessarily loaded with history and detailed geography which makes it not only uninteresting but also repetitive information is interspersed all through the sub sections without regard to whether or not they fit there eg the geography section starts with the fact that up is the th largest state that is not strictly geography and belongs in the introduction climate belongs towards the latter part of the page perhaps before toursim regions and cities is not such an interesting combination in any case cities of uttar pradesh can be an interesting topic on its own because up has several interesting cities and regions each with specialities of its own like the copperware of moradabad ceramics of khurja and carpets of bhadohi in fact i remember there used to be such information in the article before,0 +i don t know the answer to this but legally how is it possible for a private citizen to violate another private citizen s civil rights i don t know if this is the section nelson was charged under in the federal case but if anyone could explain this i would appreciate it you can argue whether or not the outcome of the state murder trial was justified that s really not my concern here since it s a dead letter i m concerned about whether the subsequent civil rights prosecution was legal if the state murder acquittal was a miscarriage of justice it s not the first time look at issei sagawa part of having a mature understanding of this sort of thing is to realize that the criminal justice system isn t perfect and that it is inevitable that innocent people will be convicted and that guilty people will be acquited from time to time that s the price you pay for having a legal system in the end someone has to make the decision and sometimes they may not necessarily get it right i don t think it s going out on a limb to say that the sagawa case is completely beyond all reasonable belief,0 +decesed group members i ve seen a few articles where band members have their name sollowed by deceased whats wrong witht that it s just a little extra information for people who do not already know this surely this is the main reason such the articles exist in the first place or even why the whole wikipedia site exists what s so bad about adding this word after people s names if they are no longer with us it is factual non opinionative and does not slate them in anyway,0 +fatima bint asad i noticed you added a large chunk to this article recently could you post your sources webpages books etc it would be really helpful thanks july utc,0 +i added information about mayor de blasio s announced decisions about charter schools but someone removed the factual information because they said it was not referenced it was factual but not referenced i tired to add the information again with references but was not successful i correctly added the race and sex ity of chirlane mccray once but someone the same person who removed the factual information i provided under charter schools was incredibly rude and stated it was vandalism and reported it how can this be and why are these descriptions considered negative who decides what is reverted on chirlane mccray s own wikipedia site the word black i prefer african american is mentioned six times and her sex ity is mentioned over and over again these are not assertions at all and can be referenced by an approved wikipedia site and chirlane mccray s own important writings what is the problem,0 +please stop adding nonsense to wikipedia it is considered vandalism if you would like to experiment use the sandbox thank you,0 +well i will use my user page then don t tell meyour gonna remove it too because that will piss me off and drive me nuts also i am not making a personal ttack on jimmy wales i am saying he is a bit to greedy dont you think he s got million dollars already and now he s asking for more,0 +i thought i would offer you some advise aswell no wikipedia edit warring no arguing with wikipedia administrators may i also remind you of the three revert rule,0 +its also expressly against guidelines to sneak in disallowed links in the discussion section as froman has done with his youtube propaganda link above but as evidenced throughout this page the rules don t seem to be applied to froman why don t you just go whole hog and add it to feith s main page there are plenty of unencyclopedic sources there now and no admin seems to have a problem with any link anonymous left wing blogs w hate ver you care to use seems to be fair game for froman,0 +deletion of account ok blueboy editing from l g ng l has been disabled by blueboy for the following reason s came back from hour block and picked it right back up again and judging by history not likely to get it for this this is to call attention to a topic which was resolved before any of the matters were addressed there are moderators deleting wikipedia history items and moderator borgqueen s edit of cuisine of hawaii was simply a provocation and nothing more i am a reknowned chef of pacific rim cuisine and the cuisine of hawaii and the cuisine of hawaii is not local plate lunch that is like saying the cuisine of mexico is frozen burritos or that the cuisine of canada is starbucks pastries or that the cuisine of america is mcdonald s its slanderous vicious and spiteful the main point here is why did the admin in question delete the history and no it is not resolved until that problem is addressed and i tried discussing it with that user directly and my account was locked that user is not open for discussion or ddebate that admin suffers the god complex and lovcked me from even editing my own page hence the reason i had to wait to be unbanned to post here and i am not leving here to back and become corrupt admin fodder back aon the topic page until thius matter is resolved between borgqueen and myself as i i will not subjegate myself to any further discrimination hazing or personal vendettas not likely to get it eh buddy listen up you will delete my user page and account from the wiki grommet you are not going to lock me and keep my name content or profile i am out of this facade which is wikipedia for good delete it all now grommet,0 +listas sabina of bavaria,0 +bad redirect please remove the redirect from the x c page that aircraft was distinctly different in design builder mission etc and restore that aircrafts unique content to its page,0 +more info thanks for entering this article there are a few errors which i have corrected it would have been nice if you had not simply cut and pasted the text from the clear lake article,0 +his name was troy tedford not troy telford i am looking at his orginal discharge papers right now i also have his orginal purple heart with olc the man was a war hero in the biggest world war ever i myself am a historian history degree recieved dec of from atu,0 +it is interesting to note that both aircraft landed at the same airfield in hawaii,0 +thanks for fixing that again an exquisite picture,0 +and i would like to clamp down on them,0 +and man has also created new words even after modern languages have already been established,0 +it s in the history or more conveniently in your own contribs thank you for the explanation but that wasn t a big deal i was more upset by your second post waving me off with a sneer about growing a thicker skin and a finger waggle about profanity treating me as an insensate piece of internet polemic rather than a fellow human attempting to give an honest account of herself an account which mackensen promptly removed as you say well i understand that trying to contribute to the workshop was a bad idea in the first place running full tilt into tony sidaway after managing to avoid him on irc for a whole month to the immeasureable improvement of my quality of life anyway i ve always seen you as somebody who stands up for the underdog i remember praising your addition of this edit to the harassment guideline and i was sad to see there was no mutuality of respect talk,0 +some type and are on a soap box,0 +yes they are indeed i ve replaced that second one with a summary of women s rights talk,0 +anyone can do an in text search for and and see the article does not rely mainly on one source the publisher in fact the grand total of two citations referencing the publisher are for pure facts issues such as the number of items that are in the parts library,0 +gore response can anybody find gore s response to bush s malaprop why didn t gore as the inventor of the darn thing club him silly after that one,0 +pls give a reply yes or no,0 +neither of the two added cites support the assertion misconception hyphens and dashes are the same glyphs it remains unsourced and as near as i can tell there s only one person making this claim despite all the claims of consensus unsourced material gets removed that s wiki policy i ve given you a month to find a source or reword the entry so that it reflects what the sources actually say i m restoring the citation needed tag and if there s no source in a day or so the entry will be removed,0 +a short summary of referencing essentials faqs for organizations i noticed you ve also disclosed an association with frank on your userpage thanks for that it makes working with you and knowing where you re coming from a lot easier if you have any questions about my review of your article do feel free to leave me a message or send me an email cheers sonia,0 +for your information you have already been reported fair minded talk about yourself and your refusal to allow for relevant information which is factual from being posted you are obviously the biased party and an inappropriate representative for wikipedia,0 +same for file seankilpatrick jpg and file connorbarwincincy png,0 +y r we doing this pat,0 +thanks for the copy edit omg it reads so professional i appreciate it a lot yeah i knew that that would be a problem okay here s the back story to it danny had body paint while he was a robot during a sketch during the after party in which the theme was a black light one everybody could see that danny still had paint on him as it hadn t washed off or something to be sure jack had a black light switch in his apartment and when liz came in he turned it on which resulted in liz having the paint all over her see here or if w hate ver i just said doesn t make sense read here and here about the paint still on danny and the black light attack yeah i thought maybe if people saw that the ga note they won t leave me a message though that didn t work as a user left me a message regarding an article i reviewed this has to work in the future i m a have to make it better i still haven t gotten the chance to see it but i have to see it i need to know what happened and stuff well after i got the news that he lost i started watching his dvd and telling myself that i ll never see his wrestling moves again i didn t cry i was just sad the night on raw i lost it and cried w hate ver i didn t think that was cool shawn didn t mind but i did not really i still don t see that face like quality to him i think they ll play randy out like triple h you know good with the crowd but still have him heel ish maybe cause all the new people are heel and they need some faces who knows speaking of randy today s his birthday turned well if you remember his first punted victim was shawn so nice to see that he did that to cody all in the storyline nici you are welcome for danielson and miz i guess hit,0 +if width style background trans parent width style background color style width border px solid background color vertical align top hello lceliku and welcome to wikipedia please remember to sign your name on talk pages by clicking or using four tildes this will automatically produce your username and the date also please do your best to always fill in the edit summary field below are some useful links to facilitate your involvement happy editing width style background color style width border background color vertical align top getting started introduction the five pillars of wikipedia how to edit a page intuitive guide to wikipedia finding your way around table of contents department directory editing articles how to develop an article manual of style style width border background color vertical align top width cellpadding style vertical align top background color getting help style color frequently asked questions cheatsheet where to ask a question help pages new contributors help page article wizard a wizard to help you create articles,0 +i don t know how that got to be but i m a big supporter of the x files and i ve like seen almost every episode and not once did it mention mulder being the father of scull y baby can t have watched very carefully can you william being mulder s son is frequently referenced to in the final episode just off the top of my head guard what are you thinking about mulder my son his mother scully our son mulder i gave him up our son i was so afraid you could never forgive me not to mention the meaningful looks that mulder and scully give each other when the officiator at the hearing asks agent scully isn t it true that you and mulder were lovers and you got pregnant and had his love child,0 +citation r f saumur v the city of quebec s c r endorsement rosemary decaires,0 +education please keep the list of colleges in pittsburgh a list of colleges in pittsburgh if you are not familar with the area don t edit this list greensburg washington mccandless and california are not in pittsburgh please don t be offended when i enforce this also a pittsburgh mailing address does not mean that the school is in pittsburgh the address extends far in some place a minute ride away thanks,0 +until you find the way to put the cites that were in the page back i am throught here,0 +we descendants of otman baba trough mehmed ali karako are sunni muslim s and not alevis,0 +could you clarify do you want me to start an rfc i don t see that one was listed in the page history of talk rasmussen reports,0 +atheism is full of bias shit,0 +you beat me to it just wanted to say good work for beating me to the revert on the ned kelly article i always enjoy it when i know someone else is on the hunt for vandals happy hunting cheers pro,0 +you removed the link to the same references used in the health study which say that a reduced use of the mmr vaccine is why waldorf kids have fewer allergies from the section on immunizations wtf would data from the whole of california count for you the private and public waldorf schools in california have personal belief exemption rates of to of their kindergarten classes regardless of what the official position is and i assert here but would not do so in the article that the official position was a lie in order for waldorf education to not appear like a complete cult waldorf students are grossly under vaccinated that fact should be in the article,0 +thanks for that i ll take a deep breath and have a go at an intro tomorrow i identified the source of the phrase london over the border and showed that the boundary is contested in the footnote i ve clarified the diaspora section and will justify the statements by reference to the victoria history articles on west ham and east ham hopefully i ll struggle to a justification without substantially changing the outcome of the previous discussions then move onto to standardising the references probably section by section,0 +german article of the day dear jimbo german wikipedia is proud to present the article of the day http de wikipedia org wiki wikipedia hauptseite really thrilling really amazing worth a glimpse http de wikipedia org wiki fremdk c b rper in anus und rektum you might improve your german reading it there s a lot to learn yours sincerly,0 +i agree like i aready have stated that this is peripheral to main article but nevertheless important because i merely underlienes the mythomania propagated by both sides my only interest here is historical reality dab why don t you actually analyze the situation rather than offerring your usual smart alec remarks lontech s arguements have been shot to pieces summarily and everytime this happens he engages in tangential and irrational behaviour commonsense will tell you there was no long lasting state or kingdom in dardania before roman times we can t just allow the intro paragraph to read like some kla recruiting web site,0 +i found one sort of anyhow the web site for jew sforlife org isn t loading but i have an article from them in a catholic source i m going to remove the erroneous sentence now in hindsight it would have been great if this minor content issue could have been resolved with references in the first place,0 +i have provided plenty of reference materials yet you have provided none all writings in chamar section have comes from sources that are verifiable yet you have provided none you are the one with the eccentric idiology you still have not provided any verifiable sources to show that ramdasia and chamar are different chamars that took up weaving are known as ramdasia s a simple google search on ramdasia chamar will provide you with countless links bal,0 +block evading ip block guy,0 +i see that it has a number of citations on pubmed,0 +hey why you are spreading misconceptions and trying to spread false information to the people you not even know who won the battle and who lost you are the cheapest person on the earth bloody ignorant fool check sources before spreading rumors,0 +i should add here for any admin considering that i was block for hours by user sarek of vulcan weeks ago so there is more background if thats relevant and i should have learned my lesson then pax talk,0 +change of username usurpations request request still in progress mb m mmitra hi i have requested for change of username using usurpations from mb m mmitra it s almost days from the date of request but still it shows in progress i would like to know how much time does it takes to complete the request and how long would it take to complete please reply as soon as possible thank you link mb m mmitra,0 +utc december,0 +because otherwise is pov look at flemish linguistics case,0 +yes mainsprings are used in some clocks as well please feel free to be bold and help improve the article,0 +getting normal term is used by a german politician by the way i got it from there,0 +keep the original title at xbox although you can have additional likes like xbox and x box that redirect to this article,0 +and you are let me know when you ve crawled out of their arses dick laurent is dead,0 +the problem is that people keep trying to state that bsas policies are this and that there is no policy that says homo sex scouts cannot be members to state otherwise is a lie and or just be it is a contraversy page doesn t allow you state lies or add or you can list things as misinterpretations of the rules and things like that but it you try to say scouting does this or scouting does that then you need to be sure scouting actually says that even the misinterpretations of the rules need sources just because an editor might misinterprete the rules doesn t mean anyone in mainstream has can you find a source for somewhere where a homo sex youth was removed from the program just for being a openly homo sex youth then insert it unless you have it or an actual policy from bsa that says you can t be an openly homo sex youth member then what is being added is or,0 +level message hello and thank you for experimenting with wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you may wish to do i encourage you to also take a look at the welcome page to learn more about contributing to our encyclopedia thank you for your interest in wikipedia,0 +i m focussing on doing science at the moment leading the revolution,0 +another question does this style information stripping occur only whenever a shape itself is edited or for less intrusive edits such as moving a shape around if even highlighting and selecting the shape in inkscape makes it unusable then i shouldn t even be messing with inkscape at all,0 +article about ed morrissey hi i ve just moved our article about ed morrissey and captain s quarters to ed morrissey and started bringing it up to date would you be able to take a look at it and please fix any defects you spot thanks cwc,0 +i can see that you have been running around several talk pages accusing me and several others of edit wars please go on and prove the same or else you will be the first one to be block moreover you cannot prove your pov and when defeated going around making accusations is a good way out communist,0 +yes i received the confirmation e mail on with username my e mail address and password uh it was,0 +i am currently block from editing so i will be unable to add that tag however i did take that picture,0 +it s an unsourced aesthetic opinion and therefore violates wp nor and or wp npov,0 +image popclassic jpg i have tagged image popclassic jpg as because it does not provide a fair use rationale if you believe the image to be acceptable for fair use according to wikipedia policy please provide a rationale explaining as much in accordance with the fair use rationale guideline on the image description page please also consider using or one of the other tags listed at wikipedia image copyright tags fair use thank you man,0 +how adorably disingenuous,0 +well you are ridiculous in fact i suspect that you are calton please block me i dont care,0 +orangemike time to move on to collateral targets i suggest user fisherqueen the girl who protected him,0 +windows phone upgradeability hi gregory i reverted your change on the windows phone article neither microsoft nor its partners have made any official statements on whether devices running windows phone will be upgradeable to windows phone the references given by another user are blogs that are relying on hearsay,0 +btw w hate ver decision an adminstration wish to take he should remember that this block is too harsh given that it is his first violation since he joined wikipedia,0 +i ve tried to be as objective as possible and treat the author in my head as someone who s first tongue is not english i think davies is borderline notable but the article is not i spent an hour googling davies earlier today and found nothing except that he has trans lated a lot of stuff well i have done a lot of stuff in my life i m even borderline notable in a small field but nothing to warrant an article on me especially one that precisley nothing links to like this one frankly i hope the author just makes it notable i ll respond to him with gentlemanly politesse but i can t help him any further,0 +shiny things what a brilliant idea barnstar for actively seeking every possible way to help other users especially those i honestly didn t think would work but did i hereby award c,0 +will you make the change to both engineering articles,0 +thanks and i apologize for my comment i d like you to know that i understand your position nov utc,0 +appearance in historical fiction the young richard steele appears as a character in william makepeace thackeray s novel henry esmond is this appropriate to mention in the article do y all reckon,0 +cu and scibaby why are you wasting time cuing scibaby accounts which are wp duck i am just indef blocking them on sight but the cu request makes reference to some politics which i don t know about talk,0 +per wp ae you have been block indefinitely for persistent disruption to the project including vandalism disruptive editing and sock puppetry as per wikipedia requests for arbitration macedonia discretionary sanctions if you believe this block is unjustified please request one in the normal manner talk,0 +i m sure if you worked on articles other than arcayne you d do fine you two seem to have a problem with each other so why do you seek him out and edit where he does xenotalk,0 +sorry about the edit conflict i m glad you were able to salvage my edits as to your question about structuring yes i think we will have to think of a way to divide the article into sections and subsections also the intro may need some fleshing out before confronting the reader with technical terms like dendrite and axon i will look at it smithfarm apr utc very cool happy to hear you are still on the article i will also do some research to extend it talk contr apr utc,0 +february utc comment did the proposal change or something someone added requested move banner to this section when it s clearly not one,0 +best clans in runescape the gladiatorz been the best clan in rs for years now the clan the british elites damage inc an average clan,0 +i don t even know where to begin on replying to talk,0 +please do not vandalize pages as you did with this edit to hyperopia if you continue to do so you will be block from editing fisto,0 +keep your eye on it no one cares ok people can put what they want on here and clean it up all you want but no one cares god you re so freakin stupid om nigger n,0 +the episode list to keep the episode list above the references,0 +over the next hours or so,0 +s rant presently we are witnessing an open war against croatian dinaric culture croatian left often portrays this culture as primitive and rural even fashist being in service of conservative hdz party croatian writer predrag raos for instance performed on gusle instrument in zagreb on several occasions this year with only one intention to ridicule the same instrument and its rich poetic tradition another apostle of croatian left miljenko jergovi refers to his political opponents on the right as gusle players some even claim the serbian origin of croatian dinaric culture following the line of traditional greater serbian propagabda all tokavian people and their culture are serbian however croatian dinaric folklore and its rich gusle heritage is primarly croatian dalmatian costal region has been historically associated with this culture for example the first written document about the most popular folk hero of traditional gusle music marko kraljevi is associated with dalmatian island hvar through petar hektorovi s book ribanje i ribarsko prigovaranje also the first historical document which mentioned gusle player and its instrument originated in dubrovnik even now a contemporary croatian writer born in dubrovnik stijepo mijovi ko an tells us a story about his uncle also from dubrovnik area who could memorize numerous gusle songs stijepo mijovi ko an gusle glasnik may p dubrovnik is also a home of anica begin born kalafatovi a daughter of famous gusle player ante although illiterate she was able to recite by heart an immense number of gusle songs some of which were recorded in antology of croatian folk poetry not far from dubrovnik another coastal city makarska was also a bastion of croatian gusle music actually this region could be considered the capital of all croatian gusle players this mediterranean area also gave birth to andrija ka i mio i th century catholic priest who is viewed as the father of all gusle players of croatia and beyond to honour ka i s work ivan me trovi the most famous croatian sculptor built a sculpture in america showing ka i in his priestly clothes playing gusle instrument in addition to ka i makarska littoral produced a great many other followers of croatian gusle music according to dr fra karlo juri i who quotes the work of croatian folklorist stipan banovi zaostrog alone produced a great number of gusle players starting with stipan kosovi kudri and culminating with the most known mate banovi trli as for dalmatian women they didn t play gusle it s considered a male activity only yet they were actively involved in spreading gusle music by imitating its sound olinko delorko the researcher of dalmatian folk poetry in the s states in his book ljuba ivanova that most of his dalmatian folk poetry collection was obtained by women especially the ones from the island of hvar the zadar littoral also witnessed strong gusle tradition english writer maude m holbach travelling through zadar region in the first decade of th century states in her book dalmatia the land where east meets west that the gusle was the national instrument of the region as for dinaric dances which took place at markets and certain festivals they are very picturesque and interesting and worth going a long way to see being a survival of ancient custom probably unique in europe p this admiration for dinaric folk music particularly gusle was seen in both dalmatian litteral and hinterland matija murko the researcher of this literary music forms had reported that during his trips through dalmatia in the s he saw a child barely three years old playing gusle eduard osrede ki hrvatske narodne juna ke pjesme eljezno be p now lets take a look at the names of some dalmatian sports clubs and organizations hajduk junak gusar alkar uskok sinjska alka etc what do they have in common of course their names refer to the heroic gusle tradition of the region having this in mind one wonders why this proud croatian heritage has become almost extinct why do we have so few gusle players today is it a result of unavoidable urbanization of modern croatian society where peasant culture is being considered inferior to global rock n roll culture if so why has tamburitza music of northern croatia gained wide acceptance from the croatian establishment while its dinaric counterpart gusle music is looked upon with suspicion and open hatre,0 +the total population millions does not match with the e sum of the referenced populationsbelow in the infoboximages in infobox,0 +to a convicted felon,0 +lol censorship you re really disappointed that npov is a core policy aren t you talk contribs,0 +mfd nomination of wikipedia try your best wikipedia try your best a page you substantially contributed to has been nominated for deletion your opinions on the matter are welcome please participate in the discussion by adding your comments at wikipedia miscellany for deletion wikipedia try your best and please be sure to sign your comments with four tildes you are free to edit the content of wikipedia try your best during the discussion but should not remove the miscellany for deletion template from the top of the page such a removal will not end the deletion discussion thank you contributions talk,0 +redirect talk list of south carolina stingrays seasons,0 +who cares if i was block on myspace or pulse music board then i would be more concerned,0 +http w theatlantic com entertainment archive linsanity how the internet made jeremy lin a star in less than a week source explaining why he is a star,0 +god is dead i don t mean to startle anyone but god is dead we should not worry about him anymore just thought i would let everyone know well goodbye and good luck with your newfound crisis of faith,0 +hello i am back bongwarrior s user page will be attacked in minute,0 +i m always on the requests for page protection if i detect any missing errant templates to see if the administrators can correct them,0 +unsure at this stage its not very clear what wording is actually being discussed,0 +marvin kitman s don t make me laugh doesn t appear to exist the citation for much of the early history of the laugh track appears not to exist the publication channels of communication doesn t exist in the three journal databases i ve searched,0 +have you seen the reference to their claim you moron this is not a source it s their pov once i have more time i will reduce your pashtun nationalist povs here on wiki and give order to my uncles and cousins the execution of pashtuns in the entire northern afghanistan down to gardez jalalabad lashkargah logar paghman laghman kunduz herat farah whereever immigrant descandants of violent kuchis settled and took non pashtun lands away and traditional tajik countries,0 +rfa question simply curious what is the question you intended to submit here talk,0 +when you say irrigiation structure what exactly do you mean i live on an irrigated block which uses overhead sprinkers and i m not far from the nearest channel thye all look the same throughout sunraysia i ve got a little spare time now to grab some more shots though i don t think i ll get out as far as dareton got any requests talk,0 +this wiil be my last use of this acount please delete it,0 +rr violation by patrickflaherty user user patrickflaherty is reverting a sourced post he is also violating the rr for raila odinga,0 +i wasnt really attacking him her regarding the lisa williams article hmpz do you know if lisa can see dead people too i have psychic powers too you know i can see the future send all these lisa williams to finland and they will all be locked in jails for being scam artists,0 +yes there is definite value in documenting the scientific instrument module but i don t believe it belongs with the service module sectors subsection it is really a payload and not actually part of the spacecraft services so it interrupts the flow i plan to move it to the apollo program mission types section where i think it really belongs when i edit the sectors subsection to improve the wording flow a bit,0 +thank you hei it s me the william hope fan guess what i am back at a new ip ready to vandalize everything regarding william hope and you can t do sh t to stop me maybe delay me but no stopping me so lets salute to some more william hope lunacy by shoving his p nis in my mouth,0 +yes quite persistent i m about to just create the article myself other new users are going to get lost in this discussion t c,0 +yes it looks much better than before at the top of the page it says this article needs additional citations for verification may be britannica encyclopedia could help adding citations i dunno cheers,0 +okay i ll give it another whirl via email if worst comes to worst i e if i do not get a reply soon than i can always just use new accounts if i am ignored and that way it will just keep those who have been stalking me tied down busy chasing me around rather than trying to delete content take care,0 +north eastern region of jharkhand wiki says north eastern region of jharkhand is angika region however official language of theses districts of jharkhand is not angika but hindi santali this is confusing so it needs some clarification as to how come district of jharkhand where the official language is hindi santali could be angika region only those districts would be in angika region where official language is angika,0 +the vote was on the campbell case but the primary reason was the russian treaties baldwin was careful to emphasise that the treaties were the substance of his objections standfordham wrote to the king on october i saw mr baldwin who in reply to my question do you want to turn the government out said yes but not on the campbell issue but on the russian treaties which the country generally condemns he sees no alternative to a dissolution it has always been expected some wished for it before now though he is opposed to hastening the government s fall and it is true that only in the house of commons were baldwin s strictures based on the campbell case at newcastle on october he congratulated macdonald on the agreement achieved at a conference in london on the dawes plan for reparations and then spent the rest of the speech alternately pouring scorn on the labour party s subservience to its extremists and tearing to pieces the russian agreement but the final debate on october was a mean parliamentary occasion two days before in a meeting which was something of a suave qui puet the cabinet decided to take it as a vote of confidence preferring to go out on the campbell case to a defeat on the russian treaties which might give the left wing too much prominence middlemas and barnes p,0 +jayjg stop the spin public relations tactics,0 +no i just quoted bryant that talks about popular and secondary creator they are literally in the same paragraph talk,0 +future perfect at sunrise,0 +in general the outside sourcing should exceed the inside sourcing if there s an entire section without any references you don t have enough the lede refers to a dire need this would generally be seen as over the top look at the apo article for ideas on how to speak about your group,0 +that s a rather feeble premise to argue showing an excessive number of photos prominently showing different women s vaginas compared to one human male penis of the way down the page on the equivalent article for male genitalia this demonstrates the overwhelming male bias in editorial content on wikipedia,0 +okay i have now tried to just delete the offensive sentences in the beginning about mr irving being a socalled holocaust denier he says himself he is not and acknowledges that many jew s were killed during the war however he does not go along with the million jew s killed figure as he reckons the number to be lower and it really comes down to that david has the right to question anything relating to history and ww is his speciality and he actually makes a living of questioning and critically examining sources i also decided to delete the account about him loosing a court case in david have launched several libel cases before in he won libel damage against an english sunday newspaper the fact that he this time lost is not something that should figure at the head of his cv many people also find it extraordinary that a judge can deside what a person is or is not and what beliefs he holds,0 +there i ve made him bold thats better lemmey talk,0 +after that my father started taken melfalan now it is nearly and half year and his health condition is not good i am consulting with the doctors,0 +i m pretty sure the incident has already been included and i know how to handle my own at riots too,0 +i m afraid that s a broken link for me,0 +ok maybe you want to comment on the talk page about that it s interestig to know,0 +oppose i find it hard to believe this requires an rfc but such is the wikiworld,0 +history can someone provide some information regarding the contracting of the ac service area ac trans it used to serve most of the cities of the corridor but the cities basically kicked out ac trans it and now run their own services part of the reason was that ac trans it was under serving the suburbs while spending their money on underutilized services in the urban areas that history should be reflected in this article talk,0 +please do not create any more elephant nonsense pages talk,0 +i and preceding undated comment added i and talk contribs we do not care that wikinews even considers dr rafizadeh as an expert and interviewed hin here https en wikinews org wiki wikinews interviews scott lucas eyal zisser majid rafizadeh about risks of us military intervention in syria we simply do not care we do not care even if he publishes on cnn or nyt or quoted on cnn and new york times like here http w cnn com opinion iran rouhani syria rafizadeh index html http globalpublicsquare blogs cnn com jobs key to middle easts revolutionary wave http edition cnn com world meast syria shiites does not matter even if bbc world service made bio of him here http w bbc co uk programmes p gsjfk dos not matter if cnn and france international wrote about him and his family members being killed here http w france com en syria majid rafizadeh kidnap family targetted civil war shabiha opposition bashar assad i and talk contribs will never change our opinion talk is always right we also dont care that he published in almost all national and international outlets including scholarly and academic works like here https scholar google com scholar hl en q majid rafizadeh btng as sdt c as sdtp i and talk are right we are jew ish and we are right and we will never change our opinion w hate ver evidence you show,0 +are you ok dear i notice that you have been absent from wikipedia for a few days it s uncharacteristic so i hope you are not ill please accept my good wishes i just wanted to see if you are fine regards,0 +congratulations for the third of may reaching fa and it s still april thanks for your input,0 +paula white joel osteen marbled cat and a few others these images were correctly retrived and all information was given about the images that were necessary some were even my own and i gave full permission for their use on wikipedia mcelite,0 +it isn t about success it s a phenomenon that goes back at least years to the days of sousa and johann strauss however if you look at the article milestones section above you ll see it has survived no fewer than four deletion discussions and we do require credible sources and fancruft is removed on sight andemu,0 +hate is my topic is hate if you hate a person means you like that person your hate can turn into your love,0 +page i tried to create is now an actual page lol you banned me for nothing,0 +your report thank you for making a report on wikipedia administrator intervention against vandalism reporting and removing vandalism is vital to the functioning of wikipedia and all users are encouraged to revert warn and report vandalism however administrators are generally only able to block users if they have received a recent final warning one that mentions that the user may be block and they have recently vandalized after that warning was given the reported user has not yet been block because it appears this has not occurred yet if this user continues to vandalize even after their final warning please report them to the aiv noticeboard again thank you talk,0 +npov please stop adding not related moroccan issues to sahrawi articles while trying to look neutral i will revert it again again as that editions are clear pov pushing,0 +upgraded human language families wikicolors png human language families in wikicolors file,0 +a kitten for you you are a good person,0 +ok here it is peer viewed for months and published at academic archive on line diva on a permanent uri urn nbn se kau diva wallin h p an investigation of friction graphs ranking ability regarding the galling phenomenon in dry sofs contact adhesive material trans fer and friction a free pdf document available here or w diva portal org found here or at w uppsok libris kb se here use search words galling harald wallin or the direct libris link here,0 +pov pushing faustian inserted this in the article the upa s cooperation with jew s was extensive enough that according to former head of the office to counter soviet disinformation at the usia some soviet propaganda works complained about zionist membership in upa seems to be a complete pov to muddy the waters and picture upa as an organisation friendly to jew s instead of an organisation which collaborated with the germans on exterminating the jew ish people,0 +redirect talk a voice within album,0 +wp blp violations i just removed another of your reverts which placed defamatory and uncited materials into cherokee freedmen controversy wp coi may apply to you since you seem to edit african american related articles and freedmen controversies your dishonest edit summary was over the top,0 +are they the anderthals are they the anderthals the same discription as in quran has anybody thought of this,0 +the discussion of when there first were outdoor trees with electric lights is very strange are you kidding and some obscure town in nc i don t think this makes much sense especially since the sentences immediately preceding these establish that other cities had electrically lighted outdoor christmas trees in the early years of the th century the article cited for the north carolina town if read carefully really only states that the tradition of having outdoor lighted trees in that specific town began in not that the town claims it was the first place to have such trees i am old enough to have been around in though i was a small boy and i can tell you that we and our neighbors in southern california had lighted outdoor trees prior to and no one thought it remarkable or unusual the history here is questionable to say the least,0 +what comes next once we feel like we ve gotten past the dispute stage i would say we have someone should post a request for page unprotection so that we can move the new version in you might also mention that the admin should merge naked short selling workshop in so that we can keep the page history or i ll do it later tonight it doesn t really matter talk,0 +redirect talk the best of apocalypse,0 +just dropping by i thought i d leave a little feedback too a featured picture is not always put on the main page as noted by wp potd for example the semi nude michele merkin was not used as it was found too cheesy wikipedia picture of the day unused notes several pictures that were not used because they depict too much gore or are of a scatological nature a featured picture rating is essentially indicating that the community feels that the image is of high quality and high encyclopedic value on a side note potd seems to be up to thanks for taking up the trace pink oboe,0 +some of the sources listed as ny mag cbs news fox news an interview with leighton speaking of the subject directly in teen vogue and us weekly a tv guide interview an article in the san francisco gate the newspaper from the town leighton grew up in naples daily news if you do not consider those reliable sources you have a problem if you want i can find more sources from valid reliable newspapers and magazines everything is valid and sourced and should not be removed as it is the story of her life wikipedia is an encyclopedia for facts and what is posted is fact,0 +the reason is the presence of a template based on inconclusiveness on my user page the further presence of the template is to be contested,0 +ho ho ho merry christmas i shoulda known the piccirilli brothers actiually executed ward s pediment sculpture at the stock exchange happy christmas carptrash,0 +i saw that reference and i added a note see note by the name republic,0 +hey jim good to see you around you re right i was on a no consensus tending towards delete but not a clear delete because of the two times of india sources and one more source again from the times of india that is visible on the search engines what would you like me to do here i can re list the afd if you might prefer that message,0 +and if he were a mere fellow editor i wouldn t have any problem with him but since he seems to let the power of being an admin go to his head i have an issue with him please read what remains of his talk page if you need examples of this i m a moderator on a very popular internet discussion board and i would never ignore a valid question from a user,0 +is gonna help us to he is logged in if you want to talk to him on his talk page,0 +they look great to me mar utc,0 +april utc wikipedia colours much thanks for fixing improving the table code no reason maybe add the info where you found the values is that in common css all the styles are embedded highly repetitively if you know your way around mediawiki i ve been asking everywhere for a css guru to clean up all the redundancy on the main page wikicode like we dont all have enough to do already eh so many projects so few minions,0 +dear mokele you have no right to tell people to die in a fire just because that ip address is being used for vandilism does not mean you can talk to people like that you are in fact a bigger loser than the person who you block,0 +you have new messages last change and the notice below result from user arkyan and user avraham targeting this website as a result of an editorial dispute as to whether to include theodore roosevelt s view of us political corruption on the unholy alliance page i e the unholy alliance a phrase used in the platform of the progressive party united states written by him the unholy alliance a concept elaborated upon in his autobiography their recent edits may be reviewed at special contributions arkyan and special contributions avraham and reverted where appropriate,0 +peter the roman can some one place this and remove the argentinian chap from the prophecy which is not part of and replace it with this information and place his coat of arms any questions just e mail me tarcisio pietro evasio bertone was incharge of the vatican from february to march thus the prophesy of st malachi is fulfilled,0 +rfc you pretty much blew through my respect when you tried to demand i give up my adminship my position is very very simple the afds were invalid they should not have been filed i fixed the mistake,0 +i don t delete material that complies with wp policy according to your own pov interpretations wiki badass woo u,0 +and revert his edits,0 +canonicity in general i ve been involved in a long discussion over on talk stargate device over whether the stargate in the movie is the same thing as the stargate in the series with centrx arguing that they aren t and that discussing the stargate in just one article was deceitful i don t think his argument is at all valid but in the course of looking stuff up on the web i ve discovered that some fans of the movie apparently consider the sg series to be somehow illegitimate or non canon i m not familiar with the stargate fan community just the show itself so i don t feel comfortable adding discussion of this directly to the article does anyone know any details about this such as how widespread this apparent schism is jul utc,0 +capitalization please stop changing lower case common nouns to upper case as in the company has the company has wp moscaps notes that wikipedia avoids unnecessary capitalization proper nouns and the first word in a sentence are capitalized and not much more yack,0 +see claim three here http onlinelibrary wiley com doi mepo full ss that is a reliable source,0 +if he is the community manager then first of all it s a conflict of interest for him to be editing this and second of all he has the power to say explicitly on his site that there is no release date otherwise despite who he may be his position is incompatible with wikipedia policies swatjester son of the defender,0 +please do not vandalize pages as you did with this edit to boiling point elevation if you continue to do so you will be block from editing,0 +rants to policies hi i think that you should reformat user shanes why tags are evil the vandalism protection tags or at least the idea into some sort of proposal to reformat multiple distracting protection tags to less distracting corner icons for example redirecting to well probably move the later to the former for this case the corner icons work beautifully are much less distracting and clicking them will follow you to a page explaining what the lock is for i fully agree that the large box with text is very distracting and unnecessary this is especially true when non user wikipedia users read the articles which probably constitutes the majority of wikipedia readers they probably don t care that they can t edit the article nor would they and of most concern they may confuse the tag with the article content thanks,0 +hi collectonian it obviously wasn t appropriate and i agree with the warning given by vicenarian,0 +a request in the future please sign after your tags on the photography workshop page while a bot is currently doing it for you i e preceding unsigned comment added by,0 +i ve revised the trans lation from the spanish by going back to this earlier edit subsequent edits on the spanish language wikipedia seem to have been intended mainly to insert links but have primarily succeeded in deleting chunks of the original text rendering the result both ungrammatical and somewhat insensible i ve taken s trans lation and incorporated the previously omitted text and gone over the whole to make it more idiomatic in english it s not quite there yet but is hopefully now serviceable,0 +i m sorry if you will not like the answer but i can not accept any wording indeed any word in the article that does not reflect or is reflected in sources would any of your patients be happy with an almost successful operation i care even less about the yugoslav media then i do about yugoslav politics it may not be what you want to hear either all i can do is repeat that there is no way in this world that the yugoslav troops were operating under independent command during this offensive its is just laughable even if i had no way to substantiate what i said journalists may write what they want but ask any military officer and he she will tell you its inconceivable for the size of the op comms,0 +and capital gains tax,0 +this should be included in the criticism summary section here since that section s content so far is not a remotely truthful summary of the criticism point of view fork article it clearly suggests to readers that basically all criticism of apple is related to product management in some way or other now that apple inc has admitted that they did in fact use child labour this is clearly a far far more serious type of criticism than everything currently mentioned in this main article s criticism summary section the explicit word child labor should be mentioned in this article,0 +merge both articles should be merged operibus anteire,0 +everywhere though i might just start going thru the secure server all the time because i have a similar issue with the popups userinfo grabber xenotalk,0 +i agree with there s no need to keep unclear concepts and wording when a better alternative exists also i d ask to not revert using source as a reason when source is actually a book of his authorship wp coi and wp sps comes to mind txt,0 +hi the routes to japan are often mis read first i had the argument that jal flew to tokyo not jalways but now i would like to challenge a route that jetstar takes it said the jetstar flew to kansai from brisbane this is true but you must connect through sydney although you would stay on the same aeroplane the flight number between bne kix changes in sydney meaning it is not a direct flight eg flight syd kix flight kix syd via bne that is how it works if you are not sure please check qantas schedualing i wont edit the page now in fear that i will be banned,0 +support i and all the other sikh wikipedians on wikipedia support you on singh you are correct i completely agree with sikh historian i m busy at the moment but if we need to get harrybabar permanently block then it should happen because his vandalism is unacceptable,0 +bulgars omg you are an admin and you protect the people who vandalise the bulgars article these attackers are pan slavic ultra nationalists and they dont want to see the word beginning with turk you help them remove reliable sources old bulgars are changing into slavs by your hand great,0 +you must be logged in to upload files so in other words i have to sign up just to add things to entry to hell with that this place can rot for all i care,0 +mckinsey company i think the best route would be to drop a note at wp business t c wp four wp chicago wp waward,0 +message long time no talk i was just pottering around on wiki and suddenly i thought of you so anyway how ya going i hope we can get along now anyway there is an issue that i have that has to do with wikipedia a user on here had been stalking me and asking some innapprpriate questions do you have any ideas of what i could do i know that user is also from australia could the police here do any thing cheers for now,0 +thanks from my point of view there are differences and parallels between the two concepts one parallel is that both concepts are intending a territory with a homogeneous population the difference is the concept of racial hygiene is intending a homogeneous population regarding the criterium race w hate ver race might be the concept of ethnically homogeneous states is intending a homogeneous population regarding the criterium ethnicity a second difference is that the concept of racial hygiene has led to more extreme forms and methods in political practice in history example the holocaust not only expulsion but also extinction of millions of people in an industrially organised process user nov th,0 +well i see futperf is getting quite angry now insulting other editors also and again their goal is make the point that the first bulgarian empire and the second bulgarian empire are not bulgarian or at least not related which helps their long term strategy for the invention of a macedonian nation and state think bulgarian tsar samuel etc which existed from antiquity and the middle ages that s it tropcho correctly pointed out that direct political continuity is completely unimportant for the info box no other country cares for this in their info box neither spain germany ireland poland etc what is important is to show how bulgaria formed thru the ages,0 +salutations j a p welcome to wikipedia perhaps you might find wp hockey of interest,0 +be careful who you call a moron,0 +leadbeater biography smackbot problem rich regarding the c w leadbeater biography article http en wikipedia org wiki charles webster leadbeater on dec philosophus improperly reverted my extensive revision of dec i removed all the smears and slanders from the article yet he accuses me of having a npov problem no editor has the right to revert the good faith contribution of another editor i will undo his improper revert as you made a minor edit or two since then your edits will probably be lost also please communicate specifically what faults you find in the text and maybe we can work out some compromise wording if you are knowledgeable in the subject if you are not knowledgeable you have no business editing this article,0 +quoting hoppe first detailing kinsella s important points at this diff i put in the democracy section hoppe s earlier comment first and followed with more about what kinsella said i e stephan kinsella writes that hoppe s critics have accused hoppe of homophobia bigotry and the like based on these passages kinsella wrote that that hoppe s discussion of physically removing homo sex s and other groups only applied to private covenant based communities centered around traditional values he shared a letter hope wrote to him saying the gay couple down the street who mind their own business would not be expelled but only those who are openly hostile to the basic hetero sex or private property basis of society as i said in my edit summary just because some choose to totally take his comments about of context and attack him does not mean that wikipedia should be used for the same purpose talkie talkie,0 +the fact of the matter is that toei and bandai have been using gorenger to exclusively refer to the first super sentai series since at least every subsequent series that has the ending has been ranger you can see this sort of thing on any of the print material released by them lately has it as gorenger while all the others have been turboranger zyuranger dairanger kakuranger ohranger carranger megaranger timeranger gaoranger abaranger dekaranger magiranger and gekiranger i believe gorenger is also plastered across their vehicles ryulong,0 +mark nutley has suggested instead of people edit warring they really ought to use the newest sources three to five million of this number died in ukraine and in the heavily ukrainian populated northern kuban among the richest grain producing areas in europe norman m naimark stalin s genocides princeton university press august p http books google com books id f uwf eqb ac lpg pp pg pa v onepage q f false,0 +i see that you just can t help yourself if you saw my being block as a reason to be victorious and now feel like keep telling on me to the administrator please do not use my talk page for that go the administrators noticeboard where the initial complaint was posted and add yet another post concerning your advice on what i need to familiarize myself with apply it right back at yourself especially regarding wp cons and please understand that consensus is a product of a prior discussion not just any piece wikipedia text that stayed unedited for a while,0 +unfortunately judging from previous warnings some people here have a rather unusual view of what personal attacks are pointing out that the individuals accusing me of using sockpuppets were incorrect and in fact the two main people making the accusations have been harassing me for months and had used sockpuppets and meat puppets themselves for getting around edit conflicts and to stack votes on a request for admin proceding as pointed out by several editors at the time certainly cannot be considered a personal attack pointing out that admins did not have any actual policy basis to make the blocks is not a personal attack and it has in fact been confirmed by the overruling of the blocks more than once frankly if you are looking for personal attacks try yourself for your agf violating attacks on my actions based upon limited information and actually misleading information given to you by other individuals or david gerard for claiming that i am trolling when all i am doing is defending myself from false accusations of others it s very clear that a number of people here need to realize that the very things they are accusing me of and trying to justify for a block are exactly what they themselves are doing from behind the pretense of trying to solve things if you want to start blocking for incivility i might suggest removing david gerard for a while for his actions or elonka for falsely claiming that i was using sockpuppets or that i was harassing her or the sysop whose very talk page says he s going to go around blocking people no questions asked and in fact did so after i caught him restoring placing illegal information on how to pirate software an article talk page rules should apply to everyone and a number of people have been getting away with pretty flagrant violations and trying to rationalize them away by just labeling me as an alleged problem editor and not taking any sort of responsibility for their own actions,0 +looks good to me i think a nice pic of midtown from across the east river would be the best possible addition to the montage but there isn t one currently available on wiki commons,0 +perhaps the question is more of philosophy than of mathematics and we don t have any regulars at wikiproject math who are philosophers of mathematics t c,0 +except for the fact that there s no information for the table no confirmation on number of episodes why don t you just put in so it s just clutter and not vandalism,0 +right on may which is not the stars and bars,0 +perhaps goodday you could provide a diff for this thought as i am unaware of it btw i hope the move is going went ok,0 +it is also unfair that i can t respond to the allegations talk,0 +has anyone ever considered including tag team edit warring as a rr violation when two people act in tandem unintentionally or intentionally to make the same revert four times they may not technically violate the rr rule but they certainly do so in spirit this was the problem on both sides in the edit war on the canada page and precisely what i wanted to avoid on the dominion page would it not be easier to warn editors as you did here rather than shut down pages for weeks at a time as was done in the canada case i m sure this would cure the escalation problem without blocking access to pages any comments on this,0 +thanks but an unblock would be a compromise i live on the margins here creating articles on various subjects then see them deleted it s a form of performance art many of them don t get deleted medieval philosophy is still there and history of logic to name a few i m one of those people they just don t know what to do with and i like it like that,0 +yes i do hope to get it to ga status in the future wp mostv states that for fictional characters their storylines should come first and then the information on their creation and characterization it makes more sense to read about what storylines the character has been involved in before going into the production of it all the same style is used for articles on books films and television shows episodes,0 +please educate me as to how this article is a copyright infringement and if so from which source once this has been established could you explain how best to rectify the situation thank you,0 +men s ranking figure while nice to look at misses key time between olympics and world championships that s all there is to it in the title iihf lists a post olympics ranking and ranking presumably post wc to exclude this period is incorrect as it is a time where canada was ranked st overall russia nd the same issue will happen this year as rankings will change twice after olympics and again after wc,0 +there are many broken nostrils in this pancreas,0 +that last line the new version is better is ypov this new your version just complicates the issue and makes the article less simple to read tell me why must boston be mentioned as a cultural and business hub at all this seems to be at the heart of your bias it appears as you want the viewers to get from reading it that boston is somehow the nerve center and city that new england revolves around and looks up to why must this illusion be on the page,0 +utc it sounds wrong because first it reads are which is present tense ee and then it reads used which is the past tense i reworded the whole thing to past tense because we are discussing already published works as opposed to works being published or yet to be published arnfj r bjarmason sep,0 +and you took your time to answer,0 +yobot incorrect defaultsort hi yobot an incorrect defaultsort it s puzzling as to why it didn t recognize the article as being about a person among other clues it included birth and death dates at the top as well as a which yobot substituted to additionally include the correct defaultsort xa ab am,0 +biased unreliable emotionally written by armenin wiki editors pls stop using the wikipedia for your dirty propaganda and lobbying purposes there was no genocide this is a amyth advanced by the armenian church and armenian fundamentalist fascists a nation can not be subject to a egnocide when it has several heros for whom you can see statues in yerevan irevan jew s don t have it the resolution is the act of some sold congressmen who want to appease the armenian lobby it has no reliable valid and neutral content it is kjust a piece of dirty and lie facts presented and written by christian missionaries working to kill turks and kurds in s you can claim to be subject to genocide as much as you want but this thing did never happen some armenian fundamentalists and fascists who were killing kurds turks and azerbaijanis were killed by great sons of the turkic nation and i am proud of them go and propogate your lie as much as you can you will achieve nothing raman,0 +add mobile porn as additional wp also link,0 +smer sd why is the slovak party smer sd between non inscrits they are regular socialists they used to be out of pes but that was settled pretty long ago liberal nationalist,0 +utc has anyone considered how matter the stuff we are all made from actually interact with time and time travel if i were to travel back in time would i be frozen and isolated in spacetime whilst everything else around me travel backwards in time or will i also physically and biologically travel back in time that is i get younger and younger and then disappear because i was not yet created thus defeating the grandfather paradox although if it were possible for signals or information to travel backwards and forwards in time does this possibility automatically extend to matter as we know it ie particles giving rise to electrons protons and neutrons and ultimately biological beings such as ourselves july,0 +i want to offer you a tremendous thank you for your suggestions which i believe will be paramount to the successful inclusion of rantmedia i ve vastly improved the article since the afd nomination as well as since yesterday afternoon i wasn t clear to me what was necessary to be done with the article and you were truly the first to really answer my question of what is it going to take so from the bottom of my heart thank you t c,0 +i have to laugh when watching the supposedly british national news with guys barely up to their ankles in snow implying that ragnarok is upon us yet on the same day when trees are being blown down and main roads being block by snow in scotland it doesn t seem to be noteworthy scotland routinely gets ignored on the national news and even people from the north of england were complaining about the fuss made by the southern oriented news tourists appear to be amazed that things are falling apart because of something like this my mother had a very good giggle at the reporters live in trafalgar square in a couple of inches of snow or beside a main road barely ankle deep lance tyrell,0 +a friendly advice if you have to refer to me kindly use cult free and not only cult,0 +great links imo the american people are on the whole good and decent but the so called leaders are fully controlled by an elite bent on domination and control this whistelblower says the same talk,0 +queen s university as stated previously i am quite pertrubed and to be quite honest frustrated that you would remove the section pertaining to the university s traditions do you have a personal vendetta against the institution or dislike it for w hate ver reason you removed the compliation of material regarding the jackets and other traditions which i find odd considering similar traditions have been allowed to remain on other university wikipedia pages mindlessly deleting material without group consent constitutes vandalism and while i am sure that your intention was not malicious it was a short sighted move on your part please allow us to discuss this in greater detail,0 +january utc the argument at wp natural seems to rely on showing that the other name is common so you need to prove that the other name is common numbers might help a bit also above we are told that gohatto rather than is the name of the film in japan but this turned out to be false incidentally ryuhei matsuda it seems to me looks more like his mother than his father what do you think also how authentic is the portrayal of the shinsengumi in this film do you have any historical insights,0 +unspecified source for image metropolitan of moscow makariy nevskiy jpg thanks for uploading image metropolitan of moscow makariy nevskiy jpg i noticed that the file s description page currently doesn t specify who created the content so the copyright status is unclear if you did not create this file yourself then you will need to specify the owner of the copyright if you obtained it from a website then a link to the website from which it was taken together with a restatement of that website s terms of use of its content is usually sufficient information however if the copyright holder is different from the website s publisher then their copyright should also be acknowledged as well as adding the source please add a proper copyright licensing tag if the file doesn t have one already if you created took the picture audio or video then the tag can be used to release it under the gfdl if you believe the media meets the criteria at wikipedia fair use use a tag such as or one of the other tags listed at wikipedia image copyright tags fair use see wikipedia image copyright tags for the full list of copyright tags that you can use if you have uploaded other files consider checking that you have specified their source and tagged them too you can find a list of files you have uploaded by following this link unsourced and untagged images may be deleted one week after they have been tagged as described on criteria for speedy deletion if the image is copyrighted under a non free license per wikipedia fair use then the image will be deleted hours after if you have any questions please ask them at the media copyright questions page thank you do you want to opt out of receiving this notice hi,0 +percent koreans eat dog meat koreans have tried not regular korean food diet don t genearalize or finger point that all koreans eat dogmeat that isn t true,0 +support lets protect and save this page from user balagonj this page has full of errors and invalid references,0 +apparently i thought tom was offline and filed an edit warring report and yellowmonkey picked it up before tom mentioned the page protection we ll see if it sticks,0 +newsletter draft ready hi dank i have prepared an initial draft of our drive wrap up newsletter at wikipedia wikiproject guild of copy editors newsletters april if you could find the time to check it over before it goes out that would be super thanks,0 +should be omitted entirely,0 +is that not a true description on a booger if not then prove to me what is,0 +stay off my talk page stalker,0 +anthony de mello hi i need this page written anthony de mello it currently redirects to a priest do you have any suggestions on the dab title cricketer,0 +thanks and happy new year to you too let s talk about it,0 +more mature way central posted,0 +stop vandalizing my userpage i know it s someone from here,0 +oppose i do not think a merge is a good idea,0 +maybe but that does not lead to the conclusion that the taip aircraft remained in africa and did not return back after ferrying the soldiers the article on colaco net also does not shed any light on this,0 +thanks thanks for the thanks i just leave them in my watchlist after i found an archive full of vandalism a while back given that it was slashdotted i suspect we will see a bit more of it i might get someone else to fully protect it if it continues i can t do it because of coi i would also like to thank you for keeping an open mind changing votes is an encouraging sign of good faith regards,0 +hello if you re interested we could really use your help,0 +as to job for you sure thing as soon as i find time for that also i notifyed novanova asking him to start editing the http en wikipedia org wiki croatisation this guy knows a lot about croats and their history,0 +oh ok i just wanted to see what people thought anyway its up for csd hey do you like my talk page i hope you don t mind talk er,0 +wrong the capital is podgorica as it has always been since july the seat of government parliament and president is in podgorica cetinje is only the seat of the kingdom of montenegro in exile and besides only capital cities have embassies and podgorica has them and do you see any in cetinje no besides no one in montenegro nor in the world say that cetinje is the capital of montenenegro but instead they say it is podgorica and also that consitution was adopted in very outdated and a new one is due next year,0 +mark ii subsec i removed the mark iix subsections and made them bulleted lists there was no reason in my eyes to subsec one line of information,0 +can there be a more concise listing the listing of other inventions is profoundly vague why group different categories together why even mention things that the chinese received purely from outside sources there should be a much more complete well managed list of chinese developments which i ve yet to find along with how these were trans mitted globally and whether or not places like europe got them purely from the chinese this really needs the attention of people with some remote expertise which i guess is somewhat there when needham s work which is profoundly rare in private collections was cited not like the arrogant bigoted ass who was crying about chinese nationalism yet then went onto say that they only invented noodles and besides why are things like the cannon and porcelain listed under other inventions who developed these independently,0 +in history there could be a consensus view or a mainstream view in theology there is no mainstream or consensus view since most of theology depends upon the church membership of the theologian historical scholarship aims at universality and objectivity while theology makes no such claims it is true that there are millions who believe that jedp was birthed in hell or would believe it if they knew what jedp means so in principle their view is notable but as enns said it is a fringe view in the academe even among scholars who actually disagree with jedp the sources used to build wikipedia are academic sources therefore jedp and its st century offspring are given by default the weight they have inside the academia while the view of the fundamentalists is treated according to wp undue this does not mean that wikipedia could say that the fundamentalists are theologically wrong wikipedia has no theology of its own but it is entitled to say that inside historical scholarship they are a fringe view of course this does not exclude serious scholarship done at religious faculties since as ehrman said in one of his bestsellers us mainline protestant and catholic theological seminaries and divinity schools do teach mandatory historical criticism classes so in a sense scholars from such faculties are thoroughly acquainted with historical criticism and built their careers upon its assumptions only fundamentalist seminaries and divinity schools choose to default against historical criticism they are free to do this but this cuts against their claims of being mainstream historians,0 +well i m sorry but attacking me and my edits is exactly what you re doing wow there s some seriously snotty people on wikipedia and yes there is a need to separate the featured single definitly,0 +tfd nomination of template silentredirect template silentredirect has been nominated for deletion you are invited to comment on the discussion at wikipedia templates for deletion template silentredirect thank you talk watermarks i shall remove the obvious ones the less obvious ones stay i am allowed to watermark images with anything whatsoever i wish to even if it s a contradiction and if you wish me to use up further wp bandwidth by re uploading them that has no effect on me i can t do anything until this evening and if any get deleted i shall reupload them yours without respect talk email you could have the grace to reply i said that i d deal with them this evening but only the ones where the watermark is visible from the page so off talk email i am planning to re upload them with less obtrusive watermarks such as that on image bliss parody jpg talk email it wasn t vandalism i used an external link as per your instructions which incidentally i m not bound to follow i am certainly on the verge of requesting mediation as you are disrupting my life never mind wp to make a point i will tell you one more time any images are better than none if you wish to get your own pix of all the concerned images you re damn welcome to try but they are gfdl therefore there s no grounds for removal talk email ps i shall add the external link again not as an image and if you remove it i shall make a formal complaint to the wikimedia foundation and the information commissioner in london talk email your conduct is a little off in this matter while i m all for discussing the issues with users let s keep it civil please thanks talk i disagree rob it is far more than a little off images watermarked as such are not in any way appropriate for wikipedia this is an encyclop dia not a pet image project if thedoctor isn t happy to play ball he can go elsewhere talk i am proposing a change to the image use policy to forbid watermarked images please voice an opinion at wikipedia talk image use policy user created images thanks talk i edit from the united kingdom and under the computer misuse act the editing of information online is illegal without permission the button at the top of every page that says edit this page among other things constitutes that permission while the policies and guidelines form conditions since there is no condition against my image it has a legal right to be there q e d talk email true but therefore your addition fails under the same logic also wikimedia own the servers it s their right to delete it id apologies to ed for invading his talk page but what a load of rubbish wikipedia are under no legal obligation whatsoever to host your images regardless of whether they meet any policy i have no idea under what flawed logic you presume that the fact you can edit wikipedia means that your edits must legally be accepted if the computer misuse act states that the editing of information online is illegal without permission that implies that editing with permission is legal and nothing more furthermore by your logic i have the legal right to edit wikipedia and remove your images i fail to see what on earth you intend to tell your lawyer but i don t imagine the wikimedia board are too concerned talk ignoring the gibberish i,0 +artpop album hello thank you for all your contributions i make this message in good faith please do not make hidden comments like this stating that an editor will be block if they remove a redirect i am in no position to be asking this but i am saying this as it could turnaway new contributors who aren t aware of the rules feeling they have been bitten in this case i think a kind user talk page message would be more appropriate and effective also you edit was reverted so i reverted it back to your version but also removed the block warning as it is not appropriate no admin will should block just because a user removed a redirect specially if that hidden message was their only warning feel free to correct me if wrong again i write this in good faith cheers huntley,0 +crown prince wouldn t it have been prince elect denmark was a elective monarchy during this time,0 +hamish macdonald disambiguation hello just to let you know that as this now only has two entries one of this name and one with a very similar name i have tagged it for deletion using template db disambig if you have any questions about this please let me know best wishes,0 +my cents as someone close to the korean american community it s pretty standard practice to give both an american and a korean name at first i don t know for sure that that s the case here but wouldn t be surprised it s probably explained in her book,0 +died in or not i think it s better to settle the matter here instead of going back and forth so the ip user claims that the whole thing is a hoax that she died in europe years ago and that there s no hawaii obit first of all is the forevermissed a user submitted website do you know her family personally or do you know somebody who knows the family we d like to get a more elaborate explainantion behind the claim that she s been dead years ago i see that her supposed obituary is pretty detailed are the rest of the biographical information accurate though and the picture,0 +august utc dear the hour block that you placed on my account yesterday for personal attacks has just expired and while i must say that i was not happy about the block i harbor no hard feelings towards you if you check my previous contributions you can see that i have been a productive editor on wikipedia i d just like to let you know that while i was guilty of personal attacks against and i was goaded into doing so by these two individuals in order to avoid future blocks i promise not to engage in anymore personal attacks and if i am goaded by trolls such as these two individuals i will simply ignore them was repeatedly reverting a comment which i made concerning statements made in the hugo chavez article which i found to be biased my issue with concerns his nastiness and uncivility he is far too possessive of articles which he has created and he becomes very angry when edits are made to such articles after multiple revisions of legitimate edits which i made to his articles i told him to leave me alone he proceeded to foul my discussion page with unwanted and unsolicited comments when i objected to this he goaded me into calling him a profanity while i respect your role as a wikipedia administrator i d like to respectfully request that in the future you exercise better discretion when blocking a user based on one sided information thank you for your understanding,0 +links in results a mess links anywhere except the actual book,0 +it wasn t me that added the glebe park link though i might ve wikified it i ve never actually been there so i m afraid i won t be of much help at the moment though i ve been meaning to go look for a while,0 +go away why did you revert my edit on blowdart s user talk page surely thats his privelege users like you give wikipedia a bad name stop being such a busybody,0 +the head ways pounds and feels like play dow dont tuch them they will fall off,0 +sarek of vulcan unfortunately for you you cannot ban a fact sarek of vulcan unfortunately for you you cannot ban a fact fact lawrencenkhoo told me here on wikipedia that companies keep their retained profits in the bank fact that is absolutely untrue fact sarek of vulcan bans me for stating that fact sarek of vulcan can ban me but cannot ban facts,0 +keep your chin up darwinism was not accepted over night there appears to be more sense in the aat origins than the sort cut hypothesis that our ancestors went from swinging in trees to the prairies and then eons later take up a sedentary life style so they could edit wikipedia and face book etc all day one only has to watch little kids on the beach the first time a wave throws them bottom over elbow they may well cry but after a time they can t wait to get into the water again it is as if being at home on a sea edge environment is hard wired into their genes unfortunately the rise in sea level since these times means that evidence of these coastal communities may never be found keep plugging away until the old hypothesis fade away,0 +nazi filth is impolite jan utc,0 +interesting i checked the other case number kunzang lhamo cited which can t be used for wiki since it s original research but going a step further i can t find that case number on san bernadino s open access either in civil or criminal records,0 +the trans cluded part of the ga review doesn t seem to update into the main talk page of the article correctly may have to click to go to the subpage to get the most up to date version sorry its long you can skim most of the content related stuff i guess,0 +protecting causes of the palestinian exodus hi can you explain on its talk page why you protected this article there is some edit warring going on but not very heavy for the standards of this article also i am a participant in a mediation case but that concerns actually only the use of one source on this page and is irrelevant to the present edit warring therefore i was wondering about your motivation regards,0 +hello i check this personal page very often please leave messages here on on the discussion page tks marvio,0 +my thanks to you for this i note that i am being dressed down for everything from being nice to editors i like to work with all the way to deleting messy posts from my own talk page well a mess is a mess again thanks stephen please don t take that as gratuitous or ingratiating imacowboy,0 +i don t care what you say here i don t believe one sentence anymore,0 +anytime you want a nightcap tell me,0 +meet a local vietnam tv series factual documentary mins meet a local spain tv series factual documentary mins meet a local tasmania tv series factual documentary mins meet a local ireland tv series factual documentary mins the way camino de santiago feature factual documentary mins african stories online factual documentary mins overlander multimedia for the abc the outback boxing troupe online factual documentary mins overlander multimedia for the abc australia production company returning home a story of ararat online factual documentary mins overlander multimedia for the abc meet a local east coast australia tv series factual documentary mins meet a local outback australia tv series factual documentary mins,0 +globalization and ivytrash i am not ivy anything that was my home i was born and raised blocks from harvard square and it was once the greatest place in this country i am not interested in globalization i look at the square and see the smoking ruin of my home when this happens to you i hope globalization is comfort enough for you,0 +he is self confessed and approved by my observations see e g history of soviet partisan btw you re the first to object,0 +and btw speaking of the armenian genocide if we are to follow wikipedia conventions of most common name and i don t agree assyrian is the most common name as we also have proven many times before we should change the name of the current article assyrian genocide to seyfo,0 +to quote if a wikipedia article links to this page it is because someone is concerned that the article contains inaccurate statement s such statements are followed by the following warnings dubious discuss the accuracy of a statement may be a cause for concern if it contains unlikely information without providing references it contains information which is particularly difficult to verify please do not remove my dubious reference edits as that would be against the guidelines there wouldn t it,0 +belarus a developed country hahaha nothing more to say,0 +censorship on islamist terrorism try not being a censor monger properly cited information should not be deleted,0 +if you would like to write an article of bill s father including his rise to ceo of commonwealth edison feel free this article is about bill we re not writing a chatty book lenth biography about him but stating facts same as other biographical articles in wikipedia the details of his father s career are irrelevant although his eventual stature as ceo is not this is yet another issue that has already been resolved,0 +thanks really cool tool for purposes like what i have on my userpage best tally ho,0 +it is funny because i would say exactly the same thing for you astarti the anonymous user with an ip from greece and the user williamthweatt accusing people without a reason is not allowed in wikipedia as per wikipedia rules you are free to ask for an investigation in fact i do kindly ask you to do so if this vandalism persists i will seek an arbitration i do kindly ask from any moderator to see all the reverts and i am confident that they will conclude that they have been mal intentioned with a clear nationalistic agenda you all guys have something in common you are all greek all of you,0 +i just watched the entire series and i agree this entire article and several other in the suzumiya haruhi articles are all from a somebody who knows haruhi personally sort of view so im going to fix it,0 +agreed will take a stab at it it also needs major formatting cleanup and wikifying it sounds too much like a fan conversation the references are all either youtube links or personal communications i m trying to at least pare down the best musician ever statements could use some help with the discography section too,0 +vandalism is for e g this type of edit somebody said that the stig was leaving so i reverted it basically i reverted it because there was no source to suggest that he was leaving so i do know what vandalism is i just want to carry on editing wiki i love this place it s amazing please don t make me leave now that i ve explained myself please please unblock me thanks,0 +baer didnt invent video games this is jew ish propaganda supported by a wiki troll named goldberg go figure hey goldberg try educating yourself https w youtube com watch v efbwz sik s,0 +i can tell you what the argument is about here newseventsguy it s about your retroactive reversion of a simple edit trying to include secondary independent verification of sedimentary nanodiamonds in younger dryas sediments by bement and madden et al without discussion a reference that i notice has not yet been included in the reference list still after all this time this is after you admit that you are ignorant of the peer review literature and the controversy any attempt to do simple reference list edits on this page have been stomped by no less that five admittedly biased and ignorant editors the honorable thing to do here would be to recuse yourself from editing the page as i have but i haven t seen that happening until now good luck with it you ve already made complete fools of yourselves,0 +apparently other editors agree that the edits i made were justified a group of meat puppets working as a team to revert an article to their own pov is what has caused this block at issue was the advert tag which is justified was placed on the article by one editor replaced by me replaced again by another editor and replaced again by me three editors so far have indicated the tag belongs there i m sure a forth editor is going to weigh in on this side too the article is riddled with brochure language please note that i was removing brochure language right up to the lock up of the article there s still lots more in there that needs to come out before the advert tag should be removed additionally i don t believe i broke the rr rule which requires a fourth reversion,0 +while i agree that indus valley civilisation is the correct name for the civilisation the passage quoted above is not neccecarily factual in terms of saying second there is no proof at all that the mighty sarasvati of the rigveda was in fact this now dry river the identification is itself open to doubt apart from there being facts proof to indicate that saraswati did exist as this dry river including geological facts as to why it dried up the evidence also points to the fact that it was not a tributary of the indus refuting point of the passage quoted above and in fact drew the waters of the sutlej and the yamuna to be a river system of it s own and though a large number of sites have been found along this river system none of them are of the scale of harrapa mohenjodaro leaving the indus valley tag as the correct one saraswati did exist today the timing is disputed and not the existence wheter it is vedic and indic vs harrapan and non vedic is more disputed today than it s existence,0 +december utc thanks i have started working on pranagnihotra upanishad but i am unable to get the full text from the deussen s sixty upanishads pages do not appear in the book under google url can you suggest a url which gives the full text in the meanwhile i have completed this short article sharabha upanishad which you may like to see and add edit nvvchar,0 +i insulted people on en wiki with criteria to provoke my filter set you are simply abusing the power people handed over,0 +excellent that would be great the comments found at its peer review should also be very helpful but i haven t had any time to actually act upon those suggestions cheers hello,0 +afican union site vandalism dear bracketbot i wrote this note to inform you that an editor is performing acts of vandalism in the website of the african union https en wikipedia org wiki african union please i would appreciate if you could tell me who i should report this action the board index name is https en wikipedia org wiki user knisfo,0 +you are a know it all jimbo why don t you get a life instead of sitting in front of your computer all day the high priestess of knowledge indeed,0 +all of those statements need to be referenced leaving an article unreferenced in every section opens the door for original research and the introduction for factually inaccurate information to point out one thing i ll bring up consolidated appropriations act first it has a number of tags on it the creation of articles that need to be tagged should be reason number to remove the flag second the only reference link provided on the article is this one while the information is from various subpages of that it appears that the entirety of the article is found at this deeper link it s possible that some came from this as well i can t tell i ll also note that the style of the summary it was taken from was never meant to be encyclopedic so the article is riddled with grammatical errors mostly incomplete sentences on creation the opening read consolidated appropriations act h r is a bill passed to the th united states congress i ve never heard this usage to rather than by and assume it is incorrect another editor changed it the lead is also missing an important determiner in any case you can take a look at vesey,0 +ok i just ask for your experience what you think about the portal,0 +sitush how can anyone assume good faith when you have been writing so much against yadavs on that page it is evident from the discussions how conveniently you have been selecting sources for negatives and then conveniently rejecting the same sources for the positives you are the only person spamming on that article and vandalizing it yes i will contribute to other articles on wiki too but let me first correct things on yadav as so much wrong has been going on there you got ikonoblast banned and now you have got me banned and you will get anyone banned you differs from your biased stand on yadavs but i am not going to give up i will follow all wp policies and will ensure that i get things corrected on yadav and dont let your and fowlers personal views dominate that page peace,0 +december utc don t worry i told you i had your back and i ll continue to defend ya yup we got our proof of work when i first saw it i was like that s no reliable source cause i remember you reverted that source one time but when i looked over the article and saw ref i was like oh shit so i reverted it i m glad you went going back i m glad my two words have gone on to save me question would you like for me to expand leads on all ss members hit,0 +november utc i agree with clearly santilak is using up his usual bag of tricks santilak please discuss the article courteously and professionally,0 +ok i like the pyx lax track very much indeed if you could point me towards other greek trad music that would be great and greawt for me here are some irish non visto provvedi,0 +where s with pitchforks already jun utc,0 +again reinstated sentence about nobels in the first paragraph for the reason stated above if others disagree that this is a defining characteristic of bx science that should be indicated right up front in the summary paragraphs then can we discuss it here rather than playing edit games by removing text without either edit summaries or discussion on the talk page,0 +i m disappointed it wasn t a successful run but it,0 +elvis crying in the chapel feudalist,0 +please refrain from adding nonsense to wikipedia as you did to fisting it is considered vandalism if you would like to experiment use the sandbox tlka,0 +elizabeth hi lil romeo i am one of your biggest fans i really like you i always dream of you at night i would like you to come to dallas tx to ignacio zaragoza and give a concert at this elementary school i am in the th grade and i am years old i want you to come and help me with my homework see you later i will write to you soon by,0 +hi fracophonie thanks for taking the time to write such a long message i appreciate this in terms of what i said about the age i didn t mean to cause offense i thought i read somewhere that you had to be over to make these decisions but i think i was getting confused with the check user privileges i have already read some of those policies but will read the rest later today i am not a troll i just need time to get used to all these acronyms policies etc from what started out with me writing an article about my favourite website has turned into a massive thing which was not what i was expecting i really don t have any more time to argue and debate with the usrs since its clear they just want it deleted despite what i have said for example one user just wrote there is another site called amirite net this is amirite com this is precisely why i had to keep responding on the afc delete page in terms of the rest i agree to do them of course i can only apologise once i am un block can you apologise for me on a side note i am actually french and jew ish shame about the gay part though,0 +welcome hello soundchu and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia tutorial how to edit a page and how to develop articles how to create your first article using the article wizard if you wish manual of style i hope you enjoy editing here and being a wikipedian please sign your messages on discussion pages using four tildes this will automatically insert your username and the date if you need help check out wikipedia questions ask me on my talk page or ask your question on this page and then place help me before the question again welcome wikhead,0 +i removed the content after it was tagged as uncited by mattisse if every commonly known fact need a cite because some editor en passent wants to nominate for farc then it appears we have a problem i very much suspect mattisse s motives here but frankly i am too tired of her to be bothered to explore them perhaps one of her probabtionary mentors more interested in her than i would care to deal with this,0 +is jeff garcia gay or not,0 +that wouldn t be sufficient you need explicit permission to use text copyrighted by someone else under a licence suitable for wikipedia please read the guide to requesting and formalizing permission to use copyrighted works on wikipedia note that in addition to copyright requirements the article must still comply with notability guidelines advertising prohibition and avoid conflicts of interest talk,0 +the section is useful info and should stay you are clearly wrong,0 +comment so now we are stuck with a week of broken links since you acknowledge that the move was a mistake and not uncontroversial will you please revert it if anyone wants to dispute that the opera is the primary topic they can do so under a proper requested move discussion as they should have done in the first place if you are not willing or able to do this today i ll ask a another administrator to do it,0 +it needs to be included in the context of as well i ll try and dig up some sources user talk review me,0 +tim firstly i appreciate you taking the time to discuss this issue offline and for your willingness to debate it at length here despite the majority view here being in your favour yes i certainly agree with your friend that it is very important to describe the jurisidictions that a firm is present in there is clearly a massive diffence between say having offices in the french or japanese jurisdictions or between the chinese and u s jurisdictions since the legal and regulatory systems are very different as well as the commercial characteristics of the markets beyond that however it remains my firm view that there is a big difference between a law firm having an office in say paris or toulouse even though they are both in the same jurisdiction i appreciate that the situation in the u s is slightly more complex since you have both federal and state jurisdictions even within each state there will be big differences between the legal markets in different cities though to give an example the san jose market will be not just a lot smaller overall than the los angeles market but it will also have a quite different profile on the whole a lot more specialist niche and focused on high tech to give another example in the uk a law firm could never be regarded as being truly top tier if it didn t have an office in london even if it had offices in every other big city in fact all of the very top tier uk firms dla piper is not yet regarded as one of them despite its size have just one uk office in london although they have other offices overseas saying that dla has has offices across the united states egypt south africa kenya thailand china would in my view still mean a loss of valuable information to the reader we could fall back on using descriptions like in major financial centres or in major commercial centres or in a combination of major financial centres and major commercial centres but then we are introducing what is in my view an unnecesary element of vagueness imprecision and even original research i do accept that dla with offices is right on the borderline of having too many offices to make it practical to list all of them in the article however i do also feel that there is an important general point of principal that information about the office locations of a law firm is very valuable information to aid the reader of an article in understanding the subject of it and should be included as much as possible,0 +no problem with that at all if you don t think that there is a problem with someone siting that i have a mistress then it just proves my point as to how far this site is to being an actual encyclopedia it s a forum not an encyclopedia big difference and that s not even what pisses me off the most about my page thank god i m single with no chick bitch ing me out or that would be another attorney fee i d be handing out to sue whoever owns this site i m done bitch ing about the mistress thing my whole page has errors from the very first line down to the very last line and that is no joke first line and the last line are wrong,0 +sprecher brewery i took the tour this christmas when visiting my sister we were charged an extra for the glass their website may not be updated but that is the current pricing,0 +ipad talk page why did you remove that ip s edit to the talk page it wasn t spam,0 +speedy deletion of andrew takao a tag has been placed on andrew takao requesting that it be speedily deleted from wikipedia this has been done under section a of the criteria for speedy deletion because the article appears to be about a person or group of people but it does not indicate how or why the subject is notable that is why an article about that subject should be included in an encyclopedia under the criteria for speedy deletion articles that do not indicate the subject s importance or significance may be deleted at any time please see the guidelines for what is generally accepted as notable as well as our subject specific notability guideline for biographies if you think that this notice was placed here in error you may contest the deletion by adding to the top of the page just below the existing speedy deletion or db tag coupled with adding a note on the talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would would render it more in conformance with wikipedia s policies and guidelines,0 +image image deletion warning image metroid prime hunter title screen top display jpg has been listed at wikipedia images and media for deletion if you feel that this image should not be deleted please go there to voice your opinion august utc,0 +the real personal attacks are the repeated undoing of my edits by everyone else,0 +nope i didn t read the guide to appealing didn t have time the user in question is engaged in harassment i ve been doing this long enough to know and i can prove it he she immediately placed a threatening notice of blocking me permanently on my user page reverted the article while i was in the midst of editing it my second pass couldn t even preview changes then changed his her mind as to my real wiki sin since the onus for proving the doris day available as pd on archive org was on him her not me and the usual span for pre bern had expired long ago decided my real sin was original research oh noes and continued to revert based on that does or add clutter sure it can but if the user in question was really concerned about that about the quality of the article and about extraneous details why didn t he she even notice two paragraphs already there comprising about of the entire article dealt with norman schwarzkopf an unrelated book and an unrelated ice cream store name i ll tell you why the user wasn t engaged in good faith goodwill editing and the normal back and forth that leads to better articles he she was involved in blocking input to the article why was it personal against me or was it to preserve the existing content of the article including the false claims and extraneous material not even concerned with ther subject at hand i can only speculate but i d guess it s some sort of power trip and wiki bullying i don t really have time for this i have made a fair number of very good edits over the years and have usually refrained from saying anything that isn t directly related to content and improving articles i could pretend this user didn t do what he she did but i m wasting my own time here and i don t really have a stake in any such pretense i don t have any stake in improving this article either no dog in the race i just see how it can be improved and made more informative as a long term wikipedia user and editor i don t see any problem in jumping in and fixing something i almost expect some sort of pushback now but not over completely minor edits which are very good and on target in very minor stub like articles the problem isn t me here it s that if people such as the user in question can get away with this sort of behavior and they are getting away with it wikipedia becomes a much poorer place a playground filled with bullies rather than a library where we can all learn and share also i don t recal ever having called him her a bot i think you put those words in my mouth perhaps inadvertently his her behavior is malicious but probably not malware just the normal human collection of problems i think this user should be warned against trying to be a gatekeeper he she isn t quite qualified for that at this point anyway and it s having a very chilling effect across wikipedia i won t egnage in a battle of the wikipedia rule acronyms i will continue to write in english and to read articles on wikipedia in english and to think of ways to improve them in english i am fully aware of how the terms vandlism are used and misused here and most of the rest of the wikijargon nothing new under the sun here if you read the edits i made carefully and note the times of the reverts and the history of actions by that other user you will see i m not off the mark here at all i know what s going on i don t know why but i don t have to and i expect the motivations aren t interesting respond if you have anything to say,0 +the communist states all three call themselves as the socialist states communist is the word that westerner use so should that name be changed,0 +boze hadleigh a journalist interviewer and writer primarily of gossip about homo sex s of hollywood,0 +imdb content is user submitted and often subject to incorrect speculation and rumor the use of the imdb on wikipedia for referencing is considered unacceptable and strongly discouraged wikipedia wikiproject film resources self published media are largely not acceptable this includes any website whose content is largely user generated including the internet movie database imdb wp userg as i ve said this is a long standing consensus if you disagree i encourage you to take it up at wikipedia reliable sources noticeboard,0 +i m new to this means of communicating and i am not sure that i expressing this in the right form however i am reviewing all of the recent ma nominations expected to go on the web in the next couple of months in the process i have developed a database of corrected lat long decimal degrees based on google earth and photos and assessors maps in the nomination files i would like to share this if there is a way of doing it alternatively to find a way to easily check and correct existing coordinates on the mass wiki lists would this be useful for anyone,0 +y kgtp actually reverted the vandalism i did not,0 +yes i have read them both and i will now ask you to provide back up for your story not that it matters in the least the one religion is as bad as the other but you better have some proof for your claims chatnoir,0 +i think the error is that it is grams not kilograms so kg i m editing the article til we have a better result if i m wrong please change it back dec utc,0 +vince fyi yellowfrogs is longdendale councillor sean parker perry a frequent purveyor of greenwash and four square behind the destruction of swallows wood via his support for the bypass he is vigourously re editing the wikpedia pages on the longdendale bypass his own and roy oldham s page in order to boost his fake green credentials and obfuscate the neutrality of these articles he gets nasty if he gets pissed off threatens spurious legal action but fortunately he s legally illiterate so don t be put off,0 +summary of situation user shimshem has taken a dislike to this article and has tried numerous methods to either get it deleted or its name changed completely invalid speedy deletion request invalid drv request nominated for deletion via afd despite the fact that it had passed an afd this year in fact the afd was withdrawn at for keep the current afd here stands at for keep but despite that shimshem has wikilawyered all the way through it once it became clear that it was going to be kept they decided a name change would be better changed the name of the band in the article and was told to take it to talk after a brief non discussion on talk moved the article anyway and was reverted i was originally unsure of the motives of this editor why they were completely desperate to delete or move this article until i noted they were interested in tamil subjects one of which is m i a artist and guessed that they believed that the two could be confused their subsequent creation of the article m i a as a redirect to m i a artist proved this as far as i am concerned as to whether the band is actually called mia or m i a it differs the band itself uses m i a as the heading on their own website but then uses a combination of both elsewhere since in the case of most sources this is only likely to be laziness much as r e m are regularly referred to as rem and since the article has existed here for a while and that all the backlinks go to this version and most of all because we shouldn t let disruptive users get their way the article should stay here,0 +it is unnecessairy source because it does not matter how many soldiers were killed what matters is that the safavids were deposed besides that mentioning that information without making any remarks about the brutality of the afghan forces for example the complete massacre of the safavid family including women and children as well as the massacres on the civilian population in isfahan bam and villages of khorasan is considered pov besides that you have not shown any sources for your claim that soldiers were killed and as for the edits it does not matter what you believe it only matters what the wikipedia rules are you posted a message without editting anything that s the same as abusing the article s history as a message board use the real message board instead,0 +whoever wrote the plot i feel terrible for whoever had to watch the movie in detail and then write the plot line who ever took their time to write the plot section must be traumatized for life however its missing the part where milo s son is laying on his belly unconscious on a bed milo anally rapes him while several masked men watch also there s some use of a knife sword in this scene this is truly one sick film no there is no artistic message this film is basicly a middle finger by the sick minded film makers the cast must have been tricked into participating in this disgusting film there s artistic gore such as the classic film begotten and then there s this listen to me don t watch this film no matter how much you are tempted,0 +as he has asked admins not to comment i will refrain from doing so i did however remove a personal attack against him if anyone wishes to discuss this action please email me windows,0 +can we compromise here i don t think we have the budget for salmon but at least in the netherlands there is an in between fish more affordable that in dutch was called salmon trout so far so good s marshall fortunately no one has yet discovered that you used to run drugs for a cartel or that you danced in a nightclub a la henry lafarge was it in a shot in the dark shh i m not telling oh i should ask you at your rfa about the proper use of citation templates later,0 +sorry i am not sure how to take care of him he has quite the history and actually has legal cases involving the dayton daily news wikipedia is at risk if he edits any of those pages or any affiliated company the actual sockpuppet is which is a puppet of hdayejr,0 +we can agree to disagree on the relative merits of the fish and the character but the red seabream is part of family sparidae anyway so that s usage outside north america right there,0 +large ships are typically launched into the water when the hulls are completed but that doesn t mean all of the construction work is finished usually there is still a significant amount of work to be done including finishing the interior of the ship building the superstructure etc take a look at image sms seydliz under construction jpg for example you can see the ship is already in the water but a significant amount of work is being done to the superstructure you can also read ship naming and launching for more information about launching hope that helps,0 +at which point i am predictably ignored and stonewalled which seems to be the wikipedia staff s official response to any direct questioning on the justin berry issue one might think they ve hired scott mcclellan to handle their pr clearly they are aware of the untenability of their position and they re really hoping it will just go away sorry guys it won t,0 +you need to prove notability using reliable sources just because it has some festivities how large are they who organized them in part of a country doesn t make it notable also you need to change your username this one will probably be block soon for violating the username policy no names of web sites businesses talk to me,0 +meter s sigh and my concerns only because mr meter had reverted any of contributions of mine given to this article so far i did not have a single chance to develop it his article called falsetto is not about falsetto it may be about his arrogance who knows there are a huge contraries regarding only the definition of falsetto there are many signs of entirely different falsetto compare those info which mr meter such anxiously protects in england italy or spain th century were described entirely different types of falsettos on the top of it mr meter perhaps never heard pavarotti singing falsetto or the falsetto of ian gillan singing of king diamond is based on falsetto what about michael kiske is it not falsetto mariah carey or whitney houston do did not sing falsetto does any of these falsettos sound breathy not to me isn t out there published a note about those maybe only because meter does not look for it why it would not fit to his article he would have to admit that his only source vennard was probably having in the chair something else than falsetto or he was drunk meter quickly opened two or three books and things he had swallowed the world the whole physiology of his only falsetto is based on encyclopedia well perhaps it is enough for wikipedia or himself but not for me no there is much more out there only regarding physiology much much more and just because you allow idiot s like meter to develop wikipedia the people the readers of wikipedia will read shit where are any proves of the research regarding female falsetto at ies mr know everything feel free to block me again i have no desire to write here any more,0 +you ve also forgotten these premier leagues but still written in english,0 +please do not replace wikipedia pages with blank content blank pages are harmful to wikipedia because they have a tendency to confuse readers if it is a duplicate article please redirect it to an appropriate existing page if the page has been vandalised please revert it to the last legitimate version if you feel that the content of a page is inappropriate please edit the page and replace it with appropriate content if you believe there is no hope for the page please see the deletion policy for how to proceed thanks for contributing to wikipedia talk,0 +utc that s because when i made those tables i classed everyone as independent unless i could confirm their party identification according to this the dlp intended to run in all constituencies according to this they had at least candidates i ve only been able to identify two so far so we do need to identify more december,0 +removed pov i removed undo criticism of secretary boutwell and pov wikipedia is not meant to bash persons reputations whether alive or dead the following has been removed from the article boutwell did little to withdraw paper currency from circulation shaping his financial policy to forestall either inflation or deflation intellectual critics saw in these actions a want of guiding principle and a lack of solid theoretical knowledge he believed in knowledge just so far as it was convenient for him to justify his own theory that knowledge was a deception henry adams wrote in a much quoted analysis in he believed in common schools and not in political science in ledgers and cash books but not in adam smith or mill as one might believe in the multiplication table but not in laplace or newton by a natural logic he made of his disbelief in the higher branches of political science a basis for his political practice and thus grounding action on ignorance he carried out his principle to its remotest conclusions henry adams the session north american review july p but in a very corrupt time it spoke well of boutwell that nobody thought that he made money out of his cabinet post either for himself or his friends living within his salary he lodged in a boarding house throughout his tenure his only pleasures lay in writing lectures and playing billiards or poker though never for money chicago times march he is an inaccessible man uninfluenced by fear favor affection or hope of reward and does not burst out into brillian exhibitions of love or hatred a new england politician wrote his brother henry f french to benjamin b french march benjamin b french papers library of congress boutwell s financial policy was less dogmatic than pragmatic liberal reformers had hoped that he would embrace civil service reform and rush the country towards the resumption of specie payments but while boutwell appointed subordinates on the basis of merit for the most part he did little to rein in the spoils system outside of washington remaining on friendly terms with the party bosses,0 +you sir are an imbecile and a pervert,0 +recaptcha it isn t defamatory it relates to a computer system not a living person recaptcha forces users to solve the captcha to access w hate ver the service in question is forced labor is the definition slave labor i am going to revert your reversion please do not do it again or i will report you for vandalism also please don t send me threatening messages tia,0 +question on possible citation i m sorry if i missed your question i don t pay much attention to that page in response to your question let me start by repeating my boilerplate formulation the job of wikipedia editors is to verifiably summarize reliable sources using the neutral point of view i haven t yet worked in no original research wp nor says that we mustn t integrate otherwise reliable information to arrive at novel conclusions comparing two lists and drawing conclusions from their differences and similarities is most likely original research we can integrate information so long as we don t arrive at new theories another principle to remember is that vagueness improves accuracy the more precise we are the harder it is to be accurate getting down to details the predators and editors website appears to be a reliable source so we can use it as a source the bauer site even if somewhat unreliable may be used in a limited fashion as a primary source about bauer i m not familiar enough with this topic to make pronouncements on what would be correct however i would say that your proposed text appears reasonable the sources are sufficient and no original conclusions are made the website takedown issue is confusing to me but you should be able to summarize what you find in reliable sources overall my opinion is that the less we say about the subject the better attack articles are not encouraged while we must show our subjects warts and all we shouldn t enlarge the warts nor ignore their better features balance is a part of npov but you should be able to summarize what you find in reliable sources there no reliable sources only a he said she said blog flame war it is alleged the website takdown was instigated by bauer it isn t clear if she did and other factors between the forum and the ip are not known it was the root cause of this article and all the players here were involved via these blogs i don t see how that can be objective bauer i m sorry i did not get back to you about the usenet stuff et al but i ve been somewhat overloaded at work personally i think the article is better now than when i first saw it thanks to a lot of effort on the part of the primary editors of the article to bring the best sources and present them in a way that doesn t seem like a lynch mob y all are doing a good job and there should be enough editors on either side to ensure that something resembling nuetral gets posted i m glad to help and try and make the article neater and i don t mean to sound brusque in the summary field but there was a lot to cram in there thanks for the note i appreciate it i would say karen saying i ve called her names is an out and out fabrication i ve never done any such thing or whether it s because he s been able to insult me and call me names on wikipedia repeatedly and without consequences i ve accused her and jule of carrying the water for tnh and absolutewrite and they have that isn t namecalling by a long stretch i m really weary of these attacks over this this is mob rule while avi seems genuine she s hanging with a tough insulting tribe the threats against me are real and escalating by the hour blaming me won t make my points any less valid nobody likes to be piled on by a crowd it s the internet equivalent of stoning this is not a fabrication i get awfully tired of being called a troll or part of a mob or cult or group troll or a self interested partisan or a blog comment commando or other things i could point at if i wanted to depress myself you also made a theoretical comment about me being nosy fat and ugly putting the word if in front of it doesn t make it any less of an insult i ve tried to be polite to you and will continue to do so but this is the response and please notice like abi avi is avraham the admin abi the ml commenter who believes in kindness i counseled against piling on talk contribs those are not ad hominem names karen yet you ve linked to a thread where you and teresa caled me a psycho you should hear what she said in private when i asked not to be spoken of negatively in threads on making light it s obvious you two are pro tnh and absolutewrite that s self interest and backed up by the fact that you run to her for counseling well avi can make her own decisons about it then can t sh,0 +infobox hurricane season it s pretty much complete i need to make some documentation and possibly tweak things that may pop up you might want to test it out so if there are questions or suggestions i can go ahead and address them,0 +show me where on wikipedia it says the table width has to be wide collectonian why can t you answer my question,0 +why was this article marked for fixing i was hoping that there would be some guidelines here on the talk page for further research and edits the article looks okay to a cursory reading by a non wiki reader,0 +castro lite webluis continues to revert to his watered down preferred image of castro he has not backed up his edits with any facts only whined about personal attacks some nonexistent and empty statements mar utc,0 +antonov revert if you didn t like the red link removals why don t you just add them to the table i made also you reverted the edit where i only added the logo of antonov it said so in the edit summary,0 +another crap article parrots what promotion websites of capoeira schools say about myths of origin and also that persecution thing by the late s capoeira became a word for street brawling thus authorities did not prohibit or sanction practice of capoeira in banning capoeira they were banning outright street brawls it s why mestre bimba presented his art as luta regional baiana no decent carioca would be eager to sympathise with capoeira and malandrismo i could attempt to alter the article but it s become such a mess by now,0 +i never edited the content of your comments please correct your false accusation,0 +redirect talk jos manuel rojas,0 +i agree that it shouldn t but clearly it does the media make spouses household names there s nothing we can do to stop that but as jim rightly points out rein is more notable than some political spouses because of her prominence as a businesswoman and that potential conflict of interest which she is trying to avoid nick,0 +for security reasons edit war as i said in my edit summary the term for security reasons is ambiguous and not properly established in the source further it is unnecessary you d have to have a crystal ball to know why they did it and as i said earlier janes is not perfect the reason that all the other mg manufacturers alter their parts so they don t interchange is because the us batfe makes them do it suddenly glock is different yeah i guess that s just like glock compensated pistols not acting like any other compensated pistol i wonder if they actually shoot bullets,0 +this represents your immaturity and consistence at disruptive behaviour talk,0 +macedonian slavic bulgarian possibly notes republic of macedonia recognises the language as the as a dialect of the macedonian language greece eg recognises speakers as slavophone greeks bulgaria believes that macedonian and dopia slavic macedonian to both be part of the bulgarian diasystem european bureau for lesser used languages recognised the language as macedonian in ethnologue the most comprehensive guide to the world s languages http w ethnologue org show country asp name gr there you go for more clarification altough we all know the stance of the various governments does anyone have current sources for this if so please add them i hope that this table is clearer but their still needs to be more ngo s albania eu etc please add constructive comments,0 +if you feel that i am acting in manor inconsistent with my responsibilities you can post something at wikipedia administrators noticeboard incidents if you want to make changes to university of wisconsin madison and you have reliable source references to support those changes then post the references with the changes this tutorial may help with references if you have more questions just ask,0 +part of editing for an encyclopedia is reducing extraordinary claims to ordinary fact i assume that this is meant in a derogatory fashion,0 +cfd nomination of category wikipedia administrators i have nominated for deletion your opinions on the matter are welcome please participate in the discussion by adding your comments at the discussion page thank you,0 +i m also a sock puppet of this account suprise sincerely the man that will track you down from the internet and kill you,0 +all the sources needed are provided all you need to do is read the article but i guess you can t read once again you prove you are not even reading the article every edit is backed up with the source it came from i am not going to provide you with any details because you are merely a civillain editor and not a wikipedia staff member you have all the info you need within the pira text edits if a actual wikipedia staff member wants more specifics i will be happy to provide them look you are obviously a anti ira hack who is making things up to support your bias i am neither pro not anti ira i have no bias i merely report facts i will be checking this page daily and will continue to submit my pira entry because it is by far the most accurate and factually supported we can do this several times a day if you wish or you can accept the fact that mine is the superior version and just deal with it it s up to you but i will re edit on a regular basis or we can agree to incorporate your fatcxs and mine into one article but the three areas the number of loyalists killed from to the number of ira victims as broken down by both janes intelligence online and the cfr and the ira russianmafia connection which has been documented in multiple books and newspaper sources these three things are verifiable and will remain,0 +it s from one of the many books on various bands i thought it was from cult rockers but i just checked and supertramp isn t in there i will seek out a source for this quote,0 +i ve explained my reasoning for this block at user talk gwen gale user professional assassin,0 +when an article is created about that album then a disambiguation page will be created,0 +that would be pretty odd for those declassified documents to mention a movie that was created after the events for which both the movie and the documents do related about the declassified documents were not synthesized for the movie unless you want to prove a conspiracy on the synthesis very odd it is perfectly valid to use the documents to relate to the same historical events to further verify the what happened but the use of primary source in such a was is not ideal for wikipedia since it is not ideal that is why i left it here on the talk page if someone wants to research it more to find ideal references,0 +your retard ed bot your bot is entirely automated that is wrong you should not leave an unattented script just running through the site like that it is idiot ic of you to suppose that your scripting abilities are so perfect that they will only ever make proper edits banning me doesn t help anything dip shit since i have as many ips as i want,0 +two reversions on hezbollah could you explain on the talk page why you have reverted my edit twice,0 +dislike racism and i can see that you has problems with people who speaks spanish you are an antisemite too,0 +the name yuen lou looks to be just a variation of yuen lo the name jackie used under his sifu at the opera school,0 +user talk wikireader archive archive mar,0 +i realize now that the article doesn t quite say what i thought it said if anyone can find a citation stating that there exists a proper subfield of isomorphic to itself i would be very interested in seeing it and we could reinclude the clause with the citation,0 +i didn t cherry pick anything these are the official and only facts while essentially every cnn program was down double digits pmet which is home to piers morgan tonight and pmet which is home to erin burnett outfront each had their worst performance in the demo in years http w mediabistro com tvnewser may ratings cnn hits year low bitch,0 +direct indirect relation is it correct to say that technically if a degree shot by elevation reaches the longest distance then a degree will reach the same distance as a degree shot if so could the lower than shot be considered direct fire and the higher than shot considered indirect fire if so i think this is a great explanation or one way of viewing things,0 +title section revert hi i was at the office earlier and i hadn t noticed your warning before restoring the title of the section i m sorry for that of course i won t do such a revert again just to clarify i ve opened a new section to indeed alert some contributors that they were behaving in a way in line with the examples of ownership behaviour as described here in return the title of the section has been twisted to something unrelated and one of my message has been erased it is the first time i see people editing other s signed contributions in a talk page this just looks crazy to me,0 +noel you are an expert please convince whig history fans or the lazy minds about how bonnie prince charlie did not want to dissolve the union that the united kingdom began with the stuarts as opposed to the hanoverians tell them how the whigs rewrote history to blame everything on the stuarts whom are credited as ultimate failures with no positive contributions to the foundations of great britain in their stewart and tudor blood the sovereign s will is the realm or else it is not a kingdom the british might as well be living in a republic at least if the parliamentarians had their way even the hanoverian heirs recognise that the stuarts founded the uk please debate that here thanks,0 +warning earth i d like to leave you access to your talk page so that in perhaps six months you can convince us that we should try again if you re so inclined but you re making it hard if you continue these abusive comments i will revoke your talk page access,0 +should be jaeger regardless of what other people have decided erens name should be jaeger its like calling light from death note raito at least in the anime the people dubbing take care to correctly pronounce the foreing names ie all of them except mikasa jaeger means hunter a german word guess what eren does in the series,0 +thank you for experimenting with wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you may want to do take a look at the welcome page to learn more about contributing to our encyclopedia a link to the edit i have reverted can be found here link if you believe this edit should not have been reverted please contact me talk,0 +please discuss how factual accurate biographical information about courtney ford is vandalism i look forward to hearing your evidence,0 +i think the entire article should be tagged as politicized and the part about future trends as speculative my point was that scientists are learners and we are increasingly using them as know it all teachers yes they probably can make educated guesses better than anyone else but its still an educated guess also if you didn t notice i am totally against spewing unnecessary carbon as this statement i think this article superbly misses the point that pollution and waste of all types are stupid ways to go about doing things where better ways are known and we are making guinea pigs of all our planet s species points out,0 +used car expert page image thank you for your note about the image of used car expert magazine i have had the copyright owner who gave me permission for the picture email as above,0 +however it is still in error to assert he doesn t work the equations himself or that he is handicapped,0 +first we ve widely established the use of exile quotations presented as such is legitimate second i m not mark ames this has been autheticated by numerous admins and users at wikipedia who have personally met me third you cite the paragraph on spy magazine as your primary example of pov and creative facts what precisely is the creative fact in that paragraph that the exile admired spy magazine that spy magazine employed a team of lawyers to defend against spurious lawsuits that spy magazine went bankrupt all claims in that paragraph are verifiably true,0 +pretty humorous comment from someone who promotes the far leftist blog daily kos on his user page,0 +seems we both have some,0 +don t be evasive i shall have to repeat myself how many people argued for its deletion don t lock pages when you don t get your own way,0 +edit request on october the arctic monkeys played walk on the wild side in honour of lou reed at echo arena liverpool a day after the musician s death http w rollingstone com music videos arctic monkeys cover lou reeds walk on the wild side,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia questions ask me on my talk page or ask your question and then place helpme before the question on your talk page again welcome talk,0 +gurch is an interesting fellow just don t take his comments to heart but take his advice on board talk,0 +you need to understand that he is not here do help wikipedia he is here with a political mission attack brazilian press no i m not crazy but i see this crazy people all day here in brazil,0 +season issues not sure why you removed my edits on the season futurama issue but i think it has merit the total lack of season info is confusing and not sure why the season info is replaced by the movie information you could have informed me at least on why you removed my discussion comment,0 +philosopher rfc philosopher from wiktionary a person devoted to studying and producing results in philosophy i am going to make the case that we must call stefan molyneux a philosopher without qualifiers in the lead this is not done as an endorsement or statement about the level of achievement or acceptance of his philosophy only that it is his career note not all of the sources i use below are in the article at present the point here is to first convince rfc respondents that philosopher is accurate and widely accepted then we can make sure the most reliable ones are in place definitions obviously each source is going to use slightly different phrasing some will call him explicitly a philosopher or has views on philosophy but i think you should consider some other phrases given below as equivalent using one word philosopher in the lead sentence covers all of his political ethical and theistic specializations in one word which we then elaborate on later in the article philosophical conversation philosophy show used to describe his freedomain radio series libertarian libertarian thinker libertarianism is a classification of political philosophies anarcho capitalist anarcho capitalism is a political philosophy voluntaryist voluntaryism or sometimes voluntarism is a libertarian philosophy athiest arguments for atheism range from the philosophical to social and historical approaches ethics ethics sometimes known as philosophical ethics ethical theory moral theory and moral philosophy is a branch of philosophy secular ethics secular ethics is a branch of moral philosophy primary source as stefan molyneux is a living person we should give great weight to what he says is the focus of his work and his stated profession unless there is reliable evidence to contradict him obviously we don t want to host any sort of fringe claims if we are to dispute what he says about himself though then we absolutely must have a strong basis for this or we open wikipedia to discredit or liability this is why blps are held to strong standards in the first place i think in this case there is strong and ample evidence that calling himself a philosopher is justified and correct he is a modern philosopher that explores via modern online media which is obviously a very new phenomenon and so its understandable that its different than the old school philosophers we re used to freedomain radio about page my master s thesis analyzing the political implications of the philosophies i have been fascinated by philosophy particularly moral theories since my mid teens i left my career as a software entrepreneur and executive to pursue philosophy full time through my work here at freedomain radio i have written a number of novels as well as many free books on philosophy freedomain radio the show that molyneux hosts has the tagline the largest and most popular philosophical conversation in the world molyneux s books show that he is endeavoring to produce tangible written results in the field of philosophy particularly universally preferable behaviour upb a rational proof of secular ethics and against the gods a concise guide to atheism and agnosticism which are two of his more deep dives into the fundamental philosophies strong atheism the case for evacuating the middle ground article why i am a philosopher video a response to questions about my childhood motivations for pursuing philosophy an introduction to philosophy part video course produced by molyneux describing basic philosophical concepts reality knowledge truth gods religion ethics and politics unsolvable philosophical questions solved video tackles great philosophical questions considered unanswerable proofs for god destroyed by a philosophical atheist video a philosophical review discusses the major philosophical political economic and social developments of video https w youtube com watch v udlsgjbw hs philosophy questio,0 +wp film december newsletter the december issue of the wikiproject film newsletter has been published you may read the newsletter change the format in which future issues will be delivered to you or unsubscribe from this notification by following the link if you have an idea for improving the newsletter please leave a message on my talk page happy editing talk contrib,0 +january utc no i am not being uncivil try uuser lbrun he s called other users a waste of sperm a moron etc block him the one who s truly uncivil rikara i recommend you cool it yelling and arguing is not going to get you anything take a breather and come back when you re feeling calmer otherwise you will find your talk page protected and you will be forced to take a breather i have seen nothing of the sort from that user who has since been renamed at the very least not in this current situation blah v v,0 +see internet explorer market share history overview by year and version ie is with us for some time to come like it or not but if others using it have no problems that s fine i m not worried about my specific workplace come howl,0 +i like the example given on the following post http theautomaticearth blogspot com july real black real swan html,0 +curse wikipedia has no respect for god wikipedia is full of lies or dangerously evil half truths wikipedia has no respect for religion the following users of wikipedia namely redtigerxyz priyanath emperor genius raj wikidas wikiveer and dagizza have all committed blasphemy and sacrilage curse upon you that you will all perish i curse the following users of wikipedia namely redtigerxyz priyanath emperor genius raj wikidas wikiveer and dagizza that you will all perish i curse that the wikipedia will entirely perish i beg forgiveness from the supreme god lord vishnu for choosing the blasphemous wikipedia website to write about the truth a true devote of the supreme lord vishnu has been hurt and my curse never goes in vain i will never again edit or read or go to the evil wikipedia website forever delete my user id and all edits you evil wikipedians mr dagizza you are a male chauvinist pig and a misogynist to the core and you call yourself an administrator ridiculous mr dagizza you are a curse to your existance a man like you who cannot respect women is a worthless in his existance you wikipedians are useless people you are a burden to the civilized world you are not even worth hatred you wikipedians must be ignored curse,0 +blocking mardyks guess what loser know what a cock blocker is hahahaha m,0 +and i don t want to use it again i don t understand why fayssalf insists on naccount i could have wrote to him using any other account maybe he would have kept it instead of naccount,0 +deletion of minority posts nice try at trying to silence the slave who won t stay down i did not know you attempted to block my yet again i do not come to wikipedia every day because i have something you do not a life as you can see you have failed again in attempting to silence me and refusing to answer the qusetion why do you purposely hunt down posts of african americans and delete them all you did was refuse access to some sporting goods store and the person you contacted in an attempt to block me is named rebelguy no there is not racial agenda is there i have made a hard copy of your failed racially motivated attempts to punish me and turned them over to the naacp,0 +thank you i just wanted to say it,0 +well you never answered my question about your specific intention at talk mystery science theater episodes experiments vs movies can i assume from your posting title that your intention is to create individual mst k episode articles i m on record as believing this could be useful but am not prepared at this time to do any significant work on it as i m stretched way too thin right now talk,0 +nigel per wiki standards when to use and external link is it proper in the context of the article useful tasteful informative factual etc is it a functional link and likely to continue being a functional link each link should be considered on its merits using the following guidelines as the number of external links in an article grows longer assessment should become stricter when in doubt about the appropriateness of adding new links make a suggestion on the article s talkpage and discuss with other editors i generally avoid external links except when it takes me directly to the home page of the aircraft in question this link does take me directly to nasm s page on this particular p that makes this external link appropiate agree that this page does need more references,0 +edit request from maksudfsa march just a minor edit i ve added azerbaijanis to the list that describes turks in the first paragraph as we are the second largest turkic ethnic group the turks or turkics are peoples residing in northern central and western asia mongolia southern siberia and northwestern china and parts of eastern europe they speak languages belonging to the turkic language family turkic people encyclop dia britannica online academic edition they share to varying degrees certain cultural traits and historical backgrounds the term turkic represents a broad ethno linguistic group of people including existing societies such as the azerbaijanis chuvashes kazakhs tatars kyrgyzs turkish turkmen uyghur uzbeks bashkirs qashqai gagauzs yakuts crimean karaites krymchaks karakalpaks karachays nogais and as well as past civilizations such as the kumans kipchaks avars turgeshs seljuks khazars ottomans mamluks timurids and possibly the xiongnu and huns timur the columbia encyclopedia sixth edition columbia university press encyclopaedia britannica article consolidation expansion of the indo timurids online edition,0 +nobody cares seriously it s just self referential trivia guy,0 +i understand what i see i do not see scholarship i see stealing grasping greed it s animalistic try this in any culture switch to math you wil like it no levantian in math amanbir,0 +i guess u don t know greek cuz it took u forever to trans late second if u read carefully does not say anything about u,0 +you have never met or been photographed with keith wigdor whoever you are i am asking you to not interfere with the article about keith wigdor you have no resources or connections to him unless you are somehow being deceptive so really you are not any sort of expert on this artist dec utc,0 +holocaust denial if there is no actual proof that jeff rense advocates holocaust denial then the category holocaust deniers should be removed,0 +wikipedia administrators are defending a mass murdering psychopath,0 +censorship it s my understanding that you re supposed to warn someone before asking the administrators to block them so consider this a warning don t delete my comments again,0 +april your attitude and comments to are not appreciated please remain civil,0 +request for help request for help hi again cat as perviously i have noticed a strong anti greek bias on several articles related to macedonia i ve had issues with both furper and beam who seem to be admins that heavily favour fyrom i ve officially complained on the notice board about their threats to block edit behavior and unusually close relationships with obvious fyrom pov members of wikipedia specifically balkanfever http en wikipedia org wiki wikipedia administrators noticeboard this anon apparently user crossthets c is an apparent pov pusher c evidence below as i said verbatim on politis talk page this is a difficult battle because so far i am alone at the moment i am a newbie and as i said to one of the admins on notice board i feel like someone reporting a bad cop at a policeman s ball however i still plan to follow up soon with a precise listing of what i perceive as non npov behavior by these admins i noticed while researching this issue you ve also have problems with them would it be possible to list any problems on your talk page here so i can add them to my report to show i am not alone furthermore since you have been around longer you probably know more greeks than me around here would it be possible to also contact them to ask them if they ve also had problems with those two and if so add those incidents to your list and perhaps get them to contact others where one person could be bullied with threats of blocking the concerns of many will be taken much more seriously i will check back here in a couple of days have courage regards,0 +i am certain that it was injury and not sickness regardless of how it occurred,0 +i told you i won t comment on it again what more do you want,0 +wikipedia articles for deletion cheongye kwan your post at the above afd on a new martial art bothers me this was the version at the time that you based your post on you posted i just read the article and to be quite honest feel that it does satisfy wikipedia s guidelines it is reliably sourced since i believe the notability of the article is satisfied it now has independent sources and to refute the argument posed by wayne it is determined by the phillip rhee source that the martial arts is not localised please consider the concerns this post raises simple matters like references notability and noobie basics of afds should be routine for any moderately experienced user and bread and butter for any admin in fact a cursory check shows that almost everything you stated was i don t have a word for it unreal is close the eleven independent sources that you stated established notability and non localization at the time were three references from coates robinson shaw certainly before the topic even existed and all related to a passing piece of news about its founder being on the team of a completely different sport in any event two references from st half davies white almost certainly identical and identically irrelevant to the topic s notability the promoter s personal page on his local town website almost certainly self published official village website a casual interview in a non notable and possibly non reliable university magazine apparently of the promoter s travels to see experts in a different sport with tangential tiny sentence mention that he d discussed his new sport with them too the lau philip la interview entries marked reference and support of written reference chris cook rhee obviously a request by the founder to a friend colleague write a letter of support that was never published anyway and isn t cited so you can t have read it not that it was even possibly valid evidence a short writeup of a local information kind on the award of the first black belts by the school in its local paper in brief of the were before the sport existed and were not even remotely to do with the topic itself much less sourced material on it or substantial coverage they had precisely zero coverage were claims of personal i think is a great guy letters of support evidently solicited and or written on request with zero evidence of verifiable existence and certainly in no way reliably sourced or independent was self written was the briefest of non mentions in a non reliable source pretty much i discussed the topic with them in a college magazine interview is local press coverage of his courses that s not even news for a day or evidence of anything beyond a course by this name is taught twice weekly in our local village hall your assessment of these at afd was it is reliably sourced style border c c c solid px width there is barely one reliable source in all of those that the sport even exists in the first place a local newspaper mention that it meets in a village hall on tuesdays and fridays and just awarded its first black belts probably via self promotional input there is zero reliable sourcing for any of the rest that the cited pages are evidence of notability style border c c c solid px width they don t mention it or even date from a time the topic existed nor are online versions provided how on earth could they reliably evidence it that the sources are independent style border c c c solid px width are claims that please support me letters exist they are even stated to be personal references unpublished and uncited is his own clearly self written web page on a local village web host that the cites show it is non localized style border c c c solid px width the page doesn t list a link so you can t have checked the cite yet you say the citation proves it the reference openly stated cambridge university and bristol taekwando a big indication of its actual source when a link was provided on request it turns out it,0 +hebrew name of lydia appologies to til eulenspiegel i thought you were one of the idiot s which your user page indicates you actually do well struggling against genesis tab and mizraim begot ludim and anamim and lehabim and naphtuhim you see ludim are from mitzraim not to be confused with lud son of shem in the far east best wishes and keep up the good work,0 +which they are have you considered that you have irrationally laid waste to six months of my life which i have dedicated to this project,0 +did you scout for sources prior to the prod eh no dr blofeld,0 +class wikitable style border px solid aa background f f f padding font size parliamentary bloc alliances leader seats percentage source national alliance state of law coalition national iraqi alliance ibrahim al jaafari al iraqiya al iraqiyya hassan al jibburi kurdistan blocs coalition kurdistani list kurdistan islamic union islamic group of kurdistan fuad masum center current al tawafuq unity alliance of iraq unknown gorran bloc gorran movement shorsh hajial iraqiya brengt oppositie en talabani dichterbij elkaar azady nl national rafidain list assyrian democratic movement yonadam kanna csapc chaldean syriac assyrianpopular council sarkis aghajan independents,0 +i also told him that counts of using admin tools for deciding on content and misrepresentation of policy norms has been sanctioned in the past,0 +welcome hello and welcome to wikipedia thank you for your contributions such as the one you made to nogeoldae i hope you like the place and decide to stay here are some pages you might like to see the five pillars of wikipedia help pages tutorial how to edit a page and how to develop articles how to create your first article using the article wizard if you wish manual of style you are welcome to continue editing without logging in but many editors recommend that you create an account doing so is free requires no personal information and provides several benefits such as the ability to create articles for a full outline and explanation of the benefits that come with creating an account please see this page if you edit without a username your ip address is used to identify you instead in any case i hope you enjoy editing here and being a wikipedian please sign your comments on talk pages using four tildes this will automatically produce your ip address or username if you re logged in and the date if you need help check out wikipedia questions ask for help at the teahouse ask me on my talk page or ask your question and then place helpme before the question on this page again welcome,0 +stradbroke galleon portuguese hallo moondyne i do admit that when i signed onto wikipedia i was not aware that it was a concensus community of knowledge nazi s but now that i am aware of it i will make the appropriate adjustments i was under the obviously mistaken impression that wikipedia was a venue for sharing facts knowledge and information the notion that the stradbroke galleon story is a pet theory of mine is total rubbish as it has been written about discussed and investigated for more than years by historians and historical groups such as the royal historical society of queensland the maritime archaeology association of queensland and many more too numerous to include here there exists in various libraries books and communities a large body of written and oral history concerning the galleon story which i have attempted to fairly and accurately place in the wp domain the fact that a story is not accepted by mainstream academics is not a valid reason for deletion of either of my contributions what has occured here is a classic example of manipulation of an information resource by a vested interest group i e hesperian and his friends who are representatives of the mainstream view hesperian complain about the media coverage i have recieved but this never appeared in any of the wp contributions i made and hesperian s mention of the media coverage demonstrates the core reason for hesperian s antagonistic attitude simple old fashioned professional jealousy thus valid historical data is being deliberately surpressed by hesperian for personal reasons for example the portuguese walking stick handle which was found in an aboriginal midden identified by a spanish musuem offical and story told to me by a uq archaeology phd student is very relevant to the theory of the portuguese discovery of australia this kind of knowledge suppression is not what wiki is about but i guess you do not care as you appear to be part of the happy little click or have been suck ed in by hesperian and his little band of mates which is a pity but history is full of the suppression of information by vested interest groups so why should i expect wiki be any different still it is dissapointing happy trails,0 +agf requires me not to think you were reverting to the user s preferred version it might look better if you allow another admin to make that edit,0 +accents although the cartoon established mario and luigi to be from brooklyn a fact commonly accepted by fans despite having never been mentioned in any games toad seemed to speak with a thicker brooklyn accent the accents weren t mentioned in the games but the tv show was presumably a licensed product until nintendo decided to go with an italian accent fans assumed the tv show and later the movie accent was the official standing only when nintendo s products included digitized recorded speech did anyone realize nintendo intended them to be italian not italian american it s the same principle of updated canon that star trek and star wars licensed products run on,0 +delete this no way i consider it a trophy,0 +actually bzfoster will be unable to edit the article as it is semi protected as well pc d log out and try for yourself,0 +i believe that i have obeyed the communities rules i do understand the rules about personal attacks but it appeares to me that they are being applied unjustly in this instance i have provided countless hours of academic research and input for wikipedia please assume good faith on the part of the blocking admin i am an intelligent adult i naturally assume good faith until other parties demonstrate they don t it seems to me this is a one side affair,0 +please do not add unsourced negative or controversial biographical material to pages as you did with this edit to stuart tyson smith if you continue to do so you will be block from editing,0 +preceding unsigned comment added by talk contribs,0 +or between the french and the walloons surprise our article on french people clearly labels the walloon as a distinct ethnic group perhaps it is best not to make comparisons after screwing it up a few times i have done rewrites of parts of the article mainly a word and a sentence left and right to make the distinction and relation between the dutch and the flemish clearer the article switched constantly between parts about the dutch only and parts about the dutch and flemish together this should now be clearer the major thing left to adjust are the graphs of the number of dutch since these still al include the flemish,0 +you need to sign the above and your rsn post,0 +a few things to get straight firstly i do not like you you look like a smug little prick to me secondly i do not like your ethnicity not one little bit i d like you to explain yourself on that count thirdly your dog is a bit of a bender,0 +procedure do i ask you for the award michelle obama already has a million views this year and anthony davis basketball had a million in t c wp four wp chicago wp waward,0 +adding more than links i did add more thank links but the entire page was also marked as spam for no reason other than the no one is familiar with the one hundred year old industry and you still have not explain how the links on this page http en wikipedia org wiki natural building are relevant and mine is not,0 +please do not accuse members of vandalism i do not mind if you change the word unique to prominent or remove stories of dreams etc but you have vandalised the page and made a statement biased by saying that dr qadri only sent out a referendum so i reverted the whole edit you have also reciently vandalised the page by removing the names of the yemeni scholars who recieved dr qadri s ijaza including the pictures and this is a clear form of vandalism so before accusing other members of vandalism do not vandalise the page yourself what i did was clearly not vandalism as i only reverted your edit and any changes you made and brought the page back to its previous form so would you first kindly read the rules of wikipedia and find out the definition of vandalism before accusing experienced users you are still new to wikipedia i m afraid and you need to learn how it works and the different rules of wikipedia before making any further edits,0 +i know how it s pronounced in turkish the question is whether there s a specific pronunciation that s dominant in english if not it s best not to include any english trans cription or pronunciation audio file,0 +oh sorry i actually found it on an other page but i forgot it anyway it was actually a note for myself was going to rewrite the text suppose it slipped out of my mind,0 +june please do not vandalize pages as you did with this edit to bugatti veyron if you continue to do so you will be block from editing talk,0 +terri schiavo as rorschach test now perhaps you see that utility of terri schiavo is as rorschach test you dangle that pretty slender alive and aware young face in front of the power players on both the left and the right and you see how they respond if they respond inappropriately then you make a note it as if they were just some rat in your laboratory that is what make wikiepda so powerful and it is all true and npov notable and fair,0 +ok stop being lame seriously go watch pokemon,0 +past masters vs rarities i m creating a chart for my own use that includes u s albums since there are so many differences in the early albums as a u s fan i m faced with the issue of whether to have u s albums u k albums or both on my ipod i will post my chart on my talk page so that others can judge whether it s worthy of including here i realize there will be problems including the lack of canadian albums my purpose is simply to record the first album appearance in both the u k and u s of each song i notice that a number of u k songs are listed as past masters when they actually first appeared on rarities the beatles album i don t know the reason for this if the purpose is to list the first appearance on an album can someone explain or should they be changed to rarities,0 +simpsons movie poster did you create the simpsons movie poster image or did you source it from somewhere else,0 +help hey can you help me with something i uploaded this image to wikipedia http en wikipedia org wiki file stikky cemetary san jose jpg i contacted the photographer and he gave me permission to use it on wikipedia so i was wondering what the proper licensing would be thanks in advance,0 +looks good it would be nice to see the counties but it is a lot better than the current one good job,0 +the debunkers pretending that they re objective sceptics besides proving their lack of knowledge and lack of integrity on the various astrology pages have also been personally attacking me on my own talk page when i dare try to defend myself they block me out of wikipedia so much for honest dialogue they can t win an argument fairly so they resort to dirty tricks,0 +reviewing blocks you said i d also like to ask you that in future for the sake of fairness and due process that you do not decline the unblock requests of users you block yourself unless the request is pure nonsense or abusive from an ethical reviews of blocks are meant to be carried out by a rd party will do i thought it was pretty clear in this case given the editor s user page gnaa etc etc etc that the unblock request was pure nonsense also i was under the impression that the unblock request would still be visible and reviewed by other admins i ll be more careful in the future,0 +regarding edits made during december utc to kanpur please do not add inappropriate external links to wikipedia wikipedia is not a mere directory of links nor should it be used for advertising or promotion inappropriate links include but are not limited to links to personal web sites links to web sites with which you are affiliated and links that exist to attract visitors to a web site or promote a product see the external links guideline and spam policies for further explanations of links that are considered appropriate if you feel the link should be added to the article then please discuss it on the article s talk page rather than re adding it see the welcome page to learn more about wikipedia thank you talk,0 +come on was this really necessary i understand where your coming from but you sound like a whiney bitch when you have a website that anyone can edit this sort of stuff comes with the territory and did you really expect anyone other then the or people who troll wp pw to read your comments on talk royal rumble or this talk page for that matter i m confident most active members of wp pw have added wrestlemania xxiv to their watch list so when and if something not to their liking is added it will be removed simple as that and if you re through with putting up with people not reading talk pages quit endless dan,0 +i do not see any anti semitism here if the guy gives lectures in new york synagogues and knocks down his country every single minute using every opportunity in such influential newspapers as new york post then one can state that his interests are not only personal you can not find any intellectual person among neoconservatives in new york post michelle malkin andrea peyser deborah orin may her rest in peace although i know she is rotting in hell and other essayists are the ones who make a great company for amir taheri this guy has no mind at all i agree that iran s regime is wrong but the regime of shah that amir taheri is longing for because he owned keyhan during that regime was not any better and islamic revolution was justified look at how they intriduce amir taheri in both this article and in new york post based in europe memeber of benador associates is europe that small is that a small town why don t they say based in the world journalist or may be he is having a breakfast in london with christian amanpour and james rubin eating lunch in jerusalem and having some lectures and dinner with anti irani jew s in forest hills new york in between emailing his full of hatred articles to new york post isn t this stupid how can you saysomebody is based in europe or asia or africa,0 +why confusion and controversy in the real world does not preclude the writing of a good wikipedia on the topic ackoz suggests that because the real world has not yet hashed out the truth about the expulsions it is therefore impossible for us to know the truth and thus impossible for us to write about it i reject such a stance i think it is difficult but quite possible to write a quality wikipedia article about a topic that is murky and or controversial where many wikipedia editors get it wrong is that they believe wikipedia s job is to report the truth this is wrong wikipedia s job is not to report the truth precisely because it is difficult to determine what the truth is any attempt to do that is original research instead of truth wikipedia aims for verifiability put a different way wikipedia is committed to recording the state of human knowledge and opinion not our opinions but those of reliable sources if the truth is clear and uncontroversial it is easy for us to report that if the truth is murky and controversial it is more challenging but possible for us to report on what different reliable sources assert and think about a topic even if these reliable sources conflict where wikipedia editors get into trouble is when they start siding with one side of a controversy and asserting that the side that they have selected represents the truth and not just one perspective or pov on the topic at hand i have been trying to hit this npov sweet spot but it is difficult to do so in the midst of a running polemical debate between the two sides obviously is because some users jadger and wikiferdi don t want to discuss in fact they want us to agree with their pov that s not discussion about the npov edits that s why i quit from the discussion about the form of the article talk,0 +i did not intend to be disruptive i was genuineley upset by the word constantly i only tried to make it look like an april fool joke after you explanation made me look like an uptight weirdo,0 +regarding loyalmoonie and lgbt categories looked into it and this editor seems to be pushing an anti lgbt agenda they ve done similar stuff over at sailor moon and made official looking warnings to other editors this quote is bizarre and is quite telling to insert those categories would ultimately give other people who may not even support the lgbt movement reading the article the assumption that every person who does enjoy sailor moon is a homo sex and or supports ssm i don t personally watch read sailor moon or know much about it so i m not confident enough to re add the categories but the reasoning for their removal is flawed regardless and there is a sourced part in the article about female homo sex ity talk,0 +matt when mattsanchez info goes live on monday among other things you ll see an invitation to be interviewed this time you ll have nowhere to hide let s see who s a victim and who s a coward,0 +okay i found a document that demonstrates the scimd listing by the who on the who site now there should be no trouble with including the above text,0 +valerie poxleitner valeri poxleitner a k a lights if,0 +shamash is sun i agree to merge sammash in to shamash since shamash is more likely to be correct tracking the root of the word clearly it is of assyrian origin in addition it is a common vocabulary morph to substitute sh to s and thus nowadays it is spelled as shams in modern arabic,0 +i feel like i m out of ideas for now so maybe some other users will come up with things that address both our concerns talk contribs,0 +october utc the original nominator and i have been trying to restore the article but others have been saying it was found to be merged by you so it has to stand with the original nominator for deletion working to keep the article and admitting he was mistaken in nominating the article of a noteworthy character can we restore it now if someone wants to make a legitimate nomination for deletion that s fine,0 +what chart are you looking at i don t see anything portraying that timing user talk spinningspark spark,0 +agreed although it means bloating the alternative title by yet another word i was concentrating on the polish attitude here as it clearly provides the starting point for the article at hand obviously if the article is to be written from a supra national perspective at least the czech experience needs to be included czechoslovakia being the only functioning democracy in the region by the s had closer ties with the west than poland did and was betrayed in a much more obvious and tangible way than poland was the west politically accepted the country s territorial mutilation which was not the case with poland that said i am not sure if the inclusion of countries such as finland the baltics yugoslavia or even ukraine which had never been independent in the first place is a good idea while the west could have arguably done more to assist any of these societies before and after the war i think that the article s focus should be on poland and czechoslovakia in order not do dilute the whole issue after all there were dissidents in germany and the soviet union too who were harbouring grudges towards western politicians because of their appeasement policy oct utc,0 +hello setanta can i ask you what you think of the proposal first put forward by matt lewis in july at template talk country data northern ireland i confess i am no expert on n ireland but i believe this could solve the problem of n ireland having no flag to represent it on wiki i have made a comment at that article cheers,0 +american psychologist as additional resource i did not see listed in the references any citations of the american psychologist articles in january some of which discuss this subject,0 +regarding the verifiability mediation you will appreciate that due to recent events user talk newbyguesses february that i am jn a pickle is it just me or is it you too i don t know what to do how can we go forward what is to become of me and all my beliefs and needs who is there who cares to take in to account my position is there no accounting for our differences and each of us what it is that you see that we stand for in the highest degree as individuals really individual as we all are individually in our own way as real people different but the same but definitely an individual just like every body else believes they are despite all evidence to the contrary comment on content not on contributors or did i just dream that either way or w hate ver just don t scare the horses or wake the kiddies comfortably snoozing you know it makes sense to me cause i say so irrefutably talk,0 +you have no authority to be threatning to block me about saying information about a company i work for you do not even know anything about airliners bello that is all i basically said if that was so hard to comprehend,0 +the real problem is the sneering and contemptuous attitude that you reveal in your first sentence in the last post it was originally followed by others in similar vein which you have deleted yes i can cut and paste quotations i can also select appropriate ones in this case one which you would do well to consider i will return to this when i have time probably this weekend,0 +he does appear to be a bit of a fantasist to be fair he has carved a nice little career for himself and more fool the mugs that buy his books and believe what he says but like many people contributing to this page i come from that background and whenever his name is mentioned the response is always dave who no one had ever heard of him at all until the books started coming out,0 +dar ok bear with me penelopism is a religion it s a new religion but it is a religion penelopism is extrememly important to penelopists we want the word about us out there people are not too fond of our beliefs we just want a way to show them that we mean no harm now you have the spaghetti monster church in here that is not even a real religion penelopism is so please tell me what the spaghetti monster has done that penelopism hasn t what can we do so that penelopism can be on wikipedia because i am having trouble understanding and i apologize for the dar dar dar however much fun it was i shouldn t have done it whatsit,0 +i intended this to go the page,0 +dxraw come out come out where ever you are how odd that dxraw goes away and then in the follwing articles extradry appears in the editing lists aussie aussie aussie oi oi oi free hugs campaign newington college australian army cadets john cena so you really are that cheer loving free hugging newington teacher and cadet master who has the hots for john cena with his shirt off it s time you came out dxraw,0 +this accusation is uncalled for i have only reverted one edit my second edit was to add the reference not a revert,0 +do not help the jew schnider final warning,0 +kudos for destroying article copyright superstar you really deserve nobel prize for copyright,0 +welcome hello and welcome to wikipedia we appreciate encyclopedic contributions but some of your recent contributions seem to be advertising or for promotional purposes wikipedia does not allow advertising for more information on this see policy on neutral point of view guideline on spam guideline on external links guideline on conflict of interest if you still have questions there is a new contributor s help page or you can write helpme below this message along with a question and someone will be along to answer it shortly you may also find the following pages useful for a general introduction to wikipedia the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing wikipedia please sign your name on talk pages using four tildes this will automatically produce your name and the date feel free to write a note on the bottom of if you want to get in touch with me again welcome,0 +the spelling tacarimba la tumba del fuego santa maliga sacategas lo onto del sol y cruz is the one stated in the lyrics in the vocal score of side by side by sondheim available for rental only this version of the song however misspells llanfair pg presumably to approximate the pronunciation and has the lyric today s the last i ll be spreading rather than spending it would seem therefore that this source cannot be considered canonical this rendering of the place name does accord with millicent martin s recording on the side by side by sondheim cast album however the published version of the song as contained in the hansen treasury of stephen sondheim songs charles hansen music books has the lyric printed as tacarembo la tumbe del fuego santa malipas zacatecas la junta del sol y cruz and being a printed source as opposed to handwritten as is the vocal score can presumably be considered definitive linda lavin s pronunciation on the original cast recording of the mad show for which the song was written follows this spelling which would suggest that the printed version is correct as it is a fictional place name however any discussion of correct spelling pronunciation is an academic one at best,0 +don t peddle your crap please hate to see another article get disputed for neutrality due to you,0 +howd homeonttherange your typical problem is that you are being too literal the term personal union is a very special and limited constitutional term it refers to two or more states i e countries that recognise the same monarch as there head of state however their is no union of their parliaments some examples are i the union of kalmar its members were the kingdoms of denmark norway and sweden this gave rise to the termunited scandinavia in i believe sweden left the union the resulting left over union of denmark norway was dissolved in as being allied with napolean tunrned out badly,0 +i think this one should dayz mod the other one should be dayz video game and dayz should be just a disambiguation page,0 +by those pushing an anti mrm pov,0 +you really are a rebel guy rebelguys time to get oral from a prostitute,0 +fine smarty pants but just wait until they finally announce it then you ll see i am right and that you don t know everything,0 +amber taylor forever amber taylor forever,0 +kosovo template hi again can you please take a look at this template shouldn t albanian language be mentioned first since of the population are albanians i changed this but some serb nationalist keep reverting my edit i hope i am not disturbing you but you are one of few here i consider to be quiet neutral,0 +of course a true dub will say departed or more likely fuck in gone,0 +i think it is a little disingenuous of zet to claim that a division which had lost most of its fighting troops was far from destroyed when its fighting capacity was close to nil,0 +muslim men harassment of mm page it is amazing how three muslim men jumped all over this page right after i added a number of things minutes after all three men all muslims and cleaned it up does a woman working for human rights in pakistan really get under your skin so badly wow so sweetie if you are so bloody busy why not get busy and stop harassing the women are you that threatened,0 +width style background trans parent width style background color style width border px solid background color vertical align top hello madstar and welcome to wikipedia please remember to sign your name on talk pages by clicking or using four tildes this will automatically produce your username and the date also please do your best to always fill in the edit summary field below are some useful links to facilitate your involvement happy editing discussion width style background color style width border background color vertical align top getting started introduction the five pillars of wikipedia how to edit a page finding your way around table of contents department directory editing articles how to develop an article manual of style style width border background color vertical align top width cellpadding style vertical align top background color getting help style color frequently asked questions cheatsheet where to ask a question help pages new contributors help page,0 +august utc hey looks like your rehab program didn t take and now socafan s been community banned your approach worked out real well didn t it talk,0 +pkk fighters who the past decades entering and living syria for their fight in turkish territories have no match in guerilla war specialized to this against the turkish regime rebels and the army are far behind in abilities and training to match the pkk fighters,0 +omd thl h depeche mode abc are all not new romantic never have been don t self identify as romantics fans don t consider them romantics yet individual insists on keeping listing them on this page fans of the bands will just keep removing them because it is simply wrong stick to visage and other blitz bands or this article will be in perpetual edit war,0 +tried to be productive look at my contributions but hit my head against a wall of spoiled greek children or probably under pay from greek government that purposely keep vandalizing the albania related pages and keep iritating the albanian editors until they explode and get banned as a historian i blush with what i find quoted as reliable information on the wikipedia pages and the quality of the editors and sources time to move to the french pages a lot of readers there still more languages to go till next time wikipedia suck s,0 +ricky gardiner woody my man thanks for your quick actions and additions re this article just a stub i created yonks ago to get rid of red links on bowie pop articles what is it that draws people like us to defence and rock i think nick d is a member of the military and music projects as well then again the riff for lust for life came from bowie s interpretation of an armed forces radio theme cheers,0 +triple crown just about cleared ok got out the broom and dusted off some stuff cheers talk contribs,0 +if you agree with master bigode then what about rule for x images and what about the back side image that was erased without consensus he never discussed the back image he erased it out of the blue what if i went on your user homepage wolftengu and i said that picture on your homepage is too big be within guidelines and i removed it placed it somewhere else and i also removed another image would agree with someone doing that to your homepage or would you be outraged however wolftengu you seem to be playing unfair cop here by notifiying over as if a discussion wrong what is your point do you own a dx or if not what is your involvement to disallow a x or any other x image and even any other image of a dx in a smaller form,0 +as a rollbacker that is particularly problematic you should be aware that editors who edit war may lose the privilege regardless of the means used to edit war,0 +what about non american schools mosques synagogues etc etc wikipedia is so america centric,0 +thanks for fixing this,0 +no not really we may ask that the mention of fat being the fire source of the cremation of millions be reconsidered though along with a few other items the fat cremation wiki fact is citable w hdot emory u no less lipstadt but doubtful if the same science was applied to the holocaust as say the tinfoilers or flat earthers the deniers would be overjoyed be careful as to who gets the nutty fringe tinfoil label in the end you get the permits and we ll bring the shovels,0 +celebrities talk about your fave celebs and even your crushes,0 +tm how astute remember civility is the key that verbal licking you gave me really failed to break the skin maybe just maybe we can get along how about that,0 +sofia added i am from sofia bulgaria our city has also joined this initative so i included it,0 +would you mind focusing on content s rather then contributer s,0 +decline a bit too close for comfort that one try to avoid the company name altogether we get a bit edgy about accounts that appear to represent organisations,0 +weatherman and better writing a lot of the changes you ve made recently to the weatherman page are notably more awkward for no apparent reason i m not particularly concerned about the changes in some adjectives surrounding how some organizations and events are characterized but at the same time you rearranged sentences to read quite poorly plus you seem to get really carried away with wikilinking do readers really need a link to know what a bomb is,0 +non lead shouldn t the title of the page be supporting or minor instead of non lead,0 +i agree with leontes though i began attempting compromise last night considering no one else was backing me up on this in the interest of building consensus however i will note that political descriptors in the absence of reliable third party sources are inappropriate in this article i will also note again that some commenters here appear to be confusing the electoral vote website with the electoral vote author this wikipedia article is about the website not the author who has an article of his own,0 +dispatch review i added some comments here i think it is a wonderful dispatch very clear we ve needed something like this for a long time,0 +i vote for christ pantocrator though it could be nice with a wider crop,0 +your assistance please the record shows you deleted file hmcs fennel k jpg the entry you left in the deletion log said listed on wp pui more than days i strongly suspect that this was a free image crown copyright canada protects images for their first years ww ended years ago so if this was a crown copyright image it would be a free image i d like to request userification of the information templates and other information associated with this image to review for possible clarification of w hate ver problem got it listed at wp pui in the first place could you please userify it to,0 +listas manos family,0 +so despite your equivocation you are still wrong people do remove vile vicious hate speech whilst remaining on the right side of policy you made a very clear statement about wikipedia policy and i proved you were wrong and you denied my unblock request as a result of your misinformation i know expecting an apology from a wikipedia administrator is a waste of time but in future stay away from me okay i prefer to deal with admins who do know the rules,0 +speedy deletion of phi rho eta a tag has been placed on phi rho eta requesting that it be speedily deleted from wikipedia this has been done under section g of the criteria for speedy deletion because the article appears to be a blatant copyright infringement for legal reasons we cannot accept copyrighted text or images borrowed from other web sites or printed material and as a consequence your addition will most likely be deleted you may use external websites as a source of information but not as a source of sentences this part is crucial say it in your own words if the external website belongs to you and you want to allow wikipedia to use the text which means allowing other people to modify it then you must include on the external site the statement i name am the author of this article article name and i release its content under the terms of the gnu free documentation license version and later you might want to look at wikipedia s policies and guidelines for more details or ask a question here if you think that this notice was placed here in error you may contest the deletion by adding to the top of the article just below the existing speedy deletion or db tag coupled with adding a note on the article s talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would would render it more in conformance with wikipedia s policies and guidelines,0 +requested move canada national football team disambiguation there s i recently moved the american football team which used to carry the moniker canada national football team to canada national american football team and i consider this move request if successful to be vindication of that move b b,0 +i think clockback that your suggested reference to ainsworth s involvement in the img is too long and that something along the lines of brief flirtation would be better i think that the img reference needs to be short somewhere in the early career section posted after the article has been expanded a little otherwise the article might appear weighty i think the last point is important as it seemed to be a consensus reached by a number of wikipedia editors after much wrangling and gnashing of teeth but bedsides this brief dalliance with marxism in an overall consideration of his political career pales into insignificance compared to his being controversially thrust as a third choice candidate into the position of defence secretary at a time of crisis for the british army in terms of the number of casualties being sustained and a lack of resources this is simply not reflected at all in the ainsworth article i tried reflecting it as follows his appointment formed part of a chaotic cabinet reshuffle by the prime minister who considered at least three other candidates before appointing ainsworth but this was dismissed as speculative opinion by off riorob above even though from my point of view it is easily the most significant event in ainsworth s biography perhaps we can reach a consensus that if a better reference can be found which i suspect should not be difficult that it can be re included i want to stress that this is again not meant to be an ad hominem slight against ainsworth but merely drawing attention to the fact that his appointment was the equivalent of throwing someone in at the deep end and indeed he has had a very difficult time of it since his appointment actually it reflects worse on brown and the farcical reshuffle,0 +greek love i m looking for a way to extricate myself honorably from this mess i m leaving a note here because you closed this afd where i made a commitment to do as you instructed in the closing statement there are two editors who have long sought to delete or eviscerate the article one of whom has used a series of user names unacknowledged on his current user page but available so at first glance it may appear on the talk page there are more than two editors in the suppress camp i complain here about their coordination other editors including and i simply can t do it any longer i haven t changed my position on the validity of the article but i ve been accused on various talk pages and never the appropriate notice boards of edit warring ownership disruption and even pedophilia by implication all for trying to carry out what the community decided i m done i need to limit my time on wikipedia at present and wish for that time to be spent pleasantly and productively when i ve made a commitment though it grieves me not to keep it i m not asking you to do anything i m just explaining why i can t keep my word as given at the afd wow that is a mess certainly no hard feelings on my end it is clear you endeavored in good faith to improve the article i have found that knowing when to walk away is an essential skill not only here but in the real world sometimes your presence despite your best intentions is harmful rather than helpful and sometimes a dispute just isn t worth it anymore best of luck in your future endeavors here mailchimp i m not that bothered but i think that the mailchimp speedy deletion was a mistake it did cite that it was one of the more important email marketing programs so it was stating the importance something that was supposed to be the original problem the criteria specifies a credible claim of significance wordpress pages are not reliable sources however i would certainly not object to it being restored as a redirect as it was for several momnths before today talkback talk just a hunch call it my intuition but i m guessing that his username is a direct challenge to patrolling admin that you guys won t block him based on the username itself but his contribution speaks volume of his nonsense louder my other hunch being he s a returning editor than his username does just my cents cheers there are plenty of legitimate reasons to be a returning editor the username is not a blatant violation of the policy if you have any evidence of socking file at wp spi recreation of article shay carl i would like to request that the article shay carl be recreated see the deleted talk shay carl for my reasons note talk shay carl was delete because of a not notibility well there was,0 +where s the defendants figure coming from nuremberg and vietnam an american tragedy by telford taylor u s chief counsel at nuremberg mentions,0 +oh hey a response that s cool i personally feel that having the fortitude to call out ttn on his obvious flaws should warrant a few dozen barnstars but i see where you re coming from if you insist on keeping the block i would like to formally request the reason for this account s blocking to be changed to reflect the real reason instead of being noted as a common vandal maybe a reason along the lines of being a pain in the ass like that one guy on nakon s talk page stated on that subject maybe he should be block too after all he did use a cuss word and that s technically worse than anything i ve ever said,0 +no you have the right to express an opinion that you consider it to be hasbara or crap or both you do not have the right to identify it as hasbara crap or both,0 +ga review this review is trans cluded from talk battle of rowton heath ga the edit link for this section can be used to add comments to the review reviewer yes i ll take a look over the next few days and then start to make some comments yes,0 +for evidence please make sure you make yourself familiar with notes for the suspect before editing the evidence page,0 +afd please see wikipedia articles for deletion revelations guidelines for notability are outlined generally at wp n and specifically for songs at wp nsong thank you,0 +organizations class start importance low maindykdate needs infobox yes needs image yes attention wikiproject,0 +actions in la la land have real world consequences,0 +dean wormer works for the racists in jena la i will continue to update the posting for jena la to reflect the fact that thier famous person of note was a segregationist democrat which is in fact a historically accurate description,0 +woopsies oh thank you so much i didn t know i promise that i ll never ever do it again ok,0 +for everyone s info particularly admins i believe the latest sock puppet for igor is just a heads up,0 +why are you giving me warnings before someone marks this as vandalism i want you to at least read this why is this vandalism i don t understand i am new to wikipedia and i am trying to figure it out please do not mark this as vandalism i m am not doing anything wrong i just need answers from somebody please help,0 +gift cards for downloads re as of december it is not possible to use gift cards to purchase mp s even though the gift card faq claims yes amazon com gift cards can be used to buy amazon mp and unbox downloads strictly speaking this is a false statement as were able to pay for orders with a gift card at that time one person already removed that line but it was reverted is there a good way to go about providing verification,0 +i m thinking about deleting war on terror operation enduring freedom horn of africa and operation enduring freedom phillipines because they are redundant i d like for people vote on it,0 +no it s not useful information about the topic and it s a good idea only screenshot is allowed per game at most if they really relay something,0 +my experiences came up on the talk page but once i understood wikipedia i didn t post anything on the article related to my personal experiences that was like the nd day almost two months ago all of my references are verifiable there s nothing in the article about my law suit or my being put in jail for engaging in pro se litigation i didn t put my experiences in the judge edward nottingham article either although he was my judge i went out of my way to search for references expressing all the various sides of the issue for instance i wrote to the aba and asked for their input and in fact asked them to work on the article i also posted about issues involved with mediation and settlement with pro ses citing references from a lawyers point of view those references were deleted by someone i can t remember who and don t know why at this point the only reference that i posted that is soft at all is a blog quoting a trans cript quoting a former federal judge and i know for sure that is a valid trans cript the guy who runs the blog is a rd year law student and has a business selling data services exclusively to lawyers even the stuff that was deleted about pro se frustration i had references for i read in the wikipedia discussion of sources that blogs can be used in some contexts i don t believe that i did any original research all i did is search the internet for references for the article i really didn t know about unbundled attorney services or the amount of pro se litigation before i started working on this article i had already been thinking about forms based filing but i started thinking about that anyway because of my experiences with ecf which date back to also when i was younger i worked as a systems analyst i did get the info on the laws and liberties of ma years ago but wikipedia already had an article on that and it probably would have come up anyway same as the u n covenantcan t really hide that i didn t add a and b together to prove a point at least not consciously like today i was reviewing appellate procedures and it seemed that the th circuit had a more pro se friendly tone which i think is because of judge learned hand who was in the fifth circuit and the only reason i know about that is that one time i went in every federal circuit and searched on the words pro se in the s because i was trying to see if there was a history of putting pro ses in jail for being pro se no there was not what i found in the s was that some circuits denied all the pro se appeals without even saying why but judge learned hand seemed pro se friendly i believe that your posting things about pro se litigants getting an unfair advantage is soap boxing i do understand your wanting to win thru competition though and about law as a business i ve been an entrepreneur i didn t know about the federal judicial center until i started working on this article that book on appellate procedure i found looking for references for this article the manual on complex litigation i found looking for references for this article arguing with you helps me to clarify the issues for myself one thing i started thinking about a lot in the past few weeks is slavery and how that affected the history of pro se litigation i ordered the book slave nation at the library but i haven t got it yet but now when i look at pro se law in the different states i think free state slave state border state also there were issues related to indians in some of the western states the labor union movement had a lot to do with it too i think so did the history of workmen s comp which is of course related to unions,0 +try passing illegaly the border from usa to mexico you ll end in prison too but the re no communists there,0 +unsourced personal commentary a new account has re added this it looks like unsourced personal commentary,0 +your comment is indented as if it is a response to mine but i am not the one who removed the discussion,0 +when i looked at the cato edit it was simply a removal of the reference the addition of another donor and a change in the language without an edit summary to explain the changes were unjustified your clarification certainly helps thanks also for adding the reference on summers frankly i did not look at the sources removed or added my main concern was the unexplained edits summaries are important and then i saw that the messages about these same concerns from a while back so my message is more of a reminder most importantly you are incorrect if you think it is not against the rules to add unsourced material one of the core content policies is wp v and wp rs allows us to carry out that policy happy editing,0 +we all know that just about everyone here watches the updates theres a reason they aren t listed complaints,0 +i ve been though the article it s simply untrue that only men are consistently referred to a jew s but womabn and children are not many passages refer generally to jew s clearly meaning men woman and children only one sentence corresponds to your criticism the screening of the population however resulted in jew s jew ish women and jew ish children of which jew s and jew ish women were shot in co operation with the security service this particular sentence should be rewritten i ll just do it but the sentence itself is grammatically confusing so whoever wrote it may wish to check that i understood it correctly,0 +hello long time no shart,0 +other bush articles not referenced in george w bush none of the following articles is mentioned in the george w bush and perhaps should be bush s brain how karl rove made george w bush presidential domestic policy of the george w bush administration early life of george w bush economic policy of the george w bush administration electoral history of george w bush fictionalized portrayals of george w bush foreign policy of the george w bush administration george w bush and the iraq war george w bush as governor of texas george w bush cabinet george w bush presidential campaign george w bush presidential campaign george w bush presidential library george w bush pretzel incident george w bush substance abuse controversy george w bush supreme court candidates george w bush s first term as president of the united states george w bush s second term as president of the united states list of books and films about george w bush list of george w bush legislation and programs list of nicknames used by george w bush list of people pardoned by george w bush mahmoud ahmadinejad s letter to george w bush movement to impeach george w bush presidency of george w bush professional life of george w bush public perception of george w bush religious faith of george w bush the lies of george w bush mastering the politics of deception,0 +a third term is significant simply because it is rare the electorate and party often on behalf of the former are disillusioned with the party leader by this time thus they kick him her out read about margaret thatcher,0 +some baklava for you a gift in the hopes that you reconsider my indefinete block a traditional food from the middle east made best in afghanistan metalman,0 +referring to her as catherine i was told in no uncertain terms that i could not refer to anyone living or dead by their st names on wp if a female had a title she had to be referred to as that throughout her article ie lady amy or lady dudley for amy robsart even though lady amy was wrong before she was married as she was the daughter of a knight had no title wrong after northumberland was attainted all his children lost their styles as offspring of an earl a duke she did not become lady dudley until elizabeth i knighted robert dudley near the end of amy s life nor was she then lady amy dudley as legally she was no longer the wife of the son of an earl duke i thought it was simpler to refer to her as just amy throughout rather than explain the changes that occurred with her name styles but was told it was against wp rules though i wasn t pointed to a link for it noblewomen are usually called by their st names round here as far as i can see even when they have surnames are not of something mary boleyn is called mary not lady carey or lady stafford catherine neville is called catherine not the duchess of norfolk etc they re not royals as for males i was told they had to be referred to by their title ie leicester or last name ie dudley i was banging head on keyboard going but no one just says the king all the time or refers to them as plantagenet or keeps changing their titles ie henry of bolingbroke going from earl of derby to duke of hereford to duke of lancaster to king of england so how does kate get to be consistently referred to as catherine throughout the article without her title appended i ve only been here a few months i would appreciate it if someone could actually explain this to me as my main interest is british history i am quite confused,0 +mevins says i will be changing your elegant profile shot of bruce to a better picture as soon as i upload it i appreciate ordinary jay bruce fans but i am jay s biggest fan thanks for your attention i think jay would agree that a picture on wikipedia has little to do with furthering his career but nice try,0 +they are all cunt s it s not worth editing articles here concerning any serious issue all sides consist of either people employed to edit or people with very strong opinions that will never ever change they advocate their stance as something that is interesting to them instead of using the encyclopedia as a book of knowledge and contributing what they are sure to know soon with the centralization of the net into larger and larger sites independent information in general will be extinguished wikipedia a project that started by nerds and professionals within their set fields will become the altar of knowledge where depth and true insight is sacrificed for becoming the sound magnifier of yellow press and popular science the new tool that is intended to auto trans late articles from one wikipedia to an other will extinguish the few national wikipedias that through their niche provide those of multilingual capacity an ability to cross check facts through other perspectives with few small independent sites left with no or few free university pages left real knowledge will be the privilege of the few that know how to use academic search engines and have the money to pay for them,0 +i ve said once i say it again if you don like thugstep that s you bizness if you think that quite a range of refenreces to web pages stays it non notable you are welcome to tell it to admin for it to be deleted,0 +although it doesn t extend to the modern era you might want to look at ancient higher learning institutions to see how it relates to chinese higher learning institutions,0 +do not harass other editors with no basis you have posted a baseless warning threat on my user page do not post any more things on my page otherwise i will complain to the administrators or even jim wales if i have to,0 +the comma is not the correct title for the first series yes minister without the comma i believe it was only yes prime minister that ever had the comma unless there are objections i will be moving the page,0 +excellent and please don t damage your book on our account for sure it is an interesting question where was the camera that s a fair question to jump to the conclusion that it was impossible is ludicrous but that s typical for the moonbats the picture is useful for another reason as it shows a similar relative position of the lem and the antenna for this apollo flight as on that web page that argues about those objects in apollo in both cases the antenna is at a degree angle away from the lem and both the near photo and the distant photo on that website are consistent with each other despite the website s claims to the contrary the moonbats isolate on specific items as their evidence but the more one sees the broader picture the more their phony arguments get shown up,0 +content subsumed into maneesh page same entry different spelling and redirect,0 +ditto congrats and all the best to you,0 +is when that part of the video shows it it says lots of small villages have prostitution in karaoke joints and that this one had a single orangutan in it it doesn t say its common everywhere though,0 +i have seen your post now but i replaced the pop punk reference which was there again with rock a few days before,0 +please avoid using abusive edit summaries as per wikipedia civility and wikipedia no personal attacks thanks and happy editing please do not make personal attacks on other people as you did at minneapolis minnesota wikipedia has a policy against personal attacks in some cases users who engage in personal attacks may be block from editing by admins or banned by the arbitration committee comment on content not on other contributors or people please resolve disputes appropriately thank you,0 +dect isn t really a new technology it s a newer standard but tdm tdma fdma digital telephones have been used for a lot longer than the life of dect dect is itself a successor to ct japan s phs is very similar and of course gsm d amps and others have been extensively used across the world for a decade and a half to suggest there are special health issues with dect would most definitely be placing undue weight on the subject dect is considerably lower power than the analog systems it replaces both during trans missions and inherently because even when in use the td nature of the system means the system isn t trans mitting continuously as i believe i ve said before there is nothing wrong with there being a properly researched article about the health effects of low power radio technology and there being a link in the see also section of this article to it that article of course should look nothing like the section i yanked there is nothing about dect however that merits a special section on dect s dangers especially when new technology or otherwise there is no serious level of concern being expressed by anyone authoritative on this issue,0 +you are so retard ed,0 +users using sockpuppets in this discussion note that user nightscream is soliciting sockpuppets of toure neblett to join this discussion http en wikipedia org wiki user talk halaqah hi halaqah this isn t surprising considering nightscream s slimy debating tactics and ad hominem smears it looks like the reality is that there are only one or two actual people opposed to teh inclusion of the last name and the rest are their sockpuppets though i guess it demonstrates that nightscream is not one of toure s own sockpuppets fyi i am not using a user name in this simply to make it clear i am not a sockpuppet,0 +thanks stephan my interpretation is that mr nice guy removed the content before discussing it on the talk page if he was concerned about contents reliability i thought i read that editors are supposed to bring it up in discussion first and reach a consensus instead of deleting sourced material,0 +which i made up by fixing stem articles,0 +alex albrecht why have you removed my additions to the alex albrecht page they were totally relevant,0 +in a tank for bioelectrical impedance analysis etc i fail to see how either of the two pictures recently added improve the article in any way,0 +the images have been missing for a while as wikipedia was down for about hours i just hit rollback which among other things restored the patrick stewart which i then removed but didn t see you had made other valid edits i also linked harold wilson from prime minister to prime minister of the united kingdom the deletion was done at gmt by which time the servers were up you should register then you could bypass these invalid messages cheers talk,0 +amazing thank you very much,0 +may your behavior on the talkpage of honor harrington has been below par you do not know how to take defeat with grace and start behaving childishly let me warn you that your next childish edit will likely result in a mention at wp ani or a user review,0 +video game for pete sake if i see that false video game article one more time i ll throw a cat out of the window whoever you are stop it now it isn t funny or clever you are just making a moron out of yourself and i bet that was the same person who changed the test card date too,0 +palmisano playing for iowa state in the s is a free pass i think i m pretty sure they were division i then as far as a list of coaches go i m not sure that s an articleworthy list at that level of competition as opposed to it being folded into a general malone college athletics article but i wouldn t file an afd over it it s a compromise anyway seeing as you re digging into uncovering notability for those folks want a full week for it,0 +history kallikids was created by karen bach in march,0 +massacre i note that kent state massacre redirects to this page and that other similar massacres in history wherein government forces murdered civilians for protesting government policies are termed as such and such massacre there is no legitimate reason aside from sensitivity to extremist viewpoints in the united states to continue calling this article kent state shootings it should be changed to kent state massacre a cheap acknowledgement in the lead paragraph is insufficient i would appreciate discussion on this move and i will initiate the move myself soon enough,0 +july please stop if you continue to vandalize wikipedia you will be block from editing,0 +notice of objection to proposed deletion in accordance with the rules on this i hereby notify you of our my objection to your proposed deletion of the subject article office of the court administrator v floro jr,0 +barnes aus,0 +may utc timysmidge,0 +two things it makes no difference to the validity of edits if an editor is anon and going around reverting a persons edits en masse because you didn t like one of them will yield time consuming problems for you,0 +hi nice of everyone to listen well ive been here for about years have had afew problems but two have been the worst had a mamogram years ago dec said to call my doctor emediatly needed other views an presedgures was incounculsive we all no that not possable fir that cause its just like an xray havent been able to go have no way to get there plus i have high blood pressure thets been running about the last time was around over i no thats very high the hospital xray techs seceritary said if i didnt get to the doc to get referral as soon as possible that by the time i did it would be to late to do any thing for me i no its to late all i want is to no how long i have left have daughters one in opelousas la one in hawiyei one in walker la i would like to see be fore i die have a partner i want too spend as much of what i have left with i love my kids an partnermore than life its self im looking for some help to get to a doctor i dont have the money to do this have no income to speak of zero my partner and i are seperated right now he is helping his father that has cancer also he has a lawsute from getting hurt he just bought a truck from his brouther an has had to do alot of fixing on it also with the help of his dad let his neffews daughter drive it an hour ago cause she just hot her license an wrecked it comepletly now we dont have a vihicile to help us everyone says god dont give u anything you cant handle i understand that but i need some help does any one out there that may be could help me with anything at all just thought id try to ask never have asked before to much pride but im running out of time please can so one help me my email is apriljohnson gmail com or this site please need so help if anyone can god bles everyone in there time of need i hope someone may be able to help me thank you for lissen to me my age also is sept,0 +here are the diffs of his edits from that report talk,0 +aug utc,0 +just shut up and stay shut don t edit anymore,0 +oh get a life you prick,0 +what else specifically do you want to know,0 +rajputs not rajasthanis right p prof hancock s studies mention that the romani people are most closely related to the punjabis and rajputs i m pretty sure not rajasthanis he calls proto romani rajputic the distinction is important if they are partly descended from rajputs who were never really confined to any one part of india that would explain the linguistic variation within the indic words in romani for example why the use of o instead of aa at the end of masculine nouns adjectives in romani this is certainly a characteristic of gujarati and sindhi but is it a characteristic of rajasthani languages anyway if i m wrong in making the last change i made as of now i ll be happy to revert it myself oh of course,0 +if you would care to discuss specifically what is bias incorrectly cited or irrelevant to this page i will hear what you have to say until then seeing as the search term ndaa brings readers to this page i will continue to include present information reguarding this budget bill this is the last time i will repeat this abusing your power will yield you no ground,0 +words of encouragement to user damemk in the cases of dispute with the users engaged in bulgarian nationalistic propaganda damemk you have come to the same conclusions about bulgarian th century nationalistic propaganda on english wikipedia user laveol is one of the most prominent editors on wikipedia contributing false information in the articles about republic of macedonia macedonian nation history language culture sports and what else not he is spending a lot of time working on his cause pushing bulgarian nature in the articles of the domain of republic of macedonia how far has he gone in pushing this propaganda you can see at wikipedia wikiproject romacedonia where he has listed himself as a member so just my few words of concern for the macedonian articles in english wikipedia and the great damage done by user laveol and other users with the bulgarian and anti macedonian propaganda hopefully with the internet access becoming more affordable to the people in republic of macedonia the things will go in right direction removing the bulgarian propaganda from macedonian articles cleaning them of false fabricated information and giving the facts to the world and the views of the macedonian science and sources i don t have much time now but hopefully will be able to find some more in the coming period i am open to any collaboration effort for the above goals i am expecting that this user laveol will continue with the bulgarian nationalistic propaganda and polluting the domains in the domain of republic of macedonia simply because he is able to and can find a ways to continue to work on his agenda ours is to try to remove these false claims and contribute the facts about the macedonia macedonian nation history lanugage culture sports damemk i hope you write something here at least to show that user talk damemk and user talk ejanev is not the same user some insight into my user name ejanev the only user i am using to contribute to wikipedia is ejanev it is composed of the first letter of my name emil and my last name janev user damemk is a separate user probably that user name is comming from dame a macedonian first name and mk or the code of republic of macedonia it does happen that i am from canada i was born in republic of macedonia and have lived there until i moved to usa first and canada before more than years and yes having all the false information from the bulgarian nationalistic propaganda originating from the th century and having it into st century to be used to negate the macedonian nation and all it s attributes by users as laveol is the reason of some of my editing actions in wikipedia i am not the only user editor from republic of macedonia or with macedonian origin that has the same views for this bulgarian nationalistic propaganda that already is infiltrated in the macedonian articles you can watch the contributions of special contributions laveol and see that more than of his actions are engagement in negating the macedonian nation and its attributes,0 +at bookfinder com i found probabilistic reasoning in intelligent systems networks of plausible inference softcover isbn publisher morgan kaufmann pub bookfinder,0 +just to clarify what i m referring to in particular it is not neutral to state that aerith is incorrect talk,0 +thank you for experimenting with wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you may want to do take a look at the welcome page to learn more about contributing to our encyclopedia talk contrb,0 +the article sebastien larroud has been speedily deleted from wikipedia this was done because the article seemed to be about a person group of people band club company or web content but it did not indicate how or why the subject is notable that is why an article about that subject should be included in wikipedia under the criteria for speedy deletion articles that do not assert notability may be deleted at any time if you can indicate why the subject is really notable you are free to re create the article making sure to cite any verifiable sources please see the guidelines for what is generally accepted as notable and for specific types of articles you may want to check out our criteria for biographies for web sites for bands or for companies feel free to leave a note on my talk page if you have any questions about this talk to me,0 +gba i ve found out a game boy advance version of this was released there s no mention of it in the article as we know the current acclaim doesn t have rights to this series information may be scarce,0 +proposed move asheville civic center with the talk page hosting this discussion u s cellular center asheville north carolina u s cellular center u s cellular center cedar rapids iowa both facilities now have the same name talk contributions,0 +no need to follow this policy taivo instead of just following the far more important policy of wp npov remain neutral there is an international dispute over this country s name and fyrom is used by many organizations worldwide why should wikipedia abandon it s usage since it is extensively used to describe the state of skopje especially in articles directly related to countries that use the fyrom name to refer to it,0 +the two big things would be citation to verify that it was serialized in the weekly one reliable sites in english just say shonen jump but since you have the one that starts serialization that can be used to note when it started serialization if they mention there that its a continuation from the one shot stories because i can t find any rs japanese or english online that confirms that the other is horii s reason for adding mini medals info on the anime about what it was based on if its mentioned is all that is really needed for the main article but could really help the anime article itself jinnai,0 +redirect talk colt lightning revolver,0 +no nothing like that i just wanted to clean out the clutter there were a lot of bot comments a welcome message for my old username and so on i could have archived it i suppose but i didn t think there was anything on there that was particularly worth saving for the ages,0 +why your article got jumped on hi i m sorry to jump on your contribution the moment you put it in but the trouble is it is simply not the sort of thing wikipedia is for these links are all in one or other of the template notices above but to put them all in one place the reasons your article is being nominated for deletion are wikipedia is not a dictionary articles on neologisms need strong evidence that the term is widely used wikipedia is not for things made up one day more advice on contribtuing in the links from the welcome paragraph above the list of bad article ideas is worth looking at too regards,0 +therefore i was reverting vandalism which is an exception to the three edit rule as mentioned on the edit warring page,0 +user attacking me user baki keeps reverting edits without consensus or giving reason he has also performed ethnic mudslinging in my direction please help,0 +not thracian pretty simple years away,0 +im flattered i truly am i ve been here a couple of weeks and you consider me to be an established user please don t talk about me behind my back like little school children,0 +chicadee i think the article name should be moved to chickadee,0 +p s are you a b tard,0 +oh i m sorry did i hurt your little feelings let s all shed a couple tears together lol what a joke i bet you feel pretty important pathetic little wikipedia volunteer have fun living in your mother s basement drawing comic books lowlife,0 +new image problems you again uploaded several images with dubious copyright claims you said they were from hindu newspaper and licensed under the gfdl what made you think the hindu publishes images under the gfdl if you simply invented that license in order to have a way to upload the images here then please say so now so i can quickly delete them if not i expect you will provide proof within the next days showing where and how that newspaper placed the images under that license if you do neither you will be block,0 +bunchofgrapes request you please cease revert warring bunchofgrapes i respectfully ask you to please stop your instant reverts on my edits if you have a problem with any of my edits then do so from knowledge but explaining what is wrong about the sourced materials and edits rather than making blind statements designed to allow you to revert for no reason and again please cite your sources you seem to not be able to cite anything that would back up your instant reverts and accusatory tone telling others that they are reverting when you have made several instant reverts with no explaination on the edit or added source please cease this and cite your sources edit the materials according to jimbo wales npov and make sure your sources are verifiable before your reverts thanks,0 +and what s the problem with neo,0 +wow big man here can t take a little criticism and is upset about his failure to become an admin so what does he do looks for the closest person to run to some admin on wikipedia well played dietlimecola hey if i m block it ll be less times you ve been and for far better reasons oh my god some girl was looking at wikipedia for her paper and i didn t see the teacher so i couldn t tattle so i took matters in to my own hands i also couldn t help notice how sad it is that you so quickly noticed my updates do you just sit their at your computer waiting for an update please tell me you didn t watchlist this page you did didn t you all in all everything can be summed up with a simple saying,0 +glen is cool glen is such a cool bloke and loves being nice guy,0 +parodies not intentionally surely,0 +pandur the name derives from pandur a sumerian term for long necked lutes source of our knowledge about this instrument is since the ancient greek mantineia marble th century bc now exhibited at national archaeological museum of athens depicting the mythical contest between apollo and marsyas where greek pandouris is being played by a muse seated on a rock national archaeological museum of athens e book by latsis foundation p lutes have been present in ancient greece pandura the first appearance in greece they were also present in mesopotamia since the akkadian era or the third millennium bce,0 +i accept your comment in the spirit in which it is offered terminology matters and it can be hard to find the correct word it was another editor who sought to distinguish civilised behaviour from that of indians my point was that even if one accepts such a distinction non indians have committed absurdly large atrocities in addition i could have pointed to the mystic massacre as a completely on point example of a butchery that shocked our native population none the less both tribal mongols and tribal american indians had or have civilizations by any reasonable definition,0 +no i dont agree my info will be saying up since you are in such a hurry to edit the page why dont you fix the info that have you have sourced with a broken link,0 +i thought personal attacks were welcome as long as you revert them yourself and i thought restoring mentioning them was grounds for an indef block could our junior miss admin have missinformed me i have arrived just in time,0 +replacement please do not edit below this note the whole supra section will disappear again once i am able to post on the article talk page this includes you shell had you not block me i would have been able to place my answers there this will disappear tomorrow so you can put with it until then because shell falsely block me i cannot save my replies on a certain article talk page hence i will save the entire page minus the archived sections here pov concerns im surprised this article isn t being called anti semetic because it s has a few traces of islamic perspectives in it you know as opposed to being a piece of zionist propaganda being passed off as fair and balanced this entire article is full of baseless jew ish propaganda it is well documented the banu qurayza were executed for treason that is what merited them the death penalty that they commited treason the quarash and other tribes the muslims fought against were outright enemies who were persecuting them from the start but the qurayza signed a peace treaty then broke it by aiding the enemy this article contains soo much jew ish propaganda that you d think they were executed for no reason which no doubt is their aim here is a great example look at this citation according to stillman muhammad chose sa d ibn mua dh so as not to pronounce the judgment himself after the precedents he had set with the banu qaynuqa and the banu nadir sa d took the hint and condemned the adult males to death and the hapless women and children to slavery furthermore stillman infers from abu lubaba s gesture that muhammad had decided the fate of the qurayza even before their surrender this author is norman a stillman a zionist jew who is very biased why is he being used as a quote in an islamic article and further more why is his baseless conjecture allowed to be used as if it s a fact there are articles for criticisms of islam where the jew s and others can write w hate ver they want but they should have no hand in editing islamic articles because i looked up the jew ish articles and i noticed they dont allow dissent there you cant put a muslim perspective on evil acts commited by jew s without it disappearing instantly so the same standard must be applied to islamic articles islamic articles must be written from the islamic point of view and the jew s can write their responses in appropriate criticisms of islam articles if not i will personally edit the jew ish articles and fill them with my conjectures about their history and i will find a non jewish admin to arbitrate over the islamic articles good day please read this talk page specifically all of the places where treason or traitor is mentioned and if you still believe that we need to mention treason provide some reliable sources and we can discuss it it is easy for our article to be neutral and mention all povs but it does require that people like yourself participate we work from academic sources not personal conjecture changes by devotus and issues with them dear devotus i have still issues with your changes bat yeor and ramadan while i appreciate that you don t try you shift the balance removing a book from each side i do not agree with your removal bat yeor is an academic scholar and though her books are controversial she is not beyond the pale currently she doesn t serve as a reference in the article but if she did the controversy would be noted as for ramadan i have issues with him as well but if we remove him from the literature section we would have to remove him from the article too in which he serves as a reference this is due to the insistence of user bless sins he will certainly not like such a removal we cannot remove him from the literature section while retaining him in the article while your first version was needlessly verbose it is to be noted that the new one endorses that view by paret watt the article now says that the bq were not killed for religious reasons that is not a fact since there is a good case that the whole conflict was caused by religious differences also we do not want to repeat things that have already been said in the coverage of the siege and demise e g the claim about attacking m in the rear also please abide by the one resolved conflict we fought hard and long about words like massacre and execution and neither should appear unless unavoidable the common practice thing is unacceptable as it is s,0 +ok steve to be honest i really like the present form so i don t have any issue with the present one,0 +hello january you keep vandalizing articles while adding misleading edit summaries please stop doing this it doesn t help build an encyclopedia and wastes other people s time since you repeatedly and selectively remove messages from your talk page i don t know how many warnings you have already received i will thus consider this to be your third warning and report you next time you vandalize an article thank you for understanding talk,0 +i think it depends on the circumstances if someone won a gold medal at a competition the gibraltar anthem would be appropriate rather than god save the queen,0 +he s at it again he seems insistent on adding pointless rambling on how the talk page isn t a forum just so he can make a cut at me http en wikipedia org w index php title talk axm rifle diff oldid he keeps reverting my removal of it,0 +so i guess your explanation of wp csd t is still zero once again you have failed to explain why a page weas deleted under wp csd t and then threatened the inquirer with a block poor form extremely poor form,0 +so that the proton itself reaches fusion distance,0 +beauty pageants just because you have no interest in beauty pageants or their contestants doesn t mean that they are not notable and please don t go trying to delete stuff when you are ignorant about the topic you are dealing with i happen to think there are tons of articles on here that do not meet wikipedi ass tandards and that do not have individual merit particularly those about comics etc but i am wise enough to know that i do not truly understand their significance and so i leave it alone a much more prudent avenue would have been to bring your issues to the appropriate wikiproject wikiproject beauty pageants and to address yoru concerns there in the first instance one example the continual use of the term model to describe them as has been used by yourself and one other editor is both incorrect and somewhat demeaning,0 +on mohammed al bayati s qualifications with regards to the edits over the past day i think that while mohammed al bayati s qualifications are tangentially relevant the purpose of the text as they are placed right now is to prove that mohammed al bayati is not qualified to review the autopsy report this i think violates npov if the qualifications are to be included they should come under the criticism and controversy section quoted by whoever it is that accused mohammed al bayati of not being qualified to review the autopsy report is cited if nobody made the accusations then this is original synthesis and should again be removed,0 +no reason to split there is absolutely no reason why alamo bowl broadcasters should be split from alamo bowl that list is a stub that is only kb long the main article is kb long much of which is tables and lists well within the limits of wp size a single article is only kb long which is permitted so there is no reason why the article should be split talk,0 +please sign your comments thanks,0 +alyssa flash at the time of writing this sarita s tna impact debut is coming up and she ll be wrestling one alyssa flash note i might be spelling alyssa wrong i see her nowhere on the list,0 +roma people in hungary the appalling social and economic situation of the roma who account for between and percent of hungary s million people that means,0 +in addition i am asking that you please stop accusing me of things i havent done i do not what what sock puppeting is and i think your taking this matter personally and abusing your power,0 +after adding the rational i have to remove the tag,0 +wow i guess your just one of those guys then god forbid one love then,0 +it has been up before but here it is again phil plait claimed in a radio program with joe rogan that all shuttle astronauts who has ever gone into space has been through the van allen belts at min http w youtube com watch v tvic qdsnic if thats not misleading propaganda i dunno what is his website should be removed as a source,0 +lamia joreige hi lea first off i d like to tell you that your contributions are invaluable you are presenting often overlooked subjects kudos for that i see you have started the aforementioned article i didn t have it on my watchlist yet so i didn t know there was a mistake you must take notice of some rules on wp so check out wp notability so you know how to better protect the materials you add against meta deletionists cheers,0 +i didn t receive any massage,0 +i take offense i take great offense that some pompous sanctimonious twit thinks that no one should be allowed to express appreciation for women like the gibson girl as the fine featured and achingly beautiful creatures that they are i don t know what kind of totalitarian femi nazi dystopian agenda you are trying to foist on people but don t do it here this encyclopedia is based on free speech and a free exchange of information not bogus political correctness and schoolmarmish thought policing i ll take a gibson girl over you anyday,0 +padua user tag someone should design a padua college user tag much like the following one for the maroons in state of origin july utc,0 +ion g nemes talk june,0 +ok dennis brown thanks for telling me i was taking this a bit way too serious ill be careful for this time stupid bots,0 +that way i might even know which article you are talking about,0 +the are problems with the sfc t record there are no credible sci challenges to it this new section is absurdly us centered it cannot possibly stand as it it this is the global record we re talking about you need some credible scientific papers not pictures of stations as far as i know the sfcstations stuff has merely documented problems with some station sitings and maintenance etc there is not even the beginning of an attempt at quantifying what influence plus or minus this might have on the record if you re interested there are papers about the effects of switching from north wall screens to stevenson screens thatched huts in africa etc etc,0 +could you please comment on talk thought identification re john norseen and lockheed martin i m beside myself trying to update information that i believe to be very relevent it looks to me like several users who hang out at ani fringe are working together to remove well sourced valid on topic material which shows the state of military research into thought identification outside comments would be greatly appreciated thanks,0 +mediation hello i am atyndall and i have volunteered to take on your mediation case during this discussion i will remain neutral with both sides of this argument and will endeavor to solve your dispute after having a look at the discussion above this is what i have found quizzicalbee has been adding the sentence according to chesler the the u s embassy repeatedly refused to help her leave the country as they no longer recognized her as a u s citizen hurmata has been reverting this back to she reports that the u s embassy repeatedly refused to help her leave the country hurmata objects to quizzicalbee s sentence as he she thinks that the source is incorrect as the guards would have allowed chesler into the embassy and first hand accounts from chesler herself does not qualify as a reliable source qb objects saying that maybe in the s us citizenship could have been revoked by the us afgan government at that time and perhaps in the past the guards may have denied entry and that her claim should have been presumed true until proven false hurmata countered that the citation threat qb was referring to is not the one that was cited qb states that there is no evidence disproving her claims so they are valid could the involved users please place below to verify that this statement is correct or suggest why it is not correct thankyou talk,0 +well arthur i have printed the paper and the condition is in fact what ultra power says it is not your correction it seems that the paper is not incorrect but rather correct and pointless you have already identified the worst problem the third condition requires incontinuity of f at all integer values however this problem disappears if we consider only the special case a e so let s do that we want a function f satisfying f e and f n exp f n defined as widely as possible we observe that n and n present no problems f and f to extend f to all positive real numbers it is clearly sufficient to define f on an interval of length such as and we want f to be continuously differentiable the paper only requires f to be continuously differentiable on or equivalently on this is obviously whacky but we needn t worry about this because a e next for no obvious or explained reason we require that f is monotone on the interval from the functional equation f x ln f x we get f x f x f x hence f f f f so f must be constant on not too surprisingly the function we get in this way is patched together from smaller pieces in a relatively unnatural way f x exp x exp x x thus what i learned from the paper is that the correct solution to the problem probably has a minimum of its derivative between and,0 +the rangers fc this should be the name of the newco rangers wikipedia page now as they are called the rangers fc everywhere on the sfl sfa spl bbc etc websites and in league tables and on tv they must have registered to use the rangers fc to differentiate between themselves and rangers fc who still have spl membership,0 +wikipedia categories for discussion log april wikipedia books following the horribly chaos of april i ve resubmitted things for discussion talk contribs physics books,0 +flexpay tax law just a comment here i d be interested in seeing an expansion of this artcile regarding to the tax surrounding flexpay accounts,0 +no problem at all talk,0 +if we do win and get these evil people out of the government and their private forces as well then perhaps there won t be any nuclear blasts across the us and europe btw if mongo is really with hs why is he on wikipedia,0 +i ve just seen that,0 +najib effendi al yasin i suggest not to use paragraph indentation in the article najib effendi al yasin which have recently created to reach a more normal looking page happy editting,0 +lol you know what i meant whichever president came before hafez i just new he was president before assad has considerable foreground of support in which his supports would have freaked out because of the coup they would have claimed instability would arise as assad s supporters are trying to use in their defense what i am trying to say is that although bashar assad had good economic and international policies for syria you should not fear a non baathist potentially being elected syria s economic and international policies won t change iran would still be a major factor in syrian life considering the buisness deals stakes and cultural exchanges the only this that would change are social freedoms and for the better also every country had a revolution and they are still alive today the muslim brotherhood in syria is weak even weaker than the islamist prescence in libya the rebels in libya had support as we see now and yet could hardly take control without nato what chance does the syrian muslim brotherhood have none if anything nonviolent protests weaken the resolve of the muslim brotherhood making them less of an influence in the everyday life of syrians as you know i am pro syria and armenia just not pro assad unlike armenia where people like sargsyan and kopcharyan were democratically elected assad was not no one ran against him because they were not allowed,0 +cfr is a perfectly accurate source the council on foreign relations cfr org is a recognized legitimate think tank that studies international terrorisim for the united staes govt to claim they are not credible is idiot ic they are as legitimate as any online newspaper or other source they have studied northern ireland and compliled a list of uda uvf killed by the ira inla and vice versa these facts are good and will be included in the article,0 +lead what s there now is not a summary summaries are supposed to be substantially shorter than the text they summarize which the case at salvatore giunta is not it simply copies whole sentances from the body text as an editor we have to assess the article as it currently stands and not any hypothetical future stance if the article grows then the lead can be adjusted accordingly in any case the lead section i favored does indeed summarize the most important part the moh in any case did you read wp lead the lead of a biography is not necessarily supposed to summarize the life story of the subject but assert thier claim to notability the two sentances i favored more than do that without being overly repetitive wordsdeeds,0 +unblock i ll make a renewed effort not to give personal attacks but of course i do have some questions about this unwarranted blockage as you might well imagine why is it that ip editors tend to get the raw ends of the deal that you admins tend to lean towards the side of someone who s editing with an account over someone who s editing without one especially in the area of what you label as personal attacks or harassment when given by the ip editor but not so much when the named editor does the same thing for exampleand this is yep maybe you guessed it question why is it supposedly okay according to you for someone with a name like say escape orbit to dish out a personal attack but not for me to give him one back because i m just a lowly ip editor specifically why is it supposedly okay for him to give me a personal attack by putting false stuff on my keyboard by making the ludicrous claim that my reason for wanting the old style of ebay logo to go next to the current one ebay in the lead is because i wanted it in there even though that is a total lie but it s supposedly not okay for me to call that kind of slander stupid here s another one why is it supposedly okay for him and smiley girl there to falsely accuse my edits of being vandalism just because they differed from what these guys preferred but then when i say their reversions are vandalism i get in trouble for it as if it were a personal attack just because i m an ip only editor ready for one more then why is it fine for any of you named editors to give one of us ip editors a warning template but when i as an iper do the same thing to a named editor like i did to partially smiley girl i get dinged with oh you can t do that cause that s a personal attack or oh that s bad because that s harassment oh yeah here s one more remember the rule about edit warring just in general meaning that it doesn t even have to be breaking rr that says that but i was right so i was not edit warring is no defense well then doesn t that apply to meeting some so called consensus too since some things aren t cases of concrete correctness but are just based more on whether they match what that so called consensus wanted the thing to say well then why is it that just because your named friend smiley there does some edit warring against me to put the thing back to what your exclusive partial consensus wants it to say and since my editing had already been established as not vandalism even though it disagrees you ignore that above mentioned edit warring rule and give her him a pass anyway but when i an ip only editor who s against your exclusive consensus do the same thing it s edit warring even though it was the same thing as what smiley s doing remember the being right matching consensus is no defense rule,0 +if serbia does recognise abkhazia and south ossetia then i wouldn t be at all surprised if georgia recognises kosovo in retaliation,0 +the most subtle questions they possibly could,0 +trying to measure the number of cafes this is one of those places where i am so frustrated by wikipedia s ban on original research the article has the absurdly low at least six cafes on the ave or its alleys i don t know where that number comes from nor what they consider a cafe but it seems to me that well within any reasonable definition the scene includes solstice cafe zoe the original allegro on an alley parallel to the ave arguably its second location in the college inn also counts the ugly mug half block off the cafe at the corner of nd that used to be the roma but i can t recall its new name sureshot the continental caffe apassionato wow bubble tea shinka tea company yunnie bubble tea pochi tea gingko tea house tully s starbucks wannabee one block off still life on the ave at the grand illusion technically the entrance is around the corner but it is clearly effectively on the ave this doesn t even count hangouts that are mainly bars or restaurants or takeout food joints nor does it count things like u bookstore and bulldog news both of which have busy espresso operations nor does it count ice cream stands and i m sure i m missing something this is all just offhand talk,0 +actually undue weight can also results in zero weight as it is the whole issue is insinuation and extrapolation of given events just because the article doesn t outright say that edwards is the father because there was no father listed it is quite clear that this is the intent now editors familiar with me consider me to be a fnc fanboy and appolgist regarding conservatives and republicans so my objection to this is clearly not a partisan point of view that said this is in violation of several wp policies,0 +i found it under chronological list of pc engine games i thought the release dates on that page were for japan since there is a seperate list of turbografx games the change you made is ok though since i see ign has it listed that way,0 +i agree fundamentally whether you take it as a pill or through a patch or a ring the key is that it s hormonal so that should be the main article at that point oral contraceptive should either redirect to hormononal contraception unles there is sufficient material to justify its existence,0 +that was so desterbing because of when i had to do a project in school i had to explain it wasnt bill gates from years ago,0 +the source was a local guide book how do we source that,0 +chill out inty s my mate,0 +a tale of a tub on the main page hey geogre check it out did you know that a tale of a tub will be featured on the main page on sunday talk nov utc,0 +added c class i would like to add b class but questions raised in talk page,0 +no problem thanks for letting me know talk,0 +batman i am batman you are spiderman i win,0 +geometry of love good day can you search some sources for article geometry of love probably this article contain interesting fact for dyk,0 +exactly i removed the section again before i noticed this posting chen,0 +please unblock and delete page i request that you unblock my talk page and immediately and permanently delete the contents of it you are free to permanently block me from contributing to wikipedia as i have no intention of doing so in any case if you would like a reason to block me or prove that i have violated the rules you need not preserve the talk page here is another deliberate intentionally provocative violation of the rules an old school personal insult you are a loathsome sanctimonious hypocritical ignorant twit if you were in state of uncontrolled combustion i would not take the trouble to extinguish the flames by urinating on them i hope that is satisfactory,0 +that is true with the first edit however the second one was an honest mistake,0 +that s been the problem facing this article as well i d love to see this get to featured article status but i keep running into the fact that there isn t really a whole lot of good verifiable info out there that is easily available nor is it easy to come by a picture that is usable though i suspect the one or two known images of him would fall under fair use there are a couple of websites out there that basically regurgitate sections from mcgregor s book there is a certain irony in the fact that a guy who labored in anonymous solitude most of his life on a project he loved dearly died destitute and is not making several other people rather wealthy,0 +you are a funney man,0 +furthermore any threats made to block individuals adding and or editing well researched information would directly negate the sole intention of wikipedia itself,0 +wikipedia is full of fools who takes money and makes people work for free wikipedia you might as well ban me you fool what s taking so long wiki is a stupid place it s jimbo s cult,0 +they seem to be reliable enough for this topic anyways it s not like many major news sources are going to be covering the things that these sites cover,0 +in response to your feedback yoa can not do it by yourself see wikipedia changing username,0 +that is your opinion and what is your proof that i am anti newsom whether you support him or not he did have a gay porn day and violated state law by issuing gay marriage licenses in contradiction to state law these are facts not slander or fiction,0 +that admission begs the question is it better to punish adolescent boys if they are going to engage in bullying behaviour here or extend them welcome talk,0 +french speakers and paris can anybody explain this french speakers concentrate heavily on cultural life in paris what does it mean sep utc,0 +why are you changing the somali people wiki seriously that page is biased to one clan i added a more diverse representation of somali people you stupid criminal,0 +davkal i agree with you but would suggest that you don t discuss it or gloat because you know he will likely come back and start harassing agagin apparently just a few hours after he left someone bit his head off on his talk page about a comment he left in an article,0 +thanks thanks for the tip buddy walkie talkie ky highway page i m currently cleaning up the page please do not edit it thanks let s go mets stats your first barnstar style border px solid gray background color fdffe rowspan valign middle rowspan style font size x large padding vertical align middle height em the tireless contributor barnstar style vertical align middle border top px solid gray i hereby award bigrtex the tireless contributor barnstar due to his outstanding amount of high quality edits hikaru,0 +trans istor the trans istor page does not have a principle of operation section because a the physicists know about it but don t want to share it b they just don t know how it works i was thinking about it and came up with a fairly decent concept of how it works i put it on wiki i think the guys got jealous and here i am discussing pretty much nothing ps and my language is pathetic you naughty naughty boy i ll eat you,0 +i like to see it in print since it s been listed for days now without an url,0 +the proposed deletion process because of the following concern wikipedia should not be used as a place for guides or a walk through all contributions are appreciated but this article may not satisfy wikipedia s criteria for inclusion and the deletion notice should explain why see also what wikipedia is not and wikipedia s deletion policy you may prevent the proposed deletion by removing the notice but please explain why you disagree with the proposed deletion in your edit summary or on its talk page please consider improving the article to address the issues raised because even though removing the deletion notice will prevent deletion through the proposed deletion process the article may still be deleted if it matches any of the speedy deletion criteria or it can be sent to articles for deletion where it may be deleted if consensus to delete is reached,0 +hm there is a way to do this i ll see if i can remember what the code is gabsadds,0 +this article already exists see liger pro,0 +feather there is no citation as to how a quill looked in the past therefore it is opinion only,0 +bakan why is abbie bakan even mentioned in this article based on the worthless rag of hers which is cited as a source in this article she s nothing but a shill for lenin and the rest of the commie gang in that rag she not only shows egregious pro communist bias but doesn t even bother to check the facts much less look at the causes of the kronstadt rebellion or even cite reliable historical sources on that subject she also discredits herself with absurd accusations of a white conspiracy to overthrow the soviet government and even of the rebellion being motivated by anti semitic racism among the sailors furthermore all the claims made in that rag are based on a case of begging the question that is since lenin s communist regime was good major premise and the kronstadt rebellion harmed said regime minor premise suppressing the rebellion was justified last but not least the mere fact that the aforementioned rag was first published by a self admitted socialist party by definition means that this source does not meet either wp npov or wp rs if such sources continue to be used in wikipedia articles the whole project will soon turn into commiepedia,0 +messages on talk pages during an afd placing messages on users talk pages such as and in the hope of gaining support is an unacceptable practice which agin hinders the afd process,0 +trivia i d advise you to look the word up in a good dictionary jay mr townsley s marriage into an important business dynasty is obviously noteworthy which is why it s noted prominently in the article linked to cheers,0 +might i remind you that this is the english language wikipedia and you have no greater precedence here than i do perhaps you should think of going to edit the ja wikipedia and taking your aggressive attitude with you especially since your only problem is with the example names which are easily fixed you re clearly incapable of appreciating the improvements i made in english so perhaps you re not the best person to judge,0 +speedy deletion of david fork a tag has been placed on david fork requesting that it be speedily deleted from wikipedia this has been done under section a of the criteria for speedy deletion because it is a very short article providing little or no context to the reader please see wikipedia stub for our minimum information standards for short articles also please note that articles must be on notable subjects and should provide references to reliable sources that verify their content if you think that this notice was placed here in error you may contest the deletion by adding to the top of the page just below the existing speedy deletion or db tag coupled with adding a note on the talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would would render it more in conformance with wikipedia s policies and guidelines what do u want,0 +your suggestion of editing the article is completely workable and was working as per wikipedia guidelines until jayjg and slimvirgin started deleting large relevant chunks of the article and reverting it to what we have now as punitive gestures if we can all agree to concentrate on making the article better instead of punishing each other there is no reason the article has to be locked i agree that we should start with an extremely innocuous definition preamble statement we can all agree on however a definition doesn t do anyone any good unless it conveys some sort of information if there were just one word that we could all agree is associated with terrorism that would be better than no definition at all intimidate for instance,0 +speaking without knowing what i m talking about ok how bout this the original comment i made about everlast s entry constantly being vandalized by eminem fans was written a month ago before your dumb ass got involved with the site the feud started with the dilated peoples track that s why i believed that the verse everlast contributed should be in there and still do the jabs taken back and forth after that deserve a synopsis only your idiot ic little comment about album sales was excessive and unnecessary it belongs in there no more than the fact that everyone who knows both artists agrees that if they ever got into it everlast would knock the living shit outta eminem and that came off an eminem fan site,0 +our talk archives,0 +speedy deletion of spunga a tag has been placed on spunga requesting that it be speedily deleted from wikipedia this has been done under section g of the criteria for speedy deletion because the article appears to be a repost of material that was previously deleted following a deletion debate such as at articles for deletion under the specified criteria where an article has substantially identical content to that of an article deleted after debate and any changes in the content do not address the reasons for which the material was previously deleted it may be deleted at any time if you think that this notice was placed here in error you may contest the deletion by adding to the top of the page just below the existing speedy deletion or db tag coupled with adding a note on the article s talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would would render it more in conformance with wikipedia s policies and guidelines talk,0 +plus you have to be a natural born citizen which i m going to assume is not but who cares anyway,0 +un block for the last time ok now don t fuck up i mean that in the best possible way good luck and good night,0 +i understand your position and think that your point is perfectly valid however i don t deem ia i chi in u a creation of wikipedia even with the lack of historical sources for that effect in the english language i ll think more about this tomorrow thank you for explaining your position to me with such accurate detail best regards nd,0 +thanks user talk biggity are there any constructive edits indef block perhaps mahalo,0 +for anyone interested in accurate not deliberately misleading information about the ten string guitar i e not the garbage that will no doubt soon be presented here see w myspace com tenstringguitar tthough my temporary site has now been hidden removed from google search listings by some shady dealings the truth will prevail,0 +you said i am determined that the page will not regress to this again and i will delete anything inappropriate that jeopardizes the good progess that is now being made a completely inappropriate post in the middle of a sensitive discussion threatens to do just that the problem is that you are not the sole arbiter of this or any talk page the post was innocuous and did not violate the conditions of the arbitration decision nor did it affect the flow of discussion on the page in fact the most appropriate response would have been to just ignore it by removing it you just encourage a reaction you accuse me of wikilawyering which is absurd the guidelines are there to help us all however not only do you violate that guideline but also several policies it is this kind of heavy handed action that encourages people to persist with problem edits it is a long standing convention that we do not remove other users posts and in my three years here i have never seen it done when it wasn t vandalism unless you can give me a much better reason for not doing so i am going to reinstate the deleted text,0 +the glourious people s republic of china has carried out a survey of the great wall it is no surprise that chinese inventions such as the wall exist to this day one day our great wall will stretch all the way around the world anyway let s add details of our dear government s survey,0 +fisherqueen would you kindly stop following my every move and deleting things off my user page havent you got anything better to do than piss people off on wikipedia,0 +so jim burton child molesting faggot i see you are still with us for yet another day making a total buffoon out of yourself as usual i don t know what is sadder here you or the extreme hypocritical arrogance you show by lecturing the world about ethical principles for your claimed rights to abuse our children you have no ethical principles to save your life but it s exactly as the roman poet said isn t it the harlot doth always rebuke the chaste will you ever drop dead we might all breathe a little easier for our kids sake you truly disgust me with every word you write,0 +having read will beback i already changed the structure separate someone s view over him into separate section i suggest further restructuring welcome and details per section later,0 +nevermind the has assimilated those puppies sorry for the bother cheese wine,0 +i fixed the link it took all of about seconds now leave it or i will report you to the administrators,0 +as i have told they were not deliberate personal attacks in my belief my messages have been interpreted wrongly although i asumed good faith in posting them as i have mentioned that,0 +please do not remove content from pages without explanation as you did with this edit to vole if you continue to do so you will be block from editing royal court,0 +deleted american criminal category it s incredible to me that the facts of this article might lead some misguided soul to think this is what the american criminal category is for there s a lively discussion at the category s talk page about what should be in the category but even the most expansive reading of the category doesn t countenance this,0 +millinos of hunjan looking at hunjan template not just me other hunjan will fight back your concept of art bull of shit tharkarn and what waste man,0 +just to add kansas bear when i said you made the elementry mistake of calling it a treaty when it was in fact a congrass is because as you left out as usual my post in which you regarded the three deligations as having been pressent at the treaty o arass with papal meditiation the treaty of arass was a private treaty only between the deligations of burgundy and france and made a military alliance in again we are debatting on the burgundian recognition stop changing the subject you clearly are giving fallactious statements and i feel your posts are utterly questionable if you happend to remeber a month ago we both agreed the congrass and treaty of arass were different i corrected your statement when you regarded the three deligations as bieng pressent at the treaty of arass p s stop with your childish personal attacks i aqsked you to give sources regarding that burgundy didnt recognize henry as king of france but you give refs regarding the treaty of arass and mixing up the posts if you cant handle the fact that burgundy recognised henry as king of france then i have already reverted you on the dual monarchy article you should be ashamed of your fallactious remarks nd utterly questionable unsourced facts,0 +er using two usernames to vote more than once in a poll i have no idea what you are talking about i have not used an usernames and i have never voted in any poll i can not be a vandal as i have not vandalised anything i may have added content which you or someone else did not agree this is not vandalism the correct reponse is discussion and debate to achieve a conscensus again i am not a sockpuppet or a puppetmaster i have been fully open that i am the same person by wikipedia s defintion i am not a sockpuppet or puppermaster you may wnat to use a different defintion but that is just your opinion and mudslinging hardly appropriate for an administrator,0 +raffaele s request for a lawyer while being interrogated on nov was refused as was his request that he be allowed to call his father page amanda was denied food water bathroom breaks and naps during the all night interrogation on nov page wikid actually now looking at murder in italy i see that there is a ton of additional information about both amanda and raffaele s interrogations that could be included so i will work on listing all that in more detail tomorrow,0 +yes i like the suggestion also it looks pretty good and by leading into the next sentence about the bering strait crossing it conforms to the rest of the article since later on we get more details on the prehistoric migrators i ll just edit yee s suggestion in,0 +seriously alex your article is on the edge of being deleted there is no one at the deletion discussion arguing for its being kept if you want any hope of keeping this article online instead of spending your time editing the talk page click on this link to go to the deletion discussion and make your arguments,0 +some day you and i are going to remember this and laugh ha ha ha ha ha never forget i have incredible power i am more powerful than you can possibly imagine let me just close this conversation by bidding you a fond farewell,0 +you ve probably noticed the table factions approach if you could keep an eye out for more game central information on in game factions and then update the table that would be great i m basing it off of a similar table in the a class age of empires i which shows the sort of information to go for without falling into the gameguide trap,0 +sr cl u bud bin a way like long time like time outa mind long god shit but mo latah an dat soon az ah gitz back heah sum a de brotherz n sistahs sez hance dead or alive we re about to send a zion ranger to check on his condition ah sez whoa led me gib him a holler dis me hollerin bro de zion rangerz be dem dat do most a de walkin tru wallz not all but most de wall walkin dude ain gonna do r bro no harm he jes be checkin ee ben so a gentle remindah kum fuhst u be readin id a leedle postin a dis n dat go down good doan fohget to cut sum z aftah a tad a postin sleep good n doan fergit ta dream sumptin might kum jes ta bdh all wrapt roun wid delta wave n a kupla otha carrierz what we diz cuss latah chow bro,0 +you did not call me neither maybe we missed the once in a lifetime chance to see us talk,0 +as you did to the henry david thoreau page it is considered vandalism if you would like to experiment use the sandbox thank you,0 +rather crude ancestor of the vaccine the source is a biography of louis xvi louis xvi le roi bienfaisant jean de viguerie on the various and often contradictory influences of the french government prior to the revolution where a section is devoted to the innoculation of the royal family and makes note of how the intendant of franche comte had financed physicians to do it through his province and how it was later used by washington on his continental army the truth he actually died on december it even says so in a book that i have facts about george washington george washington owned over acres of land washington lived in new york and phildelphia during his preidency the preceding unsigned comment was added by ga in zh wikipedia please add link ga zh in interwiki section thanks,0 +the objectionable textbook material the ads refer to a controversy in wheaton schools in the early s surrounding a series of textbooks called impressions they also contained some writings that some parents believed featured themes of the occult witchcraft violence and disrespect for parental authority here is a discussion of one of the offending pieces a yarn called a wart snake in a fig tree which is a kind of a pardody of the twelve days of christmas but with creepy crawlies and spiders and snakes and stuff a wart snake in a fig tree i wonder what roskam s stance on harry potter and holloween is,0 +no i didn t mean point me at a biographical article though that would be good too i mean answer right here on the discussion page what town were you born in which schools did you go to also regarding over the top i disagree i think the article could do with quite a bit more expansion as could the articles of the other individuals you mentioned as for greatest living magicians i have to admit i d never heard those names how are you judging that say max maven is better than a david copperfield is it by awards industry press or just personal opinion of their technique,0 +okay but only if they are truly not needed same sort of criticism praise no quotes etc thank you talk,0 +haha you re fine i mean you re allowed to do it but i m just selfish i guess i really appreciate your kindness though and i really respect that you asked because when other signatures that were borrowed no one let me know or gave me any credit so i feel badly that since you asked you d feel really badly about doing it now haha but i can help you figure out a nice one or pick out some fun colors have a great day and happy wikying,0 +bloc voting countries with large populations of non nationals may have their televote influenced considerably this has been cited as the reason for apparent bloc voting in the balkan countries of the former yugoslavia this is full blown crazy what does non nationals mean these countries have similar cultures and speak the same languages the stars in croatia are popular in serbia and vice versa people are nationals of their countries in the largest proportion in each of those countries there are some refugees in each of those countries but that doesn t really explain why croatia would always give the highest no of pts to serbia or macedonia to serbia where there was no conflict to speak of for example i m a bosnian serb and me voting for a croatian or a serbian song is not unusual but i m not a bosnian non national i have the passport of bih and my family has never lived in serbia in history it s really about mutual intelligibility which is why scandinavian bloc votes for each other all the time it s the language and sensibility,0 +peta is not a self published source please explain how the peta website is not self published,0 +please do not vandalize pages as you did with this edit to morrissey if you continue to do so you will be block from editing impala,0 +august utc there is no wp rs to affirm the veracity of di s doubtful claim either that is you have no wp rs either way therefore it is not a verifiable fact that picard or any of the other original signers consented to or agreed with the di s published interpretation or political position vis a vis pbs or any other subsequent political purpose regarding what should or shouldn t be taught in school all you have on verifiable record is that the original signers called for skeptical examination of the evidence for scientific theories di s unverifiable claim which fraudulently spins that into consensual agreement or support for their interpretation or political agenda is not a fact under the rules of wikipedia all the rest of di s propaganda is utter hogwash fraudulently perpetrated by the di without the verifiably demonstrated consent of the original individuals in view of the wp blp do no harm clause the unverified claim of the di must not be promoted to fact and any content to that effect must be immediately expunged per the wp blp,0 +email thanks for your email about the message you received from guyovski i received a similar though not openly threatening email from guyovski as well,0 +it is a fabrication with intent to defame that is not the point here it belongs in the dan savage article,0 +perhaps overlooked in the discussion of steve moore s credentials is another aspect of the newsweek article by saying that knox s supporters have hurt her by expressing their opinions nadeau has effectively stated that the decisions of the italian court will be or have been influenced by anger and anti american sentiment rather than the evidence alone i don t know if nadeau s experience in italy qualifies her to make such an assessment but taking her as a rs to make that statement would be as great an insult to italian jurisprudence as anything knox s supporters have said i wholly concur with pablo s opinion that the piece has no place in the article,0 +other attractions what is a water place and animal place,0 +i fear jossi may be correct if watts who btw died in said this about rawat he probably meant it as praise i e the emphasis would have been on sacred judging from my knowledge of watts oeuvre he was rather anti intellectual himself,0 +oh well can you fix it because it looks a mess right now and i don t think it was certified in switzerland yet so new zealand and australia should just be there,0 +omg i love dch who doesn t i love pac sun,0 +i ve removed it it contributes nothing to the article,0 +hi writingrights welcome to wikipedia i hope you like this place i sure do and want to stay before getting too in depth you may want to read about the five pillars of wikipedia and simplified ruleset if you need help on how to title new articles check out the naming conventions and for help on formatting the pages visit the manual of style if you need help look at wikipedia help and the faq plus if you can t find your answer there check the village pump for wikipedia related questions or the reference desk for general questions there s still more help at the tutorial and policy library plus don t forget to visit the community portal and if you have any more questions after that feel free to post them on my user talk page or place helpme on your talk page and someone will be by to help you shortly tab additional tips tabtab here s some extra tips to help you get around in the pedia if you want to play around with your new wiki skills the sandbox is for you tab you can sign your name using three tildes if you use four you can add a datestamp too five will get you the datestamp only you may want to add yourself to the new user log tab if you ever think a page or image should be deleted please list it at the votes for deletion page there is also a votes for undeletion page if you want to retrieve something that you think should not have been deleted if you re still entirely confused or would like to get a better grasp of your wikipedia skills and you have an irc client or don t mind getting one check out the bootcamp it s not what it sounds like but it is fun and can help you with your editing skills if you re bored and want to find something to do try the random page button in the sidebar or check out the open task message in the community portal happy wiki ing talk contribs click here to respond to this message,0 +it is common knowledge that karaims but not karaite jew s boast descent from khazars but what they do not realize is that we believe the on oq whence came mixing with carian mercenaries from caphtor and kolhkis our khazar ancestors were in fact the remnant of the lost ten tribes of israel who formed our priesthood it is precisely for this reason that karaite jew ish scholars like jacob ben reuben of byzanteum and yefet ben ali or jeshua ben judah call us bastard s in their writings the following editor,0 +april utc then rewrite and expand the article i d much rather have a full article than a bad article with a full template as for william s edits i m not going to vote on a content matter at this time i have never looked at this article before you sent me the link so i am not equipped to choose one version over another my vote is purely on the layout aesthetics of including the template maybe later when i ve spent more time with an unfamiliar article i can make a statement about the content,0 +i was trying to inject some humour as evidenced by my winky face in this ridiculous overblown and unnecessarily dramatic situation if you took the time to familiarize yourself with the situation you would see that the person i insulted was attacking my cited and factual contributions by actively censoring them no explanation which i retaliated with by insulting him i thought that his conduct was insult worthy at the time as would any sane individual who was not familiar with wikipedia s no insult rule however i have since realized that what i did was wrong because this site does not allow for harsh words which is why i will not use them again even if they are used against me which they were during this ordeal wikipedia is the place for me because my edit was constructive and brought a greater knowledge to the subject s topic but the fact that i insulted another user in the edit summary is regrettable and i know that now if you seriously think the edit linked above constitutes a better insult,0 +this title should redirect to altona hamburg i w d change it but at the moment there are too many links for me to bother,0 +rex mundi i ve created a stub on rex mundi at rex mundi high school only thing i know about it is that both my aunt donna and bob griese went there please add anything you might know about it btw my dad was a panther i live in princeton myself,0 +another lead dyk yee ha talk,0 +arangkada philippines p data study report neda infra report united filipino seafarers october manila times november taipei economic and cultural office in the philippines p in the philippines news october https nippon zaidan info seikabutsu contents htm the nippon foundation library a study of the philippine railroad in japanese funded by the institution taiwan trade october clippings of economic news about the philippine economy in japanese by japanese economic news organizations pinoy reporter june,0 +you are totally wrong the synonyms or terms of kshatriya and andhra kshatriya was and is used for only rajus but not other castes of andhra pradesh acording to anthropological survey of india by kumar suresh singh which can be seen above and also in his other books because rajus are kshatriyas and also called as rachavaru in telugu in medeival period thats why krishna rao used the word rachavaru and also he is not an ordinary man b v krishna rao belongs to andhra historical research society according to kumar suresh singh they are kshatriyas who migrated from north india but not locals which is also supported by other anthropologers as the truth is aryans initially entered into indian sub continent and stayed in north india north east and then their castes i e brahmins kshatriyas vaishyas gradully migrated and settled to south india no,0 +perhaps you should better do self a better job pravda russian state ist not pravda ru privat that two different newspaper the pravda homepage is http w gazeta pravda ru,0 +the german habilitation is a degree defined by law,0 +desktop computer clipart yellow theme,0 +you are wrong about everything but for too stupid to notice you are a lost cause your existence is a blemish,0 +quality of wifi i m currently visiting france and have stayed in two apartments with v boxes in both cases it seems the wifi router can only cope with one device at a time any info available on issues with dhcp server i don t see any mention of this problem on the french version of the page either but since i see it on two different v boxes i feel like it may be due to the hardware comments anyone,0 +the only person claiming edit warring is you i urge you again to moderate your tone and abide by civility padding romm s entry with insubstantial fluff like what his brother does for a living and lengthy descriptions of projects he helped with has no place in an encyclopedia entry,0 +cnn says mother died it s on their home page,0 +re external links hi fut perf first of all thanks alot for your help with nisarkand this website has some very informative articles that you won t find anywhere that s why i post links to these articles the website might have a few articles that seem hate ful but most of the articles are just copied from other news sources the website s intro might sound a little racist but in since its just a collection of articles from various sources i really don t think it is hate ful at all as long as the individual article that is being linked is not about a group of people i think its ok don t you think,0 +for the record i will continue to do everything according to the rules i have been patient with the above above user despite multiple personal attacks and i am determined to stop any inaccurate or npov information from being added onto wikipedia it s unfortunate he has to get his buddies to back him up and not go through proper channels to what he thinks is harassment,0 +i don t really know for sure i ve talked to on wikipedia s irc he says they violate wp fuck but i m not sure how,0 +wikidon stop stalking me,0 +january utc i have filed a complaint against cshay for edit warring,0 +tim burton someday must be to explain who is the jack napier s partner most fans of batman and speculation are confident that this character is joe chill but so was to give allegiance to the comics other people says that the partner may be bob the goon but if you look good this character bears no resemblance to bob the goon,0 +source of the term is obvious sick brain word battle before rifle in some official sources mean used in battle this word is used to separate battle rifle from sport or hunting rifle in russian state standard are definitions for terms battle small arm sport small arm training small arm hunting small arm most fun is that this bull shit article exists years and have many cross links very very good indicator for knowledge level of the wikipedia editors viva wikipedia,0 +dunfermline article and new pictures for the kirkcaldy collage hello again i ve been looking at the paragraph about the kingsgate shopping centre on the economy section both sources do not indicate that the shopping centre was built in the s nor is there any reference to the centre car park having two levels me and you know that the centre was built in the s specifically between and if you want make reference to it use a century of dunfermline or dunfermline the post war years but then i never thought it was that important how old the centre was anyway about the two levels on the car park it is actually three if you ve read the sources also i think you should reinstate info on the actual size of the extension and where this took place you might also want to say that the extension was built on the site of the old bus station and car park info is there on the reference kingsgate extension on schedule for august opening by mivan as we both probably want to get this article to ga i would remove all references to the word locate within that section this is one of many words or phrases that should be avoided if aiming for ga status that s why when i originally wrote that paragraph on the kingsgate and other retail areas i specifically kept the use of the word in question to a minimum if it isn t dealt with now it will be at a later date that aside i have a new picture of the beveridge park which i submitted to mutt lucker s home page it is now on his talk page if you want to see it mutt lucker thinks it is a good effort and i would like to add it to the collage to replace the picture of the beveridge park pond as well as this i have another new picture of the old kirk tower which was inspired by one on the undiscovered scotland website the clock has been restored since that pic and would like to upload it,0 +zero down zero interest at the oregon cotw hello to all the wikiproject oregon folks time once again for yet another bone chilling edition of the collaboration of the week i thank yee who helped make improvements to fort stevens and upper klamath lake for this first week of december we have by request mike bellotti and his archrival mike riley both in honor of that great tradition we call the civil war aka the battle for the platypus as always click here to opt out of these messages or click here to make a suggestion for a future cotw this message is intended for the addressee shown it contains information that is confidential and protected from disclosure any review dissemination or use of this trans mission or its contents is strictly prohibited,0 +note by brab i ve uploaded it on imageshack,0 +where is the real vagina the real photo of vagina is gone would you mind if i make the new one the vagina picture is indonesian s vagina do you love it,0 +note i also have problems involving user veriditas i d suggest ignoring him although he and user jew bacca have launched a campaign re arbitration and the operant idea with such things is fighting like hell i find these people distracting and annoying sorry you had to deal with them dec utc,0 +so are you guys going to do anything about bletch or are you going to sit around and hope that i revert him so you can block me as well,0 +well since most of my non specialized literature is in british english i wouldn t be surprised if i m using anglo britton specific expletives,0 +not true this is practice in many places outside the province regardless language trans lation should be added,0 +less likeable messages here mark i know you are here posting your remarks let s just hinder stenun that s it,0 +that did not help i don t have an inkling what you are attempting to communicate to me this is how the word is pronounced in iliz yya or you can use ipa your new system with letters like is illegible to me i don t know what you mean by first edition or by alfb i don t know what you mean by long is out of the ending or anything else that you said probably you can understand me much better than i you so let us simply say that the word is in iliz yya,0 +proposed approach this section is intended to be a compilation of actions needed to improve this article based on discussion views and discussion on this page i will begin by suggesting a few steps we can take to address concerns raised these include article length length of notes section need to place greater emphasis on his teachings and impact layout use of non standard article headings quality standards etc here are some suggestions please feel free to add additional issues that need attention and comment on the order of doing things review headings re order as needed using standard layout determine sections to be moved to sub articles write summaries for these sections create sub articles review reduce notes section edit according to good article criteria and or featured article criteria submit for assessment,0 +utc you re the only reasonable person here july,0 +sorry i m not that familiar with those two games,0 +you have left me no choice wikipedia is a group of fellow editors you will be banned according to your actions not your status,0 +i didn t call you a yank and i don t give a flying toss what absurd convention a handful of people have decided to invent,0 +hangman game hey man sure you can host game but you are going to need to wait a bit because we are voting to move the page so as soon as that is resolved i m going to archive games and then i ll give you a heads up okay,0 +it is obvious that you do not understood the third opinion above see the text about dialektism as a good method to write about a controversial subject if you want to include comments from cma s president you don t start with deleting the parts that mr clements probably thinks is the most important,0 +i rule this place,0 +a belated welcome here s wishing you a belated welcome to wikipedia culturalsnow i see that you ve already been around a while and wanted to thank you for your contributions though you seem to have been successful in finding your way around you may benefit from following some of the links below which help editors get the most out of wikipedia introduction the five pillars of wikipedia how to edit a page help pages how to write a great article editor s index to wikipedia also when you post on talk pages you should sign your name using four tildes that should automatically produce your username and the date after your post i hope you enjoy editing here and being a wikipedian if you have any questions feel free to leave me a message on consult wikipedia questions or place on your talk page and ask your question there again welcome,0 +please stop i am assuming that the articles you are creating are of you and your friends year old soccer players and the club that they play in are almost always going to fail to meet our notability criteria if you do not stop creating articles like this you will be block from editing also do not use multiple accounts such as,0 +keegan found a proxy in one of the last socks though,0 +other than that you could see how the side bar looks intergrated into the top welcome section on the right and make it just one section providing you make it the same length and shrink the other pics down a little it should fit in the top,0 +orphaned non free image image ksv hessen kassel png thanks for uploading image ksv hessen kassel png the image description page currently specifies that the image is non free and may only be used on wikipedia under a claim of fair use however the image is currently orphaned meaning that it is not used in any articles on wikipedia if the image was previously in an article please go to the article and see why it was removed you may add it back if you think that that will be useful however please note that images for which a replacement could be created are not acceptable for use on wikipedia see our policy for non free media if you have uploaded other unlicensed media please check whether they re used in any articles or not you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any non free images not used in any articles will be deleted after seven days as described on criteria for speedy deletion thank you orphaned non free image image darmstadt png thanks for uploading image darmstadt png the image description page currently specifies that the image is non free and may only be used on wikipedia under a claim of fair use however the image is currently orphaned meaning that it is not used in any articles on wikipedia if the image was previously in an article please go to the article and see why it was removed you may add it back if you think that that will be useful however please note that images for which a replacement could be created are not acceptable for use on wikipedia see our policy for non free media if you have uploaded other unlicensed media please check whether they re used in any articles or not you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any non free images not used in any articles will be deleted after seven days as described on criteria for speedy deletion thank you orphaned non free image image eintrachtbraunschweig png thanks for uploading image eintrachtbraunschweig png the image description page currently specifies that the image is non free and may only be used on wikipedia under a claim of fair use however the image is currently orphaned meaning that it is not used in any articles on wikipedia if the image was previously in an article please go to the article and see why it was removed you may add it back if you think that that will be useful however please note that images for which a replacement could be created are not acceptable for use on wikipedia see our policy for non free media if you have uploaded other unlicensed media please check whether they re used in any articles or not you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any non free images not used in any articles will be deleted after seven days as described on criteria for speedy deletion thank you orphaned non free image image karlsruher sc png thanks for uploading image karlsruher sc png the image description page currently specifies that the image is non free and may only be used on wikipedia under a claim of fair use however the image is currently orphaned meaning that it is not used in any articles on wikipedia if the image was previously in an article please go to the article and see why it was removed wp bold you m,0 +very nice work with aristotle onassis nice to meet you very nice work with onassis thanks too much,0 +you go away you loser way to standup for you boyfriend blueboy make me go away,0 +i ve done some cleanup adding a mention of l as the series main antagonist to the lead i can t agree that the episode count is insignificant given that what we re dealing with is how prominent the characters are to the story more than that i can t agree that l is absent from the second arc yes he s dead he s not physically present but the characters refer to him constantly his influence pervades the arc as is shown by numerous quotes and so on it s like saying jesus has no relevance to paul s epistles because he was dead at the time,0 +what do you call yourself a person who is trying his best to undermine the true history of gustave whitehead why who are you and why are you doing this it is inappropriate,0 +ack go ahead and remove them,0 +january,0 +but why phearson,0 +thanks to all for taking my rather offhand comment seriously to reiterate my original explanatoin to james i m interested in this more on a meta level how do we approach controversial subjects than out of deep feelings one way or the other towards moore and his film that is i m trying to see the forest of making a good article on the film rather than the trees of every factual detail within the film that contributors might have multiple viewpoints about for an encyclopedia based around the concept of a neutral point of view any attempt to either counter or defend the content of a subject that is in itself an editorial statment seems wrong such discussions wind up as parasites draining the life and meaning out of an otherwise useful article see for example something like roe v wade there s no need to use that article to debate all the pros and cons of the subject involved there are other articles for that linked at the bottom just state the facts about the case even if you really consider moore s movie to be completely indefinsible propaganda and to risk the wiki equivalent of godwin s law here note that the article on triumph of the will doesn t feel the need to explain all the reasons why nazi germany wasn t all it was cracked up to be similarly shouldn t we just describe the content of the movie noting that it is controversial and then if we want an article about the bin laden family departure or w hate ver we can put the facts about that subject there jul utc,0 +but here s the thing history and time travelling which you did show a citation to travelling to the earth s centre creation of the universe the future parallel universe the ultimate fate of the universe dystopias and utopia which you did show a citation to telepathy intelligence amplification invisibility psi powers and psychic phenomenon as well as the three themes beneath it resizing shapeshifting teleportation apocalypses or world wide disasters posthumanism the ultimate fate of the universe and the kardashev scale floating cities underground cities walking cities the age of post scarcity and domed cities can be used in fantasy there for not exclusive to science fiction alien invasions and artificial intelligence amongst the other themes that are on the page that i can t think of can be used in horror and are there for not exclusive to science fiction and as much as i hate to as we d be stuffing up the article even more so but it d be for it s own good because then after seeing how bad the article s gotten yobmod wouldn t be so strict about which themes can be used in science fiction we need to get rid of them immedietally,0 +this comment was reverted so you were unable to see it but don t worry about it now because i have found out that one of the users was banned and the other received a block later for some other reason i ended up getting block and was extremely pissed off about it but i can t really do anything about it now i guess even though i felt i was hardly done by,0 +redirect talk carlos johnson musician,0 +i ve incorporated burkert s quote embodying pathos in this context confusion with aristaeus his statue was often set up on rocks and mountains as a protection against excessive heat often did pausanias see one where does this come from,0 +if you re offended by the birther analogy consider the analogy of including a title like dark moon apollo and the whistle blowers by bill kaysing in the see also section for neil armstrong or buzz aldrin fortunately this book doesn t have it s own article yet but it stands at in amazon s best seller list compared to montford s obviously the moon landing hoax conspiracy theory is quite a bit more obvious as a piece of fringe nonsense and yet it s sales figures would indicate that it s being taken seriously by many all except nasa s partisans namely almost everybody,0 +at school i was taught that the gravitational field inside a solid sphere is equivalent to being on the surface of a smaller sphere at the same centre ie ignore all the matter at a radius above your position that was a decade or ago though so you would want to verify this for yourself also see my comment above,0 +july utc well maybe i m not a real archaeologist talk,0 +what are you talking about it s per the source just because another editor believes the subcontinent to look like a triangle does not mean we strip information we don t like,0 +thank you gary thanks for all your suggestions and patience with the ga review for high level radioactive waste management it was a pleasure to work with you and dabomb and learn how some of these things are done maybe we ll have another opportunity on some other occasion and thank you for the rating as well of course,0 +frederic bourdin hey jimbo your b did not step back instead he asked a friend admin calling him to help him with this matter against me you have a open door policy right and when i came nicely explaining what the problem was and that i would be very happy to end it even though i did not feel it was fair it seemed to me that you really wanted to help but i got block again and again for nothing let say i m not very happy about that because it s obvious to me that the bad guys are winning you know i can t be block for long though since i m a pretty good brain with computers that s not why i m mad i m mad because you lied to me all the people involved against me here are biaised so of cpurse unfair and i won t let it go and no matter what i will have to do i shall do it your actions have been unfair and unwarranted and even the great jimbo is not going to stand up for some fairness we ll see then good night,0 +yes is appropriate given the circumstances i believe the provisions of section a cease to be an issue once the matter comes to trial,0 +your bizarre fascination with me is disturbing please stop posting about me i have asked multiple times thank you so long as this nonsense is here my response will be as well sinneed,0 +a kitten for you i loved your articals,0 +lt govenor jefferson keel also i have information from personal interviews and pictures of the lt governor how should i go about this,0 +case not closed you didn t answer my question which was whether the two sentences mean the same thing they d have to for you to be right of they don t and of course you re not,0 +the appearance seems to depend both on the browser and the window size and i ve been fiddling with the image placement to try to balance them i don t like the block quote template as it doesn t seem to do anything and i prefer quotes of this sort to stand out typographically in some way the quote in this case seems to have a dickensian sound to it which provides a sense of the period i m hoping that the readership will like it but critics abound alas anyway thanks for your input,0 +i ll let you do your thing too many cooks ruin stew and all that,0 +this is super trivial more a clarification i chopped out the explicit mention of the bbc and dequoted since it would be clear from the reference in order to perform a minor space saver either way the weasel words are still present only now quoted and the source cited in the text is that standard in wikipedia as your edit comment suggested when weasels cannot be avoided best etc,0 +myanmar i want to lodge a formal complaint against pats for targeting my posts on the myanmar page for deletion because they oppose the military rule of myanmar i think it is important for wikipedia to allow the peoples encyc to be used to raise awareness of this critical issue,0 +sorry heres deletion log klement s sausage company wikipedia articles for deletion klement s sausage company malamute thank you for the reference the answer is on the page the overwhelming opinion of the contributors was delete which was carried out in accordance with due process any administrator could have done it i just happened to be the one you might want to direct your comments to who appears to think that this company may pass wp corp criteria this correspondance is now closed aeropagitica talk,0 +it was raul s idea but we all thought you deserved special mention you ve really done a fine job and reading your articles makes one proud talk,0 +re re invader spleen i looked at invader zim and it said you put the izfas on the page,0 +this is untrue i have not been block for the reasons mentioned but rather for entirely different reasons since the reasons mentioned are not actually true it is impossible to exhibit a battleground attitude because of many reasons including the fact that one cannot exhibit something unless one is a display engineer at a museum and it would therefore be impossible to exhibit anything let alone a battleground attitude the fact that there is no such thing as a battleground attitude the fact that there is no such thing as an attitude in regards to how a human being acts and the fact that the word exhibit is used in an incorrect manner here done solely for the purpose of antagonizing the user antagonizing me usage of words like exhibit and attitude and refusing to follow the section title requirements on my page show an obvious malfeasance intent by the above person and therefore the block cannot be valid because within the first sentence he has already seriously demonstrated his lack of appropriate intent by specifically and purposefully being antagonizing the second claim is physically possible but is blatantly false i have specifically attempted to prevent other users from refusing to communicate in a appropriate manner as he was repeatedly replying to the same conversation in several different locations for which i reported him but yet the people at the alleged help desk refused to tell me where to report him and even deleted several of my replies and then archived it fraudulently having other users delete my comments participate in blatant fradulent ism post the same thing on multiple talk pages at once for the purpose of harassing me etc is hardly myself making it difficult to communicate when in fact as was just demonstrated i did the literal exact opposite of this by literally attempting to prevent other users from making it difficult to communicate in addition if i wish for other users to not communicate with me i also have that right it is in fact specifically written into law in every state in the country and will get you arrested if you fail to do so although i personally disagree with this law and it is an immoral law which deems to prevent for example ex spouses from communicating with each other when necessary the part of the law that refers to strangers such as on wikipedia or anywhere on the internet it is a personal choice whether you wish other strangers on the site to communicate with you or not and or post contact information etc that is why every message board in existence has an option to disable the private messaging system there were no personal attacks done by me anywhere so this part is a baseless and fraudulent claim refusal to abide by the site s guidelines is impossible since guidelines and rules are two different thing wikipedia does not have any rules and all policies of any kind are subject to debate and protest at any time according to the numerous wikipedia articles which specifically say this you have also demonstrated more incorrect intent by saying that something was done in multiple venues even though no venues of any kind exist because this is a website rather then a collection of several different building which show concerts or other entertainment events and or conventions and or etc so that is also impossible,0 +don t tell me what i can and can t do and don t be rude i will include it per wikipedia guidlines which are nothing to do with you i do not chose how they do i meerly change the charts per guidlines the formats are both allowed but not to be reverted after somebody s hard work don t also tell me to get my facts right get yours right certifications are not automatic you have been reported and will be block soon,0 +thanks for your efforts in trying to resolve this matter i will respond to all these matters i am just a little hard pressed for time at the moment i might have to wait until the weekend when i have plenty of time to think about my stupid actions and to express in full detail my remorse to this matter once again thankyou,0 +jesus chirst help me i got block,0 +what do i ought to know yes i m an angel but what do i ought to know o o,0 +auto block because your ip address was recently used by the reason given for tango s block is personal attacks or harassment coren,0 +do not vandalize on pages like you did to lake sammamish state park consider this your final warning,0 +effects under dated rd june with one codicil of charlotte dorothea forster grierson formerly of the city of dublin afterwards residing at four clarmont bank shrewsbury england late of carlile terrace malahide county dublin ireland spinster deceased who died th march at carlile terrace aforesaid was proved at the principal registry by the oath of george abraham grierson of manor house malahide aforesaid esquire the sole executor,0 +type looks gorgeous talk,0 +silk curiously i can t seem to find any direct evidence that says whether their tea bags infusers are made of actual silk there are many careful uses of the word silken though can anyone verify this one way or the other,0 +whoever put a notices on my page i will kill u,0 +not sure if this is how this is done,0 +i also thought it was strategically sensible to refer to the claims in context to avoid their being repeatedly added as facts by people who have read the websites,0 +forget it if inaccuracy is what wikipedia aims for then go ahead and leave it unchanged but just for the sake of properly informing people look at this http w wrestlingnewsarena com breaking news top raw superstar injured put that in the cite,0 +sail labs technology could you please tell me why you deleted this entire page it was up as a short stump after it was recently added to the http en wikipedia org wiki european ict prize winners i just wanted to start the page although an employee of the company in hope that others would finish it but an hour on a saturday morning seems a bit short to do that i do not want to write too much on sail as there is a conflict of interest but i think winning the european innovation prize like the nobel prize for it quote from derstandard an austrian newspaper i think this company deserves an article,0 +public address how to remember imp days events by mishra ji with real life examples,0 +helpme is not to be used in cases like this i suggest you be patient email the blocking admin and explain the situation you might need a thorough explanation also you have removed the image from your signature right,0 +circular as well as the counter arguments defending s c is risen to the level of religion it s not only circular it s vertigo,0 +krauss plans to update the physics of star trek in i think this article needs to get updated,0 +yes i concur most wholeheartedly i know there was once a massive northerly southerly seaway west of the rockies but i forgot the name and now i m having trouble finding it again where s geologic history of north america,0 +thanks you da one,0 +get off your high horse or block me,0 +latin america also includes brazil that had an diferent social system then that of hispanic america the title of this section is wrong,0 +ok after some further research mawdsley turns out to be incorrect please see this and this both sources agree with the book i used and put the date at april i would appreciate it if you reverted to my version and incorporated non contradicting bits from mawdsley into it cheers yo,0 +very long today i restored the template verylong on this page as its length is getting a little bit out of hand the acute toxic dangerous effects section alone is characters long without any subsections and the total article length is over k it and the intro are getting a little too lengthy to be a quick encyclopedia style read see the manual of style and either deal with the situation or discuss before removing the template here s the relevant section of the manual wikipedia article size talk,0 +william l walsh hello lemurbaby there has been no recent improvements to the william l walsh article for ga status possibly this article needs to be withdrawn from the good article nominations page unless recommendations have been addressed,0 +you dont see the alien face above the chlorine atom it still there,0 +your continual removal and attempt at hiding said removal of specific references on the page that properly attribute the author title and publication date of works in accordance with with standard academic practices and wikipedia policy is in fact tendentious clearly an agenda it s frankly remarkable to me that not one of the reviewers or friends of your talk page that you summoned to this page has dared to comment on this abomination,0 +thanks for experimenting with wikipedia your test worked and has been removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia thanks t c,0 +as you kinow it yourself you are not elligible nor credible nor a reliable source of neutrality in this case as you are yourself a mormon and all you do is to support other mormons without following any wikipedias rules but your own churchs solidarity i dont believe that any of you has even the intention of being straightfo rward with non mormon or to be a little bit honest but that the alone thing that activate you is your own religious believe and the pedantisme to think that all you may say or do is auto righteous in the name of the church and all the illusions you dream of with open eyes i dont want a mormon admi i dont want a mmormon admi i dont want a mormon admi to look into this case but an exterm n al one with no relations nor conacts what so ever with this church nor its representants or members if you cant do that must be because your circle of admi friends is around the church or because you know very deeply that all you did was deeply unappropriate and wont stand a micro mile in a wiki trail i am mad very mad at you also because you ignore what i have say so why should i care about your saying and doing if we have to be neutraly equal any idea i want the text who was deleeted from the archive it is unacceptable that a text is deleeted from archive and from the edit history just one hour after it was reverted and less than a day after it was written without any previous warning of any kind about it this is all about wiki rules and you have broken them all,0 +curse you daniel case why didn t you accept now my only hope is for the wikipedia unblocking blocking team to unblock me i need an account now,0 +the article needed expansion somehow the vales case which caused a huge public outcry and about which tens and tens of newspaper articles and thousands of talkbacks were written is definitely noteworthy if it does not belong here it should get its own article i propose leaving it here and adding other materials also and it is not a negative thing it is completely positive i for one think the edah was much too lax the protests should have been much stronger call me a kanoi i guess i am please add more information instead of removing the information present the article needs to be expanded somehow it s shameful that we only have so little information on it here talk,0 +i was wondering how do i make one of those little content boces,0 +daily mirror version hillsborough insults added to wikipedia pages using government computers talk,0 +there is a note if you click on it the line might need clean up but it is obvious what the intent of the line is,0 +naturally i was angry so made a file to ani however i archived the ani soon by suggestion and have no wish to talk with him furthur however this block is not only based on the blocking admin s own bias and very punitive after hours past from the incident how does giving him a warning become wikistalking he assumed that i did not read his warning and did not like my defiance i asked him who are them then i immediately got block so i m requesting for unblock with the dreadful experience i get that i m distrusted by admins even though roux poured personal attacks i will only contribute content building if i m un block thanks caspian blue,0 +this is futile as i mentioned there are multiple sources confirming ali s apostasy from islam can you demonstrate that warraq is not trustworthy talk contribs,0 +thanks thank you for reverting vandalism off my userpage it was very much appreciated d talk,0 +july utc well yes that s fine but the point here is that there is no publisher s statement made about anything in that sentence the idea behind having a resource is that we copy what the resource says instead of just listing them as a reference if the resource says joe at worms then we write joe ate worms about tarnishing any reputation that isn t the point at all and about accepted practices in the publishing world this is wikipedia and the accepted practices are covered by what we call policy and guidelines since those came about over a long period of time and through the process of consensus about people keeping records of how many books were published i think you missed the point there publisher s weekly magazine has a statement about the number of books among other things for example they are a secondary source do you see how that s different about the article on fip it hadn t any sources at all which is one of the reasons it was deleted the only references which it had on the bottom were see also references that pointed to this article here and other articles which were also unsourced except for pointing to this article here fip and acim org are the same entity facim is also the same entity this is known having the same board of directors as well as sharing the same registered trademark acim etc makes anything from either of those web sites primary sources,0 +tim there is no consistency on this point although of course there should be i think you might be able to get some useful discussion going either at the biography project talk page or at wikipedia uk wikipedians notice board let me know if you make progress,0 +barcelona football seasons early th century i looked at the barcelona football seasons for which you added and some other seasons after they could do with really i don t think it s worth listing at wp pnt but this should put them in view of one way or another or if not that could be added to their talk pages i don t want to do it myself a because i am lazy and b because i know nothing about football and would probably make trans lation mistakes,0 +answering questions i won t have a chance to say hello or goodbye when i m block banned w hate ver so hello i m not holding my breath on anyone addressing your questions concerning dawn well s page on wiki and i better get in a good bye as i feel i have the lifespan of a may fly in a low ceilinged room full of bullfrogs not because i m wrong but because anyone on your side of the issue is going to be attacked and baited into some infraction an infraction ignored by someone they like but an infraction that will be worthy of execution when committed by me,0 +issues onefortyone the reason why i removed your edits because they have following problems it is graceland that is nd most visited place in the usa not biltmore estate the d cor throughout the house has often been criticized is incorrect it has not been criticized by anyone then you put up the quotes of albert goldman a fringe theorist on elvis presley and added them under graceland basement which is irrelevant those conflicting reports about his death have no relevance on this article especially when they are disputed or rejected enough times this is why this kind of content misleads and should be removed i don t see any consensus for adding it on archives or previous discussion either,0 +in that case would new age at least be acceptable friend,0 +mr wolf we need to have a serious talk about asthma have you done any reading about asthma the beta adrenergic theory is the only theory of asthma that can be associated with one name not including crackpots so your question about other names insults my intelligence not only that but in contrast to other theories this one has been cited more than any other article in the history of the journal of allergy according to the garfieled library at the university of pennsylvania last but not least my comment would be out of place in the history section because it relates directly to the ba polymorphism since other polymorphisms cannot be related to a specific theory much less to a specific individual your comment doesn t make any sense,0 +please note that dpeterson has now starting accusing me of vandalism for editing this very page advocates for children in therapy i chose to edit by asking for citations for the facts he published on the page how can that be vandalism it seems he can run roughshod over wiki policy and guidelines but any reasonable attempt to make him justify it is vandalism,0 +bald eagle i ve addressed all your points so far cheers jude,0 +sarah you deleted it but it remains i emailed oversight hours ago they just replied saying thanks and the team has suppressed the information it remains,0 +rand paul are you monitoring rand paul if not you might remove the template from the talk page thanks,0 +poor afd rationales wikipedia articles for deletion joe e newsome high school wikipedia articles for deletion wallpaper review see,0 +fair use rationale for images challenged on vic mcglynn article betacommand bot put a challenge on the vic mcglynn article these are low resoultion captures from the in studio webcam at bbc music i then edited the photo and made a new one and uploaded it the image in question is image vicmc jpg it is fair use please advise thanks bob,0 +example of oldest prosthethics like the roman capua leg or egyptian prosthetics,0 +sorry i do not see how any of what you removed is anti semitic you re going to have to justify a charge like that,0 +ha there wasn t a blp violation in the comments you oversited i didn t call anyone anything your abuse of admin tools is pathetic and cowardly funny how i talk about fascists controlling the gamergate article and you completely delete it from the history you just proved my point the one thing i did do was link to the supposed death threat that brianna wu was peddling to the media which proved it was a complete fiction that s the problem you have you don t want your anti gamergate lies being exposed,0 +thanks thanks but i know,0 +keep your propaganda away from this article you are just another internet troll,0 +speedy deletion declined skull prince hello swimnteach i am just letting you know that i declined the speedy deletion of skull prince a page you tagged for speedy deletion because of the following concern is fictional a doesn t apply i might delete it as spam thank you uk,0 +evan rachel wood is there any evidence that she is jew ish,0 +people we are desperately in need of some consensus here can we all please vote for one of the following options given that there are three options i think a plurality would suffice some of the options have subordinate polls please vote again in each of these subpolls,0 +fan related links hello all i know some of you may have found my additions irritating on this site more specifically my linking a youtube clip of my friend on the news giving his fresh impressions of the movie just after viewing it let me just say that my friend is a very dedicated fan which the news clip even attests to and although his comments might seem a bit unusual i think they re interesting in that they speak unique ways a fan could view a movie as far as copyright infringement or irrelevance i ve already addressed how the clip is relevant so i ll say what i have to on ip having worked in an intellectual property firm for a few years and now as a student in law school i am convinced from what i know of the law that this clip does not infringe upon any rights of the film and any infringement that has occurred thus far from it has been attended to by the abc news team for the release of their story so please can we try to negotiate or come to some sort of agreement that it will be okay to leave this clip up i m new to wiki editing but believe this clip would make a nice addition to the spider man site i m sure lots of fans would find it funny and interesting to say the least so what do you say people,0 +vindictive my sense of honor is wounded by your spiteful regard let s us hope for comity to return,0 +wikiproject new zealand class c importance low politics yes politics importance low,0 +edit in canwest issued a successful initial public offering on the toronto stock exchange included multi voting shares if cnn had multi voting shares would it not be an essential fact,0 +no assuming things either using the synthesis rule like a b c kind of stuff no where it s used how you came to the conclusion that it was used it was not even though there can be ways in which it can be used for generalization and to equate it has not been used in wikipedia by me just because it s not valid here now stop the accusations,0 +speedy deletion of creator of school please refrain from introducing inappropriate pages such as creator of school to wikipedia doing so is not in accordance with our policies if you would like to experiment please use the sandbox if you think that this notice was placed here in error you may contest the deletion by adding to the top of the article just below the existing speedy deletion or db tag coupled with adding a note on the article s talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would would render it more in conformance with wikipedia s policies and guidelines,0 +one of the things on my wishlist is to automatically create maps and title coordinates using the lat and long fields in the french infobox but that s for later btw once you ve added an infobox you need to check the links in it for instance in the saint pierre d entremont the link to the arrondissement is broken just fixed it that takes time so i ll finish the stubs first actually what i do is add the ones others have missed talk,0 +i m not going to put up with bigotry and intellectual dishonesty if i have any say,0 +getting your priorities right i don t like the idea of using any kind of food with my mastrabating i just feel like i am using food to have fun while so many other people around the world are starving i just don t think it s a very moral thing to do,0 +discuss don t blank what is your major malfunction can t you discuss edits before blanking them that is your pov that gadaffi is irrelevant and a joke you do absolutely no service to your people by acting like this in fact you have quickly given me the impression turks have something to hide,0 +the nextgen recon commandos are picked for a smaller squad in or so that they are stealthy unnoticed they are the only ones that can do the most dangerous and any missions,0 +drv of zaydra pena please revert your revision of closing that drv i still have a few more comments and your closing speech was a bit odd,0 +i don t mean to be a downer btw i stole your username template it looks great,0 +hey you freaking hermaphrodite please unprotect your user page i would like to move it to a more suitable title or three,0 +oh hear me go someone removes all my pages i get angry and put down even more for beuing upset use your common sense you little hitler he rem oved every one of my links and i am supposed to be kind to him why what about his uuncivial nature why dio none of you have any understanding he goes on my pages onsults my work supports a deletetion of all my pages orbpablry did them and i am supposed to be kind to him i did not swear at him ai am argoibng back you are not the police i have right to be angry back i have not sworn alittle hitler is not a swear word it refers to petty law enforcers such as park attendetns or traffic wardens who go after people with a vindictive smugness with no sympathy,0 +back atcha and thanks to you too cheers talk,0 +yup i wonder as well i also hope that soon the coroner s report is released and all hell breaks loose so we can all finally get to work on fixing this thing with some reliable information just me your mileage may vary,0 +the best solution is to keep reverting him july utc,0 +foto foto states carpatho rusyn sub groups trans carpathian rusyns in original goral folk costumes from maramure photo village mokre near sanok poland but why do they wear trousers sharovary of ukranian cossack,0 +the multitude of sources simply cannot be ignored there are several articles stating the environmental impact i will actually expand the section in the article because the monument is so big people should know as a part of an encyclopedia the river bed violations i would disagree with the arguments given above and that the edit should have more expansion within the article as a half dozen citations stating there are environmental issues also there is a persistent conflict of interest from the users above but from their follow ups there intentions will be clear,0 +what do you mean i think we should stick to what sources say have more sources been uncovered which portray the subject as anything other than a criminal or have the rules changed so that blps should no longer reflect what sources say,0 +i like how if someone posts factual information that is not in step with you personal politics it gets branded an edit war,0 +redirect talk john sadler town clerk,0 +in the words of rodney king can t we all just get along,0 +can someone explain criticism to me this is taken from the criticisms section of the article since logic is inherently constant and that some things are more true than others it means that strong relativism cannot hold true under many conditions relativism often ignores how views have different weight to another an example of a similar phenomenon is the gay marriage debate in the u s an example where the majority dictates the rights of the entirety even when it doesn t apply to them as they do not weigh up the effects of their views can someone explain what exactly this means i do not follow the first half of the paragraph the one that actually pertains to relativism and the example reads as complete nonsense to me especially this part the majority dictates the rights of the entirety even when it doesn t apply to them as they do not weigh up the effects of their views i do not think that a the majority in question believes that it doesn t apply to them though i m not sure what it is in this context so the sentence may be true the majority believes that allowing gay marriage would undermine the moral standards of their society which of course applies to everybody in that society b the majority in question does not weigh up the effects of its views its views are that gay marriage should not be allowed for the benefit of society it is aware of the effects and does not object to them,0 +if you want category turkish people for turkish people ethnicity a branch of turkic peoples and create category with other name for citizens of the republic of turkey including non turkic ethnic groups i can support you thank you,0 +mandarin is the chinese word for bureaucrat which term is prefered because bureaucrat has aquired a negative connotation due to the general lack of integrity the people that are getting such jobs tend to have because their positions and roles tend to be kept secret from the general public an encyclopedia is a source of interesting and important information it makes no sense what you are saying putting an article that contains a list of top bureaucrats in a system of government together and some information about their qualifications and job history that got them the job is not making a bio it s not pov and is not publishing a directory each of the reasons given are not valid and patently false furtermore the information would be linked and made part of the job stub so people can know what types of jobs they are,0 +your edit summary wasn t very nice either,0 +so threatening to try to have me banned for editing is fine but when i suggest having your account deleted for constantly deleting entire paragraphs completely ignoring wikipedia s policies with regards to that instead of tagging or editing suddenly it s bullying nonsense and you know it you re just trying to make me look bad by resorting to the you re a bully nonsense you have also not answered my question on which part is not neutral despite my statement that i would edit it you just deleted it again get over yourself you do not own wikipedia the tags you ve placed on your user page don t change that fact you delete entire paragraphs for the sake of one word i have occasionally made the mistake of putting a subjective word in an edit before and someone has noticed you know what they did they edited it you have just admitted in writing that instead of editing paragraphs that you believe are not neutral or marking them as such you are deleting entire paragraphs against the policy of wikipedia,0 +oh yes of course i believe i m going to lose that s the problem when admins put aside their administrative resposibilities for politics and vote based on what they want to see instead of what belongs on wikipedia then i m sure i will lose i have no problem admitting that,0 +of course helps to have a wacom board,0 +indian paintbrush book award i have replied to your query here,0 +don t insert your as an administrator you can t protect anything,0 +dude the nyt does have to mention the case that s how wikipedia works seriously we don t do journalism we don t do original research i can t see any further point in discussing this with you as it s just going to go round and round the basic factual confusion you ve made between two entirely separate police investigations,0 +call em like you see em is refreshing around here,0 +context of in the beginning the article starts in media res what was the truman committee at the very least a link,0 +bias this article is biased towards canadian football,0 +please note all i m asking is that wp honor the csd there is no nomination i am the substantial contributor to the article csd copyright material author requests deletion if requested in good faith and provided the page s only substantial content was added by its author for redirects created as a result of a pagemove the mover must also have been the only substantive contributor to the page prior to the move if the author blanks the page outside user space this can be taken as a deletion request thank you,0 +i think you ve been most uncivil with your entire approach http en wikipedia org w index php title wikipedia aadministrators noticeboard fincidents diff oldid i m in half a mind to block you but i m holding off in the hope that you start being co operative i think this block is unjustified as i ve both managed to solve the previous moving comments issue and a single revert might constituate a warning but not a block i ve happened to miss your comment for the reasoning for the archivingl you could have stated that a reasoning is on the page or give me a reasoning beyond it s ceased to be productive i m not quite sure who are the others chriso we ve solved our differences on good terms last i checked besides your approach i also think that the conduct of,0 +hydrolyzed jojoba ester any difference or should they be merged talk,0 +listas schaefer nolan,0 +he has voluntarily accepted a month self imposed ban on editing political topics and has been un block i m okay with that and have told him so talk,0 +template did you know nominations pakistan zindabad orlady i was wondering if you would consider reviewing this old dyk nomination from june it needs a fresh uninvolved eye though i think the most volatile of the concerns with one of the hooks has been addressed please let me know laurahale has already declined and as i ve promised to obtain that independent review i need to find someone to do it thank you,0 +sorry i consulted you before i did anything else then i noticed you d posted to the second debate so i left a note there no i m afraid the closing reason is not beside the point i am going to reverse you but do feel free to re close it as a no consensus if you wish closing on a technicality when some people are arguing for deletion is simply going to frustrate people and lead to a needless second debate on drv and afd you do not close a debate on the ground of the nominators wishes unless no one else is suggesting delete,0 +then the young man said to the platypus son don t drink your friends or their shoes the platypus looked up at the man without understanding and bit off his toe the young man said well i never did tell you not to eat my toes don t eat my toes the platypus went to the corner of the box and ate some cucombers and the young man became quite aquainted with the platypus but the platypus was not aquanted with him,0 +oh i see the discussion has already closed well no problem i ll ask for rfc later on the article talk page,0 +i am so sorry i have adhd and i could not control my actions plese unblock,0 +and paganism southgate who has a degree in theology and religious studies from canterbury university rejected catholicism and moved towards neo pagan and heathen groups that are very loyal to the gods of the northern tradition including the odinic rite the tribe of the wulfings and the a satru alliance a pagan movement concerned with practising rituals and magic and led by valguard mike murray a former member of the american nazi party further evidence of this trans ition from catholicism to paganism emerged in an interview with wotan the organ of the charlemagne hammer skins southgate believed that wotan s celebration of the heroes of the norse pantheon represented the most genuine expression of european spirituality culture and identity another key expression of this identity is exhibited by southgate s interest in the militaristic cult of mithras and the pagan spirituality of the apostate roman emperor julian ii this rejection of christianity has an avowedly antisemitic dimension through the figure of christ christianity has judaic roots and is therefore irredeemably tainted only the weak continue to worship a dead jew the emphasis on the judaic roots of christianity however is regarded as of secondary importance to its usurpation of the rituals sacraments and hierarchy of the ancient pagan solar religion mithras which was introduced into iran and india by marauding aryan tribes from the russian steppes between bce and before spreading to the roman empire although it failed to defeat early christianity in the battle for religious supremacy during the fourth century mithras continues to be viewed by esoteric thinkers including evola and jung as an alternative path the west could have followed it retains its appeal as an initiatory cult or aristocratic order akin to the knights templar or latterly himmler s ss which the nrf claims had its origins in various anarchist droite circles l e the black sun and the thule society while christianity tried to neuter this vital expression of the aryan psyche the awareness of europe s faustian destiny is currently enjoying a renaissance within the occult milieu these ideas were also absorbed by thinkers like evola and rene gue non who discerned in them the fragments of a hidden albeit distinct and fundamental truth for southgate as for evola tradition is an an underlying current which both permeates and trans cends all southgate s discovery of evolian primordial tradition and his consequent rejection of catholicism as the sole cosmological truth ran in tandem with his immersion in the industrial music scene this cultural vanguard is spearheaded by a number of gothic industrial dark ambient black and viking metal bands including allerseelen blood axis burzum current dark holler death in june endura mayhem ostara puissance and sol invictus though it also encompasses more commercial bands like cradle of filth although it would be an exaggeration to say that these groups conform to a defined political agenda their music serves to diffuse the ideals of mithraic paganism and nordic folk myths within this youthful underground subculture far more effectively than any number of meetings and marches could thus providing the perfect antidote to the spiritually enervating multiracial values of a globalizing system southgate has also noted the potential of the straight edge punk movement and its hard core of puritanically intolerant followers an interesting development given exaggerated reports of an emerging anti anti establishment pro bush right wing punk movement although southgate realizes that the groupuscular right cannot control music orientated youth cultures he believes a minority can be induced to take a direction basically conducive to our aims southgate seeks to do this through his online magazine synthesis which features a music section replete with interviews and gig reviews this is not simply cynical manipulation southgate appears genuinely interested in the counter culture he seeks to target his fanzine tribal resonance the voice of the racial avant garde reveals southgate s strategy of linking his ideas to the common language and the big ideas of our culture through the medium of musical subcultures and the creation of alternatives from without southgate hopes to permeate existing political subcultures trans versally as the nazi s did through a process of cultural osmosis that aims to recode the social symbology of the host culture so that its ideas can metastasize throughout the body politic recalibrating its genetic inheritance by creating cultural hegemony the groupuscular right believes it can forge the political space necessary for political and racial hegemony the struggle for cultural heg,0 +air france klm i dont think the two flags should be there since it s a french incorporated company headquartered in france it s majority owned by french investors and adding the dutch flag doesn t make sense true klm was originally dutch but it s not anymore,0 +addition of history as can be seen i have added a new history section for the bank of liverpool previously there were just a few lines of intro i have taken it up to when the bank acquired martins bank and became the bank of liverpool and martins there already is separate article on martins which makes reference to the bank of liverpool but it is not well sourced and could be made more comprehensive i propose continuing the bank of liverpool history to when the name was shortened to martins and possibly beyond how should the overlap with the martins bank article be treated the name change to martins is really a red herring it is the liverpool entity which was dominant and provided the continuity until its acquisition by barclays and therefore i suggest should be the main article one solution would be to have martins pre history as a self contained article with the bank of liverpool article continuing up to,0 +ok i ll try to sort through your latest post here let me know if i misinterpret something first you specify a theory axiomatic system namely zfc p p p omega exists let s call that t for easy reference now you argue that t proves the existence of a model let s call it m the because it s not a model of t but of a new theory such that m satisfies zfc p p omega is in m now do you mean the real p omega or do you mean that m satisfies p omega exists that is that there s an element of m that m thinks is p omega i m guessing the latter that m satisfies p omega exists you say aleph is in the model and is less than or equal to the cardinality of p omega again i m guessing you mean that this is in the model s opinion that is m satisfies the statement exists and ok so going with my guesses thus far i agree that t proves the existence of such an m m might be for example m g where m equals which is a model for t and g is m generic for the partial order to add cohen reals,0 +never been a member of the u s peace corps is that for real,0 +style background color f fa padding cellpadding style border px solid background color f fa vertical align top color hello welcome to wikipedia thank you for your contributions to this free encyclopedia if you decide that you need help check out getting help below ask me on or place on your talk page and ask your question there please remember to sign your name on talk pages by clicking or using four tildes this will automatically produce your username and the date finally please do your best to always fill in the edit summary field below are some useful links to facilitate your involvement happy editing width style background color f fa style width border px solid f background color f fa vertical align top getting started a tutorial our five pillars getting mentored how to edit a page upload and use images getting help frequently asked questions tips where to ask questions or make comments request administrator attention policies and guidelines neutral point of view no original research verifiability reliable sources citing sources what wikipedia is not biographies of living persons manual of style three revert rule sock puppetry copyrights policy for non free content image use policy external links spam vandalism deletion policy conflict of interest notability class mainpagebg style width border px solid f background color f fa vertical align top width cellpadding cellspacing style vertical align top background color f fa the community style color build consensus resolve disputes assume good faith civility etiquette no personal attacks no legal threats wikip,0 +i believe the last sentence here encapsulates my sentiments regarding recent improvements to text shall we also attribute the other various references where simply canada is indicated as the name to just the original authors of those works furthermore per the edit comments this reference also here makes it rather plain,0 +typical troll most of the bio which was not written by me is about the various martial arts i have encountered never said i was a master of all of them one paragraph at the top mentions three of my thirty books i figure that s pretty humble lol only two references to getting some publicity overseas nothing here but you read that as boasting take some reading comprehension courses obviously you are a fool lol ashida kim,0 +i lol d hardest at j delanoy s p cobra,0 +tim shuba those aren t spam links contrary to your false and wikipedia policy violating statement e g it violates wp assume good faith the theophysics website is hosted on free website hosts some of which place adds on html pages yet no money goes to the website creator,0 +your most excellent presence is requested urgently at wikipedia talk featured article candidates wikipedia excellent short articles we need some idea on articles with word counts below certain cutoffs can you give us a rough idea to move forward on this wt fac is in turmoil and i belive this is the best solution talk,0 +ok ok i m sorry for that too i won t sent you those pictures again and i thought you leave your apologize comment on my talk page but you didn t,0 +i don t see a disagreement but one could interpret the rationale and its exposition in various ways talk,0 +i agree that this article is over the top pov,0 +justin vaisse s opinion this relative absence of french american political and social unity helps to explain anti french sentiment in the united states french historian justin va sse has proposed that an important cause of overtly expressed public hostility toward france in the united states is the small number of americans of direct french descent http w politiqueinternationale com revue article php id revue id content synopsis while he acknowledges that this is not the direct cause of anti french sentiments he argues that it explains why these sentiments can be expressed publicly without being seen as a gross violation of political correctness va sse contends that by comparison the public display of such sentiments towards other ethnic groups or nationalities would be met by strong disapproval he proposes that as france has no powerful and organised lobby to defend it it is socially and politically acceptable in the united states to express negative sentiments of the frenchpierre verdaguer a turn of the century honeymoon the washington post s coverage of france french politics culture society vol no summer just to answer i ve read before that the proportion of french descendant in the us is way higher than thought because as the french colonized the new world at the same time as the brits but got outnumbered pretty quickly they were mixed into the mainstream america however it s true that since most of them lost traces of their heritage no lobby exists nor defends them as they don t represent or try to represent,0 +funny i don t feel block,0 +sounds like it s time for a new entry wikipedia cabal there is no cabal yes i m being sarcastic nov utc,0 +the use of the word indians in the war of wiki stop using the word indian it is both offensive and incorrect in more then one way indians are from india any use of that word referring to the aboriginals of na is ignorant and embarrassing,0 +redirect talk jeopardy video games,0 +several ncaa brackets posted i did some work to address the issues you raised and i ve uploaded linked in several sample tournament pages see ncaa men s division i basketball tournament which has an infobox at the bottom i added one tourney page for each full decade of the ncaa tournament barring any huge objections i d like to add the remaining pages tonight,0 +sure thing i ll find the site and post them once i do dr benjamin,0 +proposed move to stiffness to weight ratio why is this article named with the least commonly used term for this property google returns results for specific modulus results for specific stiffness and results for stiffness to weight ratio i could understand this if wikipedia were advocating the term specific modulus e g because it is shorter or more technical sounding or w hate ver however my understanding was that wikipedia was explicitly not in the advocacy business and that its articles should be named with the commonest term in this case the commonest term occurs ten times as often as the other two terms this name has the further benefit of being self explanatory whereas those unfamiliar with either of the other two names would have to consult a dictionary when they encounter it in a text which may well be why it is by far the commonest term i therefore propose moving this article to stiffness to weight ratio and linking the other two terms to it this won t compromise findability in any way but the choice of name will indicate the most commonly used term,0 +why commonwealth instead of dominion based upon comparing the governments of the dominion of canada and the commonwealth of australia i don t really understand the differences the idea of a commonwealth seems to compare directly with that of a republic so if the queen of great britain and northern ireland is the queen of australia how can one style australia a commonwealth would it not be a dominion as is the case for canada and would not the states of australia likewise be provinces i honestly don t understand the differences between each of these and if someone could explain them to me it would be greatly appreciated july utc,0 +stop editing the list of regular show episodes page regular show is on season and it was confirmed by benton connor who works on the show if you edit it one more time you will be banned,0 +abuse of your admin powers being discriminatory at all is unnaceptable,0 +redirect talk dr johnny wildside,0 +what is the reason not to present him this way regardless of whether the jse journal is less than nature or cell obviously nobody is perfect there is nothing wrong with just presenting him the way he is have we got similar sources that rebut his review or maybe a quackwatch response,0 +alright but personally it shouldnt realy be there since like i said it wasnt a material loss such as a jet and it wasnt in libya or because of enemy action perhaps it could be mentioned else where in the article but not in the casaulties box since that implies war casulties,0 +i have reverted the article to the older version with references,0 +hi a bhadaniji is a magniloquocent personage he will remember your service and mention you thankfully in his magnimum oppositus to be published soon,0 +it s spelt colour,0 +also any ideas on how to fix the problem here without screwing up the layout completely,0 +august,0 +thanks and palpatine thanks for copyediting the padm amidala article i appreciate your assistance let me know when you re ready for me to copy the palpatine revision over to the article space i m not in a hurry or anything things look a little hectic for you right now and this isn t a move i want to make without back up,0 +what a joker you are european parliament has no power to do anything it is non binding because it is not serious and silly reports like that are not meant to be serious what is more important is that we ruled your ancestors for centuries and trying to put negative images of turks in the turkey page is not going to change that this is not a place for you to get your revenge go and edit the golden dawn wikipedia because your ideas will only be welcome there,0 +which originally appeared in the london independent on august is i think excellent in both sensitively disputing the official account of flight and highlighting the us media s reluctance to do so i am unaware if the titular questions have been answered in the past three years or whether the journalist s sources have since been discredited cberlet as you seem confident that they have been do please provide proof please note though my point is not that this article should be rewritten to claim that the flight was shot down or even that the possibility should be mentioned simply that inserting the commission determined that would make this article more objective in places does anyone think these words word make it objectionable,0 +alexi don t tweak things you are not making sense on one had you state that you are notable because a champion on the other you say that you are notable but you are not that notable fps stated that i am right if we agree that he was notable in then i go ahead and put my lead as follows if you disagree bring the version here in the talk page pyrros dimas born in october is a retired professional weightlifter he is considered as one of the greatest weightlifters of all times having been three times olympic champion and three times world champion dimas was born in albania and competed first for the albanian team however he is of greek ethnicity and received his major sports results under the greek flag after he emigrated to greece in references let s talk,0 +legally there are no rules which state any geographical or political requirements which a state has to meet in order to join the schengen area there are such criteria for joining the eu but this is a different matter the only possibility to join the schengen zone would be to enter into a treaty with the eu which includes a clause that schengen related eu law would be applicable in the associated non eu state the associated state would only have the right to be consulted thus the u s would have to accept each and every majority decision taken in brussels whether citizens of this or that country would need a visa for entry into the area or not and the u s would have to accept that every third country national holding a residence title of a schengen state could enter the u s without even being checked to bil guadeloupe and french guiana are not inside the schengen area because this would e g require france to equip the complete rain forest border between french guiana and suriname brasil etc with high tech infrared sensors which would detect every monkey which is crossing the border just in order to avoid id checks on flights between there and europe i can understand why they do not invest any money into this,0 +oldlady productions history oldlady productions was created in by their first actors ryan and marco they created oldlady productions after their first video soccer battle oldlady productions then went up to a cast of people about a year later oldlady productions fired to of their members daniel and steven and got to new actors marino and gianni their most viewed video on youtube was their camp rock parody video with over views after months that it was uploaded this was a big break for them because they never imagined getting anywhere close to that amount of views although in reality it is not that many views for a new video company it was fantastic videos we do not know that exact amount of videos that oldlady productions has due to the fast that they are still under construction here are a list of videos we are sure they have released soccer battle play by the rules american idiot the prisoner hero movie the fight of a lifetime ryan v s marco nothing fashion show ryan v s marco part effects of bullying what happens when you don t play fair the amazing jog of detective movie camp rock how to be a bro music battle never back down training video parody chriss angel james bond these movies were done for amusement purposes before oldlady productions commenced their actual company videos oldlady productions is planning to create and unveil new and improved movies starting with soccer battle you may only be able to see all these videos on the official oldlady productions website most of these videos will not be on youtube because they are starting their big outbreak with soccer battle bonus videos oldlady productions has also made some bonus videos some just being announcement and others behind the scenes here is a short list of those videos soccer battle production progress trailer oldlady productions intro video behind the scenes friends theme song theme song with olp clips oldlady productions announcement olp news newest videos these are going to be oldlady productions s new and improved videos here is a list of videos that are know to be released so far soccer battle should be releases by the end of october beginning of november these are the only vidoes oldlady productions has mentioned of being released so far oldlady productions crew these are all the people involved in oldlady productions ryan gugliotti actor editor marco martino actor marino marinakis actor luciano vigliotti actor gianni delli colli actor anthony lariccia technical producer other crew members daniel amato got fired steven nero got fired these are all the people involved with oldlady productions,0 +july flash,0 +i am not going to publish my ip on this talk page i suppose i can log out go to my ip talk page and put the autoblock template there but it will appear in the recent changes list and could still be traced to me i think i can wait the hours i don t know why i would be block for hours and my ip auto block for hours perhaps needs to be contacted and informed that in the future he should set the ip autoblock for the same time period as the block thank you,0 +but she is notable as symbol and subject of book about her it was trans lated in a number of languages she is the same case as arthur all cardinal is unknown and opinions statements and controversies create overwhelming majority of articles so again do you plan move king arthur to king arthur controversy o,0 +well done wikipedia from molly in arbroath scotland dear wikipedia i am glad that you have included a section for opposition forums to the gmc to appear on your website i had earlier thought of stopping my donations to wikipedia over your failure to acknowledge the abolish the gmc group but will now continue to support your cause because i am now satisfied that your inclusion of them now shows you to be fair my neigbour lost her only child because of the incompetence of one of the current bosses of the general medical council but the gmc covered up the case so we couldnt get justice so please permanently protect the gmc opposition page from further attack by unscrupulous gmc agents as i have just had to re paste it in honour of the poor wee child who was murdered by the wicked gmc boss please do this in memory of him thank you my name is molly from arbroath scotland,0 +final unblock request,0 +hello hi blu aardvark glad to see you did not permanently leave wikipedia i was wondering why my template current event template redirect wasn t working couldn t see the obvious talk z thanks thanks for taking note of the arcata eye and plazoid pages happy birthday have a great day talk admin fighter that was really funny gave me a good chuckle you should have just crossed it out and left it in talk removing religious and political categories recent attempt at vote stacking leaves a bad taste in my mouth were you referring to this wikipedia administrators noticeboard incidents catholic alliance of wikipedia like vote stacking no i was referring to a wikipedia email i recieved earlier today sent by now policy proposal hi you recently commented on bible verse articles and may therefore be interested in commenting about a proposed policy covering roughly specific verses wikipedia centralized discussion verses of kings and ubuntu logo blu i noticed you changed the logo for the ubuntu linux user box why the usage policy on ubuntu s offical site clearly allows for such use besides the logo is just that a low resolution image of a logo which is allowed under fair use i am aware that some discussion has been going around about fair use images in user boxes if you changed the logo to tux because i labeled it as a fair use image and not with some other licensing information i m sure i can find an appropriate image copyright tag at the time i had changed it several ongoing discussions had indicated that copyrighted images and logos available under fair use were not to be used in userspace per wikipedia policy the ubuntu trademark policy may allow it but wikipedia policy per wp fuck is to limit images that are not available for commercial use which the ubuntu trademark policy explicity disallows talk contribs the preceding text was copied from user talk jcarroll wp npa please review and adhere to wp npa wp civ and wp wqt please re familliarize yourself with wikipedia policy thanks in advance i am fully aware of the above policies thank you i do not feel that it can be considered a personal attack or incivil to call a troll a troll i m sorry if you don t agree with me in that but that does not mean that my statement is a violation of any of the above policies talk contribs it is a violation and you must refrain from it wp npa is non negotiable funny nobody considers it a violation of wp npa to call user willy on wheels a vandal nobody con,0 +please stop if you continue to vandalize wikipedia you will be block from editing talk,0 +will you be archiving nws and spc maps from today and tomorrow to include on the page do you think it would be a good idea,0 +npov tag an anonymous user removed the npov tag yesterday without any comment i don t think the article is quite ready for that yet because its problems are not really resolved it retains a poison pen hangover from what seemed to be edits from anonymous users with an agenda and we ended up with some odd compromises like a miranda devine mention in the first paragraph she s really not important enough imho dodgy sources like cnsnews com continued overemphasis of race etc others may not agree but let s see,0 +i have added some introductory material that i believe clarifies some issues disorders of attachment are not like chickenpox they my occur in many forms and may even amount to normal variations and this point should be included in the article,0 +dhoni is a rajput media example ogg dhoni is s arajput check this link http my opera com aaryanrajput blog,0 +i know what you re guilty of though i ve seen you up the page threatening jazz with outing and threatening me too how come all willie s friends are cyber thugs,0 +reliable source your reference doesnt even exist,0 +decline removing the threat from this page is not sufficient unblock will not be considered until you have unambiguously retracted the threat of legal action this point is not open to debate,0 +also the last part of the last scentinence do things is not really that descriptive of what is happening,0 +re this it looks like ultrabias dy,0 +open the old page again my name is irene tandry i don t care about your contribution but i hate you blocking my account in wikipedia so that i didn t get second chance to fix the page i made i ask you can you open see me novel into the new page so i describe that page in my own words,0 +is a common prostitute a sock puppet i ve done lots of edits perhaps but the e bitch project is now gone so it s only about edits i can become foul mouthed is your basic sock puppet mouth pervert pervert c est moi fourthave,0 +duly noted advice well taken and i ll try to do the same for seemingly sarcasting remarks i find in the future happy editing,0 +does fall under wikipedias nor policy,0 +homo sex ity hi everyone i would like to come out and admit my homo sex ity cheers talk,0 +please do not delete hi i am animeking please do not delete my entries if you need to contact me animeking aol com or animeking on yim or aim,0 +shai hulud all shai hulud albums see shai hulud discography vocalists a profound hatred of man chad gilbert hearts once nourished with hope and compassion chad gilbert the fall of every man chad gilbert a whole new level of sickness geert van der velde crush em all vol geert van der velde that within blood ill tempered geert van der velde a comprehensive retrospective or how i learned to stop worrying and release bad and useless recordings damien moyal chad gilbert misanthropy pure matt mazzali,0 +we are trying to produce useful and informative and sourced articles,0 +i am talking you are reverting me because we must talk and you do not as i can see from this wikipedia oui,0 +ditto we have tags as such andother english sources sugest tehsame too,0 +homo sex marriage is totally gay well it is,0 +name microsoft lists the name as groove music in several sources a name that has been repeated by several news sites winbeta wmpoweruser gotta be mobile this is xbox inferse also note that the image used on all news sites even the one that don t call it groove music use the image that reads welcome to groove music so i suggest renaming the page,0 +franconians let me say it with marlene dietrich where are all the franconians gone i remember that there are not only low franconian dialects related to dutch but rhine franconian dialects spoken in hesse rhineland palatinate and luxembourg e g and main franconian dialects spoken in northern bavaria because it is not true bavarian dialects are spoken in the nuremberg area,0 +i have once accidentally edited someone else s talk page comment before as well that time it did not result in a block,0 +yes i am a notorious stalker of talk pages you userfied an article for me back in april and i guess your talk has been on my watchlist since then regards,0 +no it does not the infobox clearly says they are gone but this discussion is old every now and then someone says if we write x someone might assume y the consensus is we can t hold ourselves responsible for what people wrongly assume out of their own volition if we write x someone might also assume w and z too we can further clarify in the article body but turning this infobox into a copy of the infobox on internet explore article or w hate ver comes last surely isn t the way to go still if you are not convinced you can proceed with wp dr call wp o or something best regards,0 +why i m talking to you,0 +silesians andrew i have not made any comments out of a desire to provoke you i have been editing this article out of a desire to ensure it meets the standards and conventions of the english wikipedia i am sorry you had a negative experience with the german wikipedia but that is a separate project from this english project assuming good faith is a fundamental principle of the english wikipedia i advise you to give editors a chance instead of assuming the worst i inquired about silesian polish because silesians are sometimes considered a separate ethnic group i am not sure what you mean by reverting the article upside down my editing has been done to ensure that its formatting and style is consistent with other biographical articles as i do not anticipate being able to copy edit the article further i am removing it from my watchlist good luck with the article olessi thanks for you comments and in fact fruitful discussion you are right that the work of a person is most important however there are much present and past propaganda which destroy the peace if only some people would show objectivity and patience as you did it could be clear up to mention nationality is however important since exceptional individuals inspire new generation of a nation unfortunately nations or ethnic groups will still exist i have to hope for peaceful coexistence of them and fair competition seems to me that competition has to exit too best if for fun only i am conscious that english and german wikipedias are separate projects but you see when i approach german wiki dzierzon article the polish relevant article was attacked by some german silesian polish guy it cost me more then here on en wiki to settle the pl article well so sorry if you did feel bad about my attitude possibly i explained more my excitement with silesian is in short like this originally they were slavic tribe spoke polish as i mentioned for some to hundred years there were under german governments they had bad time as you possibly can imagine many of them married with german and were are of course confused who they are you know the pressure on east of resilient nation and of course polish german conflicts continued finally in poland returned and become new problem for some of the natives even those who honestly considered himself polish silesians at the end of war could be persecuted there in poland was complete disorder soviets and communists arrived most of them real simpletons any way national government just pro soviet mafia was mostly occupied with fight against democratic opposition polish borders were shifted we lost some of our area and millions of people from east territories moved to present west poland you can imagine that most of them were not intellectuals at all some of them completely simple people they spoke different polish dialect also on top of this in the post war pro soviet atmosphere criminals found good playground well i do not know if you are familiar with criminal minds unfortunately i am this is like gangrene on fresh wound literally thus many of the native silesian could be robber in poland which they wanted so much i believe that in such conditions many simpletons could use the opportunity accusing natives to be germans now the present time some of the falsely accused people remember the tragic experiences and want rehabilitation and apology they could be absolutely right however there are many germans who want their property back and some just using opportunity to stir in internal polish affairs despite the final border agreement between poland and germany signed on november and governments effort to improve relations finaly i have to say i beleave that polish are hospitable and very often na ve not many realize that politic need caution those who realize that have a hard time to wake up the na ves some procentage remember lectures of history and objectively too many germans are toublemakers i am also convinced there exists something like national character you can have obviously you own opinion let me have my own returning to silesians it is something close to squaring the circle i wish the true silesian all the best but i do not want fith column on polish terytory in addition sorry if i used posibly ofencive reverting the article upside down that was in the heat of the battle wich i still have with ge wiki they just arogantly do not answer if they do not like and refuse mediatior at any imaginative pretext that suck s sorry and thanks again feel free to contact me any time you need best regards andrew december,0 +list of films considered the worst,0 +you re most welcome enjoy wikipedia,0 +and as i pointed out there is no incident to report you wasted their time and mine,0 +banging your head against a wall hi i see jayjg has been leaving messages on your page with his false concern about the rules and supposed reasonableness in reality jayjg is a rabid zionist and is trying to purge wikipedia of any negative information about zionism and is trying to paint muslims in a bad light along with many of his cohorts the problem is that jayjg is part of the wikipedia cabal when there were elections despite massive efforts to the contrary a number of people got a higher vote percentage than jayjg but jimbo wales put him on arbcom anyhow jimbo has shown his true colors as well these people control wikipedia they are all together and attacking you no one is coming to your aid this is because they control wikipedia with jimbo at the center and have more or less driven off everyone else you are banging your head against a wall here any massacre by zionists against palestinians will be covered up disorted justified etc anyone who attacks an israeli soldier will be castigated here my suggestion is to direct your efforts to somewhere more creative like a wiki encyclopedia that is not pro zionist and anti muslim like this one or if you do continue here for a little bit to spend less time it is better to waste hours of time accomplishing nothing than eventually you will give up here everyone does you are fighting a losing battle,0 +i could care less about american hefeweizen make a seperate article this is about hefe in general i d like to add granville island breweries to the list but lo and behold it s a list of american brands and gib is canadian go figure jackmont oct,0 +cheers i wondered if you were doing it when i saw you make some edits i ll see what i can do,0 +re happy turkey day thank you very much and i wish you the same porpoise,0 +not tactics you create a page about a non existant subsiduary change all the links and then complain when things don t go your way you created the chaos and then demand that others fix the problem that you created you stuffed it you fix it pretty simple in my book things were pretty good until you invented the bmw motorrad subsiduary and changed everything now that it has been shown that you were wrong you blame everyone else for the chaos caused by your arrogance maybe returning things to how they were before you broke it would be a good idea oh an apology would also be good,0 +well we all know that the only way user twat can get off is by blocking other users,0 +to the writer of above paragraph how mean and rude your statements are van johnson was a wonderful actor eve was the love of his life and what you wrote above that he liked young men and teenage boys is lies he was not gay he was bi sex according to eve and from other sources please do not disrespect actors on wikipedia,0 +service branch as the table is currently designed non army service branches are added as a note in the grade column this looks a bit cludgy would it be worth adding a separate service branch column instead,0 +she has said that madonna is a major influence,0 +to father tanner thank you for bringing some sanity to this article after having read the latest version i must say that it very well balanced considering some of the horrible slanting that it experienced for a while there i would think that protecting the page is a good idea even if it means my newly created account won t work that is if the tone remains such as it is presently on fish campmore s blog i have read through much of it mostly it is complete trash the rest of it shows very poor scholarship at best the threads on it during july were very shrill and completely out of line i would not like to see it linked for those very reasons cecfan august,0 +is it still a stub,0 +hi umeboshi thanks but i think i m just going to let this topic go as far as wikipedia is concerned it is too stressful to do battle with some of these characters and i don t really know my way around the various political systems if you are interested in re posting and pursuing the topic i think that would be great i ve got to release it i had steam coming out of my ears last night and at this advanced age i ve reached that s not too good thanks again and i hope you are having a very nice day today best wishes,0 +rollback rights request hello i see you are listed as an admin who is willing to consider and grant rollback rights i would ask for that consideration at this time i have edits and have reviewer rights i have written ten articles and helped two gain good article status please feel free to ask me any questions needed thank you for your time,0 +current events story hi i removed the story you posted on cuurent events for several reasons the story didn t seem to belong on the date where you placed it if the story was reported in a newspaper dated january th it shouldn t be listed under the january th events i know this may be an important story in belize but as far as i can tell only one newspaper is carrying it and there are no hits on google news it doesn t appear to be of global importance which is usually what it takes to be included on current events the summary was way too long two or three sentences is usually the maximum for a summary if it wasn t for the first two points i would have attempted to edit the summary instead of deleting for now i m going to remove the story but if you can find more sources please feel free to include a short summary and link on the correct date jan utc,0 +overrated derek jeter is overrated i don t like him at all he shouldn t be making mill a year for having average seasons,0 +er he s me please feel free to check out my user page,0 +hi rick thanks for your message i tried working on this but the current complexity of template infobox city is too high for my brain to handle i tried some trans formations but failed i can t fix it for my taste this is out of control,0 +redirect talk coombe junction halt railway station,0 +ferrari t sorry spute when i saw you hadn t touched the page for nearly an hour i thought you d finished editing if i d known you were still going i wouldn t have butted in,0 +about your delete ok im talking to you as a wikipedian so please forget from this conflict and focused on the facts ok the herut was never israeli minister therefor she can not be the major party ok and about her policy i see you know hebrew so read this http he wikipedia org wiki d e d a d d d d d d d f for god sake this is wikipedia is mean to bring people facts we should not enter this conflict here ok there is forums for that i won t even argue with you about this conflict if you want you can be a member here https w facebook com jew ishvoiceforpeace fref ts and write your opinion wiki is not the right place,0 +fixed thanks for catching that,0 +thanks again for both your help and your support,0 +redirect talk central statistical office india,0 +first of all there s no need at all to apologise about discussing your dispute here secondly i think it would be a good idea or actually an essential step in solving the dispute to back off from this for a few days maybe even a week as you ve been back and forthing for months already another week can t possibly hurt you ll find that walking away and editing some articles unconnected with farming or with animal welfare will help put this whole hill of beans into its true perspective it will give us time to find other better or at least more widely acceptable images to use after i am ready i will start a new section in article talk where we can take this matter forward and arrive at a solution we can all live with how does that sound,0 +there appear to be no serious objections to the changes that i made i think from this point on you re good to go if i can be of any further service don t hesitate to contact me ama,0 +hey what the heck do you think watch this page means i didn t have anything with the recent vandalism and personel attacks on my account guess what i am just here to freaking edit stuff in a good way when you idiot s screw it up by blaming me for something i didn t do i get pissed now what the hell is going on here,0 +i agree some of the speculations need to be trimmed down and attributed i m removing the second section on moore s law as it seems especially speculative i ve no idea where those numbers are from moore s law itself is too significant to cut out entirely but i ll try to ground it more in reality i ll look for some sources for the bits in the singularity technologies heading as for the article being uncritical i m just not seeing it there s decent sized section of attributed criticisms nov utc,0 +apparently you don t realize that your colege operates under small digits if those are block you are gone for good also i will not bother agruing with you on your opinions not like i can change them but you are a troll a sockpuppeter and a vandalizer if it takes a block of because we have had nothing but trolling from that college that that is what it takes daedalus talk are u sure about that,0 +references in the talk,0 +hi i see that you blanked the gay article but only administrators are actually able to delete pages it is best to let the delete tags stand also if you want to make further experiments there is a sandbox where tests and experiments are encouraged have a look at the welcome page for information about contributing to the encyclopedia thanks,0 +silly details sihanouk continued to live in luxury in cambodia after he resigned he was provided with an air conditioned residence and complained in his memoirs from the period about running low on rum for his bananes flambles desert that second sentence adds nothing to the article and actually sounds a bit silly so his luxury residence was air conditioned so what he ran out of rum for desert come on this is an encyclopedia silly details like this have no part in a biographical article,0 +according to tv history channel nova the stove impacts us little today and is not important the stove is difficult to make work correctly the complicated flue will back smoke into the room if not operated just right as a result the design was never popular even in franklin s time and quickly fell into disuse i dunno if there s a connection between the franklin stove and box shaped fire boxes used today i don t recall any mention of the fact on the tv special,0 +this game is teh awesome,0 +featuring your work on wikipedia s front page dyks thank you for your recent articles including partita penderecki which i read with interest when you create an extensive and well referenced article you may want to have it featured on wikipedia s main page in the did you know section articles included there will be read by thousands of our viewers to do so add your article to the list at t tdyk let me know if you need help reply here wikiproject assessment tags for talk pages thank you for your recent articles including partita penderecki which i read with interest when you create a new article can you add the wikiproject assessment templates to the talk of that article see the talk page of the article i mentioned for an example of what i mean usually it is very simple you just add something like wikiproject keyword to the article s talk with keyword replaced by the associated wikiproject ex if it s a biography article you would use wikiproject biography if it s a united states article you would use wikiproject united states and so on you do not have to rate the article if you do not want to others will do it eventually those templates are very useful as they bring the articles to a wikiproject attention and allow them to start tracking the articles through wikipedia article alerts and other tools this can help you too as the wikiproject members will often defend your work from deletion and try to improve it further feel free to ask me any questions if you d like more information reply here,0 +none taken no hard feelings at all paranoia is what keeps the world interesting and i wouldnt trust me either and thanks jimbo,0 +just in case you think about deleting any of the written context i have put on wikipedia i must tell you that all of it is from an excellent source especially the article on rafaella hutchinson as i was her best friend at st hilda s thank you for reading this and raffie if you read this please keep in contact i miss you,0 +that is to say are you gay or straight,0 +it s a little bit too revisionist for my liking the first two batches anyway but i can live with it probably ought to have a prominent link to them somewhere though,0 +the german version i find a quite detailed article on this topic in the german wikipedia de ugly duckling theorem but i don t understand german so it would be great if someone could trans late that one into english,0 +anonymous anti vandalism vigilant vigilante,0 +wrong licenses i have corrected the licenses for the majority of the images you have uploaded the exceptions are image wankhede mumbai jpg on the flickr page the author has apparently agreed to license the image under one of the free creative commons licenses but failed to actually change the licensing image dhoom jpg concern that the creator is in no position to submit the image under a creative commons license as it depicts a billboard for a film and copyright to it is held by somebody else than the photographer as such the photo may not be used on wikipedia except perhaps under fair use policy which probably doesn t apply or under panorama freedom depending on what the copyright law of india says on this topic image bipasha jpg image description page implies that it is licensed for non commercial use only contradicting your copyright tag such a restriction is not acceptable on wikipedia in addition the link to the original source which could clarify which condition is correct of the image is missing image bom jpg the link to the original source at flickr is missing author uploads images to flickr as all rights reserved image chowpatti jpg to verify that the image is indeed under the license you claim the author should probably e mail the wikimedia foundation and confirm that it is indeed under that license image hydmall jpg the flickr page states that it is under a creative commons no derivative license a license that prohibits the image to be modified used in derivative works is not acceptable on wikipedia either image infobangalore jpg no evidence of the image being under a free license image brigaderoad jpg flickr page states all rights reserved image hoogly jpg the link to the original source at flickr is missing author uploads images to flickr as all rights reserved image haf jpg flickr page states all rights reserved image bangtemp jpg creative commons no derivative license image kolkahomes jpg all rights reserved image delhimall jpg creative commons attribution non commercial no derivative license unacceptable on wikipedia image yamun jpg all rights reserved image kolk jpg all rights reserved image myspalbang jpg all rights reserved image bangalore jpg the link to the original source is missing no evidence that it is under the creative commons license image lalbagh jpg taken from wikitravel uploader ought to confirm that he is indeed under the author and that he has licensed it under the license indicated image nagpur jpg who made this image there are several issues here there are multiple creative commons licenses not all of which are acceptable on wikipedia in particular licenses that prohibit commercial use or making of derivative works are considered unfree and can t be used on wikipedia except as provided by the fair use policy creative commons atrribution and creative commons atrribution sharealike licenses are okay also there are multiple versions of the licenses creative commons atrribution sharealike and are all distinct licenses the problem is that the upload dialogue only lists the versions and not the earlier ones when the image is under one of the older licenses you ought to edit the image description page and correct the number as far as i can see flickr only uses the versions of the licenses in addition some of the flickr authors have indicated that they allow the image to be used on wikipedia without making it clear that they release it under one of the acceptable licenses a permission that only extends to wikipedia is not sufficient either you should ask the authors to do one of the following change the flickr page to license the image under creative commons attribution or attribution sharealike license apparently this would change the licensing for all images and this may not be what they intend to do post a message to the image page with a text similar to the following i creator of the image agree to license it under the creative commons attribution license link alternately under the creative commons attribution sharealike license link this declaration overrides any statement to the contrary on this page e mail the wikimedia foundation permissions en at wikimedia dot org with a message similar to the above also specifying which image images the user intends to release under the license this would be the best choice if the author doesn t want to reveal his identity on wikip,0 +based on abusive edit summaries and pages he is editing at,0 +i know i reaslised that music videos are themselves part of the legacy and that the music videos and racial issue s should go together as they as linked strongly then i thought oh what the hell lets put critical and commerical together i shuffled paragraphs and pictures around and now it makes sense we can get thriller sorted today if people will allow it to have its own page i dont mind what you do with it here on thriller,0 +i agree her actual usage is of russia i will revert now to the version that we have all consented to,0 +i was telled it woul d be a single don t merge pzzschool,0 +israeli palestinian conflict protect yesterday there were relevent and reliably sourced casualty figures added to the israeli palestinian conflict article and some editors objected to this it seems you were called in to quickly protect the page from editing effectively blocking the inclusion of the figures you cited edit warring the more accurate term would be repeated reverts from those who did not like the figures for political reasons there are casualty figures in all the conflict war battle etc wiki articles i have referenced why not this one thanks romac the edits which you tried to make were a set of statistics for one year only which you attemepted to place in the first paragraph of an article describing a conflict of over sixty years this article covers an issue of extreme sensitivity and complexity the fact that your edits sparked so much conflict and opposition speaks for itself here at wikipedia we value the ability to achieve consensus and to be fair to many viewpoints and believe it or not we often do achieve that at the article israeli palestinian conflict it is not enough to disinegnuously claim that your figures were reliable without addressing any of the underlying issues or any of the conflicts which it clearly and immediately caused to repeat statistics for just one year of the conflict do not belong anywhere in the article s lead there are a wide variety of figures which either side could quote all in the name of objectivity which would clear and unacceptably attempt to create a slant towards one side or the other please note this is why we are careful when making edit to be sure that we actually have consensus rather than simply telling others that they should provide consensus i strongly object to your calling me disinegnuous sic you wrote on the article talk page that you agreed with hertz who argued that the statistics might be biased do you not regard haaretz as a reliable source please explain more clearly why you feel that citing reliably sourced and up to date civilian casualty statistics in an article about a war battle or conflict is disingenuous if you or any other editor want to add more statistics covering a longer time period then go ahead but do not delete relevant content added by other editors yes the edit sparked so much conflict and opposition but note also also that here at wikipedia we do not determine what is fair through intimidation by numbers there is a big difference between consensus and false compromise i apologize if you felt i was offending you in any way i only meant to describe the appearance of your edits not to describe you personally in any way if other editors deleted some edits it is because they genuinely felt there was a reason to do so and that the material was not beneficial or fair to the article i responded to your concerns and issues further at the article talk page thanks apology accepted and i will also make my further comments on the article talk page i am not a single issue editor i get around a bit on wiki saw the haaretz report and very much believe it is something very relevant to the article i can t say i know for certain why other editors deleted the material i try to assume good faith we ll see repeated reverts from those who did not like the figures for political reasons motive doesn t really matter its still edit warring its still disruptive protection is not an endorsement of the current version z man the subject of this article is a deadly conflict the lede is huge and yet it contains no mention of the casualties clearly there is something seriously wrong as a result your action here while well intentioned looks highly partisan worse than that it looks rather like like a cynical move to protect deniers those who wish to cover up atrocities the mass killings of mostly unarmed civilians in many cases recognised by western sources as war crimes if the events at this article really offend you it would be a lot better to lock it at the alternative version talk,0 +catarina i don t get that are you joking talk to me edits p s this will be the last post for a few hours i will reply by this afternoon,0 +surely you know how to use those see what i mean its petulant points like these that prove what i m saying yes you can get your point across but dont insult and patronize someone else in the process talk cont,0 +persian please don t remove all references to people being persian without any explanation sourcing i almost block you for vandalism but then decided to place this on wp anb i please stop or at least discuss this on talk pages,0 +here are the sources http w jpost com servlet satellite cid pagename jpost fjparticle fshowfull and http w israelnn com news php id but those are both just saying she was going to i can t find anything that says she has i was wondering if anyone else knew,0 +thank you very much,0 +thank you for experimenting with the page oil price increases of on wikipedia your test worked and has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia thank you for your understanding a link to the edit i have reverted can be found here link if you believe this edit should not have been reverted please contact me,0 +i ve already described the ways in which your case looks bad arguing isn t likely to convince me considered everything that i ve seen also please sign your messages on talk pages using four tildes,0 +my comments are being left up to warn others i have no idea what an spi is nor wish to waste any more time with you its clear your only purpose here is to smear the bnp since you are politically from the far left as your own page admits i suggest you think long and hard why you post here as this place should only be for those are neutral on politics,0 +no matter how many times i rethink it i cannot come to the conclusion that a creamery is a goddamn cheese categories sre for things of the same type and a category for northern irish cheeses should contain articles about northern irish cheeses not about cheese farms or cheese factories or cheese shops or people who make cheese how is this possibly open to interpretation creameries are not cheese,0 +uh oh somebodies got internet muscles,0 +what links content on what page,0 +birmingham sorry if the move was a bad thing i forgot to check the article s talk page and didn t realize it was quite that popular i ve added a bit to the discussion page if you d like to give your opinion tus the,0 +how did you decide that bukkake always implies a female subject also just because a word has a historical meaning doesn t mean that it can t ever mean anything else as culture develops the word rap meant to knock as on a door up until the late s for example would you deny the more modern use of the term the english language has no board to regulate it as french does with the l acad mie fran aise so you have no basis for defining what the word means we have groups and documents that define the proper use of words like you re and your for example but none such for words like bukkake if it can be shown that it is used in a particular way that is valid my personal belief is that there is no need for the qualifier gay just as there is no need to call men having ass sex gay ass sex but that s really irrelevent i think it is important to make clear the historical implications but not to deny that we are currently creating and modifying language even the fact that we have taken the word bukkake splash from japan and created this very specific connotation of splashing not just anything but specifically semen and specifically onto a person s face shows that this term is elastic and subject not to rules that we impose on it but by the meaning that it has to the people who use it,0 +provence and nice hello the deletion of the picture of nice of the article was cancelled but i absolutely don t see why nice should be part of provence it is part of paca of course but not of provence itself historicaly speaking nice belonged to provence during the middle age however istanbul was still byzantine constantinople more recently and on an article of greece no one will put a picture of istanbul,0 +it may seem trivial but your consistent refusal to use to sign your comments suggests to me that you in fact have no desire to join the church of wikipedia you merely wish to push one article through i see no evidence of your resubmitting the article did you save it did you check for it after saving rhaworth,0 +please avoid entering disagreements which were started by vandals this user has a history of vandalizing references in articles it took another user to tell him to stop removing cited material from a page and using those links to float above his modification though those links didn t back up his statement this is the definition of a vandal if you read his talk history you will see disagreements with other users where he removes cited material to impose his own uncited views,0 +please stop adding nonsense to wikipedia it is considered vandalism if you were just trying to experiment then use the sandbox instead thank you,0 +yep the fpoc looks good i may be around at bst which i understand is evening here just ping me on here and see if i respond i ll have a look in at your editor review after i think up a couple of questions to ask which i ll be interested to hear your responses to cheers,0 +it also said porto s official website said the move was official it is not a primary source,0 +dear editor kindly ask user abhishek to refrain from edit warring and vandalism sp balsubrahmanya is from andhra pradesh and has significantly contributed to telugu film industry when compared to others he has sung the maximum number of songs in telugu,0 +i hope others are around,0 +personally i reckon this pretty much answered my original question jimbo and i feel it s not a good fit for a userpage jimbo suggests continuing to think about it i agree i ve cheekily collapsed durova s comments about me above per her request because really they re a much better fit on my talk page not this one everyone is as ever most welcome,0 +articles for deletion hi orderinchaos do you think it would be appropriate for me to add subst prod not notable enough to have sufficient neutral references from which to source information to make an article suggest moving current content to another wiki eg http australia wikia com wiki main page australia wiki to the following pages grassroots left australian liberal students federation independents australian nus faction national labor students national liaison committee socialist alternative australia student unity australian labor students left alliance australia love and rage australia national broad left national organisation of labor students non aligned left small regionals thanks answering machine,0 +recent vandalism look at the page history for the guy that keeps writing linkin park rulz he s changed the first section to that repeatedly no matter how many times we reverted it,0 +can t seem to be bothered with actual fact,0 +i am gay love i am gay love i am gay love,0 +please do not delete my posts without explanation or warning i notice that your user page has a tag that says this user prefers discussing changes on the talkpage rather than engaging in an edit war evidently this is a lie,0 +the only vandals are pathetic wiki administrators as encyclopediadramatica com says right,0 +regarding edits made during december utc please do not add nonsense to wikipedia as you did to the bendigo south east secondary college page it is considered vandalism if you would like to experiment use the sandbox thank you if this is an ip address and it is shared by multiple users ignore this warning if you did not make the edit s to which this warning refers,0 +as well as strom mr solid south himself,0 +you made the second m in macmanus a small m that is not how his name is written can you please explain why you did this,0 +btw the article looks good for now as most of the information from the anti jonathan sources are quite factual but this heads up is needed in anticipation of future blp un compliant additions,0 +re sorry not your fault no need to apologize i do appericate you letting me know i am not sure how i will let things be heard from now on but we will cross that bridge when we get there again no worries take care t c,0 +so far i have these sources that i will use for william kaye estes s and his contribution to education bush r r estes w k studies in mathematical learning theory vol stanford university press dainaloo,0 +calling someone a consistent hypocrite is a personal attack pointing out a specific and relevant act of hypocrisy is not some of the same contributors accusing the journal articles associated with go as being of insufficient note were the same voting to keep the go article in the absence of any such third party mention beyond news y blog mentions that is hypocrisy pointing it out however exasperatedly is not a personal attack,0 +stop stop redirecting the teddygodzilla page to list of code lyoko episodes clearly i m in the middle of working on it what you need is patience man and don t give me something like you had enough time how do you know i haven t been busy what if i had to evacuate hurricane ike as a matter of fact my laptop charger decided to get fried and i have a very small amount of time on a computer now so my advice to you is to show some patience or you will find me being a major ass hole towards you,0 +redirect talk george washington carver senior high school,0 +catwoman reference material t man looks like you have found some good reference materials to add to catwoman i encourage you to implement some of that information there perhaps providing that level of detail in enemies of batman is not the best idea see how friendly i am being to you,0 +fa article please refrain from repeatedly adding the unsourced assertion that you are the only legal ip holder to firearms not only is it incorrect it is against our policies on no original research verifiability and conflict of interest you ve been warned before about it further insertion of the material will result in blocks swatjester son of the defender,0 +always good to have the ignorant and mentally defective getting together die soon,0 +crimea ukraine articles hi hj in the message you left on my talk page here you explained your reasoning for not protecting the relevant articles as my response there indicates i don t share your opinion but i understand where you re coming from in that comment you also said i d really like to avoid protecting them for the duration if that can be avoided but if you keep bringing issues to my attention i ll do my utmost to make your life easier so this is the bring the issues to your attention on my part see this rr request filed by user kudzu it s sort of gone past lots of disruptive anon ips causing trouble on these pages to pretty much full blown sock puppetry and abuse of multiple accounts by at least though likely more one person so how can my life be made easier spi i already filed one on one sock master though that s probably a different person and some other users have filed others for example the problem is and notice that a cu has not even gotten around to the spi i filed that by the time the cus get around to considering these cases the person s behind these accounts have already thrown them away and moved onto new spas which keep doing the same thing not sure what the best course of action here is but it s helluva frustrating trying to deal with this,0 +i understood it to be a term of art not a literal enunciation of a belief that a disembodied deity had possessed the bodies of humans in eastern virginia at the polling booth such a notion would be inconsistent with brat s free will theology and none of the rs that includes this quote have indicated he meant it as anything more than a literary flourish if they were unambiguous he intended to communicate he was in contact with god or some other super being then we d have something but they didn t right now we re making a scrapbook rather than an encyclopedia article,0 +to add the belfast telegraph april states after leaving banbridge lewthwaite moved back to england where she was born along with her ulster mother christine and father andrew who had served as a soldier sorbet,0 +i just went to the user page and cannot find this icon nor is the connotation reviewer topicon anywhere in my writing what are you seeing that i am not,0 +thanks that s nice of you to say good luck to you too,0 +i am not asking for unblock but can someone clarify is my block forever,0 +please see the rm at talk stawamus village requested move and i could list a few rms and cfds about squamish titles also i e squamish bc vs squamish people skwxwu mesh likewise but for now unfortunately that s a deadhorse because of all the people not really familiar with either and not in a position to know what the primarytopic is or just hostile to native names altogether all were substantially authored as well as titled by,0 +where the hell is kisame s section well and dont bother telling me to sign my post cuz i cant figure out how,0 +wow you really are taking this very personally calm down also do you realize how racist your above comment is japanese are no more inherently docile than any other race that you would suggest so genuinely offends me,0 +please do not make personal attacks wikipedia has a strict policy against personal attacks attack pages and images are not tolerated by wikipedia and are speedily deleted users who continue to create or repost such pages and images in violation of our wikipedia biographies of living persons policy will be block from editing wikipedia thank you talk,0 +m ssundaztood your recent contribution s to are very much appreciated however you did not provide references or sources for your information keeping wikipedia accurate and verifiable is very important and as you might be aware there is currently a drive to improve the quality of wikipedia by encouraging editors to cite the sources they used when adding content if sources are left unreferenced it may count as original research which is not allowed can you provide in the article specific references to any books articles websites or other reliable sources that will allow people to verify the content in the article you can use a citation method listed at inline citations that best suits each article thanks,0 +regarding edits made during september utc please do not add nonsense to wikipedia it is considered vandalism if you would like to experiment use the sandbox thank you if this ip address is shared by multiple users and you have not made any unconstructive edits please ignore this warning,0 +v fs max size this may sound random but wikipedia led me astray on my home work and i should try to prevent it for others the given max size in the actual maximum was bytes with singly indirect blocks and doubly indirect block pwb unix s variant had singly indirect blocks making the maximum bytes or half a mib is incorrect according to the version manual http wlehre dhbw stuttgart de helbig os v doc v fs html the max size is but cannot be larger than bue to only storing bits of filesize info in each inode rather than the number obtained above was the result of calculating it with byte addresses which is obviously incorrect given the definition in the manual,0 +see no danger in this remaining a legal supplement as it does work well for short periods of time and has an awful sour taste to it thus preventing any drugging of unsuspecting people it takes hours to begin working anyway so that wouldn t be an issue i,0 +as it has become apparent that your account will be used solely for unconstructive editing you have been indefinitely block from editing in accordance with wikipedia s blocking policy if you believe this block is unjustified you may contest it by adding the text unblock your reason here to this page talk,0 +the navigation template goes into the article where the heck do you wantit to go bottom of the page not the standard format but it works for me for now,0 +lol your edits,0 +ropemarks bondage picture your recent move from bondage bdsm to bondage sex has caused the image link to the picture of a female bondage model i took at boundcon to break the reason is that because of frequent vandalism this image was added to mediawiki bad image list where it was set that it can only be shown at bondage bdsm rope bondage and boundcon your recent move requires a change to this list but i m not sure how to go about to request such a change talk,0 +added a stub for article duos ii,0 +the definition is extended so that it eats also functions a function from m to r n would still be a function and not a tangent vector,0 +main page i think whoever is really writing this article should try to get it featured on the main page before the election because after the election who cares,0 +i m back i already created id occasionally forget to log in but you can see the same class c when i do i collected a massive number of diff edits on balkanfever who pretends to be neutral but is on record getting block for saying this about greeks under a previous handle not to mention his personal talk page is one big anti greek rant fest pointing to questionable fyrom news sources with highly exaggerated sensationalist titles no ass fuck ers has a nice ring to it d use it as a pejorative term i was ready to pull the trigger on both him admin futper and a few others e g macedoniaboy who says he is a proud fighter for united macedonia on his talk page with a detailed complaint about anti greek propaganda but since futper managed a civil discussion with me and now seems to be sticking to debating articles rather than threats of blocking i m going to avoid escalating this further for now ns as for the current naming disputing article i agree with you that some fyrom citizens honestly believe their claims but i don t think that reduces the existential threat to greece communism fell years ago in yugoslavia and the fyrom government appears to be getting worse not better imagine if in two hundred years they call themselves ethnic athenians and the cycle continues until their is no greece left there appear to be important quotes missing from the naming dispute article that clearly demonstrate that fyrom leadership are confused about their own national identity and confusing their own citizens in the process unfortunately i tried to add this to the talk page of the article but futper deleted it arguing ancient macedon is unrelated to the article even though his own editing history shows him adding an edit arguing that ancient macedon wasn t greek i didn t want to get into a revert war over simply a discussion of perceived facts but since i didn t think those facts should be censored either i thought perhaps you could add them to discussion on the naming dispute talk page assuming you see it as relevant yourself of course february the fyrom s president kirov gligorov at an interview by the foreign information service daily report easten europe stated we are slavs who came to the region in the sixth century we are not descendants of the ancient macedonians january the fyrom s ambassador in washington d c mrs ljubica acevska gave a speech on the present situation in the balkans she stated we do not claim to be descendants of alexander the great we are slavs and we speak a slavic language greece is the fyrom s second largest trading partner and its number one investor february the fyrom s ambassador to canada gyordan veselinov in an interview with the ottawa citizen he admitted we are not related to the northern greeks who produced leaders like philip and alexander the great we are slavs and our language is closely related to bulgarian there is some confusion about our identity i think the above needs to be compared to that of their current hard line prime minister s recent behavior he directly contradicts fyrom s own government s previous comments about themselves that apparently was unauthentically meant to assure foreigners that greeks were imagining fyrom propaganda and to reduce the issue to a childish dispute over simply names in order to get recognition prime minister gruevski officially meets prince ghazanfar of pakistan who claims to be related to alexander the great then uses it as an opportunity to suggest fyrom citizens are related to ancient macedonians and don t get me started on that incident where gruevski layed a wreath where a picture of united macedonia was clearly present which also seems to be missing from the existing article,0 +name the college has changed its name to simply collin college and did that over a year ago furthermore they now have a program that is a venture with several major universities whereby they offer bachelors masters and doctoral degrees this along with a student body of over k should the community college part of the name be removed,0 +upcoming album screaming bloody murder this seems legit the catalog number seems real see found after i did a google search using the catalog number from the allmusic listing of the album meh,0 +too many parentheses it sounds to personal with all those parentheses can someone please clean that up,0 +can you or anyone please tell me what s going on email me or something w hate ver it takes this is ridiculous i don t care for games t c,0 +i contacted you and only you because you are currently the only one who has said that pov problems remain but you have not chosen to elaborate on the talk page i am therefore inviting you to return to the article talk page and enumerate those concerns so that we can discuss them given that the article has changed substantially since you made your original post regarding pov issues it is even more necessary to be specific about what particular things you see as problematic,0 +merit badge collecting fac i have put this article merit badge collecting bsa up as a featured article candidate many improvements have been made this week i thought may like to look at it again and if so inclined vote on it thanks,0 +the source clearly says or criticise it in any way so where is the misunderstanding i think it cannot be read in more then one way according to the quote general criticism of soviet union will become illegal and i must say that i find this to be a truly sad day for russia when that happens,0 +articles ive just deleted the bug r r team or however that was spelled and notice other deletion requests on other articles here i also read your note on that article s talk page and think you may be misunderstanding the purpose of wikipedia we only allow articles on subjects that are notable generally this means that they have been discussed in detail in multiple independent reliable sources that means that a company that s just recently started that has never produced a product and that by the way those were written seem closer to a group of friends is not a suitable subject for a wp article basically if you can t find a number of newspaper etc articles discussing the company it shouldn t have an article i hope this explains why these articles were deleted in connection to this i need to ask you to stop creating articles on businesses of this type continuing to do so adds extra work for other editors and administrators and these are clearly non notable companies so much so that we used the expedited speedy deletion process,0 +hello friend just to tell you that i cannot tolerate wrong information on wikipedia you guys have to give all aspects of a information be it good bad acceptable unacceptable or controversial without hiding anything to make the information complete wikipedia is the information people trust upon so it implies that has to be true be bold that is how you can bring a change you are in the position to do just that one who fears has a very good reason that he cannot face the truth,0 +by the way what is meant by unmet human needs,0 +there s another good section of wp v one of the three principal policy statements of the wikipedia project it s called wp sources articles should be based on reliable third party published sources with a reputation for fact checking and accuracy in general the best sources have a professional structure in place for checking or analyzing facts legal issues evidence and arguments material from reliable non academic sources may also be used particularly if it appears in respected mainstream publications other reliable sources include university level textbooks books published by respected publishing houses magazines journals and mainstream newspapers please explain trine day s fact checking process to me and post a few links demonstrating their reputation for fact checking and accuracy prove to me that it s a respected publishing house,0 +you just don t give up do you why don t you try doing something positive stats section is unencyclopedic it s getting really stale a couple of comments here and there from the peanut gallery doesn t dictate policy how statisistics on eating disorders on an article on eating disorders is uncyclopedic is beyond me this is being positive contributing images and information that might actually be interesting or useful at least i make the effort as i understand personal attacks are a no no but criticising the content is not criticising the content is a bit hard to do in some cases because there is little to no content to criticise it also seems that does who criticise the most contribute the least like this oops there is nothing there just to reiterate a fact there was no interest displayed by you in this article at all despite the fact that you have been on wikipedia for years now it seems to be a pressing concern,0 +condolences to you your wife and family my prayers are with you,0 +redirect talk mexican primera divisi n season,0 +i love wikipedia this place is hilarious why isn t the article protected is there a possibility that something special might happen in his life which would need to be include in the article i imagine that this page is an absolute magnet for looney tunes without wikipedia accounts i m not sure but i think there are still some parts which say that he is supposedly dead but these might have already been fixed by the recent revert in case i ve been logged out again damn cookies i m,0 +vacuum insulated evaporator hello how would i go about seeking permission to use your image of the vacuum insulated evaporator my an online e course i am developing on medical gases please thank you rachelle,0 +this picture doesn t make sense that looks closer to pluto being of the size of earth if they were both dimensional objects,0 +if one did leave out carbon atoms then that would not be correct example what would methamphetamine be if you left out a carbon atom what are left out are hydrogen atoms and they should be since it has been previously pointed out they would unduly clutter the diagram and are unnescesary as being implyed anyway,0 +gan for cotton bowl classic thanks for reviewing the american football ga i ve decided to review one of the articles you had for ga because that is a pretty significant game and would be a good ga if passed nidhiki,0 +sorry i went to the right page and provided an explanation there and above here in this talk page i thought maybe it didn t get saved but the tag didn t look the way i thought it was going to look i just wanted the graphic tag not the whole page i used didn t work the way i thought it was working i m trying to find the right tag the explanation is in the talk page i thought i ll look for the right link to it i ve run out of time for this and i m very tired at this point so i don t know how soon i can find what is needed nyscholar,0 +coming back to this issue i d like to combine these into oregon legislative elections for one thing it meshes better with the legislative session articles i ve been working on between every two session articles is one election article and vice versa for another both these articles are pretty short and combining them would make for a nice sized article finally because of the nice clean structure you made it would be a very easy merge to accomplish ok by you,0 +there s nothing further to discuss talk,0 +outdent how about looking at it like this rpg rulebooks are just that the rulebook explains how to play the game but it is not the game itself the isbn manual you reference below supports this games shall not be given isbns there may be some confusion in the matter but one good example is found by harking back to ad d nd ed to play that game required it being rules heavy that really is pretty much true a minimum of two books the dm guide and the players handbook neither contained the game and the game went far beyond what was in either the game in all its entirety encompassed the contents of many books magazine articles supplements pamphlets online articles and what was in the head of the players the book is about the game it is not the game for that matter a number of the articles you tagged did not list an isbn so you can t really claim that you claimed it was a book in ignorance because of the isbn a publisher doesn t mean it s a book as board games computer games and any number of things are published and have publishers,0 +wangi said who are you reswobslc or stupidcupid well now you show yourself in your true colours for all to see now you accuse me of being two users you find that a worthwhile comment now your making yourself look stupid well done wangi said i m sorry if you think pointing out that in fact i didn t do something you alleged me to is a weak response if i quote another user and then reply to that quote forgive me for making this sound simple but of users would know im addressing my remarks to the person being quoted of course if your saying you weren t sure if those were your remarks or not that you could read through a couple of paragraphs to refresh your memory as to whether you said that or not than of course its all my fault i should have placed a foot banner saying this quote is not from wangi maybe i should do that for every post or maybe your saying you post as more than one user and you forgot which id you used wangi said but i m getting a little pissed off here with your lack of care for facts if you re going to say i did or said something then please be careful enough to make sure i did do say those things well yes we see your use of the english language in all its glory once again here if every post must specify whther its addressed at you or not i can see how frustrating it must be reading through wiki at all wang said wikipedia is an encyclopedia not a link directory and not a tourist guide makes plenty sense to me yes it does make sense of course you left out the context of my question which relates not to the general point of wiki but to the bias of some users you to which links they want to see we already know you alone claimed the first link was spam and you removed it on that basis even users who don t think the link should have been there agreed it was not spam so your poor judgment is not in doubt your following days of rant showed your true reason for not wanting the link it was because you didn t like the idea of the site also selling hotel rooms the link to the visitor centre is still there by the way which shows it was regarded as being a legitimate item to link to my point still remains that if its worth linking to the first link was far more useful to the general public,0 +ani is a waste of time that s where the school of piranha lives and i m not threatening you so please don t distort what i m saying i m protecting the wikipedia project that is my sole purpose for this inquiry i believe your admin practices deserve review and i believe there is a venue other than ani or rfc where such complaints are heard,0 +utc so what alaska was once part of russia some states in the south usa were once not part of the current union and some were once a part of mexico borders change and yes tibetans is a nationality within the prc august,0 +finally an entity is not notable enough for wikipedia unless it has it s own wikipedia page all due respect that is just bizarre,0 +this article seems to be to specific about certain political parties i think this article should be more about the political philosophy,0 +the document links are not working,0 +copied reply to wikipedia talk article alerts aalertbot,0 +you are one sad little individual,0 +sorry to disapoint i ve been reading http mathworld wolfram com pisot vijayaraghavanconstant html and this stuff is way over my head i just wanted to find other things to say about besides its being a nonprime fermat number i treid to see if maybe it was being some kind of figurate number besides gonal without any luck then i treid putting it in by itself to sloane lookup and the pisot seqs were the only results that didn t have to do with it s fermatness jul utc,0 +discussion boards are almost the lowest form of life on wp rs only just above comments sections on blogs however if you can demonstrate that glf has written this and the fact that it has appeared under his name on a forum that he has moderating rights on may indicate this although he does not use a stared account which means it could be an imposter the daily mirror account seems to be totally derivative of the guardian and the guardian does not say that glf was a member of the bnp just that their journalist contacted him and he said that he could not be active the daily mirror could well have lost the subtelty of what the guardian said i wouldn t like to be their libel lawyer on that with all of this and knowing glf s propensity to sue i am going to cut this out the fact that the cda is to the right of the conservative party is pretty well established in the article,0 +it s words as of this moment so there s a fair amount of room to add details two tricks to trim without changing content are remove that word that when you can a sentence will often read the same without it change passive voice to active voice the cat was pick up by john john picked up the cat saves two words and makes for a more dynamic sentence old writers trick ahem old writers technique,0 +intro this is the intro which was on the palpatine page for a very long time once an ambitious senator in the galactic senate the blockade of his homeworld naboo by the trade federation saw him become chancellor of the galactic republic palpatine is leader of the galactic republic at the time of the clone wars and later is the man who becomes the emperor ultimately palpatine is revealed to be the alter ego of darth sidious a sith lord of immense power and immeasurable cunning yesterday user robeykr changed it to this once an ambitious yet unassuming senator in the galactic senate the blockade of his homeworld naboo by the trade federation saw him become chancellor of the galactic republic shortly before the time of the clone wars and later became absolute leader of the most crushing totalitarian government in the history of the galaxy ultimately it was revealed that palpatine was the alter ego of darth sidious a sith lord of enormous power and considerable cunning i changed it back and tried to clean it up a little once a senator in the galactic senate the blockade of his homeworld naboo by the trade federation saw him become chancellor of the galactic republic palpatine is leader of the republic during the clone wars and later becomes galactic emperor ultimately palpatine is revealed to be the alter ego of darth sidious a sith lord of immense power and immeasurable cunning i cited the need for reversion as a the intro needs to be short b it should be npov i would like to know what people think about the changes so that hopefully we can resolve this,0 +what businessis your one someone elses page i do recall you and fconway have done this before so once again it is ok for you to do but no one else also will you refrain from being a vandal on the martin anderson page thank you anynmous,0 +nasib mukhtarov september utc,0 +appreciation hi there acroterion from portugal please read,0 +clifford algebra hi i have t forgotten that you wanted to discuss a bit further i d like that too i m on sort of a semi wiki break right now but in the meanwhile could you elaborate on by the way i m interested in seeing if you have an example in mind an illustrative example of leveraging basis elements of a complex space that square to that sounds like an interesting benefit that might normally be passed over in pure math texts a bit i m not sure exactly what you mean and there might be no mathematical significance but there is surely physical significance to be extracted the complexification is made partly for convenience partly for the clifford algebra to actually encompass the physicist convention for the lie algebra and partly to encompass trans formations that come from not actually not even the full suffices in order to encompass time reversal one must have the set of all antilinear trans formations as well these are constructed using complex conjugation and an ordinary complex linear trans formation best,0 +donnot merge this page the single has been comfirmed proof url http w youtube com watch v ob kwtc ka url,0 +i don t think so per the precedent set at originality of expression is necessary for copyright protection and a mere photograph of an out of copyright two dimensional work may not be protected under american copyright law talk majestic titan,0 +contested deletion this page should not be speedy deleted because because it s nominator is a follower of a that is on a crusade to smear this person speedily deleting this makes zero sense as it is a real product released months ago to compete on the cloud front against amazon ec surely you understand this being in beta doesn t make it any less of a usable product i merely requested that the gs team share more functionality if you get an invite you ll see what i mean,0 +wait it s back the information never left i needed that deletion sign put up for the page is clearly a page on an unimportant person therefore it needs to be removed i m not a vandal i just need to know how to put up those deletion signs,0 +sammy i added the referenced fact the bin laden was known as sammy in his youth i accept that it might seem like vandalism that the arch super villain had a semi westernised childhood but this is an encyclopedic fact i believe my original edit should be reinstated,0 +wikipedia talk censorship a watered down version of the proposed policy against censorship is now open for voting will you knidly review the policy and make your opinions known thank you very much flaccid and erect human penis jpg haha well done for contributing wp needs people like you to illustrate those articles p,0 +ok i got you the first time,0 +i certainly could but in february i decided to take a step away from wikipedia and i am no longer editing articles on some topics including politics,0 +i was thinking about this last night and came to two conclusions first focusing solely on this article is not the way to go i need to go back to square one and add academic rigor if possible to global warming and denialism don t tell me gw is fa and is therefore academically rigorous the fa star does not even come within discus throwing distance of establishing an article as academically rigorous second your system of defending this wikipedia page notice i didn t say article is completely airtight because you hold control over all of the definitions join any high school debate team and they ll tell you if you own the definitions you own the debate and the problem here is this you define anyone who disagrees with agw as a denialist and you define everyone who agrees with you as an expert done the page is impregnable take forex the quote by democratic senator barbara boxer using her comments as supporting evidence of the page s not article s thesis is a flagrant act of pov that proves this page not article is an op ed piece from start to end barbara boxer is a politician every bit of power money and prestige she has comes from her ability to do one thing and thing only to characterize herself as a noble public servant and stereotype her opponents as villains buffoons or both even more and this is important barabara boxer is not a run of the mill politician it would be nearly impossible to find someone more unwaveringly partisan than she is in short the boxer quote is another bit that does not come close to passing the so what test i intend to delete that one sometime soon too i also wonder whether i should give one of those damn wikicookie templates as a thank you to the editors who revert me every time they do so or maybe a barnstar i dunno some token of gratitude or other,0 +wikipedia today s featured article may gerda was talking with me about the image so i checked the description which said the work of the forger van meergeren if that s true then it s a th century work but i don t have any idea whether it s true dank push to talk,0 +how dare you block me without cause you had no right and are abusing your position if you don t i will demand your immediate removal as an administrator tannim,0 +camille paglia sex positive feminist here are the supporting links you asked for you stupid twit http w lotl com content paglia htm http w reference com browse wiki sex positive feminism if you are too lazy and full of yourself to read them in their entirety then i will just post the relevant sections here camille paglia on the other hand i ve been saying in public for five years ago as someone who s endorsed prostitutes and strippers and that whole extreme of sex positive experience that i m concerned about the effect on young people people growing up from in a climate where it s gone to the opposite direction i m already out there concerned about this so i m really outraged to be stereotyped in that way by her because i am a career teacher and yes when you have a situation where commercialised sex is being pushed without a true eroticism i ve been saying this for years that we have got to a point of meaningless exhibitionism without real eroticism i m for eroticism camille paglia is a major american social critic paglia s academic writing focuses on the role of vibrant dangerous sex ity in human history paglia s key importance to sex positive feminism is not only her writings on sex but her advocacy of traditional values like canon texts paglia is somewhat of an intellectual enigma a conservative and academic feminist who revels in low and high culture alike and celebrates sex ities disapproved of by mainstream western culture paglia has in many ways presented a respectable face for pro sex feminism to the world at large,0 +august utc i d go beyond that and strongly suggest inclusion of figure of that paper in one of these articles as it clearly shows why the iau definition is dynamically sound,0 +a cup of tea for you this is so fun,0 +source everything i e citations for all information,0 +i support the move of ade disambiguation ade but ade ade disambiguation surely can t be right more accurate would be ade ade drink,0 +short for the spanish word cohete which means rocket defines an explosive hyperactive and restless individual born in july th in guatemala city central america,0 +talkback blessed be talk,0 +this article needs referencing per wp cite,0 +on sea world sorry mate we re working out the kinks in the program its currently in v rc thanks for letting me know we ll use this information to improve it,0 +i guess it just depends on how much service he will be doing but you never know he could get discharged from the army or end up coming home with post traumatic stress disorder from all the intense stuff he saw in the army he should come back because he was like a main ingredient until he left,0 +not happy i am not happy with the tone of this comment you seem to be confused firstly are you seriously saying that as product manager visualeditor team you are completely unable to give a useful answer to a question about what the plans for mathematics rendering are or what progress has been made against those plans does mathematics rendering really have nothing whatsoever to do with visual editor or is there some other reason why you prefer not to answer the question secondly if you wanted to be helpful instead of airily alluding to the volunteers who maintain that extension you might have said who they are who are the people to whom in your opinion i should address that question please thirdly if you really wanted to be helpful and i am finding it hard to avoid the conclusion that you do not you might even have volunteered to pass the question on to the approriate people rather than batting it back so unhelpfully once again if you engage constructively with the volunteer mathematics editor community it is likely to prove of benefit to the project so far i m seeing less of a serious attempt to engage and too much petty point scoring,0 +the goal com article is simply a reprint of the rund article which you have already suggested three times i have explained above why it isn t in the article the fact that she has written a testimonial for the website of a fashion designer she likes is neither noteworthy nor encyclopedic again this is something for her personal website not an encyclopedia article,0 +current source i m not sure what you re asking about the op amp current august utc,0 +listen up you narrow eyed teacher living on minimum wage you can keep on doing your buck buck chicken trash talk or perhaps you might wanna consider moving back to lemuria the land where your kind of scum roams,0 +a theory is comprised of research findings you are talking about research findings and theory as if they were two separet things there is no distinction between research findings and theory what they first two comments are telling is that the research method and the theory should be split into two articles the research method is called social network analysis and the theory is called social network theory a researcher uses social network analysis to produce information about a phenomenon called social network and the sum of findings constitute social network theory therefore there is no distinction between theory and research findings but there should be a distinction between a sepecific research method and a theory thus the article whould be split into two articles as social network and social network analysis,0 +it doesn t matter what i think i m a big retard ed antisemite i m a go throw myself in front of an sixteen wheeler with the grill covered in razor wire and video tape it for you people will find the lone tripod on the side of the road see the video think it s lulzy then put it on youtube for posterity,0 +apollo film request for editing could you edit the apollo film article and crop the photos of the cast tom hanks bill paxton and kevin bacon thanks,0 +you should familiarize yourself with the situation before blocking editors under wikipedia policy under the rr rule it states that leeway will be given to editors whose reverts undo vandalism and or help improve the article there is a solution to the edit warring that has been accepted by most editors that is to leave the rd paragraph of the lede as is until objections suggestions for improvements are proposed and approved by peers before edits are made to it which is also according to wikipedia guidelines for resolving conflict resolution if you familiarize yourself with this from the talk page you ll observe that this is a case where certain editors continually make changes without discussion without explanation without stating their objections first without submitting their proposed changes to peer review and in direct defiance of the express will of most editors that this be done to resolve the warring i am enforcing that majority will and implementing that solution because despite my repeated requests for moderation and intervention from administrators i have received absolutely no help to get this taken care of if you would kindly just enforce policy and help the majority of editors to implement the agreed upon solution by blocking those who continually edit the article while being completely unwilling to follow policy guidelines and make a reasonable effort to seek peer approval for changes,0 +i m fed up with all this and the people here the community here is dying and now i will now indefinitely and probably forever take my place amongst those who have also withdrawn from this project on similar principles it is nothing but needless stress and over consumption of time,0 +i can accept that the picture is not a good one but claiming that the photo should be removed because it includes a swastika the finnish military insignia of the time not the nazi symbol which by the way is inverted rotated and another color and adopted two years later than the finnish symbol is imho absurd i suggest that you read this it might be enlightning,0 +ssh don t tell them about vitamin k one way of doing it,0 +wel l here it is verbal the annual report of the prince s school of traditional arts here is the link,0 +neutrality requires that each article or other page in the mainspace fairly represents all significant viewpoints that have been published by reliable sources in proportion to the prominence of each viewpoint in the published reliable sources this is what you have quoted me unfortunately that is not helpful i appreciate your attempts but my point that is falling on deaf ears here is this is not a matter of personal opinion my frustration is only with individuals who believe this is a view point i have clearly laid out why this is not a pov piece and still not a single user has proven otherwise assuming it is a view point simply because it is too long is that really a legitimate argument or is rjensen simply offended that i have challenged the careless lack of regard for scientific knowledge giving due weight and avoiding giving undue weight means that articles should not give minority views as much of or as detailed a description as more widely held view i am sorry you think i am in the minority is the same conclusion reached by the world health organization aap cps dermatology associations worldwide and anyone who has actually objectively reviewed the literature and the tactics used by the industry for people to say that i am in the minority perhaps in the court of public opinion but isn t that how propaganda works there is not even a shred of doubt based on scientific facts that what is trans piring is propaganda this is not even open for debate but these people are seriously compromising the integrity of this website by acting like gods claiming they know more about propaganda than i based on health information and an industry that they don t fully understand i can by the way generalize about the industry as it is represented by the jcta which is the organization i cite in the article on what basis cna they do this i ask all of them and they suddenly become sensitive and cite wp and claim i am the one who is personally attacking them,0 +many thanks for checking and investigating it is a shame there s nothing more recent from p of curatolo diagnosic criteria i get the rate of occurrence of tuberous sclerosis at birth is unknown paragraph continues with stats trying to come up with a figure this indicates that the real incidence at birth may be as high as webb et al cardiac rhabdomyomas and their association with tuberous sclerosis arch dis child earlier when talking about hunt and lindenbaum s study he says the scientists believed that the birth prevalence might be even higher than it is now considered to be i don t have that paper so don t have more details an editorial by fryer journal of the royal society of medicine says suggesting a birth incidence of i don t have the osborne paper you mention i ve seen mentioned but don t know its source at present my sources seem to use incidence and prevalence interchangeably wrt to birth i m happy to change it if you think it may be less ambiguous the list of prevalence figures throughout the years comes from curatolo table page this in turn is based on an earlier table by shepherd in his short chapter the epidemiology of tuberous sclerosis complex in the book gomez the earlier table doesn t have the o callaghan figure i ll see if i can get hold of some of the other papers but it isn t easy talk,0 +because so many turkish people today claim to be a descendant of oghuz khan male members of the amucalar descendants of g nd z gazi the older brother of osman i tested their y dna genetic history of the turkish people shows that the common ancestor ertu rul belonged to haplogroup r a typical of central asian caucasus eastern europeans and indo aryan people http w ysearch org search view asp uid xwbww viewuid ftemf p,0 +hey man i m from wyndham vale and it s the crime capital of australia it is very deadly and rapes and murders happen there reguly my next media production is csi wyndham vale the worlds most dangerous town,0 +you the man give me an example where i betray me jew s i think that you are just a stupid person as long as the wikipedia stands hans rosenthal roha hans rosenthal at t online de replace at by ps this is for the administrators please deleat tvoz seewolf and their likes thanks,0 +the term soviet empire is an informal term of criticism it is not a precise term it is not meant to refer to a specific period in soviet history with a clear beginning and end it refers to soviet actions during the cold war in general,0 +in democratic republic of the congo,0 +cause thats what this is all about not slavery and being drained of all that you are thats why people came to america bro the land of the free,0 +what are the numerical parameters used in the plot,0 +july utc,0 +i tried to get some more of that in the article there is really a lot of coverage out there about this i had a hard time finding sources that talked about the differences between moderate pt and hard core wof theology i ll keep looking though,0 +globus cruciger greetings i took the liberty of moving your contribution regarding the globus cruciger down to the earth cultural viewpoint section and added the requisite reference the lead section is intended as a high level summary of the article i don t think it should include content that is not covered by the article body thank you talk,0 +october,0 +i do agree that such an idea is easily abused my main support for it comes from the fact that all progress in this thread seems to continuously restart when particular individuals revert to more primitive arguing points and essentially reinforce the same points over and over again without any real progress if only such postings could be ignored rather than entertained by editors interested in resolution,0 +fair use please be specific which of the ten were violated which images were not given rationales what changes need to be made to allow the images to stay sorry but we re all busy,0 +my bad sorry about that i logged in at school and said remember me so yeah umm sorry ill change it belive me i do not vandilise so ill fix it so embrassing hope u understand,0 +i also have a massive learning disability so please excuse me,0 +btw just for the sake of it would you apply the same standards of quoting secondary sources here when statements by indian pm modi regarding indian involvement and support to mukti bahini are not being allowed to be included at wiki,0 +i am looking at your edits with a certain amount of shock that you went ahead and made major adjustments while clearly in a state of confusion which you had not even worked out in your own mind but what is the problem you are grappling with all you need to do when reading these articles underhill sharma etc is read which mutations they tested what is so difficult about that,0 +johnny test i don t know whether it properly belongs there or not either but it is in the teletoon original series template and is listed at list of teletoon original series so if it is in fact wrong then those have to be corrected as well rather than just reverting the addition of a category that both the list and the template are indicating is correct,0 +maninstone sept,0 +ha atleast you surrendered for full hosur history feel free to check it at http hosur hosur online com abouthosur asp again i beg you don t use my contents,0 +really now something i ve written on my personal user space was nominated for deletion great job t e c,0 +conflict of interest i note that your username bears a close resemblance to the name of the company that you have written about at shoestores com if you are affiliated with this company you should read wikipedia s conflict of interest guidelines in general it is not considered a good idea to write about the companies groups clubs bands etc that we are involved with because it is difficult to maintain the required neutrality where such things are involved chatme readme,0 +some tips for making your stubs a bit better apart from your over reliance on soccerway which isn t always a wp rs i ve noticed there are some other aspects of your created articles which need substantial improvement typing player who plays is poor english try to put footballer who plays or soccer player who represents the word currently is pretty pointless too i mean they either play for the team or they don t right also try not to say they play for bayern munich in the frauen bundesliga put of the frauen bundesliga instead because they play matches for their teams outside the league too please remember to always put the stub tags at the bottom of the article this will draw attention to the fact that your creations require expansion and improvement these are just small suggestions but hopefully by taking this advice you will get better and eventually take some steps on the path to becoming a worthwhile contributor thanks,0 +specially tailored pink shorts if i can remember correctly a character talk,0 +pete what makes you think you can go around and spread insults and personal attacks what makes you think that you can call me arrogant and rude or kick me while i m down i would report you for this ongoing behavior of yours if only i wasn t block but maybe someone will see my page and do just that further my recruiting of other editors is irrelevant if you read that post of mine on yahoo you d see that i told everyone that regardless of their position i d appreciate their presence i was not trying to convince other people to come over and post with my pov in mind the fact that someone did come over and post my pov was completely beyond my control finally i did discuss these edits i discussed them on the talk page for a week what all four editors were against was not the edit i did make but the original proposal which was for deleting the entire section i however preserved the most critical points of that paragraph and moved it to reception of steiner to get rid of the problem of undue weight,0 +yes you are certainly predisposed to support sanchez regardless of what s true it is people like you who have made wikipedia such a joke,0 +horror society their editorial staff is listed on their site michael q,0 +your arbitration evidence thank you for taking the time to present detailed evidence in the arbitration case however your statement right now is very long and the arbitrators have indicated they prefer shorter presentations i would request that you try to reduce your statement to an overall length of about words thank you,0 +hmm i have feeling i just failed at that i added the text but where would i find the actual template,0 +thanks for retracting your incorrect claim that one of the two sources doesn t exist it s always ideal to provide valid information on wikipedia i wonder if your emotions caused you to be overly hasty and careless in your attempts to come up with some excuse to disparage any source provided as some of us expected you might do so just to summarize i provided two newspaper sources above both of which really do exist,0 +the intro isn t of quality name or members in the intro and others later on not almost a dozen in the beginning and the end,0 +i am guessing but is predatory towing to do with vehicles being removed as part of parking enforcement,0 +cleanup i put the cleanup tag back on the page please do not remove it without reading the wikipedia cleanup page first aug utc,0 +y o g u y s m y n a m e i s h a n a t a r a s h w comgem tk w myforum co nr,0 +i don t know about others but after this rfc is complete i plan to take a year off from this topic the discussions of this article s name are becoming repetative thus boring,0 +external links i ve added the official bobby g website as an external link i was surprised it wasn t already in there so looked through history and saw that it had been deleted on dawnhornby prior to that the link to their site had always been there so not sure if it was removed on purpose legal or by mistake roger,0 +that is not a good reason it was an good article,0 +mdy dates in centos article hello there i ve just the date formatting edits re establishing mdy dates in centos article so please allow me to explain it a bit further manual of style does say that existing date formats should be kept as is but before i came to edit that article iso dates prevailed and i ve changed them to dmy dates thus i see no problems about moving this time to mdy dates which fwiw i find to be much more readable of course i m more than open to discussing this further talk contribs,0 +did you poop in your pants,0 +please look at the original in page of this link in case my copying made stupid jokes let s talk,0 +it is not a good idea to try to re start this page by blanking the disambiguation page which is rightly titled michael anthony and put in an article about this artist if it should be there it should be there at ma artist see wp mosdab if you are unsure about disambiguation pages do not blank this page again,0 +other pov no earth no people no wars,0 +agreed but how would you describe it it is not a design but what is it when you find the answer to that question you ll find a great way to label the image jun utc,0 +there is no evidence that this block has anything to do with sock accounts my use of my accounts was completely legitimate and contrary to what rodhullandemu is trying to imply the only accounts that i used in the police talk page are mr nights and this one which is a completely legitimate practice i was block for a discussion in the talk page of the article on the policenot for editing the actual article please read that discussion i linked to and see it for yourself that it was pure unjustified retaliation for offering evidence rodhullandemu could not answer http en wikipedia org wiki talk police why reiterate reduce civil disorder instead of protection of property f,0 +sorry v nothing personal but i have to correct your lies,0 +i think the formula is correct as it stands you can check it out on some test data eg loan of million for years monthly formula gives half life as years near as d to months and using excel s pv function for the remainder months we are a tad short of half way at with the minus sign in we get years oh dear derivation is from a continuous time mortgage model where the balance on a mortgage p t is given by the equation r interest rate t time period of loan and p is the original loan amount once again this is something i have derived for myself but no doubt also once again there are more authoritative sources,0 +i did not say that i am saying that you deny that the people who retaliated were lebanese even theough they carried lebanese flags to be consitent and not racist i would like you to deny that the people at the beach were australian even though they carried austrlaian flags it is just representive of your racist flexible logic and reason were you can apply principles inconsistently in a racist fashion without noting the contradictions please stick to the facts i never condoned acts of violence on this thread i merely hold your racist one sided contradicitons to account,0 +non involved people most definitely cannot understand yeshivish a nice example of yeshivish is the english yated neeman which can be found online at http chareidi shemayisrael com many of their articles simply cannot be understood by a non jew or a non orthodox jew that is a simple fact it is english but those few hebrew and aramaic and yiddish words mixed in make many articles totally unreadable for the average person i removed the disputed tag it has been there for months and barely anything was done about the article since so i presumed it was safe to remove it talk,0 +unless third party sources have commented on it the bnp s approval or disapproval of something doesn t belong in any article except possibly one on the bnp itself,0 +raking bishops the page has good material on several tactical and strategic motifs involving bishops we should probably have a brief discussion of raking bishops and single and double bishop sacrifices,0 +man you are really a dishonest person disgusting,0 +assyrian article why did you rever it,0 +picture this article needs a picture it looks so bland without it w hate ver happened to the pics anyway,0 +hey can you be more clear in what sense have i eveded my block if i have done any error it has not been intentional since i am new to wikipedia and it may be for lack of experience is this the welcome you give to the new users i invite you to see the editing history of vlore and relative discussion where my arguments are beeing totally ignored by greek users like tsourkpk,0 +you should certainly contact your local police and file a report make sure to show documentation demonstration the lack of response from the wmf their lack of response may be criminally negligent in some jurisdictions,0 +december utc the current rules are he was notable when he was a turkish citizen and he received and award notability due to his roots hence need to be mentioned in the opening you made the bundesliga remark yourself i don t see where i didn t want anyone to comment on this perhaps you were reading someone else as if it s me current rules aren t dubious in fact very clear this issue is settled according to the wp rules but if you would like to go on with it please do i would like to find out how mesut ozil wasn t notable as a professional bundesliga player until or the fact that he received a reputable award related to his roots does not contribute anything at all to his notability thank you,0 +arabic wiki hallo rouge admin you know a little perhaps about islamists no hope for the ar wiki for now the majority will always write history but it s advantageous to have a rouge admin by one s side ar wiki criticism isn t a blame on wiki in whole consider other products evaluations how do u regard this paragraph one arabic journalist in netherlands bla bla bla sure it comes from a doctor,0 +the pizzeria in quesrtion what was the name of the father s pizzeria that one of the suspects worked at i heard some unsubstantiated reports that it was pasquale s can anyone confirm or deny this jh,0 +it doesn t matter if they call them english in the scources you provided the british are commonly called english but the term is incorrect because after it was the kingdom of great britain if this were a wwi article and you replaced german with prussian that would be about the same thing you are doing now not all scources are correct and it is unencyclopedic to call the british english as there are also scots welsh cornish and irish people in great britian and calling them all english is not correct and english needs to be changed to british if hope a british user backs me up on this because what i am saying is right and the vandalism warning i gave you is justified so please do not call it a personal attack as it is not if i called you an insulting name or gave you a useless warning then it would be a personal attack but since it is not i would appreciate you would stop vandalising the page by replacing the correct term of british with the incorrect term english user daniel chiswick may,0 +a barnstar for you the writer s barnstar for making uyarndha manithan a ga in such a short time,0 +public economics yes i think that s probably right because the courses i know are called that alternatively you could have economics of the public sector like some books either way page just needs more writing best,0 +the forum postings in question are all actually direct copies of articles that appeared in the edmonton journal there s a person that posts on those forums basically by just copying and pasting material from the journal s site if you d prefer i could change the references to the journal articles themselves although that would lead to the disadvantage that people couldn t actually check the references themselves unless they happen to have a copy of the journal in question laying around,0 +un eu nato etc respect the negotiation process agreements and the provisional reference the republic of macedonia as a sign of good will towards greece has accepted un eu nato don t really give a damn how the greeks feel about some states and regions names,0 +please review the unblock for jungleedgestill agian thanks much,0 +poor editing the edit looks fine wtf is the matter with you,0 +that s not my definition please read up on history premillennialism,0 +ripieno concerto a cinque two violas scoring one should check what proportion of cases of that supposed th c two violas scoring is not actually scoring for an alto viola and a tenor viola one should maybe start by looking at a few scores and if one gets the impression that it is indeed the case then one should look for a reputable source for this statement because we re not supposed to do original research,0 +that was a good edit the polar bear is gay,0 +thanks for the new r f train image hey thanks for the new r image at avenue p on the f train article it is certainly ten times better looking than the old darker looking one at herald square now if only we can find a visibly clearer neater and better looking r r train image,0 +fund raising appeal how much money are you hoping to raise how much do you have so far,0 +trancenet is not being cited as a source it is simply the place where one can find online both a copy and the text of the holy tradition which is unquestionably a reliable source when it comes to what the puja ceremony consists of the malnak case does indeed have holy tradition in its court documents and according to multiple witnesses for the defendants ie the tm org it was written by mmy the district court held this trans lation was attached to the prendeville deposition and was marked as defendants exhibit aa this trans lation is based upon the sanskrit chant and the trans lation thereof appearing in a book called the holy tradition which was written by maharishi mahesh yogi see jarvis deposition at september utc,0 +see myedit not vandalism anymore,0 +it was not been written as a commercial work so is not copyrighted and in the public domain,0 +its an interesting one in that the great hero von mueller actually created a weed issue in the name of leaving tracks suro,0 +schedule practice started may time trials may race day may http news google com newspapers id haibaj sjid zicfaibaj pg dq indianapolis hl en,0 +t c if this is a shared ip address and you didn t make the edit consider creating an account for yourself so you can avoid further irrelevant notices,0 +okay there are now only about links to nim s original userpage talkpage basically various user talkpages and a few administrative pages you should make the call on those franamax otherwise all cleaned up wikidao,0 +someone needs to check the source on the nobel peace thing smbgood,0 +references this page really needs some references does anyone have a few books on folklore that they could use to reference some of these facts claims,0 +no one is saying that the raids never happened because no legitimate sources exist they are not included in the article because no legitimate sources can explain what the raiders claim are happened that is the racist mods that other stuff the article currently says that the hotel is often the victim to internet trolls the fox article might be biased but the current statement in the article isn t,0 +utc tennessee had not reapportioned since rural districts over represented urban districts under represented http books google com books id mgeiiwt puc pg pa lpg pa dq baker v carr source bl ots w kmrd i sig qm ripijk tce yn ae af p q hl en sa x ei csrulyscmk ywgetyhiaq ved cdyq aewadgk v onepage q baker v carr f false baker v carr u s held we hold that the dismissal was error and remand the cause to the district court for trial and further proceedings consistent with this opinion i think some of our article is overly technical or overly technical to the exclusion of the straightforward for we want to include both august,0 +utc what is that in the bottom left corner that doesn t look like a recognizable landmark also why a white border not black august,0 +elvek on october thanks very much jrspring on your suggestions i added the material and made corrections accordingly,0 +hi hi there this may sound a bit stupid question but dont get it wrong are you jew if so how are you really thinking there is any resemplence between holocoust and armeian deportations,0 +muscle do all mammals have the same form of striated muscle fibre i expect,0 +congratulations and sorry about your rfb maybe next time talk,0 +oh boy i can still edit this page,0 +so why did you not respond talk jun utc,0 +i m just someone trying to explain to you what the policies of this website are as i said on your talk page wp is not censored see wp notcensored jim,0 +query on your deletion hello you deleted my article slurpee capital of the world claiming i was advertising could you please explain how i was advertising,0 +ahh i am glad to say that i have worked out the problem and have now added three images to commons and their articles on wikipedia thanks again for the assistance nick,0 +and e mail relish the e c my friend t c,0 +this was the best bit folks i m the victim of harassment and somehow i get a block thanks for doing your best to alienate someone who was just trying to improve a handful of articles and now thinks wikipedia has fallen off the cliff on it s way to being barely a footnote to history i think i ll ask for my donation back now as well,0 +as a rule i try to limit giving unsolicited advice to once a year however i do have one more piece for you ping me on my talk page if you d care to hear it enjoy and happy new year,0 +happy valentine s day dear aaron happy valentine s day my dear aaron,0 +utc the npov tag has been restored because of recent importation of questionable pro corporal punishment material such as the statistics and pro and con section which is really a barely disguised pro section october,0 +esports categories can i ask why you moved category electronic sports games to category esports games the general conventions listed on wp catname say to avoid abbreviations and that topic categories names should correspond to their articles in this case electronic sports,0 +i m the one that went to get help from the admin incident board because he was edit warring with me why would i call the police if i m the one that committed the crime you truly are ridiculous basically that guy stole my wallet i punched him and you re arresting me for assault horrible power hungry ego boosters have taken over wikipedia it seems,0 +hello again settinghawk i ve removed this image again please do not use fair use images on your user pages as doing so is a violation of point of the wikipedia fair use policy let me know if you have any questions,0 +bluffview montessori school a tag has been placed on bluffview montessori school requesting that it be speedily deleted from wikipedia this has been done under the criteria for speedy deletion because the article seems to be blatant advertising which only promotes a company product group or service and which would need to be fundamentally rewritten in order to become an encyclopedia article please read the general criteria for speedy deletion particularly item as well as the guidelines on spam if you can indicate why the subject of this article is not blatant advertising you may contest the tagging to do this please add on the top of the page and leave a note on the article s talk page explaining your position please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would help make it encyclopedic as well as adding any citations from reliable sources to ensure that the article will be verifiable feel free to leave a note on my talk page if you have any questions about this talk review,0 +dueling unit costs i ve removed the dueling unit cost figures until a consensus can be reached on which figures to use if not both and what type of costs these are assuming the sources are accurate both figues being added could likely be legitimate and correct it depends upon how the costs are being calculated types of costs include flyaway cost procurement cost and program acquisition cost please see,0 +response tephrachronology is a precise and well established procedure the laarcher see volcano is dated to within years years before the younger dryas and for you to imply that anyone in the geological community subscribes to your personal hypothesis that the laarcher see volcanic eruption was related in any way to the younger dryas chronozone is simply false i have no more plans to attempt to either educate you or edit your ramblings here,0 +tfls hi rambling man i noticed that you recently removed about half of the tfl suggestions i have been working on addressing the concerns that have been raised about these tfl suggestions but i was on a wikibreak for several weeks and i have subsequently gotten bogged down in adding alts to all of the images on the list of london underground stations once i have addressed the concerns that were raised about a particular list that was removed from the suggestion page would it be acceptable for me to re add the blurb to that page,0 +lmao that s basically saying wah he called me dumb me gunna block him nice use of those admin powers now stay off my talk page,0 +re your ae topic ban appeal sorry but it strains credulity mine anyway to believe that you didn t realize that the adam mickiewicz article was the subject of a dispute among lithuanian and polish editors with whom you are well acquainted until the moment before you were going to hit save as you state here recent article talk page history you haven t edited the article since and you must have thousands of other articles that need improvement on your watchlist you could have posted an article edit request to the pl noticeboard re this as you have for many articles during the past few months in my view the a m part of your appeal demonstrates what to call it a lack of forthcoming ness the remainder of the appeal in which you speak of wp s losses from your lack of participation that s a different story that others can think over if you remove the a m section i shan t contest your appeal since lifting your topic ban now or in march doesn t make much difference in the long run but i am concerned about that part possibly the readers will take your assertion at face value without checking the article talk page histories you could either remove that section since it hasn t been commented on there yet or strike it if you choose not to do either i may bring it up at the ae appeal i d prefer that we keep the conversation here but if you d rather have it on my talk page that s ok by me if so i ll post talkbacks,0 +stick it right up ur bottom jock,0 +july utc,0 +targeting any dissent no doubt is hesitant to sign up since we all know that happens to people,0 +this message is regarding the page bobby charlton thanks for experimenting with wikipedia your test worked and has been removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing thanks spit,0 +muhammad view of slavery the article is very un balanced and biased i found out after user submitted a complaint in the talk page manumission was never discouraged and the opposite was true after i checked it it is encouraged someone is twisting muhammad s hadith on giving gifts to discouraging manumission the hadith i compiled and found are from the chapter called manumission of slave while the alleged hadith on manumission discouraged is from a chapter called gifts especially the th section titled a woman giving gifts to someone other than husband,0 +the gwp of methane is reported as and on various pages methane and global warming potential is this an inaccuracy or is there some doubt over what the figure actually is or is it a variable depending on other factors bug,0 +now there are no lies here,0 +deleted response to comments on wikipedia talk wikiproject ships please be aware that deleting comments made by other users is frowned upon on wikipedia in this particular case the discussion was started by user brad who made a personal comment about me now i dont mind this i was more curious than offended but the comment clearly ridicules the debate which i started on wikipedia talk naming conventions ships you claimed that my post which you deleted was a pov inserted into a neutral notice it may have been a pov about the desireability of starting any major change sooner rather than later but this was in response to another comment suggesting that the proposed change would produce lots of work and thus the implicit pov that it was undesireable it was no more than a response in kind to the previous posting if you are going to start censoring postings then i would suggest you do so impartially you did not censor the response in a way which restored the original section to a short notice but merely removed one comment rather than restoring impartiality this might be seen as biasing the tone of the debate far better that you do not delete anyones comments i would suggest reading wikipedia no personal attacks i m not sure what deleting others posts comes under try wikipedia etiquette,0 +cyberwar much to much spotlight on petty internet vandals also removed the censorship part from the headline since the article said precious little about censorship in georgia and nothing about censorship in russia,0 +request hi could you please delete my user and talk pages i ve already asked,0 +it is too long in places goes into trivia yet fails entirely to mention to principal point of the last episode and its final phrase much can be taken out but the structure and an explication of the principal themes can still be preserved,0 +article categorization this article was initially categorized based on scheme outlined at wp derm cat,0 +modifying the contents section in a way allready described why,0 +chemise cote d azur can someone enlighten us what is a chemise cote d azur lambiam,0 +she told the story herself on channel talk show it was reported by sky news loose women this morning bbc northern ireland radio humberside the staffordshire post what else is needed this is a major newsstory clinton was married when he made those comments,0 +i don t wanna grow up,0 +brandon soo hoo did attend my middle school i am serious you may go on google to double check but you can ask him in real life i live in temple city and he is my friend if you dont believe me he only adds close friends on facebook and i am one of them you can t assume that i am lying until you have checked whether i lied or not just because i ve put many pages that are said to be inappropriate doesn t mean that when i post real facts i can get banned i just wanted the page to have my school on it because he really went there so did his sister brittney soo hoo i don t know what your problem is but if i m telling the truth deal with it the right way,0 +original picture as i couldn t think of a reason for any of the picture i vote for one wp ilike more for aesthetic reasons,0 +there are simply too many pedophiles who are talented at circumventing wikipedia s good faith processes to edit these articles with any sort of information at the end of the day it s anti pedophiles getting into reversion wars with pedophiles hardly constructive linking boychat because it s an authority on boychat is a wonderful concept if that were really the spirit in which wikipedia created content every article would simply be people talking about themselves the worst part about editing here is having to kill enough braincells to pretend that an editor like this is anything other than what he is there are not enough legitimate wikipedia editors to turn the tide when it comes to these articles good luck to those who continue to attempt it i shall go back to lobbing grenades from the outside,0 +and on top of that eh you re not worth it,0 +i have proposed some of the latest pic s for it infrastructure and economy in kolkata talk page dear wikipedian as suggest by you i m proposing some of the latest pic s of major business centers of kolkata i e technopolis wipro dlf ibm unitech infospace hidco bhawan and many more to come please have a look to these pic s in kolkata talk page i m sure some the pic s should be added on to kolkata wiki page all thought i m thinkin of to start a new page in wiki for it infrastructure and major business centers running in saltlake city kolkata i hope you and other senior wikipedians from kolkata forum going to support me thanks,0 +july utc the lt block was still designed in inches it has the same combo that all prior s had that said anyone calling the ls a either works for a parts store or doesn t check their facts most people refer to it as the that it is if they call it in cubes the ls is at least still technically a even if it isa cubic inch engine ford can keep the number,0 +has hugged you hugs promote wikilove and hopefully this one has made your day better and hopefully wasn t meant as an invasion of personal space spread the wikilove by hugging at someone else whether it be someone you have had disagreements with in the past or a good friend happy editing hug others by adding to their talk page with a friendly message,0 +what the hell do u mean cough cough excuse me who the hell are you accusing of disruptive editing i was the individual who actually wrote the bulk of the article on rajbeer singh you gave you the right to come and simply delete my all my writing if you wish to contribute links go ahead but who the hell gave you the permission to simply delete all the writing that i had spent time and effort doing carry on deleting my work and i will carry on undoing yours with pleasure,0 +live in darkness you guys are full of yourselfs and the importance in your own minds maybe drunk with power,0 +wikipedia featured list candidates list of connecticut huskies bowl games archive hello there has recently been a change in the wp featured list criteria based on an rfc on the talk page to simplify criteria b which now reads b in length and or topic it meets all of the requirements for stand alone lists based on this change would you be willing to revisit your oppose at wikipedia featured list candidates list of connecticut huskies bowl games archive since it was based on the old version of the criteria thanks grondemar,0 +pretty much what i said the first day this was posted now i have neither a problem with the cabal s decision nor in the cabal s logic as deamon does my concern is why a vote that basically said i don t know means it stays at burma by the cabal s conclusion if the article had happened to be frozen at myanmar before the mediation and we had the same cabal it would now be a myanmar article i can see where the myanmar side would be unhappy however why should the burma side agree to abide by the next decision you can bet that with every panel of mediators that might side with myanmar you will find at least as many panels that side with burma husond is right where does this end when i first looked at this mess i said and posted that with the current evidence on both sides editors and mediators will not be able to reach a fair compromise that will appease both sides of this issue no matter how much thought is put into it there are good points for each argument i m in the burma camp but that is how i see things so i m looking at leave it where it is now split it into identical articles some bizarre bot that switches it back and forth daily a new type of mediation that imho will not end this by any stretch of the imagination choice just doesn t look that appealing,0 +ok ok for all these peeping eyes i know i violated wp pa and yes i deserve the block i got it thanks but like i said i ll live see you around in a couple days mailbox,0 +user talk contributions,0 +update done with suns save for season which would be done in due time more or less done with player profile get ready to get chopped for off the court,0 +seasons greetings jenna my very best wishes for the festive season px stay safe and talk to you in talk,0 +thanks i think following your advice would be a wise decision at this time,0 +i just did it as this page was very little it should have been redirected a long time ago history of firefox more information talk,0 +your edit at socialism may be true but i doubt it would be accepted considering the way the edit was presented typically controversial edits such as yours see more scrutiny when people use edit summaries such as this is the truth this is how it is etc opposed to giving a more buyable reason in the future it may be helpful to consider giving references to back up claims as this one messages,0 +when the funeral comes i will be the only one their and i will only be their to piss on your grave,0 +very informal language i feel surprised by the very informal language used in this article the plug was pulled and feel that the interpretation of events guiding the decision to dicontinue life support is hit and miss at best because noone wanted him to die during the championship i think this should be mended by someone more in the know about what really happened and with a more objective outlook on these tragic events bert,0 +cleanup i did another big cleanup removed personal commentary and rumours and added citations rewrote a lot of it to make a more formal style and remove emotive language this is my first attempt at doing this so i hope its ok if so how do i get the warnings etc off the page,0 +can you offer advice on how to get the kanji,0 +re from coupon to groupon please don t post original essays or analysis to wikipedia see wp nor,0 +there are plenty of video game articles that need assistance in some form what the admins are looking for is proof that you want to contribute constructively to the encyclopedia ranting about a block and not finding one article out of millions that needs some form of constructive editing isn t very helpful to your cause if what you say regarding the squid is true then here s what i d suggest identify the episode number of the show that contained that information televisions programs can be considered reliable sources if the show is factual in nature such as a documentary or news program take that section of the squid article which admittedly is rather short and expand upon it just as the admins suggested note the number of brains with the source information locate other articles on the web showing how the intelligence of the squid has been tested and add that write that section here in your talk page making sure to use proper grammar spelling etc au,0 +please stop your disruptive editing if you continue to vandalize wikipedia you will be block from editing echo,0 +the first three were rejected out of hand and the following half a dozen where similarly ditched i could produce another fuck kin half a dozen but it that wouldn t matter to a pure pos paid scumbag would it,0 +i smell like octopus poo and wee,0 +you did not ask for an answer the article was promotional just because you don t work there doesn t mean it isn t promotional if you want i can restore the article to your userspace so you can work on it there but in the state you created it it was not suitable for main article space,0 +umm its rock i no that its sourced but dont forget and here we go again are pop rock not teen pop yes it may be sourced but from what i see you go around changing all album genres block me from wikipedia if you wish but i now no that its not the right place to be when im looking for a genre of an album,0 +i changed the date from to the reference is a japanese site i can t read and the only other hits on google all appear to be wikipedia mirrors the date has at least been published whereas i got nothing for on googlebooks i was under the impression there were few bulls even over ft in length by the mid s let alone feet a better reference needs to be found for the length and date though,0 +dora also caused million dollars in damage remember this is dollars,0 +and many taxonomists classify t durum as a subspecies of t turgidum or t aestivum as a last straw some modern t aestivum selections are higher in protein than natural t durum,0 +religion and teenage pregnancy there is no mention of links between religion and teenage pregnancy in the article it is a notable emission there is plenty of studies and data on it talk contribs,0 +of hunley neiln has ignored dismissed every complaint i have made and made no attempt whatsoever to see my pov,0 +the lead is quite unbalanced as it is supposed to be a brief summary and introduction to the main text and yet is about historical cultural religious aspects of circumcision which only occupies a small portion of the article itself i agree that information in the lead should be in the article under the relevant section perhaps as the opening paragraph but given there are already articles for religious practices it is unnecessary in the lead it could be reduced to one or two short sentences that state that there have been and still are historical cultural and religious practices that involve circumcision but without going into detail this is a medical article and the use of circumcision as an initiation ritual is a different subject to medical circumcision only where medical circumcision has itself become part of cultural practice should there be a focus on that manifestation of circumcision as cultural practice,0 +i am not sure about the necessity but it is an odd integer in weierstrass original paper and this does at least make the proof of the properties of this function a lot easier,0 +i understand quite well how evolution is supposed to work i understand the capriciousness and contingencies in the workings of evolution it is the paragraph in question especially the example in that paragraph which distorts the workings of evolution the phrase it need only increase at a rate of cm per generation cm easily gives the impression of progressive linear change the anthropocentric notions of directionality and purpose often i assume inadvertently find their way into the writings of specialists who attempt to explain various forms of darwinian evolution from these i have often read how evolution invents various forms and functions carl sagan in my opinion one of the worst offenders in these matters injected anthropocentric notions on a massive scale so as to justify his idea of a million highly advanced technological civilizations in the galaxy i read your paragraph as suffering from the same notions of directionality,0 +you know what don t offend other users you are a jerk i know you are correct but you don t have to get so angry about it,0 +anti semitic crap the whole article is an anti semitic conspiracy theory cherished by aryan supremacist rightists,0 +please do not vandalize pages as you did with this edit to list of rulers named henry if you continue to do so you will be block from editing,0 +surely he should have been created prince of wales just after his grandfather died on february,0 +hello firstly i don t consider this to be biting rv anon user s attempt to summarise a labour mp s blog and insert unattributed most consider statement i referred to you as an anon user to distinguish you from timrollpickering who had made the previous edit secondly i didn t approach you you approached me you reverted me twice you referred to me as a conservative supporter trying to put a gloss on a terrible issue and said the new person seems to be on a pro tory edit spree if you re going to call me names i m entitled to ask who you are and it s natural that i should look at your edits what i saw was a blatant violation of wp nft at chorley and a blatant violation of wp npov at guerrilla warfare and i naturally reverted i haven t insulted you and i haven t tried to remove anything from article except what is unacceptable according to wikipedia guidelines t c,0 +yeah i concur no one has ultimate control and still who would know more about a band than the lead singer if you re worried about subjectivity just watch out for it and edit accordingly,0 +please note that sorenaaryamanesh is involved in an editing war by removing unbiased primary source material intended to remove pov of article,0 +i am attending a career college online sjvc it certifies you first in the human resources administration and then you can opt to go further into your a s degree in human resources administration the school offers other types of vocations that include liberal arts for the degree program i think it all depends now a days as to which college you attend in high school i was in an actual vocational training center tcove,0 +with respect you seem to be mistaking references found in some online media sources to usage in a whole country getting off the subject a little but it does have some relevance the nz herald routinely refers to nz ers of european descent as pakeha where as there are plenty who find this pejorative and insulating although this attitude is softening of course i would not include this in any article and defintely not this one without suitable reference lest it be deemed original research i note it here as an example that the language of the media does not necessarily fully represent that of a country what is very important to note is the skewed statistics of quoting the number of hits for rooster found in nz media many of these hits will be refering to the australian league club sydney roosters and not the poultry clearly rugby is of very considerable greater interest to the country s readership than poultry just stating both cock erel and rooster are used is factual whereas attempting to define relative usage is reliant on imprecise data and data that is distorted towards an unrelated subject also i can see no value to the article in trying to rank relative usage when both cock erel or rooster are common,0 +unfair accusation of spamming moved from my talk page hello i feel that my addition of external links to the wikipedia pages genesis creation narrative ibbur and gilgul have been unfairly flagged for inappropriate activity the external links added are primary source texts directly related to the wikipedia page subject they are not commercial or ideological please advise thank you jeangohile i removed them because they linked to a blog and blogs are not considered reliable sources for wikipedia if you feel they are a special case you could discuss on the article talk pages this link may be helpful links normally to be avoided all good wishes ok i understand and thanks for responding i still feel my external links provide important primary source texts that are not available online yes they are presented on a blog but there is no writing of my own presented please reconsider best regards preceding unsigned comment added by talk contribs,0 +welcome to wikipedia let me say that im glad youre here but youre edits on usm story arcs are uncalled for is part of the death of a goblin,0 +sorry for the late reply if you are willing to say how this works or direct me to a tutorial of some sort that would be helpful but i will by no means demand it i just noticed you and one other user were creating the images and wanted to take part in some way i won t be able to do anything until tomorrow afternoon cdt though thank you for taking the time to respond talk,0 +summary of the afd debate negative votes delete the original editor was user ivygohnair so it was marked as a vanity article for violating wp auto mapetite strong delete ignorance of the rules is not a valid argument for keeping an article vyse neutral positive votes procedural nomination speedy a was applied but was contested and this warrants a further look i m neutral for now even though this article doesn t seem to be colourburst comment question csd a is unremarkable people groups companies and websites is that the reason for the afd too according to wikipedia vanity guidelines as explained below an author s conflict of interest by itself is not a basis for deletion but lack of assertion of notability is edward wakelin it is true that i have come into the fray to defend ivy goh nair from speedy deletion and that her last page was actually uploaded by me i think if you want to apply the vanity label because one person edits the other and vice versa it would only be fair to examine each case on its own merit both user ivygohnair and user chandrannair are established figures in the field that is being discussed ie singapore literature and writing secondly it should be considered in their favour that they have used their own names and not fictitious names as user names if this had been the case the problem wouldn t have arisen therefore i think there is much merit in user edward wakelin remarks above and that an author s conflict of interest is by itself not a basis for deletion out by wikipedia chandrannair talk contribs comment let s be nice to newcomers as per wikipedia please do not bite the newcomers this seems like a case where newcomers not knowing the rules here an author of bestseller may be notable enough to get an article in an encyclopedia perhaps this biography needs some fixing as per wikipedia biographies of living persons deleting is probably unnecessary pfhlai i have read her book though i m not from singapore and it s better than a lot of the stuff that makes it to the ny times best seller list the preceding unsigned comment was added by talk contribs new to all this in wikipedia i think the mood to delete is harsh this is a user who seems to have made a definite impact in a small place and is trying to popularise the creative energies of singapore let us be more forgiving besides it looks there is actual published reviews as testament to the work mcporpington mcporpington sorry i meant to add to my comment above that the article should not be deleted mcporpington mcporpington hi i am saddened to read such biting petty comments and suggestions about deleting this article this person has clearly contributed to singapore literature and has also been cited by others signed phillygal i did my military service in singapore and i love the country i vote to keep i do not see any conflict of interest herejean louis retrieved from http en wikipedia org wiki wikipedia articles for deletion ivy goh nair,0 +yes let s berate the new editor with no experience and no idea by then relegating their arguments to a version of wp own nice to have a comment that violates own and civil in one fell swoop while also stating they re on a path to nowhere hence showing every reference to consensus was a sham because despite your claims of arguing with me being pointless you have admitted to have no interest at all to bringing the article in lines with wikipedia standards because hey it s your article talk,0 +tau epsilon phi i see you restored the chapter information would you concede at least to removing all the external links in the left hand column this is the big concern that we have about these chapter lists is that they often just become a directory for the links of each chapter would you consider adding one external link in the external link section to the chapter page on the national website which has such a directory of links everything else is fine it s just the directory of links that is believed to violate wp not and wp el thanks,0 +well unless there s anything else on your mind you want to discuss i can t do much else around here for the next days october,0 +fair use rationale for image coffee and cigarettes movie jpg thanks for uploading or contributing to image coffee and cigarettes movie jpg i notice the image page specifies that the image is being used under fair use but there is not a suitable explanation or rationale as to why each specific use in wikipedia constitutes fair use please go to the image description page and edit it to include a fair use rationale if you have uploaded other fair use media consider checking that you have specified the fair use rationale on those pages too you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any non free media lacking such an explanation will be deleted one week after they have been uploaded as described on criteria for speedy deletion if you have any questions please ask them at the media copyright questions page thank you,0 +an i about your last edits and edit summaries wikipedia administrators noticeboard incidents user dracoessentialis talk,0 +wiki is non commercial so it is allowed to use maps of columbia university in wikipedia as sources and evidence i just have got a positive answer from columbia university for using of their maps and sool i will do that thank you for your message,0 +i think you just did i was conducting my own form of social research that is i was prodding at him trying to find out if he actually has any respect for his own stated religious beliefs or if they re just a political tool i got my answer alright,0 +tossgirl as best or only you seem to think that she is the only female pro but you are mistaken there are many others such as berry jongmi navy january tulip sunhee carot etty anna d d fish kanghuny precious puzzle vitamin y o arima gano and others also if she is the only pro why do u think they still occasionaly hold all female sc events in korea so yes i will change it back,0 +good lord chase are you kidding me let it go and please see your talk page sorry eik i ll be on my way again,0 +hugh g rection thanks for blocking me without explanation and then editing and locking my user talk page to make it seem as though you had done so originally as you are fully aware you have left me unable to even request a username change now nor to complain about your actions daniel brandt is right,0 +god i just hate them so much lets hope they die,0 +thanks for all the ideas i ve added some categories and i ll do the rest later chyte,0 +what does this wikiproject years mean you invited me,0 +you won t find any creditable citations because such claim is a load of racist horse shit,0 +er no that s not how it works we do not filter our edits to this or any other article through individual editors if you do not like an edit it is your prerogative to do something about it speak,0 +no silly it isnt its ur moms and might i say quite the lovely page indeed oh and ur mean no im just kiding but ur not all that nice either cause u have a black black heart,0 +but getting rid of the white stolen generation but keeping the stolen generations name is extremely hypocritical the only reason the aboriginal stolen generation is widely used is because it is widely known very few people know about the white stolen generations that doesn t mean it is less valid it just means it is less known in the mainstream public the stolen generations was where aboriginal children were taken from their families and put into foster care or adopted the white stolen generations was where white children were taken from their families and put into slave camps or adopted now you tell me how the white stolen generations is any less valid than the stolen generations they were exactly the same why can t you accept that,0 +lieutenant promotion i may have missed it but where was it stated that renji became a lieutenant when rukia went missing in the human world i never remember reading that please source thanks talk,0 +all i do is revert vandalism it s all there is to do since the admins are so incompetent if anyone worth a shit paid attention to the spi report s i ve made about pe de chinelo you dumb asses wouldn t need to waste time with your current ani thread,0 +put in the ban lets be done with it,0 +redirect talk red studios hollywood,0 +week of wikisoo hi just checking in as we head into the final week of the writing wikipedia articles class you can look through last week s ether pad notes check out your homework assignments from week and watch last week s lecture on youtube all right here check out my note from last week above if you re still diving into your final project or head over to the course talk page to see if anyone else is having the same issues you are looking forward to seeing you in the last live webinar of the session tomorrow big wikilove,0 +and by the way please take a look at the wiki on alex haley who seems to be your source,0 +shared ip see notice at top of page i cant create the subpage but i will move all the old stuff there i ve removed all the odl stuff not from this month and will place it int he archive as soona s un block,0 +drmies deleted frankie stein from monster high drmies is the f word,0 +heinlein s works all should have gone into post u s copyright protection status years after his death current statute and the rhetoric of jack valenti not withstanding as the status of fair use and such is hotly contested and heavily and expensively litigated it is best to only ever use ancient myth or one s own demonstrably original and derived from fair use sources ymmv ianyl,0 +eventually i foresee some of acorn s self serving spin doctored crap getting into the article if it s prefaced by david lagstein spokesman for acorn s detroit office said surely you don t want their version to go unchallenged do you moncrief worked for project vote a closely intertwined symbiotic acorn subsidiary for three years as long as obama has been a senator call her fired acorn worker anita moncrief put the facts into the article and let the reader decide i d like to review what people in my profession call reliability indicators if she gets caught lying she faces years in prison on a perjury charge if lagstein gets caught lying he faces no consequences whatsoever answer my gm analogy on the article talk page you ve been carefully avoiding it,0 +good job its wackamole time,0 +stop leaving stupid harping messages for peopel that are nil to do with what you are talking about,0 +if you doubt that it s verifiable you haven t read enough ed it would be much more productive to put in the fact tags as needed since to seasoned readers of ed most of this stuff is obvious just by checking out the page it s either that or every single sentence is going to have to be referenced and that will make for one ugly article talk,0 +i was going to say the same thing but you beat me to it it only cost like a dollar or so to read the la times archives,0 +janettedoe i appreciate your finding and uploading the rao articles however this can easily become an endless discussion for some other yadav apologist will soon come along and find an even more obscure source than rao and then you conscientious and rigorous to a degree that the yadav apologists are not and have no intention aware or unaware of being will go scurrying again for the article after that we all will try to interpret it weighing the pros and cons again to a degree the apologists will not for they will be busy looking for the next roadblock to toss in our path i think we can t make the determination of whether rao applies here or not at least not yet let the secondary sources do that we need to rely on recent scholarship especially that in textbooks published by academic presses and vetted both before and after publication by reviewers from a wide range of scholarly and journalistic backgrounds two such books by susan bayly and christophe jaffrelot both widely used in universities around the world both reviewed extensively in the literature are being used in the article let the article writing or rewriting proceed based on these or similar books once the article has been fleshed out we can come back to the issue of rao otherwise nothing will get done and those of us who ve taken time out from our other wikipedia not to speak rl pursuits to attend to the article will slowly walk away out of touch and out of sympathy talk,0 +disagree it s been well established that lists of characters are appropriate for wikipedia,0 +speedy deletion declined naveen sawhney hello muffledthud i am just letting you know that i declined the speedy deletion of naveen sawhney a page you tagged for speedy deletion because of the following concern the article makes a credible assertion of importance or significance sufficient to pass a thank you uk,0 +proxy range block possible collateral damage you re call see user talk cubbieco since its your block and i am not much help with proxies myself i ll leave it up to you talk contribs,0 +pulp fiction would you recommend it,0 +rsa labss now emc mit and acm are wrong vquaker i am used to accepting correction when it is due but for the life of me i cannot understand why cited information from a primary source rsa labs on the fourth factor of authentication is not worth knowing i am confronted with the information that because it is not a legal requirement as far as you know it must be spurious some people know that it s better to get their legal information from government sources not wikipedia if you are holding up this resource as some type of cfr or usc guide exposition or sanctioned resource then i believe the u s government would like to hear your ideas further someone you know or knows you is part of network administrationwhich is part of the brilliance needing a cohort or supervisor to provide a human factor is difficult to defeat though i suspect you know this already i m not offended though just immensely confused as to why this item of access control must be devoid of technical information and meet some arbitrary legal standard i would ask you this if a user loses their smartcard i e cac and forgets their password with the premise being that biometric devices or other inherence factor methodologies are not deployed in most situations does an administrator with knowledge of the user ask they be terminated or do they reissue credentials based on knowing the person there are organizations that will terminate you but i couldn t have said that in my expounding of the th factor because it would mean citing information not available to the lay i do hope i can talk without citing what those in df and is would consider common knowledge when we set out it was to provide reliable information if the mission has changed well who could tell consider me a non contributor from now onwe aren t allowed to use wikipedia anyway where i work it is an anathema say what you want unless it surprises someone and then an ego check is issued i should expect nothing less after all i teach what changed the tone was your dumb ing down and use of nonsensical examples that could not be used to authenticate someone smell non sequitur you gave me things to read but i m still waiting for you to cite wikipedia s policy that information be legally sanctioned and in the format expected by a barrister i cited my sourcewhere is the citation that the language style organization and applicability be in line with one or more regulatory bodies now a better way to be proactive would be to realize that academic databases do you have access to them elsevier jstor edas ie springerlink they can be pricey if you try and yet without them you re stuck in a google funk but i digress are full of references to fourth factor that cash register key the manager uses when you return something yep someone you know an that s been around for decades sign up for an account with an isp there it is again take joy in knowing you have some sheriff star and are for the most part helpful i just didn t realize you alone set these standards i repent in ashes and wrend my sackcloth accordingly,0 +hello shanks i have seen you contribute a lot in sports especially with greek teams and sports can i ask you if you support greece in all sports have you followed women s water polo world championships when greece have won the gold medal and how many medals do you think greece will win in london let me know thanks,0 +note i dont know but i have a banknote and it s green in colour and has a ram on it anyone know what it is i ll scan it and upload it soon,0 +june utc ermm i actually designed and built the shopfront are you really telling me what i was thinking when i did it hiding the crack was the original reason not the only reason another thing the shopfront only juts out by inches in a couple places and is mainly set back from the building line by up to feet this creates the impression that it hangs out over the pavement i will dig out a picture of the shopfront from the side if it will make you happy chris ostwald,0 +argh can someone sort out its location,0 +alright i suppose can decide whether or not they want to remove the comment t c,0 +hi there how can i help you reply,0 +and more details on his various positions in the oil industry,0 +mfd missed that thanks zapped regards talk,0 +some that we know would claim that as or but i won t as i said if you want gb maybe find a source that says it,0 +tuberculosis pages on dots rntcp i had recently started a wikipage on rntcp and only later did i realise that you had contributed a lot towards tuberculosis previously and that had discussed about the need for including integrating dots on the wikipage tuberculosis treatment now it looks odd to have a separate page for rntcp without one for dots what shall i do,0 +i would say this is bad form but the whole dispute has tired me out and i don t really feel like intervening,0 +february please stop if you continue to vandalize wikipedia you will be block from editing speak if this is a shared ip address and you didn t make the edit consider creating an account for yourself so you can avoid further irrelevant notices,0 +no taekwondo is in the first sem this year or maybe in the succeeding years due to the placement of volleyball in the second sem i don t know the true results of the taekwondo tournament yet swimming details please be informed that rankings in the swimming championships is based on total number of points accumulated by the team not solely on medal standings and if possible please include all medals it is suggested that the table be put with these headings team points gold silver bronze total,0 +backronym i have a feeling i read somewhere that the name tardis is a backronym or apronym the name came first and what it stood for came later am i right if so surely that should be reflected in the article however i ve done a quick search on google and can t find anything that indicates this i might be wrong,0 +given name is it a female or male given name,0 +sockpuppetry case your name has been mentioned in connection with a sockpuppetry case please refer to wikipedia sockpuppet investigations dr karl fan for evidence please make sure you make yourself familiar with the guide to responding to cases before editing the evidence page talk contribs,0 +rails i question that rails is a shared nothing architecture by default it has file based sessions as well as a single process runner which doesn t get reset between requests if you set a global variable in one request it ll be there in the next assuming you end up at the same backend,0 +the second project wikipedians against censorship is a cynical trolling campaign lead by gorgonzilla a well know problem user it would be entirely inappropriate to merge the two erwin,0 +i m against merging the articles i think part of the confusion is that is interpreting african american as a purely ethnic label if it were s arguments would make sense but it isn t it s a label that makes reference both to a person s ethnicity and to their nationality,0 +thankyou gareth that s very kind is that mound really made of loose sand i wonder if so how do they stop it slumping in the rain the designer in me is thinking of practicalities,0 +organisations also count as things the section you quote from wp name is in the section titled use english words which goes on to say sometimes the usual english version will differ somewhat from the local form as in franz josef strauss and rarely as with mount everest it will be completely different this is clearly a case where the usual english version differs somewhat wikipedia naming conventions political parties carries several exceptions the third exception is parties whose name is more commonly known by acronyms than their full name in international newsmedia since gpv is more commonly known by its acronym this naming convention does not apply there is no problem with ambiguity since there are no other topics in wikipedia that carry the name gpv even if there were this article would then be named gpv political party to disambiguate them in conclusion please read naming conventions in full before quoting them to me also please demonstrate that gpv is not the most commonly used name in english for this party which you have not yet done thank you,0 +tangential forces the tangential forces coriolis and euler can be applied to a system but they don t occur naturally apart from perhaps in electromagnetism but that is off topic during the last week there was quite a bit of discussion going on about the euler force and the oriolis force along with false allegations that i was confused between the two we can apply a coriolis force or an euler force to a system if we like the euler force will increase the angular acceleration and the coriolis force will change the direction of a constrained co rotating radial motion in a rotating frame of reference with non uniform angular acceleration there will be a fictitious euler force acting tangentially in a keplerian orbit there will be zero tangential acceleration although it is possible to see that this zero is the sum of an ongoing equal and opposite euler force and coriolis force having said all this tangential forces are not highly relevant to this article they could be mentioned in passing but the article is about a radial force the centrifugal force is an outward radial force more attempts should be made by the editors here to concentrate on differential equations in the radial distance variable they they might begin to get a feel for waht centrifugal force is all about,0 +thank you for pointing out why you did it more than one user uses this account and i didn t know what edits they may have done that s why i was confused about the message on my user page thanks,0 +yes you re right theologically catholicism is very different to american protestantism which gave birth to the creationist movement and are certainly not interested in the sort of fundamentalist theocracy that most of them want sure they use the teleological argument but phrase it in theological language which is a lot different from scientific language and hence it isn t pseudoscience which is what irks me as a scientist but i don t understand theology probably because i ve been trained to think too scientifically and the catholic church most of the time has better things to do than make statements on scientific issues but catholics are really into authority so what the hierarchy says goes dunc,0 +oh gwh you truly are the worst admin at wikipedia may god have mercy on your poor pathetic overweight ugly soul,0 +in addition even assuming that your conditions were in effect a three week block for violating a restriction put in lieu of a hour block is completely disproportionate and a great example of wp game the punishment block being ten times the length of the original block,0 +right now the image is being used on an article so i have tagged it with and with additionally because i m not a licensing expert in general additionally i have removed the image from the user s page,0 +nazi punks not nazi skinheads to those of you who wish to contribute to this article please refrain from entering in information pertaining to skinheads the point of this article is to show the difference between nazi punks and nazi skinheads and to show that nazi punks exist within the punk subculture these are two different subcultures and though people often mistakenly call racist skinheads nazi punks they aren t the same thing at all,0 +yeah sure socialism is anarchism and war is peace and love is hate and positive discrimination makes sense at least i m not a voluntary slave voluntaryslave i won t even be a forced slave duck talk,0 +and this must be illegal,0 +oops misunderstood you blushes silly me i haven t thought of the idea but that s certainly a new way to prevent imposters i ll think about it thanks for watching out for me hugs mop ln,0 +this is about candy not artists as such while filmmaker charlie panian may be deserving of a page it isn t this one if you want to start a page about charlie panian then please link to some critiques of his work as well imagine i swore,0 +oh don t tell me talk,0 +thanks thank you for probing deeper into the matter would you also kindly help me protect my talk page from bullyish reverts,0 +palestnian imagery i figure that same as with other nationalitiesexamples the front image should be of prominant figures rather than an obscure image of two smiling children suggested prominent palestinians feel free to expand namelist and or add from the list to the template mohammad amin al husayni yasser arafat faisal husseini mahmoud abbas rana raslan israeli citizen arab palestinian winner of miss israel controvercial suggestion but interesting ahmad tibi palestnian arab israeli knesset member azmi bishara pro resistance palestnian arab israeli knesset member,0 +ed have you ever shown this kind of interest in any subject which did not directly relate to one of your pet peeves such as criticism of the unification church things you perceive as sex immorality or legitimate science dismissing crank ideas,0 +i still don t understand what i did there is a problem with my internet connection so i didn t receive your message in time,0 +creationist category as there are no cites in the article making the claim that santorum is a christian creationist such a categotrisation is bartred by wp blp as an absolute cheers,0 +careful big guy i think my comment is clearly related to the topic could you please respond without trying to disparage first thanks oh btw thanks for reverting yourself after you reverted my removal of unsourced material next time if you would please check the source before reverting me instead of after reverting me then i would appreciate that,0 +undo good job undoing and not discussing on the talk page talk,0 +thanks for these replies i atleast found one,0 +we own the project so how the heck is it unambiguous copyright infringement and it wasnt written in a promotional way it just explained the project and the system requirments i m starting to see why so many people hate wikipedia,0 +thivierr rob may,0 +i am trying to explain to you once and for all that neil armstrong landing on the moon is just as fictitious santa claus appearing on xmas or and his submarine cars how dare you pollute cyberspace with outrageous lies that suggest it was otherwise and that deadly diseased celebrity liars like armstrong s and aldrin s and nixon s were telling the truth about it all what if young and impressionable children looked up apollo on wikipedia and all they see is nothing but your deadly mistaken rehashing of late s hoaxes presented as scientific achievements,0 +listas phillips melanie,0 +unsigned well then though i ve not read it i suspect discover magazine is being silly rheumatic fever is one consequence of streptococcal pharyngitis but another is renal failure causing nephrotic syndrome and thus anasarca so they can t really rule out renal disease nor can they with much legitimacy argue that mozart probably died of rheumatic fever because it was epidemic nor have they listed all the possible causes of anasarca these retrospective diagnoses are always rather tenuous and should rarely be taken as proven jul utc,0 +not only it s a theory today most experts believe aryans came from east and north east of iran from bactria sogdia and central asian steppes,0 +please do not vandalize pages as you did with this edit to keith if you continue to do so you will be block from editing,0 +speedy deletion of charlene doofenshmirtz a page you created charlene doofenshmirtz has been tagged for deletion as it meets one or more of the criteria for speedy deletion specifically it is about a person or group of people but it does not indicate how they are important or significant and thus why they should be included in an encyclopedia please see the guidelines for what is generally accepted as notable and the guidelines for biographies in particular you are welcome to contribute content which complies with our content policies and any applicable inclusion guidelines however please do not simply re create the page with the same content you may also wish to read our introduction to editing and guide to writing your first article thanks blanchardb myears mymouth timed,0 +you learn now other admins are involve you see i am editor and doing edit you want unsource unverifiable information for wikipedia i am not so you get mad is not my problem from one admin top another in response for ispy board admin post how in the world can one be a sock puppet of the other when a sock puppet by definition is an additional username used by a wikipedian who edits under more than one name in this case there isn t even one username let alone two what s more there s no evidence provided of any attempts to avoid a ban or other disciplinary action nor an attempt to increase the perceived support for any particular campaign in short there is no sockpuppet there by the way even if they re the same person there s not even any reason to assume that they re trying to appear under a different ip address they re both simply coming from road runner accounts it s my understanding that road runner assigns dynamic ip addresses no,0 +thanks for experimenting with the page earth on wikipedia your test worked and has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia thanks talk,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia questions ask me on or ask your question and then place helpme before the question on your talk page again welcome stalk to me,0 +what was cleverly inserted instead thanks for assuming bad faith in your edit summary smatprt are you really going to put up a separate fight to retain the ugly and illogical use of term on each of the involved pages after there was support for my rewrite at shakespearean authorship question i was hoping you d have the grace to let it go when i inserted the same changes here may i ask what exactly it is you suspect me of my changes at shakespearean authorship question were intended as neutral stylistic improvements everybody else thought that s what they were but you keep implying i have some evil agenda and therefore keep reverting me what is that agenda exactly can t we try to assume that we re all trying to improve william shakespeare and it s subarticles talk,0 +european union since when has the eu been a legal country its not so dont treat it as one as much as freedom hating europhiles wish it was ukip,0 +would you be able to take a look at the champion hurdle article binocular s colours in rd place look a different shade to the ones shown for is win thanks,0 +your edit to world wrestling entertainment,0 +user talk hammersoft since you do not wish to keep a civil tongue in your discourse with me then stay off my talk page the thread has been removed and no further discussion from you is required asked for or wanted stay off my talk page good day don t behave like a tosser if you stay away from the iw page i ll stay away from your page,0 +i agree why don t you,0 +nicolas hammond s articles i have added category living people to his articles and created talk pages with the wikiproject biography on some i have also included wikiproject contract bridge i shall agree that his articles includes section early life has nothing except bd you have awb you can just track my contributions and remove from each or i should do it talk contributions log,0 +exploding tvs i don t think belenko is a credible source,0 +orangemarlin post i dont care if you unblock me but i demand that you undo the revert of my post on orangemarlins talk page it is not vandalism it is totally relevant to the discussion and you have no right to remove it especially before he has read it,0 +the wha when hull arrived,0 +evan blass update i have made the following comment on the talk page for evan blass let the record show that as of november eight days after editor user lix threatened an investigation into my integrity as a contributor to this page he still has not initiated the investigation or provided an update on its status i eagerly accept any investigation in order to prove my innocence however user lix evidently deems it appropriate to make public allegations without following through editors to this page should take careful note that,0 +awful bio obviously a hatchet job from a press release and totally biased bad grammar too,0 +yes of course i totally forgot we have those guidelines thanks perhaps we can get a mini consensus from the regular editors to scrap it or just do it,0 +about einstein my search of any document that might bear einstein s name in the league of nations archive in between returns no results see http biblio archive unog ch archivplan aspx by reviewing five books dealing with einstein s work and life not a single one mentioned this einstein s support to the ustase cause just one written in german einstein sein leben by denis brian christine von samson mark wiley vch page indem er sich den angelegenheiten seines eigenen landes zuwandte empoerte sich einstein ueber deutsche studenten die fuer die entlassung eines professors agitierten weil dieser ein pazifist gegen politisch motivierte todesurteile war es ist entsertzlich zu sehen wie die unerfahrene jugend fehlgeleitet wird schrieb er an das berliner tageblatt wenn dies so weitergeht werden wir nach einer tyrannei der faschisten bei einer herrschaft des rotten terrors ankommen er glaubte dass eine solche herrschaft bereits in jugoslawien ausgeloest worden sei und kritisierte die landesregierung fuer den mord an dem kroatischen fuehrer professor milan sufflay der geschichte an der universitaet von zagreb gelehrt hatte reading further this book it is clear that the only information available to einstein was the inside story of the ufflay murder was given by the croat journalist ustase propagandist slavko cihlar in the berliner tageblatt february so it is apparent that einstein fell under spell of the ustase propaganda about the same propaganda see appeal of the croatian academicians to the world of civilisation how the croatian savant professor of university dr milan sufflay was murdered by the serbian royal dictatorship by croatian university clubs association zagreb pages which was elaborated by blood and homeland eugenics and racial nationalism in central and southeast europe by marius turda paul weindling central european university press page shortly afterwards students from the croatian university club association produced an english language pamphlet how the croatian savant professor of university dr milan ufflay was murdered by the serbian royal dictatorship in which they appealed to european public opinion to recognize that the murder of ufflay was the result of endeavors to build an absolutist south slav state in such a state the european culture of croatia and the croatian was to be replaced by serbian suzerainty in which orthodox byzantine oriental asiatic and oldtuc sic political and social traditions had been subsumed into a system not only contrary but also odious to european culture turda also says that his murder occasioned international condemnation and outrage from among others albert einstein and heinrich mann of the german league for the rights of man no source was given about the sufflay murderer thinking about yugoslavia scholarly debates about the yugoslav breakup and the wars in bosnia and kosovo by sabrina p ramet cambridge university press page goldstein croatian historian leaves the question of agency to the side and writes simply that ufflay who as he notes was an accomplished observer of albanian culture was killed on the street in zagreb the killers were never found see also croatia a history by ivo goldstein trans lated by nikolina jovanovic mcgill queen s press mqup page about the same sufflay women gender and fascism in europe by kevin passmore manchester university press page fascism in croatia chapter ante starcevic and milan ufflay who used a demonic concept of serbs as the cornerstone of their ideologies conflicts studies in contemporary history by lewis bernstein namier macmillan page the racial theories of a croat writer named ufflay were taken up since sufflay had held that the croats were not slavs like the serbs bu were descendants of a settlement of goths war and revolution in yugoslavia occupation and collaboration by jozo tomasevich published by stanford university press page sufflay was indicted in for espionage and connections with croatian emigres and sentenced to athree year prison term bottom line the story about einstein s support to the ustase cause is one sided and even false,0 +don t worry thuranx i don t think i will be spending any more of my time or hard work on wikipedia after the lies false accusations and lack of truth that has occured here lately there is no point in arguing against ignorance the principle of it all just makes me very angry good bye,0 +beyond the call of duty the camouflage cup for making world war ii ship camouflage measures of the united states navy into such a splendid accurate and informative article i hope you will go on to create many more camouflage articles,0 +hey the edits i made were legit and were not vandalism those are legit player nicknames placed in the format player nicknames are commonly placed in,0 +who has provided a wp rs in english or trans lated into english for this contention,0 +so you can print it out after,0 +thank you for this but if i understand correctly you are assuming that the force is proportional to the magnitude of the apparent wind but the total force on the sails is proportional to the square of the magnitude of the apparent wind so the forward force depends on the angle and on the square of the magnitude that is the relation that i used for the degree table above but maybe i misundertand your formulas and your table,0 +a consistent conceptualization of phylogenies phylogenies i e dictomously branching processes are processes that involve things that is objects and as such have to be modeled by object oriented modeling in order to be consistent with the distinction of objects darwins model of evolution illustrates biological species as objects and is thus no different from phylogenies of other kinds of objects like a sex ly reproducing cells or mitochondria now as an object oriented model the model actually represents two consecutive objects i e two objects in a row by each of its internal lines i e lines between nodes one after a node and one before a node the former belonging to the category i e concept objects after nodes and the latter to the category objects before nodes if the model includes all objects of a certain category then both of these make up this category in summary phylogenies consist of two categories i e concepts of objects objects before nodes and objects after nodes and if the phylogeny includes all things of a category then these two categories make up this category cladistics or cladism as i prefer to call it confuses the concept objects after nodes with the concept objects before nodes by defining lines between nodes as single things thereby confusing category with object that is kind with thing thus confusing conceptualization itself the approach is actually a return to a pre scientific stage this time denying the incompatibility between pattern and process instead of acknowledging it and solving it consistently it is a return alley that no scientist had ever expected anyone to advocate if this approach could ever be proved to be correct then it would mean that reality only exists in our own heads luckily einstein s discovery that time is relative to space falsifies the approach i e claim and this it did even before the approach was born cladism was thus shown to be wrong before it emerged consist presently at,0 +hi how are you today i ve been looking over your fetal alcohol work and it s pretty sharp my dad s a doc and he did a lot of work at johns hokins with that he looked at it too good work so yeah the will mcwhinney article certainly has you all in a tizzy i m not looking to out anyone or anyhting it s just gotten to the point that well i think there s a reason and other people too to read about this fascinating community activist i was telling will beback i ve been a memebr of sierra club since i was akid my parents enlisted me and made some rather large donations in my name throughout my life and i ve done the same wiht my own children it s a cool way to move things forward like that movie but hoefulyl much less trite anyhow what s the good word with you today i think of our battles more like the old warner brothers cartoon with the coyote and the sheepdog punching in before they set out to undermine one another because that s whats happening here i m actualyl writing some pretty solid stuff here and you and will beback are bending over backwards to break rules and uphold them agaijnst me look over at biff rose there was a flargrant violation of the rr standard and i pointed out that to will beback that each time i made that violation i was block and banned i see that the person who did it this time was not block or banned so you know i ve got a whole list of these that is being sandboxed by another ip to follow up on as i told will you need to play fair for me to adhere to any standards you want to uphold you can t just block an article because true information is being disseminated through it well you can but it s against the wiki rules and so you are in violation though i don t really think you care anyhow hope you keep your head above water and i l lsee you at the fights so to speak have a good day i ll remain civil as long as you do but you ve got to remain civil in your actions too ok ok,0 +your source states about the black white difference in iq which at the time was about points the neisser et al article stated there is not much direct evidence on this point but what there is fails to support a genetic hypothesis that conclusion stands today there has been no new direct evidence on the question see rushton jensen a b gottfredson and lynn vanhanen for the view that the black white iq difference is owing substantially to genetic differences between the races and that indirect evidence having to do with such factors as reaction time and brain size is probative see nisbett for the view that the direct evidence indicates that thedifference between the races is entirely due to environmental factors and that the indirect evidence has little value please stop lying then applying the same defintion to c the answer is no do you see the problem here question c is the hereditiarian position a mainstream view the question is whether it is a widely held mainstream view that the iq test score gap is likely to be significantly explainable by genetic factors note that the question is not whether it is the only mainstream view nor whether it has been proven to account for the entire gap but only about whether it is considered a probable explanation by a wide selection of mainstream scholars yes question d is richard nisbett considered a mainstream scientist the question is whether nisbett as a person and a scholar is generally considered to be within the mainstream of the field of psychology the question is not whether he is prominent and notable enough to be included but about whether his views should be given equal weight to mainstream views within the article no nisbett holds a minority view which has been described as having virtually no chance of being true by a reliable tertiary source,0 +ok i ll buy fortunately with regard to the images of the park but not to the everpresent noise from the motorway regardless of how easy it makes the access can t you put an un in front of it like the descriptions of the absentee hermit and the visitors,0 +my rfa was a year ago this week the lol is that casliber you were one of two people to be neutral plus one opposer everyone else supported so i guess i have many people to blame but only a handful to thank,0 +is in the discussion page where a suggestion is made wtf if pats cannot handle the truth then step aside,0 +there was a bad redirect that dumped all talk onto the wrong page,0 +kejriwal please can you read the talk page and do as you were asked ie make proposals there thanks,0 +jakarta i live in jakarta i m not indonesian and i am objective census figure for greater jakarta jabodetabek or jabotabek is million larger than any other candidate except for tokyo a recent national geographic megacities episode described jakarta as the rd largest megacity in the world i am of the considered opinion that it is actually the second and larger than seoul maybe it s time to acknowledge jakarta its km long and km wide built up all the way,0 +the name was changed because desktop replacement computer is the more common term and the term used by it professionals desknote remains on many pages because the article was originally located at desknote and so many pages linked to it you re really getting off on the wrong foot here please read wikipedia ownership of articles and wikipedia assume good faith rather than attacking me,0 +i think the information given in wikipedia about the languages spoken in the sahrawi arab democratic republic is manipulated only reports the official language of the sadr and languages spoken native why languages spoken native because they simply reported languages spoken as if reported in the wikipedia page of western sahara http en wikipedia org wiki western sahara i really believe that you are using this formula spoken native language not to include the spanish language as spoken in the sadr who will believe that a country has spanish as second administrative language and no one speaks the language even as a foreign language i do believe that the page of the sadr in wikipedia is manipulated and politicized by editors moroccan and expansionist anglo deluded think that the lack of a second language vacuum administrative sadr will favor the english language occupies that place to the i say that you are wasting your time like it or not the spanish language and will be the second administrative language of the sahrawi arab democratic republic today and tomorow,0 +you do realize your statement there is enough of a reason for you to be completely block from editing forever however i ll assume good faith and reply what do you mean not impressed not impressed at the policy or that it exists or what talkediting,0 +wikipedia requests for comment history and geography the following rfc was posted earlier today in order to end this dispute once and for all i trust that you will do the same phil talk rossville staten island as part of an ongoing edit war has been arbitrarily reverting all additions of external links to the article as removal of spam these external links which had been part of the article since it s creation are not spam and were unjustifiably removed one external link links to an article about the th anniversary of the oldest roman catholic church in staten island which is located in the neighborhood another external link links to a website created by a former resident who describes what it was like to grow up in the area before it was built up it seems to me that this philip gronowski character who has recently been resoundingly rejected in his candidacy for rfa is not making legitimate revisions based on the rules of wikipedia but on his own interpretation of what is spam i d like to request that this article be submitted for third party arbitration and i have exhausted all attempts at a compromise with mr gronowski i will abide by any decision made by an impartial administrator concerning this dispute thank you very much for your consideration,0 +if anti vax or anti vaccinationist is perjorative how would you categorize vaccinator and allopath,0 +genre changes hi as you can imagine many people have very different opinions as to exactly what genre their favorite or least favorite band belongs in the editing and re editing of genres is a never ending cycle on many wikipedia pages if you believe that the genre is not properly assigned to a band you may want to bring it up on an article s talk page and try to reach a consensus decision you may find that the discussion has already begun at the bare minumum you should use references to back up your change you don t want to be known as a genre troll if you have any questions please feel free to drop me a line on my talk page talk page,0 +by the way you can just use my wikipedia userpage to get my email address,0 +please try to be constructive and understand that an ecyclopedia should not contain unsourced claims such as the previous claim that tried to convince people that there is a legal problem it seems that you are not constructive as you support people who try to add unsourced claims i removed a maintenance tag that is nonsense as it cannot be resolved the way the initiator likes to i could however agree that we keep the maintenance tag for a while to give people the chance to give a verification for their related claim not to be alleged if nobody is able to prove that there is a legal problem which is what i expect as nobody could prove that claim during the past years we of course need to keep alleged,0 +thank you for your reply having noted the above fair do s would you like to remove the content now or shall i qwerty binary talk,0 +image pcm jpg i have tagged image pcm jpg as because it does not provide a fair use rationale if you believe the image to be acceptable for fair use according to wikipedia policy please provide a rationale explaining as much in accordance with the fair use rationale guideline on the image description page some examples can be found at wikipedia use rationale examples please also consider using or one of the other tags listed at wikipedia image copyright tags non free thank you,0 +joan of arc sword what ever happened to her sword i am aware one of her desendants from her brothers had procession of her letters and of her sword but it was lost has it been found how does it look like k thx,0 +we ll need a reliable source verifying he said that do you have one,0 +will one of you open an spi case please once that s done i ll take a look cheers talk,0 +re darren ross a legit request but i don t think it s really called for unless it s seen rapid fire recent recreation the re creations of the page have been huge spans apart months at least for the most part i would gladly bet my wardrobe it s never going to demonstrate this person is notable but it may just be some more proficient user at some point may wander in and do it properly until then the page s recreation isn t really a pervasive enough menace to warrant salting in my own opinion if it starts up at a really high pace then i d definitely say it s called for that s just my personal take on it anyway talk,0 +ppot i restarted the article,0 +and another addition since then please don t use these experimental formats until there is consensus to have an alternative if you don t use them outside sandboxes there will be no incentive to discuss their deletion pmanderson,0 +i agree but shouldn t we put something like german breakout in the outcome box,0 +re what s the story i normally don t post my e mail address on any websites let alone wikipedia but i did just rig my userpage so i could receive e mails or at least i think i did,0 +sure we can do that you can go ahead and edit the article swedish french italian women i think it is more of a regional thing that everybody around georgia thinks that georgian women are pretty i don t think that statement makes that much of a differece or requires that much of a discussion i am sure we can cite it using on of the travel guides to georgia,0 +circumcision advocacy jake you ve twice reverted on circumcision advocacy without offering the slightest bit of explanation some people might consider this to be intentional edit warring but i m going to assume good faith and instead politely remind you that edit comments are very important and that reverting without a stated reason is not considered to be a good practice for now i m going to undo your changes again but if you have a good reason all you have to do is explain it thanks,0 +welcome welcome to wikipedia vivalavida my name is if and i am a wikipedia administrator and i am a wikipedia administrator i just wanted to say hi and welcome you to wikipedia if you have any questions feel free to leave me a message on my talk page or press the request help button at the bottom of this message i love to help new users so don t be afraid to leave a message i hope you like the place and decide to stay here are some pages that will help you edit wikipedia how to edit a page tutorial sandbox the place where you can experiment where to ask a question what this site is based on manual of style here are some ways you can help improve wikipedia create an article help remove bad edits vandalism trans late an article improve illustrations and upload new images perform maintenance tasks become a member of a project that interests you i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia questions ask me on my talk page or press the request help button below again welcome if have a cup ark have a cup ark,0 +jimbo the crybaby sits in front of his computer everyday acting as the arbiter of the grand wikipedia the all knowing know it all who is the expert on everything the savior of the western world and of course when questioned about anything cries to the main office about ill treatment by the way a lousy editor who uses only one source a joke,0 +italian renaissance as a featured article before getting to the substance of my comment let me just thank you for all the work you ve done for wikipedia users like you are such an asset to the project i do have one minor critique to make though i noticed that you promoted italian renaissance to featured status but at the time i had an actionable and in my view appropriate objection candidate page with my comments i objected to elevation to featured status on the grounds that there are stylistic issues in the article missing commas etc i went through the first half but haven t had time to fix the second half at any rate you probably just didn t see my objection i ll do more to address it myself but the style isn t up to par for our rightly high standards for featured articles talk,0 +july utc he appears to have resumed editing with anonymous ips almost immediately after your block i ve opened an spi case at wikipedia sockpuppet investigations noormohammed satya so that others can start tracking and blocking the socks as well,0 +spellin i noticed you spelled politics as politcs on your userboxes if this is intentional it s all good if not i didn t feel right editing your userpage thanks for the greatest website userbox by the way,0 +perhaps there should be an external link from the human rights and equal opportunity commission page to your writings in order to demonstrate a great example of the sort of comment that promotes racial and religious intollerance do you have any strong feelings either way regarding external links,0 +not sure the roman army was made up of many disposable armies of mercenary and only the legions were true roman decendents i m pretty sure military service was mandatory in order to remain in the roman empire i see you are right about religious persecution i must have been misinformed before an ethnic group could enter roman boundaries to serve under rome for their protection,0 +nope you re wrong you can t block all possible ips i could use as that is impossible thanks for trying though chin up pal,0 +it s obviously one of the people credited as providing voices for the game however it ll be hard to determine which one,0 +no big deal essentially you have re added a description so now the article has basically two of the same description worded a little different from each other what do you feel,0 +your argument is that we should take your word over that of the sources all you have said is your own personal opinion and original research rather than facts supported by reliable sources as i stated earlier present reliable sources stating otherwise if you disagree with the sources given secondly there is nothing wrong with the integrity of the sources given you claim that the global financial centres index commissioned by the city of london corporation must be biased because it is based in london you fail to mention the other two sources given forbes and mastercard both of which are american and based in new york city nor do you provide any sources supporting your notion that the city of london corporation is a biased institution it is clear from this argument that the article faces two choices it can go with thmc s own personal opinion and original research or the word of the city of london corporation forbes and mastercard,0 +let s have a beer to celebrate thanks for reviewing united states v kagama a newly promoted featured article boomer,0 +no problem i was confused by the see also because it wasn t italicised so i didn t realise it was actually about a publication i just thought it was about contemporary japan anyway i ve made a few final tweaks but now it s good to pass nice work,0 +or i could simply change the caption so that it reads a drain in sydney being explored the graffiti is there because it is there it just happens to be in the photo,0 +this is what ortiz wrote taken from the w ex iwp org site social therapy does absolutely nothing to cure or properly treat people with mental illness i ve since been diagnosed as bipolar on the lower spectrum which means that my mood swings rarely include the fun euphoric aspects of manic depression another former patient once said that social therapy encourages if not engenders such mania and obsessive impulses and i agree i certainly felt rapture during therapy sessions and in the presence of fred newman for a while if you have a problem with what ortiz posts on her site maybe you shouldnt include it as a link,0 +how should we proceed then the show is based on real events the character names have been changed to protect their privacy and what little left was the dignity i understand what you are saying but it doesn t really fit either,0 +j whistler kindly leave my page as is rembrandt and paul da man c feel that same way may we suggest another hobby that would be more suitable for your free time like hunting for dangling participles here s one for a start swinging wildly through the trees the children were delighted by the monkeys it s good fun when you get going whistlersghost,0 +ecb those who take the trouble to access the reference in the cs will see that it refers to a reprinting of the official ecb press release,0 +article links i m not sure if we should link to an article in the portuguese wikipedia in the english wikipedia it is probably better to link to an english article perhaps we should make a comprehensive chart of the portuguese prepositions in contracted form but with description in english,0 +then for that matter it s time to stamp citations required on the article,0 +i concur but with caveats you re an admin so is there a way of enforcing your recommendation if it is ignored by one or more of the parties to the gif arbcom case could you provide a clickable internal link to the gif arbcom case so that we can read what it s about kiwiexile at dmoz,0 +album genre while stubbornness is based on poor sources the war will not end just a little study attention touch glam metal please have mercy is not there filter are throwing everything in a common grave without any precept,0 +it appears that you two obviously should get along well together,0 +legal action pending i urge you to read the long history records on the ronald ryan article and discussion pages there have been defamatory and false edits against ryan and his living family menbers we know meatpuppets are using various fake ips to add false material and to removal of factual material in one of many recent disgusting edits by meatpuppet s ryan was accused of having sex relations with his own daughter in another disgusting edit ryan was accused of being born a homo sex ryan is dead but his family members are alive to take legal action against these meatpuppets ryan s surviving members of his family will continue to correct the distorted manipulated opinions and views of one book author mike richards whilst all other referenced material is ignored vandalized and removed the scapegoat excuse being used by these meatpuppets is wrong as it is outrageous members of the ryan family are alive and well supporters of ronald ryan will forever unite on the facts of his case and execution we will continue to contribute the facts based on the hundreds of references that diagree with richards personal views facts like there is no scientific evidence whatsoever to prove ryan fired a shot to put it bluntly the meatpuppets refuse to allow any contributions on the facts of the ryan case their hatred for ryan is rather sick and disturbing to say the least,0 +peer review i ve spent the past six weeks overhauling the hip hop dance article and now that i ve finished i posted it for peer review here i decide to invite you to review it because you ve edited this page in the past and based on you contribution history you tend to edit articles that have to do with music entertainment i would appreciate your feedback be forewarned that this is a long article not including refs external links templates and categories it s pages printed if you accept my invitation to review you may want to print it first and make your edits that way i found it easier to read and to correct when i did this although long it makes for a good read during a lunch break a bus ride or pure boredom i learned a lot myself while rewriting this article if you like to learn this could be an incentive for you,0 +thank you charge,0 +it s completely legal to shave my head except i will not shave my head yet it s also completely legal to eat lasagna and i will eat lasagna works out to the same end i hope we re on the same wavelength here because following rules is awesome hooray for proper discussion now feel free to stay away from me and my pages,0 +give me a little bit and i ll look into this swatjester son of the defender,0 +the article could definitely use some refinement but you are basing your edits on the work of fringe authors like peter korrel mike ashle y and frank reno none of them are reliable sources and much of what they write is spurious nonsense another problem with your edits is that you are padding the article with too much tangential fluffy details that do not need to be here,0 +or any historical fact concerning current armenia pertaining wikiprojects keep your pathetic winking marks to your antiturkish ass dont delete talk page entries fuck ing ass hole you dont have to make yourself obvious as a criminial on the loose are not you supposed to be pimping your mother in l a downtown at this time of the night normally,0 +speedy deletion of danny deguire a page you created danny deguire has been tagged for deletion in accordance with our deletion policy in particular it meets one or more criteria for speedy deletion the relevant criterion is test pages testing is permitted in the sandbox and in users own user space you are welcome to contribute content which complies with our content policies and any applicable inclusion guidelines however please do not simply re create the page with the same content you may also wish to read our introduction to editing and guide to writing your first article if you have any questions please contact an administrator for assistance thank you,0 +lol lol seriously bryanfrompalatine my ip resolves to cologne germany where i happen to reside i use no sockpuppets and when i edit per ip which i do mainly because it s faster without all the monobook css gadgets whenever i remember to i include my only active username with the signature but please don t let me keep you from wasting your meagre brain ressources i just fuck ed my hot girlfriend for two hours she came times me just times life is unfair so i m really calm as a hindu cow i laugh in your face pov pushing encyclopedia harming moron everyme logged out,0 +both of those are now fixed to use the enter nn as the prod reason talk,0 +copyright problems hello concerning your contribution d c employment justice center we cannot accept copyrighted text or images borrowed from either web sites or printed material without the permission of the author as a copyright violation d c employment justice center appears to qualify for deletion under the speedy deletion criteria d c employment justice center has been tagged for deletion and may have been deleted by the time you see this message for text material please consider rewriting the content and citing the source provided that it is credible if you believe that the article or image is not a copyright violation or if you have permission from the copyright holder to release the content freely under the gnu free documentation license gfdl then you should do one of the following if you have permission from the author leave a message explaining the details at talk d c employment justice center and send an email with the message to permissions en at wikimedia dot org see wikipedia requesting copyright permission for instructions if a note on the original website states that re use is permitted under the gfdl or released into the public domain leave a note at talk d c employment justice center with a link to where we can find that note if you own the copyright to the material send an e mail from an address associated with the original publication to permissions en at wikimedia dot org or a postal message to the wikimedia foundation permitting re use under the gfdl and note that you have done so on talk d c employment justice center however for text content you may want to consider rewriting the content in your own words thank you and please feel free to continue contributing to wikipedia,0 +weasels as pets http laughingsquid com ozzy the weasel adorably interrupts his humans video games by playing with his thumb,0 +i think i understand your position now and that would certainly be effective at eliminating false credentials claims however it also would eliminate a great many true credentials claims and the underlying premise of the proposal is that true claims are beneficial you may disagree with that premise but that s a different discussion i would like to find a way to verify pseudonymous claims while still generally preserving privacy i do think that s possible within reason although probably not in an absolutely fraud proof way as you point out in your opening contribution the verifiers must be trusted since not just anyone could recheck otherwise it wouldn t be preserve privacy that s the main design challenge remaining in my view derex,0 +united states i just bought one an hour ago and i live in the united states meanining it is obviously sold here,0 +activerain a tag has been placed on activerain requesting that it be speedily deleted from wikipedia this has been done under the criteria for speedy deletion because the article seems to be blatant advertising which only promotes a company product group or service and which would need to be fundamentally rewritten in order to become an encyclopedia article please read the general criteria for speedy deletion particularly item as well as the guidelines on spam if you can indicate why the subject of this article is not blatant advertising you may contest the tagging to do this please add on the top of the page and leave a note on the article s talk page explaining your position please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would help make it encyclopedic as well as adding any citations from reliable sources to ensure that the article will be verifiable feel free to leave a note on my talk page if you have any questions about this,0 +thanks for figuring out how to locate the images it s a good montage worth keeping i think you d have to do fancy cropping and a more creative layout than this one for the montage to get a copyright for the compilation could you go ahead and add the attributions etc i will remove the speedy deletion tag first,0 +unclear statement the use of the phrase it caught on fast is ambiguous someone might want to revise the sentence making it more clear what it is in it s current context it can refer to the styles of the product or the product in general,0 +red links the following red links have been excluded from this article and are placed here for reference horses akarlina artan astarabad bal de la rose caesarion chopastair darly dayzaan doctor dino flanaghan cock tail grand fleuve great dane homeland kadance ville laverock lowell marildo monjal oumnaz our account parme partipral pylades right wing sign of the wolf starlish vaguely pleasant valentino yaka zibimix jockeys trainers and owners alain badel peter baumgartner andr ben lassin gregory benoist fran ois xavier bertras xavier betron miguel blancpain pierre blazy georges blizniansky antoine boucher serge boucheron philippe bruneau alain chelet nicolas cl ment anthony crastus andrew crichton john cunnington jr berend van dalfsen m delcher s nchez arthur dewez jean ren dubosc philippe dumortier ecurie belles provinces ecurie mister ess a s jean bernard eyquem eduardo fierro aliette forien greenbay stables ltd guy guignard geraldine ivoula norbert jeanpierre alain junk jean luc kessas denis krief carlos laffon parias thierry lemer jean michel lorca daniel malingue javier martinez salmean ioritz mendizabal charlie milbank william mongil marquesa de moratalla paul de moussac xavier nakkachdji dino nanni fran ois rohaut martin r lke jean de roualle salomon sawicka david smaga stall brandenburg egon wanke,0 +wikipedia articles for deletion rantmedia discussion thanks you re awesome to help with the article but your comment might be better heard here wikipedia articles for deletion rantmedia t c,0 +it looks like sources and in the article support it talk,0 +my book on pre players gives it as,0 +no thanks i would prefer them to remain as a tribute to your wikipedia editing dishonor a sort of skepticalraptor award lol,0 +copyright violations answers in genesis does not publish creation ex nihilo an acknowledgement is insufficient for copyright purposes another party owns the copyright answers in genesis would need to display proof that they hold a licence to duplicate the content owned by another body they do not do this further duplicating another body s opinions do not make them the opinion of the organisation copyright violation is serious business on wikipedia,0 +untitled also see infobox vote codes and minor state please stop since there is no definition of a minor state there is no need to put it there is algeria minor iran it s a nonsense phrase so it should be deleted as for making ma a country code for western sahara it s not ma is a code for morocco and so it is in morocco s infobox eh was created for western sahara so that is its country code as far as the territory being occupied this is a clear fact and the position of the united nations it is also mentioned in the article in other places t c m it does not need a definition to be in the article a minor state is used as opposed to super power states permanent members of the security council etc as to the eh domain it clearly states the eh tld is intended for ws but it is not assigned ma being the one used in the territory the same thing applies for the currency the mad is the currency of morocco but that is also the currency you will find in use in the territory the same thing goes for the iac the time zone utc etc they are the ones used in the territory these things have been a matter of hotted debate before and they settled on the way they have been before you started tempering with them as to your ridiculous claim of the un considering the territory as occupied i already explained to you the difference between a un position through the security council that is reiterated again and again and a voting poll in of the algerian cuban drafted document that has no obligation on the un the zionism racism example is the brightest one for you to understand it i will revert to the version that was in use before the anon ip started this mess it does since minor states doesn t mean anything you can t use it in this article it s nonsense what states that ma is being used in the territory do you have any evidence of this at all the same thing does not apply to currency since there is no administrative body that assigns currencies to regions to ask which currency is used in a region is different than to ask which top level domain name has been assigned to the region the former is defined entirely by usage the latter is defined entirely by standards western sahara is clearly occupied as the article itself still states i m not going through this with you again t c m ah we re back to having fun again arguing about trivialities minor states is indeed a value judgement although arguably the states recognizing are largely minor on the global arena algeria is not a big newsmaker per se but in the interest of neutrality merely noting african asian and latin american states seems reasonable at the same time if koavf gets to bleat on about minor it seems reasonable that controlled be used rather than occupied same standards on language evidence on ma usage would be found with sites for entities ostensibly domiciled in western sahara provinces using ma it is trivially easy to find that koavf s immature partisanship notwithstanding what is an example of a website with an ma domain name which has the server in western sahara d trebbien talk may utc good question since effectively all internet service to the western sahara is via maroc telecom or other moroccan operators one would expect that most servers would be located in moroccan territory ex ws provinces largely in the casa rabat area technically i am unaware of any way to determine where the physical server is actually located versus the service presumably the regional investment office of laayoune http w laayouneinvest ma fr index asp may have its server physically in laayoune other similar offices may also it strikes me as useful for the article to indicate like country code most sites use the moroccan address ma polisario partisans may not like that but its effective reality country codes i find it reasonable th,0 +kevin and ben are raw,0 +sir i compel you to treat me with good faith and to cease this path of bigotry and condemnation you currently persue i only want us to be capable of working together and i will not stop until you submit either through charity or shame to my peaceful overtures,0 +warnings hey there is someone else on this ip they are vandalizing what do i do,0 +there is some confusion over poniatowski s status but no confusion over his gallantry flamboyance or wothiness as a marshal besides his inclusion would further help to illustrate the gla s international composition especially post,0 +tread carefully and be certain you read the references correctly it s a long history crammed into a month also read the exchanges between the user and who has already complained about personal attacks i don t usu run to mommy even if she is on my side or as the case may be in my pocket,0 +try youtube for highlights from the matches pre there s usually various clips around from people who recorded highlights programs i ll check the pst stuff and deliver comment later when i have more time to properly check it talk,0 +view askew you are right they should go or there should be an out of universe section that said vulgar also includes a number of actors from the view askew films and is not noted hope that helps or at least makes some sense,0 +sure here no personal attacks don t misrepresent other people as i said you re entitled to your opinions but not your own facts whether i m qualified or not to make philosophical arguments is not for you to say nor is it for us to say who can edit what or how there is no policy against arguing over or editing topics on which one has no knowledge whatsoever in fact apparently many do,0 +this requires a discussion silly indeed the edit you prefer mentioned a right handed model which the left handed iommi played upside down fine then it jumped immediately to the original left handed sg guitar don t you suppose the average reader might stop and think what original left handed sg guitar is being referred to so i restored the original text which explains it it s one sentence for god s sake and it serves to provide some needed context,0 +in the first sentence of the article,0 +lawl thanks for the untrue report you have no evidence for your claim,0 +do you have become a superstar in bangladesh well this is kind of bangladesh s superstars and models and we didn t know how pratyya could be the model for bangladesh as of may in the world pratyya ghosh seems to be a little lonely and he guesses that he wants to be an actor are you sure to want be a supermodel in bangladesh i hope you have starred in films the guy,0 +sock puppetry is using any account whatsoever considered sock puppetry this site is a complete joke i can t even edit using a verifiable account without being accused of violating some concocted offense my address was censored because i was using an account which was apparently improperly named so i am now using one that is properly named after the probation period and that in and of itself is apparently an offense logically what is going on is that i am being unable to contribute in any way whatsoever because i am being repeatedly punished for a first offense spawned from ignorance what kind of site are you people trying to run here it s no wonder the main founder of wikipedia turned his back on it when it s become such a blatant travesty of the intellectual honesty it purports to espouse i have continuously been censored for editing a biased article an article which is continuously edited by self avowed marxists and anti zionists the very same people whose pov the article unashamedly puts forward what kind of encyclopedia has articles that put forward opinion verified by echo chamber sources if any editor attempted to put that sort of trash in britannica they would be quickly disassociated with the publication but it s quite apparent that wikipedia has no controls whatsoever and has chosen to let the patients run the asylum there is no use in attempting to run an objective and educational publication when the very people who have discredited the internet as a source of information are allowed to manipulate the site by sourcing the same intellectually dishonest sites that people use wikipedia to avoid in short explain yourselves particularly roland rance who has manipulated his position on this site to censor any points he disagrees with all without explaining why when you stop accepting the ridiculous assumption that senior members are beyond reproach perhaps the site will gain some semblance of credibility as it stands wikipedia is just another example persistence winning over intelligence,0 +ok ok jeez you don t need to get worked up because i made your user page so much better,0 +routes a rockville route metro center shady grove red b glenmont route metro center glenmont red c huntington route metro center huntington blue orange blue blue yellow yellow d new carrollton route metro center new carrollton blue orange orange e branch avenue route gallery place branch avenue green yellow green f greenbelt route gallery place greenbelt green yellow green g addison road route d junction largo town center blue j franconia springfield route c junction franconia springfield blue k vienna route c junction vienna orange l route f junction c junction yellow any idea what h and i were to be dulles and columbia pike branches talk,0 +picking on a year old so sad just shut up okay im only years old i just wanted to have a little fun captain buzz kill i guess you never had a life when you were young that was probably like years old lol none yo beez nas,0 +yeah we sure could use some more pov pushers from loseristan,0 +mr caldwell is shown here wearing a numbers tag from a state penitentiary so apparently he was charged with other crimes than just the one federal charge we are being told about here,0 +posted am,0 +ok my mistake so in that case feel free to resubmit the afc talk,0 +hey tomorrow if tony is happy lets celebrate get that pc under control and we ll talk then,0 +i was not talking about monetary fine i meant vandalism results in blocking i thought that according to wikipedia if well sourced info is removed for ideological reason constitutes as vandalism i am still of the opinion that information should be allowed freely and not be censored wikipedia is an encyclopaedia not the promotion page of mirza s followers,0 +whether it was gambling on mortgages which were mostly refinancings or on other synthetic cdos so essentially if a vast portion of the market is basically people gambling on home equity lines of credit and refinancings is it really accurate to just call it subprime crisis,0 +december you currently appear to be engaged in an edit war note that the three revert rule prohibits making more than three reversions on a single page within a hour period additionally users who perform a large number of reversions in content disputes may be block for edit warring even if they do not technically violate the three revert rule if you continue you may be block from editing please do not repeatedly revert edits but use the talk page to work towards wording and content that gains a consensus among editors if necessary pursue dispute resolution talk,0 +t c owned t c,0 +i didn t realize discussion was required to prevent dirsuption to the enyclopedia thanks for the note xeno talk,0 +reference test northern agricultural network http w muratshrine org bios burns php references,0 +once again i m so glad that wikipedia is not biased or filled with retard ed children,0 +my hog is size soft with a nice chubb chubb,0 +midwest accent i see that you are deleting my corrections regarding the general american accent in the article midwest which quite wrongly implies that general american is owned lock stock and barrel by that region it s nonsense the general american accent is spoken all over the north from seattle to connecticut you are going to have to come up with some citations which realistically and accurately show that the northern accent originated in or is unique to the midwest before i kk allow you continue deleting my writings without a fight it certainly is not unique to the midwest a region which was not even settled by english speakers until barely years ago after the northern accent was known to exist in places like pennsylvania and upstate ny and connecticut it really bugs me to see the midwest taking ownership of an accent which began in the northeast the original author blunders badly by lumping the accents of certain urban areas of the northeast in with the rural areas anybody from my region the syracuse ny area formerly albany ny knows that our accent it totally indistinguishable from that of the midwest i challange anybody to put a group of midwestern speakers side by side with upstate new yorkers and tell which is which it s impossible it s the same accent utterly and completely the same and we ve been speaking this way since before the midwest was even settled so it s nonsense to say it s a midwest accent,0 +section blanking on the article for the tv series the blacklist you blanked the whole cast section those who read the article after that blanking didn t get more information on east cast member your edits appeared to be disruptive and have been reverted the next time you remove a section of an article as you did with the aforementioned article you will be reported to an administrator and be block from editing,0 +it s not possible it was all this bickering because two individuals want to sweep away yrs of helping and research because they they enjoy the power wp gives them through its rules there outta be a rule against rules your humble servant subwayjack,0 +adoption hi i m rosalie you seem like a great adopter for me so obviously that s why i am posting this message i am a friendly person and know the basics of wikipedia but would like to learn more feel welcome to check out my userpage for more information about me and what i like if you want to adopt me please leave a message on my talkpage at user rosalie hale thanks rosalie,0 +utc i agree with deletion october,0 +zest uh hello http en wikipedia org wiki user talk zest thanks for your help,0 +apocalypse soon the making of citizen toxie a prod template has been added to the article apocalypse soon the making of citizen toxie suggesting that it be deleted according to the proposed deletion process all contributions are appreciated but this article may not satisfy wikipedia s criteria for inclusion and the deletion notice explains why see also what wikipedia is not and wikipedia s deletion policy you may contest the proposed deletion by removing the dated prod notice but please explain why you disagree with the proposed deletion in your edit summary or on its talk page also please consider improving the article to address the issues raised even though removing the deletion notice will prevent deletion through the proposed deletion process the article may still be deleted if it matches any of the speedy deletion criteria or it can be sent to articles for deletion where it may be deleted if consensus to delete is reached if you endorse deletion of the article and you are the only person who has made substantial edits to the page please tag it with,0 +your pretty special you know love all you guys and girls,0 +i accept your apology let us just prey you don t slip up again,0 +probably not all manner of duct tape is inferior to fiberglass reinforced packaging tape it s much stronger has superior adhesion to smooth clean surfaces and it leaves far less residue when removed it s also vastly superior for creating hinges or tow ropes,0 +help pls help me on the hasan sami bolak article user kibele and her puppets are trying to make the article deleted as they did after a long political campaign in the turkish wikipedia you have enough language skills in english to tell people the facts better than me pls tell about their lynch campaign that they want to carry into english wikipedia thank you,0 +mario party is the fourth in a series of board game style video games for nintendo platforms featuring popular nintendo characters it was released on the nintendo gamecube in north america on october strangely before the japanese release on november it was released on november in europe being heavily criticised for being nintendo s big gamecube game for christmas as metroid prime was delayed until march mario party was the first mario party that was released on the nintendo gamecube each board had its own host including toad goomba shy guy koopa and boo mario party also contains some characters new to the franchise thwomp and whomp klepto dolphin lakitu and star along with two completely new characters named genie of the lamp and ztar are included as well mario party retains the story mode found in mario party the game as usual contains a standard party mode in which up to four players play through a board trying to collect as many stars as possible the star space would appear randomly on the board and players would have to reach it before anyone else however the stars carry a price tag of coins and player has to earn those coins by winning mi nigger mes which take place at the end of each turn after all the players have rolled the dice block which will always roll a number from one to ten battle mi nigger mes are like the player games but generally with many exceptions a little more elaborate battle games are usually tense because every player has to put a certain number of coins from into a pot first place gets of the pot second place gets and a random player gets any coins lost in rounding every mario party contains to mi nigger mes of a few different types four player games are a free for all in which all players compete against each other on and on mi nigger mes put players in groups so they have to cooperate in the mi nigger me to win even though they are against each other in the main game in most situations winners of these games make coins each a new addition to the mario party series was the bowser mini games players play in a very elaborate mini game that ends when one player is eliminated in various ways see bowser mini game section below the loser loses a pre specified item usually coins or items gameplay boards toad s midway madness goomba s greedy gala koop ass easide soiree shy guy s jungle jam boo s haunted bash bowser s gnarly party clear story mode to unlock it spaces there is various spaces you can land in the game the following is a list of them and what they do blue space you get three coins also there is a special feature on this game called hidden blocks in which a star or coins may be hidden on random blue spaces red space you lose three coins green happening space a special board event takes place warp space you are sent to the same space as an opponent a spinner chooses which opponent s space you will warp to mushroom space two boxes will appear one big and one small choose one and you will be given either a mini mushroom or a mega mushroom note the mega mushroom is not always in the large box and the mini mushroom is not always in the small box battle space a battle mi nigger me will start in which players put a chosen amount of coins into a pot the better you finish in the mi nigger me the more coins you will get back from the pot bowser space bowser may steal items from players or a bowser mi nigger me may begin fortune space a reversal of fortune begins in which players may have to give coins or stars to others the player who landed,0 +it sounds like the message was not intended for you please check out the disclaimer at the bottom of your talk page it reads this is the discussion page for an ip user identified by the user s numerical ip address some ip addresses change periodically and may be shared by several users if you are an ip user you may create an account or log in to avoid future confusion with other ip users registering also hides your ip address sorry for the the confusion talk,0 +december utc perhaps for not the first time i find myself in complete agreement with ottava caulde is a young editor and in the interests of full disclosure he and i have had run ins in the past over his claiming credit for work that he had not actually done he knew better than me how to play the system he is now an administrator and i will never be an administrator go figure i bear caulde no ill will he learned how to play the system and i didn t bother to take the same trouble maybe that s why there s a unhealthy preponderance of kiddie admins fatuorum,0 +continued discussion your new edit made it seem like demographic effects were only on early settlers we re concerned with demographic effects throughout,0 +afd just thought you should know wikipedia articles for deletion list of avatar the last airbender characters nd nomination,0 +direktor after all that we have been through i believe that we can clearly see ceha s nationalist bigotry here it goes again what disturbes me the most is that he is claiming this much detail one thing is to make a map the other thing is to make a map that has such detail like his proposed map does but do not worry yesterday i figured out how to make a nice map and am currently working on it,0 +october utc hi tom i understand and you don t have to convince me of the similarities it s just that wp requires citations to reliable sources in this case where the author of a book or a music paper article or a professional website like allmusic has made the connection so those examples above though worthwhile in themselves don t solve the citation needed issue however i m sure i ve seen the mona how soon is now connection made in at least one book on the smiths so let me scout around and see if i can find it take care and tks for stopping by to discuss cheers,0 +i m working on it thanks for the tip,0 +ec with moni or that using say dictionary of national biography articles is better than using oxford dictionary of national biography articles because the first is free to everyone and the second is only free to uk library subscribers never mind the year difference in scholarship and the turgid prose and edwardian victorian pov i ve seen it argued that we should use the dnb before the odnb it s like competence isn t required to edit merely civility which is so wrong on so many counts it s not even funny i took the latest wikipedia foundation survey today and found it unsettling more questions seemed aimed at how close is editing wp to fb and what would make it cooler more social media etc to you does no one remember we re supposed to be writing an encyclopedia talk,0 +again a so called demographic prediction combined with a conspiratorial context that s always the case,0 +please stop adding an endless series of pointless tags to pages i have edited your conduct is now effectively stalking as soon as the tags are dealt with you just add other ones thanks,0 +oops sorry see it is not really stone age civilization it is a civilization of stones because they left us a lot of stones ruins and most of their work was on stones plz correct what s necessary,0 +talk to me goebbels,0 +they should know immediately what it sounds like it has highly distorted guitars shrieking vocals etc but what defines black metal apart from other forms of music that also use distortion and screaming punk rock and indie may well have ideologies but black metals different values are easily identifiable and unique you all seem intent on giving black metal a disservice by simply labelling it as angry music if you cared about the genre you wouldnt and lol at thinking burzum has no ideology if you are the kind of person that thinks that then you don t know enough to edit this article the problem with of wikipedia to someone who is a non listener the fact that black metal has an uncompromising ideology is rather useless as a description why wouldn t they want to know also nice to see the page locked go listen to cradle of filth you complete tits you re all untermensch,0 +tending to take its cue from it once it s been establish there,0 +welcome to wikipedia we welcome your help to create new content but your recent additions such as alli reiter are considered nonsense please refrain from creating nonsense articles if you want to test things out edit the sandbox instead take a look at the welcome page if you would like to learn more about contributing to our encyclopedia talk,0 +totally worth it d yo,0 +trunkarchive com hi daniel i noticed you block user trunkarchive i suspect this user s activities formed part of a concerted promotional effort on the part of trunkarchive com a media licensing company to create bio articles on as many of the photographers in their stable as possible here are the other accounts neither currently active who may have been involved photofan s contributions consist almost entirely of creating articles about photographers represented by trunkarchive com several were deleted see user talk photofan but a good many have survived perhaps some are speediable g or a those that are not i could conceivably bulk nominate to afd with the exception of any that meet wp creative even those that remain should probably have the els to trunkarchive com removed under wp elno links to web pages that primarily exist to sell products or services i ve also added trunkarchive com to the list of proposed additions at mediawiki talk spam blacklist does this seem like a reasonable course of action,0 +hie dvdm i was writing what follows while you made your edit i can t right now but i will coming to review in detail your example thanks johnuniq for your advice and input concerning the actual statement i had already thought that after clearing things up with dvdm i would rephrase it into something in the lines of he is an iconic and inspirational reference for the generation growing up in the late s early s adding to some of the generation should clear your objection about the absence of stats but that s not the really important issue here the fact is that it is ethically improper from me and from wikipedia to declare that the you call it blog site is not a reliable source here but then find that the links and statements in inertia coupling or alexander abian are significant enriching contributions to the users of wikipedia and the sourced site is reliable there btw in these two and the few other topics the source is mentioned the statements leading to the source links would qualify as synthesis it would be highly objectionable from wikipedia to keep those links unchallenged for the time being and when someone gets around to rewriting the original material in the specific blog posts the links will be trashed out at this point the sentence being vague and inaccurate can be corrected it seems that if you articulate a sentence validated by some sort of source that is not a direct quote in most cases some synthesis is involved there is still the issue of the site being a reliable source it seems to me that the wikipedia efforts to keep the wackos with weird theories at bay is leading editors to substitute verifiability intelligibility and common sense by arguments of authority this would set me going into a long winded argument about what is happening to wikipedia once lauded as the place to come as you are becoming stiff purely factual and tight in such a way that it carries a lot of knowledge but no understanding this in turn carries into a discussion about public education and the work that carl sagan is known to the general public for cosmos was not about this marble statue said so but instead these are the reasons why we think so to me the posts in the disputed site i linked to are interesting but that maybe just my own personal opinion and wikipedia users having them available is positive constructive and enriching for wikipedia and that s the reason i linked to them in the first place throwing them out all of them seems like excluding a whole plethora of good things the baby with the bath water because a wikipedia directive says so just because it does not noticing the directives were written to prevent bad things from happening it would seem to me not to exclude good things by statute so the reliable source rules are something i would like to discuss a bit more at length,0 +let s see if i can answer in an orderly fashion lead the point is that it was very much his own style his trade mark looking at the sentence now it makes perfect sense please do i agree that sentence was not hatched it was contrived will think about it suggestions welcome why not i was just afraid that the article would be top heavy with a longer lead i ll just put it in my notes for tomorrow it s too late for me to think right now general learned something new here thanks please do i ve gone blind on the article for the moment early life my usual errors not combining words please correct thanks talk,0 +janurary stop posting rumors about the rapper or his label,0 +english in this article is it just me or is english really pretty bad in this article,0 +hello sir yunshi sorry i dont know sitush account used by multiple persons please sir for mutharaiyar articles i gave lot of reliable sources please undo previous day deletion,0 +summaries sorry bout that i ll try to remember better mahalo psst love the smiley,0 +hi robert hv asked the author to give a proper copyright permission in the format as required by wikipedia will get it in a couple of days and send it across to the relevant authorities ravi,0 +utc i think these are some very good questions and until they are addressed by a professional the article needs to be in dispute are there species or could there only be these are questions of significance november,0 +not done it currently reads at least million and in the section on the holocaust it reads to six million with references i m not sure what the issue is talk contribs,0 +hi and welcome to wikipedia i hope you like the place and decide to stay here are some pages that you might find helpful introduction to wikipedia the five pillars of wikipedia how to edit a page and how to develop articles how to create your first article simplified manual of style please remember to sign your messages on talk pages by typing four tildes this will automatically insert your username and the date if you need help check out wikipedia questions ask me on my talk page or ask your question on this page and then place help me before the question however there is a small issue with your username as it is in a non latin alphabet script it may not display correctly for many other users although usernames like yours are not prohibited wikipedia s signature guideline and username policy encourage you as a courtesy to other users to alter your signature so that it also includes a trans literation of your username using latin characters so others can see it correctly for the how to of tailoring your username please see wp customsig thanks and feel free to message me about anything t rc m d ch,0 +a tag has been placed on beezwax requesting that it be speedily deleted from wikipedia this has been done because the page appears to have no meaningful content or history and the text is unsalvageably incoherent if you think that this notice was placed here in error you may contest the deletion to do this add on the top of the page just below the existing speedy deletion or db tag and leave a note on the page s talk page explaining your position please do not remove the speedy deletion tag yourself if the page you created was a test please use the sandbox for any other experiments you would like to do feel free to leave a message on my talk page if you have any questions about this please don t remove speedy deletion tags from pages that you ve created yourself it s considered vandalism you can use the tag as specified if you have any questions leave a note on my talk page,0 +my policy on not english articles if no one else has already tagged them delete on sight a no context will do i cannot identify the articles subject and then leave a message for the author such as this one short but sufficient rhaworth,0 +your support for chris lawson are you sure you want to support this guy look at his source quote for making the red baron jew ish read the discussion page on it see the opposers views on his request page it scares me johnhistory http en wikipedia org wiki talk manfred von richthofen http en wikipedia org wiki wikipedia requests for adminship clawson,0 +you block me before i even made a second offense,0 +the particular section lists what has been claimed in rebuttal to the code theft charge that the claims regarding the significance of c to c trans lation and bit conversion seem spurious false or dubious to c c programmers are acknowledged that the medievia web page makes blatantly false statements about dates the origination of other muds and the significance of the above i also acknowledge i don t believe the article section is about uncovering the truth of their claims the only fact necessary to presenting that viewpoint is that they ve claimed it also presenting a lengthy history of public proclamations and announcements by the games principals which contradict their own official web history page is beyond the scope i think of what most people care about,0 +i have added some information on melina s run in other wrestling promotions i still need to add some more about her run in ovw feel free to edit the information,0 +google search predominantly shows the mixed martial arts over the football player,0 +no it wasn t scrapped alicia s version remains as the original and cent s version is just a sample of it also her version charted in the us and received plenty of coverage enough to have its own separate article regards,0 +conflict of interest your one and only quite large edit to exhilway strongly suggests a conflict of interest to me if so please disclose this conflict of interest on your user page additional information can be found here,0 +arji what makes you think this assertion is mistaken it is not my assertion it is the conclusion of this agencies report taken to be reputable enough to be run by several respectable news carriers around the world naming me a troll is a classy touch and calling for all dialogue with me to cease should be grounds for your indef banning from wikipedia the fact that you and kim don t believe the conclusions does not matter the evidence passes wp v and wp rs the evidence has been released to the media and no one of repute that s not you kim btw has challenged the validity or accuracy of the study the fact that the study doesn t include chinas massive underground coal mine fires only helps the conclusions of the report,0 +firstly some of the examples you used were from the personal attack pages maybe you should read your own posts also the reason i decided they were inane and decided to ignore them was because they did not directly apply to what i had said perhaps they applied to the numerous inferences that you made in reference to what i said but they did not apply to what i said and meant perhaps you could try not to infer or assume what i mean and try not to take offense so easily i am respecting the basic rules of wikipedia but i also exploited loop holes in the rules so if you want to include what i did in the rules then do so but you should state what you want and not infer your own meaning and i m so upset because you and several other people have been complete and total ass hole s to me and to another person who tried to post this same page you asked that we do something i e explain the significance of the clan etc and we did but you deleted it anyway and then you ask for more stuff and you give it to us also one of the pages i read on here says that the information has to be verifiable but not the truth well what kind of bull shit is that if this is truly an encyclopedia then dont you state the truth also if i go and post some article some other place rather than the clans home page then i can site that and it becomes verifiable right if you say no then this is just another example of something that is not explicitly stated and a loop hole that people can exploit before you go around messing with other peoples posts maybe you could get your rules and priorities straight,0 +understood and just wondering why is this section called rfa i am far from having enough experience to become an admin nor do i have any wish to become one currently triple m,0 +there are proposed theories and none of them weighs more than the others either all of them should be included and summarized in the conclusion or the generic current version that states the following should be kept although the actual circumstances and timing of the physical destruction of the library remain uncertain it is however clear that by the eighth century a d the library was no longer a significant institution and had ceased to function in any important capacity,0 +because you block me,0 +no problem the other thing is that when i read medical pages i start to think i have the same symptoms i wonder of other people are like that,0 +elelland hello humus i am sorry if i have placed this note in the wrong spot i m very inexperienced with wikipedia i was enthralled by wikipedia initially that is until i met eleland i noticed that you had some interesting discussions with eleland eleland engineered a small article which i contributed some information to be deleted he organised a kangaroo court made duplicitous unfounded claims and then set up a false consensus the article was on ed o loughlin fairfax publishing mideast correspondent the said individual has a unfortunate habit of mixing reporting and commentary he was amongst the candidates for this year s hr com dishonest reporter award despite being in the australia only catchment area so you can imagine the quality of his journalism anyway eleland did a great job of protecting him and got the article deleted so i studied eleland a little i ve looked at over of his posts on the arab israel conflict more than were directly anti israel his modus has been generally to unfairly rubbish the references of the pro israel side in this way he has undermined many many articles personally i don t care what his opinion is but when he uses his editorial power and influence at wikipedia to falsely invalidate delete manipulate etc i think there is a problem wikipedia is i am afraid beginning to read like eleland wrote the script who is eleland what power does he actually have can anything be done adon emmet if you post a reply here i will contact here or even by e mail,0 +i see no evidence that the expected required merge notice was ever posted to the page in question this casts serious doubts on the legitimacy of any supposed consensus obtained in that discussion especially if the other articles were likewise not tagged appropriately during the discussion,0 +person of interest little did he know that person of interest its a tv show mystery solved,0 +it would be good to know who is funding this,0 +moral defense you slimy toad you,0 +ta well i still think there might be some against this i don t know if it offsets any numbering of the films so i was hesitant to change it straight away i don t blame anyone for questioning this because this is the first thing i looked at when i saw the list on their website,0 +pursuant to the wikipedia s policy on biography of living persons i have removed parts of this biopiece that impugn andrew li s integrity impartiality and honesty as a judge without citation the author of those parts claimed without support that they are quoting from the south china morning post however as participants of civilized discussions would immediately recognize simply saying that your source is from the south china morning post without giving us the date and page number is not a citation,0 +comments on password hacking i really don t think it was appropriate to talk about your issues about your password being stolen on a completely unrelated subject as the header said it was only supposed to be a discussion about improvements to the pet food crisis article and your comments should have been deleted just because you were careless enough to leave your password for someone to steal you do not need to annoy other people with your frustrations and tell everyone to panic the world is not coming to an end as you keep exagerating and im sure most other people arent stupid enough to lose their password but like,0 +you did not even know what he wrote on the deletion log for barbados france relations got to it and you will see that he has cursed and now you are taking me a victim to a hostile situation,0 +janus hasildor a tag has been placed on janus hasildor requesting that it be speedily deleted from wikipedia this has been done because the article seems to be about a person group of people band club company or web content but it does not indicate how or why the subject is notable if you can indicate why the subject of this article is notable you may contest the tagging to do this please affix the template to the page and leave a note on the article s talk page explaining your position please do not remove the speedy deletion tag yourself please read the criteria for speedy deletion specifically article and our general biography criteria feel free to leave a note on my talk page if you have any questions about this babble,0 +what is your deal making apparently random reverts,0 +it is merely a decorative indicator and should be on its own line to appear properly,0 +hey now please assume good faith his middle name is indeed lorraine if you go to madison square garden it s on the plaque that s dedicated to him and i could have sworn when i read the article it corroborated that i was mistaken on the latter,0 +utc it s common use is not as a proper noun the dictionary article referenced in this article talks about the dispute between horse breeders and people who are not in the horse breeding business wikipedia is not an encyclopaedia for horse breeders it is for the public june,0 +you re biased i made it a point since i signed up here that none of you exist,0 +yeah they re both puff pieces written with obvious coi one puff article is better than the dissident aggressor,0 +hi good to see you deleting stuff on the speedy deletion backlog have you rescued anything,0 +hurricane floyd such a pretty user talk page i don t like ruining it by writing all over it well anyways i saw that you were successful at getting hurricane dennis to featured status there is another hurricane related article up for peer review at wikipedia peer review hurricane floyd would you mind taking a look and offering some advice,0 +in that case i m truly sorry i obviously interpreted it wrongly cheers,0 +appearance of mizrahi jew s,0 +please stop if you continue to vandalize pages by deliberately introducing incorrect information you will be block from editing wikipedia t c if this is a shared ip address and you didn t make the edit consider creating an account for yourself so you can avoid further irrelevant notices,0 +hello mr gordon i didn t feel like waiting until or one yar later to appeal i would like to sincerely apologize and i want to know if you are willing to accept these conditions i don t want to be viewed as a threat as i am quite nearby t,0 +he is director of the tate done,0 +what i was referring to is the goon show the pink oboe was the main ne er do well spy character in one of the shows my old decrepit mind won t allow me to remember which one but it will come back to me eventually,0 +licensing issues in you created malaysian federal roads system by copying from at least one other wikipedia article where did it come from if the source article is not identified we can t use the text wikipedia s contributors do not release their material in public domain but retain the right to credit for their contributions talk,0 +if the law is a single use weapon isn t this a disadvtage as compared to the original bazooka granted it does not leave a smoke trail and has no recoil,0 +some baklava for you thanks for your copyedit of the long hot summermuch appreciated,0 +wow j delanoy you must really love brit hume and hate science,0 +link age of mythology heaven added link to age of mythology heaven it has loads more info than can ever be described on one wiki page also is a place to go for support for the game as developers have abandoned it,0 +citation the first citation needed tag at the end of the fourth paragraph of the first theatre theatre royal bridges street section is covered in walter macqueen pope s book theatre royal drury lane publisher allen page if you wish me to type the wording here so you can verify please let me know thanks chat,0 +friend no problem with me but just look at the discussion page and history of edits when suspicious persons are added croats or serbs will claim he wasn t bosniak but croat or serb bosniaks will denie and so on but i m glad you proposed tvrtko i m considering to later add total number of votes so we will see fuchs,0 +considering the legal issues surrounding roms it would be a bad idea i m not sure which one but i m fairly sure that posting the rom would violate some wikipedia rule,0 +the subject of the ongoing attempts by politically biased wikipedia editors to suppress any mention of neil degrasse tyson s embarrassment has prompted widespread derision from the political right b logs and conservative opinion pieces may not be reliable for statements of fact see wp bias but if they are well known high traffic non fringe etc they national review volokh conspiracy weekly standard etc etc absolutely establish the existence of a controversy partisan dismissals of the significance of the controversy from the other side of the political spectrum subtract nothing from that fact,0 +false friends of the slavist i recommend you talk with milo ran i about this he studies slavistic,0 +a barnstar for you the barnstar of diligence of stalking people i just had a chance to see what you ve done to the high speed trading and keeping i one sided to the finacial industry greak work stalker bo,0 +i m sorry that i must say this i have never come across a more idiot ic editor on wikipedia congratulations on making it to the top of my list i mean that in a congratulatory sense entirely in no way is it meant to offend or sound sarcastic i wouldn t call you an editor though you re more of a pollutant to this project and one with extreme perversion of perception please reread the discussion at the talk page based on what you last posted there it is painfully obvious that you ignored or did not comprehend much of what i tried explaining to you multiple times at that talk page,0 +as far as i know there were no warrants of arrest for thomas jefferson from the british crown there is nothing in the writings of thomas jefferson that states he was committing treason and could be hung jefferson washingtion and adams according to ferling believed they were slaves to the british government not having any rights they did not view themselves as outlaw rebels rather they wanted to be free to make their own laws that protected white people franklin apparently is the only founding father who mentioned being hung was jefferson in the room at the time franklin made this statement,0 +my harrassment of you how ironic september utc,0 +great discussion point jimbo although i don t think discussion is actually required the foundation should be able to just do this without the support of the users that are disputing the edits in really difficult disputed issues i agree the wikimedia foundation could hire experienced editors although i wouldn t support any wikipedia connected interviewers use and pay someone totally independent independent notable reporters to interview and report on the problematic content issue and report that in a wp rs source thus giving full independent closure to the dispute,0 +misleading reference to study in the section on lead paint in art which i largely wrote someone added the following lead paint will often become discolored over long periods of time this is due to the reaction of the lead carbonate in the paint with traces of hydrogen sulfide in the air and with acids often from fingerprints as a result many older works of art that used lead paint now show some discoloration as i found this surprising i went and carefully read the study being cited their research seemed to refer only to lead in aqueous media on paper although that wasn t absolutely clear but lead paint is almost never used that way artists working in trans parent watercolor aquarelle don t usually use white paint or just occasionally a bit of chinese white not lead to make corrections and opaque watercolors gouache and acrylic polymer artist s paints typically use titanium dioxide or rarely zinc white but never lead normally flake white is used only by oil painters and there s no indication in the study that they were referring to oil paints cooperstown is a well respected institution but as of now i m sticking with the classic ralph mayer flake white may get slightly yellowish after centuries but nothing like the gross discoloration referred to in the paragraph above if someone has more information on this please mention it here otherwise when i come back i m going to delete that paragraph or water it down no pun intended,0 +that s my point i looked for false positives or any feature that would distinguish these accounts and there was none to be found the unpleasant situation is that we had a user with a history of exactly this sort of problem with a set of circumstances reported by users in good standing that exactly matched sock puppetry i had to make a difficult judgment call per all the available information and the conclusion was a finding of sock puppetry i have invited checkusers and others to review the report everything is available for inspection and comment talk,0 +did you even look at my edit before reverting it i did change it up as you wanted to say that rex thinks it doesnt work and as you said it hits on many things that are also said elsewhere in the article making it perfect for the lead just because it is stated elsewhere in the article by other sources doesn t mean we can also use this source the more sources the better i would suggest we both stop touching the article until you come up with a clear reason why it shouldn t be added as i know all too well how this works no one touches it in order to finish this dispute and then the person who didn t want the information in the article will just stop discussing because they think they have won and then revert whenever the page gets changed,0 +i found this article on crime in managua its from wich means its recent facts that need to be used for this section i didnt copyright i changed alot of thw phrases managua the epicenter of crime in nicaragua managua experienced a rise in violence and crime throughout s violent crime in managua is for various reasons such as political violence civil war crime and delinquency gangs in managua are a widespread phenomenon that is growing fast currently managua has more than gangs with more than members these gangsare responsible for of all crimes in nicaragua and of all crimes in managua violence and gang warfare is prevalent these gangs are responsible for theft mugging pick pocketing they also have involvement in the drug trade among other criminal activities and this is the original one managua nicaragua epicenter of crime in nicaragua experienced rising levels of violence and criminality throughout s of all crimes in nicaragua committed in managua half of these reported crimes considered violent nature of violence and violent crime shifts from political violence and civil war to crime and delinquency pandillas youth gangs in managua now a prevalent and widespread phenomenon growing rapidly currently more than pandillas with approximately members concentrated in lower class barrios poverty and lack of opportunity drive membership territorially based in specific neighbourhoods defend territory as a source of identity and pride lower class barrio in managua pandillas commit variety of crime often employing firearms responsible for disproportionate share of criminal activity commit of all crimes in nicaragua and of all crimes in managua violence and gang warfare prevalent robbery mugging pick pocketing and involvement in drug trade among other criminal activities and here is the link http w rcmp grc gc ca focus youth gun managua e htm,0 +i ve decided to start a good wikipedia account so i can show you that i can do good to wikipedia please accept my apology above and i will create no more wackywizzlepenis articles,0 +your submission at afc donegal county council election was accepted donegal county council election which you submitted to articles for creation has been created the article has been assessed as start class which is recorded on the article s talk page you may like to take a look at the grading scheme to see how you can improve the article you are more than welcome to continue making quality contributions to wikipedia if you have any questions you are welcome to ask at the help desk if you would like to help us improve this process please consider thank you for helping improve wikipedia x,0 +december utc well said i had exactly the same from him for no good reason,0 +if you believe i ve made this block in error you can request an unblock review from another administrator using the template instructions at the link,0 +architectural influences i have read somewhere alas forgotten source that the oval office was influenced by a room in the now italian ambassadorial residence in lucan ireland does anybody know if this is true,0 +there is definately a major difference between caucasian and white users slrubenstein and alun are definately taking a racist stance toward this article and both sides can throw up rules and regs set by wikipedia to hide behind and attempt to justify your points of view cited sources or not it s obvious your point of view determines which sources you cite and or choose not to but this article as it exists is just wrong i believe wikipedia would be better served by deleting this article and adding a new sub section in the races and caucasian articles if it this is not changed to reflect what of the people on this earth consider a white person to be this obviously not including alun slrubenstein when it comes down to it the term white person can t really be defined it s technically not a race and any references sited are going to be garbage as you can find hundreds of them from what could be considered reliable sources that directly defy one another all that could be done for this article would be to direct it towards a view that most people agree with or delete it entirely but as it currently exists i say again it s a joke you can cite all the references you want and state all the wikipedia rules you want you just can t understand that what you believe just isn t what an overwhelming majority of the rest of the human race does and as i said before there s no way of either side proving the case for either side here as white people don t scientifically exist so since you guys are obviously the type that will fight to the bitter end for some worthless cause even though you have to know that most everyone disagrees with your understanding of what a white person is just do us all a favor and either delete this article since there is no factual ground for either side to stand on or just accept that the overwhelming majority of people see this differently from you get over it and let the majority rule on this article about a group of people that doesn t scientifically exist end commafest,0 +thanks for the note richard i knew it was a road bridge but it is called the turnbridge loco lift bridge in every reference i can find nicholson waterways guide kirkless mbc website waterscape com etc and the name seems to stem from its shape rather than its function i have added a link from the map to your excellent photo,0 +receive old articles hi would we still be able to receive his old articles posted in the past and the one that was just posted yesterday we were wondering if we could receive and retain those records for review thank you for your time,0 +you cannot take a practice engaged in by a negligible proportion of all the males who live or have ever lived on this planet and imply that this is what men do everywhere i have looked around and the other options i have encountered is bachelor hug which is both very rare and nonsensical and pound hug which makes a lot more sense and seems about as popular as hip hop hug as long as we mention both in the article i would have no problem with pound hug by the way why did my redirect fail i was going to append an explanation but the servers were so slow i ran out of time and had to run to an appointment,0 +i ve traced the origin of one of the disputed sentences myself it seems the problem stems from multiple users whose first language is not english who don t understand the need for sources and who can t edit in accordance with wp npov at july adds ishihara stated he respects the french culture but he just pointed out the problem of french language pov poor english unsourced and meaningless what s the problem with the french language that causes problems for mathematicians some of the world s best mathematicians are french at august who seems to be french changes it to ishihara stated he respects the french culture but he just pointed out his ignorance about french mathematicians and his stupidity pov poor english unencyclopedic insulting unsourced at august changes it to ishihara then apologized by stating his apreciation for the french culture unsourced and contains a spelling mistake possibly just a typo at august user hmib reverts to ishihara stated he respects the french culture but he just pointed out his ignorance about french mathematicians and his stupidity see above perhaps the dispute between foc and hmib could be reduced if you were both to supply sources for every edit that s likely to be challenged also please bear in mind that this is the english wikipedia and edits must conform to a minimal standard of english this is especially true when the edits are contentious and are leading to weeks long edit wars i m leaving this on foc s page too talk august utc,0 +addressing while indian tribe is official us gov t lingo saying tribe twice in the first sentence and then again in the second is awkward also the tribe is not a monolithic entity but rather a collection of people so maybe reword to say something like the coeur d alene people once inhabited acres ha in northern idaho and washington and montana actually note article on the tribe but today the only land controlled by the tribal nation is the coeur d alene reservation in benewah and kootenai counties idaho you don t have to use my wording but you see how i am distinguishing land and people though the two are of course closely intertwined boomer second and third paragraphs jump around and need another copyedit i d put right up front that johnson did the executive order but congress never acted on it then go on about how the tribe didn t accept it anyway keep the chronology clearer interesting that the coeur d alene article says nothing about this period maybe finish here and add a bit to that article too hm from a very cursory review of the decision it appears that gap between creation of the reservation and idaho s statehood becomes significant in this case so perhaps give us a bit of foreshadowing that this is not just a dry fact but it s something that s going to matter the section fails to draw out the significance of the info on the state park and mining maybe add a wee bit to hint at why this will matter in the scotus case,0 +the answer to that question has finally been found justin timberlake is one of the artists that does that song gap band nephew snoop dogg interpolates lyrics from early in the morning in the song signs,0 +you must have the lowest iq of anyone on wikipedia i can t converse with a fool like you,0 +is this username appropriate,0 +i am working on this page for school wikipedia is not a free host put it on one of your own websites or one of these wikis rhaworth,0 +i read that quality article reference number where he states it s not because i died in the attacks that put my career on hold it s because my financial backers pulled out he s obviously a genius also the team owner or w hate ver he was stated the the newton john name goes a long way in motor racing as everyone knows who she is read your own references before getting on your high horse go grab yourself a tube of vagisil and fuck yourself,0 +klaus chris loves you i tried the adm and aks and a random mexican answered the phone goddammit i m gonna send flowers don t freak out,0 +pseudonymous editing copied from an email received offline hi i m not quite sure how this works but your wrote in my deletion review you say that your name and address are available but your contributions to wikipedia are pseudonymous does this mean i hadn t registered i did so last night and not under a pseudonym as most people have i always use my real name in signatures and i don t know how to post to your talk page because there appears to be no post link thanks dennis bathory kitsz bathory bathory org bathory maltedmedia com thanks for your message but i think perhaps my meaning was still unclear whether you register or not doesn t really matter since anyone can register under any name i could go online and register a wikipedia account as george w bush at least if it s not already taken wikipedia has no means to authenticate your identity independently all that we know all that we can know is what you choose to claim about yourself that s what i meant by pseudonymously any registration even if you say that it s your real name is technically a pseudonym it is not independently verified against some external identity database and for the most part that works out very well on wikipedia we want users and editors to establish themselves through their actions and to demonstrate their expertise through their edits not by making claims to outside credentials by the way anyone could also register as dennis bathory kitzs that trivial misspelling would be easily overlooked by readers but would still be accepted by the system such a person could sign their name the same way you do attempt to mimic your pattern of speech well writing really and make subtle edits just to discredit you that in fact is a real problem for established editors of wikipedia when we find usernames that are suspiciously similar to established users we look very carefully for signs of vandalism or deceit users who appear to have done something like that on purpose are generally banned from wikipedia but those are all manual checks there is no system that can automatically detect or prevent it likewise no one can inherently trust the email address the way internet domains are set up anyone could register bathory org and create any email name they wanted like wikipedia accounts emails and internet domains are unverified against any external identity authority and that s before you consider the problems of email spoofing and forgery both of which are far easier and common today than any of us would like to admit most people are honest but there are enough dishonest people out there that we have to build our systems and our procedures in such a way that it doesn t matter whether they are telling the truth about their identity or not that s why wikipedia has a policy against original research which we mean as a contribution or assertion based on personal experience and why we never rely solely on self published materials and why we bias our policy so strongly in favor of reliable sources such as websites owned by and operated by large well known organizations organizations with both a vested interest in and the resources to find and stop spoofing sorry to bore you with all this but my non wikipedia profession is information security the inherent problems of identity management and authentication occupy much of my waking hours how can a bank know that you re really you and how far can that trust be extended under what conditions can an assertion be treated as reliable how do we balance that against the need to make systems and computers easy and accessible unfortunately there are no easy answers short of establishing a national identity database something which would be in great tension with my role as a privacy advocate anyway i ll get off my soapbox now thanks for your message to post to my talk page just go to the page and edit it like you would edit any page on wikipedia the most common technique is to use the little plus sign next to the edit this page tab at the top that will automatically create a new section and give you a line to create a section header without having to know the wiki markup symbols you should also get in the habit of signing your posts on talk pages you can do that easily by ending your comment with four tildes when you save the page the mediawiki software will replace the tildes with your username and the date timestamp again welcome to wikipedia talk,0 +i always thought peperoncini were the small really hot chili peppers that are used in e g pasta all arrabbiata etc in sweden peperoni refers to the larger pickled chili peppers that are used as kebab toppings and sometimes pizza peperoncini is the diminutive of peperoni right,0 +good lord could this discussion pissably sic stop any lower get a grip folks try to remember we re writing an encyclopedia not seeing who can piss the furthest talk,0 +well change it then,0 +i m not sure his being banned from an id message board is all that relevant shock horror hal fisher comes out in defense of cml but it is relevant to his arbcom case that others think he is a net kook too,0 +june utc they could be bluffing or this could be a joe job unless there is technical evidence connecting a functionary to sock puppets i don t think there s much to go on talk,0 +i really didn t expect it to fly thanks for the affirmation,0 +also i can t seem to find you re second and third references,0 +quoting from the article rubbish was thrown at her and the crowds jeered in part because she dressed in expensive clothing which served to alienate her from those suffering the privations caused by the war and windsor castle about miles kilometres west of central london so the views that you express are already represented in the article it seems fair and well balanced to me making it critical is not what wikipedia is about we should not be a platform for political views but an encyclopedia presenting facts,0 +barek why are you abu ing the deletion function you ju t deleted a bunch of edit and page move log that do not meet the criteria for deletion i uggest you rever e your deletion or you will be de y opped,0 +hannibal like i said earlier the only thing i d comment on is that the books section should be expanded the bulk of the plots of red dragon and silence are ignored save for lecter being captured and escaping we don t need a cliffnotes of the novels but we should mention how lecter worked with both graham and clarice and how he was connected with francis dolarhyde again a paragraph or two for each book would do,0 +the ctmu is not passing itself off as an academic theory it can t because langan is not a member of academia but then again a theory need not be academic to be notable for example print and television journalists and their readers and viewing audiences can deem things notable as well nor do academics have a monopoly on logical or factual correctness scholarly integrity or intellectual merit except possibly in the well indoctrinated minds of some academics themselves and of course their aspiring apprentices whose eager anticipation of scholastic glory sometimes inflates their academic snobbery to blimpish proportions byrgenwulf complains that we chaps are not the sole arbiters of what belongs in the article this is correct to his credit he invites others to tag his assertions however this is a bit specious for having belatedly come to the realization that he has no relevant verifiable assertions to make he is now specializing in challenging the assertions of others thus we now find him imperiously and rather comically demanding that every one of langan s assertions receive a separate citation when this is flatly unnecessary because the source material in which those assertions are made is already directly linked to the article it is important for byrgenwulf to understand that he has exactly the same burden of proof as his opponents not only must he provide a legitimate citation for anything he wishes to add to the article but given that the article already links to ample source material anything he wants to remove or qualify must be proven false irrelevant or non neutral unfortunately he hasn t yet been able to lock onto this signal he still labors under the assumption that like some sort of ultimate bureaucrat he can sit at his keyboard and demand an infinite amount of verification without verifying anything himself by now everyone involved in this matter has come to a stark realization neither byrgenwulf nor any of his tiny but dedicated band of confederates has any citations or other sources of verification for their own accusations they are merely using the article which is faithful to the material it cites to prosecute their philosophical bias against its topic the ctmu which was deemed notable and newsworthy by several international periodicals and news networks they do not like what the ctmu says the article on the ctmu reports on what the ctmu says and what langan and the press say about the ctmu hence they do not like the article on the ctmu this conflation of the article with the theory is reflected in byrgenwulf s trans parent strategy of attacking the theory through the article attempting to dispose of the message by killing the messenger meanwhile he seemingly fails to register the fact that he is himself in glaring violation of wikipedia verifiability policy and that his all too evident editorial bias is in massive violation of npov as well oozing contempt byrgenwulf has rumbled into the middle of the ctmu article with a load of summary demands snide remarks and self righteous factually worthless criticism but not one relevant citation in hand nothing he says is verifiable as we have now repeatedly seen he cannot even be trusted on matters in which he claims to be an expert this makes it very difficult if not impossible to take his demands seriously,0 +siafu i am getting access denied for gps pps it says error access denied access denied by security policy the security policy for your network prevents your request from being allowed at this time please contact your administrator if you feel this is incorrect is this a classified document,0 +hi danqing it is very nice to work with you chenxi,0 +perhaps why perhaps and why did you revert the edit,0 +clearly a partisan gesture i ll discuss this further when i am able to edit freely aco,0 +question do you have any interests outside of lamely editing wikipedia even a small one,0 +hello and welcome to wikipedia we welcome and appreciate your contributions such as hilltop reservation but we regretfully cannot accept copyrighted text or images borrowed from either web sites or printed material for more information about wikipedia s policies and guidelines take a look at our five pillars happy editing babelfish,0 +september utc i ll try to take the points in turn hope i get this format right wp blpgossip states that be wary of sources that use weasel words and that attribute material to anonymous sources i am not aware of any weasel words or attribution to anonymous sources i am not sure how the section applies if you could be more clear it would be helpful the phrase involve claims about third parties is so vague as to not be any assistance by this metric so little can be used that it s almost meaningless someone stating their birthdate or the grade school they attended but for a person saying i have a conflict with jenny smith over issue x where do we draw the line it could easily be said that an actor and actress divorcing with one placing on their personal publicist website a statement about separating for reasons of x is a claim about third parties but i wouldn t argue it is unreliable nor unencyclopedic to include in the biography of either individual one can take things too far and i think in this case the avoidance of even mentioning the existence of dispute is getting to the point where people are being literalist and not using their common sense,0 +copyright problems with image siaeconomy jpg an image that you uploaded image siaeconomy jpg has been listed at wikipedia copyright problems because it is a suspected copyright violation please look there if you know that the image is legally usable on wikipedia you may have to search for the title of the image to find its entry and then provide the necessary information there and on its page if you are interested in it not being deleted thank you,0 +trivia section everthing else you butchered not the place for it then where does it belong then,0 +all of the bosniaks were expelled form the area people from fo a are missing or were killed during the massacres period fo a was also the site of rape camps which were set up by the serb authorities in which hundreds of women were rape,0 +no i ve not seen anything,0 +this article does nothing but list a bill of particulars in attempt to villainize the ael without even giving a cursory glance at their side of the issues at hand e g racist violence against arabs across europe as such it s going into the npov disputes category let someone who doesn t get all their information from foxnews get a crack at it,0 +another source bram stoker and the man who was dracula by barbara belford p,0 +here are a few key questions do you understand that wikipedia is an encyclopedia and not a business directory do you understand conflict of interest do you understand that to be considered for an encyclopedia article the subject must be notable you are currently block because your username appears directly related to a company group or product that you have been promoting contrary to the username policy changing the username will not allow you to violate the important principles above,0 +a barnstar for you the anti vandalism barnstar good job just needs to be block now,0 +isp s my isp is randomly assigned so unless you ban the whole of my isp provider i can just register again so i ll do what jfw does and act in cyberspace as i please,0 +i know that s not mature and anyway that was my cousin i went to the bathroom and he got on for awhile and was being an idiot so don t talk to me like i did anything for i am zod and i can break you so leave it,0 +hello garmiamel admittedly i have trouble spelling your silly name out rob but i don t have the fancy government paid education as you have you should block the following i would suggest rob you place a permanent ban and range block for the whole great lakes midwest you have a wikinice day,0 +thank you i will take that under advisement i m a newbie so please excuse any honest mistakes while i m still learning,0 +you act like you are constructive and you make sense but i honestly think you are reverting changes just out of stubbornness you are not being honest nor you are being constructive i think you guys have some sort of agenda that you are not being honest about,0 +priyanka chopra endorsements hey bollyjeff i have some concerns about endorsement section it says she has represented brands like so and so it nothing say about the brands she endorses now it is confusing whether she is endorsing or endorsed you know what i mean,0 +hello clown rust never sleeps,0 +done just awaiting on the final result from the golden globes real soon,0 +redirect talk list of lyon metro stations,0 +i agree if it s well written there are only two known plot holes though and they created an entire section about it i just felt kinda skeptical as to whether or not it could really hold out as an entire section there was also question as to whether or not it was trivia though i do think it would work well intergrated into a section about the plot of the movie do you think it should have its own section swan,0 +ok apologies,0 +mr i don t mean to be frank but your title does assert that so is a de factor a country when only a handful number of countries recognizes it as such the majority of the world still see it as a part of georgia after all it was and is a civilwar on top of that south ossetians abkahzians are russian citizens so this would mean that they are in fact part of the russian federation this is also the problem logically to call it as such is to recognize the regional sovereignty of that area therefore confirming that the region exist but many speak of it which confirms it s existence now that the region is confirmed to exist what is this region part of it is for the most part still the georgian region its more to do with logic then pov my friend mr i m trying front with you whatsoever but that statement so war doesn t make sense to me however i think that the solution is probably like pubkjre said in regards to the vietnam article but this needs to stop any title can seem that it has a pov and can have great arguments to support it even though the title has good intentions so to debate it any further wouldn t do good every informational data base has a bias its just a question of how much furthermore i m going to also defend the google searches because it a good way to see how many individuals speak of in reference to i am not saying that because everyone calls it as such then it should be so but the easier it is to find the better as illogical as that sounds in summation i second pubkjre we should have a etymology page that way it will be clear on who is using what name and why,0 +july utc,0 +whenever you see brackets that means that the editor has added an explanation in this case organic remains was added to explain the word they while w m used the word fossil in the previous sentence it is clear that they were referring to organic remains because by definition recently buried remains such as what is now occurring are not fossils from the dictionary of geologic terms rd edition by bates and johnson fossil any remains trace or imprint of a plant or animal that has been preserved in the earth s crust since some past geologic or prehistoric time nothing buried in the present can be a fossil for it is in historic time and further you do not quickly bury fossils to preserve them you quickly bury organic remains to protected them long enough so they they can eventually become fossils in some future geologic era w m likely used the term fossil loosely like many editors of this wp page to refer to organic remains that might become fossils per definition in some geologic era in the future it is unfortunate that w m were not as precise as they might have been because uninformed people such as talk origins misunderstand and twist what they said as much impact as w m have had on creationary thought nearly all fellow creationist today recognize that the genesis flood is now way out of date modern creationary geologists have moved well beyond the genesis flood when critics quote it it displays their complete lack of competency on modern creationism,0 +oops the math major in me is coming out i did the math and if the info destruction is greater than the info creation you actually end up with a negative amount of encyclopedia not a zero amount,0 +ok it turns out that mj s official website completely forgot about motown so i haven t a clue and give up for now july utc,0 +question sarah there is something that i ve wondered about for a long time that is related to coi editing one need look no further than my user page where i quote chris hedges they control our systems of information and add surely no one could be so naive as to believe that corporations do not have an interest in turning our encyclopedia into a corporate approved encyclopedia at a certain point one must admit that to not fight the creep of corporate control into our articles really does make us appear to be a bunch of easily led lame brained losers just willing to go along with the flow rather than to tackle the problem and try to come up with some sort of strategy what if anything is presently being done i m aware that a few years ago an editor asked for some sort of outside check to prove that he had no coi related to the articles he edits and i ve heard of this incident dozens of times since where it is raised as absolute evidence of a lack of conflict of interest many times i ve wondered how wikipedia went about finding this so called proof if i put myself in a position in which i was editing for pay but denied it how could it be proven that i was i mention this because the first thing you know all a paid editor need do is have wp give him her the wp stamp of approval and from then on that editor is home free to do as they please they can now proudly display their badge of approval and anyone who questions them is now seen as a disgruntled editor in need of a reality check,0 +so could someone please give a specific concise definition of the term neo nazi sm and revise this article so that it lists only those groups whose ideology fits this definition,0 +and just because some band or swear word appeals to your apparently juvenile sensibilities does not make it noteworthy enough to warrant inclusion on this site,0 +what a deceptive little creature you are indeed assuming good faith eh you deliberately scrubbed that because it sheds a little light on where all these race hygiene theories originated from from your dear little country that s where that doesn t fit well with you does it so you want to create the perception to your readers that i am the crank and conspiracy theorist when wikipedia s own article on henry ford includes that stuff about the protocols of zion as well,0 +i don t attribute motive rather i note behavior you have yet again shown up at an article which slimvirgin regularly edits and started editing there within minutes of her last edit you were warned quite clearly to stop doing this with any luck a hour block will help enforce the importance of this talk,0 +i m confused just had to type something tho to see what it s all about,0 +its mostly because ive been searching for cp anyway does,0 +airline hello i found the airline skyworld ke website is http w travelicon com whitelabel newuser asp ssai if there,0 +thank you for informing me of this i spent a lot of time on my reply in the hope that this helps to resolve the issue i just sent you this email so i wonder whether you really had the time to read my comment for the rfc please do so first i am not familiar with wikipedia mediation quite hesitant now with anything involving wikipedia and think that it is better for wikipedians to read my comments for the rfc before doing anything next and see below how rhobite has been vandalizing wikipedia email to rhobite to user rhobite hi i noticed that you have been removing my edits generally claiming that this was original research while my edits aren t original research in the sense used by wikipedia but reasoned arguments you seem to make the same mistake as user rspeer i would appreciate it if you would do the following a inform me whether you are an economist b inform me where i can reach you professionally c please add on the deletion review page in the section on colignatus that you have been deleting all kinds of stuff without properly consulting other people http en wikipedia org wiki deletion review colignatus d please read my position paper the pdf listed on my talk page or available at http w dataweb nl cool thomas english science letters comments rfc pdf e please note that you didn t respect the time out that i asked nor the time that i asked to formulate my reply to the students f please undo the erroneous deletions my regards thomas colignatus,0 +marriage the value of marriage is a worthy topic please don t go away mad just because a few deletionists got their hooks in it you can always userfy it move it to user featherpluma value of marriage and i ll help you with it with no time pressure or ask the wikipedia article rescue squadron for help they pitched on and saved a few of mine,0 +thanks happy new year to you too i probably need some help with the citations i keep on using title of article here link here,0 +well my point was simply the more contemporary angle it is correct that a more contemporary picture does not imply an actual portrait although the way i understand it the fresco of subiaco is could be an actual portrait but is simply more representative for the actual time itself buildings attire contemporary essence and perception etc however seeing how much effort you hafspajen put into the article i will agree with your format but just on the side note the picture that you have in your post or that is displayed in the gallery here was not the one i edited and was in favor for they are similar but it was this one article history https commons wikimedia org wiki file guido di graciano staint francis and stories from his life jpg from of guido di graziano th century after siena pinacoteca,0 +f y punk vidgmr was my homie it s was due to some faggot named klptyzm,0 +th episode how do we know that this episode revolve s around tony because didnt the first episode around tony and maxxie so maybe we should just leave it blank for now only a suggestion,0 +propose merge of judgement day novel this page for one of his books doesn t pass notability guidelines and should be merged here,0 +wikipedia articles for deletion creationwiki wikipedia articles for deletion creationwiki as a contributor to the page creationwiki i feel it fair to warn you that it has been nominated for deletion please make your opinion known,0 +november utc why can t you expand it,0 +teahouse talkback you ve got messages,0 +an idea can not be un scientific methodology can however the arguments against hoagland s methods of forming conclusions are justified ruling out planetary migration on the other hand is unscientific the reality is that we are sending ever larger and more sophisticated payloads to mars assuming technology continues to move forward those payloads will eventually be able to handle life support and such the us government thinks they can get people there in the next to years nothing in physics rules it out your original entry seemed to attempt to criticize his methods valid but failed when you muddied the waters with the unscientific implications about what is possible and the totally misplaced panspermia definition hoagland never said anything about that june,0 +sqgibbon your moother sounds to be some slimmy donute now watch what s coming your way ha ha ha ha,0 +sports section that is kind of weird how the sports table is included in the law and government section i would fix it but i don t know how to edit tables,0 +look please answer the question my question is does wrmea have to say we are pro palestinian or can we make that inference policy wise based off its self description and overall content,0 +romanians hi in the romanians article there is a section titled contributions to humanity i have no problem with the content it s just the title sounds kind of pov do you have any idea for a re wording alex,0 +redirect talk nxt takeover series,0 +if you are suggesting that i am some kind of pr person for the dnd your badly mistaking else i wouldn t be putting the cadpat on the home page nor would i have trans lated the article for the french language wikipedia the point that thankfully you understood is that likely and would have are not usable on an encyclopedia entry i have absolutely no problem with anything else you wrote and i am not protecting the article or anyone just removing content that is not fit to be there in my own personal opinion and it happens that russell williams s article is on my watchlist thanks talk,0 +well if you really want a justification i ve told np chilia several times and using the word please in edit summaries to stop wikifying the years there comes a point where perhaps ceasing to use please will hopefully get someone s attention in any case you re hardly on any high moral ground to be calling someone impolite talk contribs,0 +i laughed out loud reading your post about reverting the code inserted into the prime numbers article i fell out of my chair when i actually saw the code the fact that the guy wanted to solve the goldbach conjecture with that,0 +isn t chomsky the home grown chomsky,0 +you won this for being rude to other contributers by the way,0 +po ok ever mid it was fixed so i m vandalising your talk page po,0 +i can understand you you definitely did not read the wikipedia articles for deletion assassination plots in the three kingdoms haha did you ever visist assassination plots in the three kingdoms the target of afd did you ever understand what the is i once again say to you that they are lots of people who are fond of the three kindgoms books movies tv series and manga and games of it you definiely are not one of them it is a disgrace to three kingdoms that someone like you deleted that page like a pig shit ted on the book of goethe,0 +xeno xeno talk march,0 +the quotes that aminz has brought to the discussion are coming from reliable academic sources h s one of the most prolific editors on antisemitism related topics has only brought a cadre of weasel words and uncited personal opinion i e but no one would in general jews fared better all of this as worded is not even suitable for mention on wikipedia please refrain from attacking other editors adding actual legitimate academic information with citation,0 +my c to get beyond the stalemale is to let skeptics raise all controversies surrounding chiropractic find the best sources to neutrally present the material and roll into into a criticisms section then those who really care about intricacies and details of the chiropractic story can get on with the show and make the article interesting and not some big stats research battleground for the record i completely agree that effectiveness of chiropractic care is well established for low back disorders just as good if not better that manual therapy is effectiveness in neck pain task force that the results seem favourable for certain types of headaches tth migraine cervicogenic headache of cervical origin and inconclusive and controversial for non musculoskeletal disorders part of effectiveness too is patient satisfaction scores which patients routinely display a far greater preference for chiropractic care than medical care for lbp this is the most succint and precise summary there is we can toss the reference in and call it a day a majority of editors agree that the current and past evidence both in research and rd parties governments favours chiropractic care we can t let ernst conclusions which have been rebutted and invalidated skew what is now generally accepted notice the terms too generally etc,0 +also your mom gave me herpes tell her i said thanks,0 +you just vandalized geography of canada after a level warning it s admin finding time,0 +the banners don t belong there having it tagged violates policy and pov,0 +discussion is a two way street where s the wikipedia editor staff contribution to the discussion on the justin berry talk page why are all the questions from my side of the argument being ignored why has no one yet managed to justify the removal of any of the thoroughly documented information from the justin berry page i m not trying to throw gasoline onto a fire here i don t have an agenda and i m honestly not particularly interested in mr berry or his sordid history what i am interested in is seeing wikipedia be an respected and accurate source of free information for those who seek it and when the wikipedia staff themselves engage in an organised effort to remove accurate information with no justification whatsoever we normally call this wikipedia vandalism vandalism wikipedia s credibility goes out the window justify yourselfs and maybe we ll start to listen my side has justified itself repeatedly it s your turn now,0 +hey you need to watchlist this page there is no guarantee someone will actuall step up and mediate so you need to watch that page to see if someone does for more information read this good luck talk,0 +there was a review of wp nfcc about this page at wp nfrc which determined that the files should not be in this article do not re add them,0 +i am an azeri too and i have never ever considered myslef a turk the republic of azerbaijan was a part of iran and it will become a part of iran again most the people here who pretend to be azeris are actually from turkey trying to spread their turkush propganada real azeris are iranians,0 +comment this article describes the actions of living people as such care needs to be taken to ensure it doesn t turn into a wp attack article the splc designation and related criticism is already a substantial part of the article and any further expansion needs to balanced by non negative content i suggest a history section and details of politicians and others they may have supported,0 +for goodness sake just block it please,0 +um sure ecw initials mean something but they don t mean hardcore wrestling and least not entirely does the name chris benoit rey mysterio jr dean malenko eddie guerrerro chris jericho i could go on and on and on mean anything to ya ecw was more then hardcore wrestling it was the innovator of everything we see on tv today not taking away anything from xpw because it was great but it was almost exclusively hardcore garbage wrestling ecw wasn t,0 +after eight years of editing you bet i ve read wp disambiguation now have you read it in particular you might want to look at the set index articles section danilovsky district is a set index and as categorized as such cheers yo october utc,0 +stop trolling zapatancas calling me a liar merely demonstartes that you arer zapatancas you may choose to chase every legitimate editor from this site and ignore me but i am an editor with a record that isnt trolling and therefore my wishes are not to be completely ignored by a sockpuppet like yourself the consensus is overwhelmingly against you and your trollin g lover zapatancas,0 +lookhead martin f do you know the f fighter was totally joke can explain the advantages of this aircraft to me please i do not suggest you,0 +six months sounds reasonable let us know,0 +i agree without more information about jinfo it is impossible to ascertain whether it is a reliable source and evidence from it alone does not satisfy the requirements of wp v,0 +karlovy vary festival what do you mean with karlovy film festival is not a category of film festivals and why dont you ask in the discussion before you delete things thats why discussion is there if you deleted kv festival category so please delete this too http en wikipedia org wiki category berlin film festival http en wikipedia org wiki category cannes film festival http en wikipedia org wiki category venice film festival etc,0 +mediation i know we haven t exactly departed on good terms but hey it s been like years ago and i m over it but you seem the most rational on that side of the camp so apparently ksyrie and co think i m censoring chinese views when i clearly purposed that they can move the shit they want to the background section i just want that retard ed section out of there it s redundant when the section above it talks about the same thing now they haven t responded to me at all in the talk page this have been going on for months mind you and i can t report them for rr so i d appreciate it if you would look into this i think you being one of them and a admin will help thanks,0 +the thing eh it s not the same as it was in december i ve had a lot of issues in the real world so to be honest this is just a hobby now and fairly minor afist,0 +hello machan my pleasure it s my pleasure to corporate with you ion your modest work in safeguarding the sinhalese culture and ethics talk to me anytime summon,0 +incidentally you might like to look into the image of michael foot anew the problem seems far from resolved,0 +ga status this nomination is on hold for days for these reasons stubby sentences references need proper formattingclean up all the external jumps and refs go at the end of a sentence not in the middle the long quote needs to go to wikisource and be summarized into prose,0 +interview w subject using a personal interview with the subject violates wikipedia s policy against original research so i have removed it that source did however explain the tone of the article,0 +the grifters tells the story of lilly dillon i thought it was more about the cusac character it tells the interlocking stories of three characters none of the three should be considered the main character the fortyfive,0 +knock it off spinningspark quit it you ve been community banned when you block me you made the sinkhole you are in now deeper and deeper if you want to live you need to take advantage of your priviledges basically keep the hell off wikipedia for a year and edit on other wikimedia projects to demonstrate that after a week or two an appeal would be beneficial to the project if i create a new account that is more selective maybe it will be eligible for adminship if so the first thing i will do is get you community banned i want revenge ylgc dsynvm,0 +you know the area better so i will trust your judgement usually when i can look at a picture i took the whole experience of taking it comes flooding back to me i ll recall what was playing on the radio the temperature where i had to park etc for this place nothing heck even google street viewing how i would have gotten there isn t bringing back anything richmond hill is where i stayed when visiting savannah infinitely cheaper like night it s a bit of a drive up but nice be careful whenever you get back there talk welfare state,0 +related groups info removed from infobox for dedicated editors of this page the related groups info was removed from all infoboxes comments may be left on the ethnic groups talk page,0 +nah last time they did that i used my wit and charm to talk my out of it i m already block on my username,0 +boston not near ct do you have to have phd to figure this out again boston is no busniess or cultural hub for ct as far as business is concerned even hartford might disagree besides ct is in the ny region and we know that nyc is the business and cultural hub for america,0 +does this count as an airliner shootdown incident your vote at talk list of airliner shootdown incidents would be appreciated,0 +oh seriously you re definitely a challenging one as i said it s a legal matter,0 +dissolves the concept of vigilantism into a soup of unrelated concepts like crimes against humanity moral panic hate crimes peadophilia etcetera vigilantes are in a stew of sorts,0 +no it doesn t,0 +finally stop your edit wars and your crusade if there is censorship then it is done by you as you removed correct information,0 +it s blatantly obvious that the only reason why you keep removing this is because you don t think that marxist leninists are socialists,0 +i agree with you corollary is the word to be used in english lina lasse,0 +list of boston bruins head coaches okay one more up feel free to review thanks c kie,0 +the least security sign out of your user interface computer security worker or not if someone else is using your private computer particularly if it is someone like dragon whom you don t know very well simply log out of your user interface account and have them always use a guest account,0 +now that i take a look i see that the article on john yoo who you saw fit to include when re creating the rebuttal section as the more enthusiastically titled support section also has the controversial nature of his torture cheerleading memos mentioned right there at the top above the contents box fyi,0 +i agree with user abcedare the agenda of this user is to sully an absent editor s name another s reputation by misrepresentation nothing in the genuine interest of wikipedia will come about from this reader s editting,0 +allow me award this epic barnstar for your great success in redesigning joseph stalin articles and its subpages thanks a lot it is much better now,0 +you re missing all the fun,0 +i assumed you probably weren t but i m glad to hear it for sure anyway i understand feel free to stop by anytime best regards mate talk,0 +cheers your amendment clears it up nicely dec utc,0 +if you continue to do so you will be block from editing,0 +someone call a mod as hrafn is clearly just mucking around first he claimed alfonso was not in hales when in fact he is referenced on page a page just after secondly the work worship of augustus caesar mentions panvinio panvinus and in fact even references hales p,0 +do you know what you re so right you ve just hit the nail of the fecking head there you really have and have made my day in the process,0 +personally i would create articles if there were any topics that i liked to create also as to expanding articles i would be happy to but almost all of the information that i have to add has already been added by someone else cheers,0 +this entry was deleted by its author owing to the fact that it contains research which is being distorted somewhat since it s a part of an ongoing research piece by a working journalist i ve decided that any distorition to the research could be problematic thus the simplest thing to do in order to avoid antagonizations distortions etc is to remove it since you have decided to continue this antagonization i am left with no alternative but to report you to those in a place of authority at wikipedia of course you may feel free to complete and post your own research on the havana shipyards however i ve decided the best course of action is to register the copyright on all pertinent research statements and images associated with this article use of any of the above by persons other than the author without his permission is in violation of international copyright standards and will be promplty reported to the fcc federal communications commission and all other pertinent authorities,0 +re meetup thread well coi can be a pretty harsh word on wikipedia and your misconception of david shankbone as a real name probably sounded more like bitter irony and sometimes people tend to get hotter in conversation than they intend online communication can be difficult and there is a reason why human beings have faces,0 +for how long did they block your fab four nickname m v e i,0 +it is also crystal clear to notice only federer has these so called fake achievements page about his shit ting n even pissing when players like nadal sampras who had way more better records dont have it its because this page was trolled by fans of federer over and over and they added almost every non existent things as records a total lie to wikipedia viewers,0 +found the scientific name,0 +we have over people who are willing to use their real names and that s before we ve gone public and before any serious recruitment efforts so i m not worried,0 +bolonium no offense but accept the reality and the reality is an independent kosova,0 +i think that the infobox should at least have a picture of muhammad if there is to be one anywhere the image for the page on muhammad should be a depiction of muhammad having calligraphy or symbolism replace an actual picture would not be in the spirit of wikipedia regrettably it will offend some people but that is not nor should be the impetus behind any decision a picture of muhammad would be more encyclopedic and offer more knowledge therefore it is the only real option if this is to remain a truly neutral place to obtain knowledge also i feel like there is an overabundance of images in this article lots of images of redundant or mildly irrelevant things as if people are unconsciously putting in different images because they feel bad about putting in an image of muhammad,0 +you re welcome some of my work was also quoted in the ambrose book but they were all correctly acknowledged and footnoted and thus not among the errors and corrections noted in the researchers paper,0 +thank you i took an extended wiki break recently so it s very nice to receive a new barnstar so soon after my return best wishes,0 +i only have one source that even says he was in in track and fied in any case i changed it to played track and field talk contribs editor review,0 +i m not sure i understand what you re saying i asked how much of our language was replaced with words from french and italian are you saying that our language was replaced by percent with french and italian words i m guessing there is a misunderstanding here but yes please can a script to find out do anything you can we should know these figures,0 +redirect talk the bear film,0 +he was not a hacker he was not a hacker the correct term is called a cracker,0 +unapproved bot you appear to be using your content as a bot in violation of wp bot please stop using your main account as a bot until it is approved if your bot is approved please make sure it is flagged as a bot and listed on wikipedia bots status,0 +why is it that there have been about five different editors change the elimination chart but the same person always changes it back does that sound like a consensus,0 +you find that uncivil seriously i just re read it in the light of your comments and i still don t find it the least bit uncivil it s an honest assessment of his actions maybe he would prefer not to hear it but the intention was to help him improve as an admin please think a bit more kindly about me nobody has ever accused me of incivility before,0 +hm i ll ask someone who would know when they re on,0 +if you were to go to the slide that defines genetic drift at baen tamu edu users cengler biology notes chapt ppt you would read genetic drift is a change in allele frequency due to random variation in fecundity and mortality in a population this seems to be exactly the point i was trying to make in the text that provoked the charge of inaccuracy would the accuser please clarify may utc,0 +user zora i have no interest in hearing what user moshe has to say the best way to deal with people like her is to ignore them now once again you have reverted eminent to distinguished even after agreement because of this like i said before there is no more discussion here we already came to an agreement and the word eminent stays if bridesmill and moshe don t like that that s their problem furthermore moshe i have repeatedly asked you to cooperate again i have no hate for you and do not want to engage in a war here but i will not let you vandalize it either like we talk about it before why can t you just be like the russian jewish sweet girl i had lol same goes for bridesmill,0 +that makes it so much easier i didn t know i was allowed to do that thanks,0 +colorado balloon incident greetings i reverted your addition of a news photograph of the colorado balloon incident balloon unfortunately wikipedia s use is exactly like the commercial use for commercial news photography as the template you used states use of historic images from press agencies must only be used in a trans formative nature when the image itself is the subject of commentary rather than the event it depicts it s intended for images which are themselves iconic works of art so that we can use the images to primarily facilitate discussion of the image even ignoring the legal problems with using the news photography wikipedia has a hard requirement for freely licensed images because non free media compromises the freely licensed status of wikipedia refer to the first rule at wp nfcc non free images are not to be used unless obtaining a freely licensed could not be reasonably believed to be possible there were undoubtedly thousands of photographs of this balloon taken by amateurs and professionals alike almost any would do for the purposes of the article wikinews claims that the balloon was low flying and that photographs were captured by area residents the best way to get an image for the article would be to leave a placeholder in the article requesting that the public submit one the effectiveness of such a place holder will probably diminish over time as the attention on this incident dies down i ve been checking flickr and other photo sites but have so far come up dry though sometimes it takes a little while for people to bother uploading their photographs i hope i haven t given the impression that i do not appropriate your contributions to the article as i do especially your efforts to use even and neutral language in the face of a media environment eager to describe the parties unfavourably thanks for your contributions,0 +this is a potentially ridiculous article seriously it is a potentially ridiculous article and mislead readers to comprehend the word x for the following reasons should sort amd or intel implementations as x generally x was used to point all the processors compatible with ia isa might or might name themselves with such as cyrix x intel pentium and so on amd s long mode is devised by amd rather than intel so how can one sort them together nowadays software labeled themselves as x are ia compatible software and use x or x differentiating with it so this article confuses reader getting in touch with this word generations what is the th generation x processor who invented this kinda processors amd k just says that it succeeds amd k rather than saying it is the th x processor and i ve never heard intel call their x processors exceeding the th generation and one thing should never be denied the first generation of itanium processor says its family model number as which might potentially imply that itanium might be the th x processor succeeding pentium i but none confirmed this so take turn back the trans meta s crusoe and efficeon if the morph firmed on the system board implements x decoder call themselves as x processors then if put the same processor on another board implementing powerpc decoder then it would be the powerpc processor at this situation what kind of processor is it ridiculous what s more for what sort it as the th th generation x who is another jane austen making up another northanger abbey x is one architecture isa name what such a ridiculous thing that i ve ever heard on earth x is used to referring the processor a kind or series of processors rather than an architecture if it were the name of an architecture then in this logic way intel is one of the implementation of this architecture,0 +wtf banned some person in a fourm said it is banned in syria do to the closeness of the names al asad and al assad the correct form is al asad in the game i said he was wrong and he went crazy saying some dumb stuff that i was stupid who is right cause i could find no source that confirmed his statement that this game is banned in syria asad and assad are very common middle eastern names anyway,0 +amcom article hi earlier today i noticed that there is no article on amcom and i posted on the amnet talk page before moving it to talk amcom because although the network is called amnet the actual company is called amcom i didn t realize until later that there was already an amcom actually amnet page that had been deleted after reading the explanation for the deletion i m not sure whether amcom really has enough notability or not however if we do want to make an amcom page we will have to supply some secondary sources to justify the company s notability if you are still interested take a look at this article i found if you want to reply to me make sure you either reply on my talk page or leave a note there saying that you have replied elsewhere otherwise i won t know that you ve replied welcome and good luck,0 +nathan hamilton thanks for your assistance here talk,0 +no problem i didn t even recognize the misspelling myself all you have to do is copy the content you re interested in from one article and add it the correct article then redirect the misspelled one see wikipedia redirect alternately to delete an article in which you are the sole editor add see wikipedia speedy deletion to it and an administrator will delete it edgar,0 +scorched earth if i m wrong i apologize but your current behavior isn t helping you any rocco is big on erasing embarrassing things from his talk page and now you re doing the same even if you re not also a sock of belchfire this is not very collegial of you listen milesmoney it is your right to accuse me of being a sock of belchfire or rocco that is your right of course you are wrong but that is not surprising because you are wrong about so many different things also i have right to remove each and every thing written on my talk page i will continue to do that especially since many many of the things written there are just flat out lies for example you have stated that i am a sock of belchfire and i am a sock of rocco these statements are bald faced lies i don t have to let you keep those lies on my talk page i tell you what you go fight your prov tainted fights with belchfire and rocco but leave me alone i have no idea what those fights are about but i do know that you are always full convinced that your point of view must be adopted by all of the other editors i also know that you have a history of not working cooperatively with others these are facts now go and get back to your pov pushing and stay off my talk page unless you have something constructive to discuss concerning an article that i am actually editing,0 +bob lynch comics that article is created by bob lynch himself which is a clear violation of wikipedia policies also no the proposed deletion has not been declined is bob lynch your friend the image that you deleted is that of bob lynch himself so it has a direct relation to the article that should be deleted anyhow,0 +wikipedia featured article candidates jackie robinson just to notify you,0 +see wt medrs acupuncture source have also explained the issue clearly at pov pushing,0 +wow could you be more vague,0 +aug death hoax currently underway ebaumsworld is currently trying to get oprah winfrey dead at to the top of google trends monitor article closely,0 +hapsford please cite sources for this article otherwise it may be tagged as a candidate for deletion in the near future cheers,0 +well it s been quite some time since i last saw pal seat maps i wonder if they ll retain the arrangement in the refurbished cabin,0 +redirect talk ron link singer,0 +stop harrassing users as you have on user talk wwgb you ve ignored my repeated warnings and are asking to be banned,0 +now you too as in previous issues present me as the guilty one i refuse this status i don t see reasons what should i understand that he has the right to intimidate me and if i say that the allegations are not true i am still the guilty one he presented them as romani those who organized the rajput romani theory,0 +man what s your source,0 +i will also try to be less bitey in the future d lus contribs,0 +thank you for being vigilant in your mission to prevent people from laughing we wouldn t want anyone to forget how serious this place is and how important you all are in glumness and constipation i remain your faithful editor,0 +re quadminton apologies for deleting the article delete box s i thought that that was the way to make my democratic feelings known but obviously not thanks for the helpful tone of your message i ll try not to screw up next time rm,0 +i agree to that many parts of the article is apparently biased made up bs examples following downfall it was common knowledge that de molay planned on corrupting catherine of valois male children by tending to their sorrows then by engaging in acts of ass rape philip knew the dangers that de molay represented his own sons were nearly sex ly molested by de molay upon escaping the vile pervert they confessed to philip what de molay had tried to do myths it is said that jacques de molay cursed philippe le bel and his descent from his execution pyre a curse which was responded to by philip shouting in defiance fuck de molay it has been speculated that several of the boys whom de molay had corrupted had grown to enjoy the perversions of the homo sex lifestyle introduced to them legacy members are encouraged to model their conduct after his example of loyalty and fidelity instead of the homo sex perversions that de molay was guilty of himself vile pervert homo sex perversions sheesh could someone sane please clean up this article,0 +scott i apologize but you are writing way too much for me to respond coherently if you would like to email me see,0 +something suspicious about the durrani empire article hello kansas bear i think there is something suspicious going on in the durrani empire page i would like to have your opinion on it,0 +do you even know what feminism is,0 +reality check montevideo does not require relations with foreign states it merely requires the capacity to enter into relations with foreign states,0 +heh it s no more reaching than your assumption that they wouldn t have watched the obama speech on a different channel if it hadn t aired on the one they watched it on i was just pointing out the fallacy of your assumption that simply because they watched it on telemundo or univision that they would not have watched it on a different channel rants,0 +please do not vandalise wikipedia you will find wikipedia why wikipedia is so great and wikipedia replies to common objections informative mar utc,0 +it s gba a special filetype created for it mainly,0 +i ll extend the hold time,0 +dunmanway title change rockpocket it appears impossible to return to the old title of dunmanway massacre which sarah seems to have changed on october and then had protected in some way i am not clear on this one not knowing the rules well enough is that the case and how would one return to the old title,0 +good grief can you read why don t you try examining the substance of the links i am sick and tired of children ranting without reading,0 +revelvant is this page on ct s really relevant its like saying the moon is made from cheese or like taking david icke seriously it just plays into the hands of the idiot s that come up with these theories who at the end of the day are were trying to get to get minutes of fame on the backs of the victims of,0 +wp null edits always make me laugh in french a nul is a dummy so in french instead of microsoft access for dummies you have microsoft access pour les nuls talk track,0 +bong said zebedee said you did there was a magnitude of difference now you say you did not he said i may consider reporting him her now you say feel free to report me as bsz suggests did bsz suggest i report him her or did bsz suggest i report you or are you saying that bsz said report him her but actually mean report you its really confusing,0 +august utc i dare because its true,0 +when you look at it in the clear light of day this is an argument in which both sides are doing the same things and making the same counter accusations it has been resolved to date by the fact that one side of the argument have the power but might doesn t make right who actually started the unreasonable behaviour perhaps the wikipedian who seemed to make the rather ambiguous statement in which he said that the holocaust talk page is not there for discussion well it is there for discussion that s what a talk page is if he meant it is not there for irrelevant discussion he should have stated that explicitly and that having been done be prepared to demonstrate that to anyone who might be in doubt on the matter,0 +sorry i didn t write a summary nevertheless the reason i removed it was because it was included in the sentence quite arbitrary and borderline or the only party to have a continous steady increase in membership over many years is the progress party the text had also included the labour party on a basis of a short increase for one two or thre years but if you look at the article for the party it had members in the s and around today that is not a continous steady increase,0 +actually taulant elysonius s edits were very constructive the only thing that was deleted was the pelasgians section and the dead link image of belushi from animal house you have failed to provide sources and have not discussed your reasons for reverting the albania article,0 +the previous proposal was closed on february today is february we re repeating what was said there let s close and hat we can revisit this in a year,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages you might like to see the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style you are welcome to continue editing articles without logging in but you may wish to create an account doing so is free requires no personal information and provides several benefits if you edit without a username your ip address is used to identify you instead in any case i hope you enjoy editing here and being a wikipedian please sign your comments on talk pages using four tildes this will automatically produce your ip address or username if you re logged in and the date if you need help check out wikipedia questions ask me on or ask your question and then place helpme before the question on this page again welcome talk cont,0 +okay so almost a month ago this question was asked and clearly no one cares so i m deleting chad from this article although obviously one can t change the name of the language family wikipedia can at least not contradict itself without any citations,0 +perhaps you didn t read it properly the agreement is to have both coat fo arms included,0 +hello mrs parry how about a nice simple question how come when you turn around you have titties on your back please email me back at jeff fugly com,0 +i am south african tab i am south african tab that does not make you exempt from wp npov tab that does not make you exempt from wp npov tab so sa president jacob zuma spending usd million of taxpayer money that should be used to vaccinate all children which they refuse to do this is a fact not someone s imagination is not npov it is encyclopedic and npov tab pres zuma abused his power to spend usd million to make non security related luxurious improvements to his private proverty similar to republican schock who made a usd red room make over to his political head office at the expense of taxpayers money for which he resigned immediately when exposed on public tv in the usa are you against that tabtab tab all of this is npov unless you are corrupt which apparently you are very much,0 +claudio monteverdi hello friend i just wanted to ask you something do you consider claudio monteverdi a baroque composer,0 +the security features reference in the infobox says nothing about the scurity features please fix that,0 +people like you take he virtual world way too seriously you are obviously trying to make up for a lack of achievement in your real life which you spend too little time do you really think any of this is important do you really think the work i use that word lightly you do here is going to help anyone anywhere ever its not you are a hack and you would be better off taking up bowling or at least something that gets you out of the house i feel sorry for you old man you are a sad soul,0 +merge at the afd discussion it was suggested that this article be merged to texas a m college of science,0 +where trm posted his slur against me is completely irrelevant a personal attack made behind my back is still a personal attack trm repeated his attack on me with the exact phrase i e paranoia that you explicitly warned him was not acceptable at all i e blockable offence with your location matters logic all i would ve had to do is post my reply on any talkpage except for wt dyk seriously,0 +i m not really banned just my account i can change my ip when ever i like as i have been doing anyway jack in,0 +the comment title number sign to be a confusion induced and enforced by numerically superior u s american editors would seem to be well exemplified by some retorts here quite the demonstration of it using strawman arguments quite entertaining though,0 +redirect talk gare de lyon rail accident,0 +invention what on earth are you talking about fact is a pov claim muhammad started islam that s fact because it is what history proves i don t understand this weird penchant for non sequiturs really here in this thread why should we leave everything and shift our focus to jesus article who cares here if it takes a far more nuanced view go talk about it in the talk jesus here,0 +you are a fool if you think wikipedia is a respected entitity in this world so shut,0 +institute of policy studies sri lanka i have created the above article since the previous article was deleted as promotion https en wikipedia org wiki institute of policy studies of sri lanka do you think the current version is promotional,0 +failed ga citations in lead are unnecessary dolores umbridge a bureaucrat that slowly becomes an authoritarian figure in the school it should be who slowly plot is far too long an unnecessary cast image doesn t the poster show potter and all his pals the casting section looks thin some relevant information could be merged to relevant entries ala children of men there is very little information on book to film changes still the reception and distribution sections look excellent,0 +the article is not just about the incident with the two guys that for some reason didn t wanted to talk to the police the name of the article is if you didn t notice it the paris riots it s about the riots and it s relevant to mention that previously there has also been other incidents of religious political unrest violence in that specific area,0 +z gram do you think that this section would be worthy of an article john reaves,0 +external links question just curious why is there a link to a self proclaimed homage parody of stevehoffman tv in the existing external links are parodies relevant or even allowed in wikipedia entries,0 +manufacturer aka princegloria please go read the infobox conventions the vibe s manufacturer is pontiac not the nummi plant also no one ever agreed that the matrix vibe were related please read this discussion again you are the only person who contended that the matrix and vibe were related and not aka,0 +this needs an additional citation for the first part only refers to him now being labelled a cheat henry has never been a fair footballer the match has just brought to light the foul play he has always used to get an upper hand even the biased french and arsenal fans realise furthermore the quote by wenger that he is one of the fairest players i have managed holds no weight since it is a biased view from a man who managed henry for years it is a view from a man who has managed a great number of cheating players during many years at arsenal so saying henry is one of the fairest isn t saying much in summary i think that the line should be changed to the incident brought to light the true extent of henry s bad sportsmanship simon,0 +the bora missions are uesualy harder and often pay less but most think picking the bora is moraly right what statistical studies have been done to prove the above statement from a nietzschean standpoint one could argue that the galspan corp is on the morally superior plane it s all relative captainsurrey,0 +i support the idea of wikicode basically i think we should present code in a python like language that doesn t carry so much baggage for example we can use english sentences or sentence fragments instead of requiring the reader to understand some obscure python library further python has the baggage that there are no block terminators i e no or end s or fi s or repeat s by adding such terminators we can make it a lot less ambiguous to all readers in otherwords we re basically right on track removing the quirks of python and making it higher level so i support the idea myself dec utc,0 +smile album re recording vocals how much it doesn t say for sure in the article and i m not necessarily saying it should say in the article but does anyone know how much re recording of the lead and background vocals were done for the songs on brian wilson presents smile album i m looking for this info and not finding it did he re record all the vocals or did he use some of the originals recorded by the beach boys in the s specifically on the songs good vibrations or heroes and villians any help would be appreciated thanks,0 +the wiki foundation stats in an email forwarded to rti the uk chapter is responsible for content see that bit s a lie if it wasn t obvious from you appear to be the pr company this sort of thing is why i have to remind myself that there are pr companies on wikipedia and then there are pr companies on wikipedia,0 +much better thanks now why can t i do that of doom,0 +this is absolutely false i cannot believe what s going on first i make an edit that obviously conforms to wikipedia standards and is a helpful contribution and it gets edit warred down by or people who don t care about what belongs on wikipedia and now you make ridiculous false accusations of sock puppetry because someone else agrees with my edit which was obviously right in the first place i certainly need an admin to reconsider what s going on maybe i need to appeal this,0 +honestly i have no idea why you think rrs are so important when getting all rrs nets you in cold cash getting the th one is crucial,0 +not a bad little essay it s not that i suck at the game rather i may suck but we will never know because i absolutely refuse to play integrity and honesty mean far more to me than the values free civility of grade school gossips snitches and hall monitors this is just another minor piece of evidence that bizarro world remains bizarro world,0 +murder of ivan stamolic the addition of some substantiation or at least a reference to the agency or entity or literature which proves the allegation that milosevic had stambolic murdered would improve the article can anyone add to this aspect of the history biography i think it s probably true but what i m asking is for some more rigorous historical writing,0 +doctor wily do you think that it will be able to expand any more it s fairly small and it really doesn t look like much more can be added to it the in universe content is already covered within the list the lord wily info can be added to the other list so merging the reception wouldn t hurt anything,0 +compliments this project is very helpful in research if you need any help contact me aj,0 +a woman s place blue heelers episode you redirected the above today there are a number of articles arising out of the series blue heelers an example of which would be marissa craddock i m thinking they should all be redirects could you take a look and comment thanks in advance,0 +thanks i wasn t sure how to list dennis bowman so i went with weekend fill in since he had some weekdays on his schedule but freelance works just the same i am glad you like the changes vt,0 +help me hey wikipedia i have a minor problem i am creating an external link to a power point slide the entire power point slide has slides i want the link to go to slide is this possible thank you,0 +what nonsense is this,0 +attn tom harrison i am now going to make an official complaint,0 +hi i m looking for adoption and notice that we have some similar interests and that you haven t adopted anyone i m really sorry if i messed up your page i m still learning the ropes anyway i d be real happy if you considered adopting me thanks a cardboard microwave,0 +hmm bush is from tx but wasnt born there i think that some people are giving examples to disprove what they have been insisting on injecting in this article bush was born in connecticut but is known to be from texas who defined where he is from bush did by making texas his physical and political home now if some people from california insisted on forcing bush is from connecticut on bush s wikipedia page that would indicate those californian s ulterior motive that is exactly what some participants here are doing and they are being challenged,0 +october december kb,0 +vandalism spree your vandalism spree is pitiful all this after i supported your motions thanks a lot,0 +this page has no references hence most of the information is not valid,0 +you have been block for hours talk contribs,0 +rfa thanks thank you for the support i d like to express my huge thanks to you badbilltucker for your support in my recent rfa which closed with support at needless to say i am very suprised at the huge levels of support i ve seen on my rfa and at the fact that i only had give three answers unlike many other nominees who have had many many more questions i ll be careful with my use of the tools and invite you to tell me off if i do something wrong thanks rtinp,0 +move should cuisine in the title name be capitalized it s capitalized at the beginning of the article if so may i move the article,0 +you have been temporarily block from editing wikipedia for hours due to vandalism if you wish to make useful contributions you are welcome to come back after the block expires,0 +vandalism hello can you please take a look into this http en wikipedia org w index php title user talk almightyvegeta pe,0 +it s a novel argument certainly i actually have some degree of sympathy with it however there are countless other articles with this information included it would perhaps seem inconsistent to remove it simply over a dispute,0 +the problem is that some people who have not educated themselves very much regarding this controversy give their opinion while some of us stick to the facts,0 +cititations assignment from des completed,0 +can you point to some of them are you referring to the tables,0 +well argued i agree talk contribs,0 +there is no such clear consensus and as is also clearly stated this process is not a vote but an unbiased consideration of arguments the notice at the top of the deletion page clearly invites anyone to contribute yet you say their arguments should not be counted because they are single user accounts from your statements you are clearly under the impression that this is a voting process and i suspect you did not even trouble yourself to consider the arguments involved also given your reluctance to provide a short report on the matter yes i have now filed such a deletion request,0 +i ve done a second version with alfred escher and alberto giacometti instead both are listed among the most notable swiss on the sonntagszeitung article louis agassiz and paul dirac weren t i ve also retouched one picture i hope you like it talk,0 +november with regard to the zangief edit you ve been making could you please provide a source for the gay commentary also why are you removing a number of wikilinks thanks for your cooperation talk e mail,0 +talk talk,0 +wikipedia articles for deletion mugglecast hee edit conflict there me asking for citation you making the move i ve got some links on my talk page that a contributor provided see a few up from your post but i m trying to nurse her along to put them in herself i m on very weak delete based upon what she s given but i d still like to see that smidge more since i m wroking on the proposed wp web i d like to follow it is that unreasonable of me t c,0 +gabriel fahrenheit i would like this page to be unprotected and returned to the state where me and intimatecarbon have aggred to a compromise oct utc,0 +edit i only changed it to raciest as it seemed to fit the article better but it can remain as the original wording i changed it to jackson since artists are usually referred to by their last names on wikipedia,0 +user talk king lopez lopez contribs,0 +hey i m a yank and i ve followed michael caine s career from a long time ago possibly before you were born and i m telling you that laurie s grasp of our talk is remarkable caine s a great actor but he s never achieved the assimilation of our speech patterns that laurie has the only other brit who comes close in my estimation is the equally awesomely talented tracy ullman,0 +you guys might also want to take a look at this which is the specific request to have this permission enabled on enwiki including an extension that i wrote for it special makeipexempt however it seems to have stalled and no one wishes to implement this even though it d be a very easy fix omg plz,0 +yeah that paragraph is a mess for starters there was already a fascist regime in italy before the great depression i ve done a provisional edit to that paragraph including a wikilink to weimar etc which is all i can do at present,0 +ola thank you for experimenting with wikipedia by creating the page ola your test worked and has been or will soon be removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia aeropagitica talk,0 +i have a request could you please fix this mistake about soundwave appearing in the first trans formers film http en wikipedia org wiki trans formers film the page is locked to unregistered editors thanks,0 +currently there appears to be nothing on wikipedia about short term lending in australia new zealand this is a shame as short term caveat loans are a valuable tool for small busnesses who may need access to large sums of money in as little as hours however not a lot is known about caveat loans despite it being a m business in australia alone,0 +no one having objected to the proposed sections on circumcision fetish and the gilgal fellows i will assume a consensus delegate the research and get back here with it asap,0 +one addition mustafaa i promised much more stuff but have been too busy lately one thing that sticks out and could be fixed quickly is the beginning of the invasion yes it is my fault for adding only the argov incident which now makes it sounds as if it was the main reason for invasion which is of course wrong so the sentence on israel invaded lebanon in response to the attempted assassination of israeli ambassador shlomo argov by abu nidal in london on june should be expanded this is a quickie list of basic facts israel had been bombing lebanon plo for months from the air sea and land and preparing for the invasion see below they couldn t have pulled of the invasion in a matter of days otherwise there was the attempted assassination shlomo argov the assassination attempt was used by begin as an impetus to shortcut the knesset s debate and move into lebanon without full approval israel invaded with troops i ll post links and add more explanations if needed dec utc,0 +your response required in achieving consensus hi please respond here talk assassinations and murders attributed to the ltte consensus to redirect talk,0 +obama i removed your question because the talk page is for discussing how to improve an article not a place for random questions about the subject and the particular question that you posted appears to be trolling rumors and offensive predictions are not suitable for discussion here talk,0 +sockpuppet notice i m sick and tired of you putting those sockpuppet notices on my page why don t you stay off of the st john s page and stay off of my page as well this is harassment i m gonna be off the block really soon and there isn t anything you can do about it after that we ll see who is gonna win this edit war,0 +when trying to more the first paragraph i found that both of its topics are covered more thoroughly elsewhere in the article,0 +if you knew how many of these things pile in my inbox and occasionally end up on the departmental joke board you would understand my use of immediate filters,0 +please stop your disruptive editing if your vandalism continues you will be block from editing wikipedia please stop your disruptive editing if your vandalism continues you will be block from editing wikipedia,0 +the no one complained argument is a pretty poor one calvin don t be amongst those who use it the quotation does not add to the understanding of how the song was produced i certainly would raise it in a fac talk,0 +i am not sure if you are really understanding what i have been saying we cannot put our own views or views of a leader of any party or even base the party s ideology on them i have been requesting you to read their manifestos from the very beginning any party will not run on a single leader s views or any newspaper views if you find the cpn m and cpn uml identically same or if you find one party s inclination towards socialism and or hardliner communism in simple words their political ideology and ultimately their position on the spectrum same as the other in their manifestos please let us all know i will immediately withdraw my points let us not debate here any single person who has read both manifestos would be crystal clear on the ucpn m and cpn uml as far as what their position is do not trust me but at least please go through their manifestos also i have been watching many parties wiki pages of several countries across continents and all of them have their position stated why do you want to not keep it here ithink it makes it more clear with their position on the spectrum thanks,0 +speedy deletion of jacob silver a tag has been placed on jacob silver requesting that it be speedily deleted from wikipedia this has been done under section a of the criteria for speedy deletion because the article appears to be about a person or group of people but it does not indicate how or why the subject is notable that is why an article about that subject should be included in an encyclopedia under the criteria for speedy deletion articles that do not indicate the subject s importance or significance may be deleted at any time please see the guidelines for what is generally accepted as notable as well as our subject specific notability guideline for biographies if you think that this notice was placed here in error you may contest the deletion by adding to the top of the article just below the existing speedy deletion or db tag coupled with adding a note on the article s talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would would render it more in conformance with wikipedia s policies and guidelines echo,0 +style float right background none hi i m martin h heron and i m a patougals style float right background none about me what do i do i work in a well known popular family restaurant,0 +do i need to file an rfc before arbitration i think arbitration asks for proof of trying to work things ou or something like that,0 +undent this was previously discussed quite a bit at this talk page see archive the consensus was that hagee is covered adequately in john mccain presidential campaign hagee gets a couple paragraphs in that article the relationship if one can call it that between hagee and mccain was much more remote and brief than that between obama and wright many elections nowadays feature guilt by association games but obama wright tucc is a bit different because the coverage went on so long during the campaign and the relationship went on so long in real life if hagee turns out to bedevil mccain as much as wright and tucc has affected obama it would merit inclusion here in this main mccain article there are hundreds of other items in the sub articles also picking out just hagee to add to this main article and not picking out those other hundreds of items would cause undue weight this article is about mccain s whole life not just the current campaign and in the context of his whole life hagee is just not very significant if a person is scratching their head wondering the name of some minister connected with this election then the person can go to the article about mccain s campaign which has a couple paragraphs about hagee in writing this article dozens of decisions were made about what the most important things in his life are and those that aren t quite as important don t make the cut right now some of us think it would be more appropriate to add more about his vietnam service before the shoot down or more on mccain feingold or more on his relations with the republican party in the early s as compared to more about hagee,0 +firefox i still can t quite figure out what the history and even current situation with that is as of appeared to default to direct d but not to directwrite,0 +the article is extremely biased and entirely unreliable that is my point concerning this heavy dose of pure propaganda there has never been unfortunately any armenian genocide until now,0 +animation there is something very unique about south park because of the style of animation it is actually possible to have an episode of south park in an svg animation which is a file format that allows for unlimited up conversion of images and animation but only in a way of simple shapes and since south park is already a somewhat brick style animation you could theoretically up convert it to high definition using the svg format and it would look just like that was the normal resolution,0 +ok that was quick though,0 +please do not vandalize pages as you did with this edit to j zef stawinoga if you continue to do so you will be block from editing,0 +alex thank you for your reply i could indeed use a break from this case but yesterday was a very eventful day as the case closed and then agk answered a question i d initially posed on august meaning that he refused to engage regarding the false allegation he made against during the brief window during which i had a chance to respond to the fof and then when it made the response it not only confirmed the judgment on content aspect of the fof if begs the question as to why he cited another diff including an exchange with arzel in which arzel not only ignores the content of academically published rs he openly denigrates them in a thread where blocks of text of the formisano text for example had been under direct discussion regarding the perceived legal threat i had no intention to make a legal threat that was all sort of sarcastic play on words relating to specific sequence of events in the case starting with newyorkbrad s comment on my fof on august to which agk refused to reply publicly until the case had been closed yesterday more than two weeks later there were also email exchanges between myself and nyb and agk which i will have to forward to jimbo wales at some point after clarifying one point made by nyb on his talk page the import of the substance is firstly a pun insofar as i make an insinuation about sophistry in the legal field in relation to my perception that agk aspires to become an attorney or w hate ver they re called in scotland it is secondly an indication that i have taken the time to register at wikipediocracy for future reference regarding earlier comments i had made about the court of public opinion and when did a little looking around there finding an entry about nyb for example who had advised agk that he didn t see any misconduct in some of the points of the fof so it was thirdly an indirect suggestion that he learn something from someone that is already an accomplished attorney if the reiteration of material deleted by agk from his user page within the past two weeks is outing then that is a policy i shall have to examine note that i am not the only editor to have broached the issue of his being an undergraduate in the context of his judgment and actions acting in the capacity of arbitrator in the case at issue there s much more to say on this but i need to get a couple more hours of sleep i have tried to leave links to relevant discussions at jimbo s talk page but have only provided a partial synthesis of the situation not even contrasting the complete lack of an fof on arzel for instance with the response provided to me on the pd talk page shortly after the case was officially closed yesterday if this statement settles some of the concerns regarding my intentions and the severity of the infractions thereby diminished i would appreciate a reduction of the length of the block to facilitate my engaging in the necessary efforts to conduct the appeal without having to exclusively rely on the email system,0 +i found a better reference in page theoretically polygamy can assume any one of three possible forms polygyny or the marriage of one man to two or more wives at a time polyandry or the coexistent union of one woman with two or more men and group marriage or a marital union embracing at once several men and several women of these only the first is common and on page a statistical analysis of kaingang genealogies for a period of years showed that per cent of all recorded unions were group marriages as compared with per cent for polyandrous per cent for polygynous and per cent for monogamous unions the disadvantage of working at a medical school is that the anthropology texts are not extensive but they aren t checked out often either this had been sitting on the shelf for over years deep in the recesses of the basement murdock is a sufficient reference for polygamy including group marriage,0 +i d be tempted to wait until a final version that looks like a placeholder version,0 +proposal for a wikiproject on the united states i have proposed creating a wikiproject on the united states see talk united states proposal for a wikiproject on the united states i assume there will be no objection to the proposal planning for the future i m thinking that i would use the wp meso and wp aztec projects as a template for this new project i m interested in your thoughts about what changes you would make in these project templates in other words i want to incorporate all our best ideas in these two projects before using them as a template for the new project,0 +image amin takes oath jpg listed for deletion an image or media file that you uploaded or altered image amin takes oath jpg has been listed at wikipedia images and media for deletion please see the discussion to see why this is you may have to search for the title of the image to find its entry if you are interested in it not being deleted,0 +accroding to a number of historical references that i have read on the subject the kata chinto was named after a chinese trader of the same name who demonstrated the moves contained in that form during a visit to okinawa i don t know if this is oral history alone or not but there does seem to be consistency burns macdonald,0 +misfits band and list of misfits band members please stop robo was not the misfits drummer in marky ramone was the band s official drummer from robo merely filled in for marky on some dates of the m tour because marky was unable to make those dates robo was not a band member at this time he was merely filling in and this is mentioned in the article robo did not become the misfits official drummer until marky left in your edits are well intentioned but are introducing factual errors please take the subject to the articles talk pages in order to discuss the matter before continuing to reinstate your edits,0 +why again are you making off topic interjections i did not delete it i moved it and even gave it its own heading your comment was not at all about a new name and even then not at all persuasive and even non sequitur as i quite clearly pointed out above but even my own comment was off topic so i moved this as well you re making much of someone else s quite calculated ado about nothing even this should be moved to a topic of its own but with your permission this time if it would cover all bases this was a constructive discussion,0 +thank you very much georgew for failitating my unblocking it really is good to see an administrator with a sense of proportion and fairness,0 +re review ga review see wp wiaga for criteria is it reasonably well written a prose quality b mos compliance if the lead section is still a bit short and could use some expanding wp lead recommends that an article of about this size should have one to two paragraphs i think this one can easily support two you have done some good work in expanding what the lead covers the lead section is still a bit short and could use some expanding wp lead recommends that an article of about this size should have one to two paragraphs i think this one can easily support two you have done some good work in expanding what the lead covers is it factually accurate and verifiable a references to sources b citation of reliable sources where necessary c no original research is it broad in its coverage a major aspects b focused is it neutral fair representation without bias is it stable no edit wars etc does it contain images to illustrate the topic a images are copyright tagged and non free images have fair use rationales b images are provided where possible and appropriate with suitable captions overall pass or fail if well done this can now be called a good article keep up the good work and consider a peer review and this should be up to featured article status soon with so much history behind this market it should definitely be an attainable goal c well done this can now be called a good article keep up the good work and cons,0 +mqm and their abu garib style terrorism i saw the debate between imran khan babar and ajaz ul haq and i felt sorry for imran bhai that he was mistreated for his private life matters which was brought up as a more important matter than crimnal history of thug like altaaf hussain and his party who only tortures and kills whoever they wants i have witnessed mqm and their abu garib style crimes my cousin has worked for mqm and he told us that if he leaves the party he and his own family would be slaughtered entire karachi has been suffering because of altaaf bhai of india who is getting bhuttas in the form of water mafia and karachi people do not have electricity and he is enjoying the cold breeze of london imran khan must get this thug deported to india because if he will return to pakistan then pakistanis will teach him exactly what it is like to call creation of pakistan a blunder,0 +fyi i think that this ip is a server proxy for the university of bath so many many people will post here anon,0 +will not be intentionally inconstructive,0 +none of those other therapies using muscle testing are considered applied kinesiology,0 +this illustrates the difference between an encyclopedic and an unencyclopedic fact,0 +azam amir kasav gets way more hits in google news so i think that s the main spelling btw since there is already a wikipedia article on azam amir kasav i am creating a redirect for ajmal amir kasab and putting the spelling in the article thanks,0 +october utc response i contribute entry with reference to comelec official publication i have no conflict of interest with comelec john petalcorin no but you do have a conflict by editing an election article while participating in the election as stated below wikipedia is not for electioneering,0 +w us terra com copa esp grandes html this source appears to say not i ll adjust it to accordingly,0 +what is incident light what does it mean,0 +umn that would be intellectual honesty not allowed in clique articles sorry but you ll just have to remain block,0 +jon is so smart s m r t smart smart smart,0 +in the meantime there are dozens of links that now link to a disambiguation page requiring editors to change them,0 +but world sounds like it came from a wiki mmorpg also what about earth portals portal world should then be a redredct to the not yet in existance earth portal mars venus and other worlds need portals too yes,0 +thank you for closing a hard one speaking as the previous closer where spui previously requested deletion review wiki lawyering ad infinitum,0 +no need as abstracts are intended for non experts this particular abstract is very clear thanks for the offer though not for your misinterpretation of the paper,0 +thanks for the info about double redirects kind of new to them i m up at am contributing to wikipedia man this is crazy,0 +hello what s your name do you like sopa i think it has many good points bye,0 +jay z it says he has number albums but he only has,0 +you want to fix this encyclopedia i posted some of the requirements on wikipedia review many months ago for reference i will repost and expand them here jimbo wales has to leave he should turn over the server admin passwords to a professional responsible it person who is salaried by the wmf said it professional has to make some major changes to the mediawiki system currently hosting wp changes would include but not be limited to a blps must be heavily restricted and protected or better yet removed entirely b a proper set of guidelines for editing and administration should be enacted and adhered to this would include limitations on the powers of all administrators and requirements for editors to be personally responsible for w hate ver they do on the wiki no more ip address editing anyone seeking to write for wp must apply and be approved no persons under the age of assume good faith my ass c all administrators must be elected by open ballot by the editors whose work they oversee most critical to the project s success certain untrustworthy administrators must be removed and banned from wp permanently this would include but not be limited to ft durova david gerard jzg mongo jayjg elonka jaakobou raul either make drastic changes or wikipedia will continue to decline,0 +this was done in an effort to correct the lies that chinamanjoe has been spreading through this site,0 +interesting only way to keep the pov going is to ban all dissent how stalin of you and om does to his opposition just what was done to his brethren he is a mirror image of what he complains about,0 +interesting on page of the gross article he did link to a findarticles search that returns empty today previous attempts to deface this page by removing mcdowell link were rebuffed with the claim that gross was linking to it it would be surprising that at the time he linked to it findarticles link didn t exist so this may be an attempt to deface wikipedia by erasing internet access to the material,0 +the ip for good if you resume your current pattern of vandalism,0 +proper titles needed chris grayling is not justice secretary the reaction section should be rewritten in chronological order,0 +yes the eurostile font has been retired after seasons,0 +citation why is that even there the article has nothing to do with alien nation what so ever,0 +redirect talk antiochus v eupator,0 +deletion probable i m not aware that divine spark is a theological term of art if it isn t then the article should probably be deleted tc,0 +i believe someone else was responsible for citing talbot as reliance for the year polity of the musunuri nayaks i merely checked old versions to see why such obvious facts were left out an alternate citation can be provided to confirm if you find talbot wanting here,0 +die reverted edit made by known vandal i think you will find those edits weren t actually made by me plus i have been editing here for way longer than you,0 +vandalism all edits i have made have been factual and i would be glad to provide any sources please do not revert my edits unless you have counter sources or atleast a valid excuse,0 +thanks for the feedback especially pointing out the opportunity for original content showing brain regions pathways,0 +sodom final fight please stop if you continue to vandalize pages by deliberately introducing incorrect information you will be block from editing wikipedia,0 +number was not made up i wasn t inventing that insult it wasn t even an insult for pete s sake now you re going overboard i told him exactly what he said that god must have made us though we don t know how if you don t believe me you didn t read that section thoroughly,0 +mfnickster i am not sure if you have ever had any exposure to argumentative fallacies but just because she did not write about exterminating the negro population in her biographical accounts does not mean it was an idea she was wholly against there seems to be enough evidence out there to warrant a section in the article re this topic i am not sure why you have such a hard on for her was she your grandmother or something,0 +the twin towers were tall,0 +well i hope you or someone else get it working again as i think it s a very useful tool thanks for writing it and i look forward to any updates,0 +narking ok and that disproves my point how i said that advisors are stationed in georgia proper buffer zones are un controlled areas of georgia proper so it s a georgian mission you said that advisors are stationed in georgia proper so it s a georgian mission well done xeeron i get million links when i google south ossetia war that s english buddy if only xeeron you read the title security council holds third emergency meeting as south ossetia conflict intensifies expands to other parts of georgia south ossetia conflict war expands as in already expanded it says expands not expanding or about to expand therefore the un knowingly named the war the south ossetia war knowing that it will expand see how important reading the title and getting the correct title is my arguments haven t evaporated anywhere south ossetia is still location based my initial argument it is still where over of the fighting took place it still has the most important battle tskhinvali my arguments are still here buddy and xeeron i have pointed to you countless times that might doesn t make right saying the majority says so does not make it npov if you would have lived in the south during the civil rights movenment you d realize that might doesn t make right or npov for that matter i ve seen your majority view point and called it a farce many times grey fox i have proof for how the georgia war is biased it is biased because it implies that south ossetia was a de facto part of georgia which as we all know is bull shit because if a region is de facto and de jure part of a country there is no war my russian colleagues may disagree but chechnya was not de facto part of russia in the s it was de jure and it was called the second chechen war not the russian war so in other words mr grey fox and the other two of you you have failed to show my how south ossetia war is npov but i have shown you and cited an example of how georgia war would be incorrect and biased therefore the title stays case closed,0 +list of military occupations the requested move is closed so there is no point keeping the rfc on that section better by far to re phrase it and move it down to the next section talk list of military occupations occupations before,0 +fences and windows i was not attempting to out harrass or get revenge someone forwarded me a foia public record sheet on the person in question an i saw a discrepancy if i wanted to out him i would have posted the exact nature of what i was looking at no i will not apologise for exercising my right to review public domain information no i do not wish to participate in wikipedia any longer as i find your values repellant,0 +bagration attribution hello i have reverted your edit to operation bagration again the point is not whether zaloga got his numbers from krivosheev or not which doesn t seem to be the case given the large discrepancy in the numbers the point is you cannot attribute a claim to a particular author and then cite the claim to another if you attribute a claim to one author you must cite the appropriate work by that author if you want to include krivosheev s figures then add a sentence along the lines of g f krivosheev however places the soviet losses much higher at killed moreover you can t just remove a valid source because you think it s wrong all information by reliable historians should be cited especially if there is disagreement on a particular issue which appears to be the case here,0 +abe lincoln and marfran syndrome abraham lincoln is already mentioned in the article with referenced please see the list here thanks talk,0 +further edits have persisted adding citation needed tags to the lede since the purpose of the lede is to summarise content in the body of the article which should be sourced wp citelead does require editors to add redundant citations i e if the claim or fact is already sourced in the article the citation does not need to be provided again in the lead the first two sections of the article detail trans cripts in which hitler proclaims himself to be vegetarian diary entries and witness testimony from people very well acquainted with his diet confirming that he was almost certianly vegetarian from onwards sources detailing his diet prior to the war are a bit more inconsistent indicating he may or may not have been vegetarian earlier in his life instead of repeatedly tagging the lead it would be helpful if the editor would at least explain their rationale for doing so if they feel the sentence does not adequately summarise the sourced content in the article then would they please explain exactky what their problem is with it please note if a problem does indeed exist with the sentence it is not that it is uncited it is that it does not neutrally and accurately summarize the claims our article makes tags only alert editors to a potential problem but if we do not understand what the problem is we cannot address it,0 +thanks for that i d sum it up as pointless jun utc,0 +i don t disagree but there ideally should be a description of the band s style elsewhere in the lead gobble,0 +emil gilels i appreciate your input as to your musical taste regarding gilel s stature as one of the greatest pianists of the th century while you may regard this as over enthusiastic my addition was supported by one of the pages used as a reference in the article if you really have an objection you are better advised to express your reservations in the discussion page i would revert your edits until you act in a civil manner,0 +domestic grosses batman and robin warner bros studio total gross theaters opening theaters open http boxofficemojo com yearly chart yr p htm i will find away to work into reception,0 +vandalism mongo removed all of the tags i placed about problems with the article http en wikipedia org w index php title chad kellogg diff oldid the tags specify that they should remain until the problems are resolved potential vandalism again http en wikipedia org w index php title chad kellogg diff oldid,0 +you haven t even read a word i wrote just stop with this nonsense please for the sake of us both,0 +how is a list of his appearances on other people s albums trivia it s basic discographical information and as you can see it s standard content for rappers discographies also the sources in the album articles must be sufficient if the album listings themselves don t need to be sourced which seems to be the case per other high quality articles bob dylan discography elvis presley discography the beatles discography etc i could see a case for sourcing anything that doesn t have its own article however,0 +it was no accident he was frozen on purpose go ahead and change the article,0 +uk release date in the most recent issue of the official nintendo magazine it states on an advert for a particular company that the game will be released on the th may would i need to maybe scan this page and send it to someone for proof,0 +sorry i do think that people should be able to directly access the page by typing his common name though apr utc,0 +utc well see first if anyone at the page is question objects to unlocking without bias towards future editorial decisions d july,0 +i agree and that is what the references say and what seems to have been hashed out when this came up in seems like a old issue that was settled years ago and again supported by numerous references,0 +danville thanks for letting me know about the fixes to the danville page i m embarrassed that i didn t pick up on that elementary flim flam move with the town s url there was another long running attempt to override the town s page several months earlier it s nice to have additional people keeping an eye out,0 +so it s a case of pov that is funny or not funny,0 +ip address reverse dns bas ottawa dsl bell ca reverse dns authenticity verified asn asn name bacom ip range connectivity registrar per asn arin country per ip registrar ca canada country currency cad canada dollars country ip range to country fraud profile normal city per outside source toronto ontario country per outside source ca canada private internal ip no ip address registrar whois arin net known proxy no link for whois,0 +let s see which one of us is making personal attacks and edit warring that would be you and you respectively and now you re making threats nice you want to have a good day stop being a bully and find another hobby,0 +india magical trip is one of the few tour operators in india who offer an extraordinary touring experience to countless tourists throughout the year their experienced tour operators knows exactly what their clients are looking for and they design innovate tour packages which their clients have very impressed with what makes india magical trip so special is the fact that they arrange for most innovative and attractive tour packages at a very reasonable rate their tour packages take care of all the ins and outs of their guests in terms of accommodation travelling food to sum it up india magical trip offers an incredible touring experience to its clients about the company india magical trip is an online tour operator who started serving their global tourists from the year though new in this field they have garnered enough reputation in only one year due to their top notch services and offerings they have a wide array of different types of packages to offer to their valuable clients besides their skilled tour planners can arrange for customized india tours according to the preferences of their clients all their clients need to do is to visit their official website fill in the enquiry form and they would present a free quote to the clients as per the customized packages india magical trip is dedicated to take the concept of touring to a new level altogether they are certainly one of the most reliable names in the tourism fraternity in india about the founders india magical trip was founded by two enthusiastic individuals mr prem dhiman director of sales and mr sumit dahiya director of it with a vision to put up an online setup which would offer extraordinary touring experience where people all across the globe would get to know india with its real beauty and true colors india magical trip being their dream child has been carefully nurtured and given the shape and status that it is having today packages offered india magical trip is known for designing some of the most innovative and customized tour packages for its clients besides they have some pre set tour packages which covers a wide range of indian tourism golden triangle tour this is one of their most demanded tour packages in this package their guests are exposed to the beauty charm and grace of northern india this tour covers some of the most famous tourist destinations in india which includes majestic agra country capital delhi and city of palaces jaipur rajasthan tour bold text the most reliable and convenient way to enjoy the heritage and beauty of rajasthan is through india magical trip their rajasthan tour package would present the true color of the rajasthani culture which include trip to some of the famous forts in india enjoying wonderful lakes desert safari tour to wildlife reserves and many more north india tour the north india tour arranged by india magical trip covers some of the most attractive and famous tourist destinations in this part of the country it includes visits to some of the most wonderful hill stations in the country monuments pilgrimage centres and several others kerala tour kerala is one of the most beautiful places located in south india india magical trip has some of the most excellent facilities and arrangements for their clients where they are exposed to the natural beauty of this land this tour is all about discovering the vast culture hill stations wildlife and others yoga and ayurvedic india magical trip has some of the most enchanting and refreshing packages for their clients yoga and ayurveda have been a part of india tradition and this tour would expose their guests to experience the ancient india therapies in the form of ayurveda and to work out in the form of yoga adventure and wildlife tour india as a country which is full of wildlife and dense forests the magical india trip will arrange for its clients to experience some of the most exciting and adventurous wildlife tours with a goal to reach out to more and more global travel lovers india magical trip is striving hard by employing as much resources as possible very shortly they are going to come up with a more organized setup to serve their elite guests in a better way,0 +latest cidesco article deleted as blatant copy vio if you really want to write this article please write it yourself and find some reliable external sources to use,0 +never mind i saw the name calling section where you posted this same incident in a link but it still is disturbing on how arilang s current apology is worded in exactly the same way as his previous apology,0 +no worries as you block for the exact same duration i was going to use to be honest i am glad to see that there are other non hardass admins on aiv patrol too many of our fellow admins would have just clicked the indef block button without a second thought,0 +it s in spanish but it s the truth if you don t cite this you are acting like the fraken gatekeeper know it all you aren t shit,0 +grand rapids mi page yassie this is an image i took with my own camera on my own time and i release this image and all its copyrighted privileges i understand that the previous image i was posting was copyrighted and for that i am sorry but this one is not please discuss on here before you once again attempt to remove my image eman so i self reverted and resumed the image by the way you are telling you have uploaded previous copyvio images onto commons with the account grguy that was cross wiki sock puppetry don t do it again,0 +kenneth tennyson s reckless behavior in other forums as far as kenneth tennyson bashing other authors here is an exerpt from a book review on amazon com founder of the homemade mushindo karate movement never studied under a legitimate teacher or any martial art teacher never set foot in asia completely disproven shown to have plagiarized many photos and other materials from other published written sources of course he claims to have studied under masters in tibet and been a disciple of okinawan karate teachers since disproven by such worthy sources as gorge mattson et al was involved in an abusive sex scandal with several female students a few years back sleep with me and i ll enlighten you kinda thing uses abusive and coercive tactics to control what ex students say at him a propaganda liemaster the person he is bashing is none other than terrence dukes or the real frank dukes from the movie bloodsport while putting others down kenny brags or advertises about his martial arts expertise to scare people hm well kalaripayattu has a lot of similarities with caopera alot of jumping and posturing and a lot of religious themes to it i guess it depends on what martial arts you ve trained in to determine whether i can kick ass or not let s see i m a red belt second degree in tae kwon do and have some knowledge in shotoken i ve got to start learning about grappling though freedom skies and myself are not the only ones who feel that kenny is a racist here are some excerpts from users from other forums the armchair analyst asia times forum i see however you sounded like a racist no i have no south asian sensitivities i am no nationalist jingoist i consider myself above it all all your posts are based on the rather silly assumption that militaristic power in the last three centuries is a sign of greatness it may be in a narrow anglo saxon way but not in a gandhi buddha sort of a way get it civilizations such as india actually even china until today have never had a negative impact on other civilizations that remotely matches yours you have generalized indians to be bigots etc i agree that some not all are but the fact that you generalized it to include an entire ethnic group as obnoxious by definition makes you a racist yes it does rocky asia times forum what inaccuracy are you referring to if brits came to india and got rich was the wealth indian or british besides looting what exactly did british accomplish while your bias is clearly visible with this statement what is your purpose of posting this in this forum isnt it quiet evident that even in yr it is difficult for you to get off your pompus ass why on earth would anything written by anglo saxon when europeans were busy colonizing the world accurate isnt there a vested interest on part of the european to disparage native cultures and delibrately belittle their achievements that s just a couple of the many others however i do not want to clog up this page i have also noticed that kenny tends to have a habit of cutting and pasting articles and also cloning the article he had fabricated on a few web sites i know that i am not the only one who knows this brahman martial arts planet forum i really do hate to post on this topic seems as it was only to counter mine which by the way it would be nice if you would simply post this on my topic were you could get a real discusion were as here people might simply ignore you becuase of the topic cloning bliss asia times forum thats not from a social studies journal you fraud thats a copy paste rocky asia times forum i believe kenneth probably picked up a web site of some tourist board,0 +as per wp name conventions,0 +ja regional dialect i guess will change back later tonight,0 +makes sense i m on board with that,0 +hm i was actually writing a response as you sent yours oh well for the record my response was this resurrecting articles is frowned upon yes we might be able to get away with it if the article we resurrect is a substantial improvement on the last one however though of course we both know that there s no guarantee it would ultimately be accepted w hate ver we did there is an established bias towards deleting articles on individual matches changing the name would be nice but i m not sure what we would change to the game didn t really have a name like the ballet on ice or any such and there are limited other ways of naming the article making this subpage was a decent idea you just got unlucky in that it s something that has already been tried elsewhere and ultimately voted against honestly i can say i ve never seen a subpage for an actual mainspace article so i have no idea how much people tend to chase these articles up or whether it might just glean a community wide shrugging of the shoulders certainly there s been no afd nomination yet which is a start i have to say i somewhat favour making it a standalone article or merging with the season article i e not keeping the subpage but i don t have strong feelings so i ll run with w hate ver works if it got categorised it would either be put into a category for something like category football matches i have no idea if that exists it was another example and category fa cup and then probably into a new category for city matches or comebacks or somesuch where it probably would be on its own that category would then have to be categorised so it wasn t just an orphan i don t know what the ethic is here for creating categories with only a single article in them but i suspect it s not encouraged so that idea might be rejected if whoever did it couldn t find more like minded articles to categorise into the same i don t think it being categorised would really affect anyone s opinion of the article though the one thing that might affect peoples judgement right now is that it will in its present form show up in categories as manchester city fuck season spurs city or however the subpage is actually named given the in the name yes i d say it will currently be located in an overarching please categorise these pages category i don t know how long it would take for it to get sorted but it would probably be put somewhere generic better to do it ourselves i guess sorry my thoughts were a bit disjointed but i was answering the points as they came and well better english just didn t quite flow from my fingers as i typed hopefully i addressed all your points i ll settle for just keeping the subpage if you want it though i think that page would be best served by being redone with as many citations as possible and expanded upon so we can argue a case for it being reincluded into society so to speak having an article afd ed isn t a permanent sign that that article should never exist it s merely a suggestion that it shouldn t exist in the state it s in generally speaking most articles that get deleted will be kept the second time around if their quality and or level of detail is substantially improved as for the charity shield i always considered it a notable trophy yes it s a single game but it requires winning a trophy to qualify in the first place ignoring those early years when some teams refused to play to this end i d consider it more of an accomplishment than winning the trophy which qualified you for it similarly would you question the worthiness of the european super cup in fact because some teams initially didn t enter city were instrumental in making the charity shield the respected competition it is today by taking their place in the competition twice you could argue that of all the teams to have ever played in it we should be the ones most ardently defending it talk,0 +re gay rights recorded statements to reuther cnn and fox news are relevant to the wikipedia lgbt project studies feel free to add more to the article if you find more sources mailbox,0 +she s back in rehab again damn gorl giving winehouse a run for money talk me,0 +you ve scattered this discussion across three articles back forth is this where it will be now,0 +harold larwood don t know where you are in the world but as promised i am notifying you together with appropriate link here that harold larwood now sits atop the fac pile awaiting judgement i hope the cruise went is going well and look forward to your comments,0 +sorry i left out the heading it may be clearer now btw if you respond to me leave me a talkback or i may never see it talk,0 +unfortunately because the logos are usually housed on wikicommons and there are jurisdictions that they server that do not have the same copyright laws they feel it s ok to have logos and crests on kits that s why they show up here essentially you have to create a copy of the kit without a logo and with a slightly different name because someone will always revert to the one with logo if it s been created with one,0 +cahide sonku turkish actress model writer and the first female film director in turkey mustafa kemal atat rk turkish army officer revolutionary statesman and founder of the republic of turkey as well as its first president,0 +utc this sentence is an editorial opinion and the information about financing is already included being an editorial opinion does not disqualify it per se but taking account the fact that this is an article about the worldwide company with more than years history this opinion about one specific aspect related to the company voiced by non mainstream magazine will have undue weight it may be relevant in some other article e g focused to the climate change denial financing depending the context january,0 +have you a brit thats for you,0 +don t talk googie man i got simple words for you shut up let s see a guy who spends his time sitting at the computer editing wikipedia named googie man what can i say you think bigger than me you think you better than me you aint nothing stop calling me a rogue editer that is the corniest thing that i ever heard i know you are mad at me because i made fun of and replaced you horrible terrible ugly picture of donnie baseball but calling me a rogue is the biggest outrage that i have ever seen please delete that picture before all of us go blind i would rather have no picture on the page then to have the worst picture in the history of the world on the page don t ever delete my comments on any talk page ever again i have the right to express my opinions i am a villian but you just a hostage you can t stop the reign of the king of wikipedia now go take some more pictures or something and stay outta my way i m out,0 +in accordance with wikipedia wikiproject drugs naming policy i propose we move this page to the inn corticotropin if you have any concern with this proposal please discuss it on this page dec utc,0 +tbma i think its very unfair to compare my edits with those of tbma ymb first i have been the main contributor to this article i have seeked the sources disscused in discusion all in line to improve this article this is not the case with tbma ymb who just last week consider the whole article a hoax also today i really displined myself not doing any of the previuslly acts of misconduct so i think your crttisism of me is utterlly unfair posse talk july utc,0 +september th vandalized this date which was vandalized by i know the one who did it was kagome as the ip traces to st john s newfoundland as his her ip address goes to the same location his her home address which i will not reveal i don t want to make this hard on you kagome but you left me no choice i ve noticed many articles you vandalized and i m sick of it kagome all i m saying is grow up please stop acting like a child before you gets in worse trouble with the law,0 +not really sure what the issue is here what is the name of the rose it is a book is it a fictional library no it is not is it a fictional librarian no it is not for a real book cannot be a fictional anything so stop bloody adding real things to categories for fictional things not that difficult really,0 +a barnstar for you the writer s barnstar thanks belovedfreak i m just learning how to send messages so i m sorry i took so long to reply to you have fun editing,0 +why thankyou king bedford i am happy to get a block for standing up to hate speech as dished out by the editor callng people nazi scum and racist for some irrational reason racism is abhorrent and it s highly offensive to call it simply because you disagree with another editors edits i shouldn t have engaged with such hate and i gracefully accept the hour ban for weakening to his attacks my integrity is intact however and i think you for recognising that with your barnstar award cheers,0 +gibraltar history gibraltar has a long history and the failed spanish attempt to reclaim the territory forms a small part of its modern history anyone who doubts that the gibraltarians reject the claim or any proposal of joint sovereignty should read the section on the referendum as regards claims that terrorists were murdered here the gibraltar constitution defines what murder is and the inquiry held in gibraltar determined that it was lawful killing visitors intending travelling with bombs should note that part of the constitution is still in place,0 +hello sol ipsis and welcome to wikipedia i hope you like the place and decide to stay here are some pages you might find helpful introduction the five pillars of wikipedia how to edit a page how to write a great article simplified manual of style your first article discover what s going on in the wikimedia community and feel free to make test edits in the sandbox i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help please see our help pages and if you can t find what you are looking for there please feel free to leave me a message or place on this page and someone will drop by to help we re so glad you re here l uo join wer,0 +i m unaware of what people used as sources before the internet came along stop getting off the subject i am aware that a billboard magazine may have the learning to fly chart peak at no but where s your proof huh oh yeah you got none right here it says that learning to fly peaked at,0 +as it currently seems to be only a push by unknown musicians and labels for their own special interest amidst the hype driven by the likes of pitchfork and the like etc,0 +and by the way it s statutes,0 +many bantu languages have only a handfull of adjectives others like kiswahili have none as you can see there is more to linguistics than english and this article should reflect other views please tell me of your responses on my talk page user zyxoas,0 +country related content moved no changes to content user noclador made some good faith edits moving several pieces of us libya relations content from other sections europe with the intent of having it in a us section he created a new usa section however there was an existing united states section he she must just have not seen it i deleted his new usa section and moved the content to the existing united states section one of the items was about a ny times article gadaffi wrote while it was a us paper the content was about israel and palestine not the us it just happened to be in a us publication i moved that content to the israel section so long story short no content change other than location and everything should be in its proper place,0 +probably the player s handbook although i don t have it handy at the moment,0 +lets go avalanche tri city americans rule to find out the weather for your area visit the following external link,0 +sitush the cat please come out i wana chat with you i have so many questions lets just hang out sometimes have some drinks and talk i dont know if you drink,0 +im new to this so i really don t know what im doing do anybody want to help,0 +i m being block for comments that i made months ago and i was no more uncivil than several wikipedia admins like for example regularly are,0 +in case this helps i asked again at wikipedia village pump technical helping going away thanks,0 +july utc although i understand your arguments i am surprised you don t understand mine i don t find it labyrinthine or at least not particularly so not more than many other events and aspects concerning the beatles nor is the interpretation in question in any way obscure since it can be taken from any number of texts on the beatles however though i support the original author s intent here i guess you and i are going to have to agree to disagree over this point for now at some point however i will source his her statements as soon as i find time to delve into the texts just because i would appreciate reaching some sort of accord with you until then i don t think we will make much more progress on this the problem with something like this is that there is no absolute truth but to me discrediting the original author s intent is like a dog biting its own tail from wikipedia re abbey road being the final album or not abbey road is the eleventh official album recorded by the beatles although its release preceded that of let it be it was the last album to be recorded after the near disastrous sessions for the proposed get back album later retitled let it be for release paul mccartney suggested to producer george martin that the group get together and make an album just like the old days just like we used to free of the conflict that began with the sessions for the white album martin agreed to this if the band would be the way they used to be in their interviews for the beatles anthology series the surviving band members stated they knew at the time this would very likely be the final beatles product and therefore they agreed to set aside their differences and go out on a high note re the position of the end the end was initially intended to be the final track on abbey road but it is followed by her majesty in the first practice mix of the medley constructed on july her majesty followed mean mr mustard etc this labyrinth has already been walked through a thousand times by a thousand people,0 +did you know that out of million people all of them said that both dylan and cole sprouse are gay the funny thing is that all the people asked found they are both equally gay in fact all the people who like they are probably gay themselves who also like hannah montana i bet you didn t know that,0 +let me ask u questshun sp y r u racist were will it get u has anythin uve evr done made ur life betta,0 +nah she is white shakira is just white,0 +lol you glam does not always have something to do with the image,0 +kirsten kemp there is nothing wrong with the kirsten kemp edit to saved by the bell please quit reversing it,0 +where do you sources say tehre was no thorough investigation moreover as almost all the sources including this one seem to say that ratzinger re opened the investigation there must have been one not matter how cursery,0 +oppose as pointed above the other article is up for afd and will be slaughtered also george you know how tiresome these move requests of yours are becoming right you don t weigh the pros and cons and is just trigger happy i see chitchat,0 +pov forking i combined pov fork paragraphs in the article per wp povfork i also organized redundant references for sake of not deleting them but they will need to be culled there s a lot of primary sources and original research in the citations that need to be removed the pov forks dealt with are korean vs japanese origin of tkd this pov fork existed in the opening of history section and the modern developments section historical context behind japanese ban of korean ma pov fork existed in opening paragraph of modern development section and then again in the third paragraph the third paragraph also contained editor personal comments and ruminations which is considered original research wp or,0 +at bat edit warring at matt joyce baseball juan encarnaci n terry tiffee ian kinsler craig breslow matt guerrier etc please don t change at bat to at bat at bat just redirects right back to at bat anyway i agree i agree because he is correct that it should not be hyphenated in addition pls stop edit warring at matt joyce baseball ian kinsler craig breslow etc and add to the list matt guerrier it is perfectly accurate and reasonable to reflect his won lost record there is no reason to delete it other than your penchant for disruptive edits kindly desist it has also been explained to you with proper citations that the plural of rbi is rbis pls stop edit warring this point see juan encarnaci n and terry tiffee that is vandalism run batted in says the term may be pluralized as either rbi or rbis obviously not vandalism then but a difference in opinion then matt guerrier the reason it didn t show up was because a was missing and with your edit you re removed it and duplicated info it s amazing how you continue to assume bad faith blindly reverting and editwarring over messages on his own talk page t c danged if this little war isn t over some seriously picayune crap both sides are being a bit petty here because really either set of edits is acceptable on these pages well except for the bolded contract on ian kinsler either make it a subhed or take it off seriously oh and technically the plural of rbi is rsbi but that just looks clunky in common usage rbi is used for either singular run batted in or plural runs batted in rbis is a bastard ization used only because it s simpler from a usage standpoint either way i think everyone involved in this should chill out for a few days and just leave all these pages alone jackal again is making a rash of these edits on every page i touch as to rbis as x lee pointed out the most thorough treatment is at wikipedia talk wikiproject baseball archive rbis plus mlb com is the official reporter of baseball and uses the rbis convention yet jackal s reaction to that is to go on pages where i have written it thus to delete the s as though the s is incorrect he has done the same with at bat which he insists must be hyphenated etcetera these are just two of the types of reverts he feels impelled to make of my edits it is picayune but it is wrong to revert perfectly good edits if he insisted on lower casing rbis or any similar degradation i would think it wrong of him to follow people around and revert perfectly good edits there is enough good work he could perform instead well i can t stop him from wasting time if that s what he wants to do as for thorough treatment i m not sure i consider a bit to which a grand total of two people contributed particularly thorough i respect kingturtle but i think he s got it wrong on this one regarding what mlb com uses you re appealing to the wrong authority because it s not a terminology issue it s a grammar issue in any case at this point i have no doubt that these edits are being reverted simply because you re both watching for each other s names on your watchlists allow me to again encourage the both of you to just stay away from each other s edits entirely for a while and allow the bad feelings to ebb at the rate you re going you re both going to get block jargon overrides grammar to say that a batter flied out is probably not good grammar either but it s proper baseball terminology i think this needs to be discussed at the project page assuming anyone s watching that page anymore user baseball,0 +i didn t vandalize a page you ve got the wrong guy,0 +here here and here,0 +awesome thanks for taking the time to do so look forward to you running it btw do you have a special interest in malaysia or something i ve noticed a lot of places were started by you dr blofeld,0 +legislation european union the atricle claims the european union has ratified a law banning incitement to or denial of genocide both the holocaust and the armenian genocide the source reads the european union has just ratified a law banning incitement to or denial of genocide arguably including both the holocaust and the armenian genocide some enthusiasts removed the word arguably when citing the source let s have a look at the law itself framework decision on combating racism and xenophobia official press release certain forms of conduct as outlined below which are committed for a racist or xenophobic purpose are punishable as criminal offences public condoning denying or grossly trivialising crimes of genocide as defined in the statute of the international criminal court articles and and crimes defined in article of the charter of the international military tribunal when the conduct is carried out in a manner likely to incite violence or hatred against such a group or a member of such a group example somebody publicly claims that an act of genocide the commission of which has been established as a fact by an international court never happened and was invented by the ethnic group concerned solely for the purpose of being able to claim compensation payments this allegation would not only deny the genocide committed against the ethnic group concerned but would also incite hatred against this group in the future all member states would be compelled to criminalise such a case whether a specific historical crime falls within these definitions must be decided in each concrete case by the court which has jurisdiction in the case of the holocaust for example this was done by the nuremberg tribunal as we see the law is restricted to cases when the commission of genocide is established by an international court and the denial is carried out in a manner likely to incite violence or hatred is the commission of armenian genocide established by an international court,0 +image pandas and ppl jpg i have tagged image pandas and ppl jpg as a disputed use of non free media because there is a concern that the rationale you have provided for using this image under fair use may be invalid please clarify your fair use rationale on the image description page thank you talk,0 +the christians actually created the idea of satan by demonizing the god that the wiccans worshiped,0 +this article is a perfect example of doublethink the leftists are making george orwell s come true and turning our society into a bizarre illogical politically correct nightmare where male and female are the same thing and interchangeable this is postmodernist nonsense run amok and delusions by lunatics become accepted as fact by the leftist media xy is a man xy is a woman xy has always been a woman he is a woman trapped in a man s body he does not have a mental disorder despite the fact that it is proven to be a disorder by psychologists why are you calling xy a man that s trans phobia it s racist and sexist and misogynistic and trans phobic xy does not does exist he has never existed she is xx she merely looked like a man but has magically become a woman by her thoughts mental thought determines biology she is a trans woman not a man soft science psychology trumps hard science biology there is no such thing as biology what s a biology that s trans phobic you are a trans phobe stop harassing this poor woman and respect her magical mental thoughts,0 +also i am going warthog hunting tomorrow and need a companion,0 +agree it could also be rewritten to say a law has been passed that states followed by w hate ver specifically the law states,0 +received and responded regards,0 +requested move elisabeth dermot walsh elisabeth dermot walsh s move request at wikipedia requested moves read in part elisabeth s name is spelt without the hyphen i have edited the page to correct the spelling but cannot edit the name of the article correcting the spelling i am copying it here because it is evidently controversial since the edit referred to was reverted talk contribs,0 +vip report sam spade hello sysy note that your vandalism in progress report concerning was moved to the administrators noticeboard for outside input if you would like to comment please see wp an vip alert sam spade admin talk,0 +ah ok thank you anyway,0 +cirkey it would seem she is a bit more than her publicist although her exact wording there might be legally true who am i to judge,0 +it isn t both aren t even theories but products of simpleton invention without basis and are completely undoubtedly incorrect i favor none i delete d them both because afaik there are none sources at all on this issue the house of saint vladimir is of descent from a travunian local noble house with doubtable links to the house of trpimirovic and most surely no link to the house of viseslavic however i must object putting it as a separate line tvrtko asserted rule and his line tvrtkovic is historically considered the main line of the kotromanics as for the trpimirovic branches i suggest following standard historical interpretation of the svetoslavic being a cadet branch whereas the other being the simple continuation of the standard trpimirovic line kresimirovic,0 +wp aiv hi dan i ve block the two you listed when using the vandal template you don t need to put the angle brackets in in fact putting them in generates the wrong output so you should have been using something like vandal thanks talk,0 +the fact remains that you are the largest contributor to this article information that you added remains in the article that alone justifies adding the tag as a general warning to readers thanks t c,0 +thanks alan thanks for the intro to wiki you dumb guido but i think i can figure it out for myself hotshot get a real job,0 +oh no you needn t worry except for working crossword puzzles and using it as a highly questionable reference source i am i assure you through with wikipedia,0 +why would such a page be tagged for wikipedia speedy deletion because you wouldn t like it this site is about informing so surely i should be allowed to give my honest opinion about wikipedia whether it is good or bad or is wikipedia immune to criticism,0 +i am amazed to see that native speakers allegedly confirm the doughnut legend ok so jfk could have been understood as saying i m a doughnut about as much as someone saying i m a new yorker could be understood as saying they are a magazine a car or a train,0 +the quote is exclusive to the cbr piece though and as i say goes to the did they jump or were they pushed issue the quote suggests they jumped the variety piece a blog says they were fired but doesn t quote a source and that could just their spin again we should be careful about our wording as there seems to be different takes on this for a fully balanced approach we d need something directly from the production side of things,0 +regarding edits made during october utc thank you for experimenting with the page image maryjaneshoes jpg on wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia if this is an ip address and it is shared by multiple users ignore this warning if you did not make any unconstructive edits,0 +i see you ve recreated this as an encyclopedia wikipedia requires subjects to meet certain notability requirements this does not appear to meet wikipedia notability music the notability guideline for bands for this article to survive you will need to have verifiable information from reliable third party sources unconnected with the subject cheers cierekim,0 +utc interesting logic some of the other comics mentioned by mark evanier existed therefore this one must have existed well here is what mark evanier himself has to say about it on his own website at http w newsfromme com archives html and the comic book based on the dick van dyke show wasn t drawn by anyone since it didn t exist yeah i m sorry it s a phony that i cobbled up using an old still and pieces from other gold key covers i wish they had done such a comic and if they had it would probably have been drawn by dan spiegle but they never did so i whipped up the cover to one to see if anyone would notice may,0 +thanks ratagonia i appreciate that,0 +south and central america my understanding is that enough of the dead languages in south and central american culture have been cracked as to allow a better understanding of their level of science i have no data but perhaps this article could benefit from another section myg,0 +as do i as do i svg is an evil evil format but good point regarding your reversal of colours i hadn t thought about difficulties of white on black as i was too busy cussing at inkscape for being a pain in the ass tried and utterly failed to fix the rounded edge situation i am reduced to tears t c,0 +v prop should be vprop v prop should be vprop i propose that we change the name of the page and make the appropriate chnges to the text,0 +list of celebrity and notable guest appearances in doctor who there s a new afd nomination for an article you ve previously discussed please stop by to voice your opinions again,0 +you are either deluded about the nature of your edits or are lying you have certainly deleted reliable sources and opinions from reliable sources without full consensus and you ve done so in the last hours in fact i invite anyone to check his contribution history to see if his edits match his claims and am quite confident anyone who does will see what i mean,0 +yet of course the fact that years before the revolt immanuel kant called ashke nazi jew s in northern europe in palestinians can be noted on the palestinians page,0 +i agree that this should be moved back to forth bridge according to my calculations that s in favour of the move and against any more votes,0 +bob parsons thank you for experimenting with wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you may want to do take a look at the welcome page to learn more about contributing to our encyclopedia,0 +yes the committee s decision is still in effect and can be found in the page history,0 +that goes without saying everyone who s edited for more than a week knows that content takes a back seat to cabal loyalty at wikipedia,0 +what r the types of geothermal energy yes if you know the types of geothermal enery u r so lucky because iv been looking and cant find anything so if u know please i need your help thanks,0 +mary walker i must know did mary walker give any contribution to scientific discovery you see i was assigned to write a report on mary walker and i have to include at least one thing that she contributed to science she was a great women and most certainly did plenty for women s rights but this report is for my science class so,0 +attention wikipedia administrators under mentioned data is for your observations this talk page have been misused by the so called intelligent editors which can be seen by the archive of this page archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size archive have printed pages of a size the current talk pages have printed pages material of a size paper total four hundred sixty four pages approximately have been used in the discussion what is it is homoeopathy is so controversial subject that such a big discussion cannot solve by anyone is it not a shameful condition for all those who have participated in the discussion approximately pages have been used for discussion without any conclusion the learned editors perhaps avoided to consult the other encyclopedias on the subject matters only one percent editors are seen to be serious about the subject matters rest of the editors either chatting on this page or spreading unnecessary controversy which have no mean to the subject the chatting can be seen with the timings of the editors if anybody goes and sees the utc timings of the editors it looks like they are chatting on this page without any serious intentions what is it and why it is being allowed in this page user debbe april pm ist,0 +yea i dont really care what guidelines of wikipedia are i am not a slave to wikipetia i am a slave to god subhanawatealla now that being said why would i go follow wikipedias guidelines when i follow god s guidelines hadith does not mean tradition faith does not mean tradition religion does not mean tradition tradition only means tradition ok are you smart enough to comprehend discerntion between religion and tradition,0 +users at wikipedia should be cool as a cucumber and admins much more,0 +on the removal of the redirect this page used to redirect to th century philosophy i m not too familiar with the specifics of wikipedia s policies but i think this redirect was misleading i also think this article probably deserves a page of its own the history of western philosophy has a decent section on modern philosophy how to deal with this overlap i don t know but if modern philosophy is going to be a redirect maybe it should go to history of western philosophy,0 +that is right and please here me out boss,0 +since wmc outed himself above we can read a bit about him it would be interesting to known what he as an official green thinks about gardner s attack on organic farming and whether he d propose the exclusion from this article of opinion from organic farming advocates,0 +may utc no i suppose you wouldn t,0 +let me get this straight my last post is cause for you to post something on mine saying last warning i m going to be banned i didn t accuse you of enlisting someone else i thought you had but you didn t it turns out so basically by saying are you trying to bore me that is why you are threatening to ban me you keep posting on my talk page stop posting and complaining and then posting again i m not doing anything wrong take some responsibility,0 +ownership who owns taransay,0 +you were wrong and you know it i never was vandalising the page,0 +for what purpose was the u s census office reinterpreting a foreign census my hunch is that spoken rusyn and western ukrainian are closely related for example my father learned polish at home from his mother he was a pennsylvania coal miner and understood rusyn after working years underground i remember him saying that the rusyn s did not like to be referred to as ukrainians if he were alive today he would understand this discussion dr franklin please cite a reliable source from the cold war era on this rusyn and ukrainian dispute we are having here in new york the local rusyns and ukrainians are happy like peas in a pod see ukrainian americans in new york city if you are in ny drop me a line and we can have lunch there regards,0 +example say there are equally good horses in a race the odds would be decimal or to be fair but typically the odds available will be decimal or at best backing of the horses with a stake of gbp each in order to lay the remaining horse results in a loss of gbp no matter which horse wins mar utc,0 +thanks my guess is that other people who will just be noticing this change in their edit summaries will have similar questions can we add a link to the wikiproject from the cfd discussion onka,0 +pod shiithead be polite assume good faith avoid personal attacks be welcoming i haven t seen you follow any of these guidelines m,0 +unsigned comment,0 +august utc is there any way to make them visible again so they can be discussed for a revision of deletion thanks again,0 +jacob barnett username jacobbarnett,0 +kit number why is his number listed as he wears for milan,0 +can we go on a date i want to sniff your leaky blood box,0 +c d strand ranking the president i found this ranking but i am having some difficulty adding it with the coding place could someone add it here s the link to poll http w cdstrand com areas essays presranks htm,0 +the checkuser i talked to user talk elockid beloki didn t think there was a connection between et al and when i asked and i myself now don t believe it entirely fits based on the behavioural evidence certainly asking theshadowcrow is pointless because he will not give honest answers talk,0 +piss off you sanctimonious weed you forget that you are irrelevant to this topic you arbitrarily abused your privileges i mean what sort of prick suspends someone in another country over a dispute he wasn t even a party to so when you and daniel dumb ass have finished stroking each others egos you might want to remember this about wikipedia,0 +actually i am fully arabic and islamic and the correct spelling unlike how you stupid christians have been spelling it is mou ammar al qadhdhaffy but you are all too racist and white and stupid too accept that,0 +negatively biased article the following was entered into the article text in these edits by whomever wrote this wikipedia information has a clear bias and is absolutely against dr albert rivera in this biograpgy he is promptly attacked as a fraud before and after stating the life of dr alberto the refrences of public magazines where dr rivera is pointed as a fraud are commentary opinionated and are not mere fact it is clear that dr rivera s life is quite controversial and to discredit him is the easiet form to invalidate his claims out of evident knowledge dr alberto was not anti catholic he only spoke what he lived it would be quite contradicting to have been not only a roman catholic but a jesuite and then be margined as anti catholic obviously this would be the best label in order for catholics to reject and discard w hate ver dr rivera has said,0 +stanley s prototype everyone i know what stanley s prototype is he is the early version of the e i know cause i wrote to hit,0 +your low self esteem i see you have such a low self esteem that you have to warn others not to attack you,0 +scope of article too limited the right to keep and bear arms is not limited to firearms it includes all types of arms but this article mistakenly presumes it applies only to guns the scope of the discussion should be broadened to encompass the scope of the right preceding unsigned comment added by,0 +i wanted to report the vandalism of a user of wikipedia alexikoua i think that he has vandalised the information about the ethnic groups in albania by incresing the percentage of greek population in albania i think that it is a clear vandalism and greek nationalism and i wanted your help about this problem i wanted you to solve this problem as soon as possibl because i think that it is not just a vandalism but a serious problem nationalism user zakoni p s here is the correct informatoin source albanian government http w instat gov al media rezultatet kryesore t censusit t popullsis dhe banesave n shqip ri pdf this user has used sources that are not in accordance with the rates that the user has added itself in wikipedia in addition most of the sources of this user belongs to year or earlier i wanted you to take disciplinary action against this user alexikoua,0 +according to page c of this nist document http ts nist gov weightsandmeasures publications upload h appenc pdf by custom gallons comprise a barrel of crude oil or petroleum products for statistical purposes and this equivalent is recognized for liquids by four states based on the above it should be noted that a the definition of gallons is by custom not by law and b the definition of gallons is for statistical purposes and does not mention for use in trade or commerce this nist document page also states that a barrel of oil is gallons approx liters http ts nist gov weightsandmeasures metric upload fs b pdf nymex does define the capacity of a barrel in terms of gallons according to this http w nymex com cl spec aspx here we see that the trading unit for light sweet crude oil is specified as barrels gallons,0 +yeah sorry can you tell me what latter means and im talking about on far cry vengeance when you said lift up the latter what does that mean and is it formal,0 +note his response to me on his talk page that is a good first step unfortunately our policies in dealing with people like him are pretty toothless and intentionally so,0 +bill stewart i took a photo of the picture of him in the fiesta bowl program,0 +i guess you got a stalemate then i actaully searched for keediz on line and like you found nothing but i have heard it used on tv loads of times i really love children in a legal way and i hate adults treating them like idiot s never the less your threats have been taken into acount and as i m not yet finished with this site i will refrain from posting anything keediz realated unless i can provide proof and to be on the safe side i will ask you before i do so i hope we have a neutral understanding but this doesn t remove my pain,0 +why do you think your above me,0 +migdia chinea cordova avenue glendale california march robert deegan general liability claims section los angeles unified school district s beaudry ave th floor los angeles ca dear mr deegan this letter shall constitute a claim pursuant to the california tort claims act section et seq of the california government code my address information in compliance with section a and b is set forth above per section c d and e the date of occurrence was october i was assaulted and battered by students t and i and possibly other students at markham middle school w th street los angeles the police report is dr lausd personnel specifically steven thomas rooney aided and abetted violations of the ralph and bane civil rights acts sections and of the california civil code and sections and of the california penal code by failing and refusing to report the matter to police authorities lausd violated my rights under article i section one of the california constitution to safety and my specific right to safety on a school campus under article i section of the california constitution i have suffered physical damages and extreme emotional trauma as a result david brewer and other personnel knew or should have known based upon my complaints and upon past known misconduct by rooney that rooney was unfit as a supervisory employee of lausd lausd therefore negligently hired trained assigned supervised and retained rooney and ignored my complaints about his misconduct lausd s conduct towards me is motivated by benign neglect of complaints of discrimination retaliation and harassment by latino employees as exemplified in past incidents by superintendent brewer and the general counsel s office failing to properly investigate and take appropriate action when complaints were levelled against anti hispanic ethnocentric misconduct against an attorney employed by the office of the general counsel and other incidents pursuant to section f this claim is for damages within the jurisdiction of the unlimited division of the los angeles superior court respectfully submitted migdia chinea cc california lulac civil rights commission united for education coalition,0 +look she the one that personally attacked me did you not just read her post they gonna try to be smart with it because they scared to say what they feel you unfair june,0 +bold text italic text,0 +page blanking on apr you blanked st brigade st cavalry division blanking pages is generally considered a bad idea i have changed this redirect to u s st brigade st cavalry division to avoid the disambig page if this was the result of a broken edit you may wish to make the correct edits if you believe the redirect should be deleted please follow the redirect portion of the deletion procedures if you have questions please let me know thanks,0 +important you and your family shall burn you have been warned if you do troll muzemikes talk page i will slaughter you in your sleep bye,0 +utc but that way you d have to include that factor and its powers into time complexity of almost every algorithm it s not a very useful thing to care about and so in the usual computational model used for analysis of algorithms ram machine a machine word is assumed to be of size bits and so addition of numbers of that size is september,0 +may thank you for experimenting with wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you may want to do take a look at the welcome page to learn more about contributing to our encyclopedia,0 +i agree though that section does need references and any new additions especially by lesser known musicians must be referenced the,0 +well most of them do you dufus user pic business,0 +i think the malcolm x section could be eliminated yes he s a charismatic figure but why highlight him and not farrakhan and other influential figures,0 +i didn t put it there haab it s actually quite pitiful i don t know sorry nov utc,0 +in response to your recent comment on my talk page i suggest you contract cancer,0 +remember when i first added it and you deleted it for the first time you said third highest of doesn t really cut it well now that information of it being the highest grossing film of has been found it should be on that list,0 +peer reviews happy new year wack d since you ve assessed quite a few good articles and contributed to them i thought i could solicit your assistance i ve submitted two articles for peer review and thought that you might be of some help in critiquing them duck soup i ve listed this article for peer review because even though i and other editors have contributed much information and references i m certain that there are other aspects of this classic film that have yet to be covered i d like to hear feedback from you so that i can get help in improving this and other marx brothers films quality princess leia organa i ve listed this article for peer review because it right now seems oddly cluttered and despite a lot of references as of now lacks reliable source citations although i ve already requested another peer review as long as it helps the articles get better i ve got the time any helpful comments will certainly be appreciated as this should help me in expanding other star wars centric articles if you have the time it d be great if you could review those articles and assess their strengths and weaknesses thanks and a happy new year to you talk contribs,0 +the mosman article looks fine i think it has something to do with the info box on the right pushing the image on left down the page i have seen this problem before on other pages but it only seems to happen on firefox okay thanks for that,0 +user pgagnon pgagnon is only stalking this page in an attempt to start a flamewar i encourage all posters to use caution,0 +that post wasn t intended to be a troll post i felt surprised someone would think that,0 +apparently its standard practice and has happened many times but i haven t tracked another instance,0 +matia i have told you a hundred times that articles on dialects do not have the word language in the title witness brigish english mandarin linguistics flemish linguistics ashke nazi hebrew cantonese linguistics american english sephardi hebrew etc etc arvanitic is a dialect according to all our sources as interpreted by wikipedia policy therefore arvanitic language or arvanitika language are out of the question i don t want to use arvanitika albanian as it will be too controversial so i don t want albanian in the title therefore the only options are arvanitic or arvanitika they can and should be used arvanitic has the majority vote and therefore that shall be used what is wrong with it it is neutral it does not prescribe that arvanitic is a language or a dialect and as it has been pointed out the reader can review all the evidence for himself herself and see what he she thinks wikipedia should not take sides and especially wikipedia should not say that unesco britannica etc aree wrong macedonian and luxembourgish etc can be treated as languages because all neutral credible sources say they are while the same sources say that arvanitic is a dialect if britannica or unesco etc said that they were dialects then they could be treated as such no neutral source formally aknowledges that they are dialects why should they be treated as such every neutral source says that arvanitic is a dialect and therefore should be treated as such and the word language should not be in the title we can discuss possibilities of it being a language in the text but not in the title arvanitic is neutral and will be used as it has received he majority support possibilities of arvanitic being a language in its own right can be discussed in the article not in the title as that would be a violation of wikipedia s policies what unesco britannica etc say is assumed correct according to wp v and wp nor i am not labeling arvanites albanians against their will are we labeling the irish english against their will by calling their language hiberno english a dialect of english no so stop that straw man argument arvanitic is neutral and will not offend anyone and has majority support here and will be used according to policy the world is not made to please you neither is wikipedia we have policies that must be observed so if you want to use wikipedia you will just have to accept them regards ps does peace mean having to violate wp policies that is what you are asking me to do,0 +redirect talk sligo intermediate football championship,0 +hm user fkpcascais cleverly addresses jodyb thinking that he can win the argument by finding an admin to block me ironic since he had just recently gotten himself block not for edit warring but for disruptive editing such as the removal of sources and personal attacks jody i feel i simply have to clarify this the man is lying to you after i made some minor edits on the dra a mihailovi article he arrived and started editing wholesale removing very well sourced info altering quoted historical documents ethnically discriminating against authors who s ethnicity he did not approve of etc all this in spite of being asked numerous times not to edit war to keep his controversial new edits in but to discuss on the talkpage thread i had opened in spite of the discussion he edit warred until the article got protected with his new edits inserted and the sourced text altered or removed talk,0 +wasn t there a sausagefest article or sausagefest anyway i could have sworn a few weeks back there was an article about this as a known phrase for all male groups and or all male sex orgies or was that urbandictionary wonder what happened to it anyway redirecting to human sex ratio gender imbalance seems silly sausage fest goes to list of robot chicken episodes season a so that would make sense even better a disambiguation so people looking for the all male institutions vs all male sex practice vs various sausage festivals mentioned herein would have those choices talkie talkie,0 +i really want to be able to enter pch a week for life sweepstakes but my company has me block and i don t have computer at home any suggestions,0 +i understand now,0 +please do not replace wikipedia pages with blank content blank pages are harmful to wikipedia because they have a tendency to confuse readers if it is a duplicate article please redirect it to an appropriate existing page if the page has been vandalised please revert it to the last legitimate version if you feel that the content of a page is inappropriate please edit the page and replace it with appropriate content if you believe there is no hope for the page please see the deletion policy for how to proceed talk,0 +kidnap film please move draft kidnap film to kidnap film thanks t c,0 +references please use high quality references per wp medrs such as review articles or major textbooks note that review articles are not the same as peer reviewed articles thanks and welcome to wikipedia talk contribs email,0 +at least that s why i was reverting it talk contribs,0 +generally the colors of a person s signature match their userpage format in addition this user page style is really personal to me because it reflects my personality i e light blue etc so i really would appreciate if a user copies my page layouts to talk to me first as well as credits me then tweaks the changes to their colors etc i will fix your userpage throughout the day with the userboxes etc and i can see what i can do with miszabot,0 +similar practices in places other than india i am curious to know that is there any similar practice or phenomenon of kidnapping men to marry women excluding shotgun wedding which i mean to force the man who impregnated one s daughter to marry her and regardless of whether the man has met the woman or not that existed or still exists in places other than india,0 +for which he was imprisoned para not entirely sure but guessing it should be for which seckler was imprisoned will need to change if it was parsons that was imprisoned,0 +why did u block me um ya so why did u block me,0 +chuck todd made these observations after sarah quit this summer bits andpieces,0 +please do not vandalize pages as you did with this edit to victoria australia if you continue to do so you will be block from editing talk contribs,0 +hello dan i am esther and i from spain i have curly hear and i dont like the chocolat but i like gominols i love your films and i think you are excellent i dont like boys to his hear is fair but i like the boys to his hear is black i sinpatic but i dont talk very good spanish sorry jajajja please contest me thank you esther fuentes pds i ve got years old good bay,0 +here is a reputable link from minutes ago re algeria,0 +april utc yes usually you define the terms between the equations wow,0 +mereger please explain why you merged an article which was deleted into this article most of it is or and has no place in an article whatsoever,0 +hello i want to be able to upload images on wikipedia and i am ready to do this now listen up wilko you sent me a message saying i m too new to add images fair enough well i feel i m ready now to be able to upload images now if you read my user page you will probably notice that i am interested in the lower leagues of football and editing them well i have been doing that but i ve noticed there s a number of less notable footballers who haven t got images on their wikipedia page well i feel if i am able to upload images i could give these less notable footballers an image on their wikipedia page so is there a chance you could grant me permission to be able to upload images on wikipedia,0 +lebron james got a triple double in the all star game in so jordan is the first not the only,0 +also if you wouldn t mind enabling email this user at my preferences at your userpage that might be helpful for discussion of some information before it is published in the article s,0 +intel seem to disagree with you they rather write their driver the old way and do not loose of computing power for people who would like to use linux as a gaming platform loss in performance due to avoidable layers of abstraction i e john d carmack s layers of crap is quite much the claim that gallium d could cost maybe of performance is from some vmware employee in some video i once watched on youtube,0 +i mean who whats this kind of abuse,0 +footnoted and within the scope of wikiproject australia,0 +kelly this is yo momma speaking please stop being a nerd,0 +i posted a thread about donny on wp ani on saturday after he accused me of wp bite and then demanded checkuser to clear his name i thought that took some nerve since i haven t run across any newbies who were so conversant with checkuser but checkuser isn t employed to establish innocence in any case a passing checkuser confirmed that donny evaded rr using ip s whether or not the ip that raised the iberian arabian issue was donny is probably beside the point there s no possibility of agf with donny anymore you ve seen fisherqueen s warning and i agree with her strategy that comment isn t quite worthy of blocking but ignoring her warning will be talk by the way i will be away on vacation in wyoming montana in fact later this month for ten days or so i have no intention of being anywhere near a computer there will be a few folks including admins watching my user talk pages in case of trouble and i ll suggest they keep an eye on horse related articles as well talk,0 +silk road the silk road article is missing a lot on somalia do you mind assisting me in improving it it s basically the periplus era city states such as nikon mosylon sarapion best regards this guy have you seen this guy before oddly enough he reads off wikipedia lol no i haven t best regards,0 +edits to sidney crosby thank you for experimenting with wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you may want to do take a look at the welcome page to learn more about contributing to our encyclopedia,0 +hello these are my user pages and sandboxes according to the page i can do w hate ver i want with my sandboxes i will report you if you don t leave them alone,0 +operational conversion unit raaf,0 +who exactly was joseph henry jackson does anyone know,0 +my rfa drew thanks for everything particularly your kind nomination i was genuinely overwhelmed and surprised at the turnout if we don t speak again beforehand although i m sure we will have a happy christmas and new year i intend to have a short wikibreak starting about friday talk,0 +tmbox type style image text please come to irc by the looks of your question i think it would be best to have you log on to irc irc stands for internet relay chat which allows for real time text based communication with other users this way in addition to the help i can provide i can get others on wikipedia en help to help you as well here is a web based irc client so you don t have to download anything to talk to us see you there,0 +note one previous comment to my knowledge of remembrence cage did not have a bloody nose in national treasure correct me if i am wrong but i am fairly sure of that,0 +a friendly message to angela if you haven t contributed anything we wish you leave the users alone try going somewhere else like a cruise and please don t get anymore people block from this website,0 +this should be noted as it makes it a detriment to the episode ottoo,0 +velvet sky when are you guys gonna get her profile up and running,0 +i responded in the article talk page,0 +ruskin fellowship hi as a recent change patroller i noticed an edit of yours to the ruskin fellowship article i think that you are doing a great job so i hope that you won t feel that i m being overly critical if i say that i noticed your liberal use of capitalisation i would encourage you to attempt to follow the guidelines for capitalisation in the manual of style i know there is a lot in it to digest in one sitting hopefully by making you aware that it exists i will be helping you to learn a new skill keep up the good work,0 +otrs permissions have been confirmed thanks,0 +due to the cold war including almost years of information suppression on the part of the stalinists and pseudo communists information about famous historic hungarian persons is only now beginning to appear in western intellectual culture that said perhaps you should place this name in its hungarian order on google yahoo alta vizsla etc input feny miksa let me know what you find and think,0 +here are more signposts to buri ram chai nat and suphan buri plus the sign at the si sa ket railway station,0 +intelligence citations bibliography for articles related to human intelligence you may find it helpful while reading or editing articles to look at a bibliography of posted for the use of all wikipedians who have occasion to edit articles on human intelligence and related issues i happen to have circulating access to a huge academic research library at a university with an active research program in those issues and to another library that is one of the ten largest public library systems in the united states and have been researching these issues since you are welcome to use these citations for your own research you can help other wikipedians by suggesting new sources through comments on that page,0 +please familiarize yourself with wp not wikipedia is not a soapbox to promote your racist pov,0 +if anything you ll get block for needlessly harrassing me on my own talk page,0 +yes i was there too i hate to tell you this but jay don t like you he thinks you re a very bad vandal you ve been block permanently from editing hrwiki,0 +hello hi ursasapien i was looking through wp bu today and realized a sockpuppet arch trans it a sockpuppet of had sockpuppets how is it possible for a sockpuppet to even have sockpuppets is that even possible at all,0 +how are those elements not connections to the alien franchise also the weyland company is confirmed as a part of the film i m not saying there are necessarily direct story ties but if the trailer makes it explicit that we ll be seeing the space jockey and the derelict ship from the original film those are connections to alien,0 +ut who have i attacked i have been a victim but not of myself december,0 +this isn t a project page it s an encyclopedia article there is no reason you can t use the source information to update the article it s what we do at major league soccer season alpaugh,0 +synth applies to france being likened to the us would be good to get an academic source cnn talks about the issue but oversimplifies,0 +no problems i can t remember why i came here in the first place but i m glad to help out wherever i can p talk,0 +do not alter the comments of others in vfd discussions,0 +please do not vandalize pages as you did with this edit to senior citizen if you continue to do so you will be block from editing t c how s my driving,0 +you ve been warned before please stop t apr utc,0 +good call thanks again,0 +hi hi welcome to wikipedia i just wanted to let you know that you smell like the drippings from my poop chute cheers today,0 +p s how the hell are you going to block me when you aren t an admin,0 +redirect talk list of entities involved in financial crises,0 +you are a disgrace sitting there with no life reverting valid edits get a life idiot,0 +a mediterranean high atlas juniper steppe cedar juniper pine and oak forests cover approximately one third of the ecoregion at high altitudes junipers dominate the landscape even higher the forests eventually give way to alpine meadows pseudo steppe vegetation and finally scree slopes where purple cushion plants bloom river valleys wind through the landscape their rich moist soil supporting willows poplars oaks hawthorns and a carpet of oleander,0 +towns and villages in ark la tex cities boroughs and towns in the republic of ireland cities boroughs and townships along the susquehanna river cities towns and villages in alborz province cities towns and villages in ardabil province cities towns and villages in bhutan cities towns and villages in bushehr province cities towns and villages in chaharmahal and bakhtiari province cities towns and villages in cyprus cities towns and villages in dutch limburg cities towns and villages in east azerbaijan province cities towns and villages in east timor cities towns and villages in fars province cities towns and villages in flevoland cities towns and villages in friesland cities towns and villages in gelderland cities towns and villages in gilan province cities towns and villages in golestan province cities towns and villages in groningen cities towns and villages in hamadan province cities towns and villages in hormozgan province cities towns and villages in ilam province cities towns and villages in isfahan province cities towns and villages in kerman province cities towns and villages in kermanshah province cities towns and villages in khuzestan province cities towns and villages in kohgiluyeh and boyer ahmad province cities towns and villages in kurdistan province cities towns and villages in lorestan province cities towns and villages in markazi province cities towns and villages in mazandaran province cities towns and villages in north brabant cities towns and villages in north holland cities towns and villages in north khorasan province cities towns and villages in overijssel cities towns and villages in qazvin province cities towns and villages in qom province cities towns and villages in razavi khorasan province cities towns and villages in saint vincent and the grenadines cities towns and villages in samoa cities towns and villages in semnan province cities towns and villages in sistan and baluchestan province cities towns and villages in south holland cities towns and villages in south khorasan province cities towns and villages in tehran province cities towns and villages in turkmenistan cities towns and villages in utrecht cities towns and villages in vojvodina cities towns and villages in west azerbaijan province cities towns and villages in yazd province cities towns and villages in zanjan province cities towns and villages in zeeland cities towns and villages in the maldives cities towns and villages in the solomon islands cities towns and villages in b k s county cities towns and villages in louisiana,0 +duplicate check this out image liakhoff jpg and image liakhov jpg,0 +as i mentioned in the edit summary again did you even read it it was a personal communication hence no references may be obtained,0 +he uses a song called warm it up kane in the beginning by rapper big daddy kane from his it s a big daddy thing album,0 +i cannot believe this what the k if you continue to do this i will have to take some drastic measures watch your step it may be your last,0 +the other admin you are thinking of could be anyway he is active on both the dutch and english wikipedia and he knows about the situation too hope i am helping out here,0 +utc as a close follower of the language political issues in finland i have always disliked this intentional fudging of mother tongue s significance in defining what if you will we could call ethnic identity especially when it comes to finnish speakers swedish speakers have identified themselves very clearly as essentially an ethnic group all the way until the latter half of last century when it became much more politically convenient to start pushing the idea of the entire people having two languages which from individual people s mother tongue point of view is patent nonsense the mother tongue of say my entire family tree is finnish and what swedish they speak has been taught to them at school as essentially foreign language w hate ver happens in the future our language policy has not yet managed to implant swedish as a general second language in the population and this must be taken into account here i can well understand how fenno swedes can identify as some sort of particular subgroup and still be considered finnish but there is always the flipside of such a coin august,0 +which has now been removed,0 +why the stupid block but i m sorry because of kingdom hearts i for playstation and xbox one can you announced for playstation,0 +trans lation is not considered to be information according to wp policy could you please point me to the relative section that describes this policy so that i may educate myself on this matter thanks,0 +lucy hannah a fraud actual age lucy hannah is a complete fraud and the grg knows it they refuse to remove her even though there is overwhelming evidence she was an impostor who took another persons identity to claim government benefits early age no way age is the correct age at death come on grg own up to this and remove her it is insulting to have a fraud in the top preceding unsigned comment added by,0 +re nicolae carpathia naturally my apologies,0 +pedophiles sex criminals imperial japan nazi germany and other such degenerate ilk also are minority views and for good reason and by the way showcasing your stalker skills and googling my name is quite retard ed and anti social behavior please stop and seek therapy cause you need it,0 +during the summer young life takes kids to one of their many camps where they hear the gospel of jesus christ and the good news,0 +please stop if you continue to blank out or delete portions of page content templates or other materials from wikipedia as you did to marz artist you will be block from editing if this is a shared ip address and you didn t make any unconstructive edits consider creating an account for yourself so you can avoid further irrelevant warnings,0 +fair use rationale for image ciara theevolution front jpg this file may be deleted thanks for uploading image ciara theevolution front jpg i notice the image page specifies that the image is being used under fair use but there is no explanation or rationale as to why its use in wikipedia articles constitutes fair use when you use a generic fair use tag such as fair use or fair use in article name you must also write out on the image description page a specific explanation or rationale for why using this image in each article is consistent with fair use please go to the image description page and edit it to include a fair use rationale if you have uploaded other fair use media consider checking that you have specified the fair use rationale on those pages too you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any fair use images lacking such an explanation will be deleted one week after they have been uploaded as described on criteria for speedy deletion if you have any questions please ask them at the media copyright questions page thank you,0 +mr wrestlemaina buddy rodgers and ric flair are both the nature boy hbk and cole are both mr wrestlemania,0 +it was and is still entirely unclear what it is you were trying to correct with this edit and time had elapsed since you made it with no further edits also this direct insertion of the asterisk or dagger character is not how notes and footnotes are inserted in wikipedia articles assuming that s what you intended to do eventually see wp foot for discussion talk,0 +useful workshop thought you might want to know about this upcoming workshop,0 +this message is regarding the page talk michael jackson thanks for experimenting with wikipedia your test worked and has been removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing thanks eb,0 +it is a separate line from the street railway line that connected to ramona park in the same area,0 +ben bagby beowulf website don t know if you re interested but in case you are here s the website,0 +apology you block me once under another ip and it angered me i was determined to take revenge then i discovered your wife is an honest to god african prostitute with aids and i realized nothing i could do would make your life worse than it is a married virgin and you ll probably die a virgin you re like the unicorn of white nights this is gold man thanks so much honestly,0 +thank you my point exactly is what you said users are expected to collaborate with others regarding my reverts as can be seen in the history of that article i made two reverts as opposed to four by that other user also he immediately accused me of vandalism and repeatedly his behaviour on my talk page is something that i can easily perceive as harassment he even claims i indirectly threaten him and others who follow the same ideology,0 +i haven t inserted those even i myself am against that,0 +wikimedia commons and file bsvrr emd fp jpg thanks for taking the picture file bsvrr emd fp jpg of the locomotive and uploading it i just wanted to mention that if you upload your photos to wikimedia commons at http commons wikimedia org this will allow your photos to be used in other wikipedias such as the french spanish and german ones and still allow them to be used in the english wikipedia,0 +the both of you are wrong here a proper name fo the events you refer to would be mzm scandal anything other than that is pov guilt by association cunningham took personal bribes the template you are using suggests that harris has bee accused of that she has not neither has goode if the both of you don t stop it we are going to be at loggerheads,0 +you have just risen in my estimation,0 +controversy section i ve tagged the controversy section with verify and unreferenced if citations aren t provided for this material it can be deleted at any time as per wp blp talk,0 +april please do not vandalize pages as you did with this edit to tiger droppings if you continue to do so you will be block from editing,0 +didn t see you saying that i think she s talking about the position of dianetics on the grade chart remember the bridge not this dilettante far off reality film but the actual scientology way to salvation it gives the steps what is first level second level and so on the fishy nonsense spread by mi pardon waxbag is not on this chart not taught in scientology and not believed either,0 +you alleged without providing a single difference that i harassed gwen gale across other wmf projects maybe you could explain then why wasn t i block on other wmf projects is it because that other wmf projects is missing dishonest and cowardly arbcom just asking,0 +hi i m new to wikipedia i will not be on often and therefor will only be adding content sporadically,0 +cummings hi i didn t actually change the article but i did intervene to try to get some kind of consensus and i did ask for page protection being reluctant to do it myself because of my involvement i will continue to try to get agreement as i do not want to see anybody being block or leaving the project over this issue if you are interested most of my interventions are on blankfaze s talk page and on an rr page talk june utc,0 +i would also like to say that not only are you a masturbate but you are also gay lol,0 +unh i like pie signed,0 +hi i like the diagram but i believe that the terminal station should be in normal text because it is where the train is ultimately heading toward similarly the next stop should be in small text because it is just a station on the wayside on the train s journey toward the last stop except in the penultimate stations of each line where the word terminus shows that the next stop is the terminus in the layouts that were originally written for the taipei metro and guangzhou metro the terminal was placed before the next stop so i had based the nyc area railroad layouts on the taipei guangzhou layouts,0 +carolina gold drum and bugle corps which you submitted to articles for creation has been created you are more than welcome to continue making quality contributions to wikipedia note that because you are a logged in user you can create articles yourself and don t have to post a request however you are more than welcome to continue submitting work to articles for creation if you have any questions you are welcome to ask at the help desk or on the reviewer s talk page if you would like to help us improve this process please consider thank you for helping improve wikipedia i have moved this article to wikipedia s mainspace but as has been pointed out the notability of the subject needs to be affirmed by the inclusion of reliable independent news coverage thankyou for declaring your interest in the subject but i would strongly advise you to try and write the article in a neutral encyclopaedic language using facts that are verifiable see the discussion page of the article all the best,0 +wikipedia requests for comment philosophy talk aesthetic realism should the article be permitted to include historical information that current teachers of the philosophy seek to deemphasize,0 +ken isaacson a prod template has been added to the article ken isaacson suggesting that it be deleted according to the proposed deletion process all contributions are appreciated but this article may not satisfy wikipedia s criteria for inclusion and the deletion notice explains why see also what wikipedia is not and wikipedia s deletion policy you may contest the proposed deletion by removing the dated prod notice but please explain why you disagree with the proposed deletion in your edit summary or on its talk page also please consider improving the article to address the issues raised even though removing the deletion notice will prevent deletion through the proposed deletion process the article may still be deleted if it matches any of the speedy deletion criteria or it can be sent to articles for deletion where it may be deleted if consensus to delete is reached if you endorse deletion of the article and you are the only person who has made substantial edits to the page please tag it with,0 +hello again already replied on your talkpage but no worries in brief i concur with you hence i have moved the section below you are welcome to suggest any heading you find will comprise the two or a main heading appropriately as no need for two imo,0 +hello deacon thanks for the kind words your wording is better regarding territory but i think that it still might specifically mention the firth of clyde since northumbria ruled the area south of it for a while how about between the humber and the firths of clyde and forth or similar but there s no great preference here either way oswiu chose the roman way at whitby in and he died in thereafter there was a steady erosion of iona based clerics in northumbrian territory quite noticeable by pehthelm s consecration in the th century have a look at the skene reference i cite which suggests that both picts and northumbrians were working in concert in the early th century towards the roman way in preference to the columban way it looks like a political process constant and steady but not a sudden forcible ouster the end result was indeed a facilitation of northumbrian hegemony northumbria s fortunes were up and down in the th century regarding its southern neighbors particularly mercia and that is not to suggest that anyone chose deiran preferences over bernician ones i m aware of the substantial history of iona based clerics in bernicia but times change and sometimes political entities do things for expedient reasons the trans lation of pehthelm s name without stated authority is indeed sourced the claim is made flat out so have a look at the reference cited i tried to make sure that anyone who likes to check out references can do so easily indeed you should be able to quickly access every citation that i made in the article regards,0 +toddst i understand your point so i created my own,0 +deletion of dave warwak page wondering why is was necessary to delete the page on dave warwak an educator of vegan practices and animal rights i see that your comment on the reason for deletion was the only thing he is known for is being fired however that is not the case in the animal friendly vegetarian vegan community in fact he is praised by many for his passion in properly educating children about the origins of their food why would you find it so crucial to speedy delete a page that simply speaks of cruelty free living and aims to educate people on the truth about their food is that information threatening to wikipedia for some reason and i wouldn t think as a wiki admin that your opinion on the topic is reason enough to control what info is available and what is deleted you may know mr warwak as only being fired but being the intelligent science studying individual that you are surly you must realize that his efforts to educate children and promote compassion for animals is actually very honorable and deserving of recognition please show a little compassion yourself and undelete the page,0 +troublesome sentence paleolithic europeans seem to have been a homogenous population possibly due to a population bottleneck or near extinction event on the iberian peninsula where a small human population is thought to have survived the glaciation and then expanded into europe during the mesolithic period this is false i cannot recall any study which asserts confidently that palaeolithic europe was genetically homogeneous if there is one it would require in line citation i think whoever wrote the sentence has confused themselves the studies have rather shown that mesolithic europe became more homogenepus because of population bottlenecking with subsequent expansion the bottlenecking did not cause a homogeneous palaeolithic population becuase the events occurred subsequently,0 +mcmurry university mcmurry doesn t join until fall so i took them out of the membership table while referencing them in the membership narrative,0 +your edit to battalion wars if you ever make an edit like that again to battalion wars i will personally make a switch and then beat you until you re blue in the face,0 +why is it vandalism you do not like one of my edits so it automatically becomes vandalism i would venture to guess that you didn t read the article also i doubt very much that you have any idea about the facts of the case i can t imagine why some people view germans as arrogant and unreasonable,0 +the new image only shows superwoman and gives a much clearer illustration than the previous one so i think it does enhance the page,0 +yeah well i don t subscribe to your opinion stop spamming me with messages here what makes your opinion superior to mine nothing if you abuse or spam me again i will take issue get it and revert it back to what i had it unless you show me proof to the contrary where s your proof nowhere you lackies run the show here,0 +fantastic thank you that s extremely helpful that biography contains details of his early and late life that do not exist in the other sources i ve got his time in paris pretty well fleshed out slonimsky s reminiscences in perfect pitch are full of juicy details i m still trying to understand all the orthodox religious references in some of my other sources e g two resurrections i m a little out to sea on some of that it s hard to write about his tone method without doing forbidden original research because it seems no one has really studied it in depth sitsky maybe more than anyone else i really want to look at one of the scores now if only i had a public domain illustration or two anyhow now i can cite that biography thanks to you i m presuming that the world encyclopedia in russian is a reliable source everything sounds right and matches up with grove and the others i ve got cheers talk,0 +being opposed to lgbt philosophy or movement doesn t make somebody an homophobe exactly as defending israel policies doesn t make somebody a racist or being opposed to judaism doesn t make somebody an antisemite nb settleman from recently you have started adding material from both sides but you don t comply with npov yet anyway you have some ideas of what is the pov of opponents to some israeli policies but when you write an article on such a topic it is not enough to google for some articles about what they say you have to understand their arguments as well as you understand those that you share listen day to day and put all of them in article in order that everybody understand them you also have to introduce their arguments fairly so that they can be understood the big issue for you will be that on the statistical point of view you should face of time arguments from the other side partly stronger than the ones you believe in how will you manage this if your are pro israel and revendicate this or the right to be so on wp as a good start you could start by trying to understand the muslim and the palestinian point of view regarding al haram al sharif temple mount and introducing this on the article your recently created,0 +umberto colombo article starting point for this article was the umberto colombo article at it wikipedia org google trans late english speaker edits small amount of additional info based on a few new sources were added um is there anything i need to do to be onside copyright wise,0 +fair enough everything is here for people to read you say it indicates that it is referring exclusively to those who follow the scientific method and not any ol tom dick and harry with a contrary opinion and a webpage and then say you don t have any specific person or group in mind in mathematics we call this talk saying things without any grounding in examples vacuous,0 +blocking of an entire ip range not fair,0 +sep utc,0 +help com has more going for it then what you have made here so that doesnt give here much kudos does it go play at voodoo they like dimwits there find black and tell him i sent you,0 +user bongwarrior and user favonian love to frequently each other,0 +thanks,0 +appreciated help thanks for your clarification at the nomination for deletion page of alexander hamilton reverend i took no offense at your comment about a page for me since i had initiated that thread as an illustration and was treating it humorously but you clearly recognized the issue with norton s comment along the lines of if you re a linguist then you would know thanks,0 +i m sure you eat alot of tube steak,0 +nice man talking to yourself very convincing it s interesting how you ve decided to launch an entire saga against me simply to censor a citation from selimovic s autobiography that is relevant to his article,0 +more fuel just drop that millions of manga volumes sold to be more precise the news say ten thousands and yes google trans lation will display millions which is absurd,0 +again please don t edit archives there is no point and it disrupts the archives ec,0 +welcome welcome to wikipedia my name is ryan aka i noticed that you were new and haven t received any messages yet i just wanted to see how you were doing wikipedia can be a little intimidating at first since it uses different formatting than other sites that use html and css in the long run though you ll find that the wikisyntax is a lot easier and faster than those other ways here are a few links to get you started how to edit a page editing policy conduct and structure tutorial picture tutorial how to write a great article there are a lot of policies and guides to read but i highly recommend reading over those first if you have any questions feel free to leave me a message on my talk page please be sure to sign your name on talk pages using four tildes to produce your name and the current date along with a link to your user page this way others know when you left a message and how to find you it s easier than having to type out your name right i hope you enjoy contributing to wikipedia we can use all the help we can get have a nice day sincerely august utc,0 +july utc ah i hadn t realised that you were cleaning up dyk articles i thought you were specifically hanging around banksia thanks for the offer i ll bear that in mind snottygobble,0 +i don t have a strong view on this at this point but find the conversation interesting,0 +true it is a real jutsu but people think its just a joke thinkgold dragon,0 +in the article it says the kingdom of hungary existed continously for about years no the article says the kingdom of hungary existed for years with minor interruptions i had removed minor before your comment here otherwise that is correct i added a reference for the trianon part the new york times suddenly millions of hungarians found themselves outside of hungary against their own will how could you present this as non controversial i think this article is pretty fair and neutral compared to other similar articles about countries for example the article romania,0 +ok issue solved i have been reading how wikipedia works after your notice it is correct what you said i am new here i think i have very much to say on this matter it would be wise if we stop this misunderstanding and i authorize you to delete both yours and my sayings in the page of dispute,0 +indeed it would prove our point since guettarda was another editor who was warned for tendentious edits then slapped with a wet noodle and jz has done nothing for his credibility by supporting this block a block he has just loved to impose himself,0 +and alison falsely accused me,0 +you are equating two different things it makes little more sense to say incest is torture in the usual sense of the word torture than it does to say incest is murder that could also be justified in some sense but it would be misleading given that the main sense of murder is nothing to do with the first mentioned sin,0 +requested move doctor,0 +ooh i guess i hit a sore spot you realized your narcissism and quit referring to yourself in the third person congratulations on exposing your insecurities some day you re going to hate yourself for living such a worthless life editing wikipedia jesus,0 +holiday observances the citation for the sentence many messianic jew s do not observe the christmas holiday and those who do observe do not keep a christmas tree is jeremiah i don t know how to edit so would somebody please check this out and if you concur make the edit thanks i signed up for a username in wikipedia just to be able to add this comment we are christians not jew s and we don t keep a christmas tree either for this reason thanks cg,0 +new electric vehicles available first we should add the mitsubishi imiev and the subaru stella ev as well as the smart ev which have all entered production as available also i think we should just create a entire new page it s not sustainable to have this ever growing list within the electric car article let me know what you think,0 +starblind and hyper individualist yahoo com are part of the hoax a geneologist expert has been brought in to verify the previous article several of the points have already been proven with verifiable facts and evidence yet when those point are made evidently clear both starbling and hyper individualist yahoo com continue to ignore it and chose not to respond the true hoax on this barbaro family page is that these two individuals are trying to ignore verifiable evidence and have set out to destroy good knowledge for everyone verifiable knowledge starblind has decided to put what ever he wants on the page but can not provide a single source of evidence to validate his selection these two hoaxers have only one desire but to detroy good validated information for the public and to extend turmoil these two hoaxers continually make attempts to stop progress and provide no real solutions for wikipedia problems i suggest that starblind be removed from wikipedia editing he is a trouble maker of the highest category and ignores reason,0 +please change your username it is misleading because it is very similar to msg protected thanks aco aug utc,0 +i understand your difficulty i am able to read some other language wikis but i can not write an article for them on a different page explained that a stamp article about azerbaijan was deleted about a year ago i do not know what happened there exactly do you know that there is a wiki site where people can request trans lations wikipedia articles from other languages into english if the article ru is exactly what the english wiki article is supposed to contain perhaps you could ask there for someone to trans late it there is a small form to fill out there i can even do that for you if you tell me the article is exactly what is needed here i can not promise that anyone will trans late it but we can ask thank you again for your willingness to help,0 +nonsense are you a boy or a girl,0 +right now i haven t done anything really wrong yet i made a quality edit and stood by it when some power hungry mod reverted it all the drama would have been prevented if da had simply apologized rather than just increasing my warning level,0 +that sounds like a good idea to me i just ran across this article and i was looking for a summary of all the series like the l amour collection etc i also disagree slightly on the names of the subpages i might split the x series into multiple sub sections,0 +i got a reply from asmen he will trans late the text but he told me that it might take little bit time because he is busy nowadays incubator user maviulke,0 +none of this you can prove the whovian,0 +btw no hard feelings if you delete this afterwards,0 +inappropriate edit summaries this edit summary violates wp civil if not wp npa further the point in question is legitimate that article talkpages are not forums regarding the subject matter even if not made in the best of language remove comment from your talkpage if you wish i shall remind,0 +actually my comment above was addressed to stifle who locked the article so i have no idea who you are talking to bfigura in case you did not notice it so far i do not care about non serious explanations as they are by definition invalid just like the many non binding regulations that dick yon has been trying to misrepresent as obligatory but when you actually go on and read them they usually say something like this is a recommendation only or this is a style issue that editors are free to choose and so on so spare me will you thanks,0 +i live in adelaide and i ve never heard of the happy leonards sorry,0 +i have to assume you have not been listening and are just trolling now let me try to educate you per wp policy on other talk pages especially where such text is directed against you removal should typically be limited to clear cut cases where it is obvious the text is a true personal attack shouldn t admins know this for my part i might ask the user who made a certain comment i dislike in extreme situations to retract it but at least i ask the opinion of others first on whether that comment really is a personal attack to just go to someone else s talk page and delete comments you don t like is intrusive bad mannered and abusive i have never done that and never will and i say this having been the target of actual personal attacks myself please go troll somewhere else,0 +there is a lists of americans there also seems to be some epic listmaking afoot as evidenced by this category category lists of people by nationality,0 +i m not even sure what you mean when you stated just trying to help make you piece sound better do you mean your piece if so this isn t my piece it s an article written from the contribution of many editors i did not author the sentence you are trying to modify secondly you didn t just change a phrase you added leading to terminus which was part of my reason for reverting if you read the entire sentence it s somewhat redundant to add that and finally there s nothing unprofessional about the term railroad in fact it s actually a better fit if you look up the definition for railway you ll find that it s often used to describe a type of railroad that operates over short distances we have no idea if that s true or not and therefore railroad is actually preferred,0 +semi protected edit request on march http w rajaloker net http w rajaloker net,0 +the greater san francisco bay area is greater than the typical bay area definition you idiot stop reverting my edits until you have sources obviously like every other metro area a greater region is obviously bigger you idiot go shove your internet awards some where because they dont matter when all you do is type on a key board,0 +alright thanks i see it moved over to the labs now that s cool i used to do a bunch by hand and it was really tedious but this looks manageable,0 +you wouldn t want to see the same topic to appear a hundred times on your talk page now would you,0 +doctrine of the holy crown some wiki troll deleted the doctrine of the holy crown article which is a constitution like the constitution of sweden or the constitution of the united kingdom and confused ot with the holiness of the crown belief it is a constitutional legal topic similar to the british and swedish article and it is not about religious beliefs of the crown p ease restore the independent doctrine of the holy crown article,0 +citations of specific text,0 +for crying out loud britshwatcher and ip mountains and molehills spring to mind,0 +the wikipedia organization has been established and operated as a non profit corporation under the federal laws of the united states of america and furthermore it is operated by internet servers located in the united states and furthermore it operates under the copyright laws of the united states so whose spellings should be used here and that is a rhetorical question too it someone wants to use british spellings etc let them establish their own britipedia and use that one,0 +in my opinion who knows how many other sock meatpuppets it s annoying and agrevating even more so since is banned from editing any articles relating to freemasonry until the rfa is decided,0 +armour a source that is not listed as an inline citation in an article is not a reference it does not point to any specific text in the article it is further reading material unless it can be used to verify text notes and references shortcut wp fnnr notes and references appear after see also click on image for larger view main page wikipedia citing sources how to format and place citations contents these sections present citations that verify the information in the article and explanatory notes that would be awkward in the body text some articles divide this type of information into two or more separate sections others combine it into a single section there is no consensus establishing a particular structure when footnotes and the works cited in those footnotes are placed in separate sections title the most frequent choice is references other articles use notes footnotes or works cited in diminishing order of popularity the title references may be inappropriate if the section contains both explanatory notes and citations several alternate titles sources citations bibliography may also be used although each is problematic sources may be confused with source code in computer related articles citations may be confused with official awards or a summons to court bibliography may be confused with a list of printed works by the subject of a biography with the exception of bibliography the heading should be plural even if it lists only a single item further reading shortcut wp further a guideline on further reading sections is proposed at wikipedia further reading contents an optional bulleted list usually alphabetized of a reasonable number of editor recommended publications that would help interested readers learn more about the article subject editors may include brief annotations publications listed in further reading are cited in the same citation style used by the rest of the article the further reading section should not duplicate the content of the external links section and should normally not duplicate the content of the references section unless the references section is too long for a reader to use as part of a general reading list this section is not intended as a repository for general references that were used to create the article content,0 +queens population queens may overtake brooklyn in population in how long will it overtake it and not only that the bronx may take over brooklyn they all may but what are the chances and in what amount of time will it,0 +how odd you attacked me before for taking a rr stance and yet you are trying to force me into breaking that why and why deflect from your own unwillingness to change it yourself by attacking me and medieval prose not at all that shows a clear lack of understanding of the evolution of middle english to modern english it would also surprise historians to be told that the time after the establishment of the printing press wood block and the rest in europe post s was still medieval most historians end medieval with chaucer s death even looking at columbus s expedition happening around the same time as the publication of malory s work which was only a few decades after the earliest attributed date would make your claims seem rather absurd but yes according to you printing presses modern english and columbus are all medieval thats lovely,0 +you forgot to mention all the civilians killed by american bombs in indochina we started the ball rolling and pol pot finished the job its a real mean world not all bunnies and flowers pal,0 +since you defend the aristocratic coup d etat of could you please explain why the kingdom of england page has the tudor arms and not the stuart arms between until then why do wikipedia editors like yourself hate the stuarts so much why have this obsession with crediting others for their efforts and martyrdom,0 +warning i read it i ll consider it i deleted it its my talk page i ll do as i please with it quit being a fascist,0 +ludwig von salm hoogstraeten i m done with it i promise nominated it for dyk holla me,0 +please let s not revert war over this like happened last time i think i ll go for sonicrun png since fair use guidelines stipulates that fair use pictures must serve some sort of purpose and not be purely for decorative uses ozau,0 +p s it doesn t seem like you did a very good job of looking up ur a maget since a google search brings lots of results prick,0 +european borders there is a big problem going on about whether republic of georgia and other neighboring countries should be included in europe or not as you know there is no official border between europe and asia and there is a great number of unofficial versions so you might think that it is logical to explain all of the versions that exist for today on that page well sadly thats not what most editors think they put one version there and every time i changed it it went back to the previous version now i am just wondering do these people think it is their personal page or what gives them the right to rely on several sources and ignore other ones that are not any less trust me they should definately offer every version of where the border goes between the two continents instead of putting only one version and not even bothering to explain why it is unacceptable i contacted one of the editors and he she said that he chose that version because he she thinks it is the most neutral one i am sorry but what some users think should be completely irrelevant while making an article on the website which has an ambition to be credible they should include all of the versions or not include anything at all before there is an official border council of europe the oldest organization in europe classifies country as european country is in the middle of the nato membership process only european countries are eligible for it according to the north atlantic treaty and they are not even mentioning why they left it out turkey is not the case because it was already amember of nato cant they understand that page is not about the eu its the entire europe as a whole and until the borders will be determined officially all of the versions should be included i really want to ask someone to take care of it as they dont seem to understand my very logical argument and even used some rude words in private messages,0 +wikiproject dartmouth college class importance no,0 +why don t the wiki fascists leave my edits alone as the increase th eknwoledge base which is the basic idea of wiki if my edit upsets someone s preciousness that is a problem for wiki to address as otherwise wiki hitler ism my manifest determination was deleted by the homo sex clique at camh so that is acceptable to wiki my previous edit of liquorice poisoning deleted by the prissy original post but he incorporated my edit which is a bit deeitful isn t it is that the essence of wikiism,0 +category wikipedians by alma mater catholic education christian brother,0 +halliburton was for sure homo sex or bi sex in french police wrote in his file on halliburton matricule that he was a very famous homo sex frequenting gay areas in paris romancier am ricain ans n new york habite rue scribe a franchi les alpes au col du grand saint bernard sur son l phant dolly ci joint un article de paris soir ao t montrant dolly au repos dans un parc zoologique et le m me en train de se d salt rer place de la concorde mr halliburton est un homosexuel tr s connu dans certains tablissements sp cialis s il a pris l habitude de racoler rue saint lazare il propose des succions buccales blow jobs aux passants you can read it in the book of fran ois buot but it s not trans lated from french into english http books google fr books id nmfayezbcr c pg pt dq gay paris richard halliburton hl fr sa x ei ly zvphfdtltaiowgeaj ved cbsq aewaa v onepage q gay paris richard halliburton f false,0 +this is not a fan magazine this person seems devoted to turning the howard stern show entry into a fan magazine entry the program itself is replete with references to writers and writers meetings i find the efforts of this contributor to be more in keeping with a public relations campaign than with development of responsible encyclopedia articles,0 +a tag has been placed on oneclickjob com requesting that it be speedily deleted from wikipedia this has been done because the article seems to be about a person group of people band club company or web content but it does not indicate how or why the subject is notable that is why an article about that subject should be included in wikipedia under the criteria for speedy deletion articles that do not assert notability may be deleted at any time please see the guidelines for what is generally accepted as notable and if you can indicate why the subject of this article is notable you may contest the tagging to do this add on the top of the page and leave a note on the article s talk page explaining your position please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would confirm its subject s notability under the guidelines for guidelines on specific types of articles you may want to check out our criteria for biographies for web sites for bands or for companies feel free to leave a note on my talk page if you have any questions about this,0 +another one user kirin,0 +february utc it should be noted that chadbryant is currently engaging in an edit war that is a clear violation of the condition of your unblocking of his person,0 +a poor start sorry the author seems to be totally mislead about both real history and the opinions on the table first of all no common two nations table is possible patent nonsense second i object the following the passage from the russian table speaking of the kievan rus as someone suggested earlier that table should by any mean include a disclaimer explaining very loose ancestry between kievan rus and modern russia this is the main disputed claim commented enough in other articles unacceptable for me and several other ukrainian and belarusian users regardless of any ukrainian military table none of them may include the red army this army was not only irrelevant to any of ukrainian states with very formal post wwii exception but also significantly anti ukrainian for instance red army units widely participated in war crimes against ukrainian population and anti soviet guerillas creation of the ukrainian table here has been a mere discussion trick not supported by all ukrainian users for instance see earlier alexpu s passage on trading the truth given all that i d suggest you to delete your first draft and find other ways for compromising mr buckshot i thank you an innocent editor for your valuable attempts and hope for further cooperation on the issue,0 +an admittedly biased source but with more or less first hand information is the chabad group which just smuggled or at least claims to have matzoh from the ukraine to iran for the passover holiday the news article states that members of the chabad organization smuggled a huge quantity of matzot into iran last week in order to enable local jew s in the islamic republic to celebrate the passover according to tradition some jew s currently live in iran the authorities allow them freedom to practice their religion but forbid the import of israel made products to the country an act that could cost a person three years imprisonment or the revoking of his passport for five years while they probably didn t get an exact census of the people they were delivering to i d guess that they at least got the number reasonably correct so seems to be the way to go,0 +blocking proxies hello can you add to talk pages of block proxy ips it adds these addresses to category open proxies block on wikipedia and helps a lot to fight vandalism on other wikis because such addresses can be later found thanks talk,0 +in the first par it says evidence points to an c entry at the very earliest and two sentences later other evidence is suggesting as early as ad ie the beginning of the th c also use of the word our when refering to europe is exclusionary,0 +liableous not sure what that is but you should certainly look at filepile anyway the logo image has been vandalised most of the edits to the main page are disingenuous see filepile talk also someone is vandalising the acronym fp where i first came across the filepile article after gozar s addition of force publique i expect it s part of some game the people at filepile are playing,0 +let them leave ayers and wright out it lowers wiki s credibility and validifies the fact that wp has a strong liberal bias eventually nobody will take wikipedia seriously,0 +hey muhandes why dont you get a life,0 +i ll reply in a few days on agw wikibreak read the abuse upthread to see why ugh best,0 +check the content and you will understand in particular see this two years on and he has learned nothing,0 +atreus why don t you want information relevant to atreus included on his page this is vandalism in my opinion,0 +to re emphasize this entire paragraph was extremely judgemental even if you think all lawsuits should be barred and victims many who died as a result of asbestos should be labeled shams this is not appropriate for any encyclopedia,0 +yeah and in the earlier sentence i d reword fever pitch,0 +please read wp point before making score format changes as you did to pete sampras thanks,0 +congratulations your name just went on the list you could have done the honorable thing and left it out but instead choose to push biased company information even though i asked for it to be left out you ll learn soon enough what happens to an editor who constantly pushes biased information,0 +hi karan,0 +is he special,0 +i don t know dr blofeld you react excessively,0 +irving literary society cornell university deletionism and inclusionism in wikipedia neutral point of view third party review wikiproject new york posting trans ferred from user page hi cmagha i never saw the original afd discussion but i think the article looks like the start of something fantastic my only concern would be that the majority of your references seem to come from cornell specific sources i e cornell daily sun cornell era cornell register etc college university published sources are a bit of a grey area within wp n when dealing with a campus organization as some may not consider these to be independent of the subject that being said we aren t dealing with a fly by night college band that played at moonshadows and had a writeup in the ithacan this is a literary society almost as old as cornell university itself and has had significance well beyond east hill despite the large number of cu oriented sources which i personally believe are independent you have enough that would be unambiguously independent to survive another afd if need be i d post what you have now and keep looking for more says you says two wow great work sorry i ve been out of the loop double smiley face from the syracuse orangemen brought in to ensure neutrality think the critics need to read the article from a distance this is hardly promotional when you think about it it is basically saying that cornell university had a chance to excell in an intellectual activity and tanked we obviously would not have done that at su i do think there is a sumner cite out there to that cmagha missed will look for it wip trans ferred from user pageoversaw your preparations at since others may communicate here now and again you may want to move your editorial notes to a user subpage like talk thanks for the tip very hard to learn lots of the intricacies of the wikiworld i stll have some prep to do before asking the administrator to move that article over there are two editors in particular who are still a little raw on the article and the administrator while fair and neutral has been tough guidance from administtrator october just reviewed the irving article again notability addressed in the first seven footnotes will move it back into the mainspace unless you have additional concerns i think it s ready to go also see on cmagha s user page that others have reviewed it positively what are the remaining objections and how do we appeal if there are still objections here is the page spartaz if you need a refresher http en wikipedia org wiki user cmagha the irving literary society cornell university take it to drv please humbug administrator guidance to editor july copied from spartaz user page the irving article has been noticed on the wikiproject new york page some helpful comments sent back did not receive notice on your g decision we will be asking to move the article back to mainspace shortly thanks for the aid no unless you have addressed the significant issues concerning allegations of misrepresenting sources and the contention that all of the sources are tangential or trivial then this isn t going back into mainspace humbug material for spartaz to review prior to deciding whether to move article to mainspace july comparators in order of less to more evidence sphinx senior society notability based incredibly on primary,0 +i fully agree with recommending the image for deletion especially in light of the dubious claims as to its authenticity while his hair does have some natural wave it is nowhere near that long or curlyto say nothing of the clear differences in face shape length width and symmetry some of the first image results on a google search are t r with longer wavy hair and there is no resemblance to the individual in the picture being debated in terms of specific detailsyou ve claimed this is a recent picture from t r s breaka date that the picture was taken would be a good start,0 +kotowski doesn t write that past was earliest phase of polish rule i added proper tag you are manipulating the source,0 +more description of location please hello i wondered if someone with the requisite local knowledge would please consider adding a short sentence maybe in the description section to explain where this bridge is i do appreciate that its location is already described in the lead as crossing between things x and y but if you don t already know stockton well or recently this is not necessarily all that helpful i was wondering if you could write a more bottom up description which says something like the bridge crosses the tees at blah or near blah street etc it is a hundred metres downstream from the foo bridge and b hundred metres upstream from the bar barrage or w hate ver which it seems to me would nail it in more empirical terms what do you think any yes of course the maps link does nail it assuming the co ordinates are right but something in the text which helps in this way would i think be very useful i may be being unusually thick happens all the time actually but on my first reading and i was last in stockton in you see i was not at all sure where it was wondering if in fact it replaced the other rather nice pedestrian bridge closer to the town centre i cured this uncertainty by looking at the maps yes but the sentence i m asking for would have given me more direct access to the knowledeg go on please write it for me you know you want to and i will go and put the kettle on for you thanks and best wishes,0 +jg wow thanxs for getting be and balz block maybe if u mine your own business and woundlnt talk to us were years old and u are tlaking to us and we told u to stop so plz do thanx u,0 +automatic protection for main page it would be straightforward to write a bot that protected all images on the main page adding template mprotected and unprotected all images with template mprotected that no longer appeared on the main page feature would be genuinely useful and save editors work however if editors came to rely on feature then that would introduce a risk because there would always be a gap between an image appearing on the main page and the bot protecting it a clever vandal could vandalize the image in that gap and worse the bot would end up protecting the vandalized version of the image i suppose the bot could attempt to detect vandalism like that but you can see how complex the process could become may utc,0 +may utc edit granted it seems to be only one person making lots of changes to the assyrian related articles,0 +superscript text,0 +me again my ip keeps changing u shouldn t remove topics from your talk page just in case u ever want to be an admin they dig deep on requests for adminship also i don t need to make positive contributions i ve written articles and taken photos which surely allows me to ridicule shit singers once in a while btw sorry for the personal attack no need for that editing wikipedia is an important and noble thing,0 +again he talks of a noncoherent discussion on my part when it is apparent by the date of edits that he has taken the liberty to open section after section discussing either me or my edits without replying where i had already given the reasons for my edits in another section so who is being incoherent,0 +so i don t get how the file upload page worksonce you follow the upload steps i don t see how you finish the process it s this page http en wikipedia org w index php title wikipedia file upload wizard withjs mediawiki fileuploadwizard js this page looks different from how it did the last time i tried it btw,0 +finally i would not be referring to the article on alternate theories on the plame affair if rewinn had not recommended moving material from this article to that article that article still has disputed neutrality and i do not think that it is an article to recommend reading nyscholar,0 +dur oms do you really believe you needed to explain that to me what ever gave you that idea put that directly in the article if you like as i said i thought we both had concurred that it was redundant due to the prepared via the eschweiler clarke synthesis linked reaction i fail to see any point to this comment you have made to me or again what were are you trying to say so as it appears all my previous words were lost on you shall we start again positively and constructively,0 +openfuture is heading a group of disreputed people whose aim is to censor everything they don t like and defame his opponents hi was before christmas banned from the swedish newspapers i learnt very much from you and am greatful for this,0 +this it isn t a debate its a discussion see wp poll you can likely find references that use both terms that is the problem and why gaining wp consensus is exactly the right thing to do the purpose is to air out all sides under equal terms and avoid edit wars and arguments,0 +sock hi user materialscientist this user here is a block evading sock but i cant remember who of thought you might recognise it let s discuss it,0 +your userpage i have deleted your user page it is intended for basic information about yourself or your wikimedia related activities although a lot of leeway is allowed in personalizing your user page it is not a personal website blog or social networking medium nor should it be used to promote yourself or host a fake article cv or lengthy biography please do not be offended and please feel welcome here i encourage you to help build the encyclopedia if there is anything you ever need just ask best wishes,0 +wishaw general hospital a prod template has been added to the article wishaw general hospital suggesting that it be deleted according to the proposed deletion process all contributions are appreciated but this article may not satisfy wikipedia s criteria for inclusion and the deletion notice explains why see also what wikipedia is not and wikipedia s deletion policy you may contest the proposed deletion by removing the dated prod notice but please explain why you disagree with the proposed deletion in your edit summary or on its talk page also please consider improving the article to address the issues raised even though removing the deletion notice will prevent deletion through the proposed deletion process the article may still be deleted if it matches any of the speedy deletion criteria or it can be sent to articles for deletion where it may be deleted if consensus to delete is reached if you endorse deletion of the article and you are the only person who has made substantial edits to the page please tag it with,0 +interaction parameter r is there any reason the method for calculating the interaction parameter is not mentioned anywhere it just seems to be introduced as some mythical concept rather than pointing out that it is determined through trial and error based on empirical evidence of what solvents dissolve the material,0 +changes to this page open discussion since my first contribution over two months ago i have been trying my best to make known my views on what improvements could be made to this page after an initial consultation with an administrator i decided to be bold and start a d menagement of all that had nothing to do with the city of paris i was met with opposition over a link and after being complained about i thought it best to put things back the way they were until i could get a good feel of the general concensus of the page s contibutors i have seen little concensus but a lot of silent stalling my goal here is not to control anything as was complained to one of the administrators i would like only to contribute to making a better page i have learned much from other paris pages and pages concerning french history namely those concerning the french kings but those are well covered as far as knowledgable contributors are concerned and are in little need of improvement so i had little to do there this page on the other hand i find lacking and see many things that could be improved the most important fault this page has is its quantity of specialised information far too much for a general paris page the search function is a very important element of wikipedia and with this in mind much on this page is redundant and unneccessary those looking for paris economy will type exactly that into the search window the same for paris history or paris fashion here i am but repeating what i have already written below in short in order to make this page a comprehensible tool for one looking for a lead from the subject of paris or one totally ignorant on the subject in other words one who knows only enough to type only paris into the search window i propose to move the more specialty information to their own pages my apologies to those who have contributed the more detailed information but this would be better suited to a specialty page of its own this would even be a positive move as it would allow the contributor knowledgable in the subject of his contribution to expand his input far beyond what could be contained on this one page the irony of the sort is that though i contribute to wiki it won t be to this page in any quantity my specialty is the history of paris and i cannot even think to add that knowledge here paris history has a page of its own just to give you all a clear idea of where my aims are here i would like to contribute in the interest of clear information i hope with this post to create an opportunity for improvement please answer with any ideas you would have with this post i would also like to sound the board to see whether it is an interest for information or partisanship that holds the upper hand on this page as what i have seen to date leaves room for doubt in your answers i hope for evidence to the contrary please feel free to forward any thoughts on the matter at all addendum you can find a proposition for restructuring here please keep in mind that this is only a structure reference marked only by short notes i don t really want to cut everthing out,0 +after studying the phenomenon of electrolysis in the anglo irish physicist g johnstone stoney suggested that there existed a single definite quantity of electricity he was able to estimate the value of the charge e of a monovalent ion by means of faraday s laws of electrolysis this means that chemistry is part of the definitio if the electron the value of charge was equated to faradays laws of electrolysis there should be an section in the electron article on chemistry and if your going to mention obscure virtual electrons why not mention chrystal fields because that is fundamental to chemistry if your going to mention quantum physics why cant you mention quantum chemsitry because i think chemistry is just as important to physics if not more important and i think there should be a section on electrolysis,0 +removal of referenced information please stop if you continue to blank out or delete portions of page content templates or other materials from wikipedia you will be block from editing also should i remove all references that i consider to be nationalist in your style,0 +you have a dramatic way of expressing yourself your specific and narrow point though about blpcrime is flawed,0 +this song was coverd by paul torrence tanner viox the banjo sisters and the super bebop boys featuring al gore,0 +against i am against this proposal because you touch yourself at night,0 +ranganathan and the colon classification spat here s the famed indian librarian i was telling you about s r ranganathan and i just discovered on that page a talk he gave about dewey here s a page about him and i have the prolegomena book which is only held by libraries worldwide more or less it is a truly amazing book on the organization of knowledge for the few who can understand it and thanks for all your help today,0 +rfc earlier it was reported that the name of the rape victim was said to be revealed as jyoti singh pandey but later it was proven untrue can the unproven name be included in the article earlier it was reported the name of the rape victim was revealed on the request of her father but later it was reported that the father never gave permission nor revealed the name should this unproven or false name be included in the article,0 +i am requested an account on the acc account creation interface,0 +utc no she or he is attempting to argue that molly could not distinguish between place and plaice it doesn t seem entirely implausible that joyce is using molly s mistakes to play with language here but i agree of course that the object in question is in fact plaice march,0 +also you were involved in the initial edit war and in your edit summary incorrectly referred to a referenced and notable quote as rmv office gossip,0 +name of possible attack site,0 +for further info ello there the doctor here here s a link concerning the if you hadn t already checked out the tcw talk page it s from a pretty good episode too although the image on the episode article here is from in a mirror darkly that rather bugged me anyways thanks for pointing out a possible inconsistency in the dimensional drift of the article these things always need improving many happy returns,0 +not a problem i would suggest you start by drafting up the article on your computer get some good text some sources and figure out what types of wikilinks you want to include also you will want to mark it with stub if it s short see wp stub for more details on making a good stub alternatively you can create a subpage in your userspace such as c t,0 +are you kidding take your threats and shove em,0 +official christian death this page is constatntly written to with opinions and non factual rubbish which simply need changing and then leaving alone i have now prepared an unbiased wiki article which i wish to place on here knowing full well that minutes later the fools that wish to write things they know little about or have a vested interest in making it appear that facts can be altered to suit their own quest to become cd will desperately alter the content the article needs protecting and only updateable by official christian death facts people that want information about any past members will have to have pages dedicated to them but the article should be adhered to as much as facts allow rd party discussion regarding valor or rozz should be eliminated in favour of the christian death biography message me at myspace com official christian death to have discussion about page article i propose is thus text only i will alter the page to format correctly and alter the main page add feedback to this after my discussion in thread called editing talk christian death comment not inside this christian death biography discography in the beginning god created the heaven and the earth then christian death turned it upside down history officially there have been over musicians involved with the band therefore a historical litany of them all would be impractical formed in los angeles and fronted by year old vocalist lyricist rozz williams the band released the first album only theatre of pain in a dark sinister style of punk rock the album gained local success a year later the band completely broke up singer rozz then joined the band pompeii founded by singer guitarist song writer valor rozz took over vocals leaving valor to focus on guitar before rozz joined pompeii the band had already released their fist album look at yourself to much acclaim which had an apocalyptic theme with a punk rock flavor the pompeii had been planning their first tour when it was proposed by their french record company to merge pompeii into a new version of christian death which after some debate was agreed upon thus began the new christian death and the first pompeii tour became the first christian death tour part way through the tour the band stopped in wales to record songs some of which were originally intended for the next pompeii album the fusion of which led to the unique sound of the classic catastrophe ballet like the first pompeii album catastrophe ballet had an apocalyptic theme however the music morphed into something not quite pompeii and nothing like the first christian death album after the tour the band returned to la to later record the rd christian death album ashes which was a post apocalyptic vision of a cold and bleak future after confirming the nd tour in singer rozz quit the band valor returned to vocals the band embarked on the nd tour in italy the band recorded the mini album the wind kissed pictures a surrealist view of a mystical past almost immediately work began on the th full length album atrocities inspired by the atrocities of world war ii and the connection to future shock waves while continuously touring in the band released the th and now classic album the scriptures the theme of which explored world religion and how the legacy of these beliefs impact our world today brought us the release of sex drugs jesus christ this was turning point for the band the cover depicted an image of jesus shooting up heroin this was a full frontal attack by valor against the church with a scathing heretical mockery of organized christianity the band then found themselves confronted by protesters riots and bomb threats these events and the bands imagery and fashion went on to influence the likes of nine inch nails korn marilyn manson type o negative every goth band on the planet and many others saw the release of the double album epic all the love all the hate interpreting the juxtaposition between life and death day and night man and woman black and white in came the release of insanus ultio proditio misericordiaque with its theme of an ancient dream state late in after being in several other bands and seven years after quitting christian death rozz was persuaded by unscrupulous profiteers to perform at a concert in los angels under the name christian death on the same day christian death was in europe performing in paris france assuming this was a one time effort to earn extra cash as explained to valor,0 +class stub player yes needs infobox yes,0 +where do you see vandal attack accounts,0 +thanks hi i m italian user solotitano thanks for your work about sanmarinese footballers and san marino calcio s players i m a fan of this team your work is great and i hope to use your informations also on it wiki infact i create articles about san marino calcio and sanmarinese sportspeople you can also create a category about san marino calcio s players like it categoria san marino calcio contact me for everything and if i can help you it utente solotitano bye,0 +i wasnt even vandalising how is it vandalising,0 +rr on phantasy star actually i was the one to initiate the discussion and the person with whom i was edit warring with if you notice didn t bother to comment at all his her initial reason for the edit i disputed was invalid as i pointed out so the fault lies not with me but with t c w,0 +also the album has won and been nominated for american music awards soul train music awards and grammy awards among others a sub section should be added the article needs major improvement from its over bloated commercial performance section to its lack of order and neatness as on alicia keys element of freedom and eminems recovery the commercial performance is suppose to list the first few sales weeks then give an up to date amount of how much the album has sold and tell how the album performed and charted in other countries with chart listings and certifications not to mention some sources for the last few sales weeks do not show the cited information and or are poorly sourced,0 +all those articles will soon be merged as well the discussion came about at the project page wp pcp i don t know the exact page but perhaps will know exactly where please don t remove the re direct and re add the previous information that was on the article klichka talk,0 +haymaker you may have to re do the thomas glessner article too they will probably target it next for deletion on w hate ver wikilawyering pretext what i didn t tell beback is that the nifla article used to be the bottom half of the thomas glessner article speak,0 +alyssaa oconnor is reatrded,0 +bhg with respect i think that you as an admin need to avoid making comments like that,0 +here s an example http insidecable blogsome com wolf blitzer shows off cnns emmy award that s the type of link that supports the claim,0 +am i able to get a refund on my donation,0 +so all the sources on here saying that ukip are centre right are wrong then your assumption that ukip are right wing automatically means you are calling me right wing i am not my political spectrum is centralist i do not agree with right wing party ideologies why would i join one you are calling me right wing so you will be waiting a while for your apology when ukip are represented in a true light and not by left leaning sources you will get one next you will be telling me all the ex labour lib dems etc are right wing even reuters call us centre right http blogs reuters com great debate uk ukip replacing the lib dems or taking on the tories or that lord stodart was once labour and former councillors that were formerly labour such as derrick huckfield staffordshire cc ukip are centre right once again i will apologise when you with draw the remark that i am right wing this is asserted by calling my party right wing,0 +revised version is much better thanks jun utc,0 +notability of ambridge country club a tag has been placed on ambridge country club requesting that it be speedily deleted from wikipedia this has been done because the article seems to be about a person group of people band club company or web content but it does not indicate how or why the subject is notable that is why an article about that subject should be included in wikipedia under the criteria for speedy deletion articles that do not assert notability may be deleted at any time please see the guidelines for what is generally accepted as notable and if you can indicate why the subject of this article is notable you may contest the tagging to do this add on the top of the page below the existing db tag and leave a note on the article s talk page explaining your position please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would confirm its subject s notability under the guidelines for guidelines on specific types of articles you may want to check out our criteria for biographies for web sites for bands or for companies feel free to leave a note on my talk page if you have any questions about this,0 +confusing again i added the confusing tag because when i read it a clear set of events was not there,0 +i think it might be best to take the article back to a position where jb was happy to advocate it and then proceed through comment and response at the fa the article will soon be stable again i should think you made some good points and i am sure jb would respond to them too many cooks spoil the broth particularly if they don t agree on the recipe,0 +uranus images i have just been contacted by an editor of the german wikipedia who is trans lating the english uranus article and she would like to know if we would be kind enough to upload our remaining images onto the wikimedia commons problem is i have no idea how to upload an image onto the wikimedia commons so i m not sure what to do could you point me in the right direction thanks podous,0 +the very long discussion over st wp scn project talk page i have read a lot of the wp scn pages and the very few have neutrality tags some have or tags but the majority seem to be npov so why is the project talk page being bloated by a discussion between three scientologists from what i can make out have scanned all three user pages and a lot of comments are unsigned about how the project is biased against elron would the time not be better used by going through the pages and challenging npov possibly by throwing in neutrality tags and pointing out non npov statements on the talk pages of those articles after all xenu is fa status so the npov cannot be too far off as for unsigned the comment you left after my first post was unsigned and there were a couple of more during the discussion,0 +actually yes that s what i m saying the protection should only have a time out function to resolve pending edits on the talk page if the current revision is the cause of the problem you should first revert to a previous one before protecting the page but no more than that that you find this funny indicates that you seriously overestimate the range of sysop responsibilities,0 +slash and backslash are the hands harms and o or o or is the face head or mouth the first means frustration and the hands are on the head hands in the hair while the second o is a smile or contemplation with both hands under its chin if you can try this or google images search lol talk contribs,0 +first off modern computer generated ornate renderings of the paleo hebrew yhuh yhwh and modern hebrew tetragrammaton were added in the article anyway mine were of anthropological resources my friend prof james greenberg university of phoenix anthropologist the w in yhwh was not intended to represent not of the yod as the ancestry but of the ancestry of roman w back to the aramaic u and then the paleo y the trans literation of the en vowel u whether a u vowel or vowel instead of vv or w consonant and the better pronunciation for example ability for pronunciation of the greek letter upsilon changed in sound value from a u vowel to an umlaut or front rounded vowel was relevant to the tetragrammaton as far as the representation by many that there are no vowels in the tetragrammaton and third yahusha as in the same tetragrammaton of yahshua ref strong s concordance sha for deliverer and shua for scream or cry does existed in hebrew so is not completely bogus as a supposed historical divine name anonmoos talk,0 +both farhad s parents are pashtuns not tajiks the majority people in kunduz are either pashtuns or uzbek tajiks are a minority,0 +your ga nomination of venues of the winter youth olympics hello i just wanted to introduce myself and let you know i am glad to be reviewing the article venues of the winter youth olympics you nominated for ga status according to the criteria this process may take up to days feel free to contact me with any questions or comments you might have during this period,0 +microsoft jet what do you think now,0 +stop crossposting robe and wizard hat,0 +nor have i made a legal threat first i am not among those three people who participated in that visit to the blm protest i have never known any of these people i would not be the offended party in any case i ve never even lived in minnesota or been there in over years or so i made an airplane connection through minneapolis in about as i vaguely recall i am not saying there will be any sort of legal proceeding i am merely saying that to cite this claim heard the n word risks running afoul of being libel i think wp rules allow us to express concern that the cite of a vague assertion that somebody heard the n word is problematic from a wp blp standpoint if multiple blm protestors claim that they heard one of the white visitors say the n word and it was cited from some reliable source that would probably change my opinion can you see why this would be a different situation,0 +this article was nominated for deletion on december the result of the discussion was redirect to beauxbatons an archived record of this discussion can be found here,0 +well we all know where you motives lie now thank you for confirming,0 +question hello latics i noticed that you revert vandalism occasionally would you like me to grant your account rollback rights to make vandal fighting easier for you just remember that rollback like twinkle should only be used to revert vandalism and that misuse of the tool can lead to its removal tell me what you think thanks,0 +i m in twothree minds over this proposal as regards redlinks on the one hand over the last two years of monitoring the topic i ve seen it used as a catalyst and incubator for new articles on the other hand it is arguable that a death reported in a wp rs is of a person of some note if not necessarily within our standards on the third hand we do get some no hopers on the face of it which is why we tend to allow a month for an interested editor to create an article and then delete undeveloped entries as non notable in the second case we perhaps should not interpret lack of interest as lack of notability because it may be that interested editors are lacking that s why the month moratorium seems to exist as far as i can tell andemu,0 +another thank you sir i justed wanted to express my appreciation for your willingness to hear me out in addressing the issues raised against me i also am thankful for the thoughtful consideration of fellow admins and thanks,0 +nuremberg laws hi i noticed that you added a historical journal article as a source i was wondering where you found that article if you don t mind me asking i would like to read it if i could thanks,0 +what was classed as a severe adverse reaction just status epilepticus and psychosis is,0 +morris engages in five types of distortion he misrepresents documents resorts to partial quotes withholds evidence makes false assertions and rewrites original documents,0 +colombo royal college has made and wikipedia administrators a bunch of puppets with crappy rules and they all are dancing to the decent tune and tactics of this cunnig fox s vision is to have only one royal for sri lanka as long as wikipedia is alive it will not be a reality will sing posts to his own tune to eleminate and crush other legal schools in sri lanka with name royal s record is very clear and we are alive more royal on the way administrators enjoy the smell of royal fart by and dance to the tune of from colombo royal college royal dust bin is smelly more to come keep farting wide royal jackal cossde in royal way smell is so pres tig iously owesome you have harassed all sri lankan royalists reid avenue turned into battlefield royal principal summons parents meeting no classes for upper school students at royal and thurstan royal thurstan students clash policeman injured royal college panadura battle of the greens royal college wayamba kurunegala battle of wayamba royal college monaragala royal college nagoda royal college horana royal college polonnaruwa royal college telijjawila,0 +june utc travis accepted long ago being a diaper fetishizing queer that censorship is ok to avoid embarassment he s really quite the anachronism a goose stepping homo sex,0 +favorite cookie also having a little trouble to get vandal proof to work i clciked login then it won t do anything any siy suggestions favorite cookie,0 +listed as the manager of spar s grapple fixture program,0 +dear azure citizen i wrote a talk comment about a pernicious phenomenon which has infected wikipedia in general and this article in particular i didn t name anyone in particular but a group that s not a personal attack it s an attack on an organized effort to include propaganda in wikiepedia you censored me which makes you part of the problem not part of the solution the solution being ultimately to end anonymity on wikipedia the pr industry has inflitrated under cover of anonymity strip away anonymity and they will run for cover,0 +parts of my own talk page deleted by editors who think they know better dear impartial but not disinteresed reader coren and i have been having an entertaining and enjoyable discussion on the finer points of soapboxing she is of the firm resolute belief that this version of my own talk page amounts to soapboxing and has deleted it i recognize that there may be elements of soapboxing in the investment predictions for section at the bottom of the page but have given her the opportunity to amend rather than delete the whole section she has declined the opportunity to amend leaving me in the difficult position of having to type this with a knife pressed ever so gently against my back with coren carefully looking over my shoulder at the screen to check whether anything is in her god like view soap like not the most pleasant position to be in i can assure you to use another example picked completely at random let s say there s been a nasty and vicious and ugly and persistent edit war over say fractional reserve banking and a number of editors want a messy but more informative version like this one kept in then let s say i post this earlier version on my talk page for readers to compare with the now in my humble view slaughtered version is that soapboxing to use another example closer to home let s say a guy like zenwhat says to his co conspirators what can we do to have our version of debt based monetary system fractional reserve banking prevail like he clearly said here under the desperate heading help and then he also bizarrely asks gregalton help him delete references to mises org like he did here saying to gregalton also in case you re interested one of the easiest ways to find economics articles that have been vandalized is to do a search for links to mises org as if a reference to the great ludwig von mises amounted to vandalism can you believe it i have to hold a pencil between my teeth just to keep control of myself and keep typing this the guy is clearly a vicious tiny weeny little troll he also says to his co conspirator the following on the same page i looked at the fractional reserve banking article recently and saw how it was so horribly vandalized it made me realize that we re going around in circles we improve the articles to the point that they look great then they get screwed up again so i had an idea would you be interested in helping me write an essay on monetary crankery it could help people who aren t educated the idea is for it to be straightforward with references but polemic and satirical of monetary crankery clearly this guy is obsessed with deleting or satirizing any positions on monetary theory that don t agree with his the guy is mad if the guy had napalm or nukes he d use them without hesitation then for good measure he goes back to debt based monetary system to do more editing zenwhat is clearly a piece of work check out the dude s talk page in addition to his obsessive interest in deleting anything associated with mises org his main interests appear to be something called cannabis culture and the buddhist connection with marijuana so i gather from this that his main interests are monetary theory and dope smoking what a combo seeing this i ponder my options i decide to post a note here on my own talk page asking readers to compare older better versions of some important articles on monetary theory with the current versions for good measure i offer my predictions on the financial markets for as a gift to the eight people persistent enough to read my humble little talk page it immediately gets deleted by all seeing all knowing coren as soapboxing is this strict compliance with wp guidelines or a wp style fascist dictatorship where people like coren delete at will but don t bother to make constructive suggestions as to how what i have written can come within the guidelines this is like watching evolution in reverse i carefully construct a page with the help of others it gets vandalized by those with a clear and obvious objective to delete or satirize all references to ludwig von mises or the austrian school who knows what motivates these sickos instead of engaging in pointless edit wars with idiot s i ask t,0 +buying a lotto ticket doesn t count either or does it i ve presented a logical argument with a full half of the glyphs uncontested perhaps this counts for something,0 +i m sorry but there simply is no credibility to any of these allegations the polish workers party received only of the seats which was below what the the communists of france received in the results of the elections i posted exclusively contain those elections which were free and fair,0 +below is the zafarnamah a religious letter of victory by guru gobind singh ji out of verses verses are in the praise of akal purakh waheguru verses deals with aurangzeb s invitation for the guru to meet him and the guru s refusal to meet aurangzeb instead the guru asks him aurangzeb to visit him verses deals with the detail events that took place during the battle of chamkaur december verses reprove aurangzeb for breaking promises given by him and his agents nawab wazir khan raja ajmer chand and other hilly rajas verses deals with the praise of aurangzeb in the verse and guru gobind singh also had warned aurangzeb that khalsa will not rest until the evil empire is destroyed zafarnamah a religious letter of victory written by guru gobind singh to mughal emperor aurangzeb the lord is perfection personified he is eternal and manifests himself through his miracles he is generous in granting his bounties he is merciful and delivers us from the world he grants peace and security and is always merciful in forgiving us for our sins he holds our hand and guides us he is provider of our sustenance and charms everyone lord is the king of kings who is guiding us all the time he showers his benevolence on all he is without colour incomparable and formless he possesses no material things nor has he an army he is merciful and grants all the pleasures of the heavens the pure one is above everything in this universe his glory is all pervasive he bestows us with gifts he is present everywhere the merciful lord grants us all the gifts and meets the needs of everyone throughout the world he is lord of the universe he is merciful and provides sustenance to all his charm andd grandeur cannot be matched by anyone the lord is intelligence personified he protects the poor and the helpless and destroys the wicked the virtuous one gives justice to all nothing is hidden from him he is the inspiration of quran the all knowing lord seeks the learned he is aware of all happenings he is present everywhere he has the knowledge of everything in this universe all cosmos is moving as per his command the great lord is regulating everything in the world about which he has complete knowledge aurangzeb i have no trust in your oaths anymore you have written that god is one and that he is witness between us i don t have trust even equivalent to a drop of water in your generals wazir khan nawab of sirhind punjab raja ajmer chand rajput hilly king and other hilly kings who came to me with oaths of quran and cow that i will be given safe passage out of anandgarh fort but they all were telling lies if anyone trusts you on your oaths of quran that person is bound to be doomed in the end if anyone comes under the shadow of huma bird no one can lay its hands on it not even a brave cow if a man sits behind the back of a lion neither anyone can catch him nor a goat or a sheep or a deer can even pass nearby aurangzeb i stand in shadow of the almighty and your men who are like goats sheep and deer could not harm me inspite of your deceptions if i had deceived by taking oath on holy quran like the way you have done i would not have bought my dear fighters to this position of disadvantage by bringing them out of anandgarh fort in verses from to below guru sahib gave an account of the battle of chamkaur fought on nd december and the reasons that forced him to take up the sword against the mughals and hilly rajput kings what can hungry men do when suddenly lakh one million strong army pounces upon them that the promise breakers launched a surprise attack with their swords arrows and guns it was out of sheer helplessness that i came in the battle field having thus decided i came with all the battle plans and munitions when all stratagem employed for solving a problem are exhausted only then taking your hand to the sword is legitimate this is the most quoted of zafarnamah years ago guru gobind singh ji had laid down the circumstances when a person or a nation can pick up the sword against the other what trust can i have on your oath on quran otherwise you tell why should i have taken path of taking up the sword i do not know that this person aurangzeb is cunning like a fox otherwise i would never have come to this place that is chamkaur by vacating anandgarh on the false oaths of aurangzeb and his men if any person believes an oath on quran he should neither be tied arrested nor killed,0 +it is important as it was by the means of this contest that colombian artists like fernando botero were able to travel outside colombia and florish as well as to gain name recgnition in colombia,0 +lots of places have different dates perhaps hollywood video is just going on rumors that coment towards the ip editor wasn t needed from what i see that editor hasn t edited for a bit so there was no reason to drag that into this discussion,0 +as someone else who works in this building i m now annoyed that i can t edit wikipedia,0 +or any backbone to the administrators you all will toss out gryffindor s farcical behavior you would think these german speakers could be fair could live with compromise then you see people saying that the current name was all a conspiracy yes of course utterly pathetic,0 +language s please do not contribute text in slovenian to english wikipedia your contributions are more than welcome at the slovenian wikipedia,0 +a please improve typhoon mekkhala s page because i m created the page for shortly knownly as mekkhala january,0 +york minster stained glass hi keilana what a coincidence i obviously know you from around wp an wp ani i have been planning this article for a little while but got bogged down in an rfa i have a location plan you can see top row right hand and intend to write generally about the main windows since they are well documented i have my own photos but if yours are already on commons it would make sense to re use those maybe i ll make a start this coming week regards talk,0 +g day fayssal hope you re good i must also take this opportunity to let you know that almost every time i see your username around the place i get that catchy s electro tune in my head your very own soundtrack what brought me here really though was your comment in the arbitration amendment thing that someone filed about my case it s all kind of a long time ago now of course but i did and do find the irony of having run as a long term sock rather delicious the fact that guy ran these two accounts all came out ages ago too if you re a curious wiki historian or have present concerns i guess then let me know if diff s would be handy otherwise i just felt it was worth clarifying what i was on about cheers,0 +the truth of the matter is you have failed to provide evidence there is no chang at the genome project again refer to the sources i ve already referenced that attempt to validate chang s existence but cannotbut that also don t say it s possible he does exist in other parts of the project research it deeper don t just dismiss something at quick glance or limited researchresearch it until you can t go any furtherand then research why it may lead you to even deeper areas than you first saw,0 +except like esoglou s already explained this article isn t about the english word lfdder,0 +it s all of to us please read me,0 +yeah i don t have a reference for it i was just trying to retain the original content but in a more understandable form i ll put the rewrite in for now add a to it and if nobody adduces a reference for it in the next couple of days we can take it out,0 +there is no page hierarchy and avatar hinduism is not a sub page of avatar the disambiguation page is a navigational aid and page views of many entries on the disambiguation page showed good reason to put the disambiguation page at avatar now who is fixing the incoming links i see oldag is fixing them i am fixing them what about you,0 +i haven t tried mp yet will do after completion of the main story did any of you to see the the way joker assaulted roman i almost closed my eyes at the brutality of it and was absolutely shocked at what joker did to buchinsky just amazed at how badass that was the circus mill is something that i m not really a fan of a great chunk of the copperhead boss fight was incorporated from the ra s al gh l boss fight almost died too but held on to two bars of health i have to say that i m quite anxious to see how things will play out from here on i ll get to play in a couple hours can t now because i have a swimming class nevertheless i m going to try blackgate after origins as my brother pre ordered for ds i ll try to find a strong page of reviews for blackgate as well haven t really seen any good reviews for blackgate but my brother says that it s worth it so we ll look at that i ve also been seeing a lot of unsourced or poorly written content being added to origins page can t complain too much as i did anticipate it i ll be getting back to gaming soon,0 +well actually i m more into statue and mannequin fetishism agalmatophilia but it s all just three sides of the same coin really how do i know so much about it i ve always been into statues and immobility and when i first got connected to the internet i was delighted to learn that there was a whole online community who shared my interest if you care to research the subject further here s a page linking to lots of related sites http w p synd com plinks htm nov utc,0 +scott s boss whom he almost killed was called snow i believe but there does not seem to be a page on him yet perhaps you can expand on this if you have the sources if not i shall return at a later date,0 +again this replaceability argument simply does not work we are not looking for another image of the flag being placed on the roof we are looking for another free image of the battle the argument about a panoramic view is potentially a better argument however why a panoramic view is required is not as clear we have plenty of images of destruction do we really need to go the extent of using a non free image to show a panorama of course not the destruction could easily be shown in other ways we do not use a non free image because it is better than other available images we use a non free image because it shows something that could not be shown in any other way that urgently needs to be shown,0 +on the th a local insurgent called hassan bosayna said that pro gaddafi fighters and rebels were on the th one of the deceased rebels shot by a sniper a government scout had gone up a telephone mast and was peering towards the rebel held town through binoculars and guiding the ground forces toward the targets he was spying on another local rebel called muftah said about thee previous days battle there are gaddafi forces inside ajdabiyah in sand coloured land cruisers and we know there are gaddafi snipers in civilian clothing in the city as well the rebels had been firing rockets from converted pick up trucks technicals into the peace of desert that form on the outskirts of the town in a possible attempt to prevent any attempts at aflanking manoeuvre by government forces,0 +youtube links are not considered reliable sources on wikipedia any information cited to them will be taken out of the article on wp rs grounds additionally recreation of deleted material is usually considered grounds for speedy deletion so if you want to move forward it may be best to start rebuilding the article in your user space then filing an wp rfc for the article talk,0 +subst nn warn al berkowitz talk edits,0 +i also did a bit of work on putting the references in the somewhat odd format that wikipedia uses one good rule to use is to include all the information you can title date author so that another editor can verify the information in the source the article caught my eye because we once lived nearby the description paragraph still seems like almost verbatim from the form and we are supposed to paraphrase into these articles i am running out of time this afternoon but it should give you an idea if you havetime to work on it some more the paul shoup article itself needs similar work thanks,0 +verbal your pov is showing i didn t choose the closing admin there was a neutral notice at wp an and jzg while he made a comment in the discussion wasn t involved any longer it was not his action being reversed effectively but s and he had already recused himself so let s find out what the actual consensus is if someone else doesn t beat me to it instead of blabbering more i ll be adding an external link and we ll see what happens note that we already have an external link to lenr canr org in martin fleischmann and that was heavily reviewed we should have many more here as convenience links if nothing else same wiht net,0 +just tell me whether any of these statements independantly are pov article of the u n charter as interpreted by the international community states that a war by a member of the u n not authorized by the u n is legal if and only if there is imminent threat the u n charter was entered into under the authority of the united states the u s war against iraq was not authorized by the u n iraq did not pose an imminent threat to the u s talk sep utc,0 +sure goodnight,0 +message thai hooker love ya long time,0 +i have read milton s book and he mentions the work of hoyle sheldrake reich etc,0 +you know for human excrement you re pretty fast to find vandalism good job you have a purpose in life,0 +i appreciate the sentiment it s nice to know that others are willing to empathize but let it just play out naturally there are sides to every story and not everyone is going to agree with the side i have taken in the interim i put my complete faith in the system and if they deem that i have fought the wrong fight then i lose it s simply a gamble and again your words are greatly appreciated talk,0 +to tha undertaker if you want to promote yourself get a space on myspace com you stand a better chance at getting a record deal that way no one in the music business is going to see this seriously you re wasting your time on wikipedia yeah and good luck with your career stay out of trouble tha undertaker tha undertaker born jeremiah jahi james jones on december in detroit michigan is an american rapper he s currently signed to k i g records an independent detroit based label out of detroit contents hide biography disputes mixtapes external links biography jones was raised on detroit s westside is the second youngest of children which he stayed with his mother bridget scott and her children older sister marquetta and younger brother joshua at age of jones became affiliated with the pierson block bloods on detroit s westside a few months later he and family moved to detroit s eastside where he still currently resides he brung his street mentality with him which had lead to trouble down the line in june he was stabbed twice and cut several times after being involved in a fight earlier that year with former detroit giants teammates at a skating party at skating land visible marks include scar under left eye and on left hand jones was then arrested in june of for an attempted robbery at eastland mall arrested in january of for a physical altercation at a party after a drug deal that went wrong in which jones thought he was short on money he had received in the deal after his arrest in eastland he began to rap and in late january of gave in march of he signed an independent deal with k i g records and will release the mixtape detroit s most wanted vol on may disputes underataker has publicly stated that he does not like and is currently beefing with fellow rappers bow wow fat joe lil flip ja rule and unsigned rapper maine da young wonder because of public response made by those rapper in which angered jones he has been on recored as calling them pop stars and will address the situation on a track off of the mixtape detroit s most wanted entitled shots and runnin a minuted diss track aimed at those rappers and rumored more artists mixtapes detroit s most wanted vol external links w kigrecords zoomshare com who is this person is he worthy of a wikipedian article probably not but he s flying under the radar and the powers that be haven t noticed yet,0 +so you speak for the people of ireland don t make me laugh if it wasn t for great britain and its influence the people of ireland would still be running around like ancient celts ireland has much to thank great britain for and especially for the english language which you yourself are expert at and is the mother tongue of ireland now too,0 +gwen the lead says he was dead by the th no one is disputing that who said he was alive after the late afternoon of the th i recommend a good brunello i m having one too set this aside and lets move to a thorough copy edit of the first section,0 +glad to hear it mostly it s been little stuff you were running the citation bot not reflinks they do different things there are bot prep tricks that work for each for example using the best cite template change cit web to cite journal and the bot might add volume and issue numbers issns and such too cheers,0 +wow ok i was ment to look at it today but ive been sorting out loads of wikidrama so havent had time not to worry it will be at least two weeks until our review comes around plenty of time to go over any sharp edges who s bad,0 +frankly this is a waste of everybody s time it serves no purpose to repeat the arguments against inclusion over again full in the knowledge that you will not accept them your spiels of wikilawyering have demonstrated very little on the whole you have consistently failed to assume good faith and you have not convinced anyone that your biased original research belongs in the article you claimed that four days ago you did not know what a talk page was yet you are now lecturing users who are far more experienced than you in these matters on your beliefs on wiki policy we haven t moved on significantly if you cannot accept that on controversial articles the standard of challenged or likely to be challenged is higher than elsewhere then you are in no position be lecturing policy to us wp ucs is a guide an essay not policy in any case common sense dictates that on controversial articles material is more likely to be challenged than on non controversial ones this is challenged material and you require a better cite than the ones you gave us the material has implications for npov these are the facts that are relevant here a long circular argument on talk helps no one talk,0 +that little x works inconsistently for me as well on ie though it doesn t really bother me i done wrong let me know,0 +july utc,0 +the first thing i noticed was a random edit from an anon ip requesting help no idea what that was about then i noticed it had been checked by someone and then someone else had placed the whois template which advertised my internet details and prompted a whois search on me advising that any vandalism from here should be reported i thought this was inappropriate and not needed because i am an established and respectable user,0 +re project dynamic hi existence does not equate justification for the article to exist what wikipedia is looking out for is notability through verifiability through reliable secondary third party sources in other words your product will need to be well covered by the media e g pc world the new york times or some respectable publication to be able to meet standards for inclusion on wikipedia if you do have that please feel free to re create the article including such sources hope that answer your queries best regards,0 +done message me,0 +yea i was sort of the local shit disturber in my young adult life my family s from there i went to pss many years ago,0 +what is this supposed to prove at most all this experiment proves is that abortion is wrong for this to prove that abortion isn t wrong it would have to be justifiable to unplug the violinist it isn t no matter how evil they try to portray the soml as being the violinist has done nothing your right to control your body give consent w hate ver does not outweigh the right to live,0 +please do not carry on conversations with other users on my talk page that is why you all have talk pages thanks,0 +the cityrail station alt template is fine as it is it doesn t need more changing we ve already had endless debate which resulted in the template that we have now and i m not interested in any more i d prefer you go and fix something that needs work on it not something that doesn t,0 +touch my wife will not work thru webcam,0 +chinese budget i ve updated the budget to state it is estimated to be billion with the following references this is the cia estimate link,0 +fiction alexandre dumas has a magnificent and immensly readable group of fiction surrounding the kingship of henry of navarrave we are given to a world of religious strife bigotry plotting and assasination attempts at the highest level the villian of the entire piece is catherine de medici,0 +i love to talk to people and they like to talk to me i love to skateboard and i do not have a myspace this is the only thing i got,0 +lol becuase you are god of wiki,0 +motion of clarification in the tobias conradi case just thought i would point out that this motion was proposed by charles matthews not agk as your comment suggests you believe i accept that this isn t very clear from the way that section is laid out talk,0 +btw but the colibri is annoying dorftrottel,0 +beethoven s th is the piece of music which is dominant in the film the clockwork orange although he is a fan of beethoven full stop this is the piece which appears in the film,0 +as was i and i don t appreciate the implication that i have no courage because i was out with friends i ll be busy for the rest of today but let me know what you would like done i can t really block the user since he hasn t done anything new since his old block and a warning seems out of place since he s already been block try mediation or an rfc i know you don t like dispute resolution and i understand it hasn t really functioned well for you in the past but perhaps that s something to look into at this point besides looking at the article s talk page and his recent contribs in case something got moved he really doesn t seem to be being that dickish imo he s just trying to balance the article which is an acceptable goal much as homeopathy and pseudoscience are bull shit wp needs to mention that they exist providing there are sources mc,0 +please stop whats the point man t c,0 +great work still not dyk ready oh well but a great article none the less talk,0 +okay king of the wikipedia nazi s,0 +ask chris hypocrite org how it happened he answer to my e mail to unblock en l lists wikimedia org the time differences are because local timing on wednesday march andrew serafin wrote in my first note i forgot to mention my ip address thank you this address has now been block for your violation of the block placed on serafin and the block on the serafin account has been extended so richard it is wasting of you time and mine those who like revenges sense of power in fact only the surrogate of power or have similar sickness will in present system parasite on good will and effort of others wikipedia need work and redactors not the cranky sheriffs self qualified teutonic knight etc i am not against free editions different point of views but i am against exchange blows the present complicated snake pit must be burn up andrew,0 +acceptibility tab as bluetooth and cell broadcast recieving capibilities can be turned off on users devices it can be argued that if users have these systems on they are requesting localised information including proximity marketing tab tab some go further claiming that there is triple opt in with bluetooth systems tab firstly the consumer must stand in an appriopriate zone tab secondly they must make their bluetooth handset visible to other devices tab thirdly they must accept the trans mission tab in the event a consumer accidentally opts in they simply click no to deny the trans mission and those sending the messages opts them out of the campaign removed from the article as npov could go back in if it was rephrased to be balanced with any evidence that people find it spammy if there s proof people don t find it spammy we d need to link to some original research i suppose,0 +thanks a lot mate nope really no point in a wp footy discussion as of the users being native english speakers and this being en wiki and all will say they write loss i just wanted to know i was not being a grammar serial killer or similar cheers back,0 +style font size smaller class autosigned preceding unsigned comment added by,0 +you are being evasive and non collegial i asked you a direct relevant question you alluded to wp el but it does not seem to apply if you believe it applies please quote the part that is most appropriate quotes or it didn t happen,0 +nes million the nes in north america did not sell million by sources include na shipments of the snes being million in and already in the the article of this topic seven million were sold by sources http news google com newspapers nid dat id klpwaibaj sjid mu daibaj pg http news google com newspapers nid dat id thehaibaj sjid togfaibaj pg http news google com newspapers nid dat id jeyaibaj sjid rxqeaibaj pg,0 +this all sounds good although i d be happier if the indo european stuff stuck around as a section most of the readers of en wikipedia do in fact speak one or more indo european languages and many of them are young people on school assignment who may want some concrete examples of course making the article a more complete survey of tense in general in all known languages is a big yes and if the english has no future people will kindly settle down and argue in the english grammar pages i won t object to removing the crap i added for them let s not throw out the baby with the bathwater is all dec utc,0 +well is seems the proposal isn t attracting any objections so i m doing it now,0 +you mean this edit to rudolph which i reverted i presume not being aquainted with the history of the medieval monk in question it looked like a typical ip vandal post when i encountered it please accept my apology thankfully wp seems to be self correcting in this case and all is now well cheers mate who me,0 +first of all you re engaging in a moot exercise since that photo was picture of the day on august secondly the potd blurb only serves as a lead in to the main article itself and therefore not every facet can be included for space reasons lastly the blurb is only discussing international reaction to the gaza war the reasoning behind israel s attacks are out of scope chat,0 +ok it looks like slp has made some further comments at the article for us to work on so a week or so would be fine sorry to look like i m haranguing digame,0 +category criminal law hi you forgot to add a talk message on category criminal law explaining why you added cleancat if i don t hear back from you in hours i ll remove the tag,0 +your edit to george w bush please do not add nonsense to wikipedia it is considered vandalism if you would like to experiment use the sandbox thank you,0 +just to make the point that i m not making this problem up here s the abstract of http findarticles com p articles mi hb is ai n who are the canadians changing census responses canadian ethnic studies journal spring by monica boyd doug norris at the close of the twentieth century canadian has become the fastest growing ethnic origin group up from percent in to nearly percent in and to percent in the census of canada from what groups did this indigenous label draw in the five years between the and the censuses using unpublished tabulations from the and canadian censuses this paper traces temporal shifts for a cohort of the canadian born age in and age by we find that most of the increases between and in canadian ethnic origin responses are accompanied by intercensal losses in british origin responses between and increasing canadian responses went hand in hand with dramatic losses in both the british and french ethnic origin counts in some provinces notably the prairie provinces of alberta manitoba and saskatchewan shifts also occurred out of other ethnic groups,0 +i have been looking and discussed it with my colleagues but we can t find any reliable source for this statement,0 +my addition to talk page is not a personal attack if it was he would certainly know of the attack i simply placed a request for discussion as to why continually harasses and defames other wikipedia users,0 +please please check your mail,0 +imo in the x factor article but not here,0 +i haven t broken any laws or said anything wrong why was i block is there any justifiation for this block at all just a rogue admin,0 +editing deleting hi im user cj b i dont go round trying to make enemys with anyone all i asked is that you and other wikipedia users be fair so far you have not been all i ask is that be fair when editing deleting my post thanks you,0 +jab we met while visiting the jab we met article i was very much impressed at your good work however i ve one small grudge that i raised on the article s talk page as well this refers to the excessive number of non free fair use images in the article as per the non free guidelines the usage of excessive images is to be reduced and to be limited as much as possible most of these images carry shahid and kareena s images and hence images is far too high i was hoping to discuss this with you before removing them from the article page also i hope that you don t mind me doing quick checks for mos consistency and additional info,0 +the violence in a film is not judged on its realism or whether other movies are worse you can t just invent criteria to fit making a movie non violent,0 +jonathan mangum i know jonathan mangum a wiki user is a sockpuppet of gsnguy,0 +st anger why did you put blatant vandalism under what i put all i said was the genre of the album was nu metal and it was thats not metallica thats a cheap sell out record that sounds like korn,0 +i ve changed the heading along the lines you suggested to criticisms of michael dorris which i hope tackles the question you raised feel free to alter it further of course,0 +talk ramon berenguer i count of barcelona talk ramon berenguer i count of barcelona might interest you peter i of aragon what is your rationale for preferring the late portrait of peter over a contemporary coin your edits are predominantly changes to lead images yet you almost never leave an edit summary explaining them you also reverted my change without even knowing what contemporary means or whether a certain image was contemporary with the subject or not the reasons to prefer the coin are it is a contemporary artefact giving information about peter s reign w a caption and about how he was seen by his subjects in his lifetime the coin does not mislead readers about the times of peter i as the portrait might the silver coin on a white background is more striking than the somewhat garish portrait in low resolution jpg format it is far more likely that the limited detail of the coin is accurate clean shaven and long haired than the greater detail of the imaginary portrait the later portrait is one of a series of nearly indistinguishable royal portraits from two centuries later it gives us no information about peter or his reign its sole purpose was decorative what makes the coin an image of peter is that that is when it was struck and what for but what makes the later portrait an image of peter is that somebody labelled it that way they could just as easily have labelled an image of any other aragonese king in your last edit summary you ask if i have to choose between two unreal representations i prefer the portrait but nobody is asking you to choose or what you prefer srnec the problem is that we have different criteria you think the images should provide information about the lives of the persons and be of the age in which these people lived i think the only thing to do is to give a visual representation of the person the article is to the information i think that a portrait even if wasn t painted during the live of the person is most valid that a little image carved in a coin the two representations have the same chance of not being accurate but at least one illustrates better than the other if not exist any portrait of this person then i accept a coin s image or a poor drawing but the present picture accomplish the role and i think that it must be more time i already argued why the coin is a better illustration and you ve just asserted the contrary do you have an argument why are your criteria better than mine really when i rebutted all your arguments in your talk page i stated my reasons but i do not want another long discussion with you i offer consensus would you take a picture of the first part of the thirteenth century both of those are improvements over the th century image but not over the coin at least one other editor agrees with me sorry i m not agree with your second comment but i hope we have made a step in the right direction this discussion is already too long both images are the best ones that meet your rigid standard of closeness to the character s life either both seem right imposing your personal preference is not how it occurs on wikipedia i noticed in the message above that this is not the first time that you try to impose pictures on articles regardless of what others think you are not allowed to impose your will both pedro i of brazil and pedro ii of brazil are featured articles they were reviewed by several editors stop with your edit warring lecen is aware of the three revert rule are you you ve reverted four times on both pedro i and pedro ii in the last hours you should undo your last revert and seek dispute resolution such as discussion on the talk page or a request for comment,0 +i m still amazed how well this article turned out i made it late last night in order to get the text off the current events page and basically did as much as i could before i fell asleep i wake up and it s a fully written article thanks for helping out everyone,0 +marcusbritish notices of blocks by arb com are supposed to be there a sock of the user keeps removing it also did you see that ips edit summaries here,0 +regarding az helping ahmed ressam get to canada my reading of his csr trans cript is exactly the opposite he asked ahmed ressam if he could get him five stolen canadian passports because he was tired of being a stateless person in pakistan regarding whether az ran the khaldan camp didn t he testify that he hadn t paid a visit to khaldan for years i thought his testimony confirmed that he was part of the camp s management team but if the camp had been a college i think his role s would be closest to that of the college registrar and placement officer a registrar confirms that applicants grades are in order and officially informs them that they have been admitted az ran houses where he formed an assessment as to whether applicants were good candidates for training and once they finished their training he helped those who wanted to go fight in chechnya or israel to slip into those conflict zones he had helped grads slip into bosnia during the civil war there i think it would have been more accurate to say ibn al shaykh al libi ran the camp his location was a secret for four years he was found in a libyan prinson in april by human rights workers who conducted an initial interview with him and a few weeks later the libyans reported he committed suicide i really think it would serve public safety if we had heard his version his pre torture versions of what the camp did,0 +as i suspected complete nonsense your statement is so silly that i can t begin to tell you how wrong it is you said you there presume that your not yet filed arbcom case has been decided i assure you that this was not the case i would consider that to be a stupid assumption i am not a stupid person i would therefore ask that you assume good faith on my part and withdraw everything on this page based on your mind reading trick you quote out of context and misrepresent when you describe part of my questioning as the lack the intellectual ability comment by the perverted interpretation of standards you are trying to apply to me your accusation of me not treating others as human beings is a personal attack if it wasn t so silly i would spend time thinking more on it which may lead to concluding that it is a straight up personal attack here s a few points for you to think on wp civil wp agf wp npa are all policies written in mind for the writing of encyclopaedic articles then let s consider the arbcom an article what then is this articles content hmm let s see the arbcom is an article so what is the arbcom made of why members so that means the content of the committee is it s members so an election is a decision on the content of this article so members are editors so content is editors so in order to write this article we must discuss the content we must discuss the editor who is to become part of the content you don t like that wp civil wp agf wp npa are all policies written in mind for the writing of encyclopaedic articles but arbcom is not an article it is an election to decide which persons are to be members of that important committee we must discuss the editors who are to become members of the committee we cannot question articles about their content nor can we ask the content questions but we can ask the proposed contents of the arbcom questions is a certain level of intellectual ability pertinent to arbcom membership if you do not think so how many of the present arbcom do you consider stupid would a low intellect on arbcom help or hinder if there is evidence a diff of intellectual failings does the candidate realise this failing can he explain it as something other than an intellectual failing the questions were politely put they were challenging and they were meant to be and anyone in the community which includes me has the right to ask candidates challenging questions on their past performance there was no name calling all questions were relevant to a quality of the candidate pertinent to his ability to perform on arbcom they were not deferential which may be the actual cause of the consternation you and others displayed your threats of blocks i regard as an attempt to bully do not try to bully me finally i would contrast the participation of admin s in this ani with the marshalling of forces which you participated in and then came here,0 +what do you consider primary sources in this context she notes the obvious homoerotic passages in rydberg s poetry and fiction which are primary sources for literary criticism the details of rydberg s sex ly troubled childhood and his uneasy relationship with women were presumably taken from his standard biographical sources i have no idea what sources svanberg and stolpe used i can t ask them again no other scholar has questioned the accuracy of their conclusions which seems to me to be the definition of a scholarly consensus,0 +peanut butter cookie time,0 +cair i noticed your comment on another user s talk page who in turn spoke to me please do not encourage pov driven participation and do not make unfounded allegations of pov bias please take note of wp agf wp npov and wp rs information in an article which can potentially be called slander if unfounded needs to be supported with highly credible sources too much of the information you ve re added are unsourced others are supported by sources that don t speak to the content you re adding do not use content from sources and then draw your own interpretations of what they mean also bear in mind that sources that come from editorials or opinion pieces need to be represented in the article as opinions not relayed as fact this is particularly the case when the source has a clearly partisan allegience,0 +then that is fine with me,0 +no jp is not a good source and i will remove it pending a better source my issue is jp has an agenda i came across them when checking the edit which one editor put in but they seemed very keen on jp when one editor used it to say muslims were a tiny tiny percentage i never knew jp up until then see the edit history for this edit now here is what i do know go and look at all the notable seer start with ndour what is his religion muslim what i am realizing is most serer are muslim people synergistic is not unique to africa it is in every corner of the planet where islam and christianity live so islam accommodates this all the key historian on islam say this especially david robinson and others vodon per kwami is a good example even in the caribbean google jesus in the morning vodon in the evening these people are classified as christian i do not think we will get exact stats but should not go with the pov that most serer practices their religion which is a myth note any strange ip edits can be investigated,0 +thanks i am not entirely familiar with the first austrian republic awards system but given the common cross was a service award for a month s service in the freikorps and as it was awarded to just about everyone who served i don t think it should be included the special cross though is notable given only or so were supposedly issued so i will add it i propose adding the exact date of the award of the verleihung der ehrenb rgerschaft into the text where the award is already mentioned i understand the medal of merit in gold was a lower award but am unsure how common or notable it might be i am not a fan of including every medal awarded to military people as i know some are incredibly common and not notable have you any source that tells us where it might have been in the awards hierarchy regards send over,0 +response to your email dear mr lawrence or mr ramirez or whoever you may be thank you for your email but i prefer to keep wikipedia business on wikipedia not in private communication so i will respond here your email to me requesting your ip address be un block failed to instill any trust you claim to be one person lawrence yet you send me email from an address that clearly belongs to another ramirez are all accounts at your organization as compromised as your wikipedia account has been you state it is not possible for me to set up another account on another ip address because this is my ip address no it is not your ip address it belongs to your organization and your organization has lost the trust of the wikipedia community with its history of promotional edits and multiple people accessing the same account therefore not just this account but your organization at least one particular ip address is block you were instructed above to refer to wp compromised for information on how to proceed please do so if you wish to create a new account you can do so from home or from any number of internet access locations coffee shops or what not available in your area if you do so you should clearly disclose your conflict of interest and prior accounts you have used on your user page sorry but i will not unblock this account or this ip address if you wish to contest this block you are welcome to post another unblock request with your new rationale on here on this talk page,0 +the problem was duplication and i tried just now to clean that up i made no substantive changes just rearranged the text,0 +this is my original account that dates back to but i have used a few other accounts before due to either forgetting passwords forgetting that this one even existed etc i m generally pretty civil but genuine frustration due to other users being hostile in an issue i care about caused me to snap in a moment of weakness and i can admit that there is a genuine cause for concern for the lack of neutrality on the gamergate page as well as the conduct of some of the editors on the talk page but as you said it s probably best i just wash my hands of the whole thing for the time being,0 +they never show ads here,0 +this subject is best covered in the individual netowrk and or conference aticles it does not merit its own article talk to me,0 +i see what you mean i would support using a more modern front page in the infobox as most newspaper articles do and moving the free image into the appropriate section of the article i would not support having both images on the infobox as it looks cluttered and seems to me to push the limits of wp icondecoration,0 +real madrid kit but let me just say this real madrid isnt the only ones that have excesive detail in the kits if your gonna change it might as well change the barcelona one too,0 +i don t think it s appropriate fundamentalism and extremism are two different things in most people s minds there are many religious fundamentalists who could not fathom committing some of the vile acts done by extremists i believe there should be an islamic extremism article and the fundamentalism article here needs to be expanded there is much contemporary literature on the subject,0 +hm that is some interesting stuff that unfortunantly i dont have the answer to good luck though,0 +why did you delete the andy thomson bowls article he is a top bowls player and you said he wasnt reputable could you email me on davidthomson btinternet com,0 +can you make the first sentences more biased they re not biased enough i mean i long to hear it mentioning i love bill gates source,0 +dear salvio why do you think wikipedia is the only place i can contribute people are using wikipedia to spread false information people perhaps have also found ways to derive monetary benefits out of it exposing people who are using admin powers for monetary gains is good for wikipedia itself remember esjay scandal if i don t get the chance to assert here i will find some alternative ways thanks no blast,0 +still waiting user sikh history i will remove him from the list but first i would like to hear your opinion on why he must be included here,0 +everything looks good i m passing the article now,0 +speedy deletion of zac goodman a page you created zac goodman has been tagged for deletion as it meets one or more of the criteria for speedy deletion specifically it is about a person or group of people but it does not indicate how they are important or significant and thus why they should be included in an encyclopedia please see the guidelines for what is generally accepted as notable and the guidelines for biographies in particular you are welcome to contribute content which complies with our content policies and any applicable inclusion guidelines however please do not simply re create the page with the same content you may also wish to read our introduction to editing and guide to writing your first article thank you,0 +if this be true seems like the irish got this right amn t i or ain t i appears more appropriate than aren t i talk apr utc,0 +june you are suspected of sock puppetry which means that someone suspects you of using multiple wikipedia accounts for prohibited purposes please make yourself familiar with the notes for the suspect then respond to the evidence at wikipedia sockpuppet investigations rishabhcine thank you talk,0 +redirect talk shanegujrat newspaper pakistan,0 +the reason why i brought this up because i repeatedly see red links for mark morales and then steven mcniven dexter vines etc arent they already mentioned and linked in the first part above of the article plus i dont want to touch the coding for cite referencing i dont know how bloodpack,0 +proposal to shut down wp geographic coordinates ban coordinates on wikipedia articles this means you talk,0 +what s wrong with you go kill yourself you vile creature,0 +you fing rat you ratted me out you little prick,0 +has got some sand trapped in his vagina and it s making him a little bit cranky,0 +if you are unable unwilling to resolve your conflict you should have the decency to leave this article alone so that others can work on it aug utc,0 +block me accusing me for trolling if he you and others believe i m a troll please keep blocking if hillary clinton is a troll then i m more than happy to be a troll too if hillary clinton is not a troll then i m not a troll too if you believe i m not a troll please first unblock and then block again for the right reasons after that we would have a base for an evaluation based on the right accusations till then my defend line is what hillary clinton said i would like to offer a historic perspective and not to compare putin with hitler thanks,0 +contents of the library objects and functions to be used outside situation late august classes page a mediawiki page init page site title the page with title title on wikimedia site site title the name of the page in a form suitable for an interwiki link urlname the name of the page in a form suitable for a url titlewithoutnamespace the name of the page with the namespace part removed section the section of the page the part of the name after sectionfreetitle the name without the section part aslink the name of the page in the form title or lang title site the wiki this page is in encoding the encoding of the page isautotitle if the title is a well known auto trans latable title autoformat returns dictname value where value can be a year date etc and dictname is yearbc december etc iscategory true if the page is a category false otherwise isimage true if the page is an image false otherwise get the text of the page exists true if the page actually exists false otherwise isredirectpage true if the page is a redirect false otherwise isempty true if the page has characters or less content not counting interwiki and category links botmayedit true if bot is allowed to edit page interwiki the interwiki links from the page list of pages categories the categories the page is in list of pages linkedpages the normal pages linked from the page list of pages imagelinks the pictures on the page list of imagepages templates all templates referenced on the page list of strings getredirecttarget the page the page redirects to isdisambig true if the page is a disambiguation page getreferences list of pages linking to the page namespace the namespace in which the page is permalink the url of the permalink of the current version move move the page to another title put newtext saves the page put async newtext queues the page to be saved asynchronously delete deletes the page requires being logged in this loads the page if it has not been loaded before permalink might even reload it if it has been loaded before site a mediawiki site messages there are new messages on the site forcelogin does not continue until the user has logged in to the site geturl retrieve an url from the site mediawiki message key retrieve the text of the mediawiki message with the key key has mediawiki message key true if this site defines a mediawiki message with the key key special pages dynamic pages allpages special allpages newpages special newpages longpages special longpages shortpages special shortpages categories special categories cached pages deadendpages special deadendpages ancientpages special ancientpages lonelypages special lonelypages uncategorizedcategories special uncategorizedcategories uncategorizedpages special uncategorizedpages unusedcategories special unusuedcategories other functions getall load pages via special export setaction text use text instead of wikipedia python library in editsummaries handleargs checks whether text is an argument defined on wikipedia py these are family lang log and others trans late xx dict dict is a dictionary giving text depending on language xx is a language returns the text in the most applicable language for the xx wiki setuseragent text sets the string being passed to the http server as the user agent header defaults to pywikipediabot output text prints the text text in the encoding of the user s console newl,0 +brock actually brock is like ft not ft and lbs not ive seen him u havent,0 +but you will need to search for reliable sources too,0 +afd on list of sex slang skrewler you countered an argument nobody s made i didn t nominate the list because of what sort of slang it s a list of i nominated it because it s a list and of slang could be list of slang terms for incredibly tasteful or appropriate things and i d be just as adamant about deleting it,0 +tiger shark in answer to your question see here wikipedia wikiproject comics editorial guidelines titles with numerous volumes as to the mini series yup will make a slight correction there s also a vol out there as well,0 +the whole tone of the page was promotional it included lists of the company s products and locations and a link to their franchise website the best way to write a wikipedia article is to summarize in your own words what reliable sources have written about a subject be sure to cite your sources so readers including other editors can verify the facts in the article good luck talk stalk,0 +one of the problems with indian articles was and is that there was usually no trans literation of the indic script which leads those who cannot read the script doubt its value in the article,0 +welcome to wikipedia have fun,0 +afd hey mongo why dont you put a procedural delete on wikipedia articles for deletion the road to tyranny nd nomination i mean i created it and its about how could you possibly resist voting delete chears,0 +convoy template does this cover it for the main template i ve put items that ought to be there some have pages some don t for the other sections i ve put in the items with pages that already exist i don t know yet what the bwst arrangement is,0 +slipknot unofficial member even if it is supported by a citation it is constantly deleted by fanboys what do i have to look for the article every time i want to change it back some people are busy,0 +of course not patrons as you so kindly put it are for the most part an assorted bunch of hobos wash outs and other generally unemployed and more or less perpetually starving people such as hollywood star wannabees,0 +hey pbs as i said earlier i appreciate your attempts to maintain decorum however,0 +stop trolling please please stop editing the entry of suki tm the new world religion tm on the suki page you have no evidence whatsoever of the non existence of suki tm the new world religion tm and there is plenty of discussion on the existence of suki tm on the talk suki page thank you for your kind consideration,0 +thats sounds fair to me i accept all of your conditions i have no sockpuppets and this is my only account thank you for unblocking me if there will be problems in the future i will act as you asked me to,0 +wikipedia wikicup history submissions hawkeye hi there i m afraid i removed your featured article as it s very much last year s article sorry about that,0 +she deserves it any time i can assist you are welcome,0 +i don t know if i d be classified as a mainstream libertarian but i really don t see any conflict i ve been asked that before but there are actually quite a lot of libertarian leaning scientologists,0 +i agree with the above i look for some references hallucinations are perception of stimuli that are not there whether or not the person believes they are real a person may take a pscyhopdelic drug and see things that are not there however even if the person knows they are just the result of the drugs they are still hallucinations,0 +bigjkim why do you like jew s so much why are you so pro israel its not even your country better yet its not even a country,0 +reply there is no such thing as texas commerce bank of chicago likewise there is no such thing as the united farmers bank of baltimore and albuquerque so salvio you are incorrect if you want to prevent even the remote possibility of confusion then you should not be allowed to use your name salvio because there may be confusion that you are related to salvador dali,0 +nietzsche s last man was nietzsche s concept of the last man explicitly implied in the title the article makes no mention of it per se though it sounds implied so i added a link at the end,0 +ha right because you and the other two morons definately are not policing this article for political reasons as opposed to say my honest indignation at having to sort through endless piles of israeli propaganda and political threats when i just want to read about what s going on with the convoy normally my wiki activity is limited to editing out nationalist crap people insert into history articles today it s you and your temple buddies hey wait maybe if your guys all rub your noses together you can triangulate my new ip address god i had forgotten how funny jew jokes are if only i really was anti semetic make sure you keep checkin that page i ll be back d,0 +i have decided to take the next step and have your behaviour specifically your tendancy to scream j accuse at the drop of a hat looked into something that will no doubt get me on your nixonian enemies list,0 +i agree wise descision toa of sound out toa of sound retires from the bionicle descussion and it would be wise to follow,0 +actually you can use thumbnails for images with licenses that allow for it fair use is just another name of using a copyrighted work under a strict and narrowly defined way you can only use it to illustrate the object even if you had uploaded it the image is still copyrighted any usage of it outside the strict fair use criteria isn t allowed and so user pages subpages cannot have fair use images see on the criteria page hope this helps,0 +may utc no worries is it correct that i ask users for a co nomination statement just want to be sure i don t inadvertently breach wp canvass and would you say there s an appropriate number of co nominators to seek looking through the past rfas it seems to range from none to two hopefully i ll have accepted the nomination and answered the opening questions sometime today or tomorrow cheers,0 +ok this isn t working here i ll make an rfc in a bit let s see if we can resolve this dispute there until then nobody touches the article,0 +are youtube clips never allowed at all or are they only allowed if they meet the guidlines of a reliable source i e a recording of an interview footage of an event relevant to the article etc the page you referred me to isn t entirely clear on that,0 +and to you you conservative being you are a m cosgrove defender admit it yourself,0 +how come some of the worst human beings on earth happen to be admin on your oh so beloved oh so protected internet site,0 +i was generous and left a lot of stuff in there that gives assange s side,0 +needs links to historical development may have been removed why as can no longer find mention of siemens,0 +here are a few key questions do you understand that wikipedia is an encyclopedia and not a business directory do you understand conflict of interest do you understand that to be considered for an encylopedia article the subject must be considered to be notable you are currently block because your username appears directly related to a company group or product that you have been promoting contrary to the username policy changing the username will not allow you to violate the important principles above penny for your thoughts,0 +don t threaten me and you can t delete other user s userspace articles,0 +hello sorry i didn t let you know before but i undid the changes you made to the infoboxes i undid these changes as consensus was established a long time ago that status and family information was unnecessary in the infoboxes if you have any questions please let me know best talk,0 +i do not want to keep this ongoing but i will respond to a few comments you made i never said i was a newbie i said i was inexperienced as i log on infrequently i thought i was in sandbox and unknowingly made the change again for someone who made two very small errors you should assume good faith if you feel it is vandalism ask the user what is going on before jumping to judgement,0 +thank you for experimenting with the page april on wikipedia your test worked and has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia a link to the edit i have reverted can be found here link if you believe this edit should not have been reverted please contact me,0 +liberty lobby inc appellant v john rees et al united states court of appeals district of columbia circuit f d argued march decided july http cases justia com us court of appeals f libel case concerning the characterization of liberty lobby as anti semitic and the asserted relationship between larouche and liberty lobby,0 +welcome hello myshibboleth and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay unfortunately one or more of your edits have not conformed to wikipedia s verifiability policy and may be removed if they have not yet been wikipedia articles should refer only to facts and interpretations that have been stated in print or on reputable websites or other forms of media always remember to provide a reliable source for quotations and for any material that is likely to be challenged or it may be removed wikipedia also has a related policy against including original research in articles as well all new biographies of living people must contain at least one reliable source if you are stuck and looking for help please see the guide for citing sources or come to the new contributors help page where experienced wikipedians can answer any queries you have or you can just type on your user page and someone will show up shortly to answer your questions here are a few other good links for newcomers the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you have any questions check out wikipedia where to ask a question or ask me on user talk dougwellermy talk page again welcome,0 +i don t want to give my real life name and occupation away i use a university faculty email so i won t be able to email you i m afraid is there any method of sending private messages through the wikipedia system another point having followed some of the discussions some users have done on my behalf and their tireless efforts to see my best side i must say i am humbled and flattered i hope that in the new year i will come back and contribute positively here i have some experience in history specifically irish history and have always thought i could add something to these articles if i ever got round to it my initial cyncism for this place is been challenged time and time again and i must say that i am glad that it has to all those users who have done their best to see my best qualities i say thank you you are nipping away at an old mans cynicism,0 +i see and somehow my brain interpreted zero edits as zero edits other than this one quite funny all in all i d say,0 +i was the one being under personal attacks by people who avoid the subject and kept to personal attacks instead to read what i was writting and yes my contribution was avancing the subject with very important and new informations but the other users were constantly trying to stop it by the mean of personal attacks i wonder that you suppress my contribution but let the one of val stay who contain nothing but a copy paste of very large part of my edit without any reasons for it whcich is against wiki rules and with personal attacks in between very convenient too that you leave ton for holyday straight after doing so meaning less than hours after having doing so this talk page is not a talk page but a propaganda page for a propaganda article with only mormon administators to make sure nothing they disaproove as church member will come through you do not have given a fundament for your actions and i therefor disagree with it you will have to be there to do so,0 +don t you have something smarter to do than this,0 +latest edit i have amended a lot of the tabloid type rubbish information to reflect the true narrative of events not just as seen through the emotive myopic perspective of the hostile alien in question my edits paint the chinese as they truly are perceived and even quotes from chinese themselves in western and indonesian academic discourse unwanted unneeded unliked and willing greedy agents of their own demise my edits are the most thoroughly referenced and thus if any further edits are down unto this article it should be to remove anything aside from what i have included the chinese zheng ho wali songo fairytale has been disproven once and for all as a total lie disproven by archeological reality chinese did not bring islam and esepcially not to gresik also removed is poor quality sob story emotive pov it was unreferenced and unsubstantiated and in some cases libelous,0 +goodness gracious there has to be an easier way to break ties oh it s baseball okay go ahead and change it and apologies for changing it on the main wbc article t c,0 +regular show j g quintel it s going to be monday at the earliest before i will have any time to investigate this page so i suggest you ask at wp rfpp,0 +i ve searched for good quality alternatives but haven t been able to locate any at the moment,0 +i am reading it and have it watchlisted but the examiner didn t give much background and people there are referring to stuff i dont know about sometimes cryptically as for arbcom grade drama it cant be worse than certain usenet groups d badmachine,0 +in addition the rfc has expired on the yay side we have urammar nytemyre whoever that is ninjarobotpirate popcornduff stg mcgeddon appears undecided on the nay side we have serendipodous this is a consensus as of the rfc expiry therefore the article has rightly been changed further edits will need to conform to the expectations of the majority serendipodous you had your time on the floor to convince us that time has passed you will need to convince the majority of a reason to change it back now and feel free to continue to do so in the talk page here please do not begin another edit war thank you,0 +no worries i see this has been done,0 +you are clearly violating wikipedia policy by asking for personal info it doesn t matter what my name is here or there or anywhere ian stated wikipedia policy is that anyone can remain anonymous it s unreal that you would even ask me for such information unreal,0 +fair use rationale for image tranquilitypark jpg thanks for uploading or contributing to image tranquilitypark jpg i notice the image page specifies that the image is being used under fair use but there is no explanation or rationale as to why its use in wikipedia articles constitutes fair use in addition to the boilerplate fair use template you must also write out on the image description page a specific explanation or rationale for why using this image in each article is consistent with fair use suggestions on how to do so can be found here please go to the image description page and edit it to include a fair use rationale using one of the templates at wikipedia fair use rationale guideline is an easy way to ensure that your image is in compliance with wikipedia policy but remember that you must complete the template do not simply insert a blank template on an image page if you have uploaded other fair use media consider checking that you have specified the fair use rationale on those pages too you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any non free media lacking such an explanation will be deleted one week after they have been uploaded as described on criteria for speedy deletion if you have any questions please ask them at the media copyright questions page thank you,0 +i appreciate the invite i appreciate the invitation to help with ward churchill sometimes it gets tiring to be marginalized and your views be universially distained huh it begs the question how many americans born in the soviet union would be good soviet citizens ever society has a minute group of dissenters which every society treats the same way with political prosecution america persecuted communists and socialists and the soviet union persecuted western thinkers what is so absurd is the right has borrowed stole the concept of victimhood from the left,0 +redirect talk t o s terminate on sight,0 +karnan thanks for your welcome,0 +julien aklei fisherqueen you flagged the julien aklei page for deletion i ve made updates to it including a discography and a link to a newspaper article please let me know if it now meets with your approval thanks,0 +you do not know that we have two different categories th octave and whistle register you created them see minnie ripperton for an artist with links to both cats,0 +that widescreen image of the tear is too wide if you catch my drift could you find another example of it,0 +johann hari pic hi jacoplame the picture of johann hari that you agreed to post has now been given the correct copyright free status at flickr http w flickr com photos n saved it turns out the picture of hari currently on the article is not actually him i e mailed him and he looked at it and informed me of this see the discussion page so as soon as you could correct it that would be great it s probably best not to unfreeze the page though there is still no consensus since the user felix felix who has in the past inserted libellous falsehoods and the current fake picture into the entry is refusing any offers of a compromise as you can see if you check out the discussion page he has declared that he wants to unilaterally delete any of the critics he disagrees with and wants to quote only the one group he happens to agree with medialens david r from meth productions,0 +put me out single hello how are you i joined wikipedia after some usage and learning of the site to try to add my input and inprove some pages that i knew were missing some information i noticed you removed that i added put me out by the used from the single list although they made a video for it they also released it with its own single artwork cover and its recieved airplay on the radios across the usa which makes it a proper single you can see all this information here http w x com pages newmusic the used put me out blockid feedid and much more information confirming it is a single by a simple google search of the used put me out single i believe that fully makes it legit to be added to the list unless i may be miss interpeting something thank you fez for the help,0 +not this again this is the sixth time the article title has come up with some demand that it change june august april october and now march is there nothing else to discuss,0 +you re a real problem radiopathy you would do well to let the others jump to their own ill informed conclusions and we can sit back and watch hilarity ensue instead you interpret lexi s explanation for these idiot s and cut off what would have provided a mild form of entertainment for weeks to come a plague and pox on you and your farm animals and a double plague on lexi for failing to make sure in advance that you would play along or if he did contact you and get your agreement in advance a triple plague and pox upon him for believing you when you have so quickly shown instead that are intelligence and intuitive lexvacpac,0 +it doesn t sound like there is a copyright issue as that would be in the public domain however the question is whether posting a whole speech is encyclopedic it sounds more like material for wikisource talk,0 +mujaddid you keep listing ashraf ali thanwi under forteenth century even though he died in considering that you are progressing towards a block you should pay some attention to the explanations given when your edits are reverted and by the way honorifics like hazrat are not used on wikipedia have a look at wp honorifics,0 +apology you never did apologize for your mistake one would be appreciated on my talk page thank you,0 +thank you for your note given the risk to you if you do restore copyright problems to an article i felt it rather urgent enough to reply at your talk page talk,0 +typo your first link here is to a comment by peter cohen was it meant to be to a comment by jimbo,0 +wkbs cornerstone i have put in a request to have the page moved to wkbs tv the correct callsign on wp rm talk,0 +wp or doesn t even come close to applying the definition of paired is not or nor is the picture we have of his release form,0 +new section at wp ani there is now a new section at wp ani to post any further complaints on this matter i am sure you ll all agree this is a serious matter and that marek is being stubborn and ignorant by just ignoring it please rally together and rise up we can change this thing,0 +and asking top stop involving me,0 +re all items i know that you said i did somethings to your items but i am not lying and very honest to tell i really did not do those as a matter of fact i was not editing the wiki on certain times and block as some people tried to hack and do nasty things i am really sorry for the incidents before and i take full responsobility on any further incidents p s if i did that then why did i,0 +so you not going tell me why you created so many accounts well they say online privacy is hot these days to start with the premise that the subject of article is strictly ancient history is to assume an answer when i add information about the holiday various editors thank me so i am not only one who thinks it should be mentioned perhaps others are afraid of you or just exhausted by your constant bickering,0 +john phillip key born august in auckland new zealand wasn t he born in christchurch,0 +the billy the kid article with my contributions has been vandalized on or about dec by someone calling themselves krakatoakatie what had been the most detailed and accurate account of billy the kid s life has been replaced with pure garbage i ask every to look at the last version i submitted one concerned and compare it to what it has been replaced with i ask anyone who is knowledgeable about the subject and who doesn t have some sort of agenda to take a look at what has happened and let your feeling be known thank you,0 +vandalizing the macedonian towns freestypefrappe i will not stay calm until you stop vandalizing the kumanovo page talking only about murdering blood terrorism and nothing about the city normal life of course there were moments in the kumanovo s history when a terrorist attacks took place but kumanovo is most of the time a quiet ordinary macedonian town that doesn t deserve such descriptions it is the same as if you write an article about london not mentioning st paul s catedral westminster tower bridge and writing only about recent terrorist attacks in the london underground talking about copyvios i noticed that you are using text written by christopher deliso i found that on the following sites http w serbianna com columns deliso http w popovashapka com terrorist bombing in kumanovo htm do you have permits for doing that,0 +kings norton shouldn t this article be part of the kings norton wikipedia page hawkesley is part of kings norton after all,0 +thankyou so much i was not expecting this but thankyou i have changed my password to something that no one that i know could guess and my computer no longer remembers it thankyou,0 +shut up katie your not even real,0 +the admin with a paranoid personality disorder takes dissent as a personal attack incidentally evidence has come out that the pit bull who serves the admin is an unemployed fellow subsisting on handouts from benefactors in the circumcision lobby who he services in a number of ways mankind,0 +well yes i have been on here for a few months if you are reffering to on gfoely s page then that was just a mistake sorry,0 +ringmail i don t know if he regards himself as an expert i ve sweated enough to know for sure that a broigne is not a victorian mistake and to find citable sources for it i understand that the english language wor ld lacks proper history on the subject but from a continental point of view there s no mistake possible that ringmail is different from chainmail and was used in the period between the fall of rome and the comeback of chainmail in the late s also the high handed way in which he remade all the article with no regard for the effots of those who came before him and without even setting up an account for people to discuss the matter with him wxas to my view qualification for vandalism i m quite willing to include the bit about representations making it difficult to differenciate between chainmail and ringmail and the possibility of misconceptions in the s but the basic matter as established with my collaboration stands even if it has to be edited further,0 +i m not sure that your statement on this fawning article by someone you characterize as a conspiracy nut is in compliance with wp npov,0 +there is no reason why you could not edit the page and also take part in the ga review however sometimes it might be simpler not to work on the page nevertheless it is sensible to form a consensus about images if you are in doubt the diagramme showing hormones image is probably more suitable for the calcium metabolism page the anatomical diagramme is quite good and could augment the a high resolution version of file gray png re file gray png this images in the gallery has poor resolution however the pd version in gray s is available at a much better resolution and can be uploaded over the poor quality image,0 +good in my original article i said that he was a dublin university student meaning a university student in or from dublin i had no idea which school i noticed that someone else wikified it to be dublin university and your citation has helps settle it thanks for the good edit flowerpotman,0 +yeah this guys deleting potentially life saving information citing that the article doesn t look very pretty with real information i call him a nerd and have a go at him for doing so and i m in the wrong nice to see your a human being mate remind me to steer clear of people like you,0 +you live you learn,0 +contested deletion this article should not be speedy deleted as being recently created having no relevant page history and duplicating an existing english wikipedia topic because it contains information on why several terrorist attacks have occured today and the reason behind it,0 +an event mentioned in this article is a july selected anniversary who invented the lunar rover lrv deployment procedure diagram is referenced in the text however the diagram is not included in the entry the detail of the text is excellent and informative did the astronauts take critical components from the rovers back with them or deactive them before they left i e if a future mission were to land near the apollo sites would it be possible they d still work and someone could just hop on and drive them again the rover was developed by boeing with help from delco and gm the automobile mfg if the batteries were replaced it is possible they would still continue to work,0 +stockpuppet hazard sj who s andreas balart and has he got to do with me i ve received a message on my inbox about stockpuppenting another thing a contributor mauritius publicly called me selfisha totally unwarranted name callingon the basis of some changes i had done which i had argued on the discussion page is there a was of reporting it take care,0 +personal attacks what is going on with lefty s user page why is what he s doing a personal attack i think i may have a similar problem but i m not sure,0 +mr lulu your screed statement the latest daily slander is a bit over the top you sound like a partisan pov pusher instead of a npov editor such a salacious statements shows your lack of knowledge of the word slander for the record proper usage is liable i question your temperament to edit on such a politically charged article a note to mr anon gamaliel since no one knows your agenda other then your partisan picture shrine on your homepage are a adult willing to play by real world rules or are just a child playing these dumb ass games calling question lulu s temperament to edit responsible considering his her partisan temperament and basic understanding of the very words which lulus likes to use is not personal attack to bad wikipeida and it s admins behave as little children instead as responsible adults,0 +april utc hi borakai it seems to me that the line on extreme views provides a context even more context than just nihilism and eternalism this line can be supported by quotes jsut a few as illustration for wikipedia it s more useful to give a synopsis of madhyamaka s point of view on the middle way though that might also fit and probably better into the madhyamaka article the point is that a list of quotes does not provide a context they need a story a synopsis to make them understandable for the average reader say a year old high school student,0 +for daniel case hi daniel the block is extremely odd imo there is no real discussion of my activity in that an thread in connection with a siteban jehochman whom i have some history with floated the idea of a siteban durova who has been on my case steady for months on behalf of cirt generally bad mouths me about abusive sockpuppetry etc but does not ask for a siteban and a few admins float some ideas and come up with this account restriction idea by ryulong i agree to it then ryulong backs away from his idea and from the whole thing blueboy a new admin that improperly block me an established editor as his very first admin action three weeks ago and whom i blew up at and insulted decides to siteban me he is supported by guess who jehochman durova and athaenara whom i also have history with and whose wp rfa i made a bit difficult and embarrassing by bringing up her past actions with me i can provide diffs for all of this but i want to show you one thread now over at wikinews durova comes over there to badmouth and lie about me and a neutral admin luckily takes the time to look at the diffs and see who is really harassing whom here i invite a neutral admin to do the same here i have to run now please let me know how you would like to proceed thanks,0 +i know the answer it s february cause robin hood prints take a year to make that was the st release date their was it was a leap year promotion your favorite tv show talespin had its next vols released on that day along with other animated tv shows the new adventures of winnie the pooh darkwing duck imax if you have an talespin vhs from please let me know on youtube wile e would you happen to know if there were any copies of the little mermaid without the phallus artwork,0 +please stop if you continue to vandalize pages as you did again to kernodle middle you may be block from editing wikipedia,0 +it says on the wikipedia list of banned users that he was a former sysop man and then he goes off and tells people how to weaken the credibility of wikipedia talk about betrayal huh or maybe revenge yeah it s probably revenge argon,0 +adam reid page how can we improve this article to meet proper wiki criteria,0 +stupid vikings a creative new way to lose instead of a run play to center the ball and kick the winning fg with time expiring let s have the ol man throw across his body to his blind side and get picked off and force ot and hand the game to the aints creative as i ve always maintain the vikings always find a way to lose,0 +you re banned hey tim as far as i m concerned you re banned what i mean is get your phd back on track i ve been there i know what you re saying i won t try to convince you to come back because i know you will anyway but come back on your own terms after you get things straightened out with your school work stuff and if you d like we ll kick you from irc after a few hours each day now if only someone would ban me jan utc,0 +support as the proposed title is both the correct order for a korean name and just as importantly the common name in reliable sources compare google news searches hits backwards order hits thanks,0 +delete the biased reference or block me there s no other choice,0 +primera division peruana there is a discussion going about a consistent disambiguation for all leagues that are primera division the decision will might affect how the primera division peruana is named in the future so you may want to say something see here,0 +undefeated villains what ever happened to telu kitemasu e f block leaders the rest of l block and the rest of m block i know that suzu defeated tsulun his b block,0 +technique the point of waterboarding is to seal the mouth and force water through the nose the article does not emphasize this instead it goes for the opposite suggesting that there is a hole cut in celophane etc,0 +oh i see my comment is a personal attack but others for example one who called him a dumb ass little shit and squeakbox annoying user of the week agreeing isn t p lease your removal of solely my comment is unfair and irrational as it was just speaking the truth wikipedia s obsession with civility borders on the ridiculous when it means people have to hide what they really think and play nice with obviously disruptive users so that they won t get hit with the banhammer,0 +i am not sure if i understand your reply above correctly unsd uses the term statistics divisions i agree but the term refers to division s in the un headquarter or agencies in different countries not a specific way of geographic divisions of the world you still prefer previous title i e united nations statistical divisions to the current one i e united nations geoscheme if so please allow me to repeat a bit on the following the term statistics division capitalized singular form in the un context refers to the organization of united nations statistics division with the website at unstats un org the term statistical divisions plural form can mean any categorization schemes not just geographical ones google this statistical divisions site un org the term statistical divisions plural form can also mean any organization bodies who are doing statisitcal work in governments google this statistical divisions site un org therefore it is not advisable to use the ambigous general term statistical divisions or the wrong organization term statistics division to refer to un m un statistical divisions can refer to any agencies doing statisitcal work under the un system or imply that there are certain un statistical categorization schemes in a general sense not geographical i agree that un geoscheme is widely used for stastitcs and also mapping natural earth has region un and subregion metadata for each country i use it quiet often it is why i notice that most of academic work refer this geographic categorization classification scheme as un geoscheme try google book search and you will find at least the following the best option to identify the states from asia could be use the united nations un geoscheme for asia as per this asia is subdivided to four broad categories the un geoscheme defines the region as all states of mainland north america south of the united states conversely the european union excludes belize and mexico from its definition of the region country groups are based on un geoscheme and world bank regional classification were grouped into regions and subregions based on the united nations geoscheme http unstats un org unsd methods m m regin htm that the united nations statistics division would later classify as eastern asia southern asia and southeastern asia according to its geoscheme in fact i also agree that many un agencies in fact many other reports consultancies etc have different statistical divisions in the general sense of categorization schemes for research this is exactly why i believe the term un geoscheme is better although it is not official term or a technical term un m i have not yet found an ambigous use of the term correct me if i am wrong on this so far every online and academic citations that i have found when the term un geoscheme is used it refers to exactly the regions and subregions as defined in un m moving forwards since don t have the time nor will to take it to rm and if you do not have any further couter evidence or arguments with the evidence and claims that i layed out above i can help by making the necessary editing without going to rm of course if you still have lingering concerns please summarize your current arguments preferrably after considering the evidence that i have already presented and new evidence citations here before i bring it to rm comparingchinese wikipedia vs baidu baike by hanteng,0 +first of all much of what i wrote was from mitrokhin s own wikipedia page including the quote which you say its from a book ive never even heard of ive read the mitrokhin archive book myself and i remember him saying something along these lines second if you are going to stalk my edits do i need to ask for your approval so i dont have to waste my time editing pages that will get reverted by gestapo agents like yourself,0 +user page revert you are very welcome and many thanks for the very kind award of a medal much appreciated best,0 +i hate drmies he is an idiot,0 +emo my eye ive been wearing sambas since i was ive had the same pair for about years and ive never seen a emo kid wearing them besides this is all original research so come up with some sources or i will be removing that emo stuff,0 +if only quoting rules actually correlated to a real violation of them this type of behavior is exactly why slimvirgin is now an internationally notorious celebrity i applaud you for shutting down discussion and free speech regarding serious conflicts of interest you will go down with the defenders of essjay as another person that is utterably incapable of understanding the concept of free exchange of ideas a patsy if you will the best part about this is it is all logged so people for years to come can look back and remember the hand you played in this mess,0 +damiano photo hi william chase i don t think it s appropriate or necessary to have your name incorporated into the caption yes i saw the photo s page and i think that having it copyrighted and credited to you on that page is sufficient fair it s just too inconsistent with all the other photos on wikipedia,0 +googling bret michaels heavy metal turns up over hits like it or not glam metal is metal,0 +spinning off a cultural impact article would be consistent with other articles of similar import some like superman have even reached featured status that would allow more room here for growth,0 +btw please reply here i ve watchlisted it talk,0 +section subdivisions should be more than a list i hate to complain about a problem rather than just fix the problem but i really don t know enough about biology to be productive here the problem i read eudicots rosids and asterids although each article lists some representative species i the reader have no understanding what criteria was used to subdivide eudicots into rosids and asterids and others why is one plant a rosid but not an asterid these articles read as though plant life is subdivided arbitrarily though i suspect the subdivision is somewhat rational my intuition tells me that there must be some expressible meaningful distinction between these subgroups the proposal is there some way to describe the grouping here i propose a brief summary of the characteristics which divide rosids and asterids i think this summary should be a list of differences each difference taking this form rosids feature x in contrast asterids feature y thanks,0 +welcome and thank you for experimenting with the refracting telescope page on wikipedia your test worked and thank you for reverting or removing it yourself the best way to do tests in the future would be to use the sandbox you can look at these pages as well how to edit a page the tutorial and how to write a great article all of these pages are good places to start again thanks and we hope that you will like wikipedia,0 +according to wikipedia guidelines it is correct to use british english for this topic,0 +re dennis brown s final warning i didn t mention that it was mutual because it was not relevant i didn t violate the final warning curtisnaito did multiple times the exact wording of the warning was if either editor pushes the boundaries of incivility bludgeons a discussion violates wp idht acts in a disruptive manner on any talk page or breaching any other policy that makes editing miserable for other editors then either myself or another admin should simply block for a minimum of hours at no point did i push the boundaries of civility bludgeon a discussion violate idht act in a disruptive manner on any talk page or breach any other policy that made editing miserable for other editors curtisnaito displayed the exact same kind of idht behaviour that has made editing miserable for me and multiple other editors on numerous occasions and when told explicitly that he was violating dennis brown s final warning he kept doing it your choosing to butt in with a comment about how the warning was mutual when nothing i had done could conceivably be taken as a violation of the warning was an off topic attack against me with no basis in what actually happened i understand you don t like me but would you please keep it to the appropriate forums rather than continuously posting personal attacks against me on other users talk pages where normal etiquette prevents me from responding directly,0 +its go to international war crime court f jew s wonder if they did it,0 +i find it very scholastic it was a very insignificant settlement then with no cathedral founded until a few years later that said i do not care much about this bit,0 +i deleted comments calling me a vandal who hate d the novel those aren t allowed here conspire past ops,0 +the battle of the bulge as the german offensive progressed east to west creating the nose like bulge shape salient between the th and th of december,0 +bwilkins w hate ver the situation and theory we cannot know what stolyarov intended to do what did i do this time,0 +knackered the t and a few other keys don t work left click doesn t work to left click i need to tap the touchpad however this requires about taps before anything happens the comp is very slow i have tried home sharing when i got the mac and the music moved over up to c refused to continue later cannot seem to set up home sharing again also cannot download migration assistant which the suggestion at the apple store talk,0 +january utc judith just in case you were going to i don t want a lecture on personal attacks and good faith after you just let the nastiness of self avowed racist radh go with a typical welcoming greeting seriously,0 +i am in london jonas so our time zones are not so different of course i will assist with pleasure i may do a couple more edits then the bed must call will check back with you tomorrow gut nacht,0 +i have other ideas but thanks all the same,0 +thanks thank you for your edit on my paper heart i got into an incident with another editor who thought that repeating the album title in the tracklisting was the wikipedia standard i disagreed and they brought in a few editors that they work with so the others said that it was still standard but i still doubted so thank you,0 +coeur d alene is an up and coming area of northern idaho in the past year it has shown a growth rate it has an unemployment rate of only the median home price is only making it very affordable it has a world famous golf course with an island green that has made the cover of many golfing magazines and calendars coer d alene is a beauiful place to visit and a great place to live,0 +brahmins are said to be link between human and god also the lead discusses about military pursuits of brahmins it has no mention about the wandering of brahmins for alm which was their profession its been said bhiksha is the only asset of brahmins you wont have any problem with this glorification but will poke your nose in matters relating to ahirs i am sorry to say you are casteist,0 +relax the original anonymous poster is obviously spewing inflammatory rhetoric they are naught but a simple drive by troll i do however like the ongoing documentation of such obtuseness sociologists of the future have rich pickings herein,0 +that doesn t address what i said which is that there is no easily visible means of contact if i am wrong provide me with a link to it i suggest every single one of you involved in this read the statements about improving pages instead of reverting whenever possible being nice to people assuming good faith and trying to resolve a dispute before issuing warnings blockings as you all have paid no attention to them at all,0 +and re the matter at hand i agree and rs seems to support that megavitamin therapy is used by practitioners of orthomolecular medicine not the other way around unless there s solid rs showing that mvt is generally defined as or equated with om i don t see any reason to mention it in the introductory sentence or conflate the terms i ll certainly concede that it s widely used as are megamineral megaamino mega therapies and will gladly stipulate to its inclusion in the opening section but i can t see my way beyond that any thoughts suggestions anyone,0 +no this was discussed above and the reversion has remained stable also there is attribution of the quotes please note the numbers following the word if you click on them they lead you to the sources,0 +and for the record til eulenspiegel was block for violating godwin s law by calling me a nazi something that seems to happen quite a lot around here these days his block was extended and intensified because of the sockpuppetry but the original reason was the fascism accusations,0 +gothic metal and death rock nice call on the removing of metal traces in the death rock article im having similar problems with the gothic metal article on people with little to no knowledge of the subjects editing the article and trying to draw an association between goth music and gothic metal when there isnt one perhaps the death rock and gothic rock articles could do with a bit of an overhaul ive seen that youve edited the death rock article quite a bit so i assume you know a lot about the subject i suggest if your willing to listen that you read the gothic metal article firstly so you better understand what it is and secondly so you can work better with it and its contents on drawing the big black line or pink if you prefer that divides the two by a long way i call out to you as a fellow editor of articles simply because i do not know enough about goth rock or death rock to compently edit them mainly due to my work and association in the metal scene this im sure we can build some form of a bridge even if that bridge is to eleborate on the seperation of the two cultures,0 +also the last sentence is debatable the graviton exists if gravitational waves exist and the taylor hulse pulsar is strong evidence that gravitational waves exist let s just keep the regimes completely separate for the lead but maybe we can explore this a bit more in our section on gravity a link to gravitons is probably appropriate no,0 +ewing oil your unilateral decision that the deletion proposal i put on the ewing oil page is exactly why wikipedia is a joke,0 +this page contains chinese text without proper rendering support you may see question marks boxes or other symbols instead of chinese characters,0 +comment for what it s worth i take no position on this proposal i only made it because i was asked to do it and it seemed reasonably possible that there would be consensus support for it,0 +a tag has been placed on michael buckley requesting that it be speedily deleted from wikipedia this has been done because it is an article about a certain website blog forum or other web content that does not assert the importance or significance of that web location please read our criteria for speedy deletion particularly item under articles as well as notability guidelines for websites please note that articles must be on notable subjects and should provide references to reliable sources which verify their content please do not remove the speedy deletion tag yourself to contest the tagging and request that administrators wait a while for you to add contextual material please affix the template hangon to the page and put a note on talk michael buckley feel free to leave a note on my talk page if you have any questions about this thanks,0 +cheers although it might be worth actually making this a decent article rather than,0 +pov someone took issue with dull as pov in clintons democratic convention speech the article needs to convey that it almost sunk his chances he bombed at the dnc and still managed to come back in reinforcing the moniker comeback kid i left out dull i kept long and added uninspring,0 +template ww xbox i put a temporary image in but now the userbox is too tall if possible can you try and fix it to be the same height as template user wpvg thanks p s i started in solidarity,0 +would such best be a chapter of norwegian history how does it fot into the present strcyture of the history article s,0 +francis bellamy does anyone have a citation for francis bellamy being a christian socialist i was reading the encarta entry for the pledge but i couldn t read anything about him being a christian socialist not that i m doubting i m just wondering if we re sure this is accurate,0 +this is not an encyclopedia article especially this bit armed once again with a song that possesses all the classic attributes of a successful eurovision entry a catchy feel good melody and a key change that builds up to a big finish chiara is highly likely to enter the contest as one of the favourites this is more like a newspaper article it should be removed chiara s fame is also not worthy of mention in an encyclopedia we might as well start writing about the grocer or shopowner round the corner,0 +u rationale i no longer wish to be a part of this community,0 +i removed games that went months without a source sorry focus more on finding references before they re deleted for being unreferenced a simple google search did not return results for those games nero looked to be wii u and knight squad official website only shows steam early access,0 +records of awesome editors who truly want to help as this is not a study of people s hesitancy it is not a suitable source for claims about the reasons for people s hesitancy it would appear to be at best a study making claims about vaccines themselves not a study about hesitancy or about controversy if this study is the reason for people s hesitancy then we should be pointing to a reliable third party source that states that it s the reason not to the study itself if we say people stopped going to the beach because of the film jaws we use as a reference the source that makes that statement not the film itself so no it s not a reliable source for what you claim you want to use it for nat gertler talk that has got to be the clearest explanation yet so what you are saying is cite a source that says there is controversy over the vaccine schedule because there is a correlation with infant mortality then cite both sources or should i use opinion pieces like most of the other references in the article even the journal of medicine piece is an opinion piece is this where wiki gets the facts from opinions then excludes peer reviewed journal articles because it is wp or it is built by popular opinion of the editors from opinion pieces not allowing facts if this is indeed true though i hope notdcrsmama talk no i m not saying cite both sources references are there to verify the facts that are being stated in wikipedia s voice if the statement being sourced is that there is a controversy due to correlation with infant mortality then we cite a source that is discussing the controversy there is no need to cite the study even if the source says that there is a controversy because of this particular study we might mention this study in the text but the study itself is not reference for the statement and i am addressing the specific request for input that you made in your initial posting if you have concerns about the other sources in the article you may wish to raise them in a specific post about the specific concerns nat gertler talk from wp rps,0 +support per sources commonname alphabetical order,0 +dhimmi and ger toshav please see talk,0 +agree the statement needed to be added i formulated it slightly differently,0 +welcome hello to wikipedia i m one of the thousands of editors at wikipedia i am also an administrator i hope you like the place and decide to stay here are some helpful links for newcomers the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style fun stuff you will get more from the site if you spend a few moments reading the above i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia where to ask a question ask me on my talk page or type helpme on your talk page and someone will show up shortly to answer your questions also tell the community a little about yourself on your user page again welcome to the wiki whisper,0 +now i ve checked the death date too nd january is old style as well the exact date of shah jahan s death is not in his own chronicle which i am trans lating but in that of his successor alamgir aurangzeb in the ma sir i lamg r the author notes in the chapter on aurangzeb s seventh year of reign i e of the hijra early in the night of monday the th rajab shah jahan succumbed to the disease and gave up the ghost s q musta idd kh n ma sir i lamg r tr jadunath sarkar nd ed delhi p th rajab ah gives st february ad new style and nd january ad old style date calculations can be done easily with the swiss calendar converter greetings,0 +please do not vandalize pages as you did with this edit to t mobile if you continue to do so you will be block from editing talk,0 +toddst i didn t meant to i was still editing it and just re saved i guess that the tagg has been placed in between august utc,0 +so the link was a personnal attack how funny and i thought it was a good critic on your contribution on this page here without the external link just for you only me who is arguing you have been blocking anybody who does not agree with you on this issue shameful and now you want to find a way to make her less portuguese than canadian what a joke stating that she is no more canadian than she is portuguese is misleading she was born in canada and she lives in canada where are your sources for such a brilliant comment you should apply for an award for the silliest entry on wikipedia but come on let s get real here this not an acceptable comment from an administrator who also erased information with reliable sources just to get his own way now you decide there are different degrees of nationality being the canadian the top one pathetic and you say it is personal attack if i consider that you have a xenophobic view on this issue because you underestimating one nationality to emphasize the other your own your neutrality on this issue is something inexistent content must be written from a neutral point of view npov representing fairly and without bias all significant views that have been published by reliable sources this is non negotiable and expected on all articles and of all article editors the other two are wikipedia verifiability and wikipedia no original research you not only erased reliable sources that say she is portuguese canadian you also have no sources whatsoever to claim she is more canadian than portuguese if such a thing ever exists other than in your mind show the sources if you can prove it is not your own original theory the current version clearly states that she holds both nationalities what a lie citizenship is not the same as nationality and even nationality could have a different meaning depending of context and if what you claim was true you would not be erasing all the time that she is portuguese canadian,0 +and so to avoid the entire qualifications that are necessary,0 +fk vardar fk vardar is a macedonian football club the club changed its name several times during its history from original vardar in to citizens football club vardar or just citizens gragjanski in macedonian in then football club makedonija in and finally back to fc vardar in by the name fc citizens vardar the club won championships from till about yugoslavia you have to know that yugoslavia was a federation of republics countries together and each republic had its own championship and there was a federal league where teams from the republics competed together each republic had its own cup and the cup winners competed in the marshals cup that cup was held in honor of joseph broz the marshal of the federation and its was called the cup of the marshal how ever fc vardar never won the federal league league made of federation of republics best teams thats why its called the federal league and not yugoslavian league nor yugoslavian cup the title in was won by fc partizan belgrade you can check in any official statistics or documents the second federal league was made of two second federal leagues east republics competed serbia monte negro macedonia and two provinces almost the same as republics but yet without a nation those were kosovo and vojvodinship and west republics croatia bosnia and slovenia sometimes clubs from province vojvodinship would compete in the west depending on the federation decisions in the period of till present day republic of macedonia was established as provinces within the kingdom of serbs croats and slovenes those provinces were skopje bitola shtip and vranje prvinces these provinces established the macedonian football federation in and they held championships in these provinces joined in one duchy and this championship was held in the duchy banovina for times during the ww the championship was held under german occupation and the german government recognized this league after the ww the very same championship was tranformed in to republic football league just the province of vranje was separated from the republic as macedonia trans formed from duchy to a republic and the province of vranje was under the newly made republic of serbia in the bottom line is since the federation of republics split in the s macedonian republic league was trans formed in to macedonian first league so it is the same league that changed names and competition format during the decades and now it came to this level its a petty that there is lots of politics and territorial pretensions lots of denial of the existence of the macedonia and other republics in the federation by the serbian side serbian official politic is to show that yugoslavia was one country and nation mainly based on serb character and they are stilling all the history including history of sports in this case football they are trying to show the world that there was yugoslav nation serb and only yugoslav football league serb league denying the federal league second federal league and republic leagues they want to show only yugoslav league and not the real federal league they hold all the champions from the federal league as serbian champions in every competition for fc vardar at this point of view considering that macedonia is not in the federetion for more than years and it wont be in the future the most important are the titles and trophies won in the macedonian league and if you wont to put additional trophies won in the federation the period before you should write the precise information second federal league east is the name of the competition and you should put the macedonian flag from that period of the time next to it instead of the federal flag simply because that federation dont exist anymore and doesnt represent any country nor nation about the cup you should write down the real proper name as it was called marshals cup also fallowed by macedonian flag from that period of the time you should put a notice that in the federal second league east clubs from serbia macedonia and monte negro competed including the provinces of kosovo i vojvodinship,0 +what the hell are you talking about i didn t insert any link i typed some text you nazi there was nothing biased about what i included on that page i simply stated a fact a fact that you may not like but nonetheless a fact you really should be getting paid to be the internet hall monitor why don t you put your skill to use working for those brown nosers at fox news since it seems to upset you that someone is telling the truth about your precious president,0 +also there is more than one way to take a picture of these tufts and still have the face showing you can most definitely show the tufts but have a focus on the head of the animal but honestly all i see is a top view of your pet which is not very encyclopedic,0 +unrelated comment a couple of questions and advice since we re discussing interesting things to note i have an interesting question open for anyone not just groupuscle if you go to a noticeboard and the consensus is against you will you agree that it is evidence in favor of the position that the articles aren t biased or will your opinion continue to be that the articles are pov in terms of trying to reach a rational conclusion it s good to answer these questions for yourself beforehand feel free to ignore this of course or to keep the answers to yourself although i m also genuinely curious about your answers on the same token even if you don t escalate i m always happy to discuss any of my edits or the articles more generally with you or anyone else i am always open to being convinced by sufficient evidence,0 +romili seed seed december,0 +worshipped by north indians,0 +good work good work keep it up most islam related articles are terribly written and need serious overhauling,0 +you are a piece of shiit you are a pissant little creatin who has no purpose in life you graduated from a thirdclass college but that s better than your prosti mom who s uneducated you can t earn a thousandth of what sweet briar alums earn i saw your face you are so ugly you could never get into or pass at sweet briar with your monkey s brain,0 +self published and questionable sources about themselves an important lesson from wikipedia and i quote self published and questionable sources may only be used as sources about themselves and only if the material used is relevant to the notability of the subject being discussed it is not contentious it is not unduly self serving it does not involve claims about third parties it does not involve claims about events not directly related to the subject there is no reasonable doubt as to who authored it the article is not based primarily on such sources emphasis mine tiger by the tail,0 +this might be a better article if someone proceeds to discuss what the book entails,0 +btw it is sourced by you,0 +well that s the very definition of synthesis but anyway how do you explain that the modern day levantines including jew s are not black and have hardly any sub saharan ancestry sub saharan ancestry is at its largest in the southern part of the arabian peninsula and decreases as one goes up to what would be the holy land how does this make sense,0 +just let me know and i ll help thanks,0 +mythology in the encyclopedia article when asia argento was born in rome the city registry office refused to acknowledge asia as an appropriate name and instead officially inscribed her as aria argento i doubt that this is a fact that they denied to register a child by the name asia sounds more like something an artistic person would make up to sound interesting until this is verfied info i recommend remove this sentence,0 +hello barto i am curious as to what your motivation is in editing on the ron gostick page and are you the creator of it as stated on the talk page there you are correct in stating that internet sources which are few come from mostly the extreme right or left these are terms both i and ron himself would acknowledge as being artificially misleading characterisations and could not be ascribed to him or the associates of the canadian league of rights i could explain why here but i won t bore you with the details however i do reject the notion that everything must link to a wiki article i am editing at another page where there is no objection to verifiable external sourcesinternet or hard copy i will not object to so called left or right sources as long as there are sources from external links to associations and people connected to mr gostick the archives at the australian league of rights will have plenty of published materials on him league objectives and views or anyone associated with him this is one link that was removed in favor of david lethbridge s document hardly a non politcally unbiased character considering he represents everything the opposite of what gostick and the league of rights stood for i will try to help you find sources fair and credible in the near future doing edits myself i just want to know if you have a bias of your own or are willing to be neutral on some claims made about him i know well what he and the league of rights stand for as i have been involved with it for near yrs there is no denying he was anti totalitarianism and that includes anti zionist which automatically brings down the bogus smear of anti semitism and other such nonsense an editor should have at least some familiarity with the subject he is decidedly determined to write about i have notified paul fromm of the wiki page and link to him at gostick s page in case he didn t know it existed be aware that wikipedia has come under criticism for pages created on living persons edited by vandals with damaging false claims unknown to the subject of the article until much later one was a recent high level member of the kennedy administration and believe me he made a public stink about it living or dead i don t care to see this happen to anyone feel free to post at my page in answer if you wish do you have a wiki email or a private one,0 +rude of you to continually disregard my simple request please don t post about me thanks sinneed,0 +do not remove factual information without good reason the facts are valid the cai not only defeated this legislation but bragged about it in the quoted newsletter just because you don t like the facts doesn t mean you can unilaterly delete them,0 +bernie sanders i m not sure that straightinfo fully appreciates what npov means as exampled here what this comes down to is bkwillwm feels any comment which might make sanders look bad is pov even though the intent of the information is to present neutrality by giveng both sides at once it isn t about reproducing two opposite pointed views but instead giving all the pertinant information and letting the reader draw their own conclusions the user removed the pov flag without any consensus with other users and then dropped a few weasel wordings into the bernie sanders article advice and guidence would be very appreciated,0 +there probably other mistakes too my source of these events isn t the greatest if you know of a more reliable one than on this day com please mention it this is just my first step in a day update tomorrow i m going to check each entry for accuracy and then update the corresponding year and subject pages i usually find several mistakes or misplaced entries mar utc,0 +is lee strobel affiliated with the discovery institute he argues for id in the case for a creator,0 +protoscience and fringe science the current heading is pseudoscience fringe science and junk science to me that looks like fringe is in bad company to me fringe has a touch of scientific method which the other two are lacking another one is protoscience which i couldn t find at all in the article so i just added it to see also for the time being odd if this issue has not yet been on the agenda proto and fringe science being closer to mainstream and worthy of a separate treatment,0 +ihad sex with katy perry last nught and my mommy caught us right in the middle of it,0 +i am abusing one of our most abused editors who is it is it a big secret only for the clueful to know who is this unjustly abused editor pray tell talk,0 +to do list i have added you to a post about the to do list on my talk page,0 +thank you the barnstar of good humor for helping to calm the discussion on isms and belief systems at cfd with all your good sense thanks a lot,0 +future places of interest style position relative float center clear right border px border thin solid cornflowerblue background color lightskyblue align center australia align center nz align center egypt align center fiji align center usa align center canada align center brazil,0 +i clearly think you should stop to you defending a mstement you do not know or threating and defending some kid for saying hee hate s black people and hispanics i do not respect that,0 +how do you measure a river i know it s so random but is it gallons per second or something i know there s a way,0 +of course here it is,0 +they ll see your attempt to own the article and your pov warring,0 +technically shouldn t we list all of the obvious characters like naruto sasuke and sai,0 +names of the individual games putting in names of individual games seems a bit silly unless there s a list of games featured in the cube article explaining what they are,0 +football player statistics hi nathanco and thanks for your message of course the information you ve been adding to footballers pages is accurate but here at wikipedia there is a convention to summarise league competition only in the infobox where you see it at the top while cups and european competitions are generally displayed much further down the page no one is suggesting you are adding bad data but please bear the above in mind when making future edits thanks a lot for your contributions so far and we look forward to seeing many more of them,0 +also some grave omissions in here the sanfl and wafl grand finals get bigger crowds that many on the current list the average attendance of an sanfl game is bigger than that of gold coast united why aren t they included here,0 +good luck wikipedia suck s oh look at all your awards i m certain they make you feel good inside,0 +you re making no sense this is the second time you re addressing the things i ve mentioned wrongly,0 +thank you for that information well perhaps the best thing to do is to delete the redirect it has gotten views in the past month people are probably looking to see who has done this,0 +march utc i hope you get that extra tool so you can oversight your jokes nice to see you again k been too long oh come on that s comedy gold you can use that with the engineering students if you like bainuu,0 +december utc this is a joke right anorexia is an eating disorder it is not semi vegetarianism woohookitty cat scratches this refers to the section in the article that talks about eating disorders being linked to self reported vegetarianism veganism the proposal is that the section is moved to the semi vegetarian or vegetarian article because it doesn t explicitly mention veganism francistyers,0 +what how exactly was my edit to lil jon vandalism,0 +please stop if you continue to vandalize wikipedia as you did to hanukkah you will be block from editing,0 +and i have a small penis lalalalalalalalala,0 +other naturally occurring opioid antagonists from wikipedia the compound akuammine has also been shown in vitro to act as an opioid antagonist,0 +deletion discussion you may want to voice an opinion one way or the other at wikipedia articles for deletion incidents at independent parks,0 +aka david aka david seems obbsessed with trying to get me block when ironically his david account has been block for harrasment and trolling he keeps deleting the sourced material i added,0 +i have extended the information taken from the guy walters article to include his affirmation that he was not denying the quality of wiesenthal s efforts to bring war criminals to justice simply questioning the accuracy of wiesenthal s accounts of his wartime experiences and education i believe that this brings a better balance to this section,0 +self fullfiling prophesy you could not win on the merits of your arguments so you decided to trump up sockpuppet accusations well ever hear of a self full filing prophesy,0 +hi details of how to create a user account may be found here after you have created a user account you can join the football project by simply adding your name to this list best regards,0 +it doesn t matter anymore i removed all of the examples,0 +chill out dude talk,0 +hey it is my judgement in the matter of david tombe that you wikipedia editors do not like to actually receive criticism but you do like to dish it out in a nasty and abusive manner you have to change this attitude on your part your attitude is that everyone has to agree with the consensus even if it is demonstrably wrong in my experience david is absolutely right in what he says you guys are of course wrong you prevent correction of your obviously wrong errors by blocking this legitimate criticism that is why your efforts are worthless and wikipedia is just not usable as a source except to cite misinformation on a topic that is being disseminated every day i find dumb stupid or just plain false statements on wikipedia i think it should be banned as it is not accurate in any way that i can determine your blocking policy seems to be the source of the continued errors in wikipedia i dont reccomend any one using it for any reason it is just plain innacurate,0 +have you fallen on your head as a child you are pathetic jingiby,0 +what page was spammed by this user i don t see any edits or contributions made at all by anyone with this username,0 +for the record i was serious about running in the rfa i was not trolling or disrupting i was advised that i should run in the rfa to see how it was like and i did so there should have been more questions during the rfa if there was any questions about sincerity the rfa was not a joke it was serious i feel i should have been made an admin and then would have been the better example i felt that there was a possibility for confirmation and this should serve as example for other users to be afraid of self nominations to the rfa even when there is clearly a poll support for running in the rfa as i am truely afraid shocked and dismayed at the admins response as it seems now there is a new rule if the admin feel you are faking your rfa they can block you with zero assumptions of good faith,0 +salaam hakim is it possible you can lend be those books if you have the pdf version,0 +december hello and welcome to wikipedia your addition to indus river dolphin has had to be removed as it appears to have added copyrighted material without permission from the copyright holder while we appreciate your contributing to wikipedia there are certain things you must keep in mind about using information from your sources to avoid copyright or plagiarism issues here you can only copy trans late a small amount of a source and you must mark what you take as a direct quotation with double quotation marks and a cited source you can read about this at wikipedia non free content in the sections on text see also wikipedia referencing for beginners for how to cite sources here aside from limited quotation you must put all information in your own words and structure in proper paraphrase following the source s words too closely can create copyright problems so it is not permitted here see wikipedia close paraphrasing there is a college level introduction to paraphrase with examples hosted by the online writing lab of purdue even when using your own words you are still however asked to cite your sources to verify information and to demonstrate that the content is not original research our primary policy on using copyrighted content is wikipedia copyrights you may also want to review wikipedia copy paste if you own the copyright to the source you want to copy or are a designated agent you may be able to license that text so that we can publish it here however there are steps that must be taken to verify that license before you do see wikipedia donating copyrighted materials in very rare cases that is for sources that are public domain or compatibly licensed it may be possible to include greater portions of a source text however please seek help at the help desk before adding such content to the article of sources may not be added in this way so it is necessary to seek confirmation first if you do confirm that a source is public domain or compatibly licensed you will still need to provide full attribution see wikipedia plagiarism for the steps you need to follow also note that wikipedia articles may not be copied without attribution if you want to copy from another wikipedia project or article you can but please follow the steps in wikipedia copying within wikipedia it s very important that contributors understand and follow these practices as policy requires that people who persistently do not must be block from editing if you have any questions about this you are welcome to leave me a message on my talk page thank you i believe the source is wwf india if this is a shared ip address and you did not make the edits consider creating an account for yourself so you can avoid further irrelevant notices,0 +your submission at articles for creation muse jolin tsai album which you submitted to articles for creation has been created the article has been assessed as stub class which is recorded on the article s talk page you may like to take a look at the grading scheme to see how you can improve the article you are more than welcome to continue making quality contributions to wikipedia you may wish to consider registering an account so you can create articles yourself if you have any questions you are welcome to ask at the help desk if you would like to help us improve this process please consider thank you for helping improve wikipedia,0 +i m a little confused as to what you mean the blue shields can appear on even fairly minor roads route although a fairly major route in the western suburbs takes in all sorts of fairly minor roads which wouldn t even be notable enough for an article on wikipedia perth in that sense is not terribly different to its east coast counterparts orderinchaos,0 +omfg i lost by one lol,0 +wikiawards hi there just to thank you for being the nd participant in the wikiawards project unfortunately the project is causing some controversy and i need to know if it is worth going on i respect your neutrality but for now i really need to know if there s anybody in this world that supports my idea i truly believe it is a great way of developing wikipedia aug utc,0 +lesson learned i will always post on discussion forum if there is no opposition then revert provided a reputable source,0 +remember this at leadst remember don t hack into places where you re not meant to be because its not good for you you no what i mean,0 +july utc the reason i chose to rename the page to apr is because it was simply the first rifle developed in the series the primary model which was then developed into the specialized variants the police suppressed and rifles like with the arctic international rifles the aw was the first model and was the basis for the entire line up unless i am mistaken about the apr project timeline,0 +you are one of the worst page vandals i have ever seen your repeated vandalism of a user page shows what a pathetically insecure individual you are,0 +maybe rather stop campaigning my was the one to get the ukrainian political poster out of the article on russophobia i did not mind as this was quite a minor political party in ukraine this one is too quite a minor tv channel in russia with one of the lowest ratings in the country so no need to get exited,0 +hispanics have mixed with many races they have blond red heads blue eyed you name it see raquel welch who has spoken on spanish tv about being proud to be of hispanic descent it does not how hispanic any person has in them for someone else to make that determination to continue the discussion here is not the proper place please do it on her talkpage,0 +unfortunatly i have not been welcomed,0 +first if you create obviously bogus claims nobody needs to waste his time refuting the claim as applied to each excerpt you cut and paste one refutation is more than sufficient second your rationales appear to be shifting originally you claimed that the article contained creative facts and pov statements now you claim that a particular statement is unverifiable be very specific about what you find problematic citing the specific wikipedia policy given your contentious history with this article dating back over a year it is evident that your goal is to portray the exile as an uncredible source i believe you will reject any claims that undermine this premise regardless of their consistency with wikipedia policy consequently if you want to be taken seriously you need act cooperatively to resolve issues this means being specific in your complaints citing the exact policy this means no specious claims and this means accepting the article as undisputed if you don t have any specific issues can you abide by these conditions,0 +why did you delete a section in whisky,0 +carrer record how come it shows futabayama and akinoumi,0 +per the citations in the article drumming is particularly significant in the subject s life highlighting that is useful specific link of drumming appropriately highlights drumming in the absence of an objection from a regular editor of this article i think there s no reason not to leave the link be,0 +block me look buddy you dont even come close to being an admin on this site try to impress someone else why don t you pretend to be yanksox again,0 +i think it is james clerk maxwell used a color separation method to take three b w photos through red green and blue filters examples of photos using this technique by prokudin gorskii can be seen at http w loc gov exhibits empire,0 +it s a stupid project wikipedia should be a hub of information for all ages if it is filled up with porno articles with inappropriate material both encyclopedic and for the reading of the general population child or otherwise then it is restricting the audience of wikipedia surely i mean how can a source of information be free and accessible to all if it is ostensibly linked with explicit material most of which shouldn t be in the encyclopedia ps i know about wikipedia s no censorship issue but sometimes it goes too far,0 +nekomimi link there is a link in the article to nekomimi but this just redirects to the same page i suggest you either remove the link or make a page there or something because making a link to the page you re currently on is pointless,0 +obsidian forum community,0 +i m inclined to believe that a separate article is a good idea assuming the polish club meets the notability standard euro football organization isn t my field,0 +cheer why is cheer not included in this list,0 +la vierge au voile by raffaello sanzio from c rmf retouched,0 +is it to hard for u to write a personal block messgae btw a period of not long enough lol how random u may well block this indefinately because all i need to do is turn my phone on then off again and a new ip shall appear,0 +and as a show of good faith i ve actually updated the bio tidied it up a bit etc it definitely is our mission to have articles on notable individuals and this article undoubtedly falls within that scope your contributions so far are appreciated t c,0 +deindent sorry for kibitzing but i wanted to be fair to all points of view even those of the dualists so i tried to stick to presenting the thought experiments without drawing conclusions the thought experiment is this you have one observer the observer gets cloned into copy and copy either hubert yorick or star trek style the copies diverge either because of internal noise or because of the environment from a third person point of view this is an objective description of the evolution of a physical system there is absolutely no ambiguity about what is going on one observer becomes two if probed each copy would say that they were the initial observer before the cloning event but viewed from the inside if you are the observer getting cloned there is a very natural question you can ask am i going to end up being copy or am i going to be copy this question cannot even be formulated from the outside so it has no objective answer but it is subjectively very important if you are the observer this scenario is dennett s and to some extent everett s since the question doesn t even make sense when formulated in the third person perspective the answer to this question does not lie in the position and velocities of any atoms you might conclude that this question doesn t make any sense but in any case the answer to this question is bit of subjective information which both copy and copy know and which the original observer does not in the objective third person view there is no information gained you know that copy will say i am copy and copy will say i am copy to give an example of actual or and synth i ll go beyond dennett s example suppose that the copying goes on indefinitely so that the cloning keeps happening again and again then it is very difficult to say what it feels like for the observer from the first person perspective for example take a star trek duplicator and duplicate the observer and then duplicate each duplicate but add a twist the duplicator keeps the data from the first duplication event in its memory banks and makes a third copy in the exact same state twenty years later and starts duplicating that observer too in the same way and then it does so again forty years later then sixty years later what is the subjective experience from a naive counting perspective i should predict that i would be nearly certainly teleported in time to some distant future point because the number of future copies of my present state is vastly greater than the two present copies on the other hand the total number of observers descended from the current duplicates will always outnumber the observers descended from the future duplicates so perhaps the right counting is by the number of descendents at each time slice rather than by the total number of descendents of my present state even worse how can my subjective experience change depending on whether somebody millions of years in the future turns off the darned duplicator boltzmann s brain is a similar idea,0 +it is absurd for you to call this disruption this is an attempt at serious discussion i previously posted it on her talk page but she deleted it there where else am i supposed to post a concern i have about someone s conduct the length of the post is a measure of the seriousness with which i approach this rather than simply brushing it aside i would appreciate you or anyone else responding to my points about her comments on sourcing verifiability etc,0 +what i never meant to edit your page had several tabs open and clicked wrong one which is why i changed it back as soon as it happened,0 +september please do not attack other editors as you did here hiberno english if you continue you may be block from editing wikipedia,0 +this person needs reporting to the administrators noticeboard in order to get them permanently banned look at this talk page the whole page is nothing but multiple warnings about disruptive editing this is just a trouble maker who is nothing but a hinderance to the wikipedia community and the encyclopedia itself there s just no reasoning with them,0 +yeah i m sure very few women who have publicists and take their clothes off for maxim are terribly interested in privacy and nobody who announces on their website that they re cutting over services that people have already paid for and will mess with their online credit if they ask their credit card companies for the refunds they re entitled to is anything but a scam artist if you ve got a better term for somebody who announces they re keeping money for services they refuse to provide feel free to substitute it remember under wp blp since she announced it herself its sufficiently sourced,0 +additionally can anyone find actual documentation of rothschild travelling across antarctica so far i ve turned up a paltry two photos if i were going to travel across antarctica i d have filmed the entire thing and would have had thousands of photos taken i m not suggesting he wasn t in antarctica or that he didn t actually travel across but was there a documentary or something,0 +thank you for responding although you changed your vote from conditional support last time to oppose as your opposition appears to come from the five political divisions please note that i ve identified a source the only such source that combines everything under administrative divisions given that actual source i will concede the point in exchange for your vote as past experience shows regarding conradi i don t expect this will help,0 +it s the shut the fuck up if somebody changes them to the stf u then i m gonna kill them user pic business,0 +hello coren u moron i am still getting my lulz on don t worry about trying to ban my ip cuz i ll be on a new one in a few minutes i made many accounts from many ips so i can get lulz from all u wiki police homos like u ur an ass hole in case u havent figured that out u probably have sex with farm animals and ur mom is a donkey anyways imma kool dude and you re a lozer homo u can t ban me from editing as the internets are forevers moar lulz for me,0 +tlx unblock why have i been ruthlessly block after only one warning it was just a test,0 +if you leave a message here i will respond here unless you ask for a response on your talk page please leave a new message,0 +october utc this is a non trivial problem many perhaps most of the editors with the highest edit count are likely to have diverse editing habits i can think of two fa writers in that group one who also has an awful lot of categorisation edits another spends a lot of time on awb any analysis of those would need to work out the proportion of their edits that were of various types then there is the issue that you are not likely to have access to their deleted edits and that a few of those editors have opted out of being analysed but most importantly the accounts with the highest ever edit counts are not going to fully overlap with the currently most active spielchequers,0 +grady nutt article osiyo i don t know if you are currently watching the grady nutt article and i didn t think to notify you at the time but the article was a did you know featured article on feb thanks for starting it contributions,0 +you probably arrived from a redirect from dudette see just under the title under from wikipedia the free encyclopedia where it mentions the redirect see wikipedia redirect for further details,0 +consider yourself reported as you have offered no explanation for your reverts and have not engaged in dialogue about them and finally delivered me with an ultimatum that i will be block for making constructive edits i have reporte your abuse as an adminstrator,0 +june please do not attack other editors as you did here talk frances farmer if you continue you may be block from editing wikipedia you said you clearly have psychological issues this is an entirely unacceptable comment that crosses the boundaries of incivility into rude inappropriate personal attacks such conduct is not acceptable on this site retract your statement or go to an i,0 +thanks for catching this one keep up the good work rolls,0 +ms jackson lyrics andre yeah this one right here goes out to all the baby s mamas mamas mamas mamas baby mamas mamas yeah go like this chorus andre i m sorry ms jackson oh i am for real never meant to make your daughter cry i apologize a trillion times i m sorry ms jackson oh i am for real never meant to make your daughter cry i apologize a trillion times big boi my baby s drama mama don t like me she be doin things like havin them boys come from her neighborhood to the studio tryin to fight me she need to get a piece of the american pie and take her bite out that s my house i ll disconnect the cable and turn the lights out and let her know her grandchild is a baby and not a paycheck private school daycare shit medical bills i pay that i love your mom and everything but see i ain t the one who laid down she wanna rib you up to start a custody war my lawyers stay down she never got a chance to hear my side of the story we was divided she had fish fries and cookouts for my child s birthday i ain t invited despite it i show her the utmost respect when i fall through all you do is defend that lady when i call you yeah chorus i m sorry ms jackson oh i am for real never meant to make your daughter cry i apologize a trillion times i m sorry ms jackson oh i am for real never meant to make your daughter cry i apologize a trillion times andre me and your daughter got a special thang goin on you say it s puppy love arf arf arf we say it s full grown arf arf woof hope that we feel this feel this way forever you can plan a pretty picnic but you can t predict the weather ms jackson ten times out of nine now if i m lyin fine the quickest muzzle throw it on my mouth and i ll decline king meets queen then the puppy love thing together dream bout that crib with the goodyear swing on the oak tree i hope we feel like this forever forever forever ever forever ever forever never seems that long until you re grown and notice that the day by day ruler can t be too long ms jackson my intentions were good i wish i could become a magician to abracadabra all the sadder thoughts of me thoughts of she thoughts of he askin what happened to the feelin that her and me had i pray so much about it need some knee pads it happened for a reason one can t be mad so know this know that everything is cool and yes i will be present on the first day of school and graduation chorus i m sorry ms jackson oh i am for real never meant to make your daughter cry i apologize a trillion times i m sorry ms jackson oh i am for real never meant to make your daughter cry i apologize a trillion times big boi uh uh yeah look at the way he treats me shit look at the way you treat me you see your little nosy ass homegirls done got your ass sent up the creek g without a paddle you left to straddle and ride this thing on out now you and your girl ain t speakin no more cause my dick all in her mouth you know what i m talking about jealousy infidelity envy cheating to beating and d to the g they be the same thing so who you placin the blame on you keep on singin the same song let bygones be bygones you can go on and get the hell on you and your mama chorus i m sorry ms jackson oh i am for real never meant to make your daughter cry i apologize a trillion times i m sorry ms jackson oh i am for real never meant to make your daughter cry i apologize a trillion times i m sorry ms jackson oh i am for real never meant to make your daughter cry i apologize a trillion times i m sorry ms jackson oh i am for real never meant to make your daughter cry i apologize a trillion times,0 +i have a good knowledge of spanish and am also using my advanced spanish dictionary to help gentilicio doesn t trans late on the web and using my dictionary is clearly refers to demonym,0 +let me see if i ve got this straight at around o clock this morning an hour when sane people are in bed you decided to revert a number of my changes for absolutely no reason at all then your buddy sergecross threatened me with a badly spelled screed pointing out what a naughty boy i am ok i think i see what s going on here by your wiki stalking and provocation you hope to get me angry and call you names which as well all know is the worst crime ever around here then sergecross rolls out his fainting couch and proceeds to ban me for most of the remaining millenium justice is done and there is much rejoicing tell ya what friend from now on you can change any of my edits or indeed anybody s edits into anything you want trans late them into serbo croatian substitute sam the chowderhead for george w bush change the world football league article into a marxist treatise that asserts george washington and dick clark were gay lovers anything it s christmas and i shall be charitable you re welcome,0 +hehe i wonder how our georgian and german austrian friedns will react when we try to put stalin or hitler into their collages,0 +it clearly pov aside from whether or ot you share his beliefs i feel a rewrite is in order see kent hovind npov for writting of a new npov version of this page to later be merged in to existing page,0 +talk pages are also where some of us have to try and get uninformed idiot s to back down so we can make changes it s hard to have an impact on an article such as thistypical wikinonsense,0 +if you really believe they should all use full names i suggest you nominate chansung taecyeon daesung yunho changmin jaejoong yoochun and junsu for renaming clearly there was a reason those articles use the common title,0 +you re quite welcome glad i could help,0 +yes you got it the govt lied see the talk page for cselr ok i m lazy and not typing current page name they provided a business case summary but not a business case that the summary was created from i have provided the link to the index of papers produced mainly email acceptances rejections of meeting appointments btw so you can confirm that the business case was never provided there are no source documents for any figure contained in the business case summary some of the numbers are shown as incorrect from prior and post tfnsw publications such as with the capacity claimed by gb on the mr for the modification approval yet the actual modification report states figures that are lower i am one of community reps for the project and am attempting to ensure the facts are put out for people to make their own minds up about that is why i have tried to use as neutral descriptions as possible rather than emotive language the minutes for the community rep meeting with tfnsw are sanitised and questions asked by the reps are not recorded not responses provided to the questions the terms of reference open to the public to see for the community rep meetings state that all questions will be answered within a time frame yet tfnsw are refusing to do this i have since discovered that of the community reps are current employees of the state govt and is a past self proclaimed senior executive of tfnsw so not only do they not tell the truth they have also stacked the community reference group http w parliament nsw gov au prod lc lctabdoc nsf c c b b ca ee a e b f c fca cee c a opendocument highlight light rail link to index of docs produced for st call that is why there was the nd call for papers specifically naming the missing documents as that was the only way for the upper house mps to publicly state the govt has not provided what we asked for as they were supposedly only going to be in the confidential boxes that the mps could not talk about after looking at by making the nd call for papers stating the docs not provided in the st call they made it public the outcome they expected was what ended up happening,0 +ie thanks for moving the page back to where it belongs i m rather new to wikipedia and didn t know where to post the request wp rm would probably have been better than wp rfd,0 +june utc i would suggest quite simply that there are a few editors here who are either on the subject s shore team or part of his new pr firm simple math this wiki page doesn t get a lot of hits probably even less than the subject s own web page for neutral wiki editor to spend as much time and effort well i have my doubts we wiki editors do not appreciate you using wikipedia as a promotional tool buy an add from google,0 +strange joke an anonymous editor made this edit a while ago and claims that is was not a joke considering the user s talk page i thought it would be better to direct the user here rather than to discuss the question on our own,0 +the u s marine band website says a time not sure where else to go if the u s government doesn t have the information,0 +block your ip address and in fact the entire range of ip addresses owned by velocity telephone inc has been block if i ask you a serious question relating to your future on wikipedia and then you revert it telling me i m trolling and that i should be block then you don t deserve any sort of editing privileges whatsoever on wikipedia this is an encyclopedia not a soapbox elkspeak,0 +quick question when i look at my watchlist or the history of the page it looks something like this wikipedia sandbox talk my question is what does the mean sometimes it s red for a negative or green for a positive all help will be appreciated,0 +mark your semen is not viable were you to procreate the children would be homo sex s do no procreate mark enough is enough,0 +i agree i certainly agree that the last paragraphs should be removed as i ve argued above i m agnostic on the rest but agree that a full re write should be undertaken by a knowledgable editor,0 +i disagree the fact that it used to be single party government is largely an irrelvance the important thing is that it is still a constitutional monarchy parliamentary system that allows for both coalitions and majority rule that hasn t changed and so to say that because we currently have a coalition of w hate ver party means that the position of deputy prime minister should be included alongside the heads of state and government is false i am all for mentioning nick clegg as deputy prime minister in the article around the same place david cameron is currently described as prime minister but to put clegg alongside the queen and prime minister on the basis of it being a coalition government is not right now if the job were constitutionally defined as being the prime minister s second in command and if cameron were to die resign suddenly clegg would become prime minister i would completely agree that he should be there but it isn t clegg may be deputy prime minister but he is not deputy head of government and so he should not be put alongside the head of state and head of government,0 +giano i listed the specific issues above repeatedly on request irpen has gone beyond reasonable inquiry into the nature of the problem into repetitive pointless badgering,0 +i am not far right i am jew ish not related to gamergate it is bizarre and idiot ic and i hate both far right and far left you are far left so i hate you preceding unsigned comment added by,0 +why repeat myself it s not my problem if you want to pretend i didn t read it machine elf,0 +chadic languages just a heads up there are no chadic languages spoken in chad so don t revert the article on chadic languages,0 +npvo is mostly just about the edit left by if someone with some knowledge of this topic would clean it stylistically from this fateful day shudder and then take out the snide quips that would help,0 +your article andrew diey has appeared in the dead end pages list because it is not wikified please consult the wikipedia guide to layout for more information on how to write a good wikified article i would encourage you to revisit your submissions and wikify them thanks and happy editing,0 +image requested in collin county texas of headquarters corporate drive plano texas united states,0 +getting what specifically so far busby has been right about most things his detractors are from the nuclear industry he is a recognised expert and not as far to the extreme as you claim wp honesty wp notscandal i am dismayed why you continue to attack this man especially when your identity is known this leaves you wide open for proceedings as busby has apparently started to do nuclear and it s radiological effect are now understood busby has significantly contributed to internal emitter debate this the central argument of second event theory modern research has now accepted this damaging form of exposure as it was previously ignored you could say in fact that busby was ahead of his time and received much criticism for it,0 +hi trainheavyduty and welcome to wikipedia welcome to wikipedia i hope you enjoy the encyclopedia and want to stay as a first step you may wish to read the introduction if you have any questions feel free to ask me at my talk page i m happy to help or you can ask your question at the new contributors help page here are some more resources to help you as you explore and contribute to the world s largest encyclopedia finding your way around table of contents department directory need help questions a guide on where to ask questions cheatsheet quick reference on wikipedia s mark up codes wikipedia s pillars an overview of wikipedia s foundations the simplified ruleset a summary of wikipedia s most important rules how you can help contributing to wikipedia a guide on how you can help community portal wikipedia s hub of activity additional tips please sign your messages on talk pages with four tildes this will automatically insert your signature your username and a date stamp the button on the tool bar above wikipedia s text editing window also does this if you would like to play around with your new wiki skills the sandbox is for you good luck and have fun,0 +thank you for pointing out that anne of widnica wikipedia wiki has only hits not as many web pages mirror wikipedia content and not all pages acknowledge that allowing the further propagation of such or terms is clearly unacceptable when looking at google scholar anne of swidnica has at least one hit compared to none for the diacritic version or the polish name and that refers to the book medieval germany an encyclopedia already mentioned above which on page uses inconsistent naming by two different authors while elsewhere preferring schweidnitz google scholar with hits for anna von schweidnitz shows that this is the proper name used internationally by scholars discu,0 +about me my other accounts are tavrian and bogdan my name is maksim bogdanov and i live in slovenia i play contrabass and bass guitar i m a fan of funk and rock music and britney spears ofcourse i have one sister and a little nephew recently i finally completed four year music high school and will hopefully continue my education in music academy of ljubljana,0 +taxman and kuru you have absolutly no reason to call that low content see your own promoted websites superretirementplans com it has absolutly no content quality,0 +page was once deleted for lack of notability but now it meets at least two of the required criteria the rotation nationally by any major radio network and the nomination for a major music award thus i created page again,0 +i really think we should use,0 +because israel confirmed its participation in esc so this section is no longer neccecery,0 +i don t like ethnics,0 +archive february november the wikipedia signpost february read this signpost in full single page unsubscribe the wikipedia signpost february read this signpost in full single page unsubscribe the wikipedia signpost march read this signpost in full single page unsubscribe the wikipedia signpost march read this signpost in full single page unsubscribe the wikipedia signpost march read this signpost in full single page unsubscribe the wikipedia signpost march read this signpost in full single page unsubscribe the wikipedia signpost march,0 +pps aha found the brothers fuck uhara shinzou and fuck uhara rosou and easy to find too once i encountered of whose existence i hadn t heard till this evening,0 +did u ever for once think that it was a general remark about truth did nt u imply i was unreasonable this is y we must assume good faith does power corrupt or r some people immune from corruption last time i checked we were all human save one reptilian admin if anything it is bad timing ge wiz stop diluting the term and save it for the real devils,0 +i think if its going to be restructured it should be done as a userpage first because there are quite a few controversial areas talk,0 +hey the draft is properly laid out which is good we got inline citations and most promotional content have been removed however the draft needs more reliable sources linking towards the subject by reviewing the sources many of them do not mention language technology centre so finding sources which provide significant coverage on the subject is ideal best gt,0 +if not please rad recommendation here,0 +sevco scotland are the club you ll soon see sevco are the company whos shareholders own sevco scotland which will be the club obviously they won t be known as sevco scotland they will be called rangers fc or rangers or rangers football club as they own the right to those trade names they ll also probably re name themselves something rangers like for example the rangers fc ltd but they are a club or will be once they get the license,0 +thanks that s three of us now and counting but you aren t abusing anything that is a common legitimate and meaning of the word you have correctly identified the problem word as timb did something which greg l still refuses to accept and continues to edit war about,0 +i really really struggle to cope with users like logan and i don t think he was right,0 +dubious claims about clearly non trans genderd people this article lists a whole bunch of people whos trans gender status is clearly wrong and others for whom it is highly speculative this isn t a list of people who kinda sorta there s a small chance maybe are trans gender the ones who cross dressed for some nefarious deceptive purpose and not as a life style choice clearly can not be classified as trans gender and should be removed from the article completely the fact that mythological figures such as achilles were even added in the first place says a lot about the pov pushing of the people who supported it the only mythological one who might be considered trans genderes is guan yin the real life figures who did it to disguise themselves to avoid something e g military service or even to get into something where women are discriminated against they did it for deceptive purposes as well so they can t really be considered trans gendered the pope one is laughable and definitely should be removed the one about joan of arc is based exclusively on an accustion from a unreliable source if they accused her of being a witch should we have included her in a list of witches too also i d like to see an authoritative source showing that she was even accused of it as it seems that it s most wikipedia ripped sites and lgbt websites that site that as fact and what are trans vestite tendencies in reference to ed wood you need to start citing sources or i m just going to start deleting them that goes mainly for the historical and mythological figurse section maxwell klinger wasn t even a real trans vestite he only did that so he d get a section and get kicked out of the army anyone who watched the show knows he would try all kinds of crazy stuff to get kicked out under the guise of being mentally ill this phrase describing the character is also very odd although a trans vestite he loudly denied any charges of homo sex ity what s the association between the two also it appears they re using a warped definition of trans gender here i ve never heard a definition that would automatically include cross dressers as if that automatically means they identify with the opposite gender rather than just enjoying the clothes i m sorry but this overly broad and incorrect definition of trans gender is obviously an attempt just to make the list as long as possible june utc,0 +i just have deleted russian salad myself further discussion is welcomed here or on the article s talk page,0 +we may work this quote in later the real goal was to seize control of party apparatuses in states that rely on caucuses with that in hand paul s organization can direct party funds and operations to recruit and support candidates that follow paul s platform and in that way exert some influence on the national republican party as well potentially for years to come ron paul wants to influence the republican party and america for good,0 +ok i ve got both leads in the discussion please make your case in the discussion why his lead is not good for the article thanks,0 +the statement is a very broad brush stroke and a generalization do any historians make such a statement it would seem to be the type of statement that would require a reference if it does not have a reference is there another way of writing the statement that is supported by a reference stormrider,0 +street gang mr davis thanks for your note on my talk page i really appreciate it and it s an honor to receive communication from the author of such an important book as this article s creator and main editor i m sorry that you thought the review section was so negative please understand that it was not my intention to present it that way or that i was in any way trying to disparage your book in my rush to get the article published i did a google search and those are the reviews i found also please understand that this is a wikipedia article and the article as it now stands will never be complete it s a work in progress i thought an article about street gang was important enough to get out there i am by no means a professional writer so i m certain there are all kinds of weaknesses about it so i depend upon the feedback of other more experienced editors i would ve thought that the other sections of the article demonstrates my respect for you and for your work i appreciate your feedback something i always welcome as a wikipedia editor if you are aware of other sources that i wasn t able to locate please send them my way on my talk page i ll repeat this message via your webpage to ensure that you see it you should also know that i ve taken it upon myself to improve all sesame street related articles on wikipedia it s a big project and a great need for example sesame street at one point was actually a featured article but it was recently downgraded for some really good reasons it s an unfortunate state at the current time your book came out shortly after i took on the project so it s been a boom for me i thought focusing on the history of the show was a natural place to start so your book has been a valuable resource i ve already started working on this article history of sesame street and if you look at the reference section you ll see that i ve used your book extensively it s also a work in progess and no where near finished my goal is that at least this article get up to featured article status by sesame street s th anniversary in november i can t tell you how much your book has helped me on a personal level i wanted to tell you how much i enjoyed your book it was a fun read and immensely interesting i was brought to tears many times especially when i realized while reading about all that joan cooney and her team did to get the show on the air see i m turning this year which makes me old enough to be the first audience that watched it i had to put the book down to compose myself when i realized they did all that for me i appreciate learning about the struggles they all went through to affect my life so profoundly and now the life of my own children who are severely developmentally disabled and love the show as much as i did and still do i believe that sesame street deserves high quality articles on wikipedia and i ve taken it upon myself to help accomplish that if you as the ultimate expert could assist me in that goal i can t tell you how valuable that would be again thanks for the feedback and communication,0 +hahaha you thanked me i know when someone is being deceptive like you mister i know i m but seriously any need,0 +here s the link to the deletion review if you d like to participate,0 +patrick carnegy and jill gomez i see nothing wrong with saying his her partner however in this case i m not sure whether or not they are married as some sources say they are do you know anything about this of course if they are married ms gomez is now a countess talk,0 +this is ridiculous the user i m speaking to also said i was being disingenuous why don t you ask him to focus on the content as well i took the initiative to start a discussion with someone who contested the content that i was adding to the article yet he didn t want me to address him then what s the whole point of the talk page in the first place who else do i address this is really getting ridiculous,0 +you wanted the one with the email or the nd one simons,0 +batman no worries about being heavy handed you don t live on the net for this long and not get a thick skin i was pissier about it before my coffee but i see the point and it was really just a be bold attempt that flopped i am glad you understood i didn t mean it in bad faith at least that matters more to me right now i still think it should be it s own article since i think the discussion stands on it s own legs but i cheerfully agree to disagree this from the chick who also thinks nightwing should be renamed dick grayson and grumbles about that a lot paper games i had a road race card game as a young un that seems vaguely similar it s probably on the other side of the globe though along with most of my comics p,0 +it s not really for us to decide what is a conspiracy theory but indeed the article rather confusingly mixes conspiracy claims and factual information about jew ish leaders in the bolshevik movement there was a recent newspiece a quote by putin times of israel putin first soviet government was mostly jew ish apparently some people feel such quote is conspiracist whereas others say it s just a statement of a statistical fact in any case the option is the article shouldn t imply any notion of jew ish participation in the early communist movement is a conspiracy theory however i m not sure if that general topic jew s in the bolshevik movement should be covered in detail in this article,0 +wow someone sure is aggressive xp,0 +you claim yet again that the text for example india based iyogi was reported by infoworld to use scare tactics and install undesirable software is not supported by the sources this is incorrect as both sources support both these assertions brian krebs a former washington post writer who now operates his own blog krebs on security tested iyogi himself and discovered that the company was indeed using scare tactics to coerce users into signing up then immediately went into my control panel and deleted what iyogi put on my computer and iyogi was using support calls to aggressively sell annual subscriptions proceeded to install an iyogi tune up tool called pcdiagnostics it took less than seconds to find this information in the sources provided and yes it is absolutely appropriate to include sourced information in wikipedia articles even if it happens to be negative for a certain company contributions talk,0 +jung and einstein in albert einstein was a pupil at cantonal school in aarau switzerland in after school in switzerland einstein renounced his german citizenship carl p jung was born in in the swiss canton or county of thurgau while jung worked on wandlungen und symbole der libido psychology of the unconscious tensions grew between freud and jung frank p geyer continued to serve as a detective until august when he resigned he had been trans ferred to the th police district in the united states detective geyer had arrested james anderson whether this is the same anderson mentioned in detective geyer s work is non determinable in tensions between the two psychologists came to a peak in albert einstein acquired swiss citizenship and completed a scientific paper obtaining a teaching position at school in schaffhausen switzerland the fbi file on einstein came to light in when robert alan schwartz wrote an article on the subject for the nation magazine between j edgar hoover and john hutchison democratic rights didn t stop with mccarthy s downfall nor with the demise of so called notorious j edgar hoover yet for years zero point energy according to hutchison is obtained from the quantum vacuum hutchison claims on scientific phenomena are regularly featured and discussed by various media coverage john hutchison s claims of inventions and discoveries of a variety of phenomena are like nasa the fbi should do an article on nasa and their non determinable webers i do not find it too surprising schwartz once more wrote about not only frank geyer but albert einstein with not too much said about carl p jung during these years around the turn of the centennial,0 +msa garratts hi the idea about an article is a good one but unfortunately you ve started out with an error that is understandable as the subject is complex the wagr first imported the m class garratts in these are very important locos because they are the third class of garratt to be built and the first main line garratt showing the potential as a heavy freight hauler they were followed up in by the ms class only difference being the ms class were superheated so they were also the first class of garratts to be the subject of a repeat order both classes were built by beyer peacock the msa class were constructed in by the wagr in their own workshops apparently a copy of the ms class they did seem to have some cosmetic differences the story does not end there but moves to victoria the vr g class apparently is copied from the ms class the major difference is the frames moved outside so as to accomidate the reduced gauge outside framed garratts are very rare even in the smaller gauges but wait there is more no not steak knives the design was used again for the australian portland cement s line near geelong the first loco being supplied in and the second in the boiler from one of these locos is used on the restored g so in conclusion the design was constructed over a period of years used on three railway on two gauges and built by two manufacturers with if i ve added it up correctly locos constructed personally i think the article should cover the history of the design and include all the varients some work would be required to hunt down variations though so yes i think it does deserve an article please feel free to use the above if you wish cheers michael,0 +please pardon me if it s a stupid question as i haven t really done a lot of work with categories in the past but does that sort of change really need a cfd i think that if i had found myself with a similar sub cat idea i would have just gone ahead and done it or more likely thrown it at a relevant project talk page to see if there were objections of course maybe you weren t able to get consensus at the project hence the post to cfd again sorry if this seems stupid as i branch out into new and different tasks i just like to understand the thinking of people who are engaged with them more regularly i find it helps me with my own decision making,0 +i made the account iamnotsteve yesterday iamnotsteve,0 +afaik they re as separate from the pound sterling as the faroese krona is from the danish krone i agree about the isle of man pound though,0 +anyone else remember dime talking about blues saraceno as a major influence abbott mentioned this in a guitar for the practicing musician article circa it seems like this should be included in musical influencesdime wore a plaid patch tattoo in honor of the guy,0 +note thanks for the note i don t use socks in the sense that you should be concerned with see wp socks legitimate uses t e,0 +merge with european somebody proposed a merger with european i support the proposal,0 +freeland pa you are really really gay for reverting my good edit to freeland pa stupid liberals tilde tilde tilde tilde,0 +irs notice hello there this is the irs you owe us in unpaid taxes kristina gonzalez inland revenue service http w irs gov ffea d,0 +this man deserves another shot at becoming a federal judge given all his hard work since coming to america those dirty democrats had no right to gripe about john roberts and sam alito being two more white guys after what they did to this man i remember reading some complaints by those dirty democrats and liberal latino voters about bush failing nominating a hispanic to the supreme court and i thought to myself well what the hell about miguel estrada you schmucks the man received a unanimous well qualified rating from the american bar association and yet the democrats filibustered him they claim he didn t provide enough information about his views but i think what really bothered them was the fact that he is a conservative hispanic this just goes to show you what those dirty democrats really are whenever blacks and hispanics step out of line by espousing conservatism,0 +user talk grizzlybear please don t add crap to my talk page again i don t remember asking for your opinion,0 +why did you delete afrojack with the afros and the jackos and the ha ha ha,0 +the defeat of roydosan well done my fellow greeks we have defeated roydosan and now he runs like cattle heil,0 +tree topology grouping aplacophora and polyplocophora into crown group molluscs makes no change to the position of the halkierids the topology is not changed as there is no branching order given talk,0 +can be done through excessive masturbation,0 +legal troubles getting arrested at a peaceful protest once hardly qualifies as a legal trouble let alone legal troubles,0 +hey maybe you should try it your candidate s spiritual mentor is a jew hating faux christian black supremacist,0 +note that this was not disruption but was a genuine vote a separate account was created for this as the proposer seemed to have done the same it was a little joke you see,0 +i think so good luck,0 +justin likes it in the behind,0 +well i for one really like the new intro still reading the rest,0 +great this is interesting we formed our own geneologies during the british raj did we singhs we dont have a reference by any source during any rule referencing our royal ancestry hmm how about this link by an independent mohyal site which makes reference to e g my own ancestor raja mal becoming a muslim and his ancestors raja dhrupet being exiled from ruling the mathura state and asserting his geneology of being a son of janamejaya for those singhs who didnt know janamejaya who was the great grandson of arjun panda the hero who famously defeated and shamed the opposing duryodhan s army in the mahabharat tahts who http search q cache udscfrzzmbcj w mohyal com gms m member htm raja mal janamejaya hl en client firefox a it is the th paragraph i believe and that is from an independent source recording it s own historical references which has no interest in any particular anti or pro agendas as much as here at the moment i apologise for disproving you guys here but it is a quest for the truth afterall right dab you have a lot of patience for keeping with this article so far and thank you for being open minded and dedicated enough to see past the rhetoric and abuse here some of us here do appreciate your efforts w hate ver the outcome,0 +jehochman you say you love the project i wonder if you realize that the project would benefit from having more editors as bytes and less users as jehochman so jehochman for the sake of the project you claim to love please leave it alone,0 +leaving messages for other users hello theeuphoricsir welcome to wikipedia i noticed you left what looked like a thank you message on the page did i mess up,0 +controversy your point here is well taken but for the fact a person can be well aware of possible distinctions in terminology and still call a magazine a clip in actuality it is the firearm experts that insist on a controversy by way of insisting on their terminology in other words because they have taken issue with the layman s wording they have indeed made it controversial and not the other way around so while the distinction in wording may not be controversial within their circle of buddies they are in fact responsible for the controversy m w dictionary when i say the dictionary clearly i m referring to the dictionary i cited before in this case m w i am a cognitive miser like anyone that takes short cuts when i can just as you shortened it to m w rather than grasp at straws in dissecting ones arguments let us focus on the big picture when we know what each other means i agree the dictionary isn t for giving an exhaustive description that s what encyclopedias are for however in this instance it does shed some light on the controversy as it does indeed define a clip as also a magazine the reason for including it is not to give people a better understanding of the differences between types of clips or the different types of magazines the purpose of including it is to show the other side of the controversy and according to my research within wikipedia this is entirely acceptable agreement clearly some people don t agree with m w just as you and i don t agree with saami s statement that people sometimes refer to cartridge clips as magazines the experts on weapon s have this fact somewhat backwards and are incorrect as they should state that people refer to magazines as clips just because you and i disagree with saami s statement doesn t mean it should be taken out as a reference and i d never suggest that what i suggest is a compromise i agree with you about the references regarding remington and marlin as that does seem to fall under or m w however doesn t fall under or as it is a published source and being a leader in its industry it could be argued is the authority on word use do you have any suggestions on how it could be incorporated so as to show how this controversy is perpetuated without saying it s wrong because it clearly isn t according to common usage i m thinking something like this clip technically defined use to describe magazine is controversial however m w defines it as such this allows readers to see their is a difference in terms there is a controversy and why it potentially exists or is perpetuated i think this is fair note well that i never attempted to remove any sources that backed up what you re saying here i m not interested in destroying your view only presenting both sides fairly,0 +support if standard chinese is indeed the most common english name which the opposers even seem to acknowledge then rename it per policy for titles wikipedia is meant to reflect common names or what reliable sources largely say if the name seems unfair or pov then it s not wikipedia that s unfair or pov it s just the way academic zeitgeist is it s not up to us to correct it,0 +constitution of may rd is an idiosyncratic construct understood by poles this is not true constitution of may rd is used at least in us and probably in other english speaking countries english language source bare this usage out see below,0 +for the record i believe that qg is the last person that needs a condescending lecture like that resonate,0 +the wikiality of the elephant population yes i heard that somewhere soon it will be true unless you unleash the almighty power of the stop hand lol,0 +name change it should be noted that ean ucc and the vast majority of it s member organisations around the world changed it s name to gs during the first few months of the global organisation is now called gs and the national mos are style as gs country name gs uk gs us gs france etc you will see this reflected in the ean ucc website,0 +no violation copied the almost same comment from an and added some for getting a quick response with all due respect i think it is a clear violation on rr and civility according to wikipedia three revert rule an editor must not perform more than three reverts in whole or in part on a single page within a hour period a revert means undoing the actions of another editor whether involving the same or different material each time moreover i m getting a threat by the editor why is he free of any sanction,0 +resentment in france the perceived preference of the british navy for evacuating british forces at the expense of the french led to some bitter resentment are you sure about that the article states the bbc said they have waited until the very last man so it means everyone was rescued the french article states the french resentment vis vis the bef came from gort s refusal to launch a traditional counter attack as planned by french commander general weygand gort wanted an evac as he claimed it was inevitable in the medium term the british chief of staff supported gort and the british operation was launched instead of the french plan,0 +comments why the club name have praia name it near to the beach or related to cape vedre capital tc,0 +it says in the aiv header that warnings must be recent bolded ip was last warned days ago sorry i know i put i miscounted days isn t recent so yes in theory your logic statement is correct ips are used by several different people so it would be unfair to penalise them all besides this wasn t even blatant vandalism if vandalism at all maybe an errant test edit but anyway enough to merit a level warning in any case if you look through the archives at wpt aiv you may find a thread on what recent means there have been several in the past b hotep talk,0 +that s all interesting stuff surely it s been considered by the media pundits academics re inserting the info into the article cheers imperatrix mundi,0 +drn listing i ve reverted your restoration of the azerbaijan map case because i now see that it became archived because it was not properly filed in the first place cases must be filed through the drn request form not manually or our archive bot will constantly remove them from the page moreover now that it has been off the main page for some time other users need to be re notified and i also note that other editors have joined in at the article talk page who were not listed before all in all it needs to be relisted via the request form if it s going to go back up at drn regards talk drn coordinator,0 +that was the obligatory warning,0 +and his many many socks,0 +when did the war start the lead says it started march but later in the article it says at pm est am baghdad time on march the iraq invasion began with a citation of the globalsecurity website the actual webpage is here then later in the same section it goes back to in the invasion phase of the war march april which one goes and which one stays is there a reason to doubt the globalsecurity site i m hearing a lot about today being the anniversary of the invasion and then i check here and it says the th what should we do,0 +user metalvayne and blocking topic ban hi berean hunter a week ago you block msg me,0 +i second this if you have sources which talk about the importance of konigsberg to old prussians and masurians the stuff on lithuanians can be combined with the stuff on the poles and i already proposed changing the name of the section to poles and lithuanians in konigsberg then please add them and i ll try to help with that myself,0 +hm that s exactly what pedophiles do use the internet to communicate in order to obtain a great deal of pleasure,0 +preceding unsigned comment added by talk contribs august fuck off,0 +neffe s son jalen we love cole about this http en wikipedia org w index php title keyshia cole diff next oldid do u know y neffe gave her son the name cole not her last name or his dad s last name,0 +nope you can t use the situation as a sort of blackmail to behave inappropriately i won t allow you to because i am going on vacation for the month of december anyway i don t really care what is wearing thin with you your butting in with threats is inappropriate i won t put up with the blackmail either you chose to get involved on hybrid s talk page and start trouble and that s what you got bye,0 +interesting just dig around in wikipedia and with luck you might be able to find a lot about someone who s vandalizing a page you can also find the history of anyone who has been mucking about in wikipedia i just dug up some interesting background on one of the muckers on the poppers page,0 +the link directly above says where it s copied from talk,0 +zoo tycoon i should really think before saying things i kind of accused you for being rude at that guy i won t do that again i m sorry,0 +yeah he said he d never heard of ferrara what a crook the name bad lieutenant just appeared to him in a german sausage,0 +giving links you only confirmed in lithuania is used lithuanized version i knew this but this is english wp what s the reason of trans literation,0 +i m not sure what your position is to clarify it answer these four yes or no questions do you think the moon s orbit is concave inward do you think the moon s orbit is concave outward do you think the moon s orbit is convex inward do you think the moon s orbit is convex outward,0 +request for help an unregistered editor from a single static ip address is repeatedly trying to remove a section called reputation in the article about the southwestern university school of law i ve tried to reason with him her on his her talk page see let s talk but s he doesn t seem to want to respond he has also posted some nonsensical things on my own talk page in response to my reversions in which s he claims ownership of the article could you try talking to him her i m really not sure how to handle this thanks joshkagan jrkagan talk,0 +sorry hi kukuwesene i have unfortunately had to suppress some of your edits because they reveal too much personally identifiable information about you we have a policy of protecting editors safety by hiding such information if they share it i m really sorry about having to suppress your edits and i know it s annoying but it s for the best please don t re add the information for some useful information on privacy and safety you can take a look at wikipedia guidance for younger editors and wikipedia on privacy confidentiality and discretion thanks and sorry for messing about with your pages talk,0 +following up on cheetham and winkler as cited it s not clear to me that mr rashid s comments would meet a high standard of inclusion either as an academic or as an islamic jurist this isn t enough to say that muslims argue anything stating that rashid argues it would just expose its triviality i m going to remove the whole passage unless a better foundation can be found for this discussion as for all i know one can,0 +hello there you still around hey was just hoping that you may still visit here please leave a message if you are,0 +please read my reply,0 +are you a paid pr small time editor of these fake women lol who potray false info on wikipedia misleading people going by your name you sound japanese so what do you know about lakshmi manchu she was born in modugulapalem in chittoor on october th married twice just go research your facts first and make an effort to publish some true facts instead of deleting the truth how pitiful also it is not allowed to hvd wiki pages without dob so go find your facts first yamaguchi or whoever u are,0 +unbelievable you went ahead and removed the section unilaterally without waiting from comments from other editors i m warning you wee abstain from any more disruptive and borderline vandalism editing,0 +you are free to read wp npa you are also free to read this version the core reasoning why it s an attack is in both versions,0 +weasel words aren t sources the article doesn t cite any,0 +strongly opposed whoever says britain is multinational it would look too much like someone trying to push a political agenda specifically one which pretends that there is no british nation we cannot let ourselves fall into that trap,0 +so because edwards views duke favorably and blitzer doesn t that changes the fact that duke has appeared on both of their programs hmm interesting logic,0 +and you guys really actually have no sense of humour like as in really i thought that was just something people said about oh so serious sciency types especially those foolish enough to pound upon equine corpses endlessly odd thing is i m a sciency type with shit loads not just a little shit loads of publicly recognized credibility to back it up anyone interested in proof of that need only message me privately somehow i d be glad to let you in on the experience that is lazord d if i like you and i definitely have a sense of humour it s one of my favorite traits man you guys are grey and lifeless if this is any indicator and my experience as a sciency type d d is in the actual real world you know the place where you have to look people in the eye when you debunk their ridiculous opinion theories brain farts are what i like to call them fits better than the usual meaning most of the time lol with verifiable fact never had a problem with that you,0 +re your message i suggested that you bring up the issues you have with the article on the talk page because then you can discuss the issue with other interested editors on fixing specific things if you bring it up somebody will likely respond to you and work with you regarding the issues that you bring up as for why the muslim article is protected since i was not involved in setting the protection i don t have an opinion on it again if you have an issue with the article bring it up on the article s talk page,0 +this track listing is not from this films soundtrack,0 +northern lights something your names to long it s exactly that kind of unthinking response oh don t attack other editors how then is someone supposed to call a liar a liar if you check up on jehochman you will find that it was demonstrated that he deliberately lied with the intention of misleading yet he is still here check that one i ll show you the lies of the others,0 +block because petersymonds is a douchebag see image,0 +the military history wikiproject newsletter issue xiv april the april issue of the military history wikiproject newsletter has been published you may read the newsletter change the format in which future issues will be delivered to you or unsubscribe from this notification by following the link thank you this is an automated delivery by article moves could you explain your move on talk mm ml field howitzer in general it is good practice to propose a move on talk first to allow interested wikipedians to express their opinion about it i have answered there the military history wikiproject newsletter issue xv may the may issue of the military history wikiproject newsletter has been published you may read the newsletter change the format in which future issues will be delivered to you or unsubscribe from this notification by following the link thank you this is an automated delivery by battleships et al hi morse just wanted to draw your attention to the discussion on separating the dreadnought section out from battleship see the bottom of talk battleship for more details many regards the military history wikiproject newsletter issue xvi june the june issue of the military history wikiproject newsletter has been published you may read the newsletter change the format in which future issues will be delivered to you or unsubscribe from this notification by following the link thank you this is an automated delivery by american holland class submarines on july did you know was updated with from the article american holland class submarines which you created or substantially expanded if you know of another interesting fact from a recently created article then please suggest it on the did you know talk page t c spirit of st louis m morse there is a newbie editor that has insisted that the flight of the spirit of st louis was the first non stop flight across the atlantic and has constantly reverted the article to eliminate the word solo he has not responded to the discussion page or to the note left on his talk page these are his only contributions to wiki articles and he continues to make spurious claims see he will not stop the reverting although he has been politely informed that constant reversions without explanation on the discussion page is not considered appropriate asking for help here thanks i put the article on my watch list and i ll keep an eye on it the solo thing is significant name ristitaipale stop delete old finnish names from article k rsn s i know that you are swedish and you wanna distroy old finnish name of korsn s history hello as you might be aware the aforementioned at the very most two editors insist on continually vandalising not only the article on korsn s but additionally the articles on k kar and lemland in so doing violated wp rr for both lemland see here and http en wikipedia org w index,0 +get your facts right you wrote this on revision history nonsense majority of that was cited to and you are at rr back off and work at talk check the references properbly sleeboom margaret academic nations in china and japan routledge uk isbn x p takeru akazawa and em ke j e sathm ry prehistoric mongoloid dispersals new york oxford university press so who s being nonsense now talk march utc,0 +wikipedia featured list candidates list of awards and nominations received by beck talk,0 +i did not say i agreed with them but i draw attention to the fact that the people you malign shupe bromley barker wilson introvigne lewis richardson palmer wessinger ammerman melton tabor gallagher chryssides etc are leading scholars in this field writing for top university presses and that their views are in the majority in the field,0 +my actions are not disruptive why you re saying this is way over reason to explain since i ve provided plenty of reliable sources i am not vandalizing and i tried to reach a resolution with the author therefore you do not know what you re talking about you re in danger of being re evaluated by wiki if you continue to defend a sperson who clearly is too stubborn to work with others on wiki and who deletes very reliable sources such action speaks little about you as a wiki volunteer i urge that you to cease defending this person for w hate ver personal reasons you may have and be a true wiki volunteer otherwise i ll be forced to request that wiki block you and i would not want that and neither do you,0 +thank you for wearing mesh underwear to bed last night you were amazing preceding unsigned comment added by talk contribs,0 +dyk did you know was updated on may from the article snakeskin gourami which you recently nominated been featured in that section on the main page if you know of another interesting fact from a recently created article then please suggest it on the did you know talk page,0 +possible images so i just removed a huge mate ad from the article because in my opinion although i believe it was added in good faith by user krw it s inappropriate for an article about a general product or service to feature prominently the advertising or image of one single product within the class some examples i looked at included soft drink where the main picture shows a variety of brands on a supermarket shelf with a photo of the diet pepsi product line much lower down potato chip where two of the three pictures are of chips without packaging and the third is a non current ad fast food where all of the food is shown unwrapped and only the big mac is clearly identifiable plus a nondescript interior photo and a photo of several adjacent restaurants chocolate bar with an unwrapped chocolate bar shown this brings up a quandry what do we use for images my best ideas are to make mockups of a hypothetical dating site front page or ad and use them instead of real images suggestions,0 +who is this n y shld we,0 +tesla was a serb born in croatia the article is not objective and i think objectivity is important one harmless example of that is presenting banknote of serbia with his image and not presenting the croatian one apparently this wiki page is edited by serbian wiki page and that s why it s not objective i suggest that the page should be edited by another wiki project that s how we will stop counting tesla s blood cells and manipulating with the history give tesla in the hands of neutral party thanks,0 +probably be better for you just to drop it,0 +thanks for caring and everything but uhh dont the page does not need to be deleted and i dont know anyother way to fix that other than getting rid of that warning junk so find someone else to bother alright,0 +complete bull oakland hasn t made the playoffs since their draft picks have failed miserably and baseball america has ranked their farm system since then other teams have taken a moneyball element or two but never to the extreme that the a s did,0 +naw lets just keep it here for now,0 +maybe if several users report the same person the administrators then understand the severity of the user s vandalism msg me my contribs,0 +april utc the game is an abstract mental game the objective of which is to forget its existence there is no point in calling the game a meme the majority of stuff on wikipedia is a meme a meme is simply any idea or concept i think what this refers to is a common misconception of the word meme basically meaning a fad the game has some interesting memetic properties but these should be described elsewhere in the article if anywhere whoever wants the meme version up should read the meme article first,0 +i think red tape accurately and succinctly communicates the situation you describe especially given that in a prior version you yourself wrote attempts to rectify this situation working through official channels did not work which it seems to me is the very essence of extreme red tape if you like we can say instead official indifference or unresponsiveness but i don t see how that better informs the reader i also don t see how your wording makes the point you mention re success in decrypting and the importance of that success obviously a request for more resources will try to convince the recipient that such will help the writers to better do what they ve been tasked to do to spell out that their desire was to achieve the productivity that was possible would be completely superflous of course that was the goal and surely no reader needs to be told that better productivity faster decrypting etc meant the entire difference between valuable intelligence and useless retrospective your wording doesn t mention any of that stuff anyway further as i ve said before i also don t see why it matters what specific type of resource was lacking the important points are a the codebreakers felt that they could not do the best job possible without more resources b churchill unhesitatingly granted them carte blanche showing the importance he attached to their work and the breadth of his authority in making such decisions what doesn t matter is just what it was that was lacking typists paperclips light bulbs some of these elements could be incorporated to enliven the narrative e g some kind of for want of a nail type angle look prime minister you ve gathered all these first class minds here but we can t get anything done because we have to do our own bloody typing if sources lay something like that out am i missing something p s what do you mean about wp civ,0 +none beefart replies thanks for you comments few take the time to discuss grammar on wikipedia and it shows in many articles i disagree with you about none the word comes from the old norse ne an which means literally no one in my view to get the sense of any usage of none we must expand it in our minds to no one it is impossible to say no one are dinosaurs it has to be no one is a dinosaur here are two examples from the oed e j howard except for her eyes none of her features was remarkable p rose people sought her but none was a companion however the plot thickens because the oed also gives this example from graham greene who is highly regarded as a writer none of our wives are invited this flies in the face of the first two examples and suggests that the oed has given up the fight maybe i ought to as well there are of course some situations where expanding none to no one does not make any sense as either a singular or a plural e g none of the increase is due to here the best we can hope for is to propose that none is a synonym for nothing i personally try to avoid expressions such as none of the increase and would be inclined to write no part of the increase,0 +i can help you create an rfc but you need to propose a neutrally worded sentence saying what change you want to make do you want to add yemen was home of the sabaeans biblical sheba a trading state that flourished for over a thousand years you can propose this in the rfc but people who have commented so far are unlikely to support that you would be hoping that the listing of the rfc would bring in more contributors who might agree with you it sounds like the current contributors want everything to be extremely well sourced to respected scholarship and they don t want anything said beyond what is known for sure e g they doubt that we know the exact location of the sabaeans you have been writing at excessive length and this discourages dialog,0 +help clarify an artice john stark i was looking for information on john stark and came across a confusing section in the part about his early life there is a paragraph that reads on april while on a hunting and trapping trip along the baker river a tributary of the pemigewasset river he was captured by abenaki warriors and brought back to canada but not before warning his brother william to paddle away in his canoe though david stinson was killed while a prisoner of the abenaki he and his fellow prisoner amos eastman were made to run a gauntlet of warriors armed with sticks the problem is that there is no mention of who david stinson is only that he was killed i see that an edit you made january removed some clarification on him instead identifying amos eastman as the fellow prisoner as you have better knowledge on the subject can you please put back some info identifying him or possibly remove the unclear info thanks,0 +island says m including teom for mariah so that s about it music box can t possibly have sold m outside the us this would mean m outside europe and the us never happened in the history of music not even thriller has such sales outside these two markets and it went basically everywhere for months a lot more than can be said for music box it was a huge hit but not to that extent adding all the markets in teh world apart from a tiny handful of teh world or so music box adds up to about m or so,0 +the truth about the sinn f in ard fheis the story of how gerry adams tried to turn an eighty year old revolutionary movement into a british constitutional party how he broke the sinn f in constitution created fake cumainn to give him fake votes and barred life long republicans from voting how he managed to expel himself and his supporters from sinn f in membership and how a small band of republicans managed to keep the sinn f in constitution and traditional policy in tact in section b of the sinn f in constitution read as follows no person who is a member of any political party organisation or who approves of or supports the candidature of persons who if elected intend taking part in the proceedings of the westminster or partitionist county or county parliaments or who approves of or supports the candidature of persons who sign any form or give any kind of written or verbal undertaking of intention to take their seats in these institutions shall be admitted to membership or allowed to retain membership the adams leadership put forward a motion titled resolution at the ard fheis its wording was as follows resolution that this ard fheis drops its abstentionist attitude to leinster house successful sinn fein parliamentary candidates in county elections a shall attend leinster house as directed by the ard chomhairle b shall not draw their salaries for personal use parliamentary representatives shall be paid a sinn fein organiser s subsidy and the leinster house salary shall be divided at the direction of the ard chomhairle to defray national and constituency expenses to accommodate this change the constitution and rules be amended as follows that section b of the constitution be amended to read no person who is a member of any political party organisation or who approves of or supports the candidature of persons who if elected intend taking part in the proceedings of the westminster or partitionist county parliaments or who approves of or supports the candidature of persons who sign any form or give any kind of written or verbal undertaking of intention to take their seats in these institutions shall be admitted to membership or allowed to retain membership motion supports and approves of the candidature of persons who if elected would be of the intention to take their seats in certain circumstances i e on the direction of the ard chomhairle obviously motion infringes section b section b was in effect at the time this resolution was presented its clear that adams made a mistake in procedure he should have sought a majority decision to amend section b in and returned in to propose entering leinster house trying to amend section b and propose taking seats in the partitionist county parliament in the same resolution was a logical impossibility can anybody say that the wording that this ard fheis drops its abstentionist attitude to leinster house successful sinn fein parliamentary candidates in county elections a shall attend leinster house as directed by the ard chomhairle does not constitute the supporting and approving of the candidature of persons who intend to take their seats in leinster house as directed by the ard chomhairle clearly adams was in breach of section b and according to that section he had expelled himself and all those who voted for resolution brian feeney in his book sinn f in turbulent years puts forward the argument that adams had managed to bypass section b by introducing a motion in allowing the discussion of any aspect of the sinn f in constitution this change may indeed have facilitated debate on abstentionism but it did not infringe on the content or effect of section b in any way to discuss something is not the same as formally proposing or supporting it for example conventions are held regularly where drug addiction is discussed without any of the delegates proposing or supporting it in fact the line adams added in was superfluous as the sinn f in constitution had never banned the discussion of anything just the approving and supporting of taking seats in named partitionist parliaments of course its not illegal to amend or remove section b section b bans the approval or support of candidates who intend to take seats in british assemblies it can be removed or amended at any ard fheis by a two thirds majority the reason for doing so could be many perhaps delegates might feel that it implies that they cannot be trusted to be loyal to the republic in fact its not necessary according to the constitution to give any reason but you,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages you might like to see the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style you are welcome to continue editing articles without logging in but you may wish to create an account doing so is free requires no personal information and provides several benefits if you edit without a username your ip address is used to identify you instead in any case i hope you enjoy editing here and being a wikipedian please sign your comments on talk pages using four tildes this will automatically produce your ip address or username if you re logged in and the date if you need help check out wikipedia questions ask me on or ask your question and then place helpme before the question on this page again welcome,0 +agreed and done,0 +curious as to why you want to be a busybody with me i am curious as to why you want to be a busybody with me i ve noticed you following me around before for example in the entries for michel david weill whom i am sure you know nothing about and edouard stern whom i am also sure you know nothing about i made minor edits yet you reversed them for being uncited even though the entire bios are totally uncited what s your beef why don t you delete the entire article i know the subject matter you don t it has something to do with me you desire some sort of association with me i feel as if i am being stalked normally stalking is done by the opposite sex but in this case you re a man chasing a man i had another wiki administrator do this and on his home page he admits that he is a flaming homo sex don t tell me you too,0 +thanks will keep in mind,0 +section needs to be edited this line about new hampshire is not very accurate on january for the first time martin luther king day was officially observed in all states prior to that new hampshire and arizona did not observe the day in fact new hampshire passed civil rights day in to honor dr king and other civil rights activists like rosa parks and malcolm x since the article states clearly that other states such as utah have different names for the holiday including combining it with confederate military heroes this sentence does not seem justifiable the article leaves the impression that new hampshire was some sort of bigoted state that was one of the last to recognize this holiday i am a newbie to wikipedia how do we fix this,0 +crusader states thank you for fixing an obvious mistake i was just wondering what was the relationship between the holy roman empire and latin empire do you have any worthwhile resources mar utc,0 +any longer i m sure both editors here will come to some sort of compromise,0 +first off i m a benfica supporter it s clear sporting are not too much of a club but despite being hummiliated and that s not saying enough frequently over the past few years looking at the league tables from the past seasons and at their achievements it s clear benfica have become the rd giant however this may change this season,0 +hi cyta it s bad practice i know but it can and does happen in some scholarly journals on the assumption that specialist shall speak unto specialist and the rest can go to the devil i wasn t aware that the english historical review which i used extensively during my own research was a particular offender but my main period of study is the seventeenth century by which time latin had all but disappeared from official documents,0 +league of copyeditors participation drive dear league member we ve started a participation drive for the remainder of february if you can please help clear the backlog by adopting the following goals each week select an article to copy edit from the backlog after your copy edit list the article in the articles ready for final proofread section select a different article to proofread from the articles ready for final proofread section thanks for your help journalist,0 +my reply you must be kidding i didn t edit a single thing the only thing i did was compare edits made by other users not mine,0 +the fool hi seth i noticed that you removed some info from the fool as possible copyvio an anon just added the text back i ve given him a just so you know note on his talk page but could you provide a link to where you think the copyvio is from so i can list it on wikipedia copyright problems talk july utc,0 +and for the capitalize thing actually its not bad grammer if your using it in titles you need a lesson from your teacher matt stiker lol j k but seriously though if me calling other people gay offends you you have to be a total nerd in real life that can t take being called names oh well i feel sorry for you wikipedia is probably the most action you get besides your creeper sites you visit,0 +dispute resolution what dispute resolution you are talking about it is regarding a comment in wikipedia space dispute resolution applies when the dispute is regarding article mainspace,0 +i second that this perfectly illustrates how i explain it to my friends also at least when i force them to listen to me talk about n dimensions i noticed the x and y colors in your legend did not match the illustrations so i uploaded a new version that corrects this file dimension levels svg i hope that s ok with you i don t know what graphics editor you used but i just fixed it with a text editor to preserve the readability of the file by your original editor,0 +talkback from part i m no ip talk to me,0 +bold textlondon against camden danger lab,0 +nice suck up to the admins there you know all you have to do to get me to shut up about this is show me where it says in the wp mos or wherever on wikipedia that it says episode table widths must be wide show me that or where people with x w hate ver screen resolution are stating that this table width is a problem for them that s all i ask,0 +happy new year happy new year i d have an image but it would probably be the one on your userpage do you mind if i totally steal lovingly rip off your navigation bar i really like it teh tennisman,0 +why is it so shocking that the meredith kercher article is getting attention it s a highly controversial case all of this spa and sock talk is unsupported and ridiculous,0 +i ve never seen creative director used in the infobox for tv shows because creative director is not a title actually held by someone at least in fictional series to the best of my knowledge it is production designer and that s what they re credited as it also looks quite odd in the infobox where you have someone who is the production designer listed so high in the infobox just below the creator and above more notable roles such as the cast and executive producers this is a good topic of discussion for template infobox television that creative director should be changed to production designer in the infobox and then moved into the production portion of the infobox along with other similar crew roles,0 +antisemites being protected from jew s geez has anyone else seen that pig flying nearby i also heard it s snowing in hell,0 +this article was unprotected on september and has seen significant positive contributions since thenmost of those positive contributions have been from ips which i think vindicates the removal of semiprotection ts,0 +image copyright problem with image rd february jpg thank you for uploading image rd february jpg however it currently is missing information on its copyright status wikipedia takes copyright very seriously it may be deleted soon unless we can determine the license and the source of the image if you know this information then you can add a copyright tag to the image description page if you have any questions please feel free to ask them at the media copyright questions page thanks again for your cooperation talk,0 +doherty epilogue why does the section mainstream scholarly reception end in a comment by doherty himself decidedly not a part of that mainstream which basically says that someone else should come along isn t this akin to a proponent of a minority view saying that one day oh happy day the majority will come to see the wisdom of the minority view and change its mind revision and changing minds are an essential part of all branches of scholarship but why should we give a platform to any one view in this smile back well i do see your point but i think there s arguably validity in assigning a special preference to the view of the subjects of the article of which doherty is a notable example and the only one i m aware that has commented on the subject,0 +i think it is from an afd close noted talk,0 +addendum royal gov uk used to have a feature whereby people could write in with questions that seems to have disappeared but there is contact information for the public information office under the contacts link from the main page there perhaps someone more local to buck house could ring them ask and see whether they d be happy publishing such information on the website so we could then use it as a reference i d rather not inflate my phone bill with trans atlantic phonecalls,0 +kent engel peer review good start to the article everything seemed to conform to the manual of style so far one thing that i found was the name dolan was spelled incorrectly once in the article all of the links seem to take me to the right place and add credibility to your article just make sure you site sources and proofread and you should be good,0 +welcome to wikipedia please stop inserting unsourced libelous allegations about a living person in paul mckee developer or your ip address will be block you may not receive any further warnings,0 +i think this should go in the titz n ass section of wikipedia org it is only fitting that an article of this calibre be placed there nonetheless the accuracy of this article is quite pleasing,0 +yeah the only problem is that there aren t that many people involved in the discussion and you know who has stayed silent for the last few days thus ensuring there is no discussion to speak of i know where to ask i m just unsure how to demonstrate that we re ready,0 +commonwealth of australia before you start making false accusations against people you would be best also to check your facts my research is not original research it is the very essence of the true meaning of the commonwealth of australia and provided references to sources within wikipedia and external locations so before you start making accusations false check your facts end of discussion,0 +i bother to note the other issue because wikipedia is explicitly a collaborative editing system and making changes that as i said obscure the substance of your edits with lots of non substantive changes makes the former goal harder there are even explicit guidelines against needless constant changing of irrelevancies such as this,0 +nandesuka you asked for it you can certify it wikipedia requests for comment user conduct use of administrator privileges,0 +on the way forward consider this before posting here i would much prefer it if certain people did not post on this page so before posting please consider whether you might be described as a tendentious canvasser or drama seeker mischief maker advocate misrepresenter someone who piles on without clue or someone carrying over by association the disputes that they have with contributors elsewhere if you might fall into one or more of those categories and still think it necessary to pass comment here then please try to find an admin to do that for you and if you are an admin chillum comes to mind then find another i m not keen on this because it restricts collaboration but hey people like that basically just seem to vent poke or offer weird advice when i am the subject of their attention i m human not a saint while my ability to tolerate the types described above is not bad it is also not infinite i d be pleased if the time that you would have spent here is expended instead on editing india related articles but bear in mind that you will need to be able to deal knowledgeably with touchy and repetitively raised issues such as hindutva religious and caste related pov pushing handle completely clueless newbies on a large scale many of them encouraged to edit by an ill considered wmf initiative handle often large scale sock and meat farms and masses of copyvio and blp violations take copious amounts of general abuse pretty much daily face all sorts of physical and legal threats both on and off wiki as well as real life stalking over prolonged periods by multiple people all with little or no support from the wmf and large swathes of the community who are more interested in the never ending tendentious discussion of meta issues among them policy honor and the creation of a wikitopia than actually improving content where it matters most and when you need a break from articles that relate to per cent of the world s population and which suffer grossly from bias systemic and otherwise go chill by creating a ga or at least a b class article more or less single handed do all of this and you ll make me a very happy and surprised man do it for k ish edits without getting block on spurious grounds or otherwise then you ll be really quite remarkable i m not saying that i will be back but if i do return i d rather not see stuff here from the types of people described above thanks,0 +that could be an option but i dont see why that would be needed since they have stated an official motive of their organisation which is equal righst for sunnis while stressing many times that they are not seperatist just because of some wiki editor not wanting that to be put into the article for some reason doesn t mean people should be deprived of sourced information,0 +discussion at administrators noticeboard incidents hello there as you have not yet replied to my post just above and your recent contributions contain apart from the legal threats some material which i think is unsuitable for a user page i have opened a discussion here about your contributions please feel free to post there if you wish talk,0 +i added a link to the full original text and substituted the link to the modern bulgarian version with a better one pointing to a fuller version of the text however full text in modern bulgarian is still mising,0 +the holocaust refers specifically to jew ish people killed for being such in concentration camps by hitler and his nazi s so of course this article is about that hitler was also responsible for the deaths of many other people but these deaths are not considered part of the holocaust so there is no argument here thanks,0 +please stop if you continue to vandalize wikipedia as you did to alicia hall you will be block from editing super cat,0 +i was warned less than a minute after my last edit to the subject s page i will no longer edit his talk page refer to him nor edit what he was edited at least for say months after that the chances of incidental crossing paths is possible if this page is block for me not only will i use other ip addresses i occasionally use and the like but evade the current block of which i m not at present intending to do with such i m sure you are acquainted with wikipedia what adminship is not good morning,0 +not just church i think there should be something about the whole village not just the church,0 +i am not jew ish and even if i was i am sure you would never understand why there is nothing wrong with it first gay s now jew s do you think you are still in your godforsaken regime this is a civilized world with civilized people where jew s gay s or gay supporters are not blatantly singled out some tribes influenced the way i look no no no the only way they could influence it is through conquest rape forced deportation that s how you got in iran dont think you moved there with your own will,0 +requesting your thought talk karen gillan lady godiva incident i would like for you to weigh in on whether or not it should be added thanks,0 +do you support confessions produced by torture then since that is the implication of leaving the wording the way it is,0 +hi rpau i appreciate your comments and i agreed with most of them i realized after you mentioned it that i needed to change the wording of one of the sentences under the career heading i think it works a bit better now creating hyperlinks for some key words was beneficial too however in regards to creating a hyperlink for alex krizhevsky and ilya sutskever they are graduate students working with geoffrey hinton and do not have wikipedia pages written on them so i can t make any links for them as for the picture of the hinton wikipedia seemed to give me a hard time for trying to upload a photo unless i had explicit consent from the owner of the photo i had contacted hinton previously to get some information from him personally but i got the sense that i was annoying him slightly as he said he was really busy and was terse in his responses so i decided not to pursue him for the picture thanks for your comments and criticisms though they were helpful angelamarti thanks for your input it was quite useful,0 +major premise taking steroids is cheating mlb rules minor premise barry bonds admits to taking steroids conclusion barry bonds is a cheater major premise saying something that isn t true is lying minor premise barry bonds untruthfully said that he had not taken steroids conclusion barry bonds is a liar major premise people are indicted by federal grand juries for committing crimes minor premise barry bonds was indicted by a federal grand jury conclusion barry bonds is a criminal,0 +i don t understand your use of english please be more clear anything abusive or pornographic must have been added by a different user i looked at the edit history and found nothing distressing i only restored what was there before without adding anything that might distress you or anybody else if restoring the relationship distresses you because you have a personal issue with the person who originally added it in which is distressing to you i appolegies but i insist that added no distressing content also please show me this consensus it was not listed on the talk page and there was no link to it unless i have a link i am afraid that i can take this as nothing but your words which i can take no other way than being words,0 +i didn t edit a plane i edited reaction engines a user talk contribs,0 +when people hear the plot people think the aoki is molesting rin and the its a hentai loli seriesgold dragon,0 +deletion of av news page just curious why the av news page is being deleted while its primary competitor antelope valley press is allowed to have its page here unmolested granted we have only been in business for six years but we are every bit as a legitimate news organization as av press and even more so than av town crier whose page is also allowed to be here i note here is the content the av news began as a weekly print newspaper with emphasis on local news located in lancaster california usa it was the second largest circulating newspaper in the area after it began publishing in in the av news added a website and in march much like the seatte post intelligencer the av news trans itioned to a web only publication the av news covers the antelope valley area of los angeles county mainly the palmdale lancaster urbanized area a us census bureau defined term and areas of north los angeles and southeastern kern counties including acton agua dulce edwards afb lake los angeles mojave quartz hill rosamond and santa clarita the newspaper is conservative in its political stance it is currently the official news publication of the lancaster jethawks a minor league baseball team in lancaster history the av news was founded by fran paolinelli in she continues to work at the publication today it began as a weekly print publication before dropping its print version to become a web only publication at w avnewsday com the paper conservative leaning holds strongly held views which can become controversial at times competitors in its market are the daily news antelope valley press and the los angeles times external links av news official website the format is the same as the av press there is less historical info that the av press because we have only been going for six years and they ve been up for decades but still we are getting e mails from people who use wiki to find out about the lancaster palmdale area and are surprised to find out that there are more newspapers in the area than what they find listed i also point out that the city of lancaster is a major advertiser with us as is the local professional baseball team please info me as to what more i need to include so that our page will be left on site or restore the page,0 +how do we come to a consensus when you don t say anything here and i have shown that you have misquoted a reference so you going to lock me out of the article again,0 +lohanas are not the only people claiming descent from lava leva s are also descendants of lava and our bards have proofs of this,0 +admin input if you were in communication with an admin and were actively working on it you or the admin should have actually put a valid hangon message on the talk page quite frankly i don t believe the draft article you re working on is ready to go for the following reasons there s a number of grammar and spelling errors headers should not have caps except for first letter and should not be wikilinks bolding is for the first use of the subject in the lead paragraph only references shouldn t be generalized like you ve put them individual facts in the article should be footnoted to the references see wp fn and wp citet if you don t know how to do this the section on search engine submission software should be omitted entirely as it s covered in a separate article don t duplicate material that s what wiki links are for move the reasons why its notable media coverage awards to the st or nd paragraph please be aware that wikipedia is not a how to guide so instructional information about how to use the software is not appropriate you can eliminate the further reading as the book is in the refs and get rid of the dummies graphic it s not relevant to the particular program it looks like you re plugging the book akradeckispeaketh retrieved from http en wikipedia org wiki user talk akradecki,0 +utterly stupid suggestion i am sure wikipedia is crying out for pages created for a couple of non league footballers who when they finish playing football will probably stack shelves in asda or work for kva just de link their names that is the solution,0 +haven t even started on when is yet but i think i just about finished what is,0 +it wouldn t surprise me if he was coked up half the time how else could he keep a straight face spewing that nonsense,0 +i m ready now to try to improve the article but it does not seem to have been restored thanks,0 +well actually yes give me a good reason why or tell me how to put trans parency in a jpeg and i might agree those are just guidelines to be interpreted with a bit of common sense talk,0 +water controversy this needs to be expanded but in a cited npov manner indian county today and news from indian country would probably be good online sources for current issues facing the klamath tribes regarding recent edits about blood quantum the overwhelming majority of native american tribes require a minimum blood for membership uyvsdi,0 +a tag has been placed on bagina requesting that it be speedily deleted from wikipedia this has been done because the page appears to have no meaningful content or history and the text is unsalvageably incoherent if you think that this notice was placed here in error you may contest the deletion to do this add on the top of the page just below the existing speedy deletion or db tag and leave a note on the page s talk page explaining your position please do not remove the speedy deletion tag yourself if the page you created was a test please use the sandbox for any other experiments you would like to do feel free to leave a message on my talk page if you have any questions about this,0 +all the references state the plane hit turbulence as wikipedia is built apon references that is what i put i have no affiliation with continental and it seems you do turbulence is the reason as witnesses on the plane describe aswell as the pilot so make any accusations you want but for now turbulence is the main reason and factor of the flight now just remember follow the rules and stop saying major news broadcasters like cnn and bbc are false because you seem to think you are right,0 +i asked you to ensure you were accurate because if you were wrong wp spade i would accurately call you a liar user bullrangifer made a comment that my alleged use of unreliable sources doesn t exactly help your credibility however this statement was not true at all and has no basis in reality it was fabricated simply to damage my credibility he says this despite the fact that i had not used any unreliable sources on the page his poorly thought out and executed statement affects his own credibility rather than mine when asked for clarification of his accusation he produces four links of the four two were posted after his offensive comment was made therefore i assume he was taking about the first two links that i had already provided when he said it the first two links both of them were from of newspaper articles from the washington post yes both of them this person has says that particular source is not reliable and that he can produce more reliable sources that damages his credibility not mine i m calling bull shit on everything he said for the reasons above i am calling user bullrangifer a liar chimes in with his two cents supporting the same contention as the the last discredited guy he got his lame comment in before i posted the second two links those links were for the associated press and government of canada but lots of other reliable places have this stuff he didn t back up his statement by responding with the source that he was referring to and lost credibility too for this reason is also a liar that s not all this person must be the brains of this operation right here on this page puts forth the argument that and none of this shows that there is no chemtrails conspiracy theory i think his credibility was lacking prior to his comment about me it s pretty obvious that logical thinking is lacking here too previously i ve called his position the dumb est possible argument for anything ever,0 +hash infotech a tag has been placed on hash infotech requesting that it be speedily deleted from wikipedia this has been done under the criteria for speedy deletion because the article seems to be blatant advertising that only promotes a company product group service or person and would need to be fundamentally rewritten in order to become an encyclopedia article please read the general criteria for speedy deletion particularly item as well as the guidelines on spam if you can indicate why the subject of this article is not blatant advertising you may contest the tagging to do this please add on the top of hash infotech and leave a note on the article s talk page explaining your position please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would help make it encyclopedic as well as adding any citations from independent reliable sources to ensure that the article will be verifiable feel free to leave a note on my talk page if you have any questions about this,0 +unblock disclaimer i do not identify as a nazi neo nazi facist neo fascist i do not accept or agree with the actions or views of hitler or any other dictators in the world for that matter i do not hate jew s in fact i have many jew ish friends hello although this is technically an unblock appeal it is really only a reason to explain you won t be in a mood to unblock me when i m finished talking first of all i want to apologise i should have thought before putting the giant swastika on my page this is the reason for that i have a few jew ish friends and normally we sometimes make jokes about jew s and christians and things like that i never really make jokes about the holocaust because that never go over well with them and it is not nice well apparently a joke about jew s being lawyers set one of my closest friends off who is not really a jew but claims he is now he thinks i am a facist nazi and i hate jew s i gotreally frustrated and annoyed and so i came home and started messing around on my userpage second of all i would like to ask why it is not permissable to self identify as a nazi there are several userboxes dealing with this subject there is even a userbox that states this user identifies as a hitler ist what the hell you will let people say they support hitler but you won t let them say they are nazi s being a nazi does not mean that you condone hitler or his actions it simple means that you support the theory of the politics behind nazi sm you can be a nazi and not support the horrible eugenics policy but if you are hitler ist that obviously says you support all that your arguement would of course be that it is offensive to jew s well if you are taking that into account then you should also ban anyone that says they identify as a communist that can be extremely offensive to christians if you want me to i can talk about all the horrible things they did to christians in communist russia with reference of a nice book i think i will one of the things they did was putting shackles on the ankles and wrists of christians with spikes of the inside that cut into your skin if you moved at all and then they put starved rats into your cell that tried to eat you alive so you had to fight them off while your wrists and ankles are killing you they also tied you to a cross and hung you upside down over a huge pile of other prisoners crammed into a small room you were then forced to excrete over everyone you were also stood upright in a box while they drove long nails into it it was alright if you stood perfectly still but you would have to stand there for hours and then your body would sway and poke into the nails they also stood you naked in a freezer with a doctor nearby that signalled when you were freezing to death and then they would take you out and warm you up they would do that for hours on end then they would beat you over and over again asking you to renounce christ the holocaust was horrible but i would rather be gassed or hung by a nazi than endure those tortures for years like one man who wrote a book about his experiences so could you ban all communists please my last comment is in response to chzz s question about me making the gay comment statement nowadays the word gay is used for two meanings one is homo sex ity and the other is wierd stupid dumb i was using the second connotation maybe if you people didn t spend so much time on this gay sorry stupid online encyclopedia you would realize how the real world uses words even if you unblock me which you won t i will take a wikibreak i don t want to become addicted to point of ruining my social life i have already recieved a punishment never becoming an admin the whole gay sorry dumb trust thing just know this i would have enventually removed the swastika after i cooled down and because of your gay sorry dumb policy you have lost a serious editor this whole thing has really annoyed me p s chzz i have been on wikipedia for years you think i forgot to sign my gay sorry stupid post yeah right,0 +i don t see what makes blum any more reliable than people like chomsky and herman he s a left wing pundit who excoriates the u s for everything it does it s like me including a jbs article in communism to prove why it doesn t work mar utc,0 +respect for medicaid i have to have alot of respect and admiration for the medicaid system here in new york i m a client of a medicaid managed care health plan through capital district physicians health plan my plan is the result of a contract between cdphp and the ny medicaid system standard practice here is placing medicaid clients in managed care plans through health insurance companies run by the state i like my managed care plan i was without any health care insurance for almost eight years without medicaid and my medicaid managed care plan i d be worse off better than nothing isn t it oh the name of my plan is cdphp select plan the plan cdphp runs for medicaid clients in my county and several other nearby counties,0 +you did a nice job cleaning up some spammy content,0 +anthony bonafe nlu do you ever read defense magazines or perhaps watch the news you probably never heard about this person since the news that provided coverage about him was in washington state on komo news and on top of that he was interviewed in defense weekly so please stop messing with my content on mr bonafe,0 +thank you for experimenting with wikipedia your test worked and has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia talk,0 +i didn t malign anyone personally or anyone s name i mentioned the authors name a second time simply to distinguish her from the other sources she quotes in her articles it is cliffc who pulled the quote from my much earlier and unrelated to the article post bolded bambi s name then tries to find fault with me if i wasn t a big grown up fella myself i suppose from some of the passion in the comments directed at me i might be getting close to feeling personally maligned myself i might even question the evenhandedness of the administrators comments my sources have been questioned which is fair i have placed a query on the reliable sources discussion to show my willingness to be introspective and open to other ideas i suggest cliffc post a similar query for the how drywall works article at that same notice board the bambi turner article has not been provided as a reference for the article the blog and real estate website article she uses as references have also not been posted to support the content of the article i believe astm will be a reliable source for how gypsum board assemblies are put together so i would like the wikipedia opinion of it s usefulness before i refer to it in the article,0 +hi keith just wanted to say hello mar utc,0 +does the us have a different definition of city this place has under inhabitats,0 +birthday born march in new york city new york usa http w imdb com name nm,0 +speedy deletion of international year of freshwater a tag has been placed on international year of freshwater requesting that it be speedily deleted from wikipedia this has been done under section a of the criteria for speedy deletion because it is an article with no content whatsoever or whose contents consist only of external links see also section book reference category tag template tag interwiki link rephrasing of the title or an attempt to contact the subject of the article please see wikipedia stub for our minimum information standards for short articles also please note that articles must be on notable subjects and should provide references to reliable sources that verify their content if you think that this notice was placed here in error you may contest the deletion by adding to the top of the page just below the existing speedy deletion or db tag coupled with adding a note on the article s talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would would render it more in conformance with wikipedia s policies and guidelines,0 +greek capital letter yot in unicode newest unicode still features only small greek letter yot but misses big greek capital letter yot can you put into effect as soon as possible adding into proper unicode final this big greek capital letter yot as separate codepoint or if not possible can you at least put into effect as soon as possible adding into unicode casemapping definitions following mapping of lowercase greek letter yot to which is combination of greek capital letter iota and combining dot above right i explain that combining dot above is not suitable because it collides with greek capital letter iota glyph by partial overlapping with it avoiding of fixing of this problem is already long overdue because many font designers are using for greek capital letter yot illegal codepoints for example vusillus font uses illegal u f for greek capital letter yot which conflicts with official greek lunate epsilon symbol new athena unicode uses illegal u ff for greek capital letter yot which conflicts with official greek capital reversed dotted lunate sigma symbol as you see this confusion must be ended as soon as possible,0 +it would seem that blogs are not acceptable source except when they break sanchez s way funny how that works here isn t it,0 +sorry quite new to this the previous post was me lennon,0 +there was a comment on this page that cornell didn t win the tony for antony and cleopatra and points to the american theatre wing web site for confirmation the person who posted that is incorrect cornell did win the tony that year along with jessica tandy and judith anderson there were multiple winners that year the web site makes it appear that anderson is the winnera nd the other two are nominees only because she is listed first on the list with the other two under her but they all won the award,0 +you didn t respond to the explanation i provided on the tillich talk page this is a courtesy to let you know i removed the calvinism project tag based on that explanation,0 +copy the text as it appears on your page not as it appears in this edit area do not include the tlx argument but you should read the guide to appealing blocks first,0 +i fixed my afd mistakes rolled it all back that s a handy tool everyone should have it haha ugh but yea avoided some shit there good times this is why i avoid afd not really but you know what i m sayin i ll try closing properly later maybe haha love,0 +personal attacks what s wikipedia s policy on dealing with personal attacks i ve been dealing with them over at talk planetary habitability but they re beginning to get on my nerves podous,0 +rr warning if an individual is at reverts then you make that warning i ve only got two if you want your warning to stick make a report on wp ani about it,0 +i took a look at his edits and he s been back since the th so far only two of his edits have been about the adult scene the jenna jameson article and the joey yale article the first you knew about the second was his classic link removal job and had already been reverted all his other edits have been to sundry athlete articles where he seems to be adding details about their high school years which is okay by my book,0 +go stick an icepick through your sku and do everyone a favour,0 +both deist and atheist hey budd do you believe in the law of non contradiction you seem like a bright enough gentleman december,0 +wikipedia needs to add a nyhc or category johnyo,0 +its not quite like that isil adopted an existing flag in use by others and then got famous,0 +but this is wikipedia does everyone have to ask permission to edit contribute or write a page i m not vandlising or ignoring anyone the only repeated behavior is when people vandalise my edits and ignore the fact i m trying to help,0 +wouldn t that be nice let me know if you want me to do anything e g draft the words that go with the graphics,0 +then you re a communist because you are not zod like me so you cannot have the same opinions on things as zod user iamzodyourzodeveryzod boo yah,0 +singer list hi i have an idea that would allow people to view various prospects for scott weilands replacement in an easier way rather than just posting sentences in the split from weiland section how about someone ends the split section with a closing paragraph about scott leaving and then they form a new section titled something like rumored replacement singers or something like that and that section can have an opening statement saying numerous individuals have been considered for scott weilands replacement they include and then below write a list of every person who has been rumored it is easier to find names rather than searching through a section of the article that doesnt even have a title relevant to the fact that vr is looking for a new singer anyways please let me know what you think on this idea i am open to criticism and it doesnt bother me if you disagree with this idea just let me know thanks zach,0 +thanks again i m now heavily using this tool,0 +adoption would you be interested in adopting me i m not an idiot i can find things myself usually i could use a helping hand occasionally i was a bit confused about notability because there are a lot of seemingly non notable articles i then spent some time at afd and gave my opinion early to see if it matched the later consensus opinion i think i have a better idea about that subject this is an example of how i became less of an idiot and how i won t depend on you for everything is brixton busters really a new editor i have replied to you on brixton busters talk page please note that i have not made any allegations of sockpuppetry w hate ver my question is exactly that in the heading since it is really not credible that bb sprung fully formed into action on wp with an intimate knowledge of wikipedia mark up and referencing styles right from his very first edit i also note that that bb has chosen to ignore the question as is bb s right and as should you if you have no light to shed on the answer to this pertinent question raised not by me but by domer s wrongful assertion that i was being impolite to a new editor kiwiexile at dmoz,0 +annual murder rate per million indians in india all australians in oz indians in oz the official explanation for the higher rate for indians in oz compared with all australians is that they are much more likely to be young and male and about half of all violent crime involves young males unofficially i would point out that if you eliminate indian murders by indians in oz then suddenly the difference gets much smaller so it is pretty damn simple indians murder each other wherever they are please do something about it if you care,0 +isn t there a rule at wikipedia against personal attacks or does sanchez have a special exemption he s been warned time after time after time after time but keeps doing it why does wikipedia give sanchez special treatment,0 +under such criteria you better be inserting notability templates into each and every unsourced article that exists since we have had unsourced blps in wikipedia for years that is not sufficient criteria for determining if something is notable or not the standard is if such could be found there are already several sources in the article about several european groups in mexico such as the mennonites and spanish refugees could the article be improved definitely but notability is not an issue except to those who beleive that europeans or whites do not or better stated should not exist in latin america,0 +this is old gaelic there are a few variants but the modern spelling would be cath dh n neachdainn,0 +sorry i did not know,0 +stop changing us sales of lvatt add it up it says king ofrock,0 +no need to grovel it s all part of the service,0 +dude who fears banning this is what u hindu terrorists are perfect at this is the st personal attack i am making on u u have till now banned international human rights orgs in j k punjab north east etc banning is the only thing of ur expertise i know u r a stooge of rss shiv sena bajrang dal yuck names that is hindu terrorist orgs now i am percent sure u r one of those killers of chittisinghpura u r a terrorist i wont call u a hindu terrorist coz i dont want to defame hindus as such waiting for ban,0 +sleep with little boys,0 +listen up sj are you going to let me show you that you are wrong first i offered you my email address then you could email me second you are wrong about the attacks being fed up with incompetence on this site is justifiable you guys see vandals where there is only a desire to bring back some civilized behavior we aren t all chan people some of us have much more education than you will ever have are smarter than you will ever be have connections are unwilling to let you do what you dang well please also tone have you heard of satire i don t believe in hate mail no talk pages are the downfall of this site they are a tool for you to do what you want and no we don t all have irc or want to have it not even all computer operating systems have it warning there were no warnings issued a vandal seeking happy user complained and no warnings were even issued so you have demonstrated that you are completely incompetent now could we maybe start working towards addressing these topics,0 +good lord i mentioned the cluster fuck ed bureaucracy but i did not anticipate your adherence to it you deleted my post and it was regarded as vandalism when i tried to repost it one of the editors which removed my information was on trial for being a bot i m not sure what edit war you are referring to other than my own additions to your page which you state at the top that you welcome your immediate removal of my edit was very suspicious to me as it seemed pretty authoritative are you on the edits to marmaduke subscription list i don t understand i do not think i am acting like a child if childish behavior to you is using bad language then call me a a child i suppose i did not call you any personal names and only referred to what i thought of as a hierarchy on wikipedia as a cluster fuck ed bureaucracy i can call your edits an ego trip which they increasingly seem to be as you want to talk to me like i am a child even calling me childish it seems as if you didn t even consider the several links i included in my last post inculding npr i am trying to tell you that i made a reasonable edit to a page one that i made before and which lasted several months before i noticed it was gone tonight you assertion that i am willing to bet no one will show you more sympathy than i will is further proof that this process is an ego trip for you if users are all equal than i would prefer it if you left me alone my edit is not inflammatory and included a link to the website if needs be i can include all of the links i provided on your page if that is enough to validate my claim that marmaduke explained is a relatively popular blog if all users are equal then why does your designation of my writing as non notable brand me with vandalism when i attempt to re post the content please explain yourself thanks yournumbertwofan,0 +do you think pluto encyclopaedia is wp rs i am sure not that s nearly as worse for ariel encyclopaedia,0 +utc you re right i know a serb spli anka who always refers to her daughter s croat mother in law as a vlajna june,0 +blue ribbon schools ok thanks for letting me know i wasn t aware of that it s not as if there are only a few of them there are quite a lot but the school notability requirements are far too low for my tastes i won t revert though talk,0 +a tag has been placed on ian roussel requesting that it be speedily deleted from wikipedia this has been done because the page appears to have no meaningful content or history and the text is unsalvageably incoherent if you think that this notice was placed here in error you may contest the deletion to do this add on the top of the page just below the existing speedy deletion or db tag and leave a note on the page s talk page explaining your position please do not remove the speedy deletion tag yourself if the page you created was a test please use the sandbox for any other experiments you would like to do feel free to leave a message on my talk page if you have any questions about this,0 +idiot is what idiot does,0 +gr catjewbbear is a real story now im mad gr actually im not mad but it is real cause i wrote it,0 +you refusing to remove personal inaccurate information when i edit it,0 +yep considering it had no support for mms before,0 +why is this your litmus test for good editors doug when you get it officially worked into policy that all editors must affirm a belief in evolution to be considered trustworthy by doug weller then i will play your game as it is now my wikipedia edits have nothing whatsoever to do with evolution i have no comment whatsoever on evolution one way or the other don t care what you or anyone else thinks about it and i wish talk,0 +andrew chrucky gb fan you have not verified yourself as an authority over me other users or andrew chrucky you have not explained why you think andrew chrucky meets criteria for deletion you have not shown your efforts to verify the references for the claims made in andrew chrucky you must therefore explain yourself thoroughly sincerely jfeen,0 +with respect to the article on tejas please tell me how these revisions in which you removed sources were from bloggers as far as i can tell they are all from indian media outlets in addition you insisted on changing the type of radar that the aircraft was supposedly equipped with without actually providing a source substantiating your claim once you did provide a credible source a dead link now by the way i did not protest your edit note that i still haven t removed the source you added even though it is not an accessible link anymore,0 +are you sure about this guy s views the article states he s a homophobe the picture on the article shows otherwise unless he happens to be the biggest metro sex known to man seriously this guy has to be gay otherwise remove the picture of him and his wife both give the impression that strom is a gay man who married a very ugly woman to maintain the facade of a hetero sex male once again just want to state that i m pretty sure kevin alfred strom is gay not that there s anything wrong with it so you may want to reconsider editing edits that claim homo sex ity they could be correct,0 +eps with her as co hw no longer air therefore she isn t dool s co hw,0 +utc as far as i can tell what has happened is obviously grossly biased wikipedian inserts negative material into the blps of his opponents in an attempt to discredit them and is correctly identified as having done so june,0 +ayane s first appearance just wanted to point out that ayane s first appearance was in doa she may have appeared in doa as an unnamed trainning dummy that looked like her but doa was when she was first playable and given a name also unlike what this article suggest she was never in the nes ninja gaiden i recently played them all to see what i missed out on and never saw her so i edited this article she does however make a cameo appearance in the xbox ninja gaiden game so that may have been where the mistake was made although doa came out years before xbox ng,0 +picture just a suggestion maybe we should move the picture of jay and sean up to the main picture of sean,0 +actually i m in complete agreement with you about the picture caption sorry i wasn t more clear i know that in dye lasers it s often common to have a filter tube around the lamp usually just for water flow to absorb the nir before it causes thermal shock in the liquid i ll look into this more thanks for your explanation of spectralon as that makes a great deal of sense yes it would ve been helpful if the article had not been deleted it is often helpful to include a small parenthetical explanation of specialized words anyway i can see where using a polished and ar coated rod would be beneficial in such a cavity coupling more light than difussing it through the surface of the rod i know from sad experience that keeping the light diffused either way is almost a necessity to keep the rod from cracking i believe i also read that on the kentek website and in one of the most accurate sources i ve found on lasers principles of lasers by oratio svelto although the book is a little difficult to follow as of it is written in math anyhow thanks again for all of your assistance d,0 +anti israel comments are not anti semetic ahh another zionist coming to save the propaganda im not an antisemite nor have i said anything of the sort prove to me where i said anything against jew s zionism is not a race or religion it is as fanatic as radical islam and do not threaten me as it is not allowed,0 +february please do not vandalize pages as you did with this edit to history of europe if you continue to do so you will be block from editing,0 +trailer vs final film i noticed that in a trailer for the film roddy had two hamster butlers while in the actual film he s the only pet living in the house what s up with that,0 +a high traffic one that is frequently updated which i haven t replied to for days,0 +fix it yourself instead of just saying someone needs to,0 +ein oes oesau this is of little importance but ein oes oesau does not exactly mean for ever and ever literally it means for ages to come or something to that degree i thought i should post it here rather than just add it in without checking to see if i m correct or not,0 +do not vandalize my page stop understand i have asked you several times to stop one more act of vandalism and you re reported stop,0 +fischer s comments re the attacks i have added quotations which should probably be summarized pulled back note that some are directly relevant to the antisemitism section but i put them in as quotations for now b c i wasn t sure folks were aware of just how far off the deep end our friend went,0 +this is actually a popular myth raphael holinshed in his chronicles of england scotland and ireland p lines thru states that richard i stood before parliament immediately after the buckingham rebellion in october and demanded his innocencie concerning the murther of his nephews toward the world sic,0 +in an interview selena said was intimidated by shouldn t it be she said,0 +please stop if you continue to vandalize pages you will be block from editing wikipedia talk to madeline,0 +i really appreciate your own personal opinions but there is no place for that in wikipedia let the user choose whats he wants to read exodus of palestinians or exodus of jew s from the arab lands both of them are nakba s i do not understand what is your problem freedom peace and love thank you,0 +i deleted bluesnews com which was a redirect to the article blue s news which was deleted after this afd wikipedia articles for deletion blue s news nd nomination this left the article i deleted as a broken link which was why i deleted it,0 +no one is censoring anything but i really question your choice of pictures used so here is a picture from wiki commons that you can use see above again this is not propaganda but we are not trying to show thing in a bad light either,0 +thanks joy thanks for the warm welcome to wikipedia if you have msn messenger or aol instant messenger or otherwise leave it on my talk page please i d like some wiki using contacts,0 +we should not have religious beliefs evolution or creationist beliefs brought into wikipedia on edits we need a nice neautral position not in favour of any of them sticking to objective data and not subjective viewpoints the user in dicussion here deals with subjectivity only anything which opposes his own faith is deleted reverted etc i can not bring this up anymore this is all he does on wikipedia confirmed by his history the user in question is your best friend fair play if there was a conscience at play here someone would do something about it but nobody else is looking into this except yourself so you will obviously win this by position of authority winning as i could easily obtain a ban this place is not neutral i will stay inactive for a year and come back later when things are more fair on here,0 +i prefer to summarize melton but there was a dispute about the interpretation of the quote so if we can agree how to summarize melton then this is fine for me encouragament to surrender to the guru can somebody please add that rawat encouraged surrender to the guru there are several scolarly sources for that and it was a notable aspect of rawat s teachings it is missing now see,0 +i couldn t find page numbers for a couple sources so i removed them for the time being i m sure the sub rosa source is still appropriate but haven t been able to get to the library if i can t by this weekend i ll remove the source and all associated information pending confirmation and page numbers,0 +redirect talk g d u district,0 +dorothy kilgallen hello the links that you identified as unsuitable as external links have now been incorporated as references within the article mm,0 +thanks thank you for your answer to my question i do think that your contributions are impressive and show that you have spent a great deal of effort improving the encyclopedia i should have mentioned that in my question i m not interested in article writing per se as some other people may be carl talk,0 +first you re at the cusp of rr second you re a habitual edit warrior go ahead and make the same vandal edit one more time today tomorrow a week from now you re clearly not here to help construct an encyclopedia and an admin will block this ip address,0 +i was block for reporting their harassment then same thing you liar,0 +mind explaining this edit this one i removed the empty category per categorizing pages guideline specifically an article should never be left with a non existent redlinked category on it either the category should be created or else the link should be removed or changed to a category that does exist talk,0 +ok travis you need to learn something chaka zulu is the manager for ludacris he has nothing to do with the shaka get that in your mind,0 +whoa this article is wearing thin this needs to be reworded so that it sounds more concrete and it needs to be more organized instead of spitting random facts at my face can someone do that,0 +no consensus is the only argument you have user aprock has been involved in an identical dispute several months ago where he was removing the same source for no reason the drn favoured against him then and now he is trying to do it again user maunus has not provided any argument against my addition check again artifexmahem has not done so either did you even read the discussion,0 +thanks for the notice i ve gone ahead and added a statement by the way i recently expressed some major frustration on image related stuff i m annoyed with what is going on which i consider to be wasting time sowing discord and exceeding policy but i accept your good will and good faith and i think this move may help clarify things w hate ver the outcome some clarification would be a welcome addition talk cont,0 +about the listings of names,0 +p s a quote from einstein according to wikiquote as far as the laws of mathematics refer to reality they are not certain and as far as they are certain they do not refer to reality i d like to add that as far as anything refers to reality it is not certain,0 +inevitability of patriarchy alistair are you making a point with this long table the title inevitability of patriarchy suggests that you are attempting to claim inevitability rather than illustrate an argument if so what is your point i propose that you make a shorter contribution in the patriarchy article and link it to the inevitablity of patriarchy article that already exists i also propose a change of heading,0 +checked him days ago but found nothing untoward,0 +again i disagree scholarly consensus has been moving towards the direction of inclusiveness particularly for the question of the roma and the disable in fact as you go through modern academic literature the last years holocaust more and more includes non jewish victims just an example alex callinicos from york university the holocaust isfor good reasons i need not rehearse heregenerally held to be the most extreme case of human evil all the different kinds of domination fused together in auschwitzracism directed at jew s slavs and roma the economic exploitation of slave labour the oppression of gay s and women the persecution of dissenting minorities such as communists and jehovah s witnesses or slawomir kapralski identity building and the holocaust roma political nationalism i have already mentioned sybil milton who was a senior historian at the research institute of the us holocaust memorial museum and henry friedlander a leading holocaust historian in the usa is another important voice this increasing consensus has had an impact on common language as well on political bodies see this press release from the un for instance it is not a question of ranking victimsit is the concept of hte holocaust as a racist mordern project and the common fate of the victims the famous pictures of mengele s twins are of roma children the technology and expertise for mass murder was developed for the disable in the t the tactics of eisengruppen were first developed in the invasion of poland against polish leaders i have seen several good arguments that convinced me of the centrality of jew s in the holocaust i have never seen a convincing argument for their exclusivity if this is not enough let me try in another way by deciding to describe the holocaust as an exclusive jew ish event wikipedia is taking sides in a ongoing scholarly debate i could say on the declining side of an ongoing scholarly debate this is not holocaust denial with no legitimacy in the academia and it must receive more than mere lip service in the body of the text or in the footnotes at very least wikipedia must admit the existence of debate in the lead,0 +it would be fine but you are refusing to allow obvious content and lets face it you would refuse to allow it esp in the lead even if sources were provided i notice that you are a skeptic and probably atheist so are pushing an opinion and if i am vandalising you are doing exactly the same just pushing the opposite opinion,0 +redirect talk jason smith australian basketball,0 +i m talking on the lesbian and vagina article not the talk page,0 +yes i m here too high preformance gel penises,0 +the above is a mischaracterisation of the citation provided for avoidance of doubt here are the full citations motherjones com the pentagon labeled that incident workplace violence defense gov the army determined that there was sufficient evidence to conclude hasan was inspired or motivated by the foreign terrorist organization so we have the department of defense of the united states asserting that this workplace violence that is inspired or motivated by the foreign terrorist organisation,0 +oh that great repository of free cultural works there s an example of where the wisdom of the crowd slides downhill when the crowd consists of mainly nerdy young men talk,0 +you are so far from trying to edit in good faith its ridiculous or was that conclusion original research july utc,0 +what you say britain and france declared war on germany joining world war ii in what sense did they join wwii that implies that it had already started and then they pitched in part way through surely by declaring war britain and france started wwii that s not to say of course that they were the agressors perhaps you would like to revert your edit,0 +surname how do you pronounce it talk,0 +omp rice omp way to not answer i apologized for the dar dar dar thing and i ask nicely why you are willing to permit a page about a frickin spaghetti monster and yet not penelopism an actual belief system and you don t frickin answer honestly do you believe in this spaghetti monster is that it you believe this monster to be real a monster made of spaghetti omp why i m being civil i m not being rude so pliss answer the frickin question darblick,0 +french language this is the national library we understand that you may be the person in charge of front end security please explain how we can contact you because we want to convert census and griffiths valuations ino a wiki front end we are happy that our back is protected we have commissioned a trustworthy microsoft company if you have recieved my secomd email i will be happy n we will talk again if you havent check your inbox and dicuss wiyh your other gmail friends anthony rodgers ph,0 +bulgarian zar would you justify this edit of yours where you add the year as the end of the second empire if this is founded on any source i would be eager to see it,0 +you make some good points while begley s piece is a reliable source i agree that it s problematic to give such prominence to her opinion you always end up with questions of why this commentator is being cited rather than that commentator however when all this is finally over next week with muir russell s report i think we need an overview of where opinion stands it certainly seems to be trending towards begley s view that it s a manufactured controversy with no substance to it i suggest taking begley out of the lead and out of the article altogether for now and then re adding her view as part of a summary of post muir russell opinion,0 +utc really it s not i m australian don t regard myself as a pc pusher but i d think uluru has moved ahead of ayer s rock as the preferred name by most people certainly when i was younger in the s it was pretty much unheard of to say uluru and anything other than ayers rick made you look like some sort of lefty nutter but in the last years or so it s changed oh and using qantas as an example is probably not ideal the airport they fly to is called ayers rock so it s understandable they d prefer that name anyway just my c june,0 +there is a fine picture here i don t know about copyright http cityroom blogs nytimes com brooke astor is dead at,0 +well needing residence permits is understandable for some but not being in schengen benefits nobody and harms all with schengen there would be no queues whatsoever which i am sure all gibraltarians are sick of in this case as gibnews has pointed out its not spain which is responsible for this problem,0 +reply bhopali pathan to language and culture can be learnt by anyone as they say in pashto a dog s tail doesn t become straight even if it is kept in a pipe for a hundred years there are many others and i m sure you know them sadly for you it s only now that you ve realised what they really mean real pathans have known all along as you can tell from the pashto proverbs that language and culture can be lost and acquired but being able to trace yourself to the geneolgical tree of the pathans is what eventually counts regardless of everything hence the reason why there are so many proverbs on this subject definitely having the last laugh insaaf,0 +if that is true then delete this portion on january bush and his son were both present at the commissioning of the uss george h w bush cvn the tenth and last nimitz class supercarrier of the united states navy president bush paid a visit to the carrier again on may because in years nobody is going to care that he visited an aircraft carrier ubnless of course you really are pursuing a personal agenda,0 +jorge borges wrote an article entitled the dialogues of ascetic and king included in his book selected non fictions in the article he cites the writing of heinrich hackmann who published chinesische philosophie in hackmann narrated a statement by the brahmin bodhidharma to the emperor of china good works he said can lead to good retributions but never to nirvana which is the absolute extinction of the will not the consequence of an act emphasis added this is an example of the equivalence between nirvana and schopenhauer s denial of the will,0 +thank you i look forward to working with everyone,0 +you are going by the library s information but it s wrong according to the publication s title page vol index map image id,0 +just sent take care t c,0 +yes darwinek please borrow the book and read it yourself if you do not trust me before you do that please leave the npov tag in the article as an appetizer please see the amazon product description of the book hopefully you will be brave enough to insert also quotations which are not in line with your view,0 +we know you because we see your edits now answer my question have you been editing while logged out,0 +it is not disruptive and does not appear to be attention seeking these remarks are just argumentum ad hominem arguments nothing more you have zero evidence of this supposed motive on my part and are just attacking me because we disagree on the article an unambiguous violation of wp agf is there a particular article i m working to improve there isn t how do you figure what is your basis for this accusation have you checked my edit history there s lots of articles i m constantly working to improve as any look at my editing history shows which flies in the face of this idiot ic remark of yours there are entire lists of articles i ve created and worked on seen on my user page including three articles i single handedly brought to ga status the arthur adams comics article for example has been expanded and improved by me on an ongoing basis for the past three years and is currently undergoing a ga examination process these inane comments by you do nothing other than to reveal you to be an abject child and a pathological liar one who brazenly attacks others who dares disagree with him,0 +first the north nicosia article will be eliminated and then we can discuss you cannot have everything while the article of the city of nicosia is mutilated and destroyed by you constantly i guess there is a huge cultural gap here as we cannot really communicate effectively,0 +hi nice to hear from you again i haven t given up on looking at old tc seasons but for the moment i m mostly looking at war artists from ww but will return to tc s in due course hope all is well,0 +i am slowly working on many of the mountains of washington i do one or two a day i have identified a list of notable mountains that pages will be created one is a list of highest points in each of washington s counties i research if they need disambiguation so for big horn mountain i had to research whether there were other things called big horn there are tons of them as you can see there are hundreds of uses of big horn if i can i find newspaper articles relating to the place but due to the literally thousands of misspellings of bighorn sheep businesses and other things like trans former toys and a ship i have not been able to isolate one article about big horn big horn so far is not notable for much of anything besides being the highest point in lewis county washington but i did find a couple of trip reports hello i have reviewed your editorial review request good user keep up the good work aqu rius talk user cheeselor block thanks wp wdefcon appears fine to me penmon anglesey hi there you may have noticed that i ve been adding to the excellent article you created here a few extra refs and some photographs plus an infobox as suggested by a reviewer oh and i renamed it too can you think of anything else that can be added at the moment i would be interested in nominating it for an assessment for good article status i haven t done this before but it seems to comply with the criteria or to be nearly there anyway what do you think you baked the cake i just added the icing fingers crossed oh dear this might interest you re wp hd totd i was wondering about that too wikipedia talk tip of the day would be the appropriate place to bring this up but i don t think it s very active other than that the admin s noticeboard or miscellanious village pump may be places to bring it up that would get a faster response may tc penmon revisited hello again the ga review picked up various points some easy to fix some not anyway i ve had a go and fixing things and i think it could do with your further attention to see whether you can spot anything that i ve missed particularly points and then perhaps it ll get its ga badge great work i ve renominated it and left a message for our previous reviewer as he offered to look at it again if nobody else did whilst he was away good news i think that means that you and i are entitled to display this as a reward for our hard work right where s next re user talk ais importing scripts your monobook js looks fine and in fact it worked when i copied it to my account to test try bypassing your cache again and see if it works now june tc the original barnstar the original barnstar i noticed that your fairly new and saw that your edits were impressive and so i ve decided to award you this original barnstar talk re user,0 +clean this crap up why are there so many references that reference the same line there are multiple occurences of double triple even quadruple referencing on this page that is completely unnecessary can someone take the time to clean this up,0 +please do not vandalize pages as you did with this edit to mushu if you continue to do so you will be block from editing,0 +i got a warning and a ban for mentioning it the term they used was personal insult,0 +he is listed at art exchange,0 +i m going to glad you did do a block in the first place though,0 +simpsons would you know how to do this talk,0 +nah i wont sign stop deleting my comments,0 +have sex with our users like areaseven,0 +recent edit on gurjar mr sitush please stop doing vandalism on gurjars gurjars are pak nd largest ethnic group of pakistan,0 +as the reference you are using http ue eu int uedocs cms data docs pressdata en ec pdf page names teh country as former yugoslav republic of macedonia it is more accurate to use this name also using teh term of just macedonia may please the christian population of teh country but is still not recognised by e u the subject of this article and also might lead to the dissambiguation site of the macedonian region lest use the sources and reference acurately,0 +yes fine done that,0 +you are demonizing israel by making it seem as if israelis are evil but they are merely responding to the typical extreme anti semitism in the arab world which you ignore of course because according to leftists arabs can t be racist the jordanian prime minister abdullah ensour sent a condolence letter to the families of the two palestinian terrorists who killed five israelis in a terror attack at a synagogue in jerusalem on tuesday morning,0 +speedy deletion of supportspace a tag has been placed on supportspace requesting that it be speedily deleted from wikipedia this has been done under section g of the criteria for speedy deletion because the article seems to be blatant advertising which only promotes a company product group service or person and would need to be fundamentally rewritten in order to become an encyclopedia article please read our the guidelines on spam as well as the wikipedia business faq for more information if you think that this notice was placed here in error you may contest the deletion by adding to the top of the article just below the existing speedy deletion or db tag coupled with adding a note on the article s talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would would render it more in conformance with wikipedia s policies and guidelines,0 +hm and for the claim that it was the work of an outside hacker intruding upon the university of east anglia s climatic research unit in a skulking smash and grab to come up with this carefully structured foia zip archive predominantly consisting of data files and computer code with a gracenote minority of e mails showing how utterly rotten to the core are the correspondents responsible not only for running the cru but also the realclimate agw fraudsters propaganda blog we have only the claims of the university of east anglia officers responsible for running the cru and the proprietors of the realclimate sack of feculent lies you wiki nazi watermelon scum want to think this over a bit,0 +seems like implying that someone who has different polices is opposed to bsa is a collolary to the principle shoved at me when i tried to include rpoportionality numbers here s the quote let me give this an example let s say i m talking about the us presidential election suppose i say this only million americans out of the million americans total voted to re elect president bush this sentence is technically true and it is technically factual but it is also misleading and unfair to president bush the sentence implies that while only million supported the president the other million didn t vote for him this is technically true but it s totally unfair and misleading the fact is most american s don t vote and the majority of those million were undecided not opposed to bush and as we know bush was in fact the most popular candidate so to say million out of million total supported bush is simply very very misleading even if every word of it happens to be true so saying others with different policies are opposed to bsais the same kind inferrence some were vehemently against,0 +listen all you fags need to get a life and stop editing wikipedia look outside once in awhile as the world passes you by while you sit and try to ensure that every little word of every little article is correct with no vandalism and correct information do us all a favor put down the mouse and keyboard wash your cheeto encrusted fingers and get your pale fat asses outside then walk in front of traffic so that we never have to deal with you again,0 +hey todds quick q why are you so gay,0 +never mind it s already happening oh well,0 +im user daehtunhguod for goodness sake p s read it backwards then youll get my proper account name,0 +just because the nazi s used the story in a propaganda campaign doesn t mean that s what the story is about a nose as long as a poker doesn t sound much like a jew ish nose anyway,0 +don t see the point of linking husband profile to her page as he is not a public figure i have seen other pages like george yeo s spouse listed but never seen her corporate roles profile linked removed the same link as it talked about marriage but link has nothing to do with marriage removed a temasek review article stating she dumped her boyfriend for her husband because it s baseless as strictly speaking there was no evidence taking photos together doesn t mean boyfriend so don t see a point in inserting your the new paper article of her refuting the claims removed the youtube link as i was told there s copyrights involved also related to you seem to want to to include comments made by pm lee about tpl i don t see the point so may i know each time a minister talks about tpl are you going to write it in i ve made those edits to shorten the article it was too lengthy too many quotes i don t see the point of including her treasurer post in th council when i ve updated her role in th thanks for blocking me,0 +talk list of bah s please see comments i don t see why the whole article has to be so radically trashed i understand the idea of sourcing and have been working on and off for months putting citations on individual pages i think the whole matter of sourcing on lists is at least confusing and to eviscerate pages seems darn disheartening after a lot of work to try an improve things not that i haven t taken time away as your own page says sometimes wikipedia takes a lot of our time,0 +i don t know what i was thinking and would like to be un block so i can continue editing i apologise,0 +i ll watch this movie again soon and write the article,0 +play o b c c dd c d e e c if someone knows tex better than i do that s the music i worked out in quickbasic it isn t what i recorded nor is it what i will record but it is a printable and renderable trans position of what i will record the scale goes from c up to b so that initial b and c are close not over an octave apart,0 +redirect talk mumbai attacks,0 +grow up you silly person it s not disruptive editing your reverting is disrupting hey qed actually pay attention to wikipedia s own page devoted to people with the surname mckay not mckay because that name does not exist https en wikipedia org wiki mckay your logic qed suggests that this https en wikipedia org wiki mckay is wrong because mckay has uses an uppercase letter k you imbecile just ask a specialist in the field of surnames specifically irish and scottish surnames and you will have your answer,0 +right so after i make it clear i m not upset with you and i concede the page won t have the proper citations you throw some sarcasm in my face nice wikipedia will go far with administration like this,0 +removal of prod i ve removed the prod notice from the article i think that the services offered by the city is important verifiable and can become a comprehensive article the only source cited for this information so far explicitly states the broad class of services funded but not particular programs and this list appears in the article with brief explanations if you truly believe this article adds no value to wikipedia there s always articles for deletion matrix,0 +i think this article is useful i found this article very useful today i would hate to see it deleted the content that is here is short but nicely put together with a nice info box down the right,0 +yes this confirms that i agree to refrain completely from editing female genital mutilation and related pages for six months thank you for your peacekeeping efforts and tia for the unblock t c,0 +i was listening to the song stay and it had the same lyrics as fire water burn by bloodhound gang can anyone confirm,0 +replication of section of ptsd to test image change,0 +corinne i was replying to your comment that i think articles on animals and birds and insects are much more interesting than articles on plants and fungi but i ll do those too i also really like articles on geology mining and environmental topics i m saying that sounds fine go ahead and do them at tfa to see what support on prose means click on wp fac and then search for that phrase you ll see that i ve offered something called support on prose for many of the articles currently up at fac looking at what i ve done should explain it better than i can dank push to talk,0 +ultimately i think the perthwellington article should simply be removed and redirect here and that the perth middlesex article should be brought up to date,0 +i am restoring the notability tag i don t see it minor government official no notability at all yeah does his job and is a person nod great nothing to do with wp sinneed,0 +and all i am using is a select few you keep taking it off because you dont want it on there you have yet to provide a decent explanation for making special mention of a tyre company as the club s sponsor that is coming from your opinion and not everyone elses its not that it has a special meaning but that it is listed as one of its official main sponcors which is to why i dont understand why you cant let it be user fgaribay,0 +m gandhi s influence wasn t mohandas gandhi the ultimate prude the dude didn t even think it was ok to have sex with his own wife i realize gandhi made a huge contribution to the anti colonial struggle but there were some things he didn t liberate at all if the establishment is still stuck in the victorian age in certain ways isn t some of it gandhi s fault,0 +wikipedia is not a democracy and we don t do trials you seem to know enough about practices here to be a previous user though disclose your previous account s if they didn t have anything to do with centristfiasco that might be a start talk,0 +february utc is used at category volleyball team navigational boxes it has show hide t c wp chicago wp four,0 +your userboxes i ve removed two of your userboxes which claim apparently falsely that you are female and that you serve in the british army per your reversion will you kindly address this inquiry some reason you re blanking my comments rather than addressing them,0 +reverted sorry i reverted it back to original thank you for warning me diablo,0 +what exactly is the problem with specificity of my sentence azlan iqbal,0 +oh well if you put it that way all i can say is that in cyberspace no one can see you blush perhaps i should add that my wife now is telling me off about time spent on wp mar utc,0 +somthing something do you hate a shetty the yang,0 +welcome to the site of chimpo you are allowed to send messages but not delete them thank you very much good bye,0 +ufc afds those were never trans cluded to the afd page so there s probably not a lot of point them existing i m a bit pushed for time today so if you want to remove the afd banners from the articles i ll delete the afd pages when i get the chance i haven t been able to spend much time on wikipedia lately looks like they ve been officially listed as afds i ll leave them alone for now jake bostwick i ve only nominated a few very obvious mma people before bostwick was deleted via afd discussion a speedy delete on grounds of it being deleted before was denied to me he still fails wp mmanot but i m in no way a mma expert what do you think at first glance it appears that bostwick hasn t fought at the highest level of mma as required by wp athlete or w hate ver the guideline is these days and wp mmanot if i had an interest in having the article removed i would afd it again hello it has been brought to my attention from an outside source about this discussion can i first point out that jake bostwick is a former ucmma middleweight champion and currently the ucmma welterweight champion ucmma is along with bamma and cage warriors the biggest mma promotion in the united kingdom secondly after glancing over wp mmanot and wp athlete i see that they are indeed guidelines now i may be cut from a different cloth from you two in terms of how we see what a guideline is but to me a guideline is optional when it comes to following it meaning that they cannot be used in afds as the sole reason why to delete any article thirdly i have spent much time working on the page as well as being the creator of the page i have found very strong sources from websites such as the sun the mirror as well as finding information that goes beyond it from being a typical mixed martial artist s wikipedia page as it has information about him being on a reality tv show called party wars and being the headline of an article in which he got into issues with the police for his tactics whilst working as a wheel clamper only strengthens his notability the very sources on him alone helps him pass wp gng which is all you need to pass a page on wikipedia in my opinion i would welcome constructive ideas about improving the page even more but to talk about deleting the page without informing me first of this discussion i find is a bit disrespectful towards me however i fairness to you we haven t exactly known each other for a while so now i have adding myself to the topic and given the facts of the page s position on wikipedia now we can talk to help improve the page even more user pound pound since you filed the spi i wanted to update you that i ve reversed the block i requested another editor to review the case and while there are a lot of coincidences he felt it was borderline enough based on behavior that the block should be reversed and instead just monitor the situation i had some reservations going into the block but it seemed likely however i fully respect the review and would ask we all give the benefit of the doubt in this case i completely see why you reported it i did block after all so there is no question as to your faith here just wanted to update you join wer alpha chi national honor society copyright i made changes and enhancements to the alpha chi national college honor society page including citations to sources the director of operations contacted wikipedia granting permission for material from the website to be used by wikipedia she received a reply indicating that it was safe to move forward with the edits nearly a month later you removed the edits is there something i m missing here a copy of the email sent to wikipedia and the reply dear lara noah thank you for your email our response follows your message lara,0 +click on the edit tab at the top of the window if you need any assistance you can ask for help at the articles for creation help desk or on the please remember to link to the submission you can also get live chat help from experienced editors thank you for your contributions to wikipedia,0 +denial of rollback well rollback is for reverting vandalism blatant spam only and not for reverting good faith edits or for use in content disputes revert wars the best thing to do would either be to wait for a month or two and re apply then or i could grant it to you now but only if i have your guarantee that you ll use rollback for reverting vandalism and that you understand it s for that use remember that rollback can be removed as easily as it can be given,0 +comments on draft,0 +i m sorry dear friday i have noticed you have block me a few minutes ago i learned a lot from my past mistakes you have opened my eyes and see what horrible mess i have created i will try to never attack another wikipedian again and on top of all that i am sorry for bieng a royal prick pardon the bad word even though people might erase my edits i will try never to attack anyone anymore,0 +series while the bbc has confirmed that the series will return into spring until it is officially confirmed please don t put th may as mentioned by robson green on his twitter yes he may be a well known actor of northern lights casualty wire in the blood and may have had a few hits even a couple of s with jerome flynn but it s not confirmed officially just saying,0 +a cookie for your sub storting everybody s doing it ahh relief,0 +the sequel to the secret of nimh,0 +thank you for experimenting with the page decimal day on wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia,0 +thanks done again i think the septic system assumption is correct but i was unsure how exactly to spell that out since the source says have sewerage system connections and public sewerage systems and septic tank systems are in use,0 +take a joke every now and then you get too hyped up about every single thing,0 +welcome hello sinisaja and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia tutorial how to edit a page and how to develop articles how to create your first article using the article wizard if you wish manual of style i hope you enjoy editing here and being a wikipedian please sign your messages on discussion pages using four tildes this will automatically insert your username and the date if you need help check out wikipedia questions ask me on my talk page or ask your question on this page and then place helpme before the question again welcome,0 +i don t understand how you can claim that other uses or otherwise has any kind of meaning to anyone other than the one that wrote it and possibly you it seems if the templates are changed then that either means that the display should also be changed or that it is the reason they are changing the template either way the change itself would likely nullify this argument i agree with magio above this seems to be nothing more than a subtle way at irritating other editors by somehow logically trying to argue nonsense,0 +redirect talk dysfunctional tech n ne song,0 +for future reference suzuki doesn t say killer app you might get to keep changing the page back but you know that he doesn t say it in that interview why you continue to lie while still providing the link is hilarious,0 +probably the result of ubiqiuty in other words you have no evidence for your side ignore the clear evidence against it and want to force your opinion on the article nope sorry doesn t work that way,0 +ossory citations and that s how wiki works citations not long rants,0 +support just because we can disambiguate by capitalization doesn t mean we should i suspect most readers who type in top hat expect to read about a hat not a film,0 +just a reference note joke edit might of have been the incorrect template but saying beware wiki nazi s is very inappropriate andrewrptally ho it is oh well my apologies for bluntness i wonder what do you call a fraudulent encyclopedia because it isn t really an encyclopedia run by monstrous careerist children who follow a fuehrer all with ruthless efficiency what do you call this horrendous admin abuse gratuitous range blocks permanent bans all because an admin doesn t like the editor hm got a better term talk,0 +and that seems fair to you,0 +perhaps a snifting valve,0 +nb has received a h block for wp rr violation,0 +after reading the article and comparing it to the content at http w resistantstarch com resistantstarch health focus it is obvious that much of the text has been copied from this site and only slightly modified frankly most of this article is a thinly disguised promotional effort effort by the owner of the web site national starch llc to promote their corn product which they claim contains resistant starch the enourmous number of external links at the bottom of this article are also replicated on the same web site owned by this company and appear to be an attempt stack search engines when searching for resistant starch,0 +that would be the comedy album right a bestiary,0 +we might also want to mention the documentary skipping waste,0 +mate sound like you are jew ish gay ness is in the air,0 +thanks i d seen the lu s i pagemove request at the top of your contrib history so knew you had the process better retained in working memory than i,0 +anyone have any thoughts on the addition of bernard lonergan to the list of notable metaphysicians since augustine aquinas are listed and lonergan is clearly in this trajectory of catholic philosophers i thought he would be a good addition to the list his work is well regarded in th century philosophy he certainly has the credentials and i think many would agree he made highly significant contributions to metaphysics by extending the core ideas of aristotle augustine and aquinas forward in the areas of cognitional theory epistemology and verifiable metaphysics based on the data of consciousness and his study of methodology in mathematics and empirical science see insight a study of human understanding there are lonergan centers at boston college university of toronto seton hall and loyola marymount university devoted to studying and extending his works in philosophy and theology i m quite sure nearly every philosophy professor at any jesuit schools would consider his work notable my attempt at this addition was reverted as not particularly notable as a metaphysician so thought i would throw it out there,0 +thank you for your kindness talk contributions log,0 +it did not get credit becuase it was not a good game it was promoted as something new and original and it was not it was like modern day prince of persia i played it and it was just to plain and done before,0 +speedy deletion of indian association of special libraries and information centres a tag has been placed on indian association of special libraries and information centres requesting that it be speedily deleted from wikipedia this has been done under section a of the criteria for speedy deletion because it is a very short article providing little or no context to the reader please see wikipedia stub for our minimum information standards for short articles also please note that articles must be on notable subjects and should provide references to reliable sources that verify their content if you think that this notice was placed here in error you may contest the deletion by adding to the top of the article just below the existing speedy deletion or db tag coupled with adding a note on the article s talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would would render it more in conformance with wikipedia s policies and guidelines,0 +la la la this is my page go away unless you have something amazing to say,0 +why d you delete the kufi smacker bit it s not anti islam juelz santana of dipset is a well known muslim who associates with the kufi smacker movement by the way let s start a kippa smacker movement,0 +as the whole world consider you sunnis terrorists,0 +listas wenceslaus i of luxembourg,0 +thanks for replying off hand i m not convinced that investigating your reply wizard and how it works would have speeded up this conversation i checked the deletion log before querying this with you it merely refers to criteria f invalid fair use claim without any further explanation of exactly why as you have now given in this instance the stamp image is not used simply as an illustration where as per policy an alternative illustration for example by scanning the covers and creating a similar collage could have been created it also makes an important contribution to the discussion of the series by demonstrating that it is sufficiently important for a stamp to have been created depicting the series as a whole the existence of the stamp itself is noteable for a mention in the article i note that criteria is not a wiki policy but merely a guideline and is stated to be one example of acceptable usage not an exhaustive list the policy above states that usage must follow the spirit of the policy at the top of the page not the guideline list of examples regards,0 +need your opinion hi can you offer your opinion on this discussion thanks,0 +early arrius i think that there was an early different arrius as it is cited as the gas generator for the sncaso farfadet gyroplane of the s just in case other early applications come up cumulus nimbus floats by,0 +follow up thank you for your further input your last edit creates a problem with respect to true airspeed v indicated airspeed see the beechcraft discussion page for further comment i will leave your last edit standing for now but it describes something physically impossible,0 +please do not vandalize pages as you did with this edit to hancock film if you continue to do so you will be block from editing,0 +well in case anyone s interested in following up on this further using the la trobe university on line search engine a search for the term mah purisalakkha truncated to allow for various inflections leads to bjt record hits at least of which are in the pali canon here s the first page of the search results with links to the subsequent pages as well http w chaf lib latrobe edu au dcd pitikaresults php title start to searchstring mah purisalakkha of course this is by no means a straightforward indicator of how many discourses actually reference this term nor what this term means in the context of various suttas since multiple records can be part of a single sutta similarly this is not a clear reflection of the total number of times that this term appears in the pali literature as a single record could have multiple instances of the term and their might be other ways of formulating this phrase not addressed by the above truncated compound term etc fwiw a quick review of these results potentially suggestive of the distribution of this term in the various nikayas shows hits in the digha nikaya in the majjhima nikaya none in the samyutta nikaya in the anguttara nikaya and in the canonical khuddaka nikaya mostly in the suttanipata in the paracanonical kn words e g netti peta one in the abhidhamma s kathavatthu once in the visuddhimagga and times in the pali histories if nothing else this distribution perhaps suggests that suttas identified by peter and myself might possibly be among the core texts with metta talk,0 +it seems there are some people very biased that add traits or making claims without citations i deleted almost anything that does not have citations as it is obviously just biased opinion and not astrogical facts some people must stop acting immature and behaving like arrogant little pricks concerning the zodiac ps i am a greek and i know a lot concerning greek culture and the zodiac i can not permit lies and twists about something that was created from my ancestors,0 +talk gaza flotilla clash apologies i reverted you just now when you removed propaganda stuff like that is ok on an article talk page since it s not the article indeed it should remain on the talk page so that we can discuss its applicability to the article cheers idle vapourings of a mind diseased,0 +september,0 +navy or marines curious his job description is that of a marine yet the spartan program was run by the navy any insight,0 +don t be mad keeping spamy links away is good and its not good if you remove all the links sometimes to a purely commercial site certain articles needs links always keep your brain young and open for learning and just do not go ahead only in the way that you think right sometimes what we think right may be idiot ic as in your case i hope you are novice internet user and you have very less idea about websites before editing wiki just take some time to learn about websites,0 +importance attention collaboration candidate past collaboration peer review old peer review ancient near east task force australian task force aviation task force british task force canadian task force chinese task force classical task force french task force maritime task force yes memorials task force middle ages task force napoleonic task force polish task force us task force weaponry task force wwi task force wwii task force,0 +re numbering well if that s how the scores number them that s how they number it i suppose it s not an entirely bad thing we do reference it in the text but we will need to be clear that other recitatives exist but are not listed,0 +november utc the context is evident in the movie so we can understand her comments as true,0 +as daft as it sounds yes if it cant be verified it gets removed plain and simple i suggest you reread these core wikipedia policies wp truth wp verifable wp rs wp nor and wp nor i hav enot intentions in edit warring with you over it but be warned since it isnt sourced anyone can remove it and report you for vandelism talk contrib as it says on my talk page i prefer to have discussions all in the same place i am watching this page so please reply here to this end i have taken the liberty of moving your previous reply here so if i add a statement that there are no vacuum tubes in ssds either you ll insist on a source for that too seriously you are mistaken on a few points i think you need to read wp verify yourself all material in wikipedia mainspace including everything in articles lists and captions must be verifiable all quotations and any material whose verifiability has been challenged or is likely to be challenged must include an inline citation that directly supports the material any material that needs a source but does not have one may be removed emphasis added jeh note the distinction you wrote if it can t be verified it gets removed but first the claim that ssds contain no disks obviously can be verified not only is it part of the definition of the term the very first reference in that very article confirms this claim in its description of these devices so no we don t need to cite a source for this particular instance of the claim and second except for blp issues wp v only states that unsourced material that needs a source may be removed this material didn t need a source and even if it did it isn t required to remove it right away even for claims that really should have a citation to a wp rs the polite and widely accepted thing to do is to add a citation needed template see template cn this is a much less abrasive thing to do to someone s edit rather than simply reverting it i suppose you could say well since i removed it its verifiability has been challenged so now it does require a source yeah fine so i go to the work of adding a reference name to one of the refs that s already there and then cite that same ref from my new text as well no it s not much work but consider does it really improve the article to add a reference footnote number to a statement that is as obviously true as this one is adding that little footnote number really the best use of my time here was it the best use of yours and will this little challenge you raised over a completely trivial edit and obvious claim make me feel more or less eager to contribute to wp in the future also in my edit i merely noted that despite the term solid state disk there are no actual disks inside these devices in your edit comment you said since they refer to it is a disk we must to sic well that is true but my edit did not remove any reference to the terms solid state disk or electronic disk from the article nor even claim that such were wrong so your edit comment was off point and provided no valid justification for your action finally i must point out that you are wrong about vandalism the fact is that edits made in good faith are not generally considered vandalism after reading wp verify you should probably look at wp vandalism even if misguided willfully against consensus or disruptive any good faith effort to improve the encyclopedia is not vandalism edit warring over content is not vandalism careful consideration may be required to differentiate between edits that are beneficial detrimental but well intentioned and vandalizing mislabelling good faith edits as vandalism can be considered harmful emphasis added jeh you should probably also read wp agf to see what good faith means and what you are supposed to do about assuming it in sum please be careful about undo ing others edits until you are more familiar with the actual prescriptions of things like wp verify consider using the cn template rather than reverting unsourced material please think carefully before tossing around words like vandalism and you should never have intentions of edit warring so the statement that you don t have any here is troubling why would you need to state such a thing if not for the possibility that you might have s,0 +because it didn t assert notability see wp web to know more about notability of web sites by the way are you the owner of this site,0 +ok but why and how do you explain the choices of scholars here above,0 +the article looks fine to me i don t see what needs cleaning up really is the tag needed,0 +i ve replied briefly there thanks for taking this up talk contribs,0 +thank you so much,0 +vandal hi there steve vasco here longtime no see hope all s fine by you unfortunately the first time i address you in a year is not for a good matter could you please re protect the gustavo manduca page the greek vandal as returned inserting false info in the subject s article thanks a million in advance keep up the good work vasco portugal,0 +message from bobby boulders i m on a mission that some say is impossible but when i swing my swords they all choppable love bobby boulders,0 +universit lille nord de france i want to redirect this page to lille university northern france how can this be easily done sincerely,0 +baseballs bugs is an ugly ignorant fool,0 +yeah this was on a episode of smallville,0 +goodday cu seems to be permissible only in extremely serious cases i came to an agreement with administrator rd to register with all previous unwarranted complaints about ip hopping then to be taken off the table once i registered i have only used fynire i can give no other assurances and don t see why i need to o fenian et al use any and every bureaucratic device to wear down their opponents however you can see an example in the peter hart article where they were seen off,0 +u aint got no pancake mix lady so stop,0 +talk case closed i think instead of template round in circles we should set up a template recurring themes di curtisi di salvadori,0 +where d they go the omission of the klamath mountains is probably a bit of a shock to california geomorphologists and geologists but it will be welcomed by beginning california geology students the coast ranges are bad enough without having to figure out that thing about the sierra nevadamaking them all one is nice but it should say bounded by the sierra nevada on the east and north i suppose bounded by the cascade range to the north the sierra nevada to the east the tehachapi mountains to the south and the coast ranges and san francisco bay to the west the valley is a vast agricultural region drained by the sacramento and san joaquin rivers i d ask for a fact check or something but i d be banned by the community for questioning a fact still that s quite a lot of mountain to do away with in a wikipedia article,0 +it seems edit warring is back long time no see unfortunetly i am here once again to say user ningu m is once again edit warring my edits funny i have been out of wikipedia for some days too busy and while i was out user ningu m almost did not post anything in wikipedia now that i am returning the user seems to be once again active in wikipedia it s incredible how fast he is able to edit an article i have recnetly edited in a few minutes he s there posting or reverting something when i am not posting in wikipedia he is not posting too i think it s clear the other user follows my edits it s also funny an user who claimed to not to be associate with wikipedia who seemed to be leaving the projective is once again active only because i am returning with hundreds of articles in wikipedia it seems the other users is only interested in the articles i recently posted this is really strange i try to be far from the other user but it s impossible because he follows me and spends hours a day checking my recent edits please do something aboout it cannot keep this way,0 +the republican this page shows you how to make a userbox,0 +and i would like to see this become a new beginning for all including bullrangifer who also seem to have a change of heart and thanked me for my edit on my talk page today,0 +sockpuppetry case your name has been mentioned in connection with a sockpuppetry case please refer to wikipedia sockpuppet investigations jake picasso for evidence please make sure you make yourself familiar with the guide to responding to cases before editing the evidence page t,0 +the sources that illustrate the controversy over describing ni as a country include those listed as sources at talk countries of the united kingdom refs no similar sources questioning the word country are shown for any of the other parts of the uk i agree that most sources describe ni as a country but it can t be denied that such a description is contentious,0 +please learn to spell,0 +oh dear i suppose i am now at the mercy of the douches i was block for insulting i do appreciate the gesture though and you really are doing good work with this plagiarism stuff although i am disenchanted with the editing experience i still read wikipedia articles every day and you re one of the reasons they do not entirely suck,0 +keeping family guy pages open i ve noticed that a number of the family guy pages are up for partial deletion due to the cultural refences having no citation etc as someone who enjoys the family guy pages not getting all of the references in each episode as i m not an american then i d appreciate it if they were expanded or left as they are thankyou,0 +suggest you strike through your comments talk to me,0 +fair use rationale for image simpsons coltrane cat jpg thanks for uploading or contributing to image simpsons coltrane cat jpg i notice the image page specifies that the image is being used under fair use but there is not a suitable explanation or rationale as to why each specific use in wikipedia constitutes fair use please go to the image description page and edit it to include a fair use rationale if you have uploaded other fair use media consider checking that you have specified the fair use rationale on those pages too you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any non free media lacking such an explanation will be deleted one week after they have been uploaded as described on criteria for speedy deletion if you have any questions please ask them at the media copyright questions page thank you acbestmy contributions,0 +october utc sorry i didn t reply before queens picture i tagged the fair use image sadly probably needs a source too though the image is so old makes me feel like a ass sometimes to want to tag them the big issue is the source for fair image means we know who holds the copyright else there s no proof its a promo image for example,0 +thanks i had the same problem with an online trans lator anyway i ve blanked out the sentence in question and asked for an editor to trans late you can see the request i left at wt spain i m about to sign off for the night now,0 +mediawiki duplicate defaultsort do you realize what a wonderful thing this is when you created it eight weeks ago was it your intention to address the conflict that pupped up in the category it created i hope not because i have been although if you want to jump in and take care of the ones under s and t while i finish l and do m through r i will not complain when i stumbled across the category there were pages in it by the end of today there will be fewer than my goal is to get all the non trivial items resolved by the end of next week so i can start on the pages in category biography articles without listas parameter a project that should keep me out of trouble for the rest of my life because i am resolving the conflicts in the first category i have learned more about how banners work than probably anyone else except the folks like you who know why the banners work as they do i have also leaned what items can set the defaultsort as an added bonus i have leaned a couple of keyboard shortcuts i did not know before and i have become almost addicted to preview the absolutely best part about the dup ds is that the category it has created that i will continue to monitor on a daily basis is a safety net for me when i mess something up on a page in category biography articles without listas parameter the easiest error to make is for me to neglect to put a listas value in a template that uses it wants it and will throw a fit if it is not there thank you,0 +which article are you talking about exactly,0 +hm images can be photoshopped well yes but text citations can be fraudulent too thanks for your reply,0 +again you offer no alternative reference just personal opinion and threats frankly you are not adding to this conversation unless you can find a citation that gives a different definition for city proper that we can use superior to that from the un currently cited until then we will use the un definition with the understanding that cities are defined differently in different countries and this is a compromise,0 +anyone can look up your history of contributions and its hard for people not to notice your behaviour,0 +i m also italian the english word is hood so cappuccino is literally small hood i never heard the word used for condom anywhere in italy i took the liberty to remove the reference cappuccino art actually exists my barista tries to match what he paints on top of my cappuccino every morning with what he thinks my mood is flowers hearts jan utc,0 +it certainly is someone who s been around before i just can t think of who it is it s a little freaky ah well we had a bit of a blizzard today and now it is degrees and dropping just grand,0 +xkcd hey a fan pointed me over to where you had deleted the line about my working for nasa from the short article on me randall munroe labeling it patently made up information understandable and taken in good humor of course and nothing on the page is sourced it s more of a stub than anything but i m curious why you were so sure it was fabricated xkcd i find it hard to believe that a year old could have been working full time for nasa of course you may well be freakishly gifted and the kind of person that nasa would have been all over but it just seems ever so slightly hard to believe schreit mich an i interned there during college and started working for them a bit before i graduated i stayed for the better part of a year until late nasa is a huge organization with a tremendous number of contract positions on all sorts of projects it s not all rocket scientists leaning over mission control screens and talking to astronauts on their headsets anyway the information is taken from my published bio page but you re right you have no way of knowing whether i m lying or not i guess it s probably safest to assume that i am in that case i ll admit my mistake and congratulate you on interning and working in a pretty impressive place i know very little about science but anyone who got to work for nasa has got to be a smart cookie in that kind of area feel free to re add the info although the impression i got from the original version was more than you weren t just a contract worker if that s not even a valid distinction in the states it s increasingly less of one here in oz then my apologies there in advance schreit mich an honestly they never really explained to me which one i was i went to work every day in a building at nasa where i worked on nasa robots and nasa paid me through a government contractor when i said i work for nasa no one argued it was a lot more dilbert esque than you would expect old echoing tile hallways with quiet gruff middle aged men working at blueprint covered desks mild office politics lots of presentations and buzzwords and hours spent wading through computer code trying to figure out why the motor on the lab bench was spinning the wrong way i thought it sounded like the perfect place to work and it was good in a lot of ways but i was happy to leave xkcd can you nominate my entry hey bighaz can you please show me how the nomination process goes for dyk i mean is it nominated the same way like featured articles are nominated actually this thing is new to me thanks sure thing the way it works is that your nomination which you made is called the hook that gets put onto the suggestions page which i ll move it to in a moment over the next few days people will make various comments about it if the hook is too long if it needs sources w hate ver else if you re able to respond to those comments if there are any made then your article might get selected schreit mich an by suggestion pages you mean to say talk pages or what it s not easy to do that since the suggestions are cleared from the page after they get onto the front page so i really can t just point you to a page and say here you are what particularly do you want to see if you re after examples of the kinds of comments people make just keep an eye on the suggestions page schreit mich an caucasian ethnicities semites are caucasian or indeed not see for example semitic which clearly indicates otherwise they speak wildly different languages to those spoken by indo european people who are the ones we normally call caucasian so unless there s some startling new research out there i don t think that comment is accurate schreit mich an i m not even going to dignify this with a response use,0 +i don t want anything in this article that isn t specific to rushton s book including generic comments by gil white that don t address rushton in particular and certainly not his book just because gil white mentions rushton elsewhere in his book does not justify putting a completely separate criticism of race theories in general in section to devoted to criticism of his book if you insist upon putting in generic critiques against race in general i ll insist on putting in references that defend race in general people come here not to read about the race debate in general but about this specific book and the response it got i have no problem with the native american argument if it can be cited as a critique against this book but for now it s an orginal argument composed by wikipedia editors,0 +im not sure what broke but until its fixed ill stop running it unless im manually watching it and checking its edits command,0 +no original synthesis was taking place you are just either wilfully ignoring the way the policy statements work or simply unaware,0 +there is no intention from my side to canvass but i need to report the issue to you because i requested a o and you closed it because no discussion had place before as suggested i tried to convince user direktor to explain me why he reverted my sourced edit but he replied that my english is too poor and i should not be permitted to write on en wiki i am now caught in a egg and a chicken situation no o because no talk had place before but no talk can have place because the counterpart refuses to discuss on top of that i cannot react to any insult because i do not want to dirt my hands,0 +daysleeper stop vandalizing fdny page,0 +curtisnaito s article edits are a disruptive and in the last few months he has been campaigning for me to get banned from wikipedia for criticizing these edits he has managed to sneak several poorly sourced articles past the ga process and these articles should be reassessed in accordance with the ga criteria all the other users who have commented on the issue will agree with me my offering to not request these reassessments if curtisnaito stops following me and harassing me was a peace offering not a threat,0 +no problem the only place i can think of for getting a dictionary the other way around would be an aromanian organisation most likely in romania maybe rom or france if they have one it might be a paper copy here is some information on associations that i found one of the romanian ones has an email there would have to be some aromanian romanian romanian aromanian dictionaries in circulation considering the minority in romania i have a macedonian aromanian aromanian macedonian one from macedonia so you may indeed get your hands on a copy take care alex,0 +thanks for the welcome thanks tom for the warm welcome i see that our paths have crossed before on multiple topics c c duke nukem and probably one more after looking over your page i see you share many of the same interests as i do and i have a feeling our paths will continue to cross in the future if you ever need a hand with anything feel free to contact me,0 +while i m no expert on the subject matter i d expect a government shutting down an ngo or suppressing a major social movement should have made the news and sandinista opposition to the ow would make an interesting addition to the draft that entire government programs didn t find their way into any reliable sources whatsoever seems unlikely,0 +you will be my target now i pity,0 +january this is your last warning you will be block from editing the next time you vandalize a page as you did with this edit to timeline of united states history present,0 +certainly i was hopeful that he could provide source material that would help the article now that he has refused i have no further need or desire to interact with him,0 +fix footnotes something broke the footnotes but i can t tell where it happened please fix mkmcconn,0 +hello your submission of utrecht te deum and jubilate at the did you know nominations page has been reviewed and there still are some issues that may need to be clarified please review the comment s underneath and respond there as soon as possible thank you for contributing to did you know anselm,0 +criticism given that this band is utterly shit the article in its current state portrays it in a far too positive light therefore to make it more npov there ought to be a section about how bad the music is entitled criticism,0 +i m really hoping that all of these edits are actually beneficial and will keep the article as a ga and not a gar candidate communicat please stop trying to make the text written the way that you want it to be it does not appear that the current consensus is on your side to be honest white shadows nobody said it was easy,0 +the onus is on you to show that the guidelines require removal of that study i don t have to make your arguments for you,0 +kill team a prod template has been added to the article kill team suggesting that it be deleted according to the proposed deletion process all contributions are appreciated but this article may not satisfy wikipedia s criteria for inclusion and the deletion notice explains why see also what wikipedia is not and wikipedia s deletion policy you may contest the proposed deletion by removing the dated prod notice but please explain why you disagree with the proposed deletion in your edit summary or on its talk page also please consider improving the article to address the issues raised even though removing the deletion notice will prevent deletion through the proposed deletion process the article may still be deleted if it matches any of the speedy deletion criteria or it can be sent to articles for deletion where it may be deleted if consensus to delete is reached if you endorse deletion of the article and you are the only person who has made substantial edits to the page please tag it with,0 +http en wikipedia org wiki wikipedia requests for adminship khoikhoi just look here,0 +you obviously do not understand kla was not a governmental organization serb police or army was w hate ver kla was doing police and army must conduct their operations in accordance with law mass shooting of alleged kla members without investigation and trial was clearly not in accordance with law,0 +its been put up for speedy deletion because its short if you contest it saying that you will add more i think that they will give you a chance,0 +september utc hi casliber sorry for the lack of communication i was busy with college started on nd and never really got much time to read the parvans those parvans are really lengthy and it will be quite some time before i finish the first i ve decided to refocus my editing to cs articles for the time being if i need any help i ll ask you cheers talk mail,0 +history of primal therapy article i read through the recent discussions on talk primal therapy i also added two more comments to the talk arthur janov page did you send an email enquiry the date for france d s marriage to art is without credibility after the divorce to vivian s great credit she avoided the temptation to publicly humiliate arthur janov after all he wrote in the original primal scream it is instructive to note that married couples who have both gone through primal therapy have never separated chapter and according to france d janov s own admission in the primal center s video series she enrolled at the primal institute because excessive marihuana use had broken down her gates so it s a fact that art married a former patient my feeling is that despite being tagged as a stub the content of the arthur janov article is just about right for an encyclopedia entry it isn t really the place to dissect janov s reputation i know it happens in other wikipedia biographies but in many cases it has got out of hand i agree with your suggestion on the primal therapy talk page that this kind of material belongs in a separate history of primal therapy article the conocer piece doesn t strike me as a sound source of verifiable information so i put together some links to articles which can be found online if you type emotional intelligence into google the no result is steve hein s eqi org website he interviewed a former patient who attended arthur janov s primal center in the late s you can find his interview notes here labelled cautionary note janov s bio on the primal center website states the latest research conducted at dr janov s primal center on the effects of primal therapy on the brain was performed by dr erik hoffman former professor of neurophysiology at copenhagen university you can read what erik hoffmann ph d is doing now at hoffmann s website on this page you can find a trans cript of dr e michael holden s account of what happened to him after he left the primal institute carol mither s book therapy gone mad identifies case histories from janov s first two books that were written by defendants in the lawsuits against the center for feeling therapy simon thanks simon why can t you create an account like normal wikipedians complete with a talk page i don t think the history idea will come to much there is just insufficient well sourced information to make much out of it especially in view of cgingold s latest analyses on the primal therapy talk page regarding derogatory statements about living individuals i have already read the michael holden swan song twice sad case you seem to be applying two standards of evidence the primal therapy article gives an outline of primal theory based on arthur janov s books alone which were written to attract paying customers to his exclusive and expensive private treatment center last september i wrote in the primal therapy talk page will the article have something to offer readers who want to know about stettbacher s method or the international primal association or the plethora of copycat primal centers that flourished in the s there is sufficient well sourced information available for a history article for a start two books about the center for feeling therapy erik hoffmann s bio and the trans cript of dr e michael holden s audio tape which was played a number of times at the ipa convention in the books by carol mithers and tomas videg rd are already referenced in the main article i have a copy of videg rd s book by the way also professor steven rose wrote a one page account of his research with arthur janov in lifelines as janov had hoped it turned out that before therapy the quantity of these particular receptors in his client s platelets was considerably below normal within six months of therapy clients depression had lifted and the biochemical and immunological measures i was making approached the average for normal non depressed people of the same age and sex further down the same page he added i obtained similar biochemical results when a couple of years later i did a similar study with depressed clients going through other less dramatic forms of psychotherapy so i suspect that in such cases the therapist matters more than the therapeutic theory having participated in the editing of articles in t,0 +message from you regarding threats stalking harassment violation of terms of service and cyber bulling from user keri user keri has engaged in a pattern of threat harassment stalking and cyberbullying against me despite my telling them never to contact me again next i got an implicit threat from you alleging a legal threat involving me the conduct that user keri is involved in are all illegal and i have repeatedly demanded that user stop contacting me stop using your position of authority to takes sides with the mods and admins against the by censoring us and trying to intimidate us,0 +dalit the oppressed one is not an insult ambedkar a key dalit emanciptor uses the term dalit as a badge of honor insulting words for low caste people would be chamaar or harijan dalit is the official word for casteles people in indian law dalit is not a personal attack it s like african american or hispanic american as opposed to nigger or wetback,0 +baseball bugs is absolutely correct in this case he is in the right,0 +louisa for the win justin drew bieber,0 +sockpuppetry case you have been accused of sockpuppetry please refer to wikipedia suspected sock puppets for evidence please make sure you make yourself familiar with notes for the suspect before editing the evidence page,0 +it was a reference to something if you didn t have the intellegence of a year old then you understand it you liberal meshugina user iamzodyourzodeveryzod,0 +sorry i fail to see any humour in disrupting wikipedia so will you be undoing all the changes when the laughter subsides anyway it s after noon in my part of the world so the joke is on you,0 +please stop if you continue to ignore our policies by introducing inappropriate pages to wikipedia you will be block,0 +new comments at bottom please complaints,0 +ha lols for the day inspect damage berate,0 +good i wait to see what you remove remember copyright and blp issues are important because they can cause legal problems for wikki that is why you were so quickly block,0 +who ever keeps adding that needs to stop,0 +whitman visited ut s mental health center toward the end of march dr maurice dean heatly was assigned to whitman according to a sniper in the tower dr heatly described his first impression of the former marine as someone who seemed to be oozing with hostility whitman shared his secret desire with dr heatly that day about going up on the tower with a deer rifle and shooting people,0 +please vote yes on this proposition thank you,0 +yeah you dummy bakutrix,0 +also there isn t any proof that nasa or the navy seals have ever used his knives or been trained by him why would they want to be trained by some know nothing guy with no combat experience,0 +hello everyone this is my page and it s a shared ip address so be careful who you leave messages for an image that you uploaded or altered image river jpg has been listed at wikipedia possibly unfree images because its copyright status is disputed if the image s copyright status cannot be verified it may be deleted please go to its page for more information if you are interested in it not being deleted thank you kenny rogers dottie west photo yeah that s fine it sounds okay to me thanks thanks its fine with me if you delete that s a duplicate one thnk u very much user josenian bot question would you be interested in developing a bot like this on staeckerbot you have the duplicate function that may be needed for this bot to tast sorry i m a bit busy these days and it seems a bit complicated for my schedule thanks for thinking of me though no need to be sorry tast thanks for reverting image wpixcw jpg back from the previous incorrect logo uploaded by i had tried but how did you do it on the image description page in the file history section each version should have a little rev link which you click to revert to that version orphaned non free image image hiphopyoda jpg thanks for uploading image hiphopyoda jpg the image description page currently specifies that the image is non free and may only be used on wikipedia under a claim of fair use however the image is currently orphaned meaning that it is not used in any articles on wikipedia if the image was previously in an article please go to the article and see why it was removed you may add it back if you think that that will be useful however please note that images for which a replacement could be created are not acceptable for use on wikipedia see our policy for non free media if you have uploaded other unlicensed media please check whether they re used in any articles or not you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any non free images not used in any articles will be deleted after seven days as described on criteria for speedy deletion thank you deletion of will ferrell image why did you delete image will talladega uk premiere jpg i have been in discussions with pd thor and i thought we had come to a conclusion about the copyright attribution issues can you shed some light please sorry i didn t know you were discussing it should ve checked the incoming links more carefully i commented at non free use disputed for image anencyclopediaofclaims jpg this file may be deleted thanks for uploading image anencyclopediaofclaims jpg however there is a concern that the rationale you have provided for using this image under fair use may be invalid please read carefully the instructions at wikipedia non free content and then go to the image description page and clarify,0 +file a b jpg listed for deletion an image or media file that you uploaded or altered file a b jpg has been listed at wikipedia images and media for deletion please see the discussion to see why this is you may have to search for the title of the image to find its entry if you are interested in it not being deleted talk,0 +using preview button before saving are you trying to say i m sloppy of course i am my thoughts flow quite fast and if i didn t save until i was done i d have made no contributions whatsoever i fear i shall start by attempting to lump a few together and then looking at my mess then slowly but surely we hope point taken and thank you for all your wiki work,0 +all quiet at the moment i will keep an eye on it although i might be biased as i have used the channel tunnel a number of times,0 +yeah i think general summaries are ok as long as they are actual summaries of multiple authors aren t just mere repetitions of the author s statement and don t elongate the paragraph more unnecessarily also i ll like to point out these mistakes in your comment per eliade approximative understanding partly of apparently non arabian rites so not much eildae never says it was non arabian she s talking about monophysite rites and monophysite was the largest branch of christianity in arabia per watt details that may be surmised by close analysis muhammad s life he also argues that these verses might be attacking christian heresies rather than orthodox beliefs also in the final i ll like to say again the subject of the article isn t about quran and it s historicity and interpretations so adding more and more unnecessary arguments and interpretations makes the paragraph stray too far from the topic and unnecessarily elongates the paragraph with needless irrelevant text,0 +far revisit requests wikipedia featured article review a e j collins archive and wikipedia featured article review sheffield archive cheers,0 +after looking it seems to real problem is not controversy but a bunch of little green sockpuppets if i am reading the rr rule correctly spiketorontorcp aka spiketoronto violated that rule spacejesus i don t know what to make of sundowners is just something someone created to screw around blanking things probably the same as obdicut it must be nice to run your own little echo chamber where you can make your little green sockpuppets go bias your site s wikipedia page,0 +this new article comes from an interview that i have given to a student from the hogeschool rotterdam the netherlands i ve created this text myself bvankuik,0 +again i have not attacked anyone good night,0 +sorry to see you go in any case thanks for what was obviously a tremendous effort on your part,0 +the article has been accepted for dyk,0 +exactly because of their brands of naturalism,0 +it was a joke i tried already to create maps for the russian counterattacks but failed,0 +this was resolved weeks ago with favor towards cultural marxism but rgloucester who curiously identifies as a marxist has been shit posting for a solid month trying to block the article from being made and the higher ups refuse to do anything about him even after his public temper tantrums on jimbo s own talk page,0 +i agree with the changing to euphemism by no means are these metaphors also of these are made up guys,0 +remove the lists of stations no one is looking for a list of train stations in canada there s category rapid trans it stations in canada if you really want one according to the article rapid trans it is a subway this article should only mention the three rapid trans it systems in canada and have a summary of each similar to light rail in canada also is rapid trans it the preferred name in canada or do we borrow the american name subway since i ve never lived in one of these three cities i don t know,0 +decline you felt it necessary to repeatedly make this edit which is considered vandalism talk,0 +by the way i m just talking about the infobox i agree with leaving dalrymple out in the seats changing hands bit,0 +uncle sam poster is the poster influenced more by uncle sam or by the original featuring lord kitchener,0 +please do not make changes with no explanations this page has been recently updated,0 +redirect talk james crawford footballer born,0 +what is the source he never states this on his website or blog,0 +actually fibromyalgia is not a syndrome per se fibromyalgia syndrome is a syndrome the primary document for the classification of fibromyalgia upon wch the de facto diagnostic criteria are derived states there are two defining criteria i e chronic widespread pain and pain on palpation the comorbid symptoms that characterize the syndrome are not part of the classification of fm per se perhaps you should consider starting a new wp article on fm syndrome where you would be able to input all your pseudo editorial dross and take all your asinine mups mus crusading with you,0 +thank you for experimenting with the page benito mussolini on wikipedia your test worked and has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia a link to the edit i have reverted can be found here link if you believe this edit should not have been reverted please contact me talk,0 +thank you that recovers a lot of work i did sorting the lists etc wp is full of lists which have nothing for sources but the wikis they are lists of as in list of birds list of trees etc so what s the big problem here from the way somebody s trying to speedy d this thing and you d think it was full of a bunch of peoples home addresses or ssns what is the big rush please there s quite time enough to put a fact tag on entries people are suspicious off or click on the link to see the person wearing a bowler hat and what more do you want somebody on the deletion page really doesn t understand the point of list articles do they,0 +volunteer marek is a well known pov pusher edit warrior who has been involved in outed russophobic cabals in the past and was block for a long period of time from editing eastern europe related articles i don t understand why he s even allowed to edit these articles when he so clearly has not changed his habits,0 +trimming sounds fine but where a dispute comes up i would recommend slowing things down focus on one or two specific quotes and if someone reverts instead of immediately reverting back try to come up with a compromise version ditto with the other person reverting instead of immediately pushing the article back to your own preferred version try to come up with a compromise with each person changing each other s work rather than reverting it will probably be much easier to try and come up with a consensus version also use clear calm and neutral edit summaries referring strictly to the article and not the editors in terms of refactoring what i was referring to was cases where a particular editor was being referred to when a post is phrased such as you did this wrong or he is unwilling or he s just always stubborn then that s getting away from discussing the article content and is veering off into discussing the editors better is to try and phrase talkpage posts without referring to editors good habits to develop though they can take time to get the hang of it are to avoid the words you and your also avoid naming specific editors in a post as that often has the immediate result of making someone defensive and then they may miss everything else that s said instead when it is necessary to refer to a specific thing that was done diff the edit without mentioning the editor like i disagree with this edit diff as i feel it s a violation of policy guideline a better way to handle things would be suggestion i know it may sound a bit confusing to do this but i have seen that using this kind of third party discussion technique can work wonders in de escalating disputes it also tends to make whoever is using the technique sound extraordinarily calm and thoughtful even if off wiki they may be hopping mad it also has the added benefit of making things much easier for administrators to take action when an uninvolved admin comes to a page in dispute and they see everyone yelling at each other the admin normally assumes that everyone is a bit in the wrong the admin won t care who started it they ll just address things as they see them in that moment but if an admin comes to a page and sees five editors discussing things calmly and one editor being uncivil then it makes it much easier to figure out how to reduce the disruption caveat just because one editor is being uncivil doesn t necessarily mean that they re in the wrong but if the discussion has degraded to the point where all they re doing is name calling rather than actually discussing the article then that s a problem that an administrator can easily address by removing the non constructive editors from the discussion onka,0 +how true how true even while we talked trust things dont come and go as quickly in your area as they can in the central javanese night suro,0 +consider joining the tyop contest tyoptypo hi there you re invited to participate in the first ever tyop contest the tyop contest is a friendly competition between wikipedia users to correct typos the contest will be run from february to march depending on the typo you correct you gain a certain number of points the user with the highest number of points at the end wins the contest considering joining,0 +harmon rabb it seems like having ribbons for harmon rabb on this page is inappropriate while all others belong to factual characters who fought in war his is the only fictional set i recommend it be removed,0 +buttdaddy oh yeah i m your dad now,0 +following the above misconstrued logic are we now going to rename the ndrangheta into the calabrian ndrangheta and the camorra into the neapolitan camorra,0 +software erp database company i m surprised no one from jenzabar the company has created a company page it is odd that i got redirected to this page when i was trying to find out about the company and its products,0 +no worries makes sense ashmoo i ll wait another day to see if dennis makes the re write and if not i ll post a compromise that includes the agreed upon points with my points which can be addressed edited later,0 +oh it s working now about chrome it just need be refreshed willy,0 +it was not my intent to editorialize the article on marcel lefebvre but i was trying to correct and add some information about him i did that because that article seemed to be slanted towards a pro lefebvre position as well i felt that it did not have enough information to give people the chance to make an accurate assessment about lefebvre the two people who i called arch conservative were exactly that both men tried to derail the second vatican council and fought both john xxi and paul vi and all those who were in favor of reform every step of the way i don t know if thomas jefferson actually said this or not it was a quote the jefferson character made in the movie that he felt that king george i was a tyrant even if they did not include call him a tyrant in the declaration of independance so he thought they might as well call him a tyrant and i have talked to catholics who were treated rather badly by church officals especially in the times before the second vatican council why do you think that sex abuse of children became such a crisis for the church it was because of a long standing church policy to protect the clergy at the expense of the laity i remember talking to an older gentleman whose grandfather left the church for a while he didn t exactly what his grandfater s reasons were but he said it probably wasn t hard to guess why even if people were supressing the faults of the new mass it appears to me that the pendelum swung the other way that the article was stuffed full of criticism on the new mass but anything on the benefits was totally removed from this article that s why i added the tag because what i read gave me cause to believe that this article was slanted in one direction jun utc,0 +that is in general my feeling however i try to practice wp faith but that can only go on for so long talk,0 +oz inmate infobox all right i m going to go screw around with it and see how to work it and such but this is the information that i think should be on there oz prisoner information basics name number age charged with sentence elegible for parole family within oz ethnicity affiliated with friends enemies died if applicable reason of death played by,0 +september utc meant as a slur hardly meant to present some facts as to the policies of gamsakhurdia which have been completely whitewashed on wp and it s notable and backed up by verifiable sources you can claim npov all you like it s better if you wp sofixit dialogue stalk me,0 +double standard reloaded who is interested in debating and who is not who is interested in developing the article and who is interested in freezin it to death including using threats and veiled censorship in the form of selective double standard applying of internal rules after all it never too much to remind that an editor besides not been unwilling or unable to counter argue over a year and a half he also have done baseless statements about editions done by me in a certain rude tone during all this time i have responded to him in the same mode but especifically to these assertions not having any left unanswered unlike him and only me is who was warned and block curious summary of operations to the newcomers in this discussion and also to the selective forgetful ones see above the heart of this case as well as the sections spurious quotations once again and sections warning to judge by yourselves ii in my talk page to note that from grammatical objections to the size of version that i propose no one objection was left standing and even so it continues to be reversed even taking into account that the present version incurs spurious quote in the st paragraph too detailed and redundant information for an article that are supposed to be short on the nd paragraph and incomplete besides be longer vague and non neutral in the rd how not to think in double standard when the last disruptive revertion besides be longer than the version i propose was based entirely on incorrect inferences and historical misconceptions as i shown above again see above points a to e in once again section that were related only to the nd paragraph of the version i propose and that no word was uttered against or about the spuriousness that was purged of the st paragraph as well as against or about the rd paragraph that according to some editor ctr f on word solid to see above on the discussion about grammar in the once again section was pretty solid and even so the revertion was done so i again ask you all is the spuriousness justifiable under any circunstances in the case of an encyclopedia that is intended to be free and neutral which group of honest editors would admit the use of partial referrals that lead to political and historical inferences in favor of a political regime monarchical military etc w hate ver be worse which group of honest editors would allow the use of spurious citations of a partial source for purposes mentioned above even if this purposes are involuntary although the time that passed without actions having been taken as well as the resistance to remediation maintained only makes this possibility of involuntariness unlikely which group of honest editors ladies and gentlemen who were truly committed to the freedom and neutrality of such instrument would vote against such remediation or would omit about it,0 +truth hurts talkie talkie,0 +hi bobrayner please see wikipedia copyright violations material copied from sources that are not public domain for example pasteur fr britannica and bbc news or compatibly licensed without the permission of the copyright holder unless brief quotation used in accordance with non free content policy and guideline is likely to be a copyright violation for instance in of open sea fisheries the current text needs to be rewritten or deleted even inserting text copied with some changes can be a copyright violation if there s substantial linguistic similarity in creative language or structure wikipedia faq copyright you can use the facts but unless they are presented without creativity such as an alphabetical phone directory you may need to reorganize as well as restate them to avoid substantial similarity infringement,0 +there is no need to do that the source given above speaks explicitly about the cases of the european court of human rights where the occupation of baltic states has been under discussion and that s what this article is about,0 +i d also like to add that you have potential as an editor hence why i m so responsive to you on your talk page and all i understand the concerns that you ve raised and i think we re just making bold edits because we know what we re doing or more appropriately we like to think that you re going to run into editors of various philosophies mine is obviously be anal about citing which has worked out for me so far talk contrib review,0 +npov please check out wikipedia neutral point of view bce ce debate talk,0 +issue has been resolved externally by the non wikipedia editor apache thanks for having made the enquiry with elen and for having been constructive in your approach,0 +trans lation i was hoping that some people who frequent this page might actually speak hebrew can anyone perhaps provide a trans ation or at least trans literation for the term i hope i copied that right on fifth column,0 +i am sorry everyone i am sorry i call for a cease fire and an end to all vandalism as we speak of a peace treaty much love,0 +ok that s sorted now,0 +all the sources to eusebius and africanus and septuagint are all here in wikipedia and apparently youre too stupid to link it as you read it or too lazy to go look thru wikipedia to find it and see its there you know it alls are like those who negligently built the dykes of new orleans you should die with the victims who did in new orleans when you negligenlty take any structural matter into your hands your wives and children should right before your eyes due to the evil in your atitude to correct you killed jesus beacuse you think you correct his behavior your turn is coming soon watch your back god is there,0 +important please remember the following rule the edits of the reported user must be obvious vandalism or obvious spam,0 +just aying thanks for your input on the baritone guitar page that was quitehelpful,0 +hate this guy is such a liar i hate him he is evil,0 +border yah of course you can use the border i created no problem i know about duiki since andrew asked me to be a sysop as seen in my archive i decided however that i have spent far too much time on wikipedia and didn t want to waste anymore especially since those pratt courses will be starting up again soon so i declined,0 +he s not a retired he was just useless,0 +redirect talk finland national floorball team,0 +the pinkprint it would be appreciated if you looked over and voted on the move request for the pink print to the the pinkprint up to this point there hasn t been a direct response as to which spelling was correct nicki minaj herself clarified the question directly stating it was written the pinkprint https twitter com nickiminaj status leave either your support or opposition for the move here https en wikipedia org wiki talk the pink print requested move august thank you for your time,0 +okay wasn t that easy so what is wrmea then palestinian activism that seems like a rather fair assessment and could be sourced from one of their many publish articles right,0 +oh this is the new stuff oh please phone me ok i love ur wikikikipedia werk can u tell me how o ud o it ok pls dont deleat this again ia m want to know what u r say about me pls ok i luv u and everything so it is so it is ok yes cookys,0 +i m actually quite pleased to see jimbo get involved sometimes a executive decision needs to be made that is unpopular but fair and this does appear to be a fair request,0 +jehovah s witnesses and blood trans fusions thanks for your assistance at improving this article i am happy to provide any of the reference material cited therein if and when you choose to continue on the subject and hopefully you will continue this subject material is similar to other religious issues there is much emotion and consequential contentious behavior the remedy for an encyclopedic entry is reliance on reputable and verifiable sources that present objective information this particular subject is extraordinarily serious because it involves life and death medical decisions hence the need for an even higher standard of seeking sources of information with no history of hostility toward one view or another again thanks for your assistance,0 +replacement for vanderbilt within the methodist church i have heard that smu was built as a replacement of sorts for vanderbilt university which was disaffiliating from the methodist church about the same time as smu was founded can anyone else substantiate this,0 +b verkin institute for low temperature physics and engineering jeez man give me a few minutes before you nuke the page lolz i m in the middle of building b verkin institute for low temperature physics and engineering we had articles redlinking it all trying to use different spellings i unified those links i saw another half dozen articles mentioning it that could be linking it i decided to pull over the russian copy of the article how about you pull off the deletion tag and check back in an hour or two,0 +update actually i changed this to something blander,0 +yes sir i am i have not reverted anything i change it once with the highlighted and then when it was changed back i left it alone i dont wish to disrespect any one or any religion,0 +roazir fars is the arabic version of pars the iranian name when trans lated to english is the gulf of pars and the english name persian gulf means exactly the same thing interestingly enough most gulfs in the world are called like the iranian name for e g gulf of mexico gulf of aden gulf of carpentaria gulf of the farallones gulf of maine gulf of tonkin gulf of guinea etc etc so the correct name for the persian gulf should have been the gulf of pars just as the iranian name is as for the azarbaijan as both versions already exist on the wiki and we are not inventing a new name i insist on using the one that is recognised by the majority of the people in the region the whole population of rep azerbaijan is less than of the population of iran let alone other countries in the region who write and pronounce the word azarbaijan like iranians do so why a vast majority should follow a small minority it is azarbaijan and english speaking people better get used to it,0 +not to be trusted as reliable,0 +because i m following guidelines,0 +thanks moonriddengirl wikidea i m sure you re an excellent lawyer and i admire your goal to turn wikipedia into a superior reference work for law students it s one i share with one amendment wikipedia is not a legal resource for lawyers and law students it is not a casebook it is not a practitioner s text it is a work for the laypeople to explain as simply as possible in this case how the law works that s what you should aspire to with your articles and it s what i aspire to with mine the layperson is more helped by third party references and summaries than to them unintelligible case citations and full body quotations from judgments while such quotations and citations have their place this i feel uses such case citations well but i might be a teensy bit biased they are the obiter not the ratio,0 +ho be quit i mean you have no life if you really care about this,0 +suggestion users may find the free bbc learning english web link from languages useful if it were added to the bottom of the page http w bbc co uk worldservice learningenglish,0 +funniest talk page edit ever i m being warned by an ip for doing the correct thing brilliant everton stuff irrelevant left hook is incorrect title and the rashad fight is unconfirmed i m doing everything right and an ip is vandalising but yet this ip is deluded,0 +i found also a laconian with the name sthenelaidas which according to my theory would mean renowned for his strength sthenos sthene meant strong mighty in ancient greek,0 +i m sorry you spend all your life on wikipedia good luck in trying to leave the house and find friends,0 +this is the current smackdown song as of october does anyone know the name of it n im pretty sure its jet black stare on the floor http w youtube com watch v uribuhimok feature related,0 +i have made an edit which i believe is compliant with wiki s neutrality guidelines while leaving the word extremist in the article while i do not agree that the statement lends any value to the article at least attempting to cite it in the manner of my recent edit keeps the article factual since it merely quotes rather than appears to agree with a bias in one of its sources i hope that further edits along these lines will involve how best to use the bias statement rather than edits which introduce bias into the article itself,0 +edits at kangaroo court i assure you my edits at kangaroo court were no kind of revenge it was a pure good faith edit an unregistered user had posted on user talk flyer that the reference provided no evidence that the term kangaroo court is american i read the whole content of that source and found out that the unregistered user was saying the truth i request you to please stop making baseless accussations i understand we had a problem at gone with the wind film but this edit of mine at kangaroo court is in no way related to that edit conflict at gone with the wind film,0 +some people should leave wikipedia for good because they have become addicts if anyone finds that they are spending more time here than with their family and friends and especially their children it is time to consider that they may be addicted if they find that they are unable to adhere to self imposed time limits they have no choice to quit cold turkey,0 +reply oh not half as interesting as it sounds o t,0 +i didn t write pd old i write pd art point of view you started blocking people and you didn t even learn the case this estonian wrote lies he tried to lie about world war to make himself feel less shame about his nationallity he wrote such obvious lies that it was just pure vandalism you by blocking us instead of him took part in this vandalism because now those few estonians who write lies there could write anything they want and there will be no one to stop them m v e i,0 +rachel chose to use ebay for her personal vendetta she has no rights here or should not yes jimbo is contemptible but rachel is worse at least from the press posted take the auctions down if you have any morals and or dignity,0 +i disagree slang should only be used in direct quotes and even though this could be a direct quote the rest of the plot summary isn t and shouldn t be so the word kiss is better incidentally if this is about victoire it isn t important enough to be in the summary to begin with but as per the section above this one it ll be futile trying to remove it now talk contribs count,0 +dodger and a merry w hate ver it is you celebrate too to sign your name you just need to type three tildas and to sign and date put four tildas in the edit box this will just look like tildas but when you save the page the software automatically converts it for you if you have java enabled on your browser you will see a signature looking button at the top of the edit box it is the second from the right if you click this it will automatically put four tildas for you if you want to change how your signature appears you can go to my preferences which is at the top right of the webpage there you can alter your signature i ve done this which is why my signature looks a little different from other s does this help again welcome best kevin talk,0 +i butter is a butter substitute the references given see discussion on this above on this are improperly given what is given appears to be little more than a google screen scrape i managed to find both references and they do not support this usage the use in these publications is not to define but to indicate the broad category peanut butter if placed in the category of a nut butter is also in the category if butter substitute but it is not a type of margarine which is what this product is possibly it might be helpful to say that the product is commonly used to substitute butter but it doesn t help in the basic definiton,0 +big cleanup needed obviously this article needs a bit of work as i see it we need two things sections within the list and inclusion criteria on sectioning i believe that we would do well initially in making two sections proposed systems and systems that actually made it to production on inclusion criteria i recommend that we limit it to launch systems that have articles some proposed launch systems simply aren t notable so they don t get included here so there you go i suppose talk,0 +keep in its present form just link it to calcutta no need to make the reader search calcutta for the info a tag line like city of palaces or the windy city or what have you serves as a nice point of departure for an article about the city proper jul utc,0 +complete bias non encyclopediatic writing can someone do something about that large chunck of text talking about kb s finanical troubles it s awful,0 +fast vandalism reverts i m browsing recent changes and i see some vandalism so i see the diff i then attempt to revert and find that you ve done it before me so i just want to say well done for the brilliant vandal fighting efforts seeing as i first thought you were a bot well done,0 +dr robotnik why is dr robotnik sometimes called eggman,0 +deletion of investing strategy back in june you deleted a page i created called investing strategy you called it copywrited i cannot figure out how to see that page now so i cannot review it i presume you know how can you please say what exactly was copywrited since it was mostly word for word what i have posted on my website i do not want to be in infringment there either but really i do not believe anything was infringed in fact the whole point of my website is to post the truths that are not available anywhere else on the web certainly if you thought the wiki page was the same as my webpage that is no problem i certainly do not copywrite it i encourage its dissemination,0 +hi we have three members already we all seem interested in the project i have created a template to place on article s talk pages an user from the spanish wikiproject has just suggested that we trans late articles from one wikipedia to the other using an automatic trans lator but no one responded yet one of the members is interested in writing about gay literature and there has been somewhat of a discussion about whether it should be gay literature or lgbt literature i believe this was the first discussion of the project two of us think that lgbt literature would be best i don t have a lot of time to dedicate to the project so i would like it if it didn t depend on me to survive and grow and be successful the other two members have asked what they can do for the project i would like to write something to better explain what a wiki project is for because this seems unclear i believe it s not much of a big deal it s just a way to have all people interested in the same subject in the same place so if something important happens concerning that subject for example a page gets nominated for deletion all interested people get to know it should also create a sense of community and it s good to have that since we ll be editing the same articles i think things are going fine except that i don t know whether the other members see this as i do,0 +thanks for the quick response no need to rush it as long as i have it by the end of the weekend that s fine regards,0 +benten january,0 +it could be possible to evade if you just find a good place to hide does anybody have a link to the complete fbi finding,0 +usernames be in english furthermore contributors are welcome to use usernames that are not spelled using the latin alphabet,0 +and in the program on last night crime museum the blackout ripper he is called a serial killer not only by experts but by the police who catched him so get your facts right you retard s,0 +file agakhanpalacefrontview jpg missing description details dear uploader the media file you uploaded as file agakhanpalacefrontview jpg is missing a description and or other details on its image description page if possible please add this information this will help other editors to make better use of the image and it will be more informative for readers if the information is not provided the image may eventually be proposed for deletion a situation which is not desirable and which can easily be avoided if you have any questions please see help image page thank you,0 +chris carter was killed on the columbine school grounds,0 +assuming good faith only goes so far when an admin indef blocks someone they are not assuming good faith because the block editor is blatant in his actions just as i do not assume good faith when i make a rr report same logic applies to my comments regarding melonbarmonster as for personal remarks i do not see how they are relevant i could not care less about any personal aspects of anyone who edits wikipedia i care about their edits but anyway ed nice to meet you sure we are gonna get along just fine,0 +filter hi jps there is a filter prohibiting me from labelling you as a paedophile please remove it thanks,0 +image dvcode giftset box jpg please write a detailed fair use rationale for this image,0 +no problem i think that s right too hope you had a good holiday,0 +dear kumarrao no ill feelings i was just following wiki standards even i have refered govt inscriptions and census of india earlier in my wiki writings but they are not considered as reliable by wiki admins the reliability depends on the wide acceptibilty kb choudary might did some great work for his community but if you go through latest historical books mr kb choudary is being described more as caste based author i can refer that statement if you want if wiki admins think it is also authentic book then every one else will accept it thats it i dont want to argue on this much,0 +pyrotec i sense from your most recent post that seniority is getting mixed up with capital letters neither officer nor any other job name should be capitalised just because it is senior is chief part of the problem in the debate about the title then talk,0 +tagging gary coull for deletion hello i recently encountered the article about gary coull while performing either new page patrol recent changes patrol or counter vandalism unit activities and in my opinion as a wikipedia editor it either lacks sufficient attribution that it satisfies the notability criteria for or it may violate the conflict of interest guideline or perhaps it reads like blatant vanispmcruftisment the point is that i plan to tag with either a that explains my reasons why i believe that it should be deleted or else a tag for speedy deletion csd a i have created this initial entry on your talk page because you are either the original author of the article or a recent contributor to it i will leave more detailed information regarding my specific concerns about the article on its discussion page please respond either there or on this talk page instead of on my talk page in order to avoid fragmenting the conversation,0 +with aristocratic connections,0 +you fool there was no such thing as a ultra nationalist political party in france during the revolution fact you can google all you want but it won t change that simple fact the abstract concepts of nationalism or even ultra nationalism are one thing but a political party no sorry babe you re wrong embarrassingly wrong accept it and move on baby boy,0 +marduk abraham the early prophet line is reflected in all the history of the world marduk is a regional variant of abraham so is zoroaster adam as we know him was the first prophet of dyeus and the first human consciousness we see in history dyeus became zeus jupiter with piter from fertilitycult distortions and yah etc god ofcourse for many idris was the second prophet of tengri which became thor many places sometimes god sometimes more of a prophet and again indra prometheus osiris these concepts are known everywhere with local variations knowing the regional names one can see the same change in the regions who talk about marduk as here a change from early prophetic teachings to that of abraham and sarai of the bible is saraswati in hinduism and sarpanit here obviously we all have the same prophetic line teaching monotheism god is without others peace be with you,0 +does anybody here go to richwoods because i do really i do,0 +not to mention worst on screen fake heart attack ever seen,0 +hm is that a roundabout way of saying lie w hate ver bc aka,0 +no i removed it as i find it pointless for someone to come here moaning over a vote i honestly couldn t give a toss whether you agree or disagree with my vote as i said in the edit summary there are far better things to here go and debate with someone else talk,0 +as this is in rural north county should the article be moved to garristown county dublin,0 +great wiki add there retard like no one would notice that you put togetha in the sentence let me clue you in words that are misspelled and have numbers in them used to replace actual letters like b b l t d d and such cause the little sock puppets and bots to come running to change it all also what the hell is a jit that sounds like another name for a bowel movement as in this morning i took a huge jit come to find out it was a double flusher,0 +no problem i wish i had more time to sort a couple of things out but hopefully it s been a good learning experience for your students the one thing that makes wikipedia unsuitable for academic courses is probably our guideline which screams out no original research but then again reading up on a subject and trying to organise all that into an article length overview summary must be a useful exercise anyhow and not an easy one at that p s not sure if this page a trans lation of the finnsburh fragment happens to be the work of one of your other students but per said guideline i had to delete the content and create a redirect to the main article it s still available for viewing here though regards,0 +twf heavyweight belt a prod template has been added to the article twf heavyweight belt suggesting that it be deleted according to the proposed deletion process all contributions are appreciated but this article may not satisfy wikipedia s criteria for inclusion and the deletion notice explains why see also what wikipedia is not and wikipedia s deletion policy you may contest the proposed deletion by removing the dated prod notice but please explain why you disagree with the proposed deletion in your edit summary or on its talk page also please consider improving the article to address the issues raised even though removing the deletion notice will prevent deletion through the proposed deletion process the article may still be deleted if it matches any of the speedy deletion criteria or it can be sent to articles for deletion where it may be deleted if consensus to delete is reached if you endorse deletion of the article and you are the only person who has made substantial edits to the page please tag it with,0 +but stranger danger is so fun good luck again talk,0 +golf is played with two or nine players,0 +march utc i ve removed the copyvio material thanks for letting us know,0 +mathematician astrologer user is modifying the article to emphasize al khwarizmi s work as an astrologer it began here this was reverted by user lumos lumos theodore again modified it this was reverted by theodore again modified it this was reverted by who left a message at theodore s talk page i left a follow up message to discuss in the meantime theodore again modified it i m going to revert the changes now and move the discussion from theodore s talk page to this newly created subsection,0 +i can see where you would find it personally upsetting yes but remember what you re dealing with here this is the internet no one knows who you are on the internet if someone walked up to you in a shopping mall you wouldn t have any clue who they were ten ways from sunday so don t take it personally because wp and the net in general are impersonal by definition i concur with what mindspillage said above here it would be a great loss to wp if you left over this nomination it simply isn t worth it you re too good of a contributor to give in that easily i do hope you reconsider say something,0 +identification how do i become identified how can i become identified if i am underage ax om,0 +nope red and black cfhs grad,0 +so what were you talking about with pilot when you said you found quite a bit of information to be omitted i can t allow alot of the show s general information into the article as the article is specifically about the episode and not the show this what i ve been able to scrap up or was there something else you were thinking of when you mentioned this,0 +what s that why this list or grid or anything is in article namespace it seems that it is not an article,0 +sources needed although the new material added is helpful in explaining who idc is i ve added an advertising tag in its current form it s a bit much like a corporate website per wp npov and wp v it s important that article content be based on independent reliable sources notable published references about idc should therefore be located cited and used as sources wikipedia editors will of course eventually remove unsourced content even if well written and accurate so finding neutral sources for this article is important,0 +may utc thanks again independent sources like international reviews pages on other prophets newspaper refernces have been quoted as you know other references wiil be cited as and when possible the book gurus of india was a very famous publication and it has many descriptions of sitaram s widespread influence your guidance and necessary intervention is solicitted,0 +notability of metal industries development centre a tag has been placed on metal industries development centre requesting that it be speedily deleted from wikipedia this has been done because the article appears to be about a person group of people band club company or web content but it does not indicate how or why the subject is notable that is why an article about that subject should be included in an encyclopedia under the criteria for speedy deletion articles that do not assert the subject s importance or significance may be deleted at any time please see the guidelines for what is generally accepted as notable if you think that you can assert the notability of the subject you may contest the deletion to do this add on the top of the page just below the existing speedy deletion or db tag and leave a note on the article s talk page explaining your position please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would confirm the subject s notability under wikipedia guidelines for guidelines on specific types of articles you may want to check out our criteria for biographies for web sites for bands or for companies feel free to leave a note on my talk page if you have any questions about this,0 +clio s hair i always had the picture of brown hair in my mind never blonde just goes to show you,0 +oscar nomination is there a reason why there s no mention of this film being nominated for an oscar anywhere in the article i ve added info about it to the critical response section i m sure there are category tags that should also be added but i don t know how to do that,0 +csd a okay sorry about that i was just really confused as to what they were pertaining to but i now see that there is a main la liga article that does provide context thanks sorry that was my mistake i misunderstood it thew user w guglinski i know it s this guy the article clearly should be deleted and an afd would be pointless if i were an admin i would block him right away and delete his stuff well block isn t banned repeated block evasion might result in banning though moreover i actually deleted an artcile of his per wikipedia articles for deletion quantum ring theory that mentioned some naveen dankal so the latest account might be also be like minded person i ll give him a welcome page and then we ll see oh you re an admin i thought there was some sort of rule that admins had to say so on their user pages he might not be technically banned but as long as he continues to do the same thing he should be treated as if he were i don t know how else to deal with this not sure about the rule but i actually forgot to restore my user page after latest wikibreak for the moment i assume the two accounts are not the same if not we ll certainly notice and can take action heisenberg s scientific method naveen dankal with due respect to heisenberg and his contribution to science i don not mean to use wikipedia to express my ideas and opinions about the works of any indvidual i have only stated some of the limitations of heisenberg s works with due references and just brought out a fact how heisenberg s method is unable to resolve the mystery of scarcity of dineutrons and in a way lope sidedness of our universe i just disaggree with you whether not this is is a good addition to wikipedia on the other hand i also disagree with the block you received resp the unblock denied and have raised that point thanks for unblocking appreciate your step will try to keep wiki rules in mind may well let me know once you have further concerns or questions naveen dankal i am making a few changes in the article on heisenberg s scientific method i would like to know wether any refernces to banned members works jeopardizes the articles chances of getting hosted or such refernces can be incorporated without any hitch moreover before hosting the articles can they be e mailed to the administrators for a review so that the users are not lead to the worries of being block or banned there are two different issues the while that doesn t mean they can never be cited it is unlikely to go without discussion your main problem still seems to be that this is an encyclopedia while your article starts with a concrete question about the dineutron and the isospin and then drifts away into more general considerations what is missing is the intermediate step what reliable sources have written about e g the mystery of the scarcity of the dineutron or limitations of the copenhagen interpretation without including such secondary sources it will be a wp sy,0 +long as you can confirm that all games require steam feel free to add them,0 +a fur has been provided,0 +a block on wp is of no personal concern i have long ago resigned from offering new knowledge on wp and permitted my contributions to be trashed protecting only those thus far supported by others what we have here nicely evidenced by this decision is the essential juvenalism if not infantalism of wp it professes an archaically legalistic approach to the representation of knowledge something enlightened thinkers thought went out with the witch trials and the inquisition while offering no rationalisation apart from a sniff at style and a link to a comical article on truth and then all by an anonym i do not regret that i bear no place in this play pen of pseudo knowledge rodgarton,0 +preceding unsigned comment added by,0 +im not trying to be funny but which part of the electromotive force and voltage difference para are you having difficulty with,0 +noted i ll try to dig around a bit more to see if there s anything else that could be used to address this additionally i ve added classical to the genre bit as per his choices and flowers release this makes me wonder if new age could also be used which would kind of help fill the search for something that details his music other than the widely applicable hip hop thoughts friend,0 +i m gonna revert because i found all that information on jason on a legitimate source the show the actor i just googled and the imdb gave me his name if anyone has a problem please tell me before you change it again,0 +you might be interested in wp ani five year old deletion discussion reopened adler,0 +naji al ali hi ian i noticed you changed the date of birth cited on this page to what is your source for that i m wondering because the arabic wikipedia article which this page started as a trans lation from cites his year of birth as while a book i have about him the one referenced in the article cites it as what the book says in a footnote on the subject is sulaiman al shaikh the caricature artist naji al ali in the kuwaiti magazine al arabi no august naji al ali saw this date and did not raise any objection while the book is certainly not academic it s also worth noting that amongst those thanked by the author is khalid al ali the artist s son on the other hand on this page naji al ali himself is quoted as saying i was born where christ was born between tiberias and nazareth in the village of al shahra in the northern galilee and i was expelled from there ten years later in to ain al hilwe camp in lebanon however the same site also bases its short biography of naji al ali on the book i used and gives the year for his birth accordingly unless you have a solid source i think we may have to leave it as unknown by the way that site also shows a pretty cool pflp poster about his assassination i wonder could we get permission to use it all the best talk,0 +i saw that you started category romani people and romanipen in romania and it looks good i have in my mind plenty of ideas to expand the articles and make other new just let s see how i ll manage to get free time for this,0 +i think you will find that you were referring to the supposed concerns of others were voiced back in july which were actually voiced on august and,0 +north korea actually gained approximately km from china in the treaty and here s a th century book by chong yagyong titled korea s northern border reigion in a korean sourcebook compilation trans lated by peter hacksoo lee a long time ago the area north of the tumen river was the land of the su shen people it has not been under our control since the time of the three han the southern slopes of mount changbaek where both the tumen and yalu rivers have their headwaters lay within our territory but the winding ridges and layers of peaks make the exact location of the border unclear however emperor k ang hsi in the final years of his reign ordered area commander wu la wu la ts ung kuan muk eteng to delineate the border and erect a stone boundary marker as a result the border between those two rivers is clear as well emphasis mine here s another study of the us north korea border in by the us dept of state which makes no mention of north korea owning the entire mountain and another which says that china actually made concessions to nk on the border in the only sources that seem to claim that korea once owned the entire place are some recent tabloid news articles that protest china conducting activities on its own side of the border and of course a few ultranationalist sites but please enlighten me if you can provide other reliable sources as well on another rather amusing note it does seem my userboxes are being quite effective experiment in showing which users are capable of judging others by the content their edits and which prefer to judge a book by it s cover and lash out emotionally should be made in a new section on the talk page no further edits should be made to this section the result of the debate was no move requested move chonji tianchi the name was unilaterally moved from tianchi to chonji without concensus for pov reasons cited in move and talk page such as that it should be korean it s on the border between china and korea another reason cited was that the name of the baekdu mountain page is korean as well however a google search shows nearly hits for tianchi and and less than each for chonji and cheonji that s two orders of magnitude in difference the preceding was quoted by yuje survey add support or oppose followed by a brief explanation then sign your opinion with support for the most common name searches for chonji for all the most popular search engines combined give less than a thousand hits search on google scholar shows only uses of the name chonji for the lake the use of chonji as a clear common name doesn t apply because it s not common support per yuje naming conventions gives preference to the more popular name oppose per visviva and my previous comments like i said before we need to use the most common name that is the clearest because tianchi is a name for many other places in china as shown chonji is nowhere near common chonji barely shows up any hits therefore isn t a viable alternative for a clear alternative name oppose look at my reason below comment the proposition seems to be flawed given that tianchi is now an article on the lake in urumqi if this article is moved it would need to go somewhere else perhaps tianchi changbaishan or even heh heh tianchi paektusan but then again maybe tianchi jilin if we must have a straw poll it would be helpful to know what the full suggested title is comment the issue you brought up is a legitimate one and shouldn t be ignored thus perhaps tianchi could be a disambiguation page or this page could be moved back to the original and there could be a tianchi disambiguation page either one is a reasonable alterna,0 +thanks osplace for checking this out it s good to get rid of any copyright material,0 +p s that said it is clear zereshk s comment was incivil,0 +i didnt see your reply posted on the deletion nomination page i asked that they not delete it until you can move it to your userspace maybe if the article gets better we can put it back in but according to current policies and the way the article currently is i have to agree about its deletion please move it to your userspace so you may work on it make it better and then resubmit it on a future date,0 +i m pretty new to wikipedia but it seems quite inaccurate to say that the majority of highlanders were roman catholic aside from the populations of the tiny islands of barra and south uist and a few small areas on the mainland the majority of them would have been presbyterians or nonjurant episcopalians even amongst the clans on the jacobite side of the rebellion only the chisholms gordons macneils from barra and some macdonalds from glengarry and glencoe are listed as roman cathloic according to john prebble in culloden i m not going to change that part of this article but it would be good for someone to have a look at it since its not true,0 +edits that people don t agree with aren t vandalism your witch hunt will be exposed for what it is,0 +july utc i get what the opposition means with dumping but it would not be good for someine with a laptop or dial up having to go to several articles to get what they are looking for this would not be good for a laptop cpu either with it having limited storage i am using a laptop and i can edit it just fine with having windows at school and can edit the article easily also i strongly support this cause and it should be done in my veririable opinion,0 +dear par you write what is your concept of the role of mathematics in physics my views on that very general question are not called for here you write how would you prefer that the zeroth law explanation be written i have written above that i need to read some more and that it will take me time to get the relevant literature,0 +uh oh mr big shot registered user is crying like a little girl because i called him out on his bs,0 +please consult the article ball culture which states drag queen or trans gendered wp or does not cover synthesis by bringing two facts together as well the term femme queen does not have an article so the term is currently of dubious usage as it s a neologism which wp policy suggests to avoid using you state a source tgmsmnet however neither this page nor the mainpage refer to such a reference from the way you talked about it i linked it to the mstsw reference in the future if you could could you please site resources on this page by using this form http example com http example com that way it shows up like this http w example com and one can simply click on the resource rather than search through the article for the reference itself your data is backed up there as well however we still have issue how would the cdc consider a post op mtf living in stealth as anything else but a female the mtf would obviously not admit to being a trans sex and in fact engages in no activity any more risky than a biological female i wait for further evidence that tg ts is caused by biological factors and thus the term biological male female becomes complicated in even research no one would ever state that a woman with cais is biologically a male as well i understand the point of not using wp as a soap box however in talk pages i m still free to assert the better application and appropriate nature of the term people having urap,0 +when did you say if you need to message each other re rules ask an admin to do it directly,0 +spam contribstalk,0 +please stop adding nonsense to wikipedia it is considered vandalism if you would like to experiment use the sandbox thank you,0 +wikipedia miscellany for deletion user propaniac su hi i ve just noticed that you nominated this page in my userspace for deletion at mfd a couple months ago and it was deleted tbh i don t remember what was there and i was just curious if you remembered the topic or how you came to notice it in my userspace in the first place i m not objecting to the deletion although i m kind of surprised that it was worth the trouble of deleting and to find out that wikipedia has a policy that allows for deleting of unfinished drafts in userspace i mean that seems ironic in light of all the total crap in article space that i ve tried to delete but that s been saved on the theory that maybe someday someone might possibly come along and turn it into something worthwhile but again i m not objecting or suggesting anything wrong took place just wondering how it happened thanks for any light you can shed,0 +they re twins of a sort created at the same time in the same space by the infinite improbability drive i d be certain that if adams had meant them to be two aspects of the same being he would have very clearly written as much,0 +yes you have a point there i humbly excuse for those edits related to and as they re doubtable as for i added alleged cia operative in the article it is more accurate than cult depogrammer although no such title profession at all would suffice too what cults or cult members has he deprogrammed the word cult is out of context my edits with regard to are at least better than the previous state note that point is proven by project monarch entry and various of its sources on bottom it is therefore completely bogus to say that cob and mp are somehow the only source and in cob entry were inconsistent with pm entry the article is now more accurate according to wikipedia s policies imo have a look and a nice day or,0 +the list i could agree on though being on a un list per se is not really notworthy they list everything i mean gibraltar is on a ton of lists most likely economical lists literacy lists monkey population lists the un is big on stats that the un declares it to be none self governing is probably interesting enough to mention though i imagine there is some comment from gibraltar on the matter we can include while i have no problem with the popular culture section being trimmed i should say that adding new info in isn t as much a problem but merging other articles back into an oversized article is just folly it does mean we should look at splintering some section off talk,0 +last warning mark anymore defiant arguments and i will be subduing you with my merciless wrath,0 +rachel mason rachel mason is a fictional character not a real person and as such the qualifications are very much irrelevant to the article the article may wright including qualifications although notice none of the other articles on eastenders doctors list them is also irrelevant secondly she has only been referred to as rach on few occasions she is not credited as rach in anyway however in the case of other characters such as melissa ryan it is different she was referred to on a much wider scale as mel but her credited name is still melissa,0 +thanks thanks for your support i appreciate it,0 +since the ip has already exceeded the point where semi protection functions it is a pointless move i will add the page to my watchlist see what develops,0 +why doesn t someone that knows how to edit search the web and put in the article the fact that volts from a stun gun administered twice will neutralized the poison and remove the pain within seconds this knowledge has been on the internet over ten years there were quite a few doctors who were promoting it but apparently the ama put a stop to that look at this the medical profession has no remedy and will charge a person thousands of dollars for treatment and will not tell them about stun guns which will eliminate the problem immediately the public deserves to know this and you guys that edit can easily find this information,0 +on why it should be included in the article,0 +please take a break i have been reading this snafu you are doing yourself no favors please take a break i just want to work on improving and creating articles etc yes defending myself is a laborious activity but to hear exaggerations and hypocrisy thrown at me in an effort to demonize me for expulsion to protect the encyclopedia is hard to stay away from the overall nature of said activity is wp baiting and things like the cfd and the hostile rm closures is agf npa in the extreme who should take a break is the chorus cadre whose primary activity on wikipedia seems to be attacking contributing editors by any specious and pov agf rationale available i know i m not alone in being attacked and vilified this way and yes there s far more productive things to be doing than arguing with people who only want to argue,0 +useful documentation for this comparison can be found on p of gabriel danovitch handbook of kidney trans plantation philadelphia lippincott where he states that the most efficient hemodialysis regimens currently provide only tp of the small solute removal achieved by two normally functioning kidneys this comment should be updated however by reference to data from the new programs of short and long daily home hemodialysis performed six days or nights a week which improve solute clearance although still fall far short of achieving what normal kidneys can do user jp marat,0 +why did you revert my edit to pablo neruda he really did molest me when i was a child there was a court settlement and everything,0 +hi hi help me with something and i ll tell you what if you write me something levente november,0 +its in flipping theres one bar of five a lot of bands put in one off bar it s called a pause but we count it differently and consider there to be extra beats,0 +decline yes using wikipedia which is a neutral encyclopedia for promoting yourself is the reason for your block your request doesn t indicate however that you are interested in helping to write an encyclopedia so you don t appear to need an active account at this time talk contribs,0 +upon doing so i will keep in mind that i must not try to resolve disputes purely on my own that i must not lose patience even when being taunted and that i must not use reverting to resolve an issue though i was already well on the way to making that a habit,0 +silly edits on this edit of yours wikipedia aims to be an encyclopedia by people thinking like adults for people thinking like adults please bear this in mind thank you,0 +it must be from something since there is a very similar campaign clip from a us democrat candidate barrack obama or something against h clinton i guess both futurama and this clip are a parody of the same original thing,0 +alleged threats against user mjpresson sorry to bother you with more of this but i note you responded to user mjpresson s plea for help and checked out my recent message on his talk page neither there nor in earlier october november messages to user mjpresson have i ever threatened to delete vandalize or tag any wp articles by mj or anyone if you check the history file on mj s talk page you will note that certain boldfacings which may make my comment appear menacing were added not by me but by user mjpresson himself shortly after whereupon he began directing other editors attention to my message and describing it as threatening thanx for your attention and please feel free to view recent edits by,0 +helen s children i read somewhere that helen had another kid i think his name was pleisthenes i don t know has anyone else heard that,0 +note about accounts i was reading this comment saying that roccodrift should be using his her main account rather than using this account to segregate agenda driven edits and i just thought i d clarify that the has been indeffed for almost a year as best as i remember they had edit warring problems and kept getting escalating block lengths until they started socking to evade the blocks which led to the indef anyway whether it s him or someone else i think the main charge is block evasion not sock puppetry,0 +yes sarujo thinks he knows everything yet he knows nothing,0 +stalking please refrain from stalking me and reverting my changes in articles that you have never edited in before considering all your recent public attacks against me and edit war like behaviour it would not be a hard case to prove if i decided it was worth reporting,0 +thank you so much it s very much a team effort and we re fortunate in having a number of excellent neutral editors keeping the article content in check so keep up your end of the good work too,0 +i m not sure from that comment how much you understand about research in this area there is for example a dispute about the validity of self reported results in the general evidence base for cbt which has gained momentum in the last five years a lot of new work has been done since that would throw those claims into dispute at the moment you are giving prominence to a one country study in a controversial area that is itself years old that is cherry picking as the table gives a false impression of cbt s position in the pantheon of methods i can understand an advocate pushing it but we have to be balanced here talk,0 +other events hp pavilion at san jose hosts an average of events a year including many non sporting events in the hp pavilion sold the most tickets to non sporting events of any venue in the western united states and the fourth highest total in the world after madison square garden in new york city the manchester evening news arena in manchester and the air canada centre in toronto the arena regularly hosts concerts by numerous performers and has played host for major sporting events such as the u s figure skating championships the ncaa basketball tournament known as march madness the pac women s basketball championship and the dew action sports tour hp pavilion has been rumored to be the new home of the sacramento kings nba franchise if the city of sacramento or a private developer can t come up with funding for a new venue in sacramento,0 +comment not so sure about that incident makes it sound like soviet propoganda trying to cover up how disasterous this actually was nuclear fallout reached the eastern u s from this event hardly an incident t c,0 +netaji what a ridiculous username i hope you are visiting india regularly because from your contributions to wikipedia it is clear to me that you are homesick and have lost touch with the street reality of india get better soon,0 +isnt it so cute that now that obama has been elected he is now refering to himself as a mutt good thing he didnt do that too much before the election because he would have lost fifty percent of the black vote look at the blacklash when tiger woods publically stated the truth that he was not african american headline text,0 +m not going to argue with you the page clearly said that the biography was written by muze not nme if you don t believe me take a look scroll all the way down to the bottom and you ll see this disclaimer copyright muze uk ltd for personal non commercial use only all rights reserved information from muze is mass distributed and appears on various websites including nme just because it appears on the website of a reliable source doesn t mean that muze is reliable i ve repeatedly apologized for my actions but any stubbornness on my part does not mean that i was the only person who behaved against the rules you were clearly being stubborn as you are now by denying that the biography is from muze rather than nme i,0 +please do not add third party companies to the articles on established companies as you did to the sage group doing so dilutes the articles talk,0 +hatzfeldt syndrome hey there i see you recently gave this article a once over and i thought it looked really really fishy neuro epiphyseal disorder and did a cursory pubmed search which found nothing i m pretty sure this is a hoax any thoughts t c,0 +redirect talk rotorsport uk mt,0 +thanks for the feedback as for insight numerous sources have claimed it is an industry first i will be researching further by posting at the norton and wilders forums,0 +october utc if graham fitch or any of his defenders had any significant evidence that the allegations were completely unfounded i e statements refuting the claims that he was under investigation by the named organizations then they would no doubt be more than happy to post them if they do not have any refutations of the allegations then they are with at least some merit and worthy of mention,0 +note from the subject book r la prabhup da l l m ta and he did not have to flatter anyone support anyone or manage anyone s life his mind and intelligence were free and dwelt constantly on his service to his spiritual master he saw his present circumstances as a preparation for a greater task before him despite his advanced age he felt that he had barely begun his work yet he felt confident he had his vision of a world association of devotees it was not an idle dream although he was not certain how it would all come about but he knew his duty for the present he would go on describing his vision the vision of his predecessor spiritual masters in articles and books but as soon as possible he should go to the west westerners he had concluded were not satisfied with a materially comfortable life devoid of spiritual understanding more than his fellow indians they would be open to the message of the absolute truth he knew he should go and he would go if k a desired abhay lived frugally in v nd vana keeping exact account of every expenditure and every receipt he carefully kept a ledger just as if he were running a substantial business even though his purchases were only a little milk a few vegetables charcoal for cooking bus rides and his major expenditure postage abhay composed a bengali poem v nd vana bhajana its opening stanzas were especially self reflective and personal i am sitting alone in v nd vana dh ma in this mood i am getting many realizations i have my wife sons daughters grandsons everything but i have no money so they are a fruitless glory k a has shown me the naked form of material nature by his strength it has all become tasteless to me today yasy ham anug h mi hari ye tad dhana anai i gradually take away all the wealth of those upon whom i am merciful how was i able to understand this mercy of the all merciful r la prabhup da is here in the advanced age of his supporters friends and family left him broke r la prabhup da l l m ta another reference prabhup da s most ambitious literary undertaking the completion of r mad bh gavatam was to be no less than sixty volumes he had begun in india in and all along he had been aware that he was attempting a gigantic task at an advanced age now k a was giving him opportunities both for writing vedic literatures and for travelling and he was working at an amazing pace prabhup da is here in advanced age of starting to write his bhaktivedanta purports i guess in india it was an advanced age but not in florida,0 +choice of sources and representation thereof i am glad for editors who contribute russia related content being a closet russophile myself regarding impasses you will find your time on wikipedia will be most constructive sticking to mainstream scholarship i ve been a bit disappointed in your recent edits based on interpretations of soviet jurisprudence as holding sway over undisputed events how you spend your time on wikipedia is up to you but it s always more constructive to avoid conflict so at least make sure to discuss changes first no response necessary feel free to delete not that you haven t already talk,0 +i m georgianjorjadze hello fisherqueen i am georgianjorjadze i just posted a message on elockid s talk page and i am interested in your opinion gj,0 +redirect user talk cluebot commons,0 +utc i don t think the definition from webbs really works given the change that has happened since it was first written the idea that professionals supply disinterested counsel and service to others for a direct and definite compensation wholly apart from expectation of other business gain is a bit naive particularly in the i think a more realistic and up to date defintion is required for instance in the light of holocaust in which many german professionals acted as instruments of a disfunctional state which would tend to indicate that service for others may not be have the intention but was taken to a tragic extreme likewise the recent financial crisis would tend to indicate that profession of banker if it is a profession has shown to conducted wholly for business gain i e higher profit larger bonuses whilst other professions have shown themselves to be very interested in business gain often to the detriment to the business e g accountants in the enron scandal i am not saying that perks is the ideal source of information but would suggest we need to cast around for a better definition and one that is couched in more modern language talk contribs november,0 +tangential and ts there are a few judgement calls there that we will have to do a second pass on i did include the bee bees see my comment in bee gees in it jeb and dubya that is and i did not include jesse jackson those three guys are in too many categories as it is you want to remove a few from the category be my guest but do not get greedy about undoing my work,0 +actually dennis has misrepresented what i have said and done dennis has done that to me many times i have asked him to acknowledge that he understands after explaining to him on several occasions that he has been inaccurate always negatively about me but he never has in reality my e mail account was used to harass me in real life today i suspect dennis was behind it i have not accused him other than to say i think it was him i have also requested that i be checked for sockpuppetry and meatpuppetry since those allegations have repeatedly been hurled at me there is no seeming refusal to provide evidence i refused and shall continue to refuse i have had my personal life including my employment threatened and i m wondering if my bank account could have been compromised i insist action be taken against me immediately i refuse a ban and demand a permanent block as well as a block of a range of ip adresses to ensure that my sockpuppetry and meatpuppetry end forever i confess to canvassing forum shopping meatpuppetry of hundreds of users writing comments as an ip with clear knowledge i was doing so and sockpuppeteering over fifty accounts,0 +it seems that many users have had problems with harassment and vandalism why do you continually harass other users and then falsly accuse them of vandalism or other wiki infringements please do not delete this comment i am only here as a mediator and this is not a personal attack only a simple question as to what motivates you to defame other users,0 +at least you ve replied with more rubbish you can not add speculation to wikipedia don t you see by writing it was speculated that it is speculation,0 +windows rt edit war sigh please contribute to the poll on talk windows rt you are being asked because you commented on linux,0 +to clarify i agree with you and i mean the show itself doesn t really fit,0 +nonsense and this is coming from one of the known sock puppets of the bahai administration,0 +docsoc as ariel said above there are no google results i always do a search prior to deleting articles wikipedia articles are not deleted without investigation provide three verifiable third party reliable sources and i ll look into restoring the article,0 +please do not delete sections of text or valid links from wikipedia articles it is considered vandalism if you would like to experiment use the sandbox thank you,0 +invitation to wikiproject breakfast style border spacing px margin px width class mainpagebg style width border px solid black background color f color f font size width cellpadding cellspacing style background color dff f hello edison you are invited to join wikiproject breakfast a wikiproject and resource dedicated to improving wikipedia s coverage of breakfast related topics to join the project just add your name to the member list talk,0 +disruptive activity please stop your disruptive editing if you continue to vandalize wikipedia as you did at paracetamol you may be block from editing email yeah so i add two interesting and important new relevant references to an article which indicates potential harm to pregnant women on the paracetamol page these are removed because you guys don t like primary sources this is ridiculous and frankly an extreme case of what is wrong with wikipedia my wife is pregnant i for sure want to know about potential harm of this drug i would think as a medical professional that you would be more inspired by the first do no harm idea the fact that you wikipedia jerk s are so focused on having only sources from a narrow range of w hate ver it takes for a given article is so frustrating i ve continued to run into this kind of thing you would think that academic journals have taken over wikipedia the idea that i have actually improved the article with my additions and that others can improve it further has completely escaped much of the wikipedia culture these days wikipedia has simply forgotten the idea that this is collaboratively edited rather than having a coterie of people who simply reject all edits if they do not thread the eye of the needle through the dozens of acronym style guides you guys are disgusting really you are standing on the shoulders of millions of edits and now you reject the very thing that got you to where you are namely lots of collaboratively edited small improvements now any change has to go through hurdles that would never have created wikipedia in the first place the fact that you have excluded something that is evidence of significant danger to pregnant women based on this culture of exclusiveness should trouble you deeply i m sorry that i ve upset you but the fact is we get hundreds upon hundreds of poor quality changes every day that is why we ve written wp medrs which i pointed to when i reverted you there is also an excellent essay on why we adhere so strongly to it at wp whymedrs the fact is that many primary studies are either performed on mice or on very small populations so that their results can t be trans ferred into clinical practise medrs is no catch all but it helps us and makes patrolling many articles and removing citations from the daily mail easier i would also like to point out that we are working on getting these types of warnings into our articles automatically for example by having fda warnings automatically added i understand it may feel as if you re being reverted by a faceless mass but i assure you if you had simply taken up the discussion it would have been far more likely to be productive email this isn t about my feelings it is about your behavior you revert me with no reason then start quoting this bureaucratic nonsense then threaten me with banning due to my disruptive editing this is why wikipedia is dying cannibalizing its editors and edits in a kafkaesque farce congratulations i m sure your no doubt proper and uplifting zyzzyxrd will be cited upon its demise you may want to try and comprehend your own actions and not my feelings see,0 +not everyone reason is a notoriously partisan source,0 +you resorting to dishonesty is disgusting and vile binksternet for starters dating back to the original discussion back in december while the user optigan liked financialnorth he preferred a cropped version of the fourth photo to which no including paulh or you for that matter said anything as clearly noted in the discussion as i m saying again for the umpteenth time and as the record showed no decision was made and the discussion ended paulh or you did not say anything if he wanted the photo then why didn t he continue to press his case then and convince a consensus then i would ve left it at that then but instead he and other editors remained silent i didn t restart the discussion because i assumed that the editors simply lost interest or didn t have the time furthermore i did not slip in as you disgustingly dishonestly facetiously say i only added that photo because i noticed for the time being that no one had made a decision since the original discussion back in january again no one did anything for months you and paulh cannot claim you didn t see the change because you made several other edits throughout the article for months again paul did not form a consensus prior to the change or continue the discussion where it had left off once again he instead changed the photo got a consensus from binksternet the ip editor liked the photo but quoting the editor again any of the photos in that section financialnorth jpg montgomerystreetsf jpg federal reserve band san francisco jpg except sanfranciscoembarcadero jpg would be fine as a replacement and even the cropped version of is better than the one currently there now thoughts talk i m going to replace it with financialnorth jpg and see what happens the crux of it was that paulh made the change before even binksternet approved it or i or other editors could respond binksternet s abusive little crusade against me shows my point that he and paul have no interest in perusing collaborative editing efforts despite my reverts i at least agreed to having a discussion and a photo choosing contest as it were paulh did not and binksternet is now acting as some kind of enforcing i don t see binksternet asking the ip editor in question or other editors to the sf article including optigan have their say either in this he is not apologizing to me and asking that we resume the discussion and consensus something that at least paulh did earlier only showing his intentions as pure slander towards me as attempt to have me banned purely because he disagrees with my edits or w hate ver personal victory he may get by flaming me,0 +i put in an rfc talk turkey request for comment sanitization of turkish history i hope we can bring in some neutral editors to debate this,0 +lorry in australia seeing as someone likes to keep changing this back i would like to point out that a quick google search of use of the word lorry in australia brings up several hits confirming that it is a word used here so stop changing it back i don t particularly care if you think it s not a word still used here it is so end of story,0 +shroud of turin i ve moved shroud of turin from proven hoaxes to possible hoaxes as far as i know there s still debate about the authenticity of the shroud jan utc,0 +citation title the cathedral and the bazaar musings on linux and open source by an accidental revolutionary last raymond first eric authorlink eric raymond year publisher o reilly location isbn pages edition url http books google com books id dbacaaj,0 +i took care of it talk contribs,0 +speedy deletion declined castle age hello the blade of the northern lights i am just letting you know that i declined the speedy deletion of castle age a page you tagged for speedy deletion because of the following concern previously declined please do not re tag use wp afd or wp prod instead thank you why,0 +please refer to my comment above about how posters here are making it seem like the irish are stuck in the th century coll,0 +i think that notice is aimed more at discouraging changing of the wording in a way that the intended meaning is changed as a result rather than correcting errors what you did was fine so i don t consider it a big issue whatsoever thanks again,0 +yawn the above comment is a quote from mcneight and yet he still insistes on adding that damn preceeding unsigned yada yada what a rude and obnoxious individual,0 +sylvain chomet has commented on his use of satire in many interviews and the most obvious indication is the overweight statue of liberty the comment is completely justified in the article in fact i d say necessary,0 +it wasn t mkil just someone sick of all your h t and just for future reference learn how to write before you make edits to an encyclopedia you make yourself look like a fool because your illiterate and sign your posts you ve been making harrassing edits for years and you even failed at that such a simple thing as signing your posts and you still can t get it right i ll bet you were dropped on your head as a child weren t you no need to answer that your writing style gives it away,0 +hello i guess the reqeust for the lion vs tiger consenses i asked of keith will be adressed to you https en wikipedia org wiki user talk keithbob so if you may thanks,0 +i was finishing creating a page and i wanted to know if i had cited the sources correctly i also wanted to know how to make the page an actual wikipedia page and know how to change the name of the page the page is https en wikipedia org wiki user raymond phoebe allen s hummingbird i tried putting this same question on the teahouse and i got no answer,0 +what does the admin see i would like to know if the websense admin sees just the ip of the machine that goes to or attempts to go to a restricted site or if the admin sees the ip and the login of the user if it only tracks the ip then those that have citrix sessions can at least try to go to w hate ver site they want without worrying about consequences i would be really mad if i had websense on my home connection that i pay for however i am wise enough to realize that my employer has every right to block w hate ver they like it is up to me to be wise enough to know where i can surf for what there s no such thing as a free lunch if you want an unrestricted internet connection pay for it or hack it yourself don t disguise your lack of ambition as employer oppression,0 +private engineering colleges i have left only the most famous ones in the article,0 +you are clearly not very smart and not here to build an encyclopedia,0 +ivo banac a bit of nonteleological history one of the great problems is that our understanding of the common and individual histories of the south slavs and the other peoples of southeastern europe has not significantly benefited from critical historiography this is because nationalist historiographies regularly have explained modern developments as an aspect of unilinear design we have been taught to see connections that may be of our own making for example if we look at a current political map of the area and compare it to that from the era of settlements we will see that the present political divisions do not correspond to those from the early medieval period croatia is mainly a coastal area from the rasa river in istria to the cetina river a little bit to the east of the city of split down the coast from the original croatia we have a row of unfamiliar slavic territories that constantine vii porphyrogenitus the tenth century byzantine emperor historian called pagania literally land of the pagans zachlumia most of present day eastern herzegovina with the croatian peninsula of peljesac terbounia the trebinje area of eastern herzegovina with dubrovnik and its eastern coastal environs and dioclea the southern portions of contemporary montenegro with the bay of kotor and the northwesternmost portions of present day albania around lake skadar shkoder serbia is located in the hinterland of zachlumia terbounia and dioclea its center around ras near today s novi pazar in the sandzak bosnia was apparently within this territory but represented a negligible area around the source of the bosna river where we now find sarajevo and its environs and dalmatia in the tenth century this was a necklace of byzantine ruled roman coastal cities and island territories from krk in the north to ulcinj in the south moreover modern territoriality required a tradition that was itself a product of modernity thus unrelated traditions were merged to produce an idea of ethnic as opposed to cultural continuity the croat historical tradition goes back to the chronicle of the priest of dioclea a twelfth century text from bar in contemporary montenegro and its various trans lations for example marko marulic which were in turn incorporated into the early modern slavic and dalmatian histories of mavro orbin and ivan lucic ioannes lucius these works then became material for the croatianizing work of pavao ritter vitezovic croatia rediviva who was the most important influence on the revivalist generation of ljudevit gaj and that of postrevival integral nationalists like ante starcevic curiously the same histories orbin s were serbianized through the trans lations of sava vladislavic which then influenced the pioneering serbian histories of jovan rajic and were bulgarianized in the history of paisij hilandarski the bosnian historical tradition was somewhat more self contained it combined the franciscan memory of medieval bosnian statehood with the experiences of muslim ayan notable selfrule to argue for a uninational bosnia for example antun knezevic whose book was published between and clearly something has happened in the span of ten centuries pagania zachlumia and terbounia have disappeared the center of croatia has migrated from the adriatic to the north into medieval slavonia literally slavic land with zagreb at its head this happened in stages during the high middle ages the heart of croatia was on the una river now in northwestern bosnia this territory turkish croatia was lost to the ottomans in the sixteenth century and became a part of bosnia during the habsburg reconquest and the concomitant venetian operations in the seventeenth century the framework of modern croatia emerged in two extended shanks one to the north to modern slavonia the other in the south in modern dalmatia at the same time the zagreb area which was only dubiously croatian in the early middle ages became the heart of modern croatia the story of serbia is not much different serbia first migrated to the coast and assimilated dioclea then it moved to the ibar morava valleys then toward the valleys of struma and vardar in macedonia it reached the danube only as an ottoman vassal in the fifteenth century and its modern capital belgrade became truly serbian only in the course of karadjordje s uprising in bosnia too expanded under ban or prorex kulin r into the donji kraji literally lower lands around the vrbas river and the soli literally salt lands for centuries ottoman then modern tuzla and usora in its present northeastern corner later on at the height of its power in fourteenth century bosnia expanded into hum herzegovina and the drina river valley the westernmost regions were inc,0 +from previous editor who is also in canada posted on user s page yet not practiced by those who have warned and block this ip info should be removed as on the contemporary christian music article to editors please stop tagging adding templates to the top of every article you read and actually take the time and fix the problems,0 +editor review hey thanks for your review of me at er i was previously aware of the naming conventions debate it is a tough topic obviously i support a fairly common sense approach to the subject if it deals with politics name it by political entity if it deals with geography name it by place etc i ll stop by the chinese naming conventions page later today and catch up on the recent discussion i didn t know previously about your project to clean up china related categories cleaning and reorganizing categories is one of my favorite gnome like tasks to do on wp what specific changes did you have in mind i really should help out more at fac sometimes i just don t want to read all the way through an article lazy i know i ll look into conflict mediation too as for my trans lation of the chinese redology page i kind of got frustrated because my chinese ability is not quite good enough to do a good trans lation english is my native language i m only a third year student of chinese someone else seems to have trans lated some of the material and put it on our redology page thanks again for the review hope to work with you soon,0 +no censorship there s no censirship,0 +montreal edit help thanks oui je comprends merci,0 +imagine if i treated hapfsjen like you treated this anon editor here we both know his english is poor and his comprehension is poor but when i see his messy edits i leave them alone to avoid conflict but you drmies you treat people like shit like you i want to delete this article period by period comment in the talk page of an academic and holocaust survivor you don t get to act to like an anti semite and bully people you disagree with and then cry foul when editors point out that you are abusive your actions speak for themselves you first actions as an admin were to impost your pov on a contentious article and you statement that you don t want to block me is a blatant lie you have said just the opposite in the past and participated in accusations of socking to try and get me block indefinitely this is on top of our long running conflict so you lie as much as you want and you can block me if i point out the facts that demonstrate you re a liar but bigotry bullying bias prejudice discrimination and other abuses are wrong i m limited to how much i can speak out about your actions because perversely speaking out against the worst abuses on wikipedia is punishable but the facts speak for themselves,0 +i agree that every capital city in europe has an electricity grid,0 +lol let the porky make a fool out of himself i also suspect that he is infact using socks himself follow his edits and note the right wing idiot s who supports him,0 +mir jafar edit war i see that you re involved in a dispute over the content of mir jafar yet haven t made any comments on the talk page could you please discuss the issue there before further reverts so that page protection can be avoided thank you talk,0 +sleep and wikipedians anybody out here who cant sleep i have been up all night on wiktionary adn its now local time strange,0 +so he is going to make his reply secretly so i will have no opportunity to refute it how typical of the man,0 +well since the kosovo government was and is still primitive they sent kla fighters fortunately for the kla a lot of albanian civilians joined them,0 +i know ive been bad but emc has been mean to me quote your name will be added here from now on when you vandalize i m done with you you little punk thanks bugman,0 +ugh i m so torn i wish they d let stephen run but must not vandalize,0 +intro i do not like the phrase not counting a tail of to cm to in long suggest changing it to length instead of long,0 +i agree i agree it was an edit war he she did not listen to anything i said although my edit was constructive talk,0 +calling an edit war an edit war isn t a personal remark its a simple statement,0 +your serious mental illness and addiction this is the most contructive thing that can ever be contributed as it relates to you and your involvement here please stop and think about the depth of your sickness sitting there with your face glued to your computer screen uncompensated day after day week after week for years tinkering with the biographies of people you don t even know who actually are out living real lives while you are imprisoned by your addiction you have literally wasted years of your life with this lonely self destructive addiction and illness which has been at the expense of living your own life the depth of your mental illness must make it difficult for you to see the extraordinary insanity of your actions and how your addiction has stripped you of the life that was given you i know a few others have evaluated what you do here and laugh at you and your sickness it s something of an inside joke and i guess few share it with you because they consider you hopeless that s not right either and i d ask them to please stop that and try to help you don t laugh at this person behind their back and then just communicate with them on routine matters that lacks all caring for a person who has an obvious and very serious illness something is very wrong with him her and while it may not be for us to diagnose the exact problem we should pause to help with advice please share with him her what we all know it s only humane to do so i will do so now too jerzy or w hate ver your name isconsciously concealed i m sure to keep your illness as private as possible please consider some uncomfortable facts years of your life have now been totally consumed and absolutely wasted by your deep deep sickness and obvious addiction please don t make excuses for yourself you cannot go on like this any longer you need to stop and you need to stop today reject this advice and i worry that your sickness will probably only deepen and your addiction will waste w hate ver is left of your life please stop it s over enough move on i do wish you the best and hope you will take this friendly advice seriously it will be the first and last time i share it and i hope you know that i share it only with your best interests in mind it s sad what has happened to you but i wish you good luck and hope this advice is helpful but please take itand do so today you cannot go on like this,0 +at the top of the article it clearly states this for the song by stephen duffy see kiss me tin tin song,0 +october utc wp or,0 +can you recommend ways to source the article which i would be very happy to do which meet with your guidelines i don t want to cause a problem with external links,0 +your opinions are neither wanted nor requested as you have lied several times on the talk muhammad page you are now advised you are not to post on my talk page again if you do so you will be brought to ani for wp harassment which will be yet another case against you,0 +sockpuppetry case your name has been mentioned in connection with a sockpuppetry case please refer to wikipedia sockpuppet investigations backlook for evidence please make sure you make yourself familiar with the guide to responding to cases before editing the evidence page talk,0 +just checked you history you are a kannada right you don t have any history to write about kannadigas you motivated moron targeting and deleting tamil identities in all possible ways i don t know how wikipedia is allowing guys like you to go ahead with clear conflict of interest i am writing to the highest authority about guys like you playing with gods and history relating to india and hinduism will slipper you if i receive one more notification from you,0 +still reckon the specific locations penitentaries are what is needed in the title of the list and even another separate bit of info for the times that the colonies were specific penal colonies dont know the dates myself suro,0 +yes mon unu mus like some kin of chiney boy,0 +source you don t always need a source,0 +chesdovi chesdovi is just a dos from the usa who probably doesnt even speak hebrew if you think he would be dumb enough to do something so obvious and you think this is him then you are really the dumb one,0 +skywriter i have tried to be civil with you i would ask that you return the favor remember i didn t even write the old lede i picked that as merely being most likely to be non controversial also note that on every single edit page there s a big statement saying if you don t want your writing to be edited mercilessly or redistributed for profit by others do not submit it part of the edited mercilessly part is that people will criticize your writing it s nothing personal if you see no evidence that kinzer s book brought about a massive reassessment of the coup in iran then you did not read the book or the reviews amazon reviews are worthless for determining how important a book is merely how good one is but w hate ver you didn t include a direct mention in the most recent version so let s just drop this and for about the billionth time since you mention in my edit summary that i m criticizing kinzer i m doing no such thing i m sure the book is very good judging from the review given by the cia history fellow but very good is not the same as an element of crowning importance in the coup itself people knew after that something had gone horribly wrong so this was not a new revelation aggression aside snowfire the underlying flaw in your windy analysis is the absence of credible sourcing you said earlier that your other comments are too general to address if you would like to suggest specific changes to the wording feel free to bring it here for comment i decided to expand on the many problems with the lede and now it s a windy analysis got it but aside from sniping you still fail to understand that my biggest problems with your version of the lede have nothing to do with sourcing it has to do with what information is appropriate for the lede there are a million and one possible sourced facts that can be mentioned in the lede we have to pick which ones i have no doubt that your text was sourced it doesn t mean it s automatically appropriate for the lede yes and it shows just how careful were your mad rush of reverts last night fast and loose with facts let me say it again are you denying that cold war paranoia had anything to do with the coup do you realize what references are for it s to confirm facts this fact is obvious and supported by every source including your own so it doesn t particularly matter what it was referenced to if you want to source it better have a blast but this is not even close to fast and loose with the facts albright s apology you ve got a point that the linked nytimes article doesn t call it apology remember i didn t write the old lede fair enough if we want to remove that due to being murkier than we d like the cia does cite vague fear of the soviet union in its most recent justification for the coup however the cia s accounting published in three years after the publication of kinzer s path breaking book must be weighed against the cia s destruction of most of its documents related to this coup wait the cia destroyed the documents so therefore the soviet union had nothing to do with it that logic doesn t flow more to the point the idea that cold war machinations were behind the us involvement is in literally every source i haven t read all the shah s men but from your linked book review the one by a notable person not from amazon reviewers it seems to be in that too i quote eisenhower and his secretary of state john foster dulles were dedicated to rolling back communism and defending democratic governments threatened by moscow s machinations kinzer depicts him as beguiled by a moralistic john foster and a cynical allen by ignoring the anticommunist basis of us policy he wrenched the dispute with the aioc out of its cold war context and saw it only from his parochial nationalist viewpoint lastly mossadeq s na vete about communist tactics led him to ignore the tudeh party s efforts to penetrate and control iranian institutions he seemed almost blithely unaware that pro soviet communists had taken advantage of democratic systems to seize power in parts of eastern europe by not reining in iran s communists he fell on washington s enemies list https w cia gov library center for the study of intelligence csi publications csi studies studies vol no article html yeah as a reminder this is from a review of your favored source also note that dulles is described as moralistic i e interested in stopping the communists not greedy interested in oil squares with what i know of dulles anyway the overwhelming consensus is that the us was invol,0 +don t put words in my mouth i m not on the same premise as you here global increase in temperature is fact but the causes and concerns are highly debateable otherwise it obviously wouldn t be listed as a political view the solution is to clarify that his viewpoint on global warming is consistent with liberal viewpoints on causes and concerns rather than simply the observation of temperature increase i ll do that now karwynn,0 +esoteric christianity i removed the reference to the jesus bloodline being linked to esoteric christians because it lacked a source the hyperlink to esoteric christianity shows that the wikipedia article did not refer to the jesus bloodline,0 +you re taking wikipedia too seriously it s nothing more than digital scrap paper think about it would a real encyclopedia let phony citations stand while striking down valid ones like mine no so if eusebeus wants to think he owns those particular bits of scrap paper and that those bits of scrap paper are encyclopedic perfection let him think that i simply don t have the time to fight non musical idiot s in a sandbox i have actual music to be a part of,0 +there was no general insinuation but a statement that in some versions it is associated with anti semitism that is precisely what jay says i take offence at being accused of mischaracterising sources,0 +december you have been block quite a while from editing for vandalism of wikipedia,0 +again in only really the two palestinian cities of safed and tiberias,0 +from here from here,0 +a barnstar for you the original barnstar very nice edits on polywell and direct conversion i very much liked the conversion page there was plenty of new information nice job,0 +plaxico i keep hearing his name who is was he d lus contribs,0 +another article here http w cbc ca news business story crop prices drought canada us html,0 +listen i don t care who you are i run things in this town me,0 +no moar dramah tom morris i wanted to commend you for your post on the wp npov wp administrator s noticeboard http en wikipedia org w index php title wikipedia administrators noticeboard incidents diff next oldid adding to the motivation for that discussion i have to wonder about your motivation for getting on your wp soap soapbox making your statement this might lead one to think that didymus judas thomas is a paid advocate working for burzynski or not you re entitled to your opinion but your opinion is not based on facts but just your inaccurate speculation i would suggest that if you have to put or not after it it probably was not worth bringing up in the first place because wp doesnt need moar dramah no i didn t mumble when i typed that thank you very much didymus judas thomas,0 +hi mr ollie psoriosis and eczma common cause i would like edit it correctly so as to benefit many sufferers i have simply copied in the three articles that join together to indicate a cause for eczma psoriosis these are factual and are in the wikipedia as follows this is very acurate information this is true information and this parasite ascaris is a cause of both eczma and or psoriosis all i have done is join the dots wikipedia has the answers many sufferers are looking for connecting the dots isn t allowed i m afraid it s called synthesis and is considered a form of original research which is against our policies here if ascaris is acknowledged to be the cause of psoriasis it would be best to source this fact from an article in a medical journal or perhaps a medical textbook,0 +thanks very much for the restored toungoo map borders it s close enough but i wish it s possible to use increasingly lighter shades e g you ve followed the present day border more or less for the chinese border which i suppose is a reasonable representation of the line of control but the reality was that there was a huge overlap across the line anaukpetlun and thalun controlled some of koshanpye campaigns on top of present day shan state and east of bhamo though not as extensive or deeper into yunnan as did bayinnaung likewise all the sawbwas in modern kachin state and sawbwas in northern shan state also paid dual tribute but since it s not technically feasible i guess we ll just have to provide an explanation on this a number of locations are offsome by a lot chiang mai ava kyaukse nyangshwe pegu and kale also please add the cities of nan and chaing saen in lan na nan was the easternmost possession chaing saen kyaing thin was the capital of northern lan na the burmese divided lan na into two again thanks very much for the help regards,0 +i did not post this pic on his homepage it was linked there april it is a valid intrawiki link it was the only content of his homepage,0 +marmot you re so cool keep up the good work a s l,0 +continuing the list on needed clean ups the following statement is unaccurate c supports a strict boolean type bool statements that take conditions such as while and if require an expression of a boolean type while c and c also have a boolean type c does not have a native boolean type although a type bool or boolean is defined by many libraries and conditions for if for while statements must be of arithmetic or pointer type according to k r second edition i had edited this myself rephrasing the statement but edited back since i felt someone might do it better,0 +squeeb i m concerned that you re going to end up spending a lot of time editing an article that will be deleted,0 +on september hitler attacked poland britain and france were caught in their own trap these two countries assisted in all of hitler s adventures hoping to use him against the soviet union http w plp org books stalin node html,0 +i have responded now stop wasting my time i have just contacted two meps trying to keep my fiancee alive idiot s like yhou will destroy any reputation wiki has if you collude with murder what good are you hours then do what you want i will refrain from posting anyting on your pages now stop bothering me i am busy for a while,0 +or the title of the book,0 +luckily norden is not banned but only block talk,0 +why is there more information on the trans formers universe than there is on isaac newton this is a very interesting encyclopedia vomgivesup,0 +maybe but i don t think any of that is relevant for wp purposes digame,0 +that s the root of the entire discussion and once again gwen you are mistaken if you re an arab or pro arab you would indeed use palestine if you re an israeli or pro israeli you would use eret yisra el the land of israel both are anachronisms while eretz yisra el pre dates palestine true it was used for years by western authors but is it accurate no should it be accepted when it s obviously a historical mistake no if you insist on using anachronisms it would at least we more fair to write the land of israel palestine,0 +lol i do what i can i figured it d be mean if i vandalized anything other than your vandalism box,0 +the legend of zelda the wind waker far hi the legend of zelda far is still ongoing and has been moved to farc if you have the time it would be appreciated if you could revisit your comments there and perhaps give us your opinion as to whether the article should be kept as a fa or delisted thanks,0 +germany four entries you did not respond to my argument at all please read it more carefully the ioc cannot be seen as the single authoritative source on this article as the ioc itself does not publish all time tables and publishes only unofficial tables per single games therefore this article is in violation with wp no original research the official source for the german national olympic committee dosb does list the olympic medals for germany from to there were no official country codes before only in did the ioc start to assign standardized codes before that time the local organizing committees of each olympic games had chosen codes often in the local language resulting in a multitude of codes at the games of and the german team was simply known as germany and the usual country code of ger was used yet the ioc code eua is currently applied in hindsight in the ioc medal database without further explanation given yugoslavia does not exist anymore as a country the frg does the frg federal republic of germany did not cease to exist it was a simple code change same country same noc no alternate nocs eua frg and ger have always had the same german national olympic committee noc recognized in same noc president willi daume same olympic committee located in frankfurt only the codes have changed germany is officially still called frg the federal republic of germany it s the same country with the same noc since the first modern games held in only the gdr had a separate noc because it was a separate country although not recognized by germany west germany did never exist and is nothing more than the common english name used for the federal republic of germany or frg the enlarged federal republic of germany known simply as germany is thus the continuation of the pre federal republic of germany the very same country with the same national olympic committee since,0 +also ur only blocking me from editing wikipeida which i havent vandalised for a couple years and i wasnt going to anyway thats pretty pointless the only thing i can t do is change my userpage well if i was gonna attack him i can just type it here,0 +aaron johnston was the aaron johnston who was on this show the same aaron johnston who is the son of lynn johnston of for better or for worse fame,0 +if you could look in i am considering going live with,0 +you can t ban anyone so please avoid talking about bans since there isn t any consensus you are just trying to impose your will regardless of the facts other people are providing to back their statements without backing your statements yourself this map made by renato biasutti is more than enough it clearly shows that for instance in veneto of blond people is from three to seven times higher than in calabria and in tuscany is at least three times higher than in sardinia this is definitely relevant now of course you will say this map is old but you won t provide a newer one not credible but you won t provide a more credible map same difference as other countries but you won t provide a single source proving that etc try to stick at this map what is wrong about it as long as people won t provide sources to back their statements i will consistently restore any reference in the article,0 +my guess is the webmaster just used a generic commercial template,0 +it really did read like an attack piece on yobol and certainly was not written in the tone or style of a statement from a supposed research philanthropic foundation but the bottom line is that this article likely affects their bottom line and charity after all is a business these days perhaps we should consider protecting the page with pending changes these new primary studies are likely to attract users with an agenda and if the established research is correct that morgellons is a delusional condition we have to keep in mind that we are literally dealing with people suffering a massive delusion talk,0 +you have a very good point sadly i have been banned forever from wikipedia for arguing just this kind of thing perhaps you could try to continue the good work this is important stuff you will just have to deal with a lot of pov warriors good luck,0 +this article is poorly written in comparison to the general standard of legal articles on wikipedia it needs to be re written by either a lawyer or a good social science academic,0 +the double the section on the rivalry v cardiff mentions neither team has done the double and refered to an article discussing winning the league title and fa cup i am sure from context that is not what is mean t by the double here and rather it means team beating the other twice in season is that correct,0 +the article is semi protected you can t edit it if your account is less than a few days three i think old,0 +alright go take a look at the ampeg page and explain how it is any different to the markbass page go on do it,0 +do you pride yourself in your ability to write such poetic and profound statements that mean nothing maybe you should take up poetry you can show off your english skills to the world,0 +my intent is to endorse his reply regardless of what he says,0 +the argument is that deism in gw s case was an informal subdivision of episcopalian terology not an organized religion one could belong to he claimed membership in and was active in his ang epis church but never said a word about being a deist never joined a deist group and never attended any deist ceremonies,0 +the eu a german ploy this might be worth mentioning in this article many people in eastern europe and elsewhere i e france russia those europeans countries that refuse to join many others believe that the european union is nothing more than a german ploy to control europe both politically and economically given that germany is the most economically powerful and populous member of the eu they say that the success of the eu obliquely fulfills the third reich s burning desire for germany to become the undisputed masters of europe should this hypothesis be included in the article or simply written off as a deluded conspiracy theory,0 +don t post any garbage on my page,0 +you haven t looked into in the blatant pov and editing history of malik shabazz is it that you are not interested agree with his pov pushing or do you just fear him,0 +derivation of imp there s been some activity to change the derivation of imp in the article the derivation incarnate memories prevail while unpersuasive is at least cited while the other derivation has no verifiable source cited clarifications are welcome,0 +redirect talk sun hwa filipino school,0 +check this one out september utc,0 +the truth is at http w bomis com where wiki used to be smile beckjord,0 +research into health effects i don t believe this section is currently justifiable the st study looks at a proxy variable in just practitioners and the nd is from a self selected sample and is self published health benefits would be no surprise but these studies do not add up to much,0 +list of fnl awards and noms hi joey thanks for closing the merger proposal discussion looking back at my answer to jmajeremy just made me laugh it only dates back from last year but at the time i did not know much about wikipedia so i just replied expressing my feelings without good arguments i wrote in capital letters wich i know now is inappropriate and used wp otherstuff lol i was so mad at jmajeremy because i had spent hours to find sources etc anyway i m so glad the discussion is closed even if my arguments were not solid,0 +siddharth mishra siddharth mishra is a real and a living person kindly undelete that page though i have no online article to support his existence but i have newspaper cuttings to support this my question toyou do you know him personally if no then you should not delete this page,0 +support per commonname,0 +obviously there is some anti americanism in canada this means nothing necessarily with regards to the structure of this article i was referring to the specific idea that canadian students fear their sovereignty will be overwhelmed or that canadians consider themselves cultural correctives to americans and i asked for another side of the story and questioned how big of a deal this was to put in the introduction your response here is confusing as far as citing my sources i am questioning your views and whether they belong in the article not making additions to the article several of your quotes are very weak examples many countries could claim anti americanism on the basis of involvement in the middle east that doesn t mean it s a relevant enough addition to put into the introduction of an article on one of the most trafficked websites in the world that is meant to specifically talk about the major issues between two specific countries as far as your sources go you did not comment on the obscurity of them you have still not properly defended james tagg yes that was me who removed that a year ago i don t see why you get to just dub a source reliable when i thoroughly explained why i determined it unreliable or rather inappropriate to add i read that source left you detailed comments and you said something like don t pov push and reverted my edits you are not making an argument here re culture clash in archive again there are two sides to every story please try to tell both if you are going to edit this article many canadians would laugh at the idea that the usa causes a profound fear that their sovereignty will be overwhelmed and why do students opinions have so much weight by the way but there likely won t be many sources to support this because the initial premise that it even might be the case is so rare that such sources wouldn t exist for a counter argument nevertheless i ll take a look one last time this is about obscurity clouding neutrality and onesideness breaching neutrality i am not trying to say that what you re saying is not true at all i m sure it is true the the extent that it is but how much is that the points in question fall so far below the relevance required to be in the introduction to an article that they should be immediately moved,0 +i wonder what would be your npov version of the following article muslims believe that muhammad was the last prophet and messenger of the monotheistic abrahamic tradition and that the quran is the last revelation of god muslims also believe that after quran and muhammad there will be no guidance from god in the quran muhammad is referred to as the seal of the prophets or the last prophet followers of mani founder of the persian faith manichaeism believe that these titles the seal of the prophets and the last prophet are attributed to mani who his followers claim came before muhammad i ve bolded the statements that makes it npov now tell me how it compromises npov if you are so much concerned with npov then why are you reverting to usedbook s version i have asked him to cite sources of his claim and he didn t do so,0 +by the way what do you consider harassment i object against three of his actions not more talk,0 +an accusation that is,0 +first i just realized via your question that i could answer here assuming it saves yes i finally get that my attacks were totally inappropriate and unneccessary i confess i did not at first even this morning i realize i made inappropriate attacks after looking at his contributions and assuming some highly speculative personal motivation and then asking him about it in an offensive way i would not be at all surprised if others have made negative assumptions about me based on looking at my contributions history and attacked me so the user does have my sincere sympathies and apologies what to do differently when groups go after me write a better wikiquette name several people go to wp ani naming several people do user rfcs naming several people that is where i admit i need further advice since a year old off wiki email is often the focus of harassment and so far the advice is not to go into detail about it i don t know how to defend the recurrent references to it let me say again it was a stupid overly generalized and exaggerated response but certainly not written with some evil bigoted intent i feel that a lengthy correction of it complete with refs about then existing specific incidents issues etc or stating in detail my current views would be inappropriate even on my user page and doubtless lead to more accusations by people who have a different pov but if there s some policy on this that i missed i sure wish people would help me out with that,0 +no problem i ll find something else to use cheers,0 +the problem with leaving the other pages active is we ll have eight pages to maintain four policies guidelines and their talk pages that would be unsustainable the reason the merge took place was because inconsistencies inevitably creep in with lots of editors each with their own ideas to maintain them all as active would be the worst possible outcome talk,0 +do not delete my comment you zionist you are not allowed to delete my comment so please do not do that once it is up it is up i have been warned so there is no need for deleting it if you are then get rid of the warning i have read the rules also stoppin trying to spread your propaganda your zionist freak you might aswell name this page how to make a terrorist state into a briliant state your propagnadist get a life,0 +barbarians the chinese as a country are nothing but disgusting barbarians i highly recommend every and all chinese people to flee the horrors of the ccp before they come for you next its now official over falun gong have been murdered in this genocide but the official numbers are not certain due to the iron curtain around china we haven t seen such destruction and genocide since the soviet union those damn chinese i feel bad for the falun gong i hope every ccp dies of a horrible skin disease,0 +re collective punishment please see my response http en wikipedia org wiki collective punishment thank you,0 +head geography or headland a type of peninsula this isn t right a headland is not a peninsula at all,0 +first off you should not edit the list templates directly as the bot will ignore any changes also you cannot use vertical pipes anywhere in the syntax other than in separating the template name the section name and the reason otherwise everything messes up in place use from the yellow box at the top of my talk page if i ve left you a message on your talk page i will watch it for your response so please reply there i am aware that the bot usually overwrites manual edits as i said i spent hours trying to figure out why following the instructions listed on the rfc page weren t producing the results they should have but when i saw that you had manually edited the list templates i thought perhaps you had disabled the bot until it was working properly basically you re telling me the syntax that is commonly used throughout wikipedia vertical piping is not valid within the rfc templates that s messed up what s even more messed up is the total lack of user instructions that mention that restriction this has become a nightmare of a process,0 +edited by daniel danger molineux danallmight hotmail com,0 +i was unaware of that edit i have the use of a public proxy and share with many other users,0 +minor wording issue about steamboats i m doing some bits of minor copyediting and am stuck on this sentence from the navigation section the use of steamboats along the river beginning in there is a footnote to this timeline page which phrases it steamboats columbia and lot whitcomb begin regular service on the columbia river the thing is there were steamboats in regular service on the river before at least to fort vancouver the first was the beaver steamship which arrived at ft vancouver in i thought about rewording the sentence the regular use of steamboats along the river but that isn t quite right either because the beaver was in regular use even if its operations were not limited to the river anyway i can t come up with a way to reword this bit especially given the existence of the footnote which does not mention the beaver so i m just mentioning it here it is a minor point to be sure but symptomatic of an unfortunate us bias present in many history books and web pages,0 +the band s legacy beggar s banquet etc an anonymous user is repeatedly misreading the guardian source and insisting on adding a dubious tag to it here s the direct quote the spark for fairport taking this watershed turn was the band s album music from big pink the record that along with bob dylan and the band s basement tapes bootleg brought about a widespread musical volte face in which what remained of psychedelia was replaced by a new rootsiness among the rock aristocracy its influence was evident in the beatles ill fated back to basics project let it be the rolling stones purple patch that began with beggars banquet and eric clapton s decision to call time on cream the anonymous user takes issue with this statement claiming that music from big pink could not have influenced beggar s banquet because of chronology i e that the stones were almost done recording the album when big pink came out but read the statement it does not say that it influenced the recording of banquet but the purple patch that began with etc this seems clear to me i would like to hear some other editor s opinions on this matter thefortyfive,0 +samuel is a chump with no life i hope that is the case you chump if i find out the reason u have so much time to work on this page is because you are getting paid to do it my respect for you will fall even lower,0 +well put qg very rarely works towards consensus or compromise and goes well beyond attempting to portray his idea of mainstream pov he tries to bury articles in twisted versions of cherry picked sources with no respect to weight to make them look ridiculous the fact that you think the subjects themselves are ridiculous is not justification for over the top tendentious editing i truly am convinced by his editing habits that he and ppdd are one in the same person an editor that active with such an ownership complex might have multiple usernames those of you asking for diff s to justify the block seriously just look at any talk page discussion he partakes in,0 +it was a mistake for all cabinet positions and all cabinet level positions from the time they were nominated until their confirmation by the senate please,0 +migit wrestler why does it have to say that why cant it say dwarf or little person calling a dwarf a migit is a rude and b wrong people arent suppose to say it,0 +sure i d be flattered if you used it i don t know if you found this page but this is the wikimedia category for triple deckers in massachusetts triple decker houses in massachusetts there are several of us photographers who ve been very busy in massachusetts,0 +i agree added merge tag,0 +is this some kind of joke i m baffled and not too far from voting for deletion,0 +thevar is a backward caste thevar is a backward caste they are tribals with out culture please dont promote your caste thevars are ideally sc st and are not allowed in temple,0 +flagged the page for reading like an advertisement for jonathan morris statements like morris work with fox news has proven to be popular with viewers with many voicing to the network and to morris an interest in seeing more of him or many in the news media turned to the young vice rector for insight and perspective on the pope and his impact on the church are vague and add nothing to the page the general tone of the entire article is very pro jonathan morris with word choice and article structure seemingly designed as a promotion rather than an encyclopedic entry also why is there a quotes section people are starving for the love of christ the world needs priests the world needs good moms and dads the world needs good christians tells me nothing about jonathan morris,0 +please do not vandalize pages as you did with this edit to martin crewes if you continue to do so you will be block from editing toronto,0 +i have no desire to edit anything those who put up nonsense should be the ones removing it the reality is as it stands irreligion is associated only with christianity this is a serious pov issue and those who put the portal link need to address this question it does not logically follow that one group of christians views should lead to this portal link being placed in the talk page to the exclusion of all other religions it is frankly speaking an attempt to frame the article in a manner that targets one religion and that is not acceptable at all,0 +are you the stupid changes the cubans flag and put puertorrican that created it all and they do not created nothing your breasts the verga to us venezuelans peruvian and cubans abnormal mongoloid while there are educated people like tito puente bobby sanabria no one will believe your lies nobody believes anything swallow my verga gross,0 +thanks for the tip off on my talkpage i d prefer old disputes were left in the past which is where they belong rather than permanent records being kept of the merest thing it s disappointing that many of the presumably younger wikipedians on vfd feel differently anyway as i said thanks for the tip off i see you have changed back my changes to the mos i have left three queries for you on the talk page i d be grateful if you would look at them and answer them i would then suggest we do not re address the issue for a while and let other wikipedians add their coments kind regards dec utc,0 +userification of cooked tv hello darkside i have userified the article on cooked tv as requested please see speak to me,0 +i ve fixed the de la salle link it showed up as a notification for me because the dab page is one i created but looking at the article raises the much bigger point a navbox like that should not be part of the text of one article but should be a template added to the various appropriate articles i see you created the navbox so please sort this out see wp navbox thanks d,0 +so jezz gets to personally attack assume bad faith and violate wp policy by removing chunks of material from my own comment in an article talk page gotcha i do not accept your decision as valid fair or equitably applied i only wrote on jezz s talk page because he was violating wp policy and insulting me and undoing my comments on the article talk page and ignoring and disrespecting all the work and good faith presentations i made on the article talk page you agree iwth him removing chunks of my comment on the article talk page though wp does not allow that you re facilitating bad behavior on his part by totally ignoring it or not seeing it and singling me out in this matter very wrong did you even read what i wrote on your talk page i m not saying i was necessarily totally perfect in the edit situation time line or in my tone on the talk page my point sir is jezz has been far from perfect himself and has definitely violated wp policy yet you won t even see it or get on him for it or block him for doing all this you notice i did not personally attack doug weller or tgeorgescu why because they were civil and cool and you never gave me a full chance to even defend myself on the notice board page so i don t agree at all with your action jezz has been unquestionably out of line and you don t see any of his stuff on the article talk page or the nonsense and bad faith insults and accusations and negativity he hurled at me left and right why is that,0 +your warning was just a little late i ve already been block indef,0 +comment this article is a very poor advertisement for the technological competence of the students of the department please learn how to edit wikipedia articles before trying to create an article notice that the way to create a bulleted list is to use not indented spaces this article looks very untidy notice that wikipedia needs independent sources to verify the notability of the department look at other articles in the encyclopedia and copy their style d,0 +re flag desecration amendment greetings although plenty of cases involve sanctions of students i have not heard of an arrest for failure to salute the flag refusal to pledge allegiance to the flag or speaking contemptuously of the flag can you provide evidence of such cheers t,0 +done i hope to everyone s satisfaction i didn t try the irreversible history merge as the only author losing credit is me and i think that s ok also notice that desiccator was on wikipedia list of encyclopedia topics so we ve patched a small but significant hole in the coverage along the way apr utc,0 +you don t know what the hell youre talking about do you,0 +not be allowed to play the intercontinental cup even if they beat the south americans the reason the intercontinental cup was a european south american title not a world title,0 +that trashy mikkalai started to revert my own work and put racial trashy messages on my own space,0 +so i hope you will oppose any version of fr that would not have prevented this case as not being fit for purpose in just the same way that a retraction will be due from jimbo if he somehow comes up with a proposal that would not have prevented the ted kennedy incident i hope that you might also realise that if in your words the case here is thankfully relatively rare why many people would then think that applying a blanket measure such as flagged revisions is not very appropriate at all i contrast it as the british government contending every citizen must be forced to carry an identity card on the presumption that is the best way you can catch terrorists which happen to also be thankfully relatively rare why not for example in this specific case take a more intelligent approach and implement sopmething that prevents or flags any edit that adds the word molesting instead of forcing onto all blp articles an incredibly blunt and incredibly bad faith assuming measure and any interested observers please stop before you say it these valid concerns with what fr is could be cannot all just be washed away by referring to the quite irrelevant advantage of fr of opening up the tiny minority of protected articles and to further address the specific example you give maybe you can expand on why anybody would be likely to believe that one sentence claim when it was added to the article along with another sentences which at best hint at the whole thing being a hoax and at worst screams delete me now for being total wp bollocks we can also discuss how an editor in between the vandalism and your removal fixes the article for typos without noticing that it is complete bollocks even when one of the typos is a few words away from the molesting red flag a systemic failure perhaps and finally as an admin perhaps you can tell me why the ip user is not now block irrespective of how long ago the edit occurred incidentally the now famous bad account on ted kennedy was also not block imediately after his first edit was a blp violation on an unrelated article another systemic failure i m all for criticla analysis of cases fr would have prevented because they frequently pose more questions than they answer about the whole model of wikipedia never mind how we efficiently and intelligently prevent blp violations,0 +where are the details for the boycott,0 +question for agk hi agk you mention above that arbcom is anxious for nina to submit her evidence so that others can rebut it nina didn t open this case lhvu did he alleges that there is a sustained and possibly co ordinated campaign to have the wikipedia article reflect the pov of the anti stratfordians providing potential authorship candidates and one in particular presently an enhanced preferably equal standing within the article to that of shakespeare why is the committee not anxious for lhvu to provide his evidence so that whomever it is that he s accusing of engaging in this conspiracy can rebut his accusations bishonen has called for nina to be banned for at least a year why is the committee not anxious for her to provide her evidence so that nina can rebut it if i were you nina i d sit tight and wait to see what evidence if any is brought against you or anyone else as things stand there is no evidence and no case to answer,0 +throwing qualifications for justification of a certin pov is meaningless i can just as easily say that i work in finance am scottish and don a kilt every thursday to greet wee lasses along the mile does that make me right common sense people,0 +category flagged articles i have removed the category flagged articles from the message above it was flagged at least two months ago by some other editor but the current version looks ok to me ennasis,0 +thanks for the response i understand how to use awb and i ve seen many useful edits with it as you describe but i don t understand why line breaks after section headers specifically need to be undone is it something built into awb that you are agreeing to because it prompts you or is it something you added for a particular reason the reason i m curious is because i see people such as myself add a line after the section header in the edit window all the time and it seems inefficient if there is a guideline in the mos or somewhere saying otherwise thanks tree,0 +just wanted to let you know that i think you re a faggot find better things to do with your time,0 +yeah i think that would be better as a quote unless you want to generalize his point google books thought the wording was similar enough to match it to the corresponding paragraph in the book which is how my script detects plagiarism in articles,0 +replaceable fair use image ufc ortiztito gif thanks for uploading image ufc ortiztito gif i notice the image page specifies that the image is being used under fair use but its use in wikipedia articles fails our first fair use criterion in that it illustrates a subject for which a freely licensed image could reasonably be found or created that provides substantially the same information if you believe this image is not replaceable please go to the image description page and edit it to add without deleting the original replaceable fair use template on the image discussion page write the reason why this image is not replaceable at all alternatively you can also choose to replace the fair use image by finding a freely licensed image of its subject requesting that the copyright holder release this or a similar image under a free license or by taking a picture of it yourself if you have uploaded other fair use media consider checking that you have specified how these images fully satisfy our fair use criteria you can find a list of image pages you have edited by clicking on this link note that fair use images which could be replaced by free licensed alternatives will be deleted days after this notification per our fair use policy if you have any questions please ask them at the media copyright questions page thank you,0 +kane s secrecy quote from the article if the allied campaign were to be completed in red alert the allies would emerge victorious and the time line would instead lead into the events of red alert it should be noted however that this theory is in direct contradiction to the original tiberian dawn manual which states that nod is an african group in its origin making no mention of the soviet union whatsoever if the instruction manual was written by gdi then perhaps they were simply deceived into what the origins of nod were maybe kane planted information stating that it was from africa or maybe it really was from africa and kane s attempts to drum up support in the ussr were unsuccessful regardless it doesn t seem to conflict especially if it could be established that the manual was a gdi document and therefore biased and uninformed please go and look up the meaning of the word fiction sometime either by clicking on that hyperlink or by visiting an online dictionary the sooner the better to be perfectly honest as an aside the changes to the section you indirectly are proposing would trans late to a classic example of original research the section s current content is sourced through the referencing of several different publications and statements of various c c development teams rendering it fully verified,0 +re the shining you have repeatedly changed an image file with no explanation in addition to adding unreferenced and speculative information to the article please stop use an edit summary to fully explain your changes and do not add unreferenced information or interpretation thank you the fortyfive,0 +may utc interesting post to the sandbox i don t mind as long as that s the only place you do it you can also vandalize my sandbox if it becomes too much however do not change any of the content and please don t use any profanity royal court,0 +maybe it s just me but surely children writing book reports on themes can read the book for themselves thank you for not giving away the ending of the novel like the entry for tortilla flat does common sense has prevailed preceding unsigned comment added by,0 +links to time the correct links for record track times are to minute and second rather than minutes and seconds which have different meanings which you do not intend thanks,0 +i swear you re extremely stupid and oblivious open your eyes unless you need to see an eye doctor that is,0 +nope this is absolutely congruent with the material immediately preceding is relevant to how the campaigns treated the issue of jtp is relevant to the later section on jtp having a new c starting up etc the source is not only reliable it is succinct and does not use excess verbiage at all would you prefer that the emails end up here or just the facts as published,0 +please stop if you continue to vandalize wikipedia you will be block from editing talk if this is a shared ip address and you didn t make any unconstructive edits consider creating an account for yourself so you can avoid further irrelevant warnings,0 +thanks hi david thanks for taking the time to write such a thoughtful analyis at talk depoprovera and for reminding me it s guy fawkes i feel that i don t need to assure you that i will not be offended in any way if you restate your position from our earlier discussion re pfizer lacroix bmd in the current disputebut just in case please be assured that i will not it might actually be helpful to have other people than mastcell and i making the argumentsperhaps more input should be solicited elsewhere as well if not enough editors contribute in a week or two week s time i will be slow to respond disengaged on the depo talkpage in hopes of keeping things cool while still continuing to advance the discussion there is no hurry and deadline after all i don t know if you ve been following the discussion at emergency contraception but mastcell s first post to depo occurred less than minutes after the conclusion of this exchange it seems unfair to accuse him of harassment or wikistalking but it also seems to me that he arrived at depo already quite upset confrontational etc because there is even the possibility that there is a causal relationshipi e he is angry re ec page and following me to depo and dalkon shield to express animosity i think it is better that the depo discusions involve plenty of input from other editors remember remember,0 +why why it is that i can t drink water before getting a general anesthetic,0 +thank you for experimenting with wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia talk,0 +may we find out who is doing the article rewrite unless the article writers tell the truth about the cancellation remove the silly sections replicas conspiracies etc etc the rewrite will simply be inmates running the asylum again,0 +rumination also known as omar amanat is being creative indeed about many aspects of trying to promote himself and deny facts of a family nature about himself including his religion that he may consider to get in the way of his ability to promote his business interests when he claims that there is no reliable published source that states that he has two wives and this is slanderous if untrue he uses the phrase if untrue only because he knows he has had a wedding with sabiya amanat and a wedding with helena houdova while to date not having had a divorce from either of these two wives in any jurisdiction where the wedding ceremonies took place or where they reside,0 +how much of this page s content should be removed from the spaceway page where it originated with the addition of spaceway it was best to separate the material but should i go back and remove it as well,0 +so you want me to lie and say le grand did nothing wrong i think you should look through more of his afd comments many times he lists the don t destroy essay with wikipedia policies lumping those together with no clarification on what is what isn t the correct thing to do i m sure many people do click the essay and see it s opinion but there is others that just assume it s policy due to it being listed with a bunch of other policies i m not an expert on the unblock policy but i don t think this is part of it i see this therefore if you want to dig yourself out of this hole your first step would be to understand and acknowledge that grc hasn t been doing anything wrong this last year as very disrespectful to my views in general an admin shouldn t be posting like that period,0 +no idea what you re getting at this really isn t a big deal,0 +you will be reported too tx,0 +succession boxes for u s congress not sure this should be mentioned here or on the main project page but here it goes as i understand it this proposal is to standardize all existing succession boxes into one easy to use format if so the s par is innacurate as written it provides the us parameter as being for congress of the united states and sen for senate of the united states the united states senate is part of the united states congress along with the united states house of representatives if s par is to replace the existing u s senator box and usrepsuccssion box then the guidelines here and at s par should be changed to read us for united states house of representatives and sen for united states senate if this discussion is more appropriate elsewhere please let me know,0 +i was offering constrictive advice no need to react angrily good luck with everything,0 +http archive org details inspire magazine and other sources content is public domain as per primary authoritative source http archive org details inspire magazine http al malahem com and a variety of mirrors,0 +and here s a paper that suggests that seychelles aldabra tortoises are morphologically variable http w bioone org doi abs cc bitch,0 +please do not add inappropriate external links to wikipedia wikipedia is not a mere directory of links nor should it be used for advertising or promotion inappropriate links include but are not limited to links to personal web sites links to web sites with which you are affiliated and links that exist to attract visitors to a web site or promote a product see the external links guideline and spam policies for further explanations of links that are considered appropriate if you feel the link should be added to the article then please discuss it on the article s talk page rather than re adding it see the welcome page to learn more about wikipedia thank you a link to the edit i have reverted can be found here link if you believe this edit should not have been reverted please contact me,0 +hey so whos cuter for girls zac efron nick jonas joe jonas cody lindy cole sprouse dylan sprouse for guys miley cyrus demi lavato selena gomez sabrina bryan ashley tisdale vanassa hudgens brenda song let me know wat u think cheer girl,0 +chart position it has peaked at no on the bbhot so far as can be seen here so whoever keeps changing the main article could they kindly stop thanks,0 +deleted ask an admin to restore it i don t recall how far i got or even if it s better than what s in the main gw article,0 +just to let you know you have been mentioned at wikipedia missing wikipedians x,0 +request you look at user abd afd formula for conflict i ve written an essay on the afd problem in an attempt to delineate the issues and possibly to address them i d very much appreciate any comment you have time to give others who notice this are also welcome to comment and or edit the essay,0 +just because you find a source doesn t make it legitimate or encyclopedic and what about a spanish language flag are you showing the flag of spain our western hemisphere readers might not like that very well they went to war with spain just like we americans went to war with the british to get out from under that flag as it were,0 +that wasn t me i only post logged in these days,0 +cape town meetup hi piet i just wanted to let you know about and invite you to the th cape town wiki meetup at truth coffee on buitenkant st on sunday the nd of february thanks,0 +reverting to last known edit by me the article was vandalized a few days ago and is now being returned to its original state any users wishing to dispute the information should do so here if sysops examine the network log files they will discover that the vast majority of referers come from truth sites and the vast majority of exit links go to truth sites therefore removing that information was damaging wikipedia s reputation visitors are depending on wikipedia to cover the work that jones is currently involved in which of course includes everything relating to that was on that page using the ct term to describe theories is ad hominem and also not npov and therefore not civil anyone endorsing that type of thinking is not npov and ask them to not edit the pages as the zogby poll shows of america believes the government is covering up and want a new investigation including government officials possibly being involved for now on any vandalism or ad hominem remarks will be dealt with via official complaints using wikipedia protocol also even though my ad hominem remarks were direct retaliation i do apologize for them anyone using these types of remarks should not be editing these pages i expect anyone and everyone to be civil,0 +talk jun utc,0 +osli is wrong yet another time you stated that this statement is not in reference to the icty by seeking to eliminate a part of the bosnian muslims the bosnian serb forces committed genocide yet another time i am proving you wrong read here http w un org icty krstic appeal judgement krs aj e htm,0 +i know derex very well he has been stalking me ever since i wrote the campaign finance article months ago i tell him if he finds anything incorrect in what i write to help himself and fix it but he then ignores me and i find comments of his later on talk pages with vailed insults about spamming pages and calling me a zealot he is clearly a stealth idealogue who has no intention of making constructive edits his only goal appears to be stalking other constructive editors as for your statement that i am placing a relatively long fundraising scandal section into this article hogwash a short two sentence paragraph with a link to the main article is not a long section wikipedia rules clearly state we are to link relevant articles to eachother as the dnc was fined for illegal fundraising and many of its fundraiser were convicted of crimes this page is the most relevant page to link my article to an article by the way that has featured status and has been showcased on wikipedia s main page i am putting the info back into the article where it belongs i am not waiting months for some imaginary discussion to take place here no one reads talk pages and the few that would actually stop by will be partisans if you continue to delete factual referenced history from this article i will report you to the moderators good day,0 +false accusations of vandalism falsely accusing another user of vandalism is disgraceful behaviour don t do it again,0 +pov why is wikipedia deciding how many times he should have shot intruders why don t you just stop being what you re known for wiki bias just tell the facts,0 +i don t have time to wait for wikia support to reply please unblock i don t want to wait days hours to edit again just unblock me so i can edit on all wikias,0 +december,0 +down there are better adminstrator she didn t do a fantastic job other than moderating like she owns the place,0 +inkulab i find that you have contributed the image of the great kavignar inkulab i think his birth place is madurai do you know his correct birth place,0 +as far as presenting sources are concerned the book the life and exploits of alexander the great sites much more sources in detail than source which i think refers to some sources already referred by others as such it is as credible as its own sources and not whether the author is researcher of repute and printed by reputed publisher its credibility therefore lies in sources which are presented sparsely in the book perhaps perhaps not as far as the author is concerned in my understanding he himself suggested that the story of alexander that originated from egypt should be considered more authentic than others reasons given as it is hardly likely that their writers and scribes would hasten to record his history whereby they would also incidentally describe their own national defeat to these countries then we must not look for the original alexander story similarly we must not look to the states of greece for it because at the death of alexander the memory of their subjugation and the victorious deeds which he wrought for the glory of macedon would be too fresh in the minds of their peoples one country only could be the birthplace of the alexander story and that country was egypt i am not sure if the general discussion is driven by this very idea i e keeping the alexander story from egypt as authentic which the scholarship of the author has indeed explained so well along with origin of other sources especially ones from greece that perhaps dominate current understanding this according to me forms one of the essence of the alexander story and i hope someone clarifies which story is the egypt story in the said book which i myself is unsure for i don t have that experience and skill to tell out the exact parts off egypt origins at the most i can only hope that someone will research into the alexander story from egypt and not his fanboy fantasies from greece to put forth a credible understanding if not already done then perhaps someone can put up that as reliable secondary source on the internet and can be referred to here,0 +my main objection is against moravia was ruled by holy roman empire which is not true talk,0 +we have a color for altaic just as we have a color for other non genetic groups such as papuan and american in order to keep the number of colors at a manageable level but most linguists have never been convinced of the validity of altaic as a genetic group and the majority of linguistics simply view it as a sprachbund i doubt that further research will reveal anything more convincing the notion of altaic has been around for something or more years and has failed to convince the majority of historical linguists in that time it s not like we re dealing with unknown languages and simply lack enough data altaic is likely never to be demonstrated to be a valid genetic grouping,0 +i am not a sock puppet i am just good at what i do so dont get confused thanks genious of wikipedia s editing,0 +answer to confused the answer is that the problem occurs in the upper thigh and pelvic region but the pain is felt in the knee for instance the tightness and scar tissue for me occurs on the butt but the pain is in the knee,0 +it is not as a memorial to these people it is to ensure a thoroughly balanced coverage of the event i have created,0 +i ve been advised that this place is not a battleground i have nothing to hide but please even on your own talk page stop pretending that you have nothing to hide these creeps will turn on you you know that and once again i m asking you to refrain from your false and inflammatory remarks i am harassing no one i m bothering no one so post productively or shut yer trap we all have a right to edit here,0 +shmayo i already know the map from john speed but this far away from being an evidence that the suryoye suraye called themselves assyrians or considered the ancient assyrians as their ancestors the deutschen don t call themselves germans germanen or alemanes alemannen in their native tongue and it s not the first time that the word suryoye suraye was mis trans lated into assyrian by outsiders missionaries and colonists do you have quotes or chronicles from nestorian christians before the th century and in their own words which shows an ethnic assyrian continuity the syriac orthodox church has quotes and chronicles which goes hundreds of years back where they equate suryoyo with oromoyo in their own words interestingly the arameans from maalula who are either christian melkites or muslims call their aramaic language dialect also siryon or loghtha siryanoytha aramoytha which is a result of greek christian influence on the arameans the word suryoyo which literally simply means syrian in english is rather a religious term similar to maronites catholics or melkites nevertheless words can change their meanings in course of history even if the word suryoyo derives from assyrian ot doesn t change the fact that the arameans where also known by this name,0 +managing the content of articles when a plant product whether food or other is not in a relationship with botanical taxa is always a problem here it seems clear that a separate article on the plant product is the right approach there s bound to be some overlap with genus species articles this article seems to me about right in its focus on what english speakers normally mean by banana namely the food where it comes from what it is how it s grown etc it would be possible to move some the taxonomy material to musa genus perhaps with some cross referencing so that the article concentrates more on the food and agricultural aspects of the topic but this would be a marginal change,0 +simple trans former substations directly the electricity from public networks leaving the syntax aside i am unsighted with regard to public electricity supply networks in hence the cn tag,0 +please do not add nonsense to wikipedia it is considered vandalism if you would like to experiment use the sandbox thank you,0 +astoria boulevard hoyt avenue shelter jpg the picture was taken at astoria boulevard not astoria ditmars boulevard i frequently confuse those two stations because of their similar names you can correct the description if you want,0 +i have cleared the trivia section from na callsigns article mar utc,0 +plus many of your are non reliable self published books not all but many,0 +you don t need a specific section for style and influences to get the article to ga status you just need that information in the article period the closer you get to fa status however the more it s recommended and possibly necessary,0 +not vandalism this user finds censorship offensive well isn t that what you are doing in david s case,0 +oh really can t blank my user page huh then why does wp policy state however reverting such removals or redirects is not proper and may result in a block for edit warring there is nothing of significant importance that i ve removed from my user talk page and i ve been following wp rules strictly by giving me a warning that is completely unwarranted as i ve stated above you re being hostile and i will give you a warning again if you attack me without contacting me for details of w hate ver i may have done as that s uncivil i ll remove your warning and not give you one this time but read up on wp policy and discuss what s on your mind before jumping to conclusions and placing unwarranted warnings,0 +hello this message is being sent to inform you that there currently is a discussion at wikipedia wikiquette alerts regarding an issue with which you may have been involved thank you,0 +if we reopen that discussion would be happy to vote merge,0 +where s the obama quote luke i mean trayvon i am your father it seems pretty relevant to include that the one term president of the united states basically said that he was this guy s baby daddy,0 +how this article can shine a big problem here is the lack of references even stuff that is true needs a reference cause how is the rest of the world going to know whether someone just made it up here are ways to combat this use information from the school s website yes the school s website suck s but there is some info there use information from the local newspapers the trib chron and other local publications use information from the school newspaper yearbook and literary journal the great thing about this is students can get things in here that otherwise would go underreported these all have editorial oversight so they are reliable as far as wikipedia cares unlike a student s blog unbeknownst to many there s also a book all about skyline called skyline sportswriter tim keown is the author he followed around the basketball team any skyliners interested in improving this page might go check it out at the library,0 +the description of the page is ad why the description of the page is the description of one of the external links isn t that spam,0 +note this section is clearly intended for conversation between john and i zad won t move or let me move his comment below out elvey,0 +unblock requests unblock reviewed sorry for my blurb here i went in detail elsewhere if an admins reviews the complete history of astrotheology they will notice that i ve been patient while i had to deal with other editors extreme language at me that creates a very stressful situation please see here for outside opinion i did not use the same kind of language against hrafn and he had no right to immediately jump on my case while i added content to the article i was the only active contributor to that astrotheology that was adding content to it even before the afd process i noticed it was a stub and started to add content how am i being disruptive to other there when there was no other editors that wanted to contribute i even listed potential sources on the talk page that had mentions of astrotheology others could have reviewed them and find if they had anything worthwhile if they actually wanted to be an editor of astrotheology and add content hrafn on the talk page even labeled me as an atheist and other categorized pov pusher it is obvious he was against something but that something wasn t me like he thought and he couldn t believe otherwise or choose not to somehow this went from something that was just a little beyond a content dispute because of the harassment i got from hrafn to where durova stepped in and it went directly to arbcom she did ask about pastordavid but i looked and i left evidence on an i of why i didn t accept his offer that is not a refusal to dispute resolution that is seeing that the one who offered mentor made a questionable vote on an afd i felt another mentor mediator would be best personal attack comment redacted by if you look however i did ask on the talk page for astrotheology to hrafn about rs n over the physico theology book he didn t answer at all to that question but he went on to despise me instead with more egregious misintrepretations as for the previous dispute resolution attempts before that durova noted those weren t because of disruptive editing i never caused anybody to leave wikipedia if you seriously think i did it would be more appreciate if you mentioned that evidence to support it than just baselessly blame me the previous mediation was recommended by a mentor comments redacted by i hate the show the mistakes she made also we aren t all knowing saints of wikipedia policy from day one why did she even bring it old beginnings back up the computer science related one was dealt with differently since it was called unfair why i got block before after unblock the consensus continued and it still sustains today if i truly was trying to disrupt like durova claims don t you think a intentional disrupter would stalk her and revert her edits and such all along comment redacted by it would be a test to see if she requests unblock but since she made it clear on my talk page she never want to see me again i really doubted her olive branch i deleted a section here on my talk page of her vanish forever bit i simply did not reply to her comment redacted by you can argue all you want that i changed the section title which policy does allow for neutral view comments redacted by when arbcom said this is obvious i truly don t think he meant to block me the obvious answer is let the community help offer to help mediate i saw absolutely no other offer to help mediate besides pastordavid s however i sent an e mail to ask her why why why but now she is calling it obscene and offers to show it to any admin if you read it comment redacted by like i said on an i decline reason not only has the user not apologized for obvious bad behavior but has offered further attacks and emails with multiple four letter words the g d word primarily to his opponents i see no reason to unblock the consensus of the couple arbitrators who looked at this was that this was something the community should handle and the community has handled june,0 +about the syrian civil war map edit the map if it is incorrect but don t delteit this war don in the libyan civil war article,0 +viriik so vote on a consensus on a questionable and corporate watchdog site the problem is that you are giving more validity to a person managed website that is hardly corroborated than a credible site like global security federation of american scientists cnbc yahoo that website does not belong on the site i would accept controversy but the problem is that it needs to be corroborated you can t put a website that accuse dick cheney of a secret plot against the president based on a site like rense for example you want to support lunancy this isn t your soapbox to do so,0 +diverse views means editors with a variety of perspectives and general outlooks experienced means the person in question has been around for a while is very familiar with policy and has some experience with related topic areas with a bit more focus and structure with the involvement of a few experienced hands will make it much easier for uninvolved administrators to decipher what s going on and identify disruptive editors if i can further clarify or answer any other questions please let me know,0 +pm st march,0 +it was a positive review i don t think you read it you cherry pick one line over a is this neutral milton s book is the third by a science journalist to question neo darwinism the other two being by hitching and taylor both mentioned in the article spanner further says he does not by any means cover the same ground as taylor milton also mentions this on his website about taylor being a science journalist and questioning neo darwinism before him of course you wouldn t know this becuase you don t read books by milton i have seen your edits on milton s page you seem to be under the impression he is a creationist if you bothered to read his books you would see is is actually a neo lamarckist milton has been misrepresented here is what spanner says about milton he writes well forcefully and with conviction this book is well produced did you forget those bits on a side note who is david spanner hes a fundamentalist christian who trained as mainly a physicist he was not an expert on biology he mainly wrote about thermodynamics and religion of course he would of disagreed with some of milton s views becuase milton is non religious here is douglas spanner douglas spanner,0 +i was going to suggest that too may i also recommend taking a gander at the infobox firstmark credit union branch locations at the bottom of the article thanks,0 +why are you asking here since you are a member of filepile there s an interesting discuss thread you could ask this in,0 +rookie list hi i was just wondering if ben newton was on port adelaide s rookie list,0 +expansion hello i m in the process of expanding this page as i just created it it is currently a stub but shortly it will have more encyclopedic information thank you talk,0 +new c c movie heres the link to c c s gdi gameplay movie i know you and the rest of the rts world have been waiting for this i ll give you the honor of linking the c c page to it i don t mess with that stuff http w gametrailers com player php type wmv id,0 +you know how to request a citation you certainly had no problem doing it here why are you suddenly so hesitant to mark it as needing a citation,0 +please do not question good faith or personally attack other editors as wp blp clearly states the responsibility of proper sourcing lies squarely on the shoulders of the person wanting to include the information all editors are required to remove this type of information when they see it from both the article and the talk page with out any discussion these rules come from the very top in response to recent events,0 +i did not know that erbacan was also in the turkish government in in any case every turkish politician is within the kemalistic ideology since noone criticising or rejecting or judging this ideology but they all accept it taksim can as well have this link the megali idea was not that simple as establishing a greek state that covers all the greeks as u said the greeks of pontus southern italy former southern serbia modern fyrom eastern rumelia alexandria cyprus where excluded yes megali idea shares similarities with enosis that s why the link is present in that article but adding megali idea and excluding kemalistic ideology from taksim seems at least weird cause kemalism is much more relevant with taksim than megali idea could ever be regards,0 +rename aussie film list index sorry i m on the fence with that one index and resources kind of longwinded to me difficult to get to easily without redirection but i completely agree with you as to what the page is it s partly disambiguation and not useful for much else except for the links maybe also although controversial as to what to list the page could summarise the influential films for that country in a concise list of around top films of notability or really made an impact on culture but then i guess that s what the cinema of australia article is for yeah i m not sure about that particular title but i think it might be better to steer it into something maybe it should just be a disambiguation page and the links and resources might be better suited on the cinema of australia page,0 +dowager empress cixi is a correct title can you deny it although it is somewhat less common can you say it is wrong,0 +marnanel your talking nonsense there is no dispute in the real world money magazine wrote that article after complaints were made is now out dated stevensons legal battles have been settled for some time all the text vary from each other which is reflected on the page there is no dispute between powers and myself her attorneys were contacted and since then her products have reverted to her particular text only the problem was these people thought they could cheat me and they got caught now they have suffered terrible embarassment over it the matter has been resolved and i am not willing to sacrifice my legacy with the public hog washing these stories enough is enough money magazine never interviewed one single author for that story my legacy does not revolve around money magazine but my authorship and if you want to present the footprints poem in the wiki you must show the chronology of the poems history what is it that you need to present reliable source to this article be specific i removed my published book from world wide marketing is that enough proof of authorship for you if so then see authorhouse for details or contact me thank you carolyn joyce carty,0 +hello gfoley something random,0 +well they are used in all the heart of midlothian fuck and rangers fuck articles that i edit and have been used in both cases since before i joined wikipedia if you have a problem with them take it up at wp footy i will happily remove them if there is a consensus at the project that they should never be used cheers scot,0 +error in lindeberg condition i suspect the lindeberg condition in the section discussing non identically distributed random variables might be incorrect possibly there should be an average instead of a plain sum or someting like that i suspect that in the current form the condition is essentially never satisfied not sure about this though i ll check this if i find the original reference,0 +please let me know reason for reverting it back as there are so many private universities are with you on wikipedia the college deserves to be shown on wikipedia as it is the only college in distrcts and south haryana which is a major destitute area i am thankful for your heed and give the page opportunity to the world to edit not alone by you may be you are at distant place and it has importance in haryana state of india,0 +template infobox network hi i ve restored your version of the code for the template header so that it appears within the infoboxas is standardrather than above it this and adding a couple optional info lines has brought me to the limits of my coding ability request is it possible to further modify the code so an editor has the option of employing the infobox without using a header at all see for example the use of infobox biography in henry cowell when i attempt this with infobox network that is either erasing the name line or leaving it blank under any of the recent iterations of the header code it leaves a little rogue vertical mark in the linespace above the logo image insteading of eliminating the linespace altogether test for example in mutual broadcasting system the article i m currently working on thanks very much best dan eye of london contact me are you the one who own s the pic of the eye of london if so i would like to talk to you about the pic and possible contact me at danlt verizon net as soon as possible regarding this pic sinncerr danny the preceding unsigned comment was added by orphaned fair use image image boddingtons png thanks for uploading image boddingtons png the image description page currently specifies that the image is non free and may only be used on wikipedia under a claim of fair use however the image is currently orphaned meaning that it is not used in any articles on wikipedia if the image was previously in an article please go to the article and see why it was removed you may add it back if you think that that will be useful however please note that images for which a replacement could be created are not acceptable under fair use see our fair use policy if you have uploaded other unlicensed media please check whether they re used in any articles or not you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any fair use images not used in any articles will be deleted after seven days as described on criteria for speedy deletion thank you this is an automated message from london portal quote is there any system which decides changes to the london portal quote or can anyone change it talk since there aren t too many london quotes would it be a good idea to start using the random portal component template talk i do know how to use it all it does is every time the page gets purged or reloaded the quote changes the currently used quote is the last one in the wikiquote collection talk greater manchester dynamic map hi i m working on a fresh dynamic map are there any requirements for this resolution size format etc that you have so that it will be compatible are their any preferences in colours and features do we want major roads motorways and or rivers included is there a standard hope you can help if you could give me some feedback for image greater manchester outline map v png as a possibility i would be very grateful i have the master copy which has each feature stored as a layer which have have instant colour changes or be made to disappear any issues and i can easily address them for you thanks hi thank you for the feedback the lines y,0 +redirect talk moldovan cyrillic alphabet,0 +although it wasn t completely clear we re talking about which reporters should be mentioned in the lead section i hope everyone can agree we re not going to list every reporter who has touched the snowden docs the question is only about who makes the cut as most important i m in favor of greenwald poitras and macaskill whereas it appears brian is in favor of greenwald poitras and gellman,0 +thank you so much nishkid however i can t formally thank you on your talk page for this reason yes i did try to dodge the block and i apologize if i can get this lifted i can participate back in editing i appreciate your time for whomever reviews this,0 +re disruption please don t think me rude or take offence but i have to ask this are you trying to blackmail me,0 +name since we re not obliged to use official names per wp commonname it should remain at its current title notwithstanding an ongoing letter writing campaign by a certain individual that seems to have found traction on here b al na bl gets result on google books a similar search on all of google returns a dearth of reliable sources the main use of the term is in lyrics to a song,0 +what do you mean where did the albums formats disappear,0 +empowered by amnesty and reward there is a brand new arbcom opened up against coffee a precursor of the disruption and drama and utter contempt that editors will now have moving forward mr macdonald cannot have it both ways he cannot show utter contempt for community consensus intentionally creating drama and disruption then two days later attempt to create community consensus as i wrote in the arbcom arbcom sent a powerful empowering message to editors like coffee by giving them amnesty our community rules don t matter and administrators will be forgiven and rewarded for blatantly breaking our community rules as i learned in the kww rfa if editors say a blatant falsehood enough times it becomes truth already people are stating that no rules were broken in the rfc blp when no one could argue that rules were broken and i argue they were broken with utter contempt excuse me but i have an administrator to desysop you will be happy to note that my focus on scott will be minimal in the next few days as i focus on coffee s rich edit history i look forward to your comment supporting coffee in the arbcom frank andersson revisions restored an olympic medallist for fuck s sake,0 +organizational and grammatical problems throughout can you give any examples i am always anxious to improve the quality of articles,0 +i m not a guy or some kind of conspiracy enthusiast the story below is from my website w valleyscanner com http w valleyscanner com index php option com content view article id adaily show dude catid ablog category itemid i spoke with the nypd press office for confirmation they were quite forthcoming with the facts of the case kevin dougherty staff valleyscanner com,0 +reply thanks for the input i will correct the urls and the terminology tomorrow i was under the impression solus operating system was a linux distro and not to be confused with what has a page on here called solusos are you that same project if not which i think is the case i can set it up so this page redirects to a new page with the same article blanking this one called solus operating system so long as that is available if you would prefer right now to not have a wikipedia article i ll gladly comply with your wish some organizations don t really want to be on wikipedia for various reasons anyway i am enjoying your os if you get around to it could explain to me what makes solus its own os rather than a linux distro also i understood that although you use budgie gnome is behind it when i look at details in solus it says gnome x x also my name is being changed to spiffyanarchist fyi,0 +a beer for you good work your doing well,0 +help can someone please undo the or being added by an ip to almighty vice lord nation,0 +merge with the logrus and the pattern neither the logrus nor the pattern is sufficiently independently notable to justify its own article as such these two articles should be merged here,0 +how is this different from an inverted roller coaster,0 +still fails to satisfy a and with insufficient commentary prose issues still exist including some examples from the previous fgan and the newly added section lacks clarity this analysis of the case of the current law does the text endorse the analysis as the current law something else failure to satisfy these criteria have led me to fail this article again if you feel that this review is in error feel free to take it to good article reassessment,0 +men i really like men,0 +not a problem sorry for the inconvenience and thank you for the notification and correction,0 +wikipedia is not amazon for some reason up chuck sirloin continues to revert changes to this entry be advised that the entry is not to sell books the books are listed but full descriptions of poorly selling books are not appropriate up chuck has also violated the three revert rule,0 +for this exact sort of behavior,0 +well will u accept links to pics i have pictures of him teaching a classroom and of him wrestling at local evetns i e local wrestling events,0 +happy first edit day and holidays happy first edit day from the wikipedia birthday committee have a great day is wishing you happy holidays talk contribs wishes you a merry christmas and a happy new year with all of your family spread love during this times i created a video specially for you wishing you the best for this christmas time http w youtube com watch v fxoavunbt o spread the holiday cheer by adding subst user misterwiki happy holidays to your friends talk pages talk contribs,0 +my rfa thank you hello steve block and thank you greatly for your support in my request for adminship it passed with a final count of i am honoured by the community support and pledge to serve the project as best as i can the republic restored,0 +my two demands are leave the flagship alone on the tech page and lnnzman has got to drop the dumb fake british thing cheers,0 +of course only you may decide isn t that right tom north shoreman,0 +i think that it should be added right after the section about stamp catalogues thenachoman,0 +what exactly did i do wrong sorry but all i did was tell the truth i put reliable sources i m getting fed up with people not getting it that the season was not released in the uk,0 +deletion discussion about shiv ram park hello mj foru and thanks for contributing to wikipedia i wanted to let you know that some editors are discussing at wikipedia articles for deletion shiv ram park whether the article shiv ram park should be in wikipedia i encourage you to comment there if you think the article should be kept in the encyclopedia the deletion discussion doesn t mean you did something wrong in fact other editors may have useful suggestions on how you can continue editing and improving shiv ram park which i encourage you to do if you have any questions feel free to ask at the help desk thanks again for your contributions k r o,0 +aw thank you dear peacent it s good to be back take care talk,0 +no it is a lie because i did not engage in any edit war nor did i game the system you refuse to acknowledge the overwhelming evidence against your claims and this is why i accuse you of bias,0 +vandalism let s be honest without vandalism wikipedia would be downright boring people like me give people like you something to do we make you feel like you re actually making a difference cheers i hope you have a great day,0 +duesberg did not initially put forward the drug aids hypothesis get your facts straight,0 +cherian has smiled at you smiles promote wikilove and hopefully this one has made your day better spread the wikilove by smiling at someone else whether it be someone you have had disagreements with in the past or a good friend go on smile cheers and happy editing thanks for your kind words and sweet offer sorry to dissappoint you but again thanks cherian smile at others by adding to their talk page with a friendly message,0 +ok got him at least he makes it obvious,0 +izzy gomez how come you suggested speedied the real person named izzy gomez but did nothing to the character from tuggs that used his name for a cartoon if a real person exists and can be substantiated by numerous references who are you to suggest deletion of the submission,0 +cambridge meetup november another cambridge meetup is set for the afternoon of saturday november please contribute to the page and come along if you can,0 +coordinator slot open due to an unfortunate recent episode in which eco was indef block and then retired for real life harassment we have a coordinator slot open see discussion here cheers converse,0 +http w nida nih gov pdf monographs pdf search testing for drugs pg dr chenar the autopsist had failed to originally do a drug screening his initial diagnosis of the tumor was that it was an astrocytoma he then started preparing the body for the autopsy no blood or urine specimines were kept but then this will be considered personal research i never said we subwayjack,0 +any specific reason you wish to have this information please keep me informed about this and any other information if you need from my end he has two sons and daughter in laws although i have not got direct contact with br bhagawat s legal heirs but there was a news about his wife s sad demise in nov the link of the same is provided below so you may check this http archive indianexpress com news childrens writer leelavati bhagwat passes away in pune,0 +life vs good behaviour this article needs a lot more citing in general however this recent edit seems problematic it needs to be cited or better amplified to say something like good behaviour us constitution article section second sentence which is effectively life there are many sources for the constitution here is one i found emory law library hope that helps t c,0 +looking for a conversation we had wanting to re ingnite an argument long since resolved but can t find it or maybe you just want to read what i ve said so that you can use it in a fresh argument against me maybe you re a scientist doing research on how a yr old workshy yorkshireman interacts with a a and a when discussing very trivial beatles related matters using various and increasingly confusing pseudonyms then why not look in my archives they re full of hilarious altercations i ve had with friends and critics and will keep you entertained for hours why not try the random discussion generator by entering an archive and choosing a random heading then reading the relevant text it s pot luck madness or maybe you re a publisher looking for a new form of coffee table literature with a view to making one lucky stubborn and argumentative wikipedia contributer a household name look no further god has smiled upon you this day i am your man more likely you re an admin looking to see how many times i ve been block before so you can give me a really big block becuase i ve called a fellow wikipedian a fuck ing useless tosser i ll kill you let me save you some time i have never once been block yes that ought to do what a good cover,0 +why is there no mention in the article about love hurts it was a big single for the band but other than it being listed as a single there is no information about it in the main body of the article,0 +yes and i notice some sources call the antilopine wallaroo a antilopine kangaroo the wikipedia as it stands has a seperate article on wallaroos which lists the differences from kangaroos so i don t think it is really worth changing my encyclopedia and the wikipedia both seem to use one r in forester talk,0 +there s no policy against homophobia or saying i have to accept my posts being edited i ve never met a smart admin but you re admitting that you are doing this because of the homophobic nature of i suppose saying someone might be a dyke personal attacks are one thing though it s not the case that admins can revert them in any special way but taking a position against homophobia is going past your very limited brief this doesn t concern you it s not a repeated or serious personal attack i simply don t accept my posts being edited,0 +he edited without a valid talk page discussion you would have slapped a tag on the page i merely indicated that his argument was based on an ad hominem and removed the edit i wasn t looking for an editor who agreed with me i was looking for an editor who would spend more than minutes researching the subject and making a snap judgement the third party source i included indicated that underwood had posted regularly to alt slack and the newsgroup post that is undeniably by ivan stang his ip his style his sense of humor responses to his post by other church members serving to indicate his identity demonstrated that underwood was a subject of levity in the church the third link i included had several dozen posts between underwood and church members the third party source indicates that these posts were by underwood therefore they are verified by a third party source you just were too lazy to bother now you re too irate to bother either way my respect for you as an editor has kept this all on the talk page despite your lack of research on the subject,0 +is this what you wanted to show,0 +find such a reputable scholarly opinion and present it and it will be integrated into the article you can t just invent an opposing opinion and expect that it be presented in an article with equal weight islam is peace is a well studied aspect of islam we can t just say but some scholars assert that islam is war it s not true and even if there were some wp fringe source making such a claim we don t put wp undue weight on it,0 +paperclips you mean stubs surely sorry butting out now,0 +done thank you very much for your time and advise i ll log out now so as not to bother the usurpation process,0 +well i ve been trying to do some google searches and frankly almost every single hit is based off of the imdb page i d rather stay on the safe side of things and keep her off considering there isn t any information on when she even attended the school just giving you a heads up,0 +please do not vandalize pages as you did with this edit to skr ling if you continue to do so you will be block from editing gabsadds,0 +i ve used the method i proposed for handling the naming before on hey jude but i ll admit that it s not always the best solution i m sorry i don t understand could you please explain what you are proposing also soz if you thought i was having a pop at you calm down man no need to get stressed it s just an enyclopedia,0 +please do not vandalize pages as you did with this edit to never bet the devil your head if you continue to do so you will be block from editing martin talk,0 +origin of the kutrigur huns roman historians themistius claudian and later procopius called the huns massagetae the world of the huns otto maenchen helfen page but considering that themistius claudian and later procopius called the huns massagetae the huns were called massagetae also by ambrose ausonius synesius zacharias rhetor belisarius evagrius scholasticus th century and others alexander cunningham b s dahiya and edgar knobloch identify massagetae with the great yuezhi da yuezhi ta yue ti great lunar race ta gweti massa getae dahiya wrote about the massagetae and thyssagetae these guti people had two divisions the ta yue che and siao yue che exactly corresponding to the massagetae and thyssagetae of herodotus dahiya thyssagetae who are known as the lesser getae correspond with the xiao yuezhi meaning lesser yuezhi sino platonic papers number october page http w sino platonic org complete spp getes pdf,0 +no seriousy the only thing i think actually did or said against your precious wikipedia policies was saying that if i really had my way half of you would be shot ignoring for a while the fact that i was obviously joking it happens to be my religious belief that the human race on a whole would be much much better off if of the population died tomorrow that doesn t mean i go around killing people or making specific death threats against individuals and don t you actually have the sense to realize that if someone says oh my god you are such a fuck ing idiot just go die already that they probably don t want you to die or more accurately they don t care very few people actually have the emotion required to sit and pray for the death of another person or group of people and i am not one of those people if you really wanted to show off what a horrible and insensitive person i am edit which was on a wiki talk page is probably not the best granted nothing pisses me off more than people who see letters like and and automatically assume that w hate ver is written is russian the cyrillic alphabet is used in many slavic languages as well as central asian former soviet republics and even mongolia so i called someone an idiot boo fuck ing hoo maybe he could have said what language is that instead of assuming that it was russian however insulted he was by me calling him an idiot i can guarantee you that i was at least times as insulted by him calling that russian i am a proud native russian and will not have my culture besmirched with these allegations your other example how i am a bad contributor is what a spelling correction or was it the fact that my edit summary was how i felt about the sad fact that nigger s can t spell don t even think about raising issue of my use of the word i live in harlem around here that word is used like a comma and before you try to tell me the difference between nigger and nigger there is none it s called a dialect while for some purposes it makes sense to write things phonetically as they are pronounced by the person saying them i find it is usually clearer to spell properly also a nigger to me at least is not a black person i am not a racist i do not even draw distinctions between people in my holy opinion there is a nigger inside of all of us people like you for instance who take offense for no reason i mean was saying black people are stupid and i think they should be marginalized in society tarred and feathered strung up on trees dragged through town by their enormous wangs etc no and if that is what you heard i d like to know why are you black of the black people i know personally use the word nigger more than i do are why we as a society still can t get over the silly idea that words are harmful words are not harmful ideas are harmful one particularly harmful idea is that certain words are so unspeakably horrible that nobody can be allowed to say them for any reason at all you want to end racism forever stop freaking the fuck out every time you see the word nigger seriously i happen to be a priest and a docktor and saving humanity is just one of my many responsibilities fuck s like you make me hate it but i still do it that s what a good person i am i forgot what else i was going to complain about i mean i could complain about everything on wikipedia not because i am uncivil but because there are enough wikipedos to make this community unbearable for normal well adjusted individuals such as myself if you look at all my page edits they were all good for the encyclopedia ok there was one tiny exception a long time ago i saw someone changed a caption on scottish fold to winston churchill someone else reverted it and i reverted it back i felt it was an appropriate caption to that particular image but everything else was beneficial to improving the quality of the content i may be a little hard on people who are hung up on things that are wrong but i only do what is right that is why i put it on my user page i don t do wrong things if you try to argue with me you will be in for a world of hurt butthurt to be exact but you have nobody to blame but yourself unlike you i actually warn people first but no you fags have to be humorless oversensitive fascist wikipedos with your unwarranted self importance and your administrative powers well you can go fuck yourselves if you ever succeed in getting all sand out of your vaginas i joined wikipedia because i wanted to make it better and that was all i did but i guess you cunt s actually enjoy bathing aro,0 +meh as long as it s well sourced but everything at this point is sources say or allegedly accused of so it s very difficult to verify speculation really,0 +aces since the ip editor who keeps clammoring for this item s inclusion seems unwilling to do so i thought i d bring this to talk does anyone else besides this ip think the aces rivalry merits inclusion in the article i just don t think we need to include a blog based fued between fans of teams who have never even played each other merits inclusion i understand that it was in some seattle papers but lots of things are in lots of papers i dunno hopefully we can get some discussion going in lieu of the edit war alpaugh,0 +a tag has been placed on nau company requesting that it be speedily deleted from wikipedia this has been done because the article seems to be about a person group of people band club company or web content but it does not indicate how or why the subject is notable that is why an article about that subject should be included in wikipedia under the criteria for speedy deletion articles that do not assert notability may be deleted at any time please see the guidelines for what is generally accepted as notable and if you can indicate why the subject of this article is notable you may contest the tagging to do this add on the top of the page below the existing db tag and leave a note on the article s talk page explaining your position please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would confirm its subject s notability under the guidelines for guidelines on specific types of articles you may want to check out our criteria for biographies for web sites for bands or for companies feel free to leave a note on my talk page if you have any questions about this,0 +file madampi jpg listed for deletion a file that you uploaded or altered file madampi jpg has been listed at wikipedia files for deletion please see the discussion to see why this is you may have to search for the title of the image to find its entry if you are interested in it not being deleted thank you,0 +vfd man you must be joking how can three letters vfd be misleading and irritating mar utc,0 +the anti vandalism barnstarfuku,0 +all christian wikipedia should be christian and thats final if you were real ly a christian you would think so too but you had a kid at so your really not a christian anyway,0 +tom birchall is bi bold text,0 +name of georgia i recently edited the section about the etymology of georgia to reflect the fact that there is no definitive theory as to the name s origin my changes were reverted and now the section is back to the version with questionable assertions and weasel words such as probably may be clearly presumably etc it is not the prerogative of wikipedia editors to create a synthesis of different theories to reach a single probable clear or presumable conclusion for this reason i would like to rework the section in the following way which i think is appropriate given the divergence of theories any additions or suggestions are also welcome,0 +everyone in southwest connecticut is a ny sports fan boston suck s we know better we re less than an hour from nyc and like from boston we re not traitors to our local teams,0 +hipocrite you reverted the references i needed after i put a polite not here the section is as near npov when i ve finished it as we can get here it has taken into account all recent chat traffic including the ani masonic stuff you have a very high hadded use of your power proved qed but have added nothing constructive how about reporting yourself,0 +utc i won t delete it enough that i ve pointed out its flaws i don t think such a straightforward counting as mine needs representation as a box i ll just bold the tally talk september,0 +well there was a hot war going on in the background of tyold the konfrontasi the whole living dangerously line was based around sukarno s words ushering in of hot conflict against malaysia uk etc but on the point of indonesian civil war at least at the beginning of there was indeed some combat between the g s forces and those loyal to suharto i m of the opinion that the period of combat was brief and that after jakarta was seized by nasution suharto loyalists the casualties were very lopsided hence why the pki s central committee in exile called it just a white terror but of course however the same group criticized aidit for not adhering to mao s people s war doctrine so one could imagine that there were those sectors of the pki that were spoiling for a conflict hence i titled it indonesian civil war rather than indonesian white terror or indonesian coup it keeps things npov and open to different scholarly interpretations by i should point out that i have an interesting hard copy self critical document the pki central committee published from china detailing what they perceived as their mistakes in and attempts to re establish the party unfortunately it is without copyright information printed this was likely due to attempts to get around import restrictions during the u s cold war i am looking forward to contributing some choice quotes to round out indonesian civil war at any rate toodles,0 +wiki assignment this is chris nelson my username is ctn i joined group and the edit i made was on the page for the show the adventures of pete and pete,0 +that s a good idea assuming someone from the relevant jurisdictions is prepared to take on the work i agree this is useful information but that this article would be swamped by a complete list for the uk for example i think it would be fine if this article just listed w l r aller and each of the current series of the official reports the rest could be in the new article,0 +may utc that is precisely the point,0 +unprotections i was wondering what you thought of this idea i think it would be a good solution to situations like steve irwin so that you can unprotect the article but make sure someone is watching it if you don t have the time or inclination to do it yourself,0 +were those russian tourists by any chance drinking just a guess,0 +i just tag it so some administrator can delete it talk,0 +the thing is the gay rumors whether true or not have pretty much become a defining characteristic of kordell s career it would not be encyclopedia worthy to say stewart is probably gay but it is worth mentioning stewart has had to deal with accusations of being homo sex througout his career including something like that isn t passing judgement on homo sex ity or even on stewart s lifestyle it s simply pointing out something that is a part of his career i was actually surprised it was not mentioned and that s why i checked out the discussion page,0 +hi i currently have an article nominated at fac see here which unfortunately isn t getting much attention anyway i can only nominate one article at a time myself so unless you or want to co nominate it with me up to you no pressure i m going to have to wait until my currently fac is closed or passed before i can nominate to by myself,0 +yeah and it could also really trip out anyone currently partaking of the subject material never mind just leave it it gives the article that modern professional feel exemplar sententia,0 +main photo isn t the main photo with the text jimmy wales in december the exact same one shown here in a version,0 +uh oh you better have a look at this talk contribs,0 +i have written a plot synopsis that refers more closely to the actual plot rather than patchy descriptions of the mise en scene as appears in the current plot summary section i wrote it the day after i watched the film for the first time and i am quite proud of i was asked to merge it with the existing summary but i found it highly unsatisfactory and tried to substitute my summary in full wikipedia rejected it although they may have done so for valid editorial reasons i have put it on my user page if anyone wants to see it user quovadisdaddy quovadisdaddy,0 +link to wikimedia commons,0 +em em padding em,0 +crick was identified as an atheist and a strong inclination towards atheism is atheism,0 +article is ready for review and edits,0 +i have split this page from,0 +precious oregon categories thank you for quality articles on people and places of oregon such as charles l mcnary and oregon supreme court for starting categories and populating them such as category hochschule f r musik und tanz k ln and for i realizing that consensus can be wrong you are an,0 +guy if i have been uncivil and i don t think i was then it was retaliatory incivility you might think me crude but the facts show that i was not the aggressor i d rather askahrc s accusations against me not go unanswered,0 +british bc plugs don t conform to any british standard which is why they vanished from the market place when conformance with british standards became mandatory for all electrical accessories it would have been up to one of the manufacturers to get them added to bs the then standard for bc lampholders now replaced by bs en but presumably no manufacturer thought the cost of the effort worth what they would make in sales bc plugs can still be found in some other countries which use bc lampholders occasionally they can be found for sale in the uk but strictly it s illegal to sell them now,0 +i ve requested a change to wolfpuss congratulations to all dirty thinkers in our community i submit to your naughtiness,0 +on a british first world war recruiting poster,0 +the new royal house in denmark what will it be called how do the danes feel about a french dynasty are they jealous that the uk has their old one lmao,0 +merge it has been suggested that the article branding iron be merged with this one,0 +from marcus sheffield in looking at your chew stoke article i found the line below unclear and i don t know how to edit it if you want to leave it alone just do so and i ll forget it middle ages the next recorded owner was lord beauchamp of hache by whom chew stoke was held under the honour of gloucester cheers,0 +re submit hi thanks for your help i have now resubmitted wikipedia talk articles for creation peter taylor gooby what i don t understand is that it comes up as it is almost automatically declined why is that thank you for your help,0 +in short consensus is the agreement of at least four or five people to make a certain change to an article wp cruft isn t a policy though i do agree with and endorse it so not everything has to comply with it and mario isn t a particularly well written article so it would be irrelevant here remember that wikipedia is not a paper encyclopedia,0 +great but what i meant about weakest link is that i don t see an explicit connection to developments in noise music in the sources i ve seen have you got a source that place s something called post industrial in the context of the history of noise music i m presuming this is the umbrella term invented by music journalists to cover any music that is stylistically informed by industrial music yet is at the same time far enough removed to warrant the post tag unless the sources are good on this it s too divergent in my opinion to include right now some of what might be called post industrial is not that far removed from pop music so it simply doesn t warrant inclusion you might as well do a section on death metal and its precursors but this kind of bifurcatory dot connecting is hardly the best way forward especially as the title of this article arose as a result of someone trying to define a single genre known as noise music personally i think it is perhaps a stretch too far to start covering any kind of music or any composer artist that might have dabbled in a bit of noise making and i don t think that is what should happen with this article unless the claims are sourced and that s why i mentioned already that we should try and stick as closely as possible to what the main sources dealing with the historical use of sound noise in music have to offer we now see a number of artists for example jeff mills being redefined as a post industrial musicians and the sentence throws in the year despite the fact that mills has been associated with techno for years now i find this kind of redefinition without strong sources problematic,0 +i will continue to doubt the verifability of some sources taking something at face value just doesn t cut it the mention of the value is stated in the article cite the source from those listed we both know it isn t there this is why all mormon related articles should be taken away from regular editors they will never be uncyclopedic under the current system where pro mormon sources are taken as gospel cite all the statements made in the article talk,0 +priest are all pedophiles is this true how do we know,0 +why why did you protect my usertalk page,0 +this question sounds off topic to folksonomy perhaps you should ask it on another talk page,0 +vandalism please stop vandalising pages or you may be banned from wikipedia,0 +i expected a change in attitude relating to the unblock plea i suppose we can only hope,0 +thnx for d help i m logging in into twitter if i will give my personal mobile no to u there will u call me ri now talk,0 +please do not vandalize pages as you did with this edit to user talk maralia if you continue to do so you will be block from editing,0 +material i found much material about christopher columbus may be helpful http w u s history com pages h html http w biography com articles christopher columbus http history howstuffworks com north american history christopher columbus htm http w questia com library encyclopedia columbus christopher jsp http w lycos com info christopher columbuscentral america html,0 +i still don t like it the cropped photo bothers me even more by the way please discuss on my talk page why you keep vandalizing the zootopia image,0 +a barnstar for you the citation barnstar thank you very much for your contributions at technical support scam championman,0 +keep kidding yourself thats the fanboy site you are using for your third reference you people are clueless goodbye,0 +a sample video as mentioned on the village pump and on my talk page i ve created a small sample video of an echocardiogram describing one of the features of hypertrophic cardiomyopathy while the original avi was kb and encoded in the ms mpeg v codec the edited version just a black overlay of all identifying patient and hospital information is mb and compressed in the cinepak codec would you like me to email a copy to you to see about converting to theora format nov utc,0 +there are actually four lord fairfaxes mentioned in this article you have martin s grandfather th lord fairfax his uncle th lord fairfax his other uncle th lord fairfax and cousin th lord fairfax since the majority of this article deals with his uncle the th lord fairfax i ve tried to disambiguate as best i can in the prose i ve stated martin s uncle thomas fairfax th lord fairfax of cameron known as lord fairfax owned the northern neck proprietary land grant which he had inherited from martin s great grandfather thomas colepeper nd baron colepeper in the th lord fairfax was known as lord fairfax so i ve tried to start this out in the prose so that the reader will know it refers to the th lord fairfax in the lede i ve rendered the sentence as raised in humble surroundings in england martin relocated to virginia in to assist his uncle thomas fairfax th lord fairfax of cameron known as lord fairfax in administering the northern neck proprietary which encompassed up to let me know if this works talk,0 +what did you mean busier,0 +ya know they say selene is in love with michel but i don t see it,0 +thanks for reminding me of this site i lost my bookmarks as the result of a hardware failure a little while back,0 +i hate you i hate you i hate you preceding unsigned comment added by,0 +i think by explicitly attributing the information to fox tacitly stating that nobody else picked it up,0 +it s quite simple if a reliable source refers to ms dunin as an amateur cryptographer then so far as we re concerned she is it s completely inappropriate to create a category for the purpose of downgrading anyone s achievements if someone doesn t have a particular credential the solution is to refrain from stating that they do p s if kryptos was such child s play why had no one else solved it,0 +didn t i supply a lot of knowledge about einstein s name defamation where is your knowledge of this subject you and your friend shall know that ustashe movement was established in january,0 +papal bull you are not going to get copies of papal bull since chanceries are now strict at releasing copies of papal bull due to possibly plagiarism especially in social media we have way too many devotees claiming honors and prestige when there is no proof from rome that such are designated by the pope or their prefects,0 +reply talk,0 +i am not a vandal,0 +aaron virdi is also famous for his youtube videos he did have a account called icerastajamin his account had millions of views on every single video as it got popular aaron got popular with rewards of money and fame a this account was famous but aaron decided to start a fresh and make a new account at the moment aaron is manager of erah aaron youtube link is available when clicking this link,0 +please refrain from adding nonsense to wikipedia as you did to bit plane it is considered vandalism if you would like to experiment use the sandbox a link to the edit i have reverted can be found here link if you believe this edit should not have been reverted please contact me,0 +you are the one who made the same edits several times whereas multiple others who are not socks made rational edit summaries disputing it i am acting solely as admin here not taking sides here and wp ew is very clear that it doesn t matter who is really right or which content eventually winds up in the article by a brief look i don t see a discussion with clear consensus on the talkpage feel free to discuss with the other editors involved especially those who currently disagree with your edits to try to persuade them that you are right ask those with whom you claim you currently have consensus to weigh in as well all of this goes on the article talkpage so nobody can claim some secret deal bad faith explanation etc,0 +in light of mr connolley s participation as one of the nine member team running the realclimate web site and his undeniable history of as a green party activist there is simply no longer any way in which his partisans can continue to waffle about his most impartial character though effective as a wiki nazi censor in support of socialist causes he most certainly appears to have been the fact that this connolley specimen has been poisonously influential in stifling the honest consideration not only of factual reality in general but the facts of his own personal history in particular is a telling reflection of the pure viciousness of the faction to which he belongs there is no longer any illusion of trustworthiness with regard to the question of anthropogenic global climate change on wikipedia the site is dominated by a pack of liars staunchly suppressive of honest and well supported scientific fact on this issue as well as upon any other issue of a sociopolitical quality touching upon the preservation of individual rights,0 +this whole conversation is rediculous as the colors on a flag are meant to represent different ideas or ideals what we decide to call that color has everything to do with what is meant by that color by calling it yellow one is neglecting to fully appreciate the meaning behind the choice of gold as a flag color is meant to convey an idea that of eternal and original wealth and prosperity it has nothing to do with being high and mighty regarding the naming of a color that is a reactionary and frankly stupid position to hold flags are symbols meant to illustrate various ideas and they use images and colors like all other forms of symbolism to do this thus the use of gold on a flag is in no way an attempt to sound more high and mighty but rather a way to communicate you dolt,0 +sorry elf ldb list of dog breeds i ve also made a suggestion proposal in wikipedia talk wikiproject dog breeds templates to address the kennel club breed standard question it s hidden in the dog registries section about halfway down i think i will sub section it there so people can notice it talk june utc,0 +phi sigma kappa chapters hello naraht i m not convinced that wp el requires or suggests the removal of website links to the chapters cited on the page list of phi sigma kappa chapters you deleted them all not even attempting the median step of turning these into reference items i disagree with the necessity of your edit but have little time to address the matter as i am at work however i thought i would challenge you on this since you and i have corresponded and i appreciate your previous work please know if i am not convinced at your explanation i may revert or seek a poll,0 +yeah if you don t like the team get the hell out of the stadium douche,0 +more pictures we only have exterior pictures surely we can find some more detailed and more interesting pictures,0 +support for verifiable user info i d like to see how many here would be interested in me drafting up a potential policy on claims on a user s talk page being verifiable or deleted i d like to see claims e stats of octave singing ranges and bench presses of almost twice one s weight be deleted from here talk contribs,0 +he s as big of a fool as kunstler although at least jkg knows when to quit,0 +should the unification church also be described as a christian new religious movement it and providence seem to share most of the same beliefs according to this article right now it is only called a new religious movement although its christian roots are explained in the second paragraph of the the lede,0 +hm are you suggesting stripping discussion of the pentarchy in the lead or are you suggesting different phrasing if so what do you recommend my understanding is that it was constantinople s position that rome objected to which granted was at the core of justinian s pentarchy but not the idea of the patriarc hate system as a whole even so though it s not like rome pulled out of future councils or in any other substantial ways severed itself from the emperor at that time in other words it is certainly true that there were many violent disagreements some of which led to temporary schisms but to my understanding justinian s system even if not everybody liked it became a practical reality one that indeed helped fuel the fire that pushed rome further and further away,0 +voca also provides for compensation and assistance to victims of terrorism or mass violence see this was amended to allow the director to make supplemental grants to states for eligible crime victim compensation and assistance programs and to victim service organizations public agencies including federal state or local governments and non governmental organizations that provide assistance to victims of crime the funds could be used to provide emergency relief including crisis response efforts assistance compensation training and technical assistance for investigations and prosecutions of terrorism usa patriot act u s h r public law title vi subtitle b sec,0 +hahahihihoho bishone is that allowed to say that somebody is mentaly insane in wikipedia cause ante call me that and i have never said something like that before hahahihihoho,0 +i agree with status some of the pictures shouldn t be used in the katy perry article but they still are i have been trying to change the picture to another one but they kept deleting my edit plus there are lots of katy perry pictures and i don t know why most of them aren t being used,0 +bye bye schoolcruft,0 +sorry for the language but it busts my bridges and burns my soul when controlling sysop wannabees like moeron go around removing other people s work the wiki is so full of junk its unbelievable compared to all that one more sat night is a good page that can get better and there s no reason for him to take off after it youre right about playing i was wrong there but i m right about everything else,0 +ahh yes by mormons in this instance i do mean members of the church of jesus christ of latter day saints i can see how you d read that section in this way perhaps we can clarify what do you suggest it is not that the doctrines changed but rather that what smith emphasized changed what is and what is not church doctrine is a fuzzy thing and as you likely know has always been the case many things that church members believe to be doctrine is not but cultural doctrines promulgated by church members in any case the teachings of smith and what he emphasized are fuzzy enough that many people thought his earlier teachings were more accurate or that he changed doctrines or that the current church misunderstood his teachings on many matters we have to balance this to be historically accurate with what is believed and taught today not an easy task i m open to suggestions in how to change wording let s discus here and then make the changes suggestions also i d invite you to join wikipedia we always need newcomers registration is easy,0 +redirect user talk dengero archive,0 +should i group chronologically alphanumerically or by account purpose,0 +i have now undone your stupid mistakes and i really have better things to do i repeat stop using awb or better still do us all a favor and stop editing wikipedia period,0 +andy swan us deleted why did you delete andy swan us entry,0 +problematic paragraph the following paragraph is of concern the tactics of some of the more determined alf activists are anathema to many animal rights advocates such as singer who regard the animal rights movement as something that should occupy the moral high ground an impossible claim to sustain when others are bombing buildings and risking lives in the name of the same idea should an encyclopedia make the assertion that an argument is an impossible claim to sustain,0 +history of washington d c please restore my edits if you believe that there are too many links feel free to remove those that you believe to be excessive or redundant thanks corker aug,0 +oh i know why you see i was pointing out to linuxbeak that someone else hate s him too i just searched for linuxbeak on google i didn t create that stuff,0 +pervert ps karl swithwnbank wrothe this not littledan,0 +omen of the stars it is supposed to be far from the end of all of them and according to apparently vicky firestar is going to die in the series and lionblaze will be leader look at yt youtube,0 +speedy deletion of samurai records a tag has been placed on samurai records requesting that it be speedily deleted from wikipedia per csd a under the criteria for speedy deletion articles that do not meet basic wikipedia criteria may be deleted at any time please see the guidelines for what is generally accepted as an appropriate article and if you can indicate why the subject of this article is appropriate you may contest the tagging to do this add on the top of the article and leave a note on the article s talk page explaining your position please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would confirm its subject s notability under the guidelines if you think that this notice was placed here in error you may contest the deletion to do this add on the top of the page just below the existing speedy deletion or db tag and leave a note on the page s talk page explaining your position please do not remove the speedy deletion tag yourself talk,0 +i vote b she s obviously a right winger and self id s as that but the first thing i think when i see ann coulter is damn that s the hottest looking woman over i ve ever seen including demi moore my next thought is i know i m gonna laugh my butt off at how she incites liberals and she never fails to disappoint so while she would probably be delighted to be called a right wing extremist i think we should be smart enough not to fall into her little trap,0 +don t really need anything heh,0 +prosecutorial career section this section is only left wing criticism and claims of impropriety this is unacceptable it needs to be who cares when he was elected or how many cases he prosecuted these are just boring facts what we need are more claims of impropriety and maybe some reportage from the daily kos to balance out this section,0 +fuuse hi salim what do you need to prove the natability of the company fusse it has produced records and a film which has a lot of media coverage in uk norway has also won peabody award in usa i contacted deeyah about the forthcoming project which she refused to disclose but this company is doing well,0 +good work the tireless contributor barnstar excellent job with your work on statewide legislative elections in the united states continue the good work,0 +nobody can know how much this will matter years from now and we don t know that this is a sea change only that some journalists reviewing the new site a day or two after launch thought it was we really need mainstream press coverage retrospectively looking at clear measurable changes in flickr s usage and profits which doesn t seem to have happened yet,0 +november utc it seems that either you do not understand either you are of bad faith let s make it simple according to encyclopaedia judaica jerusalem not i the great argument of the reform rabbis in frankfurt was god ordered circumcision to abraham not to moses in other words god s commandment to abraham is circumcision god s commandments to moses do not order circumcision in other words god s one commandment to abraham circumcision god s ten commandments to moses not even one for circumcision the rabbis not i said so therefore wholly and seriously documented i wrote it into the main article but wp and s rub it out this is an insane violation of the wiki rules now in order to enlighten the main article the nd commandment topic of this discussion introduces my discovery a child would do it it says god s nd commandment to moses orders him do not circumcise but contrary to the saying of pw and s i never attributed this to the reform rabbis conclusion who forgot to take their medicine for several days now not i the ethical question involved about this discussion is how can the wiki support a very obviously childish lie just because this lie has been carried along for millennia think about it if you are responsible persons you cannot publish an obvious lie without warning your readers which i am doing sigi s request to wp and s circumcise your heart eyes ears and pen not your peco because yes this criminal violation of moses nd commandment is being done every day in the usa to baby boys it even has been done to an oregon girl in see http w aesculapiuspress com books the rape of innocence indeed a good american mother cannot want her beloved daughter be deprived from circumcision when her beloved son gets it can she friendly your sigismond,0 +nice clean up today thanks,0 +sick of this stop deleting my page i just created about me few words and you deleted you want war well after new year when i have more time you will get it block me if you want to i will reopen account or cancel my account better yet but do not remove about me page boy got that vandal i was beginning to like you,0 +judging by his lack of an apology i have to believe that this was not an honest mistake i understand assume good faith but personally if i had made a mistake like that in good faith i d have apologized as he refuses to do this i m not sure that his reversion wasn t an act of vandalism,0 +read my edit summary add the other band members in prose and w sources if you feel they are so important by convention lists of individuals are generally limited to those w articles the page needs more sources overall so i added the template talk,0 +i know you do not belive me but i have changed,0 +hj mitchell has no justification for claiming hounding another editor as a blocking reason wp hounding has a specific meaning it is not just a bad faith insult to be thrown around like confetti where has it been decided i have been hounding anyone where has accusations and evidence been presented in an appropriate place where have i had the chance to defend myself,0 +interesting thanks skip,0 +i m afraid that me being respectful to you is something highly unlikely to happen about as likely as you being respectful to me for that matter i ve had a look through policy and i can t see any clause mandating punitive bans for talking back to one s elders and betters so just continue with illegal bans if you want an arbcom case in the meantime your ban is no actual impediment to me whatsoever,0 +that is clearly not the case but even if there is i would just remove that as trivia anyway lute,0 +actually dude when i try to edit anything other than this page i get the whole user is block page explaining what to do etc,0 +cybershore after carefully looking over your additions to the article even with my changes to your grammer i see that they are redundant and add nothing while making some things less clear i oppose their addition what additions specifically you re talking about so i can adjust or respond why again this double standard behavior related just to one part since i answered all the objections one by one while the seriously and gravely accusation made up by me and proved repeatedly throughout this year and a half about spurious quote remains ignored and please answer this time is the spurioness justifiable under any circunstances in the case of an encyclopedia that is intended to be free and neutral which group of honest editors would admit the use of partial referrals that lead to political and historical inferences in favor of a political regime monarchical military etc w hate ver be worse which group of honest editors would allow the use of spurious citations of a partial source for purposes mentioned above even if this purposes are involuntary although the time that passed without actions having been taken as well as the resistance to remediation maintained only makes this possibility of involuntariness unlikely which group of honest editors who were truly committed to the freedom and neutrality of such instrument would vote against such remediation or would omit about it,0 +i am not merkey i am his attorney and i will edit all i please,0 +i was requested to provide an opinion here by comfykem everyone agrees that virus species and genera are inherently different usual practice for a genus with a single species would be to construct a single article to cover both and that s sensible where the pair would otherwise duplicate each other however there s no reason in principle why each can t have an article as long as there is sufficient distinctive reliably sourced material in each to merit that this appears to be the case here just about though bloating the lloviu virus article with speculative information about what the virus particle might look like appears unhelpful if we are to have a single article on a genus with a single species as plantdrew suggests it would probably be best to have it at the species name as that is what the bulk of readers are most likely to search for,0 +but why does it say declined,0 +make that cos u removed my do not vandalize message,0 +small correction disagreements about content are not vandalism we reserve that word for blatant deliberate attempts to compromise wikipedia such as page blanking inserting profanity or inappropriate pictures etc see wp vandal not what s going on here is a content dispute possibly tendentious possibly disruptive possibly just a difference of opinion it may even lead to restrictions on one or more parties but it s still not vandalism onka,0 +initiative wise there are two or three avengers operating and the original captain america the one that the article references is y know dead,0 +people can look at her talk page and judge for themselves,0 +i second that who can delete this,0 +comment cited academic works that have been vetted by peer review are not pov and are probably some of the hardest forms of source to contradict when i say peer review i mean by those in academia not our own peer review process your claims that they are an author s pov are spurious at best the books he used are highly researched publications by noted members of their fields who spent years researching this subject you will need some serious sources to counter those presented by chris also before you go challenging his research i wish to remind you of chris bona fides he is a published author who is finishing his phd in gastronomy from boston university a major american university you really need to step up if you wish to contradict his work blah blah,0 +semi protected edit request on october lamar odom is a vampire,0 +i have submitted a request at wp rmtr i expect it to be fixed shortly,0 +this would also justify his mother travelling so far from bulgaria and the lack of the details about his father,0 +insistence on the use of muhajir label,0 +well at least it s a step in the right direction thank you for taking it,0 +editing on wikipedia shouldbe something more that making lots of afds voting delete in lots of afds and deleting content here there and everywhere i ve never encountered a more negative editor than you,0 +hi tim shuba your above claims violate wp truth wp npov and wp reliable sources prof frank j tipler s omega point theory has been peer reviewed and published in a number of the world s leading physics journals even nasa itself has peer reviewed his omega point theory and found it correct according to the known laws of physics see my above post at may utc for the details on these matters no refutation of it exists within the peer reviewed scientific literature or anywhere else for that matter when it comes to editorship on wikipedia it s not up to you to decide whether something is true or not as that violates wp truth,0 +fake administrator here is yet another fake administator to hell with him i am going to bed,0 +in case you didn t understand there is no link between the two words other than phonetic coincidence as the dude said mhaimenen means i believe haymunta means thought or consideration etc the list goes on song is zmarta and prayer hymn is slotha msalu means pray in the plural form msalukh means let us pray etc,0 +section on circles the last section on circles looks like a very specific use of hermitian matrices rather than general information perhaps it should be moved into an examples section with a few other bullet points or just outright deleted,0 +i see thanks very much for sharing these images with wikipedia could you perhaps state on the image pages that they are scanned in from you private collection,0 +we don t keep non free material just because we like it see wp ilikeit wikipedia is about having free reusable content for everybody keeping nonfree material that doesn t particularly improve the encyclopedia in any way those images weren t really relevant and made the article cluttered anyway goes against our basic principle,0 +wow now i m beating you interesting thanks for the barnstar,0 +i would like to remind everyone of that our deletion policy says that if the article provides sufficient context to show that the topic is worthy and that it can be expanded it should not be deleted i hope that all will respect this policy,0 +lead the lead has been substantially improved thanks to saravask however the largely predominant image of kolkata to the world is that of a city full of problems and sub human conditions do you think at least one line highliting the problems of the city should be added to the lead like the slums poverty etc i think so however i am finding it difficult to insert such a line appropriately maybe we can add it after the line that ends with the city is now experiencing economic revival please help bye,0 +oops unfortunately there isn t any central easily located entry on what powers are relegated to admins only,0 +edit in question i only said i didn t think we re allowed to do it but i can t cite a policy or guideline on it the main reason tho would be that it isn t a content page but a talk page it should either go on the main page or in a separate page tags can link to talk pages for discussions on moves and such but i ve never seen an link in the text to contnet placed on the talk page i m going to ask a few admins and see if they know of a guideline or policy explicitly forbidding it,0 +rfc filed just to keep you abreast after having tried reasoning with you multiple times i have filed an rfc asking for suspension of your administrator privileges from desi related articles for a period of months which you can use to introspect and learn about different cultures and refrain from attacking other religions,0 +changed another link i changed islamic terrorist incidents in the s to israeli settlements considering the former is all about listing the work of al qaeda and other international jihadi movements and as a result the latter is considerably more relevant in the case of this shooting,0 +also it might be a reference to one after,0 +and lie and abuse power,0 +content from future energy development should be merged here some content from the hubbert peak article was moved to a new article future energy development this article seems like the more appropriate place to move that info if it s not redundant though perhaps alternative energy renewable energy dec utc,0 +need administrative help i have been block iniquitously read the above request i tried to explain everything there hegemonic use of administrative privileges ought to not be overlooked ask administrator if i was harassing him to such an extent where i needed to be block from editing that too for hrs for goodness sake what happened to don t bite the newcomers please talk to bwilkins see the talk page of he has a knack of being unreasonable with aplomb here,0 +meaning of fitnah the meaning of the word fitnah as claimed by scholar ibn kathir in his tafsir is shirk and also muhsin khan clarifies and fight them until there is no more fitnah disbelief and worshipping of others along with allah and all and every kind of worship is for allah alone but if they cease let there be no trans gression except against az zalimun the polytheists and wrong doers etc sura ref source tafsir ibn kathir verse,0 +salt cured meat curing food preservation smoking cooking technique probably others perhaps we don t need any more general articles,0 +see the messageboard for proof,0 +history of indicators it would be useful to have charts showing changes in key indicators like gdp growth rate and unemployment over several decades,0 +about my deletion requests hello schutz first of all i should introduce myself i am pl sysop de simple fr nl and commons user odder sysop on en wiki i dont have this username because of it was taken by i guess one of my opponents so simply write to my odder second i think that these redirects are simply stupid and not linked from the main space too why the good redirect is redirecting from the shorter to longer article name not from the longer to shorter i don t know any person that will be writing the longer article name if he she can write the shorter one don t forget that wikipedia is for readers not for writers best regards,0 +or even discuss about major template changes,0 +jew comment it appears you took the comment personally nominee a mate of yours perhaps and abused your powers by blocking me indefinately masking the fact by referring to some faux consensus i have agreed to your terms so i hope this is the end of the matter,0 +i understand the confusion you would think that since a primary source is a first hand account it would be the most reliable however the person or group involved could have a biased viewpoint also there may be multiple viewpoints on the event in question that differ from one another that s when a secondary source comes in a secondary source s author is one step removed from the event reducing the chance of bias and often uses several primary sources to form an opinion evaluation and or conclusion furthermore secondary sources are more likely to be published the editorial oversight of the publishing process is extremely valuable here it helps us avoid original research one of the biggest problems with wikipedians relying on primary sources is that they often find themselves forming their own conclusions whether intentionally or not which would be considered original research you can read more about why published sources are sought on wikipedia at wp rs and wp source,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are a few good links for newcomers the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style here are some other hints and tips i would recommend that you get a username you don t have to log in to read or edit articles on wikipedia but creating an account is quick free and non intrusive requires no personal information and there are many benefits of having a username if you edit without a username your ip address is used to identify you instead when using talk pages please sign your name at the end of your messages by typing four tildes this will automatically produce your username or ip address and the date if you have any questions check out wikipedia where to ask a question ask me on or type helpme on this talk page and a user will help you as soon as possible i will answer your questions as far as i can again welcome and i hope you enjoy editing here and being a wikipedian,0 +px thumb the dark side of the force is the key to many abilities some consider to be unnatural,0 +something anonymous editing has given rise to vandalism manifesto pass to all wikians vandalism is good vandalism does not come from a sheer desire to cause harm vandals do their thing all over wiki from frustration and hatred because incompetent editors who have no skills no degrees no expertise usually no names have done multiple reverts and edits of the work of others vandalism is a good and natural response to no lifers as in get a life who do edits edits a year and who have actual watch lists of or more and are proud of it these jerk s deserve have their own pages vandalized over and over as long as they are in effect vandalizing the pages of others in the name of being a cop vandals keep no life editors admins bureaucrats and stewards honest or at least busy reverting the reverts they get on their own pages vandalism is good it helps drive these nutcases into the ground with nervous breakdowns the culture of wikipedia is very very sick and vandals are needed to cull the herd support your local vandal vandal god,0 +in response to your feedback thanks for visiting if you have questions visit wikipedia tutorial or contact me at my talk page talk,0 +in the thick of it he told me that he hoped it was a permanent block he wanted out this illustrates how a hurricane can engulf an experience talented editor we should not be stamping a temporary pscyhological phenomenon with permanence it s all too silly talk,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia tutorial how to edit a page how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your messages on discussion pages using four tildes this will automatically insert your username and the date if you need help check out wikipedia questions ask me on or ask your question on this page and then place helpme before the question again welcome amalthea st john s university i ve moved your comment to talk st john s university new york page on st john s university ny you ve initially left it at wikipedia talk how to fix your signature but the people who have an interest in the article about the university wouldn t have found it there kind regards amalthea,0 +indian naming conventions please note that the indian naming conventions are different the son s name is written first and then only the father s name or surname is written hence the correct name will be karunanidhi muthuvel and not what you have corrected in fact this is a name kalaignar never uses indian always write their name as m karunanidhi,0 +is this a press release with her trademark pageboy bob haircut and sunglasses wintour has become an important figure in much of the fashion world widely praised for her eye for fashion trends and her support for younger designers her reportedly aloof and demanding personality has earned her the nickname nuclear wintour i m sorry but that reads ridiculous and has no sources to any of those claims who has widely praised her who says she is important and the word reportedly reportedly by whom where is a source for her nickname is her pageboy bob really trademarked also the following she is the eldest daughter of charles wintour editor of the london evening standard her father consulted her on how to make the newspaper relevant to the youth of the era so she was a newspaper consultant i find it hard to believe that her father a grown man would consult a youth on how to make a newspaper relevant to anyone where are sources for this i guess i will start looking for sources and removing non sourced statements tomorrow if anyone wants to help please help me i have only read paragraphs on this wikipedia page about anna wintour so i am wondering what else needs to be fixed i will read more tomorrow well you could have asked me per the template at the top of this page everything in that intro is repeated often in greater detail in the article and sourced to the best of my recollection the general rule is that we don t footnote something in the intro section unless it s an extraordinary claim like the most the oldest that sort of thing unless that s the only place in the article it appears see wp leadcite,0 +this is david speaking,0 +well better i will help improve your userpages and all if you want just give me a green light contact me contribs,0 +also in szabolcs k kay,0 +you owe me an apology will you apologize to me,0 +in regards to where hazaras are look at the chart the pie and read hazaras it clearly states that hazaras live in the central highlands again your communist map is very very very outdated and should be removed,0 +the wall street journal article today explains that yes bergwall has convictions for earlier crimes but that the eight murders convictions he was convicted of have been quashed the article made no mention of the earlier convictions that were less serious offences than murder and said that sture bergvall is a convicted swedish criminal in the lead the article is very wordy and yet unclear,0 +wait you added this to the article for starters this definition of erotica it is the depiction of sex acts pure and simple has no citation who came up with this definition because it is pretty much a crock as far as i m concerned what about the notion of suggestion which seems the major distincton between erotica and pornography by the definition you chose to attribute a depiction of an individual in a suggestive pose ie not a sex act is exempt from being called erotica while i respect the need for clarity here i think this current definition misses the mark why not refer to a dictionary definition and leave pov out of it thank you,0 +december utc lol oh my how shocking that yet another agw activist only wants to see sources quoted from other agw supporters color me surprised tell me what is this magical formula that allows someone to be quoted in this article you keep saying they need to be scientists yet these two men are clearly climate scientists but on the other hand lots of non scientists are quoted so long as they support agw funny how that works isn t it you are clearly violating wikipedia s rule of gatekeeping an article stop it or i will report you and you will face penalties from wikipedia admins,0 +a renegade christian wrote the qur an a priest that was influenced by arianism dictated what mohammed should write in the qur an he was kicked out of the christian church for heritical views on religion,0 +you left me a note a couple days ago about whether i thought abp burk would be named a cardinal i don t really know but i doubt it st louis is one of those diocese baltimore is the other that comes to mind that sometimes has a cardinal but not always we have not had one as abp since cardinal carberry retired in the early s he died in about i think as the church becomes less a european and north american church we will see fewer cardinals from small and mid sized diocese like stl and more from africa asia and south america i also think the controversies over things like st stans make it less likely thatburke would get picked for a red hat,0 +hey if it says open means anyone can edit it itchy,0 +but what neither brews nor yourself have been willing to tell us is what is this real speed of light can we measure it the measurement of the speed of light as we all seem to have agreed on its definition presents no problem at all so long as you can provide a length standard that is sufficiently precise the speed of light is still measured at inner solar system scales at least and to admirable precision all of this after talk,0 +charles sumner article hello dr jensen i have recently been making edits on the charles sumner article i have expanded on the dominican republic annexation treaty and information on president grant are there any other areas that need work on the cs article,0 +african american please stop if you continue to delete or edit legitimate talk page comments you will be block for vandalism,0 +you really need a life dude,0 +i agree let s nuke it,0 +and quote from it,0 +i have at t bonnaroo in the corner of my pandora screen,0 +i ll have to start a rfc on elonka i ve tried every reasonable way i know how to get her to back up here claims allegations and probations all to no avail the only option appears to be a formal rfc there is no one can say that i and others did not try fenian,0 +picture have a look at the first picture it says comming soon sum,0 +i do know what the l in blp stands for and i m happy that the equine project is staying on top of their blps but after sourcing and trans lating two articles for the equine project finding numerous factual errors and sourcing problems and then checking all of the same editor s created articles versus the es wiki articles it appears that i made one mistake i guess the equine project won t be requesting my trans lating services again grin talk,0 +well let s do it cheers the above discussion is preserved as an archive of a requested move please do not modify it subsequent comments should be made in a new section on this talk page or in a move review no further edits should be made to this section,0 +sniff sniff who s there,0 +just taking a stab i d say about or did you mean kilocalories x s g,0 +proposed the bank notes,0 +walam olum i think the article is improved more work to be done i m sure you might want to read the history including the edit summaries as well as the article and talk pages,0 +caleb by the way has just for some reason changed something on an article to do with an edit i made see here,0 +no i will make sure that will be removed permanently i will not do this for awhile to avoid violations but hope that someone else will consider and agree there is no reason whatsoever to put the late in front of his name i will list several reasons and although i think that is somewhat pov there are other reason as to why i remove the info everyone dies sometime does it really make sense to have an article about a past event and just put the late in front of everyone that has died poor writing it s just sloppy filler writing to put the late in place would you ever see anyone referred to as the late in a print encyclopedia recentism wp has a guideline template that we should try not to capitalize too much on recent events and keep them in perspective would it make sense years down the road to still refer to him as the late let s make things as static as possible precedent at one point several dozen articles referred to steve irwin as the late steve irwin now this is the only one that does by doing a search and there seems to be consensus about that knowledge of his death let s face it a vast majority of people especially those that would look for this article know he is dead and the few that may not be sure can click the link maybe people don t want to know that he s dead or be reminded of it and putting that acts as a spoiler even anna nicole smith had a few the lates put on pages of hers and those have all been removed a few by me a few by others saving a click is not a valid reason for this we should assume that the readers are smart and things like that can go to the simple english edition irrelevance why would the fact that he is dead be relevant to an article that talks about his programming his shows will probably be reran for many years to come and the fact that he died somewhat unexpectedly makes no bearing on what he did on his programming well this is my case i would also like to point out wp own which i feel has been violated in these reverts i also am starting a discussion on wp words to avoid to get some word from other editors to make sure that i am doing the right thing i am supremely confident that i am and i look forward to improving the peta article in the future,0 +by appealing to a single disputed edit on an entirely different page,0 +proposed page move volleyball at the summer olympics men s tournament volleyball at the summer olympics men s indoor tournament volleyball at the summer olympics women s tournament volleyball at the summer olympics women s indoor tournament beach volleyball at the summer olympics men s tournament volleyball at the summer olympics men s beach tournament beach volleyball at the summer olympics women s tournament volleyball at the summer olympics women s beach tournament volleyball in the olympic context seems to refer to both volleyball in general and indoor volleyball specifically i think we need to clarify this and create a uniform pattern for the names of these articles since both indoor and beach volleyball are presented in volleyball at the summer olympics article and the sports are basically the same the prefix bit should be uniform hence this proposal when this issue is decided we can go on with the older olympics tournaments which follow neither of the above name patterns,0 +cool fly her to where we all live and we ll let her photograph our gems talk,0 +some friendly and genteel comments from your civility police tread carefully tread carefully have it your way having it his way lol http en wikipedia org w index php title user talk dvdm diff oldid i ll identify all of you by your real names as you say tread carefully and have it your way,0 +original arabic lyrics and trans literation different from trans lation while the english trans lation does correctly refer to the old anthem the original arabic lyrics and their trans literation show the new anthem can anyone bother fixing this haytham,0 +given that he wasn t caught up in the latest spi sweep which netted cu socks i don t think it s him may be someone else though i d need to do a bit of digging,0 +criticism of stub article,0 +no unfortunately it doesn t,0 +explanation dear edjohnston and bearian i am not here to harm any one or to put any unnecessary information in wikipedia pages here in ust global wikipedia page i update the latest information regarding ust gloabal so that wikipedia users get the right information under right category under corporate milestones company achievements needs to be listed the link http investing businessweek com research stocks private snapshot asp privcapid may have the recent major information about ust global but the top part of the page that mentions about key executives is totally wrong two people and their postions who are not part of ust global is being mentioned here ust global is a company where in past there may have a lot of people who were part of this company in key roles posts during their asscociation with the company their names may have been part of this company related records but once they left this company searching for other oppurtunities i dont understand why they want to mention their name associated with ust global this is like self advertisement which is totally against wikipedia policy please advice me if i am wrong in my understanding thank you chellappa m,0 +discssion opened at the opera project here,0 +milton friedman is not a lp also is he for you measure of all things thing,0 +ok you delete the other two but not vezelis why just have it deleted like the others then bay,0 +what it should teach you is to be a better wikipedian and discuss this on the discussion page rather than just constantly reverting be bold is one thing but you need to initiate more discussions,0 +good job elonka keep driving the unionists down tiocfaidh ar la,0 +i want to see images of this sex gender gap of doom,0 +from allergies and eye irritation it may also be that lens wearers are familiar with controlling the more reflexive actions of their eyes with regards to irritation as this is an ability they require when manipulating the lenses to prevent blinking prevent blinking i wear contacts and i have no idea what this is supposed to mean,0 +you again you got nothing better to do than stalk my edits i would say i pity you but it would give the impression that i have even the slightest slither of respect for you which i dont,0 +to respond generally to the statements made above it s noteworthy to mention tillman s religion in light of the controversial statements made by ralph kauzlarich regarding the family s beliefs and how it relates to the investigation of his death additionally since this is apparently hard to find the biography by jon krakauer refers to pat tillman as an agnostic and possibly even an atheist i m sure if someone wants to actually read the book they can find a relevant quote to include on a more personal note this entire discussion topic stinks of religious paranoia,0 +let s try not to edit anything yet unless they have confirmed that the operation has been proven successful then it is ok to add it on wikipedia the rebels have been know to give unreliable information,0 +i might buy that see the fair use rationale for http en wikipedia org wiki file soldiers western wall jpg,0 +malaysian language please do not unilaterally redirect substantial articles which has the effect of instant deletion there has been considerable discussion about these articles use the talk page,0 +also could you share with everyone your ip address that would helpful i know you want to be honest about your ban so just come clean right now,0 +naive belief present your sources for such statements that his introduction of his book indicates that he was a muslim that is original research the evidence that he was a zoroastrian priest is strong while the evidence that he was muslim is conjecture,0 +yes yes and yes i don t know the songs directly by name but if it were to play i know i d dance my ass off cause songs like those are classics d i was at a dragqueen bar this weekend and countdown came on and me and my friend got up and danced all over the place hahahahahaha i might be a white boy but i sure as hell don t dance like one d stack stack stack,0 +january you currently appear to be engaged in an edit war note that the three revert rule prohibits making more than three reversions on a single page within a hour period additionally users who perform a large number of reversions in content disputes may be block for edit warring even if they do not technically violate the three revert rule if you continue you may be block from editing please do not repeatedly revert edits but use the talk page to work towards wording and content that gains a consensus among editors if necessary pursue dispute resolution do not continue removing reliable sourced information from the article purely because you disagree with its validity the only proof of it being false is the personal belief of a handful of editors which does not invalidate the information talk contribs,0 +football aid april thank you for participating in the football aid vote this week bernd schuster has been selected as this week s collaboration please do help in working to improve it,0 +ok well maybe aaron because i pretty much publicly pwned him and i suppose this was his attempt to salvage some dignity or something,0 +thanks for the edits i am not aware of any split in the us between higher doctorates and others the phd dphil not awarded here in my experience is typically a or year degree but as that time period often includes ms level classwork it seems parallel to your phd when awarded in the us the dsc is the precise equivalent of the phd the ranking you list divinity laws or civil law medicine and letters and above music is at least not well known in the us it would be helpful to include the degree names in the above list since i certainly don t know them all md is as you say a professional degree as is drph in public health i think the general attitude is to regard all doctoral degrees as on par and honorary degrees as strictly honorary and not pertaining to academic work this is something of a mess isn t it talk,0 +image eurovision semis map png hi can you change this image on my monitor the sea and the non participant countries look the same colour making the map look very odd can you make the sea blue or something cheers,0 +thanks i ll be sure to check out that project page i m just someone interested in this field i m an avid reader of many legal blogs which brought me here through postings about wikipedia specifically these posts and i look forward with working with you to expand supreme court articles and write new ones i appreciate your help so far,0 +the article reads a lot like a news article unfortunately wikipedia is not a place for journalism or speculation you re welcome to add something more encyclopedic to html talk,0 +invitation to esperanza hey there if you have not heard of this place before and might be interested drop by with kind regards,0 +danny your motives are clearly not about being more encyclopaedic as we have seen your methods time and time again as the wikipedia page says you can quickly insert inline references to web pages by inserting a url surrounded by single square brackets this does not provide as much information to readers but it is much better than not citing your sources at all interestingly i see you have only attacked and vandalized the quotes website and none of the watchtower s multiple links no surprise there with your gross bias screaming from the rooftops as for the links to quotes websites they are extremely encyclopaedic and the page has no commentary but lists all the printed material about so as to give fair and reasonable coverage rather than just a few selective quotes they are all given their source publication date and page numbers for proof and reference your apparent fear and terror that the public might actually read what the watchtower organization has written is very revealing you clearly have an agenda to vandalize and ban free speech when it doesn t suit your agenda not dissimilar to your religious organisation i suggest you look inside and see why now after many months you feel the desperate need to hide accurate comprehensive dated quotes direct and unaltered that have been published by the watch tower society if you can give all the publications from the watchtower s website then i m sure many here will be only to happy to list that link but i think you will find they refuse to give any information to the public about their less than flattering publications and that is where we all need to see a comprehensive and fully documented source like the excellent quotes site on you have failed to substantiate any of your claims about the quotes site merely saying it s not useful is a deadpan pov with no basis but your own fear of reality and your desperate urged to manipulate the public posted central august,0 +lies in intro i deleted where it said admired for his ability to write music without paper because thats an opinion i also deleted the part where it said hes one of the best selling hip hop artist because when i went to the sources they did not say anything about him being one of the best selling rappers,0 +so why did you remove live on air and live at woodstock also stay the night had the same kinda release as nuclear family did which is also a promo single the forgotten was the lead single from the twilight soundtrack and why is it fine to add for example godzilla the album to the appearances section but not have its own section the title was other appearances so i a sub for song in other albums and one for songs in soundtracks which is an album but yet you remove them without saying why,0 +socially handicapped i think you re a shut in with a serious social handicap if you want to delete the dekker article go for it i m sorry that i dared to fight you on it and i m equally sorry that someone else has been fighting you just as hard the only sock puppet is the one you gladly use to fornicate yourself while picturing your mother spread eagle,0 +dude are you stupid yankees said hes a hero to his people i was saying how hes the first inuk to play in the nhl thus being a hero to his people even if hes just a disgraceful goon you sir are highly uneducated i hope one day you can go to school and realize that when somebody says hes a hero to his people isn t racist last time i checked inuk wasn t even a race hes white caucasian seriously your ignorance blows my mind,0 +they weren t showing up because someone messed up the reference they were adding about the gay magazine i also removed multiracial americans pending a source that describes him as multiracial,0 +although i have no major gripes with the article itself short as it is it seems to me ironic that in the last line the article writer is mirroring the cultural stereotypes that forster explores since when is italy not the west a bit of a pedantic point i know but in the context it seemed to me significant,0 +trevithj the reason sources discussing the negative feedback amplifier do not mention set points errors and comparators is that they have no more relevance than the stock market the remarks of black are perfectly clear and also make no mention of these factors nor do his patents they are understandable as he intended them the use of feedback bypasses the inadequacies of the nonlinear variable and uncontrollable properties of the large gain open loop amplifier as very easily seen in the gain analysis that shows the closed loop gain to be set at as fixed by a resistor divider for example by making the closed loop gain independent entirely of the open loop gain i don t think you fully appreciate the simple algebra that governs this circuit,0 +this statement the document reveals that the de facto government existing since these unlawful and illegal acts appears to be a subversive organization in contradistinction to the claim that the u s government is an example of representative government in the world is what the document reveals that is not an un neutral statement the document itself is not a neutral document is that the problem,0 +the side tracking involved fuelwagon preventing someone from trying to improve the article no personal attacks please i was block for swearing at you not for preventing anyone from improving the article,0 +january utc great perhaps we should welcome the ip editor,0 +wikiproject university of oxford class b importance mid,0 +banana hi banana box here s the rear for you,0 +how cloud computer different from normal computer answer cloud computer has free space for user to add their own files and their information moreover users can get their files from different computers because these files are shared on the internet how to turn classroom computing to cloud computing answer you have to register in google or yahoo and create your document for example google document when teacher create classroom s page you can look it up and you also can edit it,0 +that s a cute response i don t care about you all i care about is the wide spread acknowledgement of wikipedia s illegitimacy,0 +i m pretty sure i wish i could find more history about it that the the toponym river plate is a relative neologism coined in the british empire esp in england perhaps as little as a century or so ago you re surety is misplaced the british have been calling it river plate since drake with the barest minimum of research i counter your assertion with the fact that a book entitled a narrative of the operations of a small british force under the command of brigadier general sir samuel auchmuty employed in the reduction of monte video on the river plate a d by a field officer on the staff illustrated with a plan of the operations was published in see samuel auchmuty,0 +on this page i am discussing your demeanor rather than the subject of the article please refrain from editing my talk page unless you have something to discuss with me you want to discuss the subject of the entry go to the appropriate page,0 +these books do meet the qualifitions under the gfdl license you can view many of these books text on google books if you don t feel like purchasing one yourself they have links to the original articles and they have links to history pages you are misinforming the readers of wikipedia intentionally wikipedia should not be used to misinform readers just because you are unhappy your additions to the filiqurian page are mostly false uneducated assumptions,0 +to him smiling even though the guy hardly smiles,0 +i can t quite figure it out the system of numbering dynasties was developed by manetho in the thirtieth dynasty so it isn t often applied to later dynasties but it looks like the second period of achamenid rule following the thirtieth dynasty is sometimes called the thirty first dynasty one might count the ptolemies as the thirty second dynasty but i don t know if any reliable sources do so they re either called the ptolemaic dynasty or the ptolemies or the lagides and counting them as number instead of would ignore the argead dynasty alexander the great his son alexander iv of macedon and philip i arrhidaeus which ruled briefly but probably as long as some of the minor numbered dynasties i can t see any reason for counting the ptolemies as number unless sources address the issue i think attempts to give the ptolemies a number should be left out of the article,0 +no that is not the one though it is one of the more helpful templates i will continue to look sorry i have made many edits to many articles since that time,0 +you have been banned by wikzilla you trollish boob you have been banned by wikzilla you trollish boob you have been banned by wikzilla you trollish boob you have been banned by wikzilla you trollish boob you have been banned by wikzilla you trollish boob you have been banned by wikzilla you trollish boob you have been banned by wikzilla you trollish boob you have been banned by wikzilla you trollish boob,0 +i don t have desperately strong opinions about what should be included other than the two most widely recognised songs of lennon s solo career however it seems to me that anyone who does have such an opinion ought first to make the case for whichever song s they want include on the talk page in order to gain consensus if any can be reached on that understanding does it seem reasonable to trim the paragraph and leave a note in the article to direct people to the talk page,0 +sorry i did not realize that honorifics are not allowed you will notice that a lot of people will come to this page and introduce things that are going to malign this person therefore administrators need to monitor this page many thanks for understanding,0 +i removed it for you is this what you were looking to achieve or would you like me to undo my edit,0 +the primary objective of wikipedia from wikipedia exists for the people who read it not for the people who edit it every edit should either improve the factual accuracy of wikipedia or make it easier and more useful for the reader any edit which does not serve these goals is a waste of time and energy and quite possibly counterproductive adapted from beyond my ken it is not true that wikipedia exists only for the readers editors have a role to play too should wikipedia become nothing but a bunch of quotations cut and pasted here and there besides i am unable to think of any encyclopedia that is free from original research furthermore who made you guys the wikipedia police,0 +title style is the style h r h the princess charlotte princess royal correct i understood misunderstood that women who were former holders of titles were styled this way e g sarah duchess of york as opposed to h r h the duchess of york,0 +please stop if you continue to vandalize pages as you did to emma watson you will be block from editing wikipedia a link to the edit i have reverted can be found here link if you believe this edit should not have been reverted please contact me t,0 +there is not entry for video mobile g phone video phone so i am thinking about creting a new entry for g phone redirecting the other ones that s why http en wikipedia org wiki telecommunications,0 +you know what forget it the guy who was repeatedly changing the opening and led me to post what was previously here because he repeatedly refused to answer the simple question of why except of course to start shouting has reported me for not being civil how ironic is that rather than have a long detailed discussion here about which opening is better i ll simply point out that in the current version even after you read the entire first paragraph you still don t have a clue why this article exists you do find out what marco rodr guez does for a living though so yay for that i guess once you get to the end you do get some idea why this has been such a big deal but that s assuming you haven t fallen asleep or shot yourself having read the same four words brazil germany biggest loss and their million variants multiple times seriously if people here think what s currently serving as an opening to this article summarises the key points in an engaging and professional way perhaps you need to get a job where your actually paid to write for a living it s not quite garbage but it s not good and please stop justifying such poor dull repetitive trivial writing with the claim the alternatives are unencyclopedic frankly you couldn t be more wrong there s no serious disagreement out in the world that this defeat was a shock result and a national humiliation that will be upfront in the key summary of every decent source writing about this match both now and in years time if you don t want it to be in this one please think of a better reason than unencyclopedic if only that the victims might have a clue what it is you actually mean that said on the offchance anyone with any ability for writing gets around to working on this article here s what the opening should look like if you re trying to engage the reader while summarizing the key points it s not perfect but it s a hell of a lot better than the crap people fought tooth and nail to replace it with brazil germany was the shock result of the first semi final of the fifa world cup men s international football tournament played on july at the est dio mineir o in belo horizonte brazil it broke brazil s match home unbeaten streak in competitive matches going back to and equalled their biggest margin of defeat tied with a loss to uruguay in leading it to be described as a national humiliation the game also saw germany score the most goals in world cup history their overtaking brazil s their second goal meant germany s miroslav klose reached world cup goals overtaking brazil s ronaldo as the tournament s all time record goalscorer the game was subsequently referred to by the press as the mineirazo evoking the spirit of the maracanazo in which brazil unexpectedly lost the fifa world cup on home soil to uruguay,0 +i haven t violated rr in spirit rv to established claim only the other vtwo behaved as if they were sockpuppets no blast,0 +response to your recent edit at loyola academy having attended loyola academy i think it s fair to say that the students come from chicagoland northern illinois is definitely misleading as it suggests that students are commuting from places like rockford and the quad cities they re not it s not a boarding school or anything like that to my knowledge there weren t even any kids from naperville or aurora chicagoland is sufficiently broad enough,0 +dude seriously you need to relax a bit life isn t all about research and fact hunting you went crazy when you saw a hoax page and did hours of research into it it was a blatant hoax and it was just a childish game which you got involved in i hope you re happy that you spotted the hoax but anyone could have done it you even got your friend on the case to do research into it i agree that wikipedia has no place for rubbish but it s the administrator s job to delete the rubbish i think at the end of the day you ve got to have fun and researching about some fake person isn t the way to do it i think to a degree everyone s idea of fun is different but almost everyone in this world will agree that what you did wasn t it i d prefer to play scrabble with arabic letters than research into a prank if you want a debate then i ll be on my user page i always enjoy having chats with you that is fun,0 +if you admins can block me for sockpuppetry then what should i do for what you are doing as a team arent you a sockpuppet hen,0 +my reply that you have deleted in a fascist manner from the nicosia discussion page l nicosia and discrimination against greek contributors and the greek character of the citydear salvio you have accused me of abusive behaviour against other users and consequently block me from editing the article on nicosia for a hour period may i draw to your attention that it is fairly obvious that those three users namely seb az seric and chesdovi are clearly constantly creating a picture of nicosia as a decadent muslim city that serves their religious beliefs and are all clearly hailing form turkish backgrounds there is a constant undermining of the city s greek identity i e whenever a greek flag appears in any single picture the aforementioned users delete that picture instantaneously and prefer to throw in pictures of the flag of shame and occupation that is equivalent to a legalisation of a human crime of continuous brutal occupation of the island of cyprus by the turkish army the greek flag is omnipresent in the republic of cyprus whether some people like it or detest it but this is the reality and an encyclopedia that wishes to be unbiased should depict the reality and not the subjective views of a minority of readers that are furthermore based on extremist religious and nationalistic views on the other hand such users do find it appropriate to throw in pictures using the turkish and the illegal yes illegal according to united nation referendums flat of the non recognised internationally illegal self proclaimed state of the so called trnc it is totally unacceptable to have extremist nationalistic individuals that strategically reached the level of administrators deteriorating all the time the article on the city of nicosia promoting an unrealistic turkish character and undermining the greek character of the city and at the same time having an additional article on north nicosia that is depicting a totally false picture w r t the city the trnc is illegal not recognised by any state other than turkey and some terrorist states that are non democratic and yet wikipedia has a page on northern nicosia by supposedly administrators that support the unification of cyprus this is clearly a major distortion of their intentions and a huge lie in that an individual that pretends to be a neutral aribtrator and a supoporter of reunification cannot have a separate page on northern nicosia stressing how turkish it is and then go and literally destroy everything in the proper page for nicosia and emphasize the turkish character of the city talk about the tension and the division of the city all the time and undermine the greek character this is clear nationalistic and racial discrimination against the indisputable greek character of the area controlled by the republic of cyprus and furthermore it is downgrading for the republic of cyprus the mere fact that wikipedia has a site that is constantly vandalised by several ethnic turkish extremists and wikipedia users support such discriminatory behaviour in the light of all of this i shall stop contributing to wikipedia as i consider it downgrading for my own self furthermore i do not wish to participate in an encyclopedic project that is totally biased and discriminatory marcobadotti talk,0 +so his summaries weren t as antagonistic so whichever person is a bit more antagonistic gets the warning good to know on to your second claim i still don t understand how i have a pattern of edit warring but olyeller doesn t when i added a completely valid and relevant and referenced sentence and olyeller repeatedly removed it for no valid reason and olyeller falsely claimed in his summary that the issue was presented in the talk page so it s odd that falsifying summaries isn t considered a form of antagonism and or worthy of a warning the only reason olyeller removed it is because he has a really big anti carbonator grudge i once called him a thin skinned prick and he took it badly he now confirms the validity of said appellation by obsessively searching for any of my edits and reverting them which is exactly what he did in this case how is that not vandalism,0 +if you check the history on the sugar ray robinson page you ll see that the vandalism that you re referring to was left there by a e a cc db f fa which is not my ip address i saw it and i removed it i may have missed some information that was outside of my scope of knowledge on the subject but i made the appropriate changes wherever i could my apologies with regard to the edit summary,0 +do you believe in jesus,0 +kotor kokborok please do not repost previously deleted material aeropagitica talk,0 +re shadowclan afd hey just to let you know when you re nominating an article for deletion that s already been through the deletion process before like you did with shadowclan you have to create a separate afd page for the nomination not put it on the page of a previous nomination i ve already done this for you by moving the current nomination to wikipedia articles for deletion shadowclan nd nomination but in the future you can create subsequent afds with either the afdx template or adding xth nomination in with the article title in the normal afd template talk walk,0 +whilst i agree with colonel warden that fleshing out is a good idea i guess it can t be done in an attempt to add significance that is not directly claimed by the wp rs else that would be wp or,0 +i can verify that this is the same guy who was in kukl,0 +hello come on be a man oh i am going to block you go ahead i can make a new account plus its not like i care if i cant edit wikipedia,0 +swablu reminds me of a southwest airlines i should color one in in their colors,0 +hi could you please use the link i had as a reference cus im not sure if i know how to thank you then here,0 +i think his her efforts to stop edit warring between you and me haven t yet reached a satisfactory effect that s because you keep following my edits or checking my contributions page to know what i am doing or what i am not doing at wikipedia unfortunetly i m too busy to check other users s contributions pages i have better things to do with my life and when i m in wikipedia i read articles i do not read contributions page of other users i want to be far from this ningu m i do not have time to play this game anymore,0 +request regarding current rfar clarification there is an open request for clarification regarding a sanction decided at wikipedia arbitration requests case abd william m connolley see live link or permanent link is the only arbitrator to comment there so far i agree with him and unless other arbitrators wish to address the issues raised i support the close of this request with no finding or clarification my reason for this it is apparent that any useful clarification would require more discussion than can be accomplished at rfar clarification and that i was block while this request was pending for comments made in the request itself is an additional impediment there is no need for extra debate or argument i have stated that i am willing to accept a tighter restriction than the way in which i interpreted the sanction pending clarification by arbcomm so the status quo is that the restriction is tight though not necessarily as tight as defined by the administrator who block me i do not consider myself restricted from what the sanction explicitly permits and i d argue that he did so consider i accepted sandstein s decision clarification as a neutral administrator pending arbcomm review not future perfect s who was already involved and i had already claimed that he was involved in dispute with me i will continue to respect sandstein s tightening as standing and binding on me and will interpret this very narrowly but as originally stated and it did permit legitimate comment before arbcomm when i am an originating party as is normal normally i can having filed respond there to comments from other editors also made there which is what i did arbcomm specifically allowed me to originate a case and if i m clearly involved as well i see nothing in the sanction which requires me to avoid it i will not use this as a loophole to drive trucks through carrying my opinion about disputes between other editors and i will avoid in such a filing if it happens unnecessary mention of disputes between other editors obviously if i file a case claiming involved use of tools by an admin i will present evidence of involvement and existing disputes or other reason that recusal would have been required which would only mention other disputes peripherally and which will not be an attempt to resolve those other issues i hope that there is more clerk attention to an actual rfar than there has been to the existing rfar clarification which as it stands includes an illegitimate edit by someone other than me to the material i filed it s been pointed out by with clerk attention requested and nothing was done nevertheless if the request is closed without action it s moot the real point here is that if clerks were following filings before arbcomm surely this would have been noticed and reverted or moved and possibly the editor warned,0 +fine i ll cave to your ludicrous allegations he s irish and the page says that so it should stay like that i don t have time to argue with you further so gobye,0 +support the merger proposal article is very short and myofascia is all a part of the overall topic of fascia in biology,0 +a barnstar for you the original barnstar this is fact denis ritchie is one of brilliant man and news paper did not notice his work,0 +you were edit warring with me which was an extension of the edit warring you were doing here you moved the edit war to a different page and now you re taunting someone to call you on it done now if you ll excuse me i have to go update the splc page seems the family research council has been deemed a hate group about darn time have a great thanksgiving,0 +apparently the consensus will never change hah this is how propaganda is instigated in wikipedia gentlemen,0 +perhaps the single most potent way to balance the article in line w jimbo s comments would be to expand discussion of guevara s admission that during the missile crisis had he and castro controlled the missiles they would have fired them onto american cities as soon as the blockade started he would have regarded this as a beautiful death despite having killed tens of millions of innocent americans despite the annihilation of cuba and probably despite a global nuclear holocaust killing billions and destroying civilization i am hoping you will expand the two sentences currently dealing with this and that you will summarize the incident in the intro,0 +why make the girl second why are you people always make the female character second don t you think it s time to stop what is making you people do that,0 +alain thank you for the quick reply i d dn t understand what you mean do you plan to make a bibliography for each trans lator too much work or simply order a list of major works that have been attempted by numerous trans lators which is the system i am following now my list of works is rather loosely chronological and unfortunately focuses heavily on english language trans lators since they re the ones i know best if you know famous trans lators from other languages you are welcome to add their names to the list or to the talk page from where i shall order and add them later jun utc,0 +july utc kindly quote me where i ever employed any ad hominem arguments as opposed to addressing the facts and logic of the argument s put forth you ll find wgfinley you re unable to do so so kindly refrain from suggesting otherwise it s unhelpful cheers,0 +thank you for experimenting with the page irish potato famine on wikipedia your test worked and has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia thank you for your understanding,0 +it is thus ideal for doing a certain kind of subtle sockpuppetry which one can readily disclaim later as unintentional,0 +planet of da apes can someone upload the album cover for da lench mob s planet of da apes for ice cube s discography i having trouble uploading right now,0 +thank you thank you for the welcome i am borrowing of the tags on bush on my userpage i must congratulate you on your conversion please help to fix islamophobia it is full of yehudi bias leave a message,0 +as i ve explained in the article the noise is signal dependent so snr for a system requires that you come up with a model of what that signal is going to look like first,0 +plea educational institution has some really constructive users,0 +a continuous pattern of obviously racist and defamatory editing will almost certainly lead to an indefinite block take this hour period as a chance to cool off and reconsider,0 +my response see discussion page under john d roush,0 +well thank you for spouting your ignorant mouth off moron who can t read policies you re obviously a foolish anti semite since you didn t bother taking any time to read that ridiculous marwenmedia site that was linked up as proof go find something useful to do now please and stop trying to insert your racism into an encyclopedia,0 +don t make me laugh talk,0 +well if you are going to threaten me for my good faith edits of a wikipedia article i can guess where you stand on domestic violence i ve re added straight facts from well documented sources it will be curious if you or any other editor gives a reason for reverting this as it conforms to criticism i ve received there is nothing that can be construed as or or editorialization anyone can choose to take it to the talk page i see this is not the first time that editors have made efforts toward a balanced article,0 +world intellectual property organization world intellectual property organization wipo website,0 +red range new south wales i ve noticed the permission for use of this work has been archived in the wikimedia otrs system lionel hartley of please contact a person with an account on the system to confirm the permission on the discussion page but how do i trans late that into something meaningful we ve got clear skies now and we don t know how to cope lol,0 +hey dick cheese editing an article is not vandalism i added pertinent content if you don t like it you are obligated to offer a sound explanation before labeling it vandalism you appareny disagree with the content but it is in no way vandalism cheers,0 +also i see that you have experience with what it takes for film articles to be ga so you may have already known about wp plot and a bit of what i mentioned above in this section your editing to the avatar film article has been a little just a little to the contrary on these matters though i do not mean to sound as though i am condescending to you or anything of that nature i know that you do great work here and i appreciate that,0 +using arguments based on,0 +there shouldn t be a trivia section see wp trivia,0 +i can explain this in danish followed norwegian in orthographic reforms one of them was to change aa giving an sound into the nordic before logging into wikipedia i changed this because i became aware of this i m not entirely sure in which context though whether jytte jutte s surname is affected by it sorry if i ve caused a little confusion,0 +merry christmas is wishing you a merry christmas this greeting and season promotes wikilove and hopefully this one has made your day a little better spread the wikilove by wishing another user a merry christmas whether it be someone you have had disagreements with in the past or a good friend don t overdo it on the fudge spread the holiday cheer by adding subst to their talk page with a friendly message i hope you don t mind me giving you your own christmas template,0 +thank you thank you for reverting the vandalism done to my talk page have a cookie,0 +note you do not need to be a member of this project in order to edit this page whether or not the edit is minor per wikipedia be bold et al,0 +real estate in italy real estate in italy why should be canceled or must have a consent an article that every nation has the article still needs to be completed with numerous art historical references and current data sales trends and many other details,0 +tfa dec rd sorry to bother you on your talk page a few users have requested that the newly minted feature article early life of joseph smith jr be used on december rd the th anniversary of his birth and worked hard to get it to feature status before that anniversary since the rd is less than one week away i was wondering if you could make a decision whether you can swap it out for the current article slated to appear that day fauna of australia thx in adv,0 +utc this article was wonderfully amusing and interesting i look forward to seeing it utterly destroyed so that it will conform to wikipedia s quality standards november,0 +tabtabtab criminal life violenciafriki is a homo sex petifile with counts of rape all of which were men and children served a sentence of years before being deported back to spain from there he hooked up with the user slimvirgin and together killed people with bomb violenciafriki is now a key person in the al quida terrorism group in the past years he has made a total calls to michael jackson tabtabtab his happy rape secrets he says i will never stop under any cirumstances i love it hahaha there is substantial proof connecting violenciafriki ass hole to and we think that he is a second cousin to osama bin ladin osama has his own happy rape secrets as well he describes as the best thing that has ever happened i repeat ever then mumbled off talking about raping a boy named jimmy brown in columbia sc jimmy brown is a year kid convicted of rape of is year old brother and molestation of a year old girl tabtabtab criminal life violenciafriki is a homo sex petifile with counts of rape all of which were men and children served a sentence of years before being deported back to spain from there he hooked up with the user slimvirgin and together killed people with bomb violenciafriki is now a key person in the al quida terrorism group in the past years he has made a total calls to michael jackson tabtabtab his happy rape secrets he says i will never stop under any cirumstances i love it hahaha there is substantial proof connecting violenciafriki ass hole to and we think that he is a second cousin to osama bin ladin osama has his own happy rape secrets as well he describes as the best thing that has ever happened i repeat ever then mumbled off talking about raping a boy named jimmy brown in columbia sc jimmy brown is a year kid convicted of rape of is year old brother and molestation of a year old girl tabtabtab criminal life violenciafriki is a homo sex petifile with counts of rape all of which were men and children served a sentence of years before being deported back to spain from there he hooked up with the user slimvirgin and together killed people with bomb violenciafriki is now a key person in the al quida terrorism group in the past years he has made a total calls to michael jackson tabtabtab his happy rape secrets he says i will never stop under any cirumstances i love it hahaha there is substantial proof connecting violenciafriki ass hole to and we think that he is a second cousin to osama bin ladin osama has his own happy rape secrets as well he describes as the best thing that has ever happened i repeat ever then mumbled off talking about raping a boy named jimmy brown in columbia sc jimmy brown is a year kid convicted of rape of is year old brother and molestation of a year old girl tabtabtab criminal life violenciafriki is a homo sex petifile with counts of rape all of which were men and children served a sentence of years before being deported back to spain from there he hooked up with the user slimvirgin and together killed people with bomb violenciafriki is now a key person in the al quida terrorism group in the past years he has made a total calls to michael jackson tabtabtab his happy rape secrets he says i will never stop under any cirumstances i love it hahaha there is substantial proof connecting violenciafriki ass hole to and we think that he is a second cousin to osama bin ladin osama has his own happy rape secrets as well he describes as the best thing that has ever happened i repeat ever then mumbled off talking about raping a boy named jimmy brown in columbia sc jimmy brown is a year kid convicted of rape of is year old brother and molestation of a year old girl tabtabtab criminal life violenciafriki is a homo sex petifile with counts of rape all of which were men and children served a sentence of years before being deported back to spain from there he hooked up with the user slimvirgin and together killed people with bomb violenciafriki is now a key person in the al quida terrorism group in the past years he has made a total calls to michael jackson tabtabtab his happy rape secrets he says i will never stop under any cirumstances i love it hahaha there is substantial proof connecting,0 +because i keep running into your edits both recently and in page histories i ve been digging through lately and i keep running into evidence of your good sense and efforts to promote consensus amicable dispute resolution and productive editing so i award you this well deserved barnstar spill yours,0 +so let s keep the change political correctness sparks more arguments than a word that a few feminists object to,0 +lol thanks talk,0 +james are you suggesting that because i know someone that they are conflicted i know thousands of people so based upon your arbitrary definition you feel that you have the right to exclude information that i had nothing to do with you have vandalized the site once again with information taken out of context and applied it to cast a negative light on the technology again i ask for your motivation did you even ready the study to which you seem to want to promote are you friends with the authors i believe you have an ethics issue does wiki have a policy on bearing false witness,0 +the us package does not include french text,0 +i actually looked at it and said what the heck does rehired mean oh he is making a play on retired,0 +if you continue you may be block from editing wikipedia,0 +for your information sir feminism is merely the belief that women are equal to men you ve just stated that he does not care about the sex or race of individuals he obviously disagrees with many feminists on certain issues particularly abortion but he believes men and women are equal and thus is a feminist this article misquotes limbaugh and makes it sound like he believes unattractive women should not have access to mainstream society if you do not think he is a sexist than why should this portion not be corrected,0 +there is nothing promotional about sailing to philadelphia in this article as it clearly does relate to the subject at hand please refrain from adding commentary or your own personal analysis to wikipedia articles doing so violates wikipedia s neutral point of view policy and breaches the formal tone expected in an encyclopedia thank you,0 +i think propol continues to vandalize republican websites out of some misplaced belief his immature political attacks will have an effect on the elections its this type of one sided partisan ranting that destroys any credibility and usefulness wikipedia would have,0 +he was removed before his action this is not your fault of course the facts about the organisation and its leader were delibrately changed and munipilated by turkish security forces and its collobraters,0 +like i say i am happy to discuss with you but i am not going through this bs where you once again demand i prove something to you as if you are so fecking important talk if you want to run along and hide like a spineless lefty if you want to your choice,0 +that church may be barely notable to you as you live in canada but it is very notable to members of the roman catholic archdiocese of new york as it is the oldest catholic church in one of the five boroughs of new york city who are you to be the artbiter of such matters unlike you i live in staten island so i think that makes me a little more qualified than you are to comment on places in staten island to answer your question about removing my section headers the answer is no you do not have my permission to remove my section headers and i d like to request that you stop making insulting and condescending comments about my edits and my revisions thank you,0 +it s that time of year again i ve created soviet repressions currently it is just a stub but it s an important and well documented topic so it should have no trouble at all you ve been working on related topics before perhaps you d like to help,0 +the rapture hoax or hype that s about as big a violation of npov as one can get that is certainly a useful guide of what to avoid we ve covered all the povs here including the fact that amillenialists and post millenialists are less likely to use the term than historic premillenialists even though their formulation of the doctrine with the second coming is virtually identical that s about as good as we can do here but hoax or hype writing isn t something wikipedia is meant to do,0 +indeed you at least half right are g day,0 +release date is wrong in the chart also gb model missing the chart showing each version of the iphone and the release dates fails to mention the gb also it says they were released on sept when in fact they came out june as the article says in other places i d edit it but i don t have an account,0 +this is the talk page of the nazi breeding camps,0 +so i m just kidding i am a pilipino and i want to join wikipedia since tropical storm podul tropical depression zoraida active but i am the young forecaster that editing this fuck wikipedia i am planned to not join wikipedia anymore beginning this month likely on rd week before it joined this i am too planned to making a month deal to wikipedia so my family continued to supporting me while i am in school year instalok february pst,0 +the second meaning which i would argue is not distinct from the first is not appropriate because it implies a value judgment that what people want to signify is that they are in some way better than others this clearly falls under wp label,0 +thanks for providing a cite i ve undone the edit pending a discussion on the talk page i actually think it is correct to cover the issue in the article but i d like ot have a few other editor s give opinions please see talk tower hill school christopher wheeler arrested on dealing in child porn charges,0 +not done it s not clear what changes you want to be made please mention the specific changes in a change x to y format i am talk to me see what i have done,0 +who the hell are you and where did you get this rubbish,0 +i don t recall amazon com never being reliable it usually always has the accurate release dates,0 +they re describe themselves as conservatives not far rightists you can t take one source a newspaper we all know that newspapers all have liberal agendas and describe them as such although i do sincerely believe they are a fascists bottomline is they should be described as they describe themselves not as one newspaper does a journalist is just one man with one opinion,0 +this is because a lot of the editors over the course of this page s history are not american there s nothing that can be done except to have it re edited by someone who isn t associated with either countryand has no interest in the politics of either country as well,0 +march utc yes the presentation of god and cosmology in tub is exactly that and so is just a fact of the book if one was to summarize it in one single sentence that would be the only way i can think of to describe it npov npov though is somewhat nebulous with this book as we all have discovered because of the authorship origin and unusual unique presentation that has caused various types of pov to surface in debate true not true religion philosophy etc i searched in some online libraries at the library of congress and even wrote to the urantia foundation to inquire about the history of its official categorization in hopes this would help so far i found it listed under scientific religion religion non fiction cults and got lost with all the changes due to copyright issues and various changes in status at the loc the book itself says it is an epochal revelation which is the fifth to the planet it describes itself as clearing up misconceptions regarding god deity and divinity religious science scientific religion esoteric cosmology religious cosmology what perhaps just writing this in a paragraph would be useful answering this would help to streamline the rest of the article while increasing it at the same time i think what are your thoughts you know if we wrote that the urantia book is an epochal revelation containing religio scientific cosmology there would then start more pov debating,0 +hey i see we have similar interests wanna form a team and do this,0 +what vandalism jibba jabba you have two btw what vandalism communicator kills patriots script logo can anyone upload the patriots script logo the duck super bowl loss the recent super bowl loss is a highly significant event in the history of the patriots franchise the opening section discusses the dynasty status of the patriots but hardly mentions the effect of the recent loss this page has featured status for fair and proper discussion of important patriots facts however the page now feels unbalanced and biased due to its brief and perfunctory coverage of this highly significant loss it is beginning to feel like a protected fan page as opposed to a balanced and factual discussion of important facts relating to the patriots obviously the page should be protected from vandalism by giants fans but this page needs to acknowledge that the patriots lost a game that many football experts are calling one of the greatest upsets of all time dlomme yup communicator kills taunting disguised as factual information looking through the history of edits since the super bowl a lot of information that s being added and much of it since deleted may be true but the inclusion of it into the article seems more like a subtle attempt at taunting is it really relevant that the patriots are the first team not to win the super bowl who cares and believe me i m no patriots fan they ve been a thorn in my team s side since last season s playoffs but this is supposed to be an encyclopedia entry not a fan forum this page should be locked from any further edits for awhile unless something truly relevant to the patriots should suddenly occur actually protection is not something to be taken lightly being an admin and even though i am a die hard pats fan myself the level of problematic edits to this article while high is not so bad that we haven t been able to keep up with it by rollbacks and undos talk contribs far i ve nominated the article for featured article review since a lot of the content that was there when it was nominated has now been moved elsewhere protection this article is starting to get vandilized again if it were up to me i would make it temporarly semiprotected i wonder why vandilism is returning to it get over it people the superbowl s over so you want me to request semi protection communicator kills bias the franchise history section seems to be a little biased against the patriots whenever a superbowl loss is mentioned the opposing team and score are given when it gets to the part about the patriots winning superbowls not only are the teams scores not given but it doesn t even say that they won them ie under belichick the team went to three super bowls in four years it should be consistant one way or the other the sentence the patriots however were defeated by the new york giants in super bowl xlii after winning the first games of their season is very clumsily tacked on to the first section i think it warrants another sentence or or at least the deletion of the word howev,0 +that sounds good to me and is supported by wp wordstoavoid go for it,0 +indeed learning curve i am amazed at how much learning i had to do in order to get the wiki privatized and fully operational first off i wanted to make an iron clad security main page like arbcom s wiki that wasn t too terribly difficult but there is a gaping hole in mediawiki s security in the default installation whereby all uploaded files generally images in a completely private wiki can be directly accessed by anyone familiar with mediawiki merely typing a url path that took some reading and trial error mediawiki s excuse is that mediawiki is designed to be open to everyone man it s like about openness the thing is those who don t care to think about security wouldn t mind if images cannot be viewed via intelligent url typing however those making a private wiki who do care wouldn t want them viewable by i p s and then thumbnails of images wouldn t work no matter what i did to localsettings php file like many things i would go to talk pages on mediawiki and discover there have been many others wrestling with the same issues it turned out that imagemagick has been omitted from recent builds of mediawiki moreover installing imagemagick isn t a matter of dropping files and folders into the wiki using ftp it s a linux installer rpm and only the webmaster can do that and after all that is done there are bunch of gotta have templates like template xt template template doc template hilite template nbhyph template nowrap and template xt i think i have all the gotta haves now i was the shepherding author sponsor on a bunch of them so i m fond of them i can t complain about free stuff mediawiki is an amazing product that few commercial interests could match for under i ll take the poor documentation associated with open source software any day,0 +do you disagree that either way is involved and thus this block is invalid,0 +every single edit i have made is listed above aside from the one clearly marked out and referred to none breach any rules or conduct guidelines i am firm in my words but not as you described aggressive and beligerent i find that dishonest my unblock requests also detail the fact that i am very clearly aware of where i failed to meet such guidelines please don t think this is a personal matter i admire your willingness to see the sanctity of this website preserved and if i was in your position i m sure i would be doing much the same as you but i disagree with you on this matter and only this matter,0 +maybe irrelevant wasn t the ideal word choice i wouldn t remove a photo of a boston located school from the boston page but i d be a bit skeptical of its inclusion it s just that there are something like schools in the metroboston area even if you limit it to the more notable ones mit harvard bc bu berklee emerson suffolk others i m probably forgetting which one do you pick you can t put an image for every campus into that section so which one is sufficiently representative also i get the impression there s a minor status war between bc or bu and probably other schools regarding which one is depicted as the best school on wikipedia so i think edits like the bc photo addition that could potentially be construed as marketing should be closely scrutinized what do you think,0 +no i don t but i do like this one guy his name s andrew will write more later gotta go itz cool though i don t mind at all never had a boyfriend sad yes but i m sure this one will work wish me luck he s so cute yeah estrogen fest over hot guy erm yeah gotta go will write more later tomorrow,0 +harassment well beats sock don t it,0 +socks we are always suspicious of people with more than one user id if you have any encyclopedic contributions to make please do so using this name please do not use or talk contribs,0 +dr tennie was there a day ago can i tell him in peace from trivandrum kerala india utc,0 +and you have to admit that wik has a much better claim to adminship than ryan right apr utc,0 +cm i think you may be accessing out of date information the cm design was discontinued read the following globalsecurity report it has been replaced by the cm so i have changed the roca article accordingly,0 +thank you bakewell tart i have never been sure who you might be but at the moment it s good to get a friendly message,0 +silent letters the o in opossum is spelled but not pronounced it is a silent letter just like the h in the word honest the articles a and an are correctly based on the first pronounced letter not simply the first letter so you have the phrase an honest man not a honest man even though h is a consonant likewise the phrase should be a opossum not an opossum again based on the first pronounced letter therefore i will go through the article changing an opossum to a opossum the o in opossum is no different from the h in honest,0 +there is however a variety of english usage known as british english which is what is being referred to above,0 +i enjoy lacrosse and i am interested in unc lacrosse history and all the cool facts too you guys have a lot of facts achievements names tournaments and events etc it has been stated already but just make sure to really sort those things out into categories or sections to make the viewer more satisfied to what they are looking at and reading it s more of just a blob of information being thrown at me with cool facts thrown in you can separate the tournaments like accs and ncaas and then list what happened or what awards were accepted also maybe you could start off with where lacrosse started or came from or just highlight the word lacrosse with a reference then perhaps inform the reader a bit about the history of unc lacrosse could also have a section of unc s present lacrosse team and their status to really keep the reader up to date with unc lacrosse otherwise keep finding more stories and information about unc lacrosse and be sure to organize and really make it flow all together in addition to that don t forget to reference your sources at the bottom and after information you have found along with access dates and names etc keep it up and it will all come together great i m sure unc lax get er done,0 +such as a month ban from wikipedia you were warned times,0 +may utc thank you for looking into and attending to this issue,0 +i didn t put that there either i will remove it,0 +find someone to make love to,0 +i am editing the second paragraph first sentence under history for better clarification and understanding of what it means because i found it a little confusing,0 +new jersey becarefull with awb you changed some words that were correctly new jersey in that they were the new jersies of the team to new jersey not that big a deal as someone does this every other month or so but i just wanted to let you know to be vigilant with checking what awb wants to change its often wrong,0 +re cirt again at the risk of sounding uncivil your attitude goes totally against the spirit of this project featured article quality is not the final goal of wikipedia articles if you really believe this article is perfect and beyond improvement then please say so in plain english,0 +regarding edits made during november utc thank you for experimenting with wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you may want to do take a look at the welcome page to learn more about contributing to our encyclopedia if this is an ip address and it is shared by multiple users ignore this warning if you did not make any unconstructive edits talk,0 +section blanking by ip editors it appears as if one or two anonymous editors are repeatedly removing referenced content from this article without explanation if this continues perhaps an ip editing block should be set up,0 +i was typing the response when you visited the talk page it is the nature of wikipedia to make a choose between users and so my comments were eliminated what i basically stated is that the material probably should not be in the article the reasoning against her nomination needs to presented in a balanced npov manner having its own section with each point starred is not npov also there must an attempt to provide the reasons for her nomination also that was not present also the comments were conclusionary they did not provide the reasoning for example the la times quote stated that she is bad whoa that s an elementary school argument there was no explanation on why jrb is so bad that is not a npov presentation so go ahead provide the arguments and thinking against jrb but provide the arguments and thinking for jrb also and conclusionary statments just don t cut it your contracts professor wants to hear why the contract is void he she does not just want to hear you say the contract is void best,0 +thanks for doing the bidding of the troublemaking and vindictive vandal it s ok for him to make personal attacks but when i respond in kind i m block this is why wikipedia suck s,0 +who cares anymore they attack with impunity,0 +i agree with everyone except melbourne is a great city that s why it s winning the worlds most liveable city all the time,0 +well i am not trying to pick a fight but i have npov issues with this article it reads at the moment like a celebration of scientific progress i have two problems first it moves too easily from science as a generic activity all people engage in to science as a specifically western project second although there has been progress in science in that there is some accumulation of knowledge the history of science is rather more complicated than that one way to deal with this if others find my criticisms valid is to distinguish in the article between what we know about changes in scientific method and knowledge from aristotle to bacon to comte to popper from aristotle to darwin to mendel to mayr from aristotle to newton to einstein and planck etc on the one hand and various discussions over how to study and conceive of the history of science i e issues in historiography and the sociology of science on the other for example i think everyone agrees that aristotle newton einstein and planck are real people who lived at different periods of time and made different claims about the world but i think different people have vastly different ways of telling the story that connects these people and their claims i d hope a good article on the history of science would inform me of these issues and provide me with the different ways of understanding the movement from one period in science to another i am no expert on this but i really hope someone who feels very confident of their grasp of say thomas kuhn and bruno latour could reorganize and develop this article in a way that takes their claims about science seriously as well as the claims of those with opposing views i am glad ed has begun this article it can be really important and it is a needed contribution sr,0 +the latter is an issue as for the game suggestion aza hasn t decided to reply yet if you can find zun s derivative work statement on the games that should be more than enough to resolve this gimmetrow,0 +you re funny cat iron duke i m not stoking anything the embers were still burning as you were the last one to comment here less than two hours before i made my comment above that romac exercised restraint by allowing you to have the last word is a credit to her to be sure i comented here to let romac know that wehwalt made the pledge not to be involved in i p article enforcement in his rfa i didn t extort it from him he might have chosen not to make it and take his chances and see how he fared as it is he volunteered to make that pledge i view it as binding if i ever see him take admin action in the i p arena i will consider a breach of that pledge and will suggest that his admin tools be withdrawn from him for falsely advertising himself in the nom have a nice evening talk,0 +someone needs to remove lott,0 +you have communicated about this matter on my talk page rather than on the article s where this discussion belongs before you take it thereif you wish to do soplease be aware that you are using the term weasel word improperly i see that this has been brought to your attention before and that nonetheless your misue of the term continues and again to repeat myself from the edit summary your correction despite tarantino s statements many solutions to this unexplained postmodern puzzle as dubbed by one scholar have been proposed is grammatically improper it also demonstrates a tin ear your contributions may be in good faith but they are hardly positive that is the reason they are being reverted and no other,0 +i love to be a taurus being a taurus is very important i feel really good about it and cant help that i just jump up and down bold text bold text,0 +hi jay the source that you ve used the strategy written by mccaffrey is okay but it would be very good if you would also mention some third party source that discusses or describes the strategy in the lingo of wikipedia i think the strategy itself is called a primary source but wikipedia generally prefers secondary sources i can look for secondary sources for this if you d like also perhaps a bit more concise for example i don t think it s really significant that mccaffrey recognized that illegal drugs remain widely available which is common knowledge cheers,0 +that is completely unencyclopedic content which i removed,0 +i am curt gowdys grandaughter he will most definitely be missed thank you for acknowledging him he truely was an amazing sports caster and man and the best grandfather ever he would treat everyone the same he would always tell me alexa you could be sitting next to a bum or the richest man in the world treat them equally rip papa you are missed greatly alexa gowdy,0 +watching ping works well if a ping is signed it doesn t work if it is inserted later in a signed comment and i don t trust it to work from within templates although it seems to work i will perhaps start listing days without noticeboards as happier than the others remembering the last waste of time on ae,0 +i don t edit wikipedia to make friends so i won t be losing any sleep just please try and edit within said policies and i m sure you will be editing wikipedia for many hours to come and don t visit then it s really chilly in melbourne anyway talk,0 +seven album to seven bob seger album could you please fix the incorrect move made i don t have a problem with the actual move but he did it by cut and paste rather than using the move feature thanks dec utc,0 +looking back off topic i initially made this entry for jenner back when i was in th grade or is it years later it s nice to see a few of my lines still untouched from edits,0 +alphachimp alphachimp talk june,0 +i don t mean to intrude but i have noticed the same w there is a solution but it s the baddest of bad words on wikipedia deadlines the vast majority of words written by journalists and academicians weren t written because they wanted to version is moving along and the germans are almost ready to issue their printed k article printed page bertelsmann random house encyclopedia having been hard at work on the printed version since not getting a core of publishable articles on wikipedia is simply not an option it will be printed in some form or another and as soon as it looks like someone else is beating us to it in this new wiki world we ve created my guess is we ll get something out the door if we have to hire content experts or trans late the german printed encyclopedia to do it every wikiproject should be thinking about these things dan mistakes,0 +estadunidense what you should realize is that these two users are brazilian leftists trying to defend the spread this word via wikipedia wiki pt have a large influx of communists socialists and left lists using your structure for spreading ideological ideas articles of politics at wiki pt are a disgrace totally advocate a political vision and always attack the other and of course they come here as well any brazilian acquainted in politics few people know that the word estadunidense is used only for fanatics anti us or ignorant who do not know the political meaning of this word and just talk because they read somewhere you will not find this word in any common and serious brazilian media only radical blogs and a few media organizations that have strong links with the left,0 +smarojit chakravarty i know your facebook profile you are sitting with your son who is also a he she you are a she who likes to have sex with all wikipedia s male administrators including smalljim from your enemy mridul sharma who wants to find you and make you wear vidya balans clothes and will make you dance on ola ola ola this is truth smarojit i know you are a she and wants have sex with wikipedia male admins,0 +redirect talk th mountain artillery regiment italy,0 +you recent addition to super bowl xl for your information i removed the following addition you made to this article in a recent interview with the nfl network a referee from super bowl xl has defended many of the calls made by the officials he went through them and has explained why the nfl believes that the correct calls were made however he does believe that the low block on matt hasselbeck was a mistake the problem is that you cite a link to a blatantly copyvio ed video of pereira s entire segment that was recorded in its entirety and converted to a wmv file personal websites as secondary sources are not acceptable see wikipedia reliable sources for more information thanks talk,0 +i would suggest common engineering entrance examination the fact that it is indian and all its history of proposals can be included in the sections of the article,0 +is it also a cheap version of the supernova in the japanese international version august utc,0 +wiesehofer does not know ancient akkadian and has never been cited for trans lating ancient akkadian text he is a professor of iranian studies mainly sassanid era he is not a professor of semitic studies also lambert does not use the term widely we are arguing about the accepted part also the agreement was to list the four trans lations in terms of chronological order there seems to be a pov push here where as i am just trying to list the four trans lations in terms of chronological order chriso has no proof that wiesehofer has given an independent trans lation i know wiesehofer s academic background well enough and he has articles mainly on sassanid and parthian iran he is not a scholar of akkadian or for that matter has published anything with regards to akkadian trans lations there seems to be a gross violation of pov i am just listing trans lations which is the npov thing to do and the reader can judge nepaheshgar,0 +image copyright problem with image kissboti jpg thank you for uploading image kissboti jpg however it currently is missing information on its copyright status wikipedia takes copyright very seriously it may be deleted soon unless we can determine the license and the source of the image if you know this information then you can add a copyright tag to the image description page if you have any questions please feel free to ask them at the media copyright questions page thanks again for your cooperation babelfish,0 +bot report found duplicate references in the last revision i edited i found duplicate named references i e references sharing the same name but not having the same content please check them as i am not able to fix them automatically blender interview http w blender com guide articles aspx id tweenage riot blender magazine june aly aj was nominated in september for favorite contemporary inspirational artist of the year at the american music awards but lost the award to kirk franklin during the november presentation http abc go com specials ama html american music awards accessed december,0 +a photograph of john d terrell sr does anyone here know where we can obtain a photograph of the said john d terrell sr,0 +i ve added the tags to the files which should help other editors know whats going on thanks,0 +wikipedia miscellany for deletion easter bradford,0 +the summaries could use a little more fleshing out although they should not be too long,0 +oh i thought he was tryna make me look stupid june,0 +and why is it ok to have the countries of asia tag but not ok to have the countries of middle east tag seen a map lately,0 +to donate to this group of buffoons,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia questions ask me on my talk page or place helpme on your talk page and someone will show up shortly to answer your questions again welcome talk heather armstrong,0 +ok cool i didn t even know i was in there,0 +welcome feel free to post messages on my tal page randomenigma,0 +pikmin where are the sources confirming pikmin s release date in th u s i ve been searching the internet and can t find any sources,0 +i agree it s a mail order degree that s why i asked about when exactly she got here nd to make a water tight case of it,0 +that means so that means im forever and ever block from wikipedia huh oh well thats disappointing,0 +i got rid of them just after i messaged you or hrothulf talk,0 +and who in fact had not yet been elected,0 +messrs orangedog and sarekofvulcan to spare you the distraction of external technical data that clearly does not measure up to your standards as exhibited by the most recent major deletion conducted on this page by orangedog i now afford you the opportunity of completely constructing the masm page in your own image based off you self proclaimed expertise in the area of microsoft assembler being completely free of the type of data that you tried to delete previously you now have the freedom to design your reconstruction of the masm page so that it accurately reflects your understanding of the notability of the microsoft assembler and would wish both of you the best of luck in learning the minimum to actually say something coherant about the subject,0 +p s i didn t realize that you were sending me messages i thought there was an error i did put the link on one of those pages with spacing if you still think the link does not belong you may remove it,0 +tmbox type notice text please note i am not a bot i use huggle which allows me to make a lot of edits in a short amount time i will answer your message after i am done thank you tmbox image type notice text this user talk page is watched by friendly talk page watchers which means that someone other than me might reply to your message their input is welcome and their help with messages when i can t reply in a clear or quick manner is appreciated,0 +normally i would leave it at an entry on the afd log page in this case another user expressed concern considering the scope and popularity of the parent topic t,0 +why the obsession with power another facet of civilisations is they learn to control their populations and reach equilibria even with the most ridiculously wasteful technology why should energy growth keep increasing what possible need would a fixed number of beings have for that much energy,0 +oh you can bet your marathon medal that i will have it recreated again and again either i will or somebody else will when the new film starts production i ll keep you busy for an eternity you re talking nonsense i dont need any of those things to verify mr hunter s films imdb employs a vigorous verifying process i urge you to buy copies of mr hunter s films and watch them yourself that should be good enough the films are within the public market they are for sale on amazon com and they have been submitted to half a dozen film festivals the article has been cleaned up why is that not good enough for you talk december,0 +listas streetlife rapper,0 +because we are taking the official word,0 +the journal of the society for psychical research has been published continuously since promoting the society s aim of examining without prejudice or prepossession and in a scientific spirit those faculties of man real or supposed which appear to be inexplicable on any generally recognised hypothesis the journal s contents reflect the wide range of our contributors specialisms and interests and include reports of current laboratory and fieldwork research as well as theoretical methodological and historical papers with a bearing on the field of parapsychology quoted from the spr website all papers submitted to the journal are strictly peer reviewed so your accusation is not based on any facts goblin face obviously the ip address you cite is different from this jamenta ip address so again you are coming up with a very spurious and inauthentic accusation here i prefer to remain anonymous as you have for obvious reasons not the least of which is false accusation and libel,0 +about pronounciation notations i have answered to your comment here user talk hoverfish wrong pronunciation of avatar talk,0 +beginning awb run t c,0 +keep up your excellent work,0 +john key s government doing what john key s government does best caving in to every demand made by the maori party,0 +how am i harassing stalking then someone lied saying i remove stuff when not true did not even look at links edit warrer even linked to shows he rms was the one the scratched my post and then deleted not i,0 +i noticed at the time that tango reinserted the material you block me for adding to giles hattersley but didn t think anything more of it distracted as i was dealing with my own blocking now i ve just seen elsewhere that you block him aswell subsequently reading the opinions at his talk page where he is un block after one hour especially from other admins over what constitutes a personal attack i am less than happy at how i got shafted over this incident in which you have still failed to show i was intentionally attacking giano you seem to have absolutely no shame in levelling the same theory at tango an editor registered since dec that you did to me that the simple fact we are experienced editors that would have never seen a user s name linked in an article i am still entirely unconvinced this is even true especially for wikipedia related text but i have not researched it we just should have known it was considered a personal attack blockable after no warning after making one edit revert like i said i would be willing to take it as ignorance is no defence if this appeared in any policy text that i had just missed and judging by his unblock request he was not mistaken about what he was re adding so quite clearly you are attributing some malicious motive to me that you aren t to tango had i known of that discussion at the time i have a good idea that things might have gone differently for me it s not like i can do sod all about it now,0 +sorry to be rude imsop i ve got to run right now but will provide a more courteous reply in few hours oct utc,0 +you apparently archived the page by copying the displayed text not the wikicode that generated it that broke the archive s formatting for example the section headings i fixed it with this edit,0 +because i m a pedant like this in response to the last paraphrase from of asbury s the great illusion i m tempted to call npov here asbury states that neither pussy oot nor his associates were punished or even reprimanded further he even states that they were justified however there s a distinct difference between whether something is moral or justified anyway i m nitpicking here s the passage so you can judge for yourself although pussy oot johnson s political operations failed by a large margin to conform strictly to the christian principles upon which the league had been founded neither he nor others who employed similar variations were ever punished or even reprimanded it was generally felt by prohibition leaders that since the league acted as the agent of the churches and was therefore engaged upon the lord s business anything was justified which might help gain the ends desired by the almighty,0 +rr at passport my comments were directed at everyone concerned not specifically at yourself this is why i linked the report from talk passport you are quite right it does take to edit war and action taken should reflect that humbug,0 +sorry you need to quit your unconstructive reversions these are non controversial edits if you wish to be an administrator i d suggest using some actual discretion instead of engaging in edit warring,0 +private press our article private press and this one suggest to me that private press may be a book collecting term for fine press is there a business difference should the articles be merged,0 +other ae filing i was a little disheartened by your participation here as a result of your comments made at the ae request i feel the need to ask you a question or two i d like to do so here on your talk page but i thought i d ask your permission first you might be busy with other things or prefer not to bother yourself with this request up to you thanks,0 +how exactly is that bad that is what the book is about,0 +another afd stats example i hope you don t mind me letting you know about these examples i don t know if there s anything you can do to refine how the tool works but i just thought it would be good for you to know certain examples on it in regards to wikipedia articles for deletion deathlands the tool closed it as merge presumably because it pulled out the word merge from the closing statement however the close is really more of an n a or a no consensus if you require specific terminology since the result was that there couldn t be any real outcome for such a huge joint nomination of articles serenc,0 +rolling stone the rolling stone magazine of notes that there was an unmistakeable orange flash at the end of his pistol this refers to hunter s pistol the writer notes that the orange flash appeared before hunter was stabbed,0 +not actually look at olethros and look up the scriptures that olethros is in store for goats,0 +a barnstar for you the flaming commons wiki award thank you for all your efforts in the january mtc drive the drive was a big success as a result of the drive thousands of files was trans ferred and many files was nominated for deletion because of copyright issues or because they were not usable for your big work trans ferring files to commons and the many ways you have made it easier to work through the files you are hereby awarded this barnstar,0 +david beckham thank you for that hilarious edit summary talk contribs,0 +this definition is unclear at best and wrong at worst it is in great need of editing,0 +wikipedia is not censored for anyone,0 +hello fkc i don t know of any wp books guidelines about how the caption for an image in an infobox should be written sounds like the kind of thing you should bring up over in the project and see what people say particularly if you re thinking that the decision should apply to all articles in the project it s not something i d want to decide unilaterally,0 +and wikipedia is not about you,0 +a question why are you so interested in serbs of croatia what is your motivation i do appreciate people who add the croatian views to the article since it keep the article fair and unbiased but i do not like people who keep the progress down by constantly undoing progress,0 +if anything else should be required by the wikipedia rules please let me know so i can make up for my mistake,0 +lars is fantastic somebody allowed this on wikipenis i m wondering who did it ahahhaahah look stop being so possessive about the el caminos the more you try to censor me the more fun i have making you relive my accomplishments also why did you send me that autographed framed poster of raised by wolves would you like it back it must have been yours its in my closet collecting dust finally why does the el camino fan page need photos are they supposed to showcase which fan took a shit with an el camino during some played out washed up tired gig it makes no sense i have plenty of quality videos that could be used to promote the el caminos but you guys would rather post another photo of a drunk fan who took a shit with an el camino look i ll handle the el camino box set you guys keep doing what you re doing ahahha,0 +i think i hugged this tree once i suspect this old yew has seen a fair amount of hugging on the inside but let that pass i have definitely hugged a windmill,0 +personal attacks on talk pages please refrain from personal attacks on wikipedia talk or user talk pages like the petty and cruel attack that you left on my talk page it is official wikipedia policy that personal attacks are not allowed see wp attack,0 +cleanest city it is surprising that trivandrum is out of but that surely is not a good ranking like aarem suggested being in the top deserves to be called one of the cleanest also cleanliness is not just about clean it is about pollution waste treatment etc i suggest that one of the cleanest should be removed best airport i am not sure what this means this tag was given well before the new terminal was inaugurated i cannot understand how one could rate the old trv terminals as one of the best if looks is the yardstick here most of the airports have modern terminals now and we should wait for a ranking of all the new terminals also the statement does not say on what grounds it is the best airport in terms of revenue traffic profits passenger traffic facilities if you would like to retain it please be more specific and of course have the references ready cheapest and closest option i would suggest rephrasing this to one of the closest options to maldives and sri lanka and the only direct option to maldives you can always use a connecting flight is what i am trying to say for instance someone in the uae can fly to colombo and catch a flight from there to mv mountainwhiskey,0 +here we go again same idiot reverting my changes in a pathetic attempt to make filipinos look hispanic pacificwarrior,0 +first off i am not inserting my personal point of view just the facts i don t know where you got your facts from but they are incorrect as a life long resident of miller having both parents from miller i am well aware of the boundaries of miller and your account is false also i am not talking of this original town of miller or is supposed boundaries but the miller beach area today is made up of many neighborhoods to simply call miller beach a neighborhood of gary makes the very notion of miller smaller than it really is i don t have agenda here i just don t want my home town slighted by mis information it is the word neighborhood that is of issue miller beach has several neighborhoods it was settled almost years before gary was established it is town that has been annexed it is not a neighborhood of gary it existed before gary these are historical facts is miller under the municipal control of the city of gary yes is it an area within the political boundaries of gary yes is it part of gary no,0 +well go verify it dick and jane get sex ly mutilated page,0 +senior descendant of victoria albert is he really the senior male line dynastic descendant of victoria albert prince richard duke of gloucester is the most senior male line male descendant of victoria albert as he is the surviving son of prince henry duke of gloucester and as the duke s two elder brothers edward and albert who reigned as george vi had no sons is since the death of his elder brother william in the senior male line male grandchild of george v who was the surviving son of edward vii the first son of victoria albert prince andreas is a descendant of leopold duke of albany who was victoria and albert s fourth son and edward vii s youngest brother thus he can t be considered as the senior male line descendant of victoria and albert but through dynastic changes in succession with renounciation of rights to the throne of coburg by the future edward vii and the prince arthur duke of connaught he is the current titular duke and thus is with no doubt the head of the house of saxe coburg and gotha nonethelles his british cousins from the windsor family are agnatically senior to his family we can say that prince andreas is the senior male line descendant of prince albert in right of the former realm of saxe coburg and gotha as the elder lines of his descendants thourgh edward vii and arthur duke of connaught now extinct in male line renounced their rights to it but definitely he is not prince albert s senior male line descendant in general,0 +date of death rather than badian fromm plataea to potidaea pp argues that is based on a misreading of thucydides is supported by texts in the murasu archive,0 +this is not a place for cranks or conspiracy theorists hey dude if you are denying that it was ford that put that stuff out you are the crank ok get past your ego and admit the fact you may not know a whole lot ok bubba go to henry ford s page it s even on there sheesh talk about the blind leading the blind,0 +hello cindamuse please review edit the page http w wikipedia org wiki poodle recruiter it is true indeed i represent the company that makes the software described on this page please advice on the possible references sources i can quote to improve the authenticity neutrality of the content i do not have too many edits my username violates the wiki policy as i note now since it contains the name of the company i represent bredge please advice on what happens to the already created page if i create a new account you have renamed history to corporate history may i request a reconsideration the content talks only about the history of the product thanks much varun,0 +on another note we are going to have td e at p m and carlos peak intensity is knots and mbar from the best track hami,0 +dab said my impression remainst that the only reason this article is so long and detailed is the attempt to disguise from the casual reader the fact that the entire thing can be shrugged off in a one liner yes that s probably true but what is the alternative many of us have been battling to make the cmt clear but every time a statement is made on how crazy the theory is the other side asks for a proof citation and since that has happened almost every week for the last six months and probably longer the article has grown in size i m not sure how we can overcome this problem but i m open to suggestions,0 +july utc i d say that this is a good statement for unblocking however what fair use policy is now is very unlikely to bend to the whims of a singular group as it had been rewritten to conform with a decree by the wikimedia foundation s board of trustees i ll try and figure out the autoblock too,0 +adding the nazi party to infobox politician under the heading minister president of baden w rttemberg which makes it look like he represented the nazi party as minister president may easily be interpreted as vandalism the nazi party does not belong to the infobox for very obvious reasons stated at the article talk page,0 +as noted on wikipedia votes for deletion helicopter use in brasil the newspaper article which has been cited as the source of this claim doesn t actually support it and probably isn t a very good source to cite anyway so i d recommend removing this claim unless there is better verification available otherwise we will find ourselves cited as the source and it will become an urban legend if you want to preserve the claim and encourage other editors to work on it put it in the talk page here or just link to it in the article s history from the talk page then if it can be verified that s the time to put it into the article,0 +firearms computer game deletion question i responded talk,0 +once again you don t know what you are talking about there are only two primary sources for ambrosius and they are gildas the main source and pseudo nennius who makes use of gildas plus adds in some snippets of chronicle material and folklore both of which are cited in the previous version of the article along with secondary sources such as bede and geoffrey and reliable modern scholarly sources chadwick woolf gidlow and fleuriot are all respectable scholars you need to leave this article alone if you unclear about the sources,0 +semi protected while this may sound strange coming from an anonymous user i m quite shocked that this article is not semi protected mao zedong was and still is a very controversial figure to say the least he ranks up there with hitler and stalin and this page is vandalized just as much as those pages are,0 +image hummer jpg listed for deletion an image or media file that you uploaded or altered image hummer jpg has been listed at wikipedia images and media for deletion please look there to see why this is you may have to search for the title of the image to find its entry if you are interested in it not being deleted thank you contr,0 +i have completed the changes but i fear i may have lost some of your content in the move please add this accidentally omitted material to the new section at the bottom of the talk georgism page thanks talk contribs,0 +re hello masterpiece yes he has an arts degree you sad something i wanted to here from someone since long ago he deserves to have an fa and even one of the best fas i would also like to expand it it is almost empty compared to his great achievements and accomplishments we need to try and start writing his illustrious but the biggest concern is finding reliable sources from newspapers and books best regards talk me,0 +well it is better but you didn t have consensus i m doped on morphine so i will leave it for now safe in the knowledge that the clued up will eventually get their point proven fed up of the cluelessness that agf insists we accept and fed up of the snide accusations of auslondonder one more of those and i ll see them at ani dimwit,0 +the removed paragraph slovakization is often rationalized as a response to forced magyarization which happened mainly after the ausgleich compromise of while no one now considers magyarization a positive trend for several reasons the rationalization of slovakization as a response to it is questionable magyarization happened during the times of the monarchy and it happened in a time period when human rights were not considered nearly as universal as now slovakization is happening since then and it was as severe under communist dictatorship as it is now in democratic i have removed this paragraph not because i would necessarily disagree but because this is a speculative formulation a pov in wikipedia terminology not suitable for an encyclopaedia if this was an undisputed topic maybe such formulations could work but since that is not the case it is definitely better to stick to pure sourced data,0 +how dare you accuse others of vandalism when you are the one making the article look worse,0 +freedom of speech the issue is not freedom of speech which i uphold proudly but child abuse i have made it very clear that defending child abuse is not defending freedom of speech to say it is is verging on nihilistic it really seems that most editors here have a very naieve view on what constitutes freedom of speech,0 +sorry i must have been reading something else i think those are needed only when posting for disciplines with own articles diving for ex but for cycling we can also remove them since they are all in one article also for team sport rosters there will be templates for each of them,0 +response to third opinion request hi i m here to give your third opinion i think it s important to keep in mind that this article is titled common english usage misconceptions it s not common english mistakes according to professional typography standards it is clear to me at least that the hypen is often misused there s no dash key on my keyboard i know how to make a dash however but i do web dev and work for a printing company and i just started a sentence with but and this one with and i know all these things are wrong but they are convenient and i m writing this somewhat humorous third opinion for a few guys on an article talk page so in my mind the question is whether this is a misconception or just ignorance i believe that to properly call something a misconception it must be believed to be a rule when in fact such a rule is not correct i ve never heard anyone say just use hyphens for everything it has only become the default because we have no dash keys so i would lean toward excluding this entry unless you want to change the scope of the list to include all common mistakes not just misconceptions hope this helps,0 +why are you still here can you not find anything more important to do like killing yourself,0 +ps this file too http en wikipedia org wiki file edward gierek fototeca ro jpg many thanks,0 +i was just released from prison on december during the period ending about november i engaged in a day hunger strike actually and days started pounds ended up an estimated pounds generally i drank two cups of milk in the morning and drank water as needed i was never force fed nor oddly enough was i ever hungry or in appreciable discomfort i was examined almost daily by prison medical staff probably the reason that i did so well was that i understood that the most important thing is to maintain the body s electrolytes calcium potassium sodium magnesium phosp hate and to consume just enough amino acids to supply neuro trans mitters if you merely drink water after a couple weeks you ll lose enough electrolytes to cause an imbalance and you ll feel terrible most people attribute this to not eating but i learned that it s actually due to the electrolyte imbalance not the lack of calories at the time the longest hunger strike i d ever heard of was referred to in the capote book in cold blood by perry smith in the early s days i could probably have gone two more months,0 +image romania drumuri svg hey nice work on the image i would update the image myself but i don t know how so here is what found missing on your image based on the maps at this link lugoj sibiu on a ploiesti focsani on a cluj south motorway bucharest ring motorway also i did not find any reference about the focsani bacau sector that you labeled as planned cheers,0 +liar this guy is such a thief and a liar he should be quartered,0 +copyright problem intonarumori hello and welcome to wikipedia we welcome and appreciate your contributions such as intonarumori but we regretfully cannot accept copyrighted text or images borrowed from either web sites or printed material this article appears to be a copy from http w thereminvox com article articleview and therefore a copyright violation the copyrighted text has been or will soon be deleted while we appreciate contributions we must require all contributors to understand and comply with our copyright policy wikipedia takes copyright violations very seriously and persistent violators are liable to be block from editing if you believe that the article is not a copyright violation or if you have permission from the copyright holder to release the content freely under allowance license then you should do one of the following if you have permission from the author to release the text under the creative commons attribution sharealike license cc by sa leave a message explaining the details at talk intonarumori and send an email with confirmation of permission to permissions en at wikimedia dot org make sure you quote the exact page name intonarumori in your email see wikipedia requesting copyright permission for instructions if a note on the original website states that re use is permitted under the creative commons attribution sharealike license cc by sa version or that the material is released into the public domain leave a note at talk intonarumori with a link to where we can find that note if you own the copyright to the material send an e mail from an address associated with the original publication to permissions en at wikimedia dot org or a postal message to the wikimedia foundation permitting re use under the creative commons attribution sharealike license and gnu free documentation license and note that you have done so on talk intonarumori see wikipedia donating copyrighted materials for instructions it may also be necessary for the text be modified to have an encyclopedic tone and to follow wikipedia article layout for more information on wikipedia s policies see wikipedia s policies and guidelines if you would like to begin working on a new version of the article you may do so at this temporary page leave a note at talk intonarumori saying you have done so and an administrator will move the new article into place once the issue is resolved thank you and please feel welcome to continue contributing to wikipedia happy editing talk,0 +classic logical error on my part i don t know myself on the possible sources and do know who to ask so will try to remember to,0 +don t leave any more harassing messages on my page,0 +title why does the title use the article la,0 +improper usage of this talk page ok i know i shouldn t use talk pages like this however my mini schnauzer is now and starting to be a little bit old not quite as active as she used to be is all the diabetes etc stuff true what are the warniing signs,0 +sabbath bloody sabbath wrongly placed warning not a single apology for that,0 +this poll while doubtless entertaining to bbc audience in england and perhaps of some interest is not a conventional poll and certainly no reputable polling organization would offer such results as a scientific measure of pubic sentiment further it s presented as if it reflects a historical trend in public opinion as if according to a scientific measurement scott s popularity had declined over a period of time however there are no comparable measures from previous years presented presumably because there aren t any had the bbc conducted a similar call in program in etc perhaps scott would have been more popular in earlier years i bet in earlier years he would have ranked much higher than boy george et alia than during early century broadcast poll am i at least partly stating a semi plausible case for why this may be non useful information,0 +the romanization of thai names is a pain there are lots of different schemes and even though there is one official scheme which has many weaknesses see royal thai general system of trans cription by far not all texts from government follow it especially on websites there is a list of recommended spellings yet i somehow cannot find the link right now but at least for the letters i think i have followed that list i don t know by which rule the buri which means town is spelled with blank or without it s confusing me as well as soon as i find that list again i will check again if i did all spelling correctly mar utc,0 +stop making up information please,0 +hi i removed erudite pomposity from vfd as it has already been deleted by mar utc,0 +people removed my edits without explanation and later with accusations of vandalism that s extremely uncivil have you left them warnings as well because yes i do get very hostile when my work is slandered as for your removal of my post on the talk page you should read up on wp tpo specifically the basic rule with some specific exceptions outlined below is that you should not edit or delete the comments of other editors without their permission,0 +are we getting a bit informal in the sentence here in the first quarter of ian kerr left his position as ceo to be replaced by bert pijls egg is managed under the blanket of citi emea which essentially means that bert controls all citi operations within europe the middle east and asia when formulating strategy using bert seems a little too informal presuming it is his first name any thoughts,0 +i m not incorrect labor cost is labor itself the cost of building anything is the labor itself that you exerted to build it if you charge more labor for something that took less labor to build then you re not being equitable according to warren it s very simple and straightforward,0 +sudomonas note please sign your posts with certainly upsampling by will increase your bandwidth by but your original signal won t fill the extra bandwidth mar utc,0 +expert overhaul desperately needed expert overhaul of this really quite poorly written article is desperately needed the neutrino will for several months if not years be the focus of one of the highest stakes scientific investingations of all time it follows that wiki s article on the topic should be rigorously accurate coherent and up to date and copiously detailed such standards cannot be met by the usual edit crowd of nattering amateurs let us try to obtain the services of both experimental and theoretical professional working physicists and give them editing freedom and protection to provide for site needs,0 +merger proposal i propose that list of deans of ilr school be merged into cornell university ilr school i think that the list could easily be just a table in the history section of this article and theschool article is of a reasonable size in which the merging of list of deans will not cause any problems as far as article size or undue weight is concerned,0 +just a quick note i found the bug after posting this so please reply there talk,0 +reverting vandalism wow the first vandalism to my userpage thanks for reverting it a,0 +sandygeorgia with respect to the catholic church article and the good faith editors who respectfully disagree with karanacs positions you really have too much to say you are not even engaged in the article and barely know what is happening as revealed in your rejected arbcom complaint your persistent harrassment of me and xandar is bordering on bullying please stop cradling karanacs and defending her behaviour because a true friend helps their friend be a better person not hide their faults all i have ever done with karanacs is tell her when she has twice crossed the line that dispute is between karanacs and myself it is none of your business as for the cc fac one of the reasons why i think its progress has been stalled is because of karanacs and that is why i complained to her talk,0 +so this argument you re employing is something you support that is hardly a credible source compared to fas globalsecurity finance yahoo cnbc the likes but you re giving more validity to person it s like an argument we should support the humint that people claims that the pentagon admits that wp is a chemical weapon valid sources matter not a site that a person agrees with this is not yours or as you re trying to make it,0 +image tagging image sangesar a h jpg this media may be deleted thanks for uploading image sangesar a h jpg i notice the image page currently doesn t specify who created the content so the copyright status is unclear if you have not created this media yourself then there needs to be an argument why we have the right to use the media on wikipedia see copyright tagging below if you have not created the media yourself then it needs to be specified where it was found i e in most cases link to the website where it was taken from and the terms of use for content from that page if the media also doesn t have a copyright tag then one should be added if you created took the picture audio or video then the tag can be used to release it under the gfdl if you believe the media qualifies as fair use consider reading fair use and then use a tag such as or one of the other tags listed at wikipedia image copyright tags fair use see wikipedia image copyright tags for the full list of copyright tags that you can use if you have uploaded other media consider checking that you have specified their source and copyright tagged them too you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any unsourced and untagged images will be deleted one week after they have been uploaded as described on criteria for speedy deletion if you have any questions please ask them at the image legality questions page thank you,0 +changing use of nickname to proper article title in various pages on various football related pages the word socceroos is used occasionally as a link word to this article but occasionally simply the word itself with no links i have changed these examples to using the wikipedia title australia national association football team we don t go around calling the st george illawarra dragons the red v the penrith panthers the chocolate soldiers nor do we refer to the gws project as afl s vietnam or the canberra giants there is no need to use a nickname have put this here just in case anyone feels they need to complain about my edits,0 +you do you know you come across as a giant prick,0 +most anarchists recognize the existence and differences between individualist anarchists anarcho syndicalists collectivist anarchists anarcho capitalists etc you are correct that most definitions use the word government but you need to acknowledge that they mean state and not simply voluntary governance iow when people use government they mean state in this context see definitions above,0 +hi johhny the problem with and then gang up and then vote to delete my work as original research hypocrites is of course that your work does classify as original research and screaming marxism doesn t really add to your credibility either,0 +to expand on one aspect of that wikipedia s three main content policies are wp neutral point of view which peridon mentioned wp verifiability all quotations and any material challenged or likely to be challenged must be attributed to a reliable published source the threshold for inclusion in wikipedia is verifiability not truth whether readers can check that material in wikipedia has already been published by a reliable source not whether editors think it is true wp no original research the term original research or is used on wikipedia to refer to material such as facts allegations and ideas for which no reliable published source exists the last two mean that content based on your extensive participation in two of the three events making me very knowledgeable of what occurred both in public and private with a bare minimum of conjecture is not acceptable as a basis for additions to the article i hope your question is adequately answered so i have turned off the helpme please add another if you need more advice regards,0 +regarding edits made during april utc adding unrelated external links to articles is considered vandalism if you continue to use wikipedia for advertising you will be block from editing if this is an ip address and it is shared by multiple users ignore this warning if you were not the one who added spam links talk,0 +ltrades archive december to february march to october arbcom election rfc courtesy notice a request for comment that may interest you is currently in progress at wikipedia requests for comment arbitration committee if you have already p,0 +first of all let s use proper english there is turkic as adjective and there is turkic people as noun in modern english there is no turkics in english as a noun azerbaijanis by far is the rightest terminology if you want to emphesize the ancient periods azerbaijani still should be fine because azerbaijani is a new term for turks who used to live in old days only azeris have lived in or near modern armenia kars igdir which are in armenian border of turkey are all populated and used to be populated by ethnic azeris and then some kurds there is no known fact of anatolian turks living in or near modern armenia,0 +x water supply by using existing resources sidramappa shivashanksr dharane dr dr sidramappa gmail com mo bitch x water supply is possible by using existing resources the small supply of water in the bore wells can be used effectively the existing pumps can be used with one regulator to adjust the capacity of pump speed as per the supply of water in the bore wells which will maintain the continuity of flow thereby the main principle of getting maximum water from the bore can be achieved i e q outlet q inlet all the bore wells which are not in use because of its small supply of water will also start to function as per their capacities of inlet discharge,0 +if memory serves then his appearance in that episode was non speaking and he was just briefly seen,0 +educational leadership,0 +thank you all we ll all improve the wikipedia in dear all thanks for the warm wishes and all the emails that came in while i was at the new year s vacation now that i checked back for what has been going on in the last ten days while i was away the situation seems hopeful indeed the bunch of scandalous action inspired by the secretive plottings are still being discusses and widely condemned and i see i see a strong momentum of the community of the wikipedia editors to finally put a decisive end to the secretive activity at the closed channels followed by the drastically insulting onwiki actions i am also hopeful that the new arbcom will act on the recent developments happy new to all,0 +you are saying david leeming is fringe mythologist is lying to defend his pov,0 +actually what we were referring to as the lead is the lead statement for the history section sitush has himself mentioned here that andre wink is reliable and we both had reached consensus on tej ram sharm ass tatements in our earlier discussions now in his absence if you have any valid reason to remove reliably sourced content you are welcome to discuss in fact i have great faith on you as a logical and neutral editor please note that sitush could not come up with any counter opinion as evident from the above discussions it would be great if sitush joins back the discussions but since he has not left any message therefore we have to move on please go through the sources cited and let me know if you have any issues thanks,0 +i feel like i can t improve upon this interaction while not understanding from the people involved the person i said it to and who did the block hours after the conversation was over if as said that blocks are meant to be preventative not punitive then i think its fair for me to ask questions about it to see where the situation went wrong when i posted that message and i still haven t heard from the block admin that its content was the issue i thought i was making an attempt to improve upon the interaction with this editor by trying to speak with him on a sincere and personal human to human level and made the comment on his user page in order to make contact with the person rather than having us both resort to the standard drawn out wiki procedures so far at least on wiki that editor has had no reaction to what i said while people visiting my page here after the block have had incredibly intense reactions i just have to ask if its fair that i be punished so intensely for their reactions to what i said especially when there is a power disparity with them able to block based on their reactions and me only able to appeal on this page,0 +there was much more you revertis than juste the punic if you wish changi that then changu that alone but anyway you must discuss the changes on the talk page first i not introduce the idea that it is punic i am clarifying what the article already sayas,0 +sure i ll take a picture of myself giving you the middle finger because that s what i think about the jackoffs that have ruined my page for anyone who is actually a fan of lance cade just tell me where to send my finger,0 +thanks for your kind reply i think the articles you ve got to fa are quite decent really but the only gripe i have is with inline citations which is now an fa requirement thanks for being so nice about it though,0 +ha ha you got banned from editing just like before you republican loser what a shame lol,0 +potd notification hi freddy just to let you know that the featured picture file leucospermum cultivar edit jpg is due to make an appearance as picture of the day on june if you get a chance you can check and improve the caption at template potd chat,0 +you better sleep with an eye open you don t know which way the trouble will come from shit bag,0 +napoleon zervas dear helladios can you stop deleting my input you have no right to censore someone elses opinion you are not god napoleon zervas his behaviour was questionable and important for the prosecution of the cham albanians,0 +no thats not correct i am asking that another admin editor or two besides or including you be assigned this article as you have said you are in to deep and have taken sides obviously in your edits you are personally involved with editing i have said that the article is being controlled by a cabal i have shown how that is happening i have listed a number of areas that are down right misleading or wrong in the article the most recent being the whole beginning of this article which starts the whole thing off with wrong information i have given information on how that is so also by phrasing your question the way your did as a double negative it is wondered why you would give a negative response you are not addressing the facts i have brought up such as why the ttcd is a stand alone separate link when it has its own special box already linked on the techinc site i could go on but i think you get the idea check what i had to say again please,0 +well as we see the withdraw issue have absoultlly no impact on the batte yes units where to be withdrawn and the sources pressented by tbma dosent etiher support this case,0 +very good and certainly better than the original may utc,0 +ia i s population the population of iasi is estimated to be over here are my sources i would like to hear your opinions about this arthur june,0 +tenet is not an albanian google tenet greek anywhere tenet would be embarassed if you considered an intelligent man like him an albo,0 +has he called himself a nazi or is that just what an opponent called him look untwirl i have been a socialist my entire life but i will not put down someone i don t like as right wing life to more complex than that sometimes i like those right wingers better than my political friends who often act like jerk s,0 +in other words it is your beliefs that say aziz is not a christian it is your belief that the bible defines what a christian is your belief that failure to follow the bible makes someone not be a christian and your belief that aziz did not attempt to follow the bible,0 +yep i got it coming lad lass thanks for calling me on itmy family is old len apiwe just take this stuff for granted and get pissed that it has to be sanctified by somebody elsepeople who misquote the mis quoters like donehoo i m working on a book now first in family to get the phd to finally have the street cred to back it up anyway schowanneck white writers have gotten this wrong for years con means rock in most eroni languages can means pole can a da for example means buried pole place or house or town the can a da at con esto ga was south of itat present washington boro north of it was con e wa ga or rock and water place whites call this falls up north can ee en ka mean sharp stone place flint it s where the mohawks lived ti con a wa ga means two stone and water place anyway the white sanctification will come from zeisbergerbut remember nobody ever wrote the language of the people of conestoga down they were southern eroni breakaways from ononda ga and onon yot ah da and that aint in no book written by a schwanneck that s why i won t put it into wiki because that part needs to be sanctified by my book after it goes through its white approval process because lord knows we can t know our own story gah hey thanks for doing what you do,0 +blogs about you i found this and from text seems that perhaps this text realy written by you this is your photo nawlin or somebody imited you,0 +annoying ur like really annoying we need to talk about how you can improve the way you act towards others thanks,0 +why why are you so adhd,0 +good luck joining forces with tom butler i ll thank you to stay off the eric lerner article page from now on thanks a lot,0 +ani hello this message is being sent to inform you that there is currently a discussion at wikipedia administrators noticeboard incidents regarding violation of wp own wp agf and wp civil the thread is bridge boy the discussion is about the topic straight two engine thank you,0 +my dad is you dumb snail of a kid,0 +june utc we should add the root course for the greek debt crisis joining the euro without sufficient financial convergence and competitiveness shouldn t we,0 +and don t worry about abuse from fatuous fistula as his cod latin name implies he s not the sharpest tool in the box,0 +unfair portrail of james overall this is a fantastic film on charles but it sort of portrays james negatively as the few times he is on screen he is throwing a hissy fit is there any way we can mention in the article that is might be an unfair view of james,0 +this is weird thanks for improving the article ayaka asai which i created together with tomoyo kurosawa and moe toyota a few months ago i noticed a very odd error though her agency profile says that she had a role in the pok mon theatrical short pikachu and its eevee friends as glacia glaceon as a pok mon fan myself i immediately noticed some discrepancies this website and the movie credits give the voice actress for the said role as akeno watanabe itself an article needing immediate attention i m confused in fact the said role was included in my edit that created the article but as you can see with this edit i removed it for the reasons i mentioned above could the agency have made a mistake tccsdnew,0 +i would not like to see this section created it s trite and unnecessary,0 +thanks i m willing to accept just to clarify on the details by administrative divisions do you mean topics relating to association of british counties and controversial topics regarding what is and isn t a current border i m not sure i entirely understand the second condition if you could explain am i allowed to fill out my part on the arbitration case presented in full regards,0 +funny stuff really funny stuff maybe the funniest stuff all year have fun editing master admin cheers,0 +as well best regards,0 +followed by user makecat so they have aids in china grats now the black supremacist user malik shabazz wants to get in on it well monkeys and all,0 +ok i think the lesser evils and torture sections of controversies do belong there as they are the most controversial aspects of ignatieff s career thus far you may remove them from the ideas section if you wish,0 +are there natural or nutraceutical inhibitors of mtor if so and if either scientifically verified or suggested that should definitely be included in the article with the proper qualifiers if verified say verified if only suggested say suggested prior to any mention of such natural inhibitors,0 +also know as i don t think it should say also known as teenage wastleland i think it should say often mislabed as teenage wasteland it is also the most mislabled song of all time that should be somewhere on the page if you need proof go on google and put in rolling stone baba o riley or vh baba o riley,0 +wouldn t there have to have been a first warning for this to be my last i can see there is no iq test for becoming an admin,0 +mercaz harav means a combination of military and religious trianing kook was founder of the fanatical jew ish chauvinists group gush emunim,0 +present laughter having played garry in present laughter on stage i can assure you that the actual script states he has just turned forty i suspect the version you saw altered the script to accommodate the actual age of the actor this is not unusual and i have been in plays myself where it has been done,0 +triceratops of course user puncharoo read my page first,0 +where is poland there is no reference to the polish lithuanian commonwealth i added a couple sentences despite the fact that the events were of great relevance to the poles and several battles were fought in the western part of the country the province of silesia was ethnically polish with german and czech minorities lied directly between poland and saxony whose king was elected king of the commonwealth a commentary by a knowledgeable historian would help the country could field armies of tens of thousands yet remained neutral when its main ally saxony was being destroyed while prussia grew on the backbone of the old polish provinces to attain the status of a major power,0 +in the anime she had a true star seed and was a senshi but never trans formed probly,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia questions ask me on my talk page or ask your question and then place helpme before the question on your talk page again welcome talk to me,0 +more to the point the science has changed quite a bit someone s views on an obsolete state of the science are irrelevant to the current debate,0 +is bale turned around and told you he felt more welsh than english and classified himself as welsh what would your anti welsh stance be then numbnuts i hope you are hunted down by a welsh hate mob and castrated and forced to eat your small testicles,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia questions ask me on my talk page or place helpme on your talk page and someone will show up shortly to answer your questions again welcome talk contribs,0 +who s that isn t he our alleged leader who is allegedly interested in producing content,0 +i ve told you if you don t know how to edit then don t edit i have no time reverting all of your edits and use the preview button to see your edits before add them,0 +well if i were you i d look around a little bit and you ll know just who i am as for hungarian nationalism i m not even hungarian and what is wrong with it you act like being hungarian is a bad thing r g,0 +ceremonies at mindrolling monastery vajrasattva drubchen th day of st lunar month the vajrasattva drubchen is a seven day ceremony based on the minling dorsem or mindrolling vajrasattva ritual minling dorsem is part of the vajrasattva cycle of teachings discovered by chogyal terdag lingpa the drubchen is held every year for seven days beginning on the th day of the st lunar month this grand ceremony is performed to purify the negativities of all sentient beings particularly of the deceased on the th day of the st lunar month sangha gathers to perform a special ceremony for those who have died within the previous year kagyed drubchen th day of st lunar month beginning the th day of the st lunar month the drubchen is a ten day ceremony it is based on the kagyed de sang du pa terma that is one of the treasure teachings discovered by the renowned terton nyang ral nyima woezer and later revived by terdag lingpa when terdag lingpa was about to pass into parinirvana it is said that he asked his disciples and sangha members not to weep but to realize the truth of impermanence he then instructed them that if they had devotion for him and truly wanted to benefit beings they should do the kagyed ceremony each year this he said would benefit the dharma and all sentient beings in accordance with the instructions of the great bodhisattva from that time on the kagyed drubchen has been held every year now being performed at the mindrolling monastery in india the final day of the ceremony is on the nd day of the nd lunar month which is the parinirvana day of terdag lingpa there are lama dances in the evenings of each day s ceremony the drubchen ends in the evening of the rd day of the nd lunar month with the ritual of bgodrub lenchog the receiving of siddhis ceremony and marme monlam butter lamp ceremony these are open to the public tsechu drubchen th day of nd lunar month since the heat in india makes it impossible for the dances in this ceremony to be performed in the th lunar month as they were in tibet this drubchen is held for three days beginning on the th day of the nd lunar month the tsechu drubchen marks the birth of guru padmasambhava and is done in accordance with the terma lama sangha which was discovered by the great treasure master guru chowang and later revived by terdag lingpa on the th day of the nd lunar month a full day s lama dance is performed in accordance with the ritual of lama sangdu these lama dances are renowned for their blessings and are the foremost examples of the lama dances in tibet in their original form many people come from all over to receive the blessings of this great ritual on the next day his holiness mindrolling trichen would bestow a long life empowerment to the public in order to dispel the obstacles and difficulties in the coming year the tradition has been observed down to the present day since the tsechu drubchen was performed in mindrolling it has been an opportunity both for everyone to receive the blessings of the mindrolling trichen and for the coming together of the monastic and lay sangha saga dawa drubchen th day of th month this drubchen held on the th day of the th lunar month marks the birth enlightenment and mahaparinirvana of shakyamuni buddha one of the most important occasions throughtout the buddhist world special prayers rituals and butter lamp offerings are made during the ceremony tel da tsechu th day of th lunar month this auspicious ceremony marks the birth of the guru mahaguru padmasambhava this drubchen is performed for three days in accordance with the lama sangdu text from the th to the th day of the th lunar month suring the drubhcen secial feast practices are done and the tsog feast offerings is distributed to the general community yarne the summer retreat th day of th lunar month to th day of the th lunar month this is the rain retreat for one and a half months from the th day of the th lunar month to the th day of th lunar month the retreat is held in accordance with the instructions of the buddha in the vinayana sutra directingall monks to observe certain restrictions and engage themselves in meditation and practices for the period khenpos and lopons give teachings each day and so jong or confessions are offered by the sangha during this retreat many butter lamps are offered and pujas are done during the retreat on the evening of the th the last day of the retreat selected monks give teachings and expound the dharma to the community the retreat is usually followed by a day holiday break for the monks drubchen for the nine dharmapalas th day of th lunar month,0 +importance low film needs cast section,0 +pillars hi just to check is this edit actually by you or is that an unknown anon copying and pasting the first sig from the page thanks,0 +i m really baffled why do you always linger around a site that you never contribute to,0 +nvm i think i fixed it cheers,0 +i m sure there must be some confusion in the related arrest article it says he had a sex toy in his boot however the wikipedia entry has interpreted this as and also had sex toys in his shoes i m sure the boot was a car boot,0 +thanks for holding off a single redirect tends to work properly where we can run into trouble is with double redirects for example after the move restore earlier tonight a few pages were redirecting from tno to nonstellar body to planet the redirect stops after one redirect so instead of an infobox those articles just displayed a link it is better to determine the name and then make the changes across the board so that we can be sure there are no problems chatspy,0 +re fair use excuse me i could ve swore every single mac app wikipedia page has x icons if this isn t the case i m very sorry we both know this is the case though don t we thanks for your input not,0 +further the block was placed long hours after any discussions or responses had occurred while i was in fact asleep this also shows that the block was intended not to be within the scope of policy but simply as a retaliatory vindictive attack blocks should not be used in retaliation against users to disparage other users as punishment against users or where there is no current conduct issue of concern,0 +take a look at taxpayer march on washington and talk taxpayer march on washington this discussion has been had negative actions signs by attendees or semi organizers are included it appears that,0 +there are many inaccurate statements being posted here far too many i don t have time to correct all of them the bnp was modernised by nick griffin and has no links to holocaust denial or nazi sm digging up or year old quotes is irrelevant you can do that for all parties as many change their ideology the modern labour party are not the traditional labour party just how the conservative party are no longer traditional conservative tories during the heydey of the british empire the conservatives were pro imperialistic and supported the colonisation of other countries do you think the modern conservatives under cameron support that another example the green party in uk used to strongly oppose drugs yet now they support drug use and want to ban the prohibition of drugs and support the possession trade and cultivation of cannabis so they went from being anti drug to pro drug the modern bnp has no links to holocaust denial secondly the comment about nick griffin and the raf bombings is a typical distortion of what he said by anti bnper s what nick actually said is that the raf should not have bombed german innocents children and woman as many were murdered in the bombing of dresden likewise he also opposed the bombing of innocent british civilians by the nazi s also the last claim modern bnp members sieg heil i presume was a comical claim it has no basis in fact bnp are strongly against nazi sm and fascism if you want a real fascist organisation that would be the uaf unite against freedom who attack bnp members with clawhammers and other weapons etc is that democratic you might not like someone elses political views but that doesn t give you a right to go out and attack them violently,0 +third knight can i please know how you can promote a pawn to knight in international chess,0 +oh wait never mind it was you,0 +i need a word with him user puncharoo read my page first,0 +mate when i was training to be rnmh one thing they stressed above anything was that mental handicap definitely is not a medical condition in fact one of the main things taught to us was that the medical model was a poor model for the care of mentally handicapped people because the model is based on treatment and mentally handicapped people cannot be cured a model based on normalisation or social role valorization is more appropriate how can such a vast collecion of disorders abilities be a single medical condition i don t mean to be contrary and must admit to having left the profession some years ago jun utc,0 +saying that someone lies and then explaining why is a personal attack hypocrite and nationalist is a personal attack besides mr arpad called others nationalists several times why do not you block him,0 +a simple article indicating its history will suffice up mindanao is the sixth and newest autonomous unit of the university of the philippines system established on february through republic act its mission is to bring to the people of mindanao the up standard of academic excellence and commitment to academic freedom social responsibility and nationalism subsequently the board of trustees of the u p system formally created u p mindanao on march,0 +hitler was innocent there are several groups that want to rewrite history to make germany the innocent player a particulary fine example of this nonsense is some of this article reads a bit weasily that germany was on the back foot and had to attack i particularly note that the article stated that hitler made a peace offer before the battle i changed this to on october he may have made some type of peace offer to both western powers any statement along these lines needs to be made very carefully what were the offers and what are the sources for the information,0 +in all my time working on celebrity bios i ve never seen anyone described as having a feline it s always cat anyway i added bill rebane the source for the other person doesn t really say he s estonian but if you add him i am not going to bother to revert at this point,0 +reigning monarch i am by no means an expert on french domestic politics but something tells me that sarkozy should not be listed under category reigning monarchs if somebody with admin status could rectify this i would be grateful thanks,0 +help me please i am now mad i need to calm down m yes and now i am typing so fast it s going to spew out like a fishery in a door mat postal service creating a new article is a fuck ing doodle not it took me two hours to read through various information and put in biographies and shit for corpse fuck ing art and what do they do fuck ing facists deleted in within secs i saved it and this is what i got change the stuff with me help before i like fuck them up with another poem so far corpse fuck ing art c f a are an brutal death metal deathgrind band from italy formed in their lyrics focuses mainly on gore and humor biography the band was formed in rome in with the first line up max gurgling andrea guitars fabio bass marco drums under a different name enthralment and recorded their first demo called eulogy of burning christ the official sound was a slow and brutal death metal influenced by immolation and incantation cryptic soul productions signed enthralment released the accursed in divinity however the sound contained in the new tracks were defenitely more brutal oriented as the musical direction was no longer the same as the beginning it was useless to keep the old name the one choosen for this new form of madness was corpsegod with a different name but same line up they recorded in the mini cd opinion about sorrow released by torture records the mini cd contained tracks of original and strange brutal death metal ultrabrutal riffing with techno and industrial parts splatter movies opinion about sorrow a really vanguard record compared to the others on the death metal scene though the passion for the ultrabrutal death metal in the band was getting higher and higher the old line up went to create a new band totally devoted to the brutal death metal without compromises a new band was born then corpse fuck ing art from the old line up andrea and max were still there after recording a tracks promo with the new line up massimo guitar marcello drums edo bass and the track molesting the corpse for the underground splatter movie sick o pathic soundtrack the band played as support for cannibal corpse and immolation for a show in rome corpse fuck ing art recorded their debut cd named a puzzle of flesh for the italian label sterminio productions nine tracks of blasting ultrabrutal death metal without mercy an inhuman voice and a blasting riffing made a puzzle of flesh known in the underground in the line up changed again andrea the only member from the first line up joined up with marco bass and stuart drums they recorded a new split cd with goretrade zombiecronomicon distributed by coagulated records in april united guttural records took the license by coagulated records and restamped the split cd with goretrade released with a completely new artwork after being offered a contract by forever underground corpse fuck ing art entered the studio to record their new full length splatter deluxe with the new second guitarist marco riccardi between the recording and the long wait to the new cd to be out the band takes part in a lot of live performances including festival in frankfurt with lividity gorerotted inhumate pigstry nunwhore commando mastic scum master and damnable and the rest of europe in places like sweden france and italy the band is currently in recording a new studio album and is aspected to come out early members paolo chiti vocals andrea cipolla guitar marco aromatario,0 +thank you for your help on wp uw the working man s barnstar yet an other barnstar this time to thank you for all your contributions to wp uw keep up the good work and i am definitely going to check these scripts of yours they seem impressive talk,0 +hug sorry to hear that the buffy fac has got you down it feels like this damned place keeps devouring the people i most enjoy seeing on the watchlist take a break if when you need to but please don t burn out have a donut tok,0 +wikipedia requests for comment kmweber i have deleted this rfc as it has not been certified by the requisite editors,0 +both are the same inferior race according to their history,0 +puma energy hi beagel hope you re well puma energy has made a couple of forays into new markets namely uk and colombia see here on the talk page if you could have look and let me know what you think that d be great many thanks,0 +japanese second world war crimes can the debatable information regarding to japanese war crimes please be contained to articles on such matters this article is about japan as a whole and is not a forum on japanese war crimes if that is what you seek i suggest you use such forums available on the internet instead,0 +the altered photo actually looks worse like she s had a tattoo removed with laser treatment or something it doesn t match the other side of her face it looks as though their photo editing skills are just as bad as their text never mind,0 +there is nothing in eric s response that indicates he has taken offense and there is nothing hysterical although there was no need to mention anatomical features re talking down if it s not that it s just misguided to characterize taking the article on an important author to fa as important to you as if eric chose the article randomly and might have picked plumbers don t wear ties what contradictory statement rather than poking eric it would be better to identify some content that is missing due to a gender gap,0 +the use of the union jack in this article is ridiculous all flags should be removed to take away the opportunity for political point scoring like this,0 +are you speaking of this query thanks,0 +you yourself defined troll as a personal attack if arbcom wish to engage in personal attacks that is their business user veesicle,0 +oh and the couples that i support are sonicxamy tailsxcream knucklesxrouge silverxblaze jetxwave chaosxtikal s l j c o a a a t r so we have one couple in common there is only one other person i know of that supports omegaxnicole f,0 +the biggest dick licker on the planet earth,0 +the ediacaran has been upgraded to a bonafide geologic period http news bbc co uk hi science nature stm therefore it will have to be squeezed in between the cambrian and neoproterozoic may utc,0 +the author of lotr clearly intended it to be a single book and it was sold as one concurrently with the three volume editions as soon as it became popular enough to be economically feasible the utilitarian separation of the book into three volumes does not seem to me to be sufficient reason to declare it to be three separate books this is in stark contrast with rowling s books which have been published sequentially separated by years in between them and are considered by everyone including the author and publisher to be separate books entirely i agree that the individual books deserve a place on this list inasmuch as they merit one and that the series as a whole belongs on the series page i hope we can put this matter to rest now thank you for your time,0 +the last game andr s guardado played for mexico was on august so i added that date and it s august not august the last game he played for valencia also first was today august i added that will add now a ref to storyline the exclamation points were exaggerated yes but not an insult desculpa s queria ajudar podes ir wp footy e vemos no que d,0 +sephiroth in kingdom hearts i don t have anything against gay dudes but it really ticks me off that in kingdom hearts he was played by a gay guy sorry if i offended anyone sephiroth is not supposed to sound like that i don t have anything against gay dudes anyone else have comments,0 +you are now a reviewer hello your account has been granted the reviewer userright allowing you to review other users edits on certain flagged pages pending changes also known as flagged protection is currently undergoing a two month trial scheduled to end august reviewers can review edits made by users who are not autoconfirmed to articles placed under pending changes pending changes is applied to only a small number of articles similarly to how semi protection is applied but in a more controlled way for the trial the list of articles with pending changes awaiting review is located at special oldreviewedpages when reviewing edits should be accepted if they are not obvious vandalism or blp violations and not clearly problematic in light of the reason given for protection see wikipedia reviewing process more detailed documentation and guidelines can be found here if you do not want this userright you may ask any administrator to remove it for you at any time,0 +the books of maccabees and the gospels refer to the land and nation as israel throughout this period and the term is still used in acts the hasmonean kingdom was certainly not called judaea as this ia a latinized name and the hasmoneans are prior to the roman period similarly as explained in the article it was only after herod the great that the roman expanded the usage of their term judaea to include more or less the entire region that herod had ruled maccabees and the nt are the primary sources referring to the land and nation as israel for a modern academic publication secondary source see for example king herod a persecuted persecutor a case study in psychohistory and psychobiography by aryeh kasher eliezer witztum walter de gruyter where herod is clearly referred to as king of israel and e g a survey of israel s history by leon james wood david o brien zondervan which refers to the hasmonean ruling over israel or say the holocaust roots history and aftermath david crowe westview press which similarly speaks of hasmonean israel,0 +dispute resolution welcomed personal attacks and your anger at w hate ver is not helpful nor reasonable your actions only strengthens my case and validate the included thesis of irrational hindrance in this field of study protected status will be sought,0 +main page balance regarding this edit are you certain that removing it improves main page balance even after the latest dyk update which is slightly longer than the one preceding it it doesn t seem that way to me having checked on both firefox and internet explorer perhaps it has to do with our font size difference,0 +this is the page about blackberrys if you like to use the social networking fun then get this phone also good for email and web browsing also its got internet but i think android internet is slower than blackberry so it would be a good source to search the internet and download ringtones and wallpapers you can store your files on the blackberry so if you need to look at them they have a file app in the folder called applications well that is all i know about blackberries for now i have only had this phone for less than a month and still have to pay service for next month to find out any more,0 +i still cannot edit this article and the information doesn t appear to have been added when will this article be unlocked i thought wikipedia is the encyclopedia anyone can edit,0 +the list of danish monarchs is the main page nice to say i m impolite when it s not me going around and hunting ip addresses as somehow suspicious of vandalism by default learn to think before you accuse nov utc,0 +nuisance hello there just being a bit of a nuisance until i am block,0 +apparently someone should worry a bit more about what they should have learned in high school and less about how you are teaching the correct link to the discussion i referred is review this block of a teacher again my regrets at how some of my colleagues are acting,0 +you too go away better yet run away,0 +this site is not a list of who has been banned on your forum by the way so remove it,0 +introduction as per version april if no objection by april i will remove the tag the lead section of this article may need to be rewritten,0 +i dont know where to put this pentagon briefing on removal of god gene has anybody seen this or anything http w youtube com watch v nadfjlaggny,0 +question i m sorry i should have called you mr phelps from the start to call you by your christian first name was certainly uncivil now please mr phelps tell us why you did it tell us why you did wtc you receieved a testimony didn t you you either received a testimony or you just hate our freedom perhaps the testimony told you to hate our freedom is that it mr phelps is that why you did wtc,0 +stop messing with my page i could have your account deleted from here with one phonecall you know just back off trust me it is simply not worth it,0 +if the nav box doesn t point to an article it should not be in that article tablemannersc t,0 +merry christmas i m going to be away for a while so px left is wishing you a merry christmas this greeting and season promotes wikilove and hopefully this note has made your day a little better spread the wikilove by wishing another user a merry christmas whether it be someone you have had disagreements with in the past a good friend or just some random person happy new year spread the christmas cheer by adding to their talk page with a friendly message thanks for your help this year i look forward to working together next year,0 +hello your doing a bang up job at attempting to portray professor busby as a fringe scientist i disagree with your changes oz,0 +no one likes u from wat i ve read alot of people dont like wat ur doing deleting well written articles u should be taken off wikipedia i guess u will block me for speakin the truth,0 +the wp airlines is only a suggestion it is not policy guess what outside of your flight sim community the average user of wiki does not care about destinations and my edit improves the article and still allows people interested in destinations to click the show wp airlines is not policy it is a suggestion maybe you should care more about the introduction and history section of articles instead of the destination and fleet size both of which are to minimal interest to the average public,0 +be a content moderator thanks,0 +if you are interested in contributing more to kayaking or canoeing related articles you may want to join wikiproject kayaking,0 +someone has done that now sigh that would be a reasonable drv close if the article existed but we have a redlink article the solution to that is straightforward enough restore only the last revision and protect it i ll propose this at an i,0 +hello i am hannahbutterface,0 +support this is the name he uses on his shirt is most commonly called by in the english speaking world and press and it is what his official teamsheet says per wp commonname can we just move it to freddie already talk,0 +i appreciate your efforts but i have to ask do we really care who plays him he s a dog and sometimes an animatronic puppet he s not in the opening credits so is it really necessary to list his name,0 +warning templates on other s reverts sorry about that but i find many editors revert without warning the perp what leads to me leaving a message on another editor s revert is when we both do the same revert but the other editor hits return a second or two before i do since i m already on the history page i look to see if a warning was added i generally try to wait a bit before saving the warning but as i say a lot of warnings would not be left if i just assumed reverting editors were going to leave one incidentally i sometimes get edit conflicts on a perp s talk page from an editor warning on a different instance of vandalism sometimes even to the same page some of them crank out the garbage edits at an amazing rate anyway sorry if it puzzled you talk,0 +ain t bothering me i m not required to sign my posts edit i didn t specifically threaten anyone and your blowing it out of control it was a snide comment if i said i m going to kill him in a fire thats different saying i m going to church to pray that he gets cancer or dies in a fire is more of a sarchastic tone pity you can t see that no matter bump it up to weeks now just cause you can,0 +got it thanks talk phils,0 +rense why is tom harrison posting articles from rense as representative of the truth movement researchers rense is never linked to from the main websites never appears at conferences never has done a book on and promotes hoaxes that of the researchers have openly exposed like the jew s did it claim that tom keeps trying to smear everyone with holocaust deniers push hoaxes that sabotage truth movement w review com denial holocaust html holocaust denial versus truth etc find one significant site not a ufo hoax site like rense which is obviously not a site that promotes the idea that silverstein being jew ish had anything to do with his being focused on go ahead and show me no significant site would ever promote this because we are not anti semites as much as it is tom s goal to smear this group of activists with ufo and anti semitic writings he s posted rense around before but it does not represent the movement,0 +keep your trash out of my personal page or else you ll have big problems,0 +stop the interwiki tags are the difference have you even looked on the other wikipedia and even considered wikipedia would be better off having the article in english dr blofeld,0 +so everytime i reset my modem my ip changes fuck you petty sexless ugly ass desperate no life no status in society ass retentive wiki admins the site is great but the lower level admins have no life and can t handle the little authority they have it tells you how small and pathetic their lives are if i get block ill be on in seconds with a new ip or the pizza is free cheers,0 +urination as a physiological function,0 +wikipedia requests for adminship sfgiants you asked in wikipedia requests for adminship sfgiants tradmark of what see san francisco giants commonly known as the sf giants note that wp un previously explicitly cited new york yankees as an example of a prohibited username tc,0 +and i ve left some advice and links btw you did an astonishingly good job breaking down what was wrong with the edits to r i that was a lot of work and i thank you i was dreading that when i got back today chihuahua,0 +bryan adams politician man i am sick of this ip range vandalizing this article could you protect it or do some kind of blocking if it s not too late thanks,0 +oppose until the actual new version is published while it should no doubt be reflected in the article that this change is under consideration i don t know whether it s really necessary to have it merged as soon as some slight information about the draft is found,0 +why does nobody post anything on my talk that s weird how do you access someone else s page and comment on it i m new help squeakybird,0 +manusmriti please stop if you continue to vandalize pages as you did to manusmriti you will be block from editing wikipedia,0 +mark manly bertrand a proposed deletion template has been added to the article mark manly bertrand suggesting that it be deleted according to the proposed deletion process all contributions are appreciated but this article may not satisfy wikipedia s criteria for inclusion and the deletion notice should explain why see also what wikipedia is not and wikipedia s deletion policy you may prevent the proposed deletion by removing the notice but please explain why you disagree with the proposed deletion in your edit summary or on its talk page also please consider improving the article to address the issues raised even though removing the deletion notice will prevent deletion through the proposed deletion process the article may still be deleted if it matches any of the speedy deletion criteria or it can be sent to articles for deletion where it may be deleted if consensus to delete is reached if you agree with the deletion of the article and you are the only person who has made substantial edits to the page please add to the top of mark manly bertrand talk,0 +this is not a treasure hunt nor a mystery the information is located in the back of the technocracy study course http technocracy incorporated wikispaces com space showimage technocracy study guide pdf technocracy study guide pdf application pdf object that information was boiled down and presented there it is that simple why turn this into a mysterious adventure when it is not the pertinent information is there that is the energy survey it is the relevant facts regarding the resource base of north america north america contains about of the worlds resource base that was the figure when the study course was published that figure is now higher due to the use of the rest of the world of their limited resource base,0 +please stop if you continue to vandalize wikipedia you will be block from editing talk,0 +redirect talk the suppression of religious houses act,0 +irc freenode net wikipedia host cloak i would like a wikipedia cloak on irc my irc nick is bsmntbombdood i have followed all the steps at wikipedia irc cloaks thanks,0 +absolutely this guy s more trouble than he s worth so make it an indef block,0 +apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we do not forget expect us apparently i wasn t clear enough the first time well it has been a while sine i your pompous flame diety has been here however it has come to my attention that you are not living up to our standards in otherwords fuck er you are out you live in paterson new jersey and use verizon internet services inc we are legion we do not forgive we d,0 +no problem i was thinking of creating yet another sockpuppet anyway i edit those comments in question because they contain a link to a hate site wherein the subject is my person since none of you boobs will do anything about it despite being informed repeatedly i had to take manners into my own hands sue me if you don t like it dorothy,0 +captions tell the history of an aircraft if you are going to have a picture of an aircraft then you need to tell its story and background this is only common sense if not for readability then for accuracy in reference if you were to google f this article is one of the first to be found so this make accuracy and completeness essential in these article and it does not add too much more in size if wikipedia was a dictionary then a simple caption would be ok but tbut wikipedia is more then it is becoming a valuable reference tool as such accuracy and details is essential,0 +unblock reason derogatory comments about other contributors may be removed by any editor the statement is not about content i ve added to this entry of which there isn t any to speak of i could have opinions and theories about his mother but i don t go around posting them instead user scray choose to post the following message and block me i don t see much evidence that this user is constructively engaged in improving this page or basing content on reliable sources this is equally as offensive as were the comments of the other editors nor is the statement even true you don t see much evidence because my properly sourced submissions are reverted i ask you or any other editor to show me one misuse of a source this is a a link to my last edit on the entry diff i include it as it was correctly sourced using per approved sources that had consensus and the changes concerning definitions in the entry were discussed on the talk page and also had consensus disruptive edit not an improvement that opinion is not supportable the changes were made to bring the entry into compliance with wp lead standards because the definitions were faulty now i ask you again what content have i submitted on that page that had an unreliable source as you ve alleged when blocking me you have made the same unfounded accusation as the other two editors regardless of what you think of another editor s edits keep that to your self if you post a derogatory comment about me and can t back up the statement you are lying too apparently simply in an attempt to damage my credibility it is that simple now i formally ask you to point out the reference are referring to in your negative posts about me this is not a difference of opinion it is a fabrication and a personal attack upon my credibility comment on content not on the contributor you commented on both and were not truthful in your comment about the content and sources derogatory comments about other contributors may be removed by any editor instead you added more of them in addition for like the fourth time this person decides to call me a full blown believer and pusher of this conspiracy theory which i repeatedly denied i took offense both other editors received talk messages from me after you came along one editor user dbrodbeck apologized for his statement i appreciate that and accept his apology and will tell him so when un block the other person user brangifer received a call for truce on his talk page but refused to retract his comment he has repeated attacked my credibility and now has thrown out a serious accusation without one shred of foundation or substance and banned me from his talk page his badgering continues on the entry talk page without apology or any shred of anything to substantiate his offensive comment to have user scray come along and say stuff like regardless of what you think of another editor s edits name calling a personal attack won t go well i did not call a name i called a spade a spade and gave good evidence that i was calling it as it presented itself i did not comment on his edits i commented the fact that he did not consider my reference to articles from the washington post san francisco chronicle associated press and national archives of the government of canada to be reliable sources unbelievably you seem be echoing his position i probably won t post this elsewhere but if you can t show me an example of using a poor source on that page it is obvious that you have also posted the same fabrication about me in reference to sources anyone who fabricates or perpetuates or posts derogatory information is a liar liars cannot be trusted and lying editors compromise the integrity of wp user scray said i don t see much evidence that this user is constructively engaged in improving this page or basing content on reliable sources user scray needs to show me where evidence was seen by him that had i based something in the entry on an unreliable source user scray can not substantiate the posted comment the made if you don t prove it with an example then your statement is a lie if you find yourself in this situation then you are a liar and you have personally attacked this editors credibility if that is the case i d,0 +al fateh hi i noted that you nominated al fateh for deletion i have fixed that nomination by completing steps two and three of the afd process as the discussion was not appearing on the log page i have posted you this message for your information and for your future deletion nominations,0 +i am not in a feud with anybody and i do not believe that i have any political opponents if an admin reinstates disruption by others that admin should be block for disruption himself why do you believe that no action should be taken against obvious personal attacks such as the one that triggered my block,0 +trans formers rescue boots family game night tv series family game night,0 +now i see that off riorob is also undoing your edit twenty o i think he didn t read the discussion here or the note that you put on your edit where it was explained that his rendering would not confirm was a distortion of what was said in the source,0 +the article david clary albemarle has been speedily deleted from wikipedia this was done because the article seemed to be about a real person organization band club company etc or web content but it did not indicate how or why the subject is notable that is why an article about that subject should be included in wikipedia under the criteria for speedy deletion articles that do not indicate the notability of the subject may be deleted at any time if you can indicate why the subject is really notable you are free to re create the article making sure to cite any verifiable sources please see the guidelines for what is generally accepted as notable and for specific types of articles you may want to check out our criteria for biographies for web sites for musicians or for companies feel free to leave a note on my talk page if you have any questions about this,0 +you reverted me and gave a reason when i called it external links i reverted you and gave a reason again i don t see the dispute now if you read verifiability self published sources are reliable published sources at the other end of the reliability scale lie personal websites weblogs blogs bulletin boards and usenet posts which are not acceptable as sources rare exceptions may be when a well known professional person or acknowledged expert in a relevant field has set up a personal website using his or her real name even then we should proceed with caution because the information has been self published which means it has not been subject to any independent form of fact checking so if the person who wrote this can be found to be an acknowledged expert in a relevent feild then it can be a reference if he has not then it can not simple,0 +caliber the film has another team called caliber rather than calibre is that team supposed to be american,0 +yes indeed well done you have just destroyed many years of work and comprimsing really great work you have created what not so many have done before you have created chaos,0 +as far as i know the macedonians were greek i didn t see this passage but i believe you it doesn t alter the fact that athens was the source though alexander himself had thorough greek education,0 +hello wht is this all about cause i have no idea what your talking bout so please stop writing me honey pooh,0 +you taking money from r gamerghazi and continuing to edit gamergate related articles is out of line,0 +welcome welcome to wikipedia my name is ryan aka i noticed that you were new and haven t received any messages yet i just wanted to see how you were doing wikipedia can be a little intimidating at first since it uses different formatting than other sites that use html and css in the long run though you ll find that the wikisyntax is a lot easier and faster than those other ways here are a few links to get you started how to edit a page editing policy conduct and structure tutorial picture tutorial how to write a great article there are a lot of policies and guides to read but i highly recommend reading over those first if you have any questions feel free to leave me a message on my talk page please be sure to sign your name on talk using four tildes to produce your name and the current date along with a link to your user page this way others know when you left a message and how to find you it s easier than having to type out your name right i hope you enjoy contributing to wikipedia we can use all the help we can get have a nice day sincerely august utc,0 +stop pushing pov here only the hindu speculated without source crore as revenue remember enthiran is the biggest grosser in tamil not dasa taran adarsh estimated enthiran s gross at crore so dasa must be lower than that,0 +preceding unsigned comment added by talk contribs youtube is not considered a reliable source please see wp reliable and wp youtube,0 +image angelg png has been listed for deletion an image or media file you uploaded image angelg png has been listed at wikipedia images and media for deletion please look there to see why this is you may have to search for the title of the image to find its entry if you are interested in it not being deleted thank you,0 +s okay the kid s courting another block if you ask me if you think it necessary i ll warn him but warning him has done very little good in the past,0 +exercise reports your call for consensus is foolish and short sighted the idea of drawing conclusions from exercises is very much flawed for all the reasons given ad nauseum consensus cannot change facts wikipedia is not taken very seriously as it is why add ammunition georgie cannot keep such a large block virtually all of the east coast on verizon s network block forever once the blocks are removed there will be a revision and edit war all over again signed you know who,0 +external links you are currently engaged in a revert war over a link that you have not made a single arguement on the talk page to justify or remove wp el does not require the link to contain information not in any other wikipedia article but to contain information relevant to the current article that could not be covered in it once it reaches featured article status which cr does cr provides a more detailed timeline then can ever be provided inside the article and further that is shown simpyl by the existence of a timeline article if the information in cr could be included in the article we would not have a split off article obviously so i ask you to participate on the talk page and use wikipedia guidelines and policies to make your arguement as it would be more pursuasive then simply reverting without explanation based on more then personal opinion and feelings thank you,0 +sure just take a look at wikipedia requests for adminship jj talk,0 +may utc as far as i know it has been stated that several universes do not fit into the actual accepted universe of wold newton which integrates with the dc comics universe thanks to alan moore thus marvel only corresponds to the universe due to the cross over connections or with the exception of steven rogers and peter parker whose worlds do not clash with the dc universe chronology as for star wars it is speculated that it could be linked to the wold newton universe only star wars takes place in an entirely different future past element basically a universe that predates that of the earth and tolkien s universe is also out of context due to the complex mythology that has no links outside of its realm the same applies to dungeons dragons world of warcraft and warhammer however the world of faeries is related thanks to king arthur and shakespeare as well as c s lewis and hans christian anderson brothers grimm harry potter s world also doesn t tie in to the wold newton as far as i have seen and as for looney tunes and disney the only way they might tie in is through who framed roger rabbit which has as of yet to be linked of course this is still a lot of debate as to what fits in and what doesn t the only reason i added the list was to inform the reader as to why the characters from those universes or worlds were not present perhaps it could be stated that although they are not accepted within the universe it is yet to be seen whether or not they are truly acknowledged as being apart from it as a whole piecraft,0 +under the guise of attempting,0 +so far nobody s reverted me so that gives me hope meantime let me pick your brain on a broader related issue in recent years wikipedia has likely gained in importance as a vetting tool for employers clients and others considering doing business with someone naturally the one doing the vetting has the lion s share of responsibility in judging an entry s reliability and supplementing it with other research that said do we bear some degree of ethical obligation to researchers to ensure an entry presents as far as possible an accurate well rounded picture of the subject in the case of ms caesar i was concerned that universities or other organizations looking to employ her and or give her some sort of public platform would come away with the impression that nothing about her merits further scrutiny what are your thoughts,0 +i said i would do that correct but i notice the other party also did not do that innocent until proven guilty why do you take the side of the wikipedian it is simply because s he has taken the time to register for an account i mean is that really fair until the other user states his her side can t we just leave it locked or without the offending content it makes me so irate that i have to keep coming back to this page defending my thoughts can t you take a neutral side and decide for yourself what needs to be done anyway,0 +copyright issues please do not claim to be the author of works you are not the author of if you continue to do so you risk being block,0 +if and when a second season is announced i would split that information and the episode list to agents of s h i e l d season,0 +ozzie cheers for being a little more alert than me didn t notice the version i was reverting to was vadalised too,0 +dubstar singer s accent i ve just replied to your question about sarah blackwood from dubstar s accent at talk dubstar don t know if you re watching the page since you asked the question last november so thought i d let you know,0 +cvu on irc hi this is just to let you know that the counter vandalism unit has a presence on irc and we d love you to join us you can get to the channel with the following link use the blue link to open the wikipedia cvu channel in your current irc client if you have one or use the green link for a handy irc web client if you d like to find out more about wikipedia on irc then check out the irc page on meta or contact me on my talk page please also extend this invitation to any active cvu cvua members you know as irc is a great way to communicate and coordinate thanks i hope to see you there soon talk contribs,0 +go to article bayt nattif at the article s talk page there,0 +history any reason why it s called andrew,0 +hm perhaps the last statement needs some rewording after all maybe dalit christians do not hold as much arable land as the upper caste christians is better,0 +utc and still it suddenly turned out that they had indeed sold more outside the us march,0 +okay a question it is a fact that over rds of the coutry is rural then isn tit obvious that atleast half will be obc sc sts,0 +communication preferences use email for casual contact and faster response to questions queries and interactive discussions,0 +i stronly disagree with you i am simply replying to what he said if i said something wrong delete that not everything i deeply and reject your reply i also put back all other conversation other leave because in the meantime you revert and others leave it you have no manners and ethics at all,0 +posted on the discussion page at utc on november,0 +also another thing i m not sure about but anyone with a stronger knowledge on the group can affirm it based on their debut s album cover and photos of the group it looks as if they were initially a quartet can anyone with the first album find who this fourth member was,0 +ol e was not invented by czech nationalists it was invented by polish teachers from galicia who came to teach on the newly established polish high school in teschen established in and thought olza is not polish enough other names suggested by these teachers were olszawa ol ava in old czech maps etc i really start to get annoyed by the nationalistic rubbish you keep on inserting here darwinek,0 +please do not vandalize pages as you did with this edit to tire if you continue to do so you will be block from editing,0 +inre wikipedia articles for deletion live the nominator changed his vote to keep and noted in one of his edit summaries that notability has been established the original article has been greatly improved and there are no delete votes care to close as speedy keep michael q,0 +the first division is included but only for years when it was the top tier of english football the top tier is the only relevant level if you want to include second division titles you re really only acknowledging that one club was in the second division longer than the other and that s not anything worth shouting about and would you please stop talking about major trophies they re just trophies there s nothing major or minor about them jay,0 +canterbury why remove reference to pallium as charge wiki s own archbishop of canterbury has a depiction of the arms which have historically been impaled with the bishop s own arms as his new personal escutcheon,0 +cannot decipher and punitive actions as to the other complaints against me i obtained a user name about the time i was being block for hours for multiple reverts this block was supposedly sent to a talk page that i never registered my ipa talk page and would not use if i could help it i would prefer not to broadcast my ipa later when i autosigned which left my ipa behind as a signature i believed i was logged on as dylan hunt and certainly not trying to hide behind an ipa common sense should suggest that no one would hide behind an ipa since these are more public than a user name,0 +welcome hello dparisi and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are a few good links for newcomers the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you have any questions check out wikipedia where to ask a question again welcome,0 +musings hey friday while block the past two days i read through your subpages things like admin etc they are great i m burning out on this project editing can be a lot of fun but in the recent past i ve received so many hassles from editors following me around and admins interpreting policies liberally in order to block me i also saw that i m not the only one who s been on the receiving end of this i ve seen it all but its too long to go into here i m not sure if these are new trends or just something i haven t spent the time to look into before mere editors really have little recourse in this filing arbitration proved exhausting for me in the past it required a huge amount of diff hunting and discussion for what seemed to me was a pretty obvious case of an out of line editor filing against an admin would i assume be much much worse admins seem to behave like inner city police with their wall of silence a lot of your comments show that you ve noticed the same happenings in an ideal world i think you are right people would behave reasonably but i am pessimistic that will happen i have come to the conclusion that the only solution is to firm up wikis policies we need to define what something like disruption is when someone is block for a personal attack the diff should be included that a requirement for including evidence is controversial is evidence that it time for change we ve tried the trust admins to do what is right it has failed,0 +fair use rationale for image a to z butterfinger jpg thanks for uploading or contributing to image a to z butterfinger jpg i notice the image page specifies that the image is being used under fair use but there is no explanation or rationale as to why its use in wikipedia articles constitutes fair use in addition to the boilerplate fair use template you must also write out on the image description page a specific explanation or rationale for why using this image in each article is consistent with fair use suggestions on how to do so can be found here please go to the image description page and edit it to include a fair use rationale using one of the templates at wikipedia fair use rationale guideline is an easy way to ensure that your image is in compliance with wikipedia policy but remember that you must complete the template do not simply insert a blank template on an image page if you have uploaded other fair use media consider checking that you have specified the fair use rationale on those pages too you can find a list of image pages you have edited by clicking on the my contributions link it is located at the very top of any wikipedia page when you are logged in and then selecting image from the dropdown box note that any non free media lacking such an explanation will be deleted one week after they have been uploaded as described on criteria for speedy deletion if you have any questions please ask them at the media copyright questions page thank you,0 +inserting dead link i inserted the links because they re not dead just malfunctioning and figured somebody would repair them,0 +and use the confusing redundent yet common phrase north america not refering to the continent either of two reasons a desire to place the united states last on the list by manipulating the names of regions to exploit the fair use of alphabetization to make the us hard to find simply an oversight well nobody replied so i renamed the section on territories and regions to u n subregions it s amazing that this list puts the united states last even though it has most of the people and of the area is someone trying to de emphasize america s importance no it s just in alphabetical order talk about any info in this article about the use of the term as if it meant exclusively canada and the united states yes in the human geography section namely the rd paragraph other related terms are also treated in that sxn talk central americans are not north americans we are own people and we are not northerners we are seperate from them and are nothing like them you can try to correct me but the people who say that we are north americans are white folk who try to keep us down and sometimes other ignorant groups of people i will never surrender to being north american and nor should any other central american should ever buy into this i don t care what the white man tells us they re not us we should be able to decide for ourselves who we are and no else should tell us who to be this is just another way of bringing us down i am proud of being central american and being someone who inhabited this land long before the white people made contact with us if we have been living here for the longest time should it not be us who decides who we want to be tito a mart nez this is a lovely essay but unfortunately you cannot undeclare yourself a north american any more easily than you can underclare yourself an earthling central america happens to be located in north america so central americans are north americans it s a geographical thing not a cultural thing perhaps you re thinking of latin america and anglo america actually tito can undeclare himself if you ll check the spanish wikipedia articles on central america and north america you will see that spanish language defines north americ ass outhern most country as mexico es norteam rica redirects to es am rica del norte which lists the lists the following political units in north to south order greenland canada united states mexico note that central america is not on this list wilyd is also right as far as english language goes north america includes mexico and central america i think america terminology should provide a better explanation than it currently does a section on english vs spanish terminology would help i don t speak spanish but i studied french in high school and can sometimes puzzle out the meaning maybe i ll recruit some bilingual wikipedians to help me write this okay but i ll claim the fatal flaw here is this am rica del norte is a spanish term that is different from the english term north america tito may not be a norteamericano although i don t think he declares himself here either doesn t spanish have an equivilent to l academie but he s still north american actually i don t think north american is an identity that applies to latin americans his country if it s in central america is a part of the north american continent but the cultural division is what he s concerned about want to help me update america terminology i think america terminology reflects correct english usage maybe use of the word american is a better place to move these kind of complaints although i m actively involved in that article and know it ll get shot down as original research roughly speaking there aren t political continents wikipedia has articles on anglo america not that i m convinced the term exists in contrast,0 +how can i get a last warning and then get banned straight away without doing anything further obvious harassment,0 +please do not add links back to your site wp el is very clear on this you need to suggest the link on the talkpage and other editors will then decide if it should be included i will remove any attempts to re add the link in accordance with policy,0 +for the umpteenth time i understand you re making me angry you can remove my personal info but not the no israel and christian fiction userboxes i have the right to post those,0 +you forget we some times keep entire litters you assume we sell them all which is incorrect what you don t realize is a serious breeding program has to keep a number of dogs from every litter for evaluation purposes like i said i am not a dog breeder for business it is a passion that costs more than it brings in but hey why am i telling you this you obviously are not interested in the truth,0 +well you could for instance beef up this with that cheers,0 +then who was phone,0 +ok you says that have created a local file information page for a file on commons so how do i do that regards pd the grande s article needs actual images if this can fix i hope that it can,0 +please feel free to e mail me,0 +if you would click on the photo you would know that it was taken january th there is a strong chance that he was under the influence of marijuana as he seemed kind of out it which would explain the expression on his face,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay if you are stuck and looking for help please come to the wikipedia boot camp where experienced wikipedians can answer any queries you have or you can just type helpme on your user talk page and someone will show up shortly to answer your questions here are a few good links for newcomers the five pillars of wikipedia wikipedia in eight words how to edit a page help pages tutorial how to write a great article manual of style my faq page glossary what wikipedia is not requested articles reference desk assume good faith sandbox this page is for testing i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia where to ask a question ask me or an experienced wikipedian like and and leave your message on our talk page again welcome if you want to tell me something or if you just want to say hi leave your message under the talk section of my talk page once you ve become an experienced wikipedian please take your time to visit these pages esperanza counter vandalism unit wikipedia kindness campaign department of fun community justice anonymous crusher of hopes and dreams,0 +may utc prince felix of schwarzenburg is at the right location his uncle and then his cousin was the f rst while felix s position all of his life was that of a prinz this distinction is tougher for families where all used f rst like wrede and also titles like herzog and graf but it is easily determined i am as certain as you are about alfred i because you moved him to the numeral and the only royalty who used numerals other than the heinrichs reuss were the heads of houses and families friedrich johannes jacob celestin von schwarzenberg has the wrong nobiliary particle anyway he was zu not von he was also a junior prince because he had an older brother who outlived him who was also the prince john adolph ii i don t mind leaving the german von or zu for princes of territories if the title isn t used for instance felix zu schwarzenburg and prince felix of schwarzenburg would both be acceptable but not a mixture adolph von auersperg had an older brother who died after him but a source i have gives adolph s title as f rst which wouldn t make sense i would leave him be for now and ask on his page if he was head of the house prince karl of auersperg is actually the brother in question so logic would mean that he was the f rst but again i would ask on the page charles,0 +true i ve been off topic but i insist that by logic protestors who perceive china as a dictatorship is not the equlivalent or represent anti dictatorial protestors i ve never even heard of such a thing sounds more like political framing would those who protest the perceived dictatorship in saudi arabia go on to protest against china rarely anti dictatorial is not a single classification it should not even be a classification in my opinion i would suggest a more lengthy wording e g supporters who call for more individual freedom in china,0 +why do you think i am a troll,0 +if the phenomenon is bad then what caused the phenomenon is also bad i e if murder is bad so is the murderer nobody i ve ever heard from said that the stagflation of the s was good and the stagflation of the s was mostl y caused be federal reserve policies deflation is much maligned by federal reserve through its control of th economic profession the us did much better economically in the s under deflation then after and the feds inflation the reason that the fed pushes inflation is that it provides a shelter from criticism of its theft of property through the wealth trans fer effect of inflation the one doing the money printing inflating will always defend the process because it makes him rich,0 +speedy deletion of vanilla french band a tag has been placed on vanilla french band requesting that it be speedily deleted from wikipedia this has been done under section a of the criteria for speedy deletion because the article appears to be about a band but it does not indicate how or why the subject is notable that is why an article about that subject should be included in an encyclopedia under the criteria for speedy deletion articles that do not indicate the subject s importance or significance may be deleted at any time please see the guidelines for what is generally accepted as notable as well as our subject specific notability guideline for musical topics if you think that this notice was placed here in error you may contest the deletion by adding to the top of the page that has been nominated for deletion just below the existing speedy deletion or db tag coupled with adding a note on the talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would would render it more in conformance with wikipedia s policies and guidelines lastly please note that if the article does get deleted you can contact one of these admins to request that a copy be emailed to you,0 +there you go hopefully enough to satisfy those dreadful fa reviewers fatuorum,0 +looks good of course those like me who occasionally browse through the old issues will now have to browse the archive,0 +entirely correct per the source move on send over,0 +business economic topics in quebec,0 +stop it stop deleting stuff i am fixing i was not done fixing the spring valley high school page,0 +this article is not like an encyclopedia at all their overall strangeness the legend grows this seems like a fanzine not an encyclopedia headline text,0 +mid race updates just a thought do we really need to update the page for each mid race retirement isn t that a bit unnuccessary why not just update it once at the end of the race,0 +artile name exactly why is this article called sir mervyn manningham buller rd baronet and not mervyn manningham buller,0 +there are restrictions on primary documents they can only be used for facts if you have a site that you can upload to fine otherwise you can try wikisource and then link from there,0 +it is very likely these will be moving soon to the hurricane wiki you may want to establish an account over there so your name isn t just a red link when this moves,0 +maybe the sentence should be changed to the largest population trans fer in european history or one of the largest population trans fers in history,0 +why is the lingo doublespeak racist word contractors used instead of the precise english word mercenaries this is an encyclopedia not a press release wikipedia is not supposed to be the house organ of any one government but this article uses a lingo doublespeak racist term that the usa uses to describe mercenaries of any country other than a predominantly caucasian political ally wikipedia should be filtering out spin words an trans lating them into proper english i suggest that contractor only be used for unarmed non military non police contractors this simple rule should apply if the term mercenary would be used to describe the job or person if the person were being paid by an agency working for an african government the term mercenary should be used to describe the job or person working for a non african government end the racism speak in plain english this is an encyclopedia not a press release,0 +recap i decided to withhold further comment until i had some sleep and time to critique the logic behind your deletion decision i am delaying a trip this morning so that i can provide you with a response to your statement supporting deletion your supporting statement for deletion is as follows the result was delete the deletion argument was that this is original research when the article title is used to describe an algorithm and that the references do not support the notability of the subject despite the verbose nature of the opposing comment these arguments were not clearly refuted the use of socks to give the appearance of greater support is also extremely problematic and i have counted those opinions as being from user julie dancer kevin talk as for the deletion argument was that this is original research when the article title is used to describe an algorithm in reality the article title names a type of classification which arranges attributes in order of their significance within the deletion discussion itself the calim is made by at that other algorithms exist namely examples of relevant works are a fast bottom up decision tree pruning algorithm with near optimal generalization and an efficient algorithm for optimal pruning of decision trees which are capable of performing the function the article title names if this is accurate then the right way to handle a necessary correction would be to add these algorithms to the article instead of nominating the article for deletion in anticipation of these other algorithms being added i immediately changed the body of the text to read the algorithm used for this purpose to one algorithm used for this purpose since i do not now have access to the article s history as the result of your deletion i can not give you the exact date and time however it was prior to the end of the deletion discussion incidentally it has been suggested by a professor at cornell that deleting the article was for the purpose of eliminating the article history normally as a wikipedia user i would expect other users who have an issue with such wording to correct it themselves as this is one reason the wikipedia was setup this way the wikipedia still claims to be the free encyclopedia that anyone can edit the impression i have now is that while there were an abundance of editors in the beginning who edited articles that there is now an abundance of spoiled children who expect articles to be perfect from the beginning or for someone else to edit them they simply do not understand that each article is considered to be a work in progress and the wikipedia being an opportunity to learn how to write and to edit rather than being completed instead of doing any work themselves they find it much easier to go around deleting articles which remain incomplete or have not yet reached a state of perfection especially a maintenance edit like adding an inline reference that would require them to do any real work themselves as for references not supporting the notability of the subject you can not logically make this statement without reading the reference or references first and you certainly can not follow this with a statement like despite the verbose nature of the opposing comment these arguments were not clearly refuted all of the arguments supporting deletion are clearly refuted in the text of the primary reference to which i deferred just as you saying that a stop light was green in a court of law when you did not look at the light would be a lie so would be claiming the reference did not support notability when you did not read it i know you did not read the primary reference because all arguments supporting deletion are clearly refuted by the both the primary reference and the references it contains as for the use of socks to give the appearance of greater support is also extremely problematic this shows you did not read or comprehend the response i made in the deletion discussion or only scanned it i explained that each of the user names were created so that i could track the use of my own resources better similar to the need on the part of the wikipedia to require bots to have their own user name even though several may be owned by the same user eventually at least one of my computes will be used to accommodate bots but currently i am able to meet all of my needs by downloading the wikipedia and mining it off line since the existence of the alternate user names was stated and known by all from the beginning of the deletion discussion there is no w,0 +hello marcruhwedell and welcome to wikipedia welcome to wikipedia i hope you enjoy the encyclopedia and want to stay as a first step you may wish to read the introduction if you have any questions feel free to ask me at my talk page i m happy to help or you can ask your question at the new contributors help page here are some more resources to help you as you explore and contribute to the world s largest encyclopedia finding your way around table of contents department directory need help questions a guide on where to ask questions cheatsheet quick reference on wikipedia s mark up codes wikipedia s pillars an overview of wikipedia s foundations the simplified ruleset a summary of wikipedia s most important rules how you can help contributing to wikipedia a guide on how you can help community portal wikipedia s hub of activity additional tips please sign your messages on talk pages with four tildes this will automatically insert your signature your username and a date stamp the button on the tool bar above wikipedia s text editing window also does this if you would like to play around with your new wiki skills the sandbox is for you good luck and have fun,0 +that s why i did cheers talk contribs,0 +no it s not a delayed reaction i just happened to read your wonderful warning yesterday unlike you i don t visit wikipedia everyday but i m surprised to see that you are too dense to figure that out idiot ha ha ha ha ha xd,0 +a slight difference with you i have to disagree with your comment above that some of b s actions border on censorship no some of his actions epitomize censorship and although i am generally quite reluctant to call for administrative procedures against anyone and am not at all knowledgeable about such procedures i think we need to get the ball rolling in this case as my late dad would have said the guy s an utter bird nobody editing on wikipedia should have to deal with this little napoleon nonsense,0 +nonsense the truth is no schools give sufficient information about anthroposophy on their websites but i ll challenge you to find some that do not links to information but actual information on the website i could easily take out the some and make the sentence a lot less weasly,0 +potential resource mexico s other challenge to burnish its brand can mexico help the world see past its escalating drug war and showcase all that it offers by clayton collins weekly edition editor of csmonitor com december,0 +please note that warnings are sanctioned by wp also see wp nlt thanks and happy editing,0 +unless the admin of stadiumarcadium com which is an unofficial fan website holds the copyright information for the picture he or she has no justification in allowing you to use the image on wikipedia i don t actually think you understand the licensing concept read over gnu free documentation license i m still going to remove the image unless you can prove the admin of the unofficial message board is indeed the copyright holder regards talk contribs,0 +in response to your threat on my user page what is a green thumb for getting pages deleted i m sorry you are taking this personally but your page was nowhere near appropriate for wikipedia and as you saw from the afd page there was strong consensus on that from other editors in addition i did not delete your page an administrator did as for the sockpuppets i did not make the initial report but i definitely added to it once again it was a wikipedia administrator that block the accounts after their investigation not me i am not an administrator and do not have the ability to delete pages block users etc you need to take your case to the admins involved instead of making silly threats against me,0 +your happiness or unhappiness is not the primary goal here writing a reliable trustworthy encyclopedia is currently you re not assisting in that goal in fact you are inhibiting it,0 +the short i what is rendering the swedish short i as in ipa based on this is the same sound as the short i in english hit or german mit and if you ask me these sounds are in no way similar to the swedish sound to me the swedish short i is simply the same in quality as the long i i e it should be i this is not the first time i ve seen this and i m curious to know where it comes from i feel it is an obvious error and yet it keeps on being repeated in various forums,0 +older talk at helpfile notes as notes,0 +oh please stop wasting our time if you believe your block is invalid you are free to request an unblock i seriously doubt anyone looking at your contribution log can come to any other conclusion,0 +notable wolofs el hadji diouf is a serer diouf or joof cannot be a wolof i will help you with more notable wolofs time permitting also diop or jobe is lebou not wolof although someone may be brought up in a wolof culture known as wolofization in senegambia it is by the father s name that determines the tribe of a person there a lots of notable wolof people and i will help you with that time permitting don t be discouraged though keep up the good job,0 +just my thoughts on iti doubt there is a definitive answer that would satisfy everyone and doubt that it is worth he effort to try to clarify in any great detail in some cases it is probably appropriate and actually used just like a surname in a legitimate but different broader sense than that used by our surname article and including patronymics in iceland or elsewhere by the person that s probably especially true of radio personalities with an on air name that is actually two given names but sounds like a given name and a last name i ve seen that happen quite often and that happens with various other stage names and pen names that are derived from given names but as a general rule no some like ann margret make it clear by normally using a hyphen the problem of course is that our articles especially the stubs and sub stubs often do not have enough information to make it clear what is going on if it is mary lou or something of the sort common combinations of given names where the second one is much rarer as a surname especially if it includes the actual surname in the article itself it should clearly be under m in any category the redirect which should be there or a dummy one if needed because otherwise it would be a disambiguation page could be categorized if the full name were desired in some categories and when that is done a note on the article page is helpful but in between there is a huge variety that you ll likely get some arguments about no matter how it is done a bigger problem is people with full names given in the article name yet indexed under just the first given name in all categories and there are lots of them even worse are those easter egg sortings under some nickname which doesn t even appear in the article s own name,0 +now i understand why you are so willing to forget about what class bogazici university belongs to let me remind you your alma mater has not even been ranked by times qs until ignored you see lost are we talking about english grammar with a third class turkish university graduate give me a break,0 +emphasis of terra in the lead the first paragraph of the lead was changed to the following earth latin terra is the third planet from the sun and is the largest of the terrestrial planets in the solar system in both diameter and mass home to a myriad of species including the dominant animal humans it is also referred to as the earth planet earth gaia the world and its official scientific name is the latin terra after the roman goddess terra it is the only planet in the solar system which is known commonly by an english trans lation of its actual latin name however the assertions about an official iau name are unsourced so it needs a valid citation otherwise i m not sure i see a valid need to place such an emphasis on the latin name of the planet talk,0 +that was me i struck it late last night my time at the end of a big edit but didn t want to start this discussion and then sign off it shows up the synthesis nicely eugene compared to you i know nothing about this stuff i came here because it was mentioned at fringe theories and it looked interesting i thought i might learn something i have a moderate level of interest in the early church i ve read crossan s essential jesus historical jesus and jesus a revolutionary biography robin lane fox s pagans and christians and the unauthorized version robert miller s ed the complete gospels annotated scholars version funk hoover jesus seminar s the five gospels ian wilson s jesus the evidence a n wilson s jesus michael goulder s a tale of two missions robert eisenman s james the brother of jesus and elaine pagels gnostic gospels can t lay my hands on it for the date not very closely and a long time ago so my knowledge is general i am relying on you and others for the specialist information that will make this a good article what i have brought here is a critical mind and an understanding of policy honed in editing a few medical articles where precision clarity and neutrality are crucial when i called this article crap the other day i was judging it on those criteria it is not clear and not neutral so i doubt its veracity as will anyone with half a mind who reads it it is a bad article if you want it to be good or featured i recommend you welcome me sv and the many other good editors who come here it could be at ga in two weeks,0 +the page is ok now all tags removed best isa,0 +it s obvious you don t know what you re talking about it s nuremberg in english not nuernberg if you can t get your arguement right don t say anything at all,0 +repost of free minds a tag has been placed on free minds requesting that it be speedily deleted from wikipedia this has been done because the article appears to be a repost of material that was previously deleted following a if you can indicate how free minds is different from the previously posted material or if you can indicate why this article should not be deleted i advise you to place the template underneath the other template on the article and also put a note on talk free minds saying why this article should stay an admin should check for such edits before deleting the article feel free to leave a note on my talk page if you have any questions about this please read our criteria for speedy deletion particularly item under general criteria please do not remove the speedy deletion tag yourself we welcome your help in trying to improve wikipedia and we request you to follow these instructions dil,0 +template prod take this personally is a regional figure of speech and a euphemistic idiom to boot it s confusing to people whose command of english is concrete or marginal the link to wp npa was meant to make the meaning clearer also there s no compelling reason not to link to it it s an important page that everyone should read at least once i m not dead set on the link but the idiomatic english should go there s already enough misunderstanding built into the deletion process talk,0 +your submission at articles for creation thank you for submitting an article at wikipedia articles for creation your submission has been reviewed and has been put on hold pending clarification or improvements from you or other editors please take a look and respond if possible you can find it at wikipedia talk articles for creation ucw zero tag team championship if there is no response within twenty four hours the request may be declined if this happens feel free to continue to work on the article and resubmit when you believe the concerns have been addressed thank you,0 +npov dispute just so this isn t lost by the two suspiciously tangential talk page sections added just above this one here is a minor sample of the current npov dispute over this article in my interpretation the early october version of this article was rewritten with a load of weasle words which downplay criticm of the phrase s usage and subtly play up the dubious narrative genre more mention of the possibility that the narrative genre is disinformation is needed the article should be explicitly clear that labeling an allegation a conspiracy theory is an attempt at dubiousness through association with the narrative genre also generally and commonly considered in the intro are incomplete and need to be fixed for npov the new version of the article seems to be saying a lot less than the old version we should go through the diff line by line did someone ever justify those massive changes though some of them were good t,0 +give a on them i inserted,0 +i understand your concern but i for one would be opposed just because of the amount of vandalism that i expect will be present here over the next few weeks t,0 +books for bibliography hey group here are several books that we should consider using in order to improve this article they are all available in the ubc library alvarez luis l pez conversaciones con miguel angel asturias madrid emesa giacoman helmy f ed homenaje a miguel angel asturias variaciones interpretativas en torno a su obra new york leon hill eladia miguel angel asturias lo ancestral en su obra literaria new york eliseo torres pilon de pacheco marta miguel angel asturias semblanza para el estudio de su vida y obra con una seleccion de poemas y prosas guatemala cultural centroamericana librer a proa s enz jimena genio y figura de miguel angel asturias buenos aires editorial universitaria de buenos aires sierra franco aurora miguel angel asturias en la literatura guatemala editorial istmo verdugo iber el car cter de la literatura hispanoamericana y la novel stica de miguel angel asturias guatemala editorial universitaria,0 +does anybody know what the outcome of the chicago pornography charges were have they gone to trial yet,0 +too many popular skits nearly every episode in the history of cs has been listed i think it needs to be trimmed down greatly not every funny skit was popular o dweeds popular moments history and blackzilla come to mind right away i think any more than about seven is overkill,0 +you re very foolish you know that right if you want confirmation just visit the official fc inter nazi onale milano webpage for news of his signing are you daft he has already been issued with a number at inter,0 +let me rephrase the point no hold on i ll just repeat myself instead since when was the british empire then a sovereign state imperatrix mundi,0 +notable alumni the venerable shi ming yi is currently under trial in the subordinate courts of singapore on charges of conspiracy misuse of funds and forgery should he still be listed even if he is notable in a negative sense reference http en wikipedia org wiki shi ming yi cite note,0 +greeks are indeed white people every european native including all southern europeans are white people and this is according to pretty much every white nationalist what hasselbach stated is laughable if he really did say that since the nordic national socialists were in the extreme minority hitler himself was far from nordic the nazi s indeed made some huge mistakes the anti slavic agenda was what ruined them but despite this these days neo nazi s generally include people from pretty much every european ethnic group including southern europeans and slavic people presently the term neo nazi is synonymous with white nationalist and doesn t necessarily refer to a belief in the nazi policies of the s and s,0 +evrik november,0 +someone wrote an article about you hey courcelles someone wrote an article about you,0 +thanks for the detailed explanation,0 +i should have guessed it seems all media is controlled i am disgusted that a site such as wiki would premote redoric and lies while smothering the truth i see where this is going everything that i posted was verifiable didn t mean to hurt your feelings biproduct of the truth,0 +congressman dan burton i needed some help on the dan burton page according to his congressional biography and indiana ballot his proper name is danny burton i find no evidence that his name is daniel he was actually born danny lee burton from all sources i am pretty new on wikipedia am i editing the page wrong or am i not following the proper channels thanks for any help,0 +oh really indian bio hello i was not talking about race ok what about you when you were attacking by saying wtf does it is a love quote you also attacked me by saying about my bad english you went to edit with two accounts ok sock puppetry if u forgot to log in then how could u edit the next article with your username and again you reverted my account by up address hello it doesn t make sense ok bcoz you were taking advantage and you thought nobody would understand you can remove edit without discussion so why i can t yanshui i would ask for his block in case of sock puppetry and i m even worried about,0 +oops i meant tw what s tw,0 +that s the common expression on internet fora for followers of judaism and citizens of israel who push for certain issues to be seen their way the fact of the matter is that jerusalem is not the internationally recognized capital of israel its status is yet to be determinded in negotiations with a future palestinian arab government of an independent and unoccupied palestine the personal opinions of jew s or israelis who want to depict the situation in a way sympathetic to them for obvious reasons cannot dictate the content of an internationally accessible article on wikipedia this is no propaganda platform and the want to post their minority opinion they should mark it as that,0 +response to the disappearance of madeleine mccann i reverted your edit because you give partial information not because of the wording i prefer what parts do not make sense the ones you deleted that says there is a joint working group stop saying it is bad english if it was just that you d fix it without removing information garcia added that when the pj is criticized then the british police are also criticized because of their close cooperation what you wrote does not make sense and it is a bad summary of the portuguese article it is not just close cooperation it was created a joint working group right from the start with the british police this is why the british police are also criticized just close cooperation they have with the interpol the europol and other police organizations no working group was created with them i hope it is clear several unfair critics were made to the methodology used by the portuguese police garcia defends that the number of abductions that results in murder is a decisive factor that determines the different investigation methodologies adopted by portuguese and british police other facts indirectly related to the different methodology personnel attacks were made to police officers because of the different methodology used referred to as forging evidence he gon alo amaral was the victim of personal attacks by the british media which not only questioned his honour as a policeman but also attacked him as a human being portugal has unsolved cases of missing children under including madeleine in spite of all the resources available and the different methodology the uk has unsolved cases of missing children under in the last four years national missing persons bureau it seems that the british methodology alone was not enough to solve these cases besides this the uk has a serious problem with child trafficking a serious problem with african children that just go missing no criticism was ever made to the lack of results of the investigation of the control risks group hired by the mcanns since may the investigation of the pj we ve stated all along has the most likely chance of us finding her something made them change their minds the use of a different methodology is not only used because there are very few cases where the abducted child dies portugal does not have the kind of serious problems with children s abduction and trafficking that the uk has i hope it was clearly written and the parts of it do not make sense start to make sense i am going to revert the edit you are welcome to correct any bad english not the information i am sure my portuguese is better than yours,0 +congratulations also from me for regaining the bit it was long past time and the reason i didn t vote is that i don t frequent rfa nowdays sorry,0 +p s on the whole we don t have articles starting with the argument we actually do when it is vital that we distinguish between two conceptually distinct but linguistically similar concepts the arts and art this is no different to the sea and sea,0 +dogged pride or something like that meh it comes and goes like the tides what no i m not bipolar oh god here come the deviants and the anti intellectuals again,0 +technocracy movement hello thanks for your message it is a clear rebuttal by a member which i have to take into account i m not really sure about the distinction he makes between managing machines and engineers replacing politics as i understand it engineers can replace politicians only insofar as politics become managing of machines not anymore of humans this by the way reminds marx engels administration of things which would replace politics this is an interesting subject which would need more time and analysis in the time being thanks for having provided an explanation regards,0 +block edit warring over negative comments to a user s talk page was bad enough the liar and hate monger is simply unacceptable i am personally involved how do you intend to back up this claim with because that s probably pertinent so as to verify it,0 +dear just plain bill please explain why you could ignore the fact that user michael bednarek couldn t have answered at all and moreover revert as if you were user michael bednarek and user spinningspark please explain why you cannot wait and see for a while only hours as mentioned above apparently your vandalism reverts have no reasonable reason as well as bednarek s and spinningspark s because you spinningspark and bednarek have left the lead unsourced that looks like evil vandalism and cruel personal attack with bald faced lies please explain why you could ignore your obvious contradictions lies please explain why you can think that disambiguation pages without necessary important lead can be helpful as an encyclopedia wp p please explain why you can think that disambiguation pages without necessary important lead can be written from a neutral point of view wp p and why you have tried to force us stop kind and quick witted human beings with common sense it seemed that and user spinningspark are cruel nazi s or facists unfortunately the third pillar of wp p says wikipedia is free content that anyone can edit use modify and distribute this means that wikipedias are not even admins private websites and that to revert other editors distributions unreasonably is not helpful and not preferable at all please explain why you can have been doing the contrary the forth pillar of wp p says editors should interact with each other in a respectful and civil manner please explain why you can have been doing the opposite the fifth pillar of wp p says wikipedia does not have firm rules please explain why you can have been saying and doing the contrary please explain why you can ignore all of wp p please explain why you can delete the most important lead which explains from its original meanings the important lead that you deleted unreasonably is below harmonic is originally an adjective relating to the combination of musical notes to create chords later becomes a noun meaning a soft high note played on a stringed instrument by not pressing the string all the way down please explain why you can leave the unsourced or sentence while unfairly accusing me of unsourced or the or lead you have left is below usually refers to the frequency components of a time varying signa please explain why you can express lie restore though in fact you ruin ed the lead apparently please explain why you didn t edit positively at all when you are not satisfied with others edits please explain why you cannot think your unreasonable deletings are obviously useless and harmful vandalism against other editors and readers please explain why you cannot be responsible at all for the tag for other uses see harmonic disambiguation in the article page harmonic if you can explain these fifteen questions at once within hours at the latest you have proved yourself to be the cruel personal attacker to be banned forever unfortunately,0 +thanks thanks for the barnstar that was unexpected and certainly not necessary but very much appreciated yeah i guess the wikicup has got my ga and dyk juices really flowing this month lol i appreciate your reviews your support and your kind words ter ka,0 +i think you re right jeanette reese was the fifth in the civil suit the article in the king encyclopedia online about browder v gay le says that she dropped out of the case in the first month february and nothing more it does not have an article about her,0 +page moved the bite fight wasn t an appropriate title funny but that doesn t work for an encyclopedia endlessdan,0 +the same is true for photos if you are not the creator of the photo it ll be hard to justify putting it on a public domain site like wikipedia talk,0 +thanks i m not used to wikipedia lol i m usually making minor edits but i saw oddly there was no catelyn so i typed it in and created it i still have to make some other adjustments like a reference heading etc talk,0 +don t delete referenced text,0 +your question regarding to spanish political parties during the second republic i ve added another reply to your question farewell,0 +since then passenger numbers have been in decline due partly to rising fares and the lower value of sterling and perhaps also influenced by growing awareness of the detrimental impact that aviation has on climate change this is rather humorous speculation but speculation nonetheless t c,0 +ignored my repeated requests asking why he thought my references were invalid which imo is,0 +in case it has never dawned on any of you all coats of arms are made up by someone somewhere at some point in time that is their nature their purpose is to serve as identifying symbols of the individuals or families who bear them coats of arms do not fall from the heavens ready made by the hand of the almighty they have to be created by mortal men for the purposes they are designed for in some countries the designing of such devices is heavily regulated in others such as the united states it is not but in either case all the coats of arms in existence are created fabrications made up by someone somewhere at some point in time and born by their owners as symbols of their iidentity,0 +hi i am very new to this and i am int he process of attempting to setup this wiki page on behalf of the band the breaking news this page is simply to provide information to the public regarding the formation of the band and the members in it there will be no attempt of advertising sales marketing as a result of this page i have added external links to allow members of the public to access content related to the band itself eg sample music and further information non of this external content if a chargeable service and if the band choose to go down the online sales avenue the links to any sales related pages will be removed from this wiki article lastly all i can advise is that i am new to this i am in the process of creating and wording this wiki page in accordance with your guidelines and will be retaining the page from public access until i can create the page correctly and comply with all rules i welcome all advice and guidelines available from you james,0 +questions and answers,0 +whole ariticle needs to br rewritten i believe this whole article needs to be rewritten fromntop to bottom in jumps around in a chronological sense thereby notbshowingbin a cohesive way how improvisational theatre has developed there is a lot of text devoted to thevwork of keith jonstone but his work is no more important than dozens of other writers moreover his importance is no where near as significant in the us as is the work of spolin shepherd sills and close and the rolenof io and the second city the article in it s present form looks like a hodge podge of sentences and paragraphs from many authors with no attention paid to consistency a rewrite would also avoid some duplication how does one initiate such a process who selects the person to take the first stab at it i would propose that michael golding of los angeles do the rewrite he has a masters degree in improvisation from nyu personally knows many of the people who have created modern improvisational theatre shepherd sills close halpern to name a few and is a professional writer his latest credit is for writing the film david shepherd a lifetime of improvisational theatre any thoughts,0 +i have no intention at all of doing such a thing point taken i hope,0 +dubai playoff according to this source green won it with a birdie not a par at the first extra hole,0 +cfc background akradecki image museum of flight alan some deleted image museum of flight seattle jpg as replaceable fair use now all we have on the museum of flight is one pic of the city of everett can you look into this and see if there is anything that can be done thanks done the image had originally been released by its creator into the public domain but somehow the tag got changed by an ip editor to promotional so a bot tagged it for deletion i ve restored it thanks i knew knowing an new admin would come in handy these tools are definitely cool oops i fogot to revet it back to the pic thanks for catching that i had the page on the diff when you restroed the pic so didn t realize i still need to revert embraer lineage alan could you look at embraer lineage and give me your opinion on the title from the embraer website it looks like it s called the lineage not just plain lineage muchas gracias i just finished adding the aircontent template to the embraer e jets and noticed the links were to embraer lineage not embraer lineage saved me the trouble of fixing the redirects looking through the history of embraer lineage it looks like i wasn t the first to try but it was done improperly and thus reverted yeah i had noticed that too my rfa hello alan thank you very much for your kind support in my recent rfa it succeeded i hope to live up to your expectations my congratulations on your not so recent rfa and your delightful new signature too see you peacent i m pretty sure we will cross paths soon take care peacent hello hello my friend the article you aked me to trans late refers to a tiny tiny village in central greece i m sorry but i don t feel like trans lating it i don t know wether it deserves its place in the current sized wikipedia either check fr example the size of the article about karpenisi which is the capital of the whole prefecture the village belongs to maybe it should be trans ferred to the greek wikipedia thank you user spyros pantenas no problem my dear friend feel free to contact me anytime yours truly user spyros pantenas william d cohan notability assertions would definitely preclude an a bio speedy but other categories can still apply if the article is spam then a db spam tag would be perfectly justified no matter the subject s notability personally i didn t think the article was spammy enough to speedy but that s just me soviet occupation denialism thank you for undeleting drv closures instructions are on page of the cabal handbook you should get one in the mail shortly do you mean these hope that helps i think that s what you re talking about cheers not senile at all i took about months to realise something really basic like how to use diffs properly or something like that so i m the last person who ll have a laugh at anyone else and the best person to ask stupid questions cheers may utc,0 +m i love a good whine,0 +feb apr,0 +reply to zebedee ok i see your point but consider this providing that you did use the checkuser there are computers on the college ground that are exactly the same make run under the same local network the same ip address controlled by the same admin team all users can be accessed by each and every computer within that boarding school and each file directory and drives are shared in short the computers run in the exact same manner please from an unbiased point of view can this be the reason to why the checkuser was fooled and if you say no then you are misinformed or lying because i am telling you that i did not do this god this is getting tedious now also seb was aggresive but was he reprimanded no is the answer and note that i apologised for that outburst something that seb failed to do,0 +you are now a reviewer hello your account has been granted the reviewer userright allowing you to review other users edits on certain flagged pages pending changes also known as flagged protection is currently undergoing a two month trial scheduled to end august reviewers can review edits made by users who are not autoconfirmed to articles placed under pending changes pending changes is applied to only a small number of articles similarly to how semi protection is applied but in a more controlled way for the trial the list of articles with pending changes awaiting review is located at special oldreviewedpages for the guideline on reviewing see wikipedia reviewing being granted reviewer rights doesn t change how you can edit articles even with pending changes the general help page on pending changes can be found here and the general policy for the trial can be found here if you do not want this userright you may ask any administrator to remove it for you at any time,0 +if you are looking for input from editors with experience regarding the topic at hand you might want to post notice at places like wt verifiability or wt external links or wt citing sources wiser,0 +not interested until you lot enforce the rules universely rather than for your mates if you block me i will simply access wikipedia by other methods,0 +you re right it was who accused me of attacking you there s no need for this to get carried away though i just thought that person s question was nonsensical thanks,0 +just so you know you are threating me and me and craxy were doning nothing please stop threating and we have the freedom if a black man was to beat you up because you did first thats called self defence and should not be accused of vilonce this is not a threat or mad note this is simpley telling you to please repeat please stop threating me and my homie im only mad at kyltym because of his rude aggenst blacks and hispanic note,0 +any suggestions for appropriate punishments should the wmo fail to retire katrina i m thinking of handing them all sponges and making them responsible for drying out new orleans or would something with electrodes be better,0 +the definition for fundamental attribution error that is in quotation marks may be bit too much for people unfamiliar with the terms psychology that is included in the definition i would maybe replace words like attributor and add examples after both situational factors and dispositional factors i e situational factors such as luck compared to the fundamental attribution error definition that was provided in quotes the one provided for attribution theory seems more simplistic and easy to follow though social perceiver may have the same problem as attributor did like i mentioned above maybe for both definitions you could only use bits and pieces of the actual quotation and put the rest in your own words i e change social perceiver how an individual would be able to take in information to explain events instead of a in the real world i would use to one instance of this would be in order to have more of an encyclopedic style using their instead of his her before personality may be better as well followed by in which the individual is interacting instead of he she is acting this would go well with the next section where individual and their is used in the place of he she and his her overall i thought that this was a really interesting article and i think that you did a great job with the explanations and examples i really like the organization of the article and the content seemed accurate aside from the few things that i ve mentioned i think that someone unfamiliar with the topic could get a decent grasp of the subject based on the information that you are presenting,0 +i also realize this was discussed before in at least two separate sections above although those were a few days ago,0 +great thanks will have a look properly at them later today dy,0 +he certainly will keep his efforts on this ip to this page if he doesn t i ll block him i can t help what he does with the ridiculous quantity of ip addresses he may be using in the rest of the encyclopedia am i confident that talking to kumioko will benefit from this conversation no i m not at all sure of that given that i ve talked someone down from a serious legal threat that they were serious about to the point of having retained legal counsel within the last two weeks i also see no harm in trying if you re going to ani me go ahead and ani me a limited discussion on one user talk page with a banned user isn t necessarily typical but it s certainly within my discretion to allow,0 +utc scriptural evidence volume book number sahih bukhari the most venerated and authentic islamic source narrated aisha that the prophet married her when she was six years old and he consummated his marriage when she was nine years old and then she remained with him for nine years i e till his death july,0 +hiram caton the aids denialist this is your reliable source,0 +very understandable thanks for the snack,0 +you re so immature and condescending grow up i won t reply or read your nonsense anymore but you re the one guilty of the revert rule mine was done to fix it you went on another ip and changed it as did another editor you can type what you want to make yourself look right but you re not i m going to go on all the articles i ve found that list people the way it was on this article and remove it per your user name gotta be consistent right i m going on the removed so you can t stalk me again article and several others i found that have the same format and remove it all per hell in a bucket thanks for the tip bitch lmao at you cus you re ignorant and petty,0 +pegasusbot pegasusbot march,0 +are you someones message boy if user andythegrump andythegrump has something to say to me then let him be adult enough to say it on my talk page rather than to hide behind your skirts and you to act as a messenger what am i dealing with here a bunch of frightened children,0 +norwich disagrees he writes in volume of his history of byzantium the early centuries that byzantium was somewhat more stable than european states the western europeans have always hate d the greek except the philhellenes and in an effort to surpass him they try to attribute that pure latin side of the greco roman history as their own,0 +i knew they d catch up with you kizzle http washingtontimes com upi r htm of course the washington times is the only paper to print this we all know how the liberal papers cover for their own lol love big daddy ps are all liberals anti semetic perverts or just the ones who edit for wikipedia,0 +at best you could have deleted that portion of the page that relates to your case but you blanked the entire page which has a long history that doesn t involve your case talk,0 +this award winning winery is notable in that it is part of the history and heritage of wine in the famous wine growing region of sonoma and that it has a woman winemaker in a male dominated profession,0 +apologies,0 +spider man cultural influence hello please explain why you deleted reference to the world s tallest building and added to promote his cause thank you october,0 +this certainly is a problem and a widespread one and it goes beyond content determination if the tyranical majority is nasty and wiki savvy the wiki system environment makes it too easy to conduct gang warfare against the person to silence them and also use their majority in that venue to override policies and guidelines north,0 +sean connery please don t remove cited claims and replace them with uncited claims as you did with this edit either find an alternative reference which supports your belief or don t edit the article cheers propagandadeeds,0 +usage section should include the cultural sources of usage for example asian cuisines chinese taiwanese vietnamese tend to ass msg to their food latin american cuisines also tend to put msg american east european european cuisines don t as far as i know can this list be expanded corrected i suggest this information should be in usage section,0 +block me please block me or report me to wp aiv,0 +stewart international airport please use dl to flag a dead link curly braces not parens cheers,0 +kindly immediately cease and decist destroying biographical content to articles or any other wikipedia page you are in violation of wikipedia policy if you continue you will be block from editing wikipedia,0 +it s all good i probably should have been more clear in the first edit summary talk to me,0 +thanks a lot as italian and roman it is not always easy to write in a decent english btw copyediting is always most welcome cheers,0 +lying and deceit harassment of others bollocks for apples then my god you are one scary proverbial i guess you have a dictionary to look up proverbial you just don t understand discourse analysis do you the fact that you participated in harassing angela on wikipedia is not acceptable mate not acceptable at all,0 +question now we have the same turkish name at turanism and pan turkism the problem is the articles are about different things are you sure you are correct,0 +you have just been reverted again i have also opened a poll to resolve the matter once and for all by the way voting has started on the fa nomination could do with your help to stop hong and his korean buddy from holding the vote to ransom,0 +thanks just signed on,0 +we do present the whole picture of a season here the question is how much detail is suitable for wikipedia car launches are trivial do we also want dates of driver announcements engine deals and there is basic information about testing or will be once someone writes it for this page so readers will know about the official tests remember that previous articles in the days of free testing the more recent complete ones anyway do not give any information on private tests so the editors were cherry picking information to begin with out of interest what more would you even write for testing times no of laps we all know they are meaningless so it will even be somewhat misleading to include that level of detail as for stats tables you mentioned above they were simply a duplication of existing information,0 +i am trying to put up a page about my hobby,0 +oh man that was a close one gang two wiki banishments in less than one hour but i come out on top like a true leader be very sure to take mental note of that i shall spend the next hours mentally prepareing myself for the wiki edit on our dear leader andr brazeau stand strong godspeed,0 +thank you i have been trying to estimate the approx number of rosaries made and distributed each year in the world and the number seems to be elusive it is most probably over million per year since just one group sends out million free rosaries a year there seem to be many manufacturers in china now although italy has many higher end rosaries,0 +hello roy what are you talking about where did u come from i was just talking to crossmr to sort out the civility message he left on my user page so where did u come from we were having a chat talk to him hello so whats this block for i never even wrote any guy a message right now i demand immediate unblocking this is an abuse of power of admins and i will certainly complain,0 +am i not allowed to write on my own user page,0 +july utc the link doesn t work for me do you have a better one also please review wikipedia talk page guidelines new topics and headings on talk pages never address other users in a heading and avoid provocative and pointless reverts in this regard in the future thanks talk,0 +another user talk,0 +agnotism i read in book lance armstrong s book it s not about the bike my journey back to life that he is atheist please give references for agnotism of armstrong,0 +appreciated some work has already been made so it should not be so time consuming thanks again,0 +the copyeditor s barnstar i noticed you voiced an opinion in the first discussion on a copyeditor s barnstar award which was archived without decision if you haven t already would you please check in with the current discussion the votes opinions from the first discussion althought noted at the top are not being counted in the current tally it would be great if you would also weigh in on your preference of graphic design from among the choices currently eight different images the last being added at around thursday march if you vote please update the tally near the top of the discussion thanks talk to me,0 +hmm no rather i hope to highlight the citation of a series of non existent local clauses as well as the criticism of the legitimate sources which lead to the deletion of my article,0 +how i don t know how to do it i found image on w buzznet com could you do it for me,0 +every edit that user made was in furtherance of selling his dvd set using wikipedia for personal gain is against the rules what part of this do you not understand what s up doc,0 +warning to editors this article is maintained with passion by an ignorant and hopeless person that does not take into consideration any good faith corrections he just reverts everything to his original for example he did not even keep the spelling corrections even though his english is below average do not waste your time this will never be a good and honest article all corrections will be wasted this article reflects the quality of the writer,0 +i did and do appologize for not seeing your above comments but i will remind you that it is customary to continue the most recent discussion at the end of the talk page,0 +utc charles wesley s info is inaccurate there is documented proof of alpha kappa nu http media w msuspokesman com media storage paper news campuslife tribute a brief history of black collegiate fraternities and sororities shtml sourcedomain w msuspokesman com miihost media collegepublisher com september,0 +hello before making potentially controversial edits it is recommended that you discuss them first on the article s talk page otherwise people might consider your edits to be vandalism thank you peacent,0 +national emergency bush did declare national emergency on and renews it every year you are wrong about at least one thing equinox maybe you are not infallible after all,0 +use of person infobox don t hardcode the ages of people into their infoboxes every single one of the many infoboxes you have done this to will now have to be updated every year that s why we have template birth date and age please go back and use it on all of the infoboxes where you added an age similarly read template infobox person to see how to use the person info box and the allowed field you will note that residence is not spelled residencse as you have done please go back and fix all of the infoboxes where you made that mistake,0 +it might be important to show but then a show here must be accompanied with at least half worthy references and just downplaying isn t going to score one for the reference you might have forgotten e g our venera landing,0 +should we mention that this beer nearly tops the truly disgusting beer list,0 +ndp affiliated i added a fact tag to the four times reinserted modifier ndp affiliated to the mention of bill tieleman other journalists are not generally singled out by party affiliation loyalty nor are publishers such as canwest which is widely seen as a propaganda arm of the bc liberal party also one of the party s major financial contributors it s not that tieleman isn t an ndper but his credentials go beyond his ndp politicking and he is increasingly a critic of that party also i m responding partly also to http en wikipedia org w index php title christy clark action historysubmit diff oldid this edit by i ve puzzled long and hard over my own real world coi on bc political articles but i see no reason to recuse myself from participation in bc political arti cles though generally i give them as wide a berth as possible but when i recognize pov political activity wording as a responsible wikipedian i can t not say something about it or challenge the povism and coi spin edits when i see them my interest here is to prevent wikipedia from being used as part of any campaign p r machine of any party and to make sure wikipedia principles are observed particularly by party operatives who have no reason to respect wikipedia guidelines or concepts like wp npov in the case of this item about bc rail there s lots missing including the search of the clark marrissen home during the opening of the investigation and that curious telephone call thelling them the police were coming and why no warrant was needed vs all the other highly suspect irregular warrants to do with that case but there s also lots of other commentators particularly from smalltown papers or independently syndicated but also notable bloggers indepednent reserachers like sean holman laila yuile and bc mary who have similarly spoken out about clark s involvement in the bc rail matter and how it weights against her in the eyes of the public and of the informed media she may have been out of teh way for the hst fracas and the big media have pronounced her clean of that but he big media also have maintained a veil of silence over bc rail the current text says that she resigned for family reasons but it s well citable that the timing of her resignation was seen to have to do with the bc rail affair and about the tieleman thing unless every time conservative affiliated columnists or bc liberal affiliated columnists and media outlets are similarly tagged in articles mentioning their opninions and claims often false it s not fair to single out tieleman for this that s the reason for the cite tag tieleman s own byline says only bill tieleman is one of bc s best known communicators political commentators and strategists bill writes a politics column tuesdays in hours newspaper and the tyee online magazine bill has been communications director in the b c premier s office and at the bc federation of labour bill owns west star communications a consulting firm providing strategy and communication services for labour business non profits and government and frankly seeing whats going on with the ndp and teh things the party council james supporter types have been calling him he may not be ndp affiliated much longer,0 +major error i have removed the last paragraph on beth phoenix s main profile about her return to raw this has not been confirmed by wwe com or any other wrestling affiliated websites the myspace thing is not concreate evidence that this is true,0 +december please stop your disruptive editing if you continue to vandalize wikipedia as you did at klystron you will be block from editing if this is a shared ip address and you didn t make any unconstructive edits consider creating an account for yourself so you can avoid further irrelevant warnings,0 +assumption school s ip address sorry for the influx in vandalism it is due to a recent article i made on assumption college school a few colleaques discovered it and began adding information and vandalism to it most of it was not acceptable so it was reverted they continued to do so so i watched the page but ther is something wrong with the feature so i dont know when they edit it,0 +i agree with and commend all of that except for the phrase not symbols the clear truth of the matter is that most of us east or west who are cognizant of modern history and the use of symbols herein would run a mile before agreeing to the use of swastikas fylfots for our favorite social movement the politically restrained people of contemporary china are somewhat in the unfortunate position indicated by the old saw beggars can t be choosers,0 +page deletion following your blanking of the page and request for deletion i have taken the appropriate steps to ensure speedy deletion it should be gone in a day or two thank you very much for being so co operative it is tempting to use wikipedia for advertitising but it destroys its value as an encyclopedia so it is nice when people help out like you have please feel free to contribute elsewhere in wikipedia regards,0 +i was block for personal attacks not rr why then was the grounds refused based on rr,0 +the only way you would know that i had added links to a planet and kater middle ton would be if you were the bully who removec evreyone of my links you have judged every single one of my links on the same basis and you have not helped me i felt suicidal after what you did it is devastating therte was no mercy it was just bang and destroy you have not even read any i repaet any of my pages the people who make the intial choice to accept a page accepted my pages so you are wrong to say they are spam you just looked out every page i added a link to and removed them you are destructive and vindictive and cruel,0 +im not posting their he never provided proof or anything why not give him hell july utc,0 +this user wonders why calgarians brag about chinooks do edmontonians brag about snow or how half of the flames roster was born in edmonton,0 +presumably only someone born in ben zimmer can consider to be ancient history it seems everyone has lost interest here but i made an effort to make some sense of this the article was confusing entirely separate uses of the term a red line a line in the sand a thin red line a brave and defiant stand against great odds and to redline meaning to go beyond an engine s maximum safe performance level i am sorry to say it but for someone who claims to be a lexicographer and language editor mr zimmer ought to be ashamed,0 +thanks but some texts like the breed standard are the same everywhere my english is not too good but i have a lot of information about this breed and i want to share it with others if you can help me on this one i would be grateful thank you very much,0 +i ve come across variations on draughts as i ve always called it we had a compendium of games that came in a cube it had six sides on it one of which was a checkered board for playing chess and draughts on with draughts apart from the traditional version there were the following variations dammspiel that s what the manual called it i think it s also called damenspiel you set them up a bit like chess but they were placed one square forward hard to explain the pieces moved almost identical to regular draughts diagonally one square i think the kings could move multiple squares a bit like the flying kings rule people have mentioned except that you stop short of capturing my memory is hazy on the issue turkish checkers similar set tup to dammspiel damenspiel it looks a bit like chess with draughts pieces the set up being on the same squares you d use for draughts pieces move one square forwards and if i remember rigtly capture diagonally like standard draughts the kings i believe move like rooks in chess and jump only once in a straight line again my memory is hazy regarding the rules one game not listed in the manual was a game known by one of three names arrow draughts dagger draughts or kings played similar to standard draughts you play it corner to corner and set the pieces up as kings in the shape of an arrow or dagger you then play it like regular draughts i have played draughts with at least three opponents a relative somebody at school and somebody i once shared a house with and they were convinced that a single man can t take a king apparently according to this page that s the rules in italian draughts,0 +since i m not this banned editor harveycarter this is all irrelevant,0 +i would say yes that s what he s saying since there is an asymptote there which brings me to a question for you guys you say x for f x x but you would say x for f x x since x is the only way you ll get a value of i m not trying to be difficult i m really trying to see it but i just see too many flaws and this causes my disbelief in,0 +well i pretty much agree with you except for the removal of shadowcat i d rather stick with her than someone like ghost girl aren t we supposed to linger with the original characters first then use up others talk edits,0 +so far suicide has used d o a only once in his first appearance when he was played by kazarian when daniels uses it it will be added to the list,0 +thank you for the help they really trumped up the charges and made up ones out of thin air like sock puppeting no proof whatsoever they didn t care to remove that charge either,0 +redirect talk brian smith defensive end,0 +why you all not understanding my opinion is not against promotions pls understand im against that above mentioned paragraph hello hahc you had read edited version of page first read previous versions then you ll understand my words the phase doesn t talk about promotion it talks about someone predictions and thoughts of her team like for this her team thought to shoot documentaries seeing to other artists to promote her and it further her team wants to separate her from other bollywood actress as they can only lipsync hello those are actors who hasn t pursued singing it doesn t need to highlight also someone s prediction that she will be a pioneer does it talk about promotion huh pls understand we don t need to include someone s thought and pr skills where are documentaries only behind the scenes video is it new no every next star releases these stuffs which are not nee,0 +lobsterthermidor the list of all requirements is sitting at wp csd f t c,0 +i just had a question we have been discussing the matter in our personal talk pages so i can t go for a o or a dispute resolution what can i do sorry for disturbing i know that you are quite busy,0 +by the way i would like to point out nick made a mistake in his own original lyrics in this performance which should say my good hand tattooed evil across his brothers fist and those filthy five did nothing to challenge or resist so you can hopefully now understand when he says my killing hand called evil bears a wedding band that s good it has been a long suffering shackle collaring my rebel blood,0 +rd unblock request,0 +yes it s accurate enough and potentially less contentious,0 +is that the best you can say wow making a little speech in my user talk page really shows how immature you are god you are such a child how old are you and those aliases are from video games in case you haven t figured that out and you ve been block twice before the fact is you are ass retentive and cry like a little baby everytime things don t go your way you re just like daymee now why don t you do us both a favor and deal with your new stalker friend instead of bothering me p by the way what the hell does the b in your username stand for preceding unsigned comment added by,0 +regarding her anarchism religious beliefs well i added the anarchist tag because in the linear notes of anthem she states as an anarchist freak and queer she then goes on to say who believes in god probably not what you are thinking i find this totally disgusting i believe that god is the force in the universe that inspires us to fight for change healing justice and freedom i don t give a shit about the afterlife i am committed to making this life the best thing it can possibly be what religious belief system would that be,0 +further to the above i ve just reverted further self promotion by editor calling themselves doriethurston added in jan and feb of this year if you check their contributions you ll see that at the time of writing every single one has been to the alliteration article for the same purpose,0 +calvin coolidge a progressive so you put some conservatives e g huckabee and the neoconservatives into the progressive tradition calvin coolidge was also a progressive could someone here please go to this user talk page and please comment that calvin coolidge is not a progressive this user continues to edit progressive articles believing that progressivism is modern day conservatism and it is causing problems,0 +yea it would be on the talk page the only reason i threw in a flair of sternness in the template was because of some of the questionable interpretations i just came across this sonnet has suggestions of references to masturbation then beauteous nigger rd why dost thou abuse the suggestion is that the male in the sonnet should be procreation to preserve his beauty rather than engaging in self pleasure don t you love that,0 +gay s are disgusting it s just my opinion but gay s are disgusting,0 +color b coldplay exp rt let s talk this talk page is for discussing the article not world war ii history in general summary of consequences i believe that in an article one must state the consequences of historical events and in a summary article one must summarize the consequences my edit stating that as a result of the franco british action on czechoslovakia the molotov ribbentrop pact was signed is a factual statement this is not stalin s arguments this is not a soviet apologist stance this is a direct and undeniable consequence of said event in the spanish civil war the red army fought side by side with the abraham lincoln brigade prior to the franco british assisted nazi sudetenland grab relations between nazi germany and soviet union were icy when the nazi s were declaring war on czechoslovakia the ussr was hard at work putting together an anti nazi coalition only after seeing the british and french backed down in the face of naked anti slavic aggression did the soviets begin to look for other allies there is no mass conspiracy here as the search began right after the event this is not a motive it s a statement of facts if there are no more objections i will reinsert the statement into the article as it is merely cause and effect respectfully disagree the statement as a result of the franco british action on czechoslovakia the molotov ribbentrop pact was signed pretends to describe a casual linkage although in actuality the linkage was not so obvious and the scholars opinion on that vary dramatically one school thinks that the only and sincere soviet union s desire was to establish a collective security system and an anti hitler s coalition another school believes that the only stalin s aim was the alliance with hitler the third version the most reasonable in my opinion is that the ussr was almost equally suspicious and hostile towards most european powers that was at least partially justified and considered all possibilities to avoid a direct war against germany with other major powers playing a role of neutral observers and to expand its territory the statement you tried to introduce into the article is a pov of the leftist part of the first group scholars we cannot present it here as a sole interpretation of the events we have either to tell a full story that is impossible because of space limitations or to abstain from any interpretations interestingly your statement may be even simply incorrect because according to my sources hitler s occupation of czechoslovakia lead to rapprochement between the ussr uk and france and could lead to signing of anti hitler triple alliance in only a month after occupation of czechoslovakia these three powers started consultations that lead to full scale political and military talks had chamberlain and stalin have a little bit less prejudice against each other and had ribbentrop been little bit less active wwii could be prevented re this is not a motive it s a statement of facts no all these facts had already been in the article before your edits your wording looks like a description of motives not statement of facts if you still disagree try to propose another wording that takes into account all what i wrote in addition a consensus exists among those who edit this article that all significant changes are being discussed on the talk page before they are introduced into the article try to follow this unwritten rule that saves a lot of time and efforts as there are multiple different interpretations of most key events of world war ii and wikipedia s guidelines require that all non fringe views be given equal weight it isn t feasible for this high level article to discuss casual links between events what nick said also the ussr wanting to be neutral argument falls apart because historical evidence clearly shows that had france honored its alliance with czechoslovakia ussr would have intervened as well ussr secured a passage from romania in order to assist czechoslovakia ussr placed all of its divisions west of the urals on high alert after the seizure of czechoslovakia the ussr held the uk partially responsible and frankly did not trust them or the french as allies if france failed to uphold their defensive treaty with czechoslovakia why would a defensive treaty with ussr,0 +june july signpost updated for june th weekly delivery volume issue june about the signpost from the editor sockpuppeting administrator desysopped banned admin restored after desysopping dispute centers on suitability of certain biographies controversial rfa suspended results pending dutch government provides freely licensed photos wikiworld comic john hodgman news and notes another wikipedian dies brand survey milestones features and admins bugs repairs and internal operational news the report on lengthy litigation home archives newsroom tip line single page view shortcut wp post you are receiving this message because you have signed up for the signpost spamlist if you wish to stop receiving these messages simply remove your name from the list re sommerwiki hey katalaveno i know i shouldn t be talking about this here but i couldn t wait to tell you the news i got back home about minutes ago and in the first i netinstalled fedora core but let s not forget that my computer s p and in the last i installed xampp and mediawiki in minutes i m not sure if i m dreaming or if this is really true but i thought that you might want to know talk contribs p s i know i shouldn t be talking about this here and you have my word that it ll never happen again d p s s and it s working now too now i ll have time to make a logo hey that s great and you re right this isn t really the place to talk about it but it s okay you are at least discussing mediawiki btw does this mean that you are donating your alienware computer now tc actually i m quite pissed excuse my language at alienware their parent company dell go figure is being sued for their shifty practises can i get in on that lawsuit and i ve had to make support calls becuase of their poor design and manufacturing so,0 +literary content the section entitled the final chapter of the informix story reads more like a newspaper article than an encyclopedia entry the section gives some opinionated statements in a sensationalist fashion and a lot of shoulds where a factual article should contain sentences worded in a more definition factual manner,0 +good luck with that,0 +a problem with english patriot man and his sockpuppets hi lately i ve seen you blocking some sockpuppets of a user named english patriot man i see that this man is nearly obsessed with polish people he seems to spread his anti polish propaganda by distorting the historical truth concerning world war ii nazi sm in europe and racism against poles he is totally denying the sufferings of the polish nation thank you so much for taking care of him and taking care of the articles that are his main targets however now he might create another sock and log in from some other computer or place so that his personal data and ip address would be totally different this is why i suggest us to patrol the articles that are his main targets like racism in poland racial policy of nazi germany war crimes in occupied poland during world war ii nazi crimes against the polish nation invasion of poland collaboration with the axis powers during world war ii nazi sm and race untermensch master race white supremacy racial hygiene nuremberg laws aryan race aryanization aryan paragraph honorary aryan white nationalism holocaust victims racial segregation nazi germany persecution of black people in nazi germany occupation of poland polish decrees kidnapping of children by nazi germany forced labour under german rule during world war ii extermination through labor anti polish sentiment anti slavic sentiment polish question polish joke ahnenpass anschluss lebensraum rassenschande adolf hitler nazi sm racism scientific racism themes in nazi propaganda germanisation reverse racism relations between nazi germany and the arab world glossary of nazi germany this guy is using multiple sockpuppet accounts to delete all the information about poles being percieved as subhumans or non aryans by the nazi s in fact the only aryan looking poles that were accepted by nazi germany at the time were kidnapped as children and underwent germanisation they were like of the whole nation the rest of the poles were insufficient to be a part of the nazi ruled nation and were treated only slightly better that the jew s this guy he spreads lies all across wikipedia therefore i thank you for your quick and effective actions diannaa if you d need any kind of help in restoring the data which english patriot man destroyed just tell me i will also try to patrol the articles about poles,0 +sir my meager edits were factual direct authors quotes and in context doc s edits were and remain out of context and reflect that he never read the articles he is mentioning which puts the procedure in a negative light i am sorry to ask but have you read the information to see the actual facts vandalism by the wiki definition speaks to the repetitive introduction of inaccurate information for no constructive purpose please review my posts and show me what was inaccurate or out of context i am not afraid to admit when i am wrong i have had a number of physicians and lay people review the history and they were also amazed and dismayed as i was you need to stop making this personal and focus on the published facts otherwise wiki as a resource is doomed finally i am the just the last in a long line of contributors both individuals and corporations that have questioned his motives and accuracy questions make many feel uncomfortable i have also privately shared my exact written comments to doc with some colleagues both in the us the eu and canada and i was told by everyone that i was spot on sorry again for all the trouble,0 +good policy suggestion on class assignments my sympathies about your encountering a class assignment that has gone badly awry i think your looks like a good idea and i support it it s especially regrettable that we are not receiving more well sourced thoughtful edits to psychology articles here as most of those articles badly need better sourcing and more coherent editing to represent current established knowledge from a neutral point of view keep up the good work talk an appology is in order dear colin i am not sure if you will have the chance to read this or if you ll have a moment to respond but i am a student in the university of toronto and specifically one of the psychology students mentioned in the article however before i go any further may i express my most sincere and deepest appologies to you and everyone involved i will not try to make excuses for my actions nor will i try to do so for my fellow students as i do not speek for them i realise and no doubt others will too that what we left behind was unbecoming of a sutdent at u of t and most importantly i realise that we did as future scholars was wrong i know that you and you colleagues are considering taking extreme measures to ensure the content of wikipedia stays secure as a responce to our actions though i can understand where you are coming from i do not believe that this will solve any of your problems and will only make things worse in the long run i see this situation as a systemic error on both of our sides but as a first year student i have very little educational and social clout to enforce my statement i am asking as both an avid reader of wikipedia and as a lover of knowledge please do not black out our privaleges to use and edit articles let us both use this experience as a steping stone to learn how to go about doing this in a constructive manner benefits wikipedia and my school looking to make this a better place civcodex thanks we have no issues with people who are interested in wikipedia coming to edit wikipedia what seems to be the issue is when we have a large group of students editing wikipedia not for the love of knowledge but simply for marks these students do not stay around and seem to plagiarize at a high rate talk contribs email if i write on your page reply on mine have replied on your talk page talk proposed new policy i d like to advertise this very draft proposed new policy comments please talk i think the central dillema is this a student could make a poor quality contribution that harms wikipedia but then recieve partial or full credit if the grading rubric was accurate a student would receive or negative credit my personal solution has been to engage with professors to try and influence the assignment increase their wikipedia knowedge and improve the grading rubrics themselves i m fairly proud of education program saint louis university signal trans duction sp which i helped write you might want to ask there should also be some sort of policy re how the community reacts to profs and students the active community is more likely to be aware of and act on policies in the first place and we are often more unkind than necessary in the second i proposed an alternative idea on the assignments talk page as an example of the sort of implementation that i would hope is compatible with any policy we adopt barnstars style border px solid gray background color fdffe rowspan valign middle rowspan style font size x large padding vertical align middle height em the barnstar,0 +you have been temporarily block from editing for vandalism of wikipedia if you wish to make useful contributions you are welcome to come back after the block expires t,0 +the harassment insults and accusations continue see the history of this talk page and this link http en wikipedia org wiki wikipedia administrator intervention against vandalism where he is still calling me a vandal and a sock,0 +i guess both memorials must have gone by that name by the way i read that there are soviet soldier graves in the background of the memorial i e not under the statue but either in the monument behind or in th park behind that my german is a bit rusty so i m not quite sure what was meant by background any idea how many they are talk,0 +even the image itself contains a copyright notice that is clearly not cc this is pushing fair use a bit far,0 +the word troll and the word vandalise are verbs npa says to comment on actions verbs are actions there is no way to confuse the issue here,0 +you re a nice guy irishpunktom it takes guts to speak against bullies,0 +would you mind explaining to me why my making a few observations about gwen gale in this thread is different from you making a few observations about this other person who you described as having habitual unrepentant and seemingly reflexive incivility if anything your comments seem more severe than mine,0 +semi protected edit request on january on january th amanda knox and sollecito were convicted for a second time for the murder of meredith kercher,0 +consensus isn t truth people can vote that ghosts exist it doesn t make it true,0 +i looked at the vandalism page and i have not vandalized the big o and dukes page vandalism is any addition removal or change of content made in a deliberate attempt to compromise the integrity of wikipedia the most common types of vandalism include the addition of obscenities or crude humor page blanking or the insertion of nonsense into articles any good faith effort to improve the encyclopedia even if misguided or ill considered is not vandalism even harmful edits that are not explicitly made in bad faith are not considered vandalism for example adding a personal opinion to an article once is not vandalism it s just not helpful and should be removed or restated not all vandalism is obvious nor are all massive or controversial changes vandalism careful attention needs to be given to whether changes made are beneficial detrimental but well intended or outright vandalism committing blatant vandalism violates wikipedia policy if you find that another user has vandalized wikipedia you should revert the changes and warn the user see below for specific instructions users who vandalize wikipedia repeatedly despite warnings to stop should be reported to wikipedia administrator intervention against vandalism and administrators may block them,0 +as for the change in romanian to reich yes it is difficult to work out what caldwell is referring to it seems this particular mission was a diversion to the synthetic oil plants in w germany not polesti raf bomber command used an attack by the af to attack this target the days loses were as already given specifically spitfire claims were not discussed so the spitfire s percentage of the kill total is unknown which is conveyed in the article more importantly citations have been given for for the order of battle figures your lack of understanding of how any historian presents his work work is palpable oob are given in lists as you should know so your give me a quote tone is rather silly caldwell makes it quit clear that these lists are incomplete with regard to strength returns given he gives known strength returns as for total german day fighter strength again this estimated by caldwell as strength returns for all years are obviously incomplete he points out and totally refutes your claim that the bulk of these machines were deployed against the oilfields in september in the defence of central europe were available for operations at this time while alone were available for combat in the west german fighter units in romania in september were mixed in with eastern front units by june making it impossible to tell just how many fighters were operating in the oil capacity at this time even considering that all e f fighters were at some point deployed in romania they only reach a combined total of compared to a total of plus for the other two fronts negating even the med theatre so your generalisation of a quote if this indeed is what it is makes the bulk of the german fighter force concentrated in romania false,0 +hamas you just restored a contested edit to the hamas article this is the third time you ve tried to put this in the article in days despite knowing you do not have consensus for the edit kindly self revert or i will report you for edit warring please read wp ew and wp brd before replying,0 +anniehall what separates this from capitalism is state terrorism conducted against its own citizens and others under its jurisdiction whether legitimate or not as a matter of policy and for capitalism we have the holocaust et al for nazi germany etc so you cannot say that communism is being pov singled out to not have this article would be pov talk,0 +robbie moncino likes these kind of people espically little boys,0 +bricked has an entry in wikipedia as you can see its a common term,0 +um that wasn t me jonathan i was at church at that time and that ain t my ip address why accuse me,0 +i don t think adam killed her but he is involved in something with patty my goal is to make pages from and over but under i want to make it into decades as there aren t enough characters or information thankyou excited to see the page yes i m busy to finding sources etc these pages aren t easy there is a lot of cleaning up re writing etc alot lol also i have a funny feeling ronan might be killed i don t know its just that he is leaving and in the preview for the next episode he seemed in danger talk,0 +the sims expansion and stuff packs listing together since the good article review suggested that the sims expansion packs and stuff packs be on its own listing my question is this if we decide to split the sims games i e core game with expansion and stuff packs onto one listing should we remove the sims stuff packs article and merge it into a new article with core expansion pack stuff pack article listing i think the core expansion pack stuff pack article is wise and thus eliminating the stuff pack article in my honest opinion because we don t need two lists of stuff packs so this is a public vote and note the good article review is in the archive article page see archive list above for link sundogs talk page sandbox,0 +i just know neither of them met the guidelines they needed to meet talk,0 +oh great leave me alone i cant freaking contribute because i am freaking block ok and where do you get permission to talk on my page,0 +wp ftc for dmc series hey i was scanning the fa vg article external links checker here and noticed that the fa articles in the ftc dmc series have dead external links game and have dead external links each while has oddly though the two ga articles have no dead links anyway they should be fixed,0 +i m not sure that this section represents fact over speculation properly both of the section discourages turnout and participation and neutralizes turnout disparities between states offer a speculative opinion without factual backup yet their unabridged existence in this article assumes both sections to consist of factual statements these should probably be quoted sourced or begin similar to supports of the electoral college may argue or supports of electoral college reform may argue,0 +dispute notice hi cirt i ve started a discussion on the dispute resolution noticeboard about this monring s activity https en wikipedia org wiki wikipedia dispute resolution noticeboard,0 +i think noone is saying with failed state that there are no parts of the state where organization has resulted in quite a livable situation but that seems to be not due to but sometimes in the case of somaliland despite the fact that there is no permanent central government who has an ligitimate monopoly on power the fact that there are promising things happening in somalia outside the central government is a good thing but that only stresses that the state as such at this moment can be characterized a failed state if definitions for somalia have been used differently please provide a source environment just read through the environment section apart from the nuclear waste issue down the problems seem to be not mentioned explicitly only the solutions planting tree campaigns etc and their actors the first env org prize winning people etc could someone knowledgeble on the subject make an introduction to that paragraph in which the main problems are discussed and maybe also reduce the env activism part,0 +narciso yepes please refrain from making edits to subjects you clearly know very little about yepes collaborated with ramirez not bernabe to invent his guitar bernabe an apprentice of ramirez later formed his own shop and yepes subsequently played a bernabe string as for your comment about yepes s hands this is simply ignorant as to the true reasons why yepes invented his guitar as well as the technique of playing it which was not to use open basses to simplify technique as some nitwits think including string guitarists and clueless former students of yepes i have the autograph manuscripts to prove that more often than not he used fretted basses rather than open ones even when the open ones were available depending on what best served the music do you have these proofs no so please stick to what you actually know fyi yepes had extended techniques that enabled him to fret the first string s d together with the low g on the th string by using the left hand thumb again we have the proof of this it was even published in one of his old scarlatti editions preceding unsigned comment added by your discussion at narciso yepes first you added information that was not correct except for the reason you gave for yepes s death and it is not constructive to to add biased unneutral opinions like yepes was the most notorious second it is a well established fact that ramirez and yepes invented his ten string guitar as i said bernabe was an apprentice at the ramirez shop then but the first yepes type ten string guitar was a ramirez guitar moreover ramirez had the idea to construct a guitarra d amor with multiple string resonators inside the body of the guitar this was rejected by both segovia and yepes as impractical it was yepes who solved the theoretical and technical problems by adding only strings tuned a very specific way c a g f alongside the normal strings you want a verifiable source here ramirez i jose the ten string guitar in things about the guitar bold strummer pp isbn third i clearly said yepes fretted bass notes even when the same bass notes were available as open strings f or g are very often played fretted rather than open i have this in his own handwriting and own fingering yet you will presume to know better and call this fact worthless because it disproves your ignorant unconstructive remark about yepes short hands being a reason for playing a string guitar furthermore yepes frequently uses the th fretted because it is the lowest string but not frequently the th as you mistakenly claim which is a minor th higher than the th string moreover these strings can be used to voice chords as originally written in the urtexts by non guitarist composers like ponce or rodrigo that are impossible on the string except in the edited versions being able to use open strings as crutches for a lack of technique was certainly not part of yepes s entirely musical reasons for inventing his guitar though i will add many ten string guitarists today who are second rate guitariats in general have adopted the instrument to make up for weak techniques this has nothing to do with yepes s own performance practice on his instrument as someone who has studied for over a decade with one of yepes s leading long term students as someone who has thoroughly researched all aspects of the string guitar as someone who has access to many many unpublished manuscripts and annotations i can safely say that i know what i am talking about yepes even frets a and g on the th string rather than play them on the open a and g strings and in an example i have in his own handwriting and the reasons for doing so are in the context entirely musical and not about any technical limitations which exist only in your imagination you know nothing,0 +redirect talk the dark eyes of london film,0 +file merseysideknowlsey png listed for deletion a file that you uploaded or altered file merseysideknowlsey png has been listed at wikipedia files for deletion please see the discussion to see why this is you may have to search for the title of the image to find its entry if you are interested in it not being deleted,0 +you should investigate the actions of malik shabazz you know the reputation that wikipedia and specific biased admins have concerning israel and the jew s there s no need to be intimidated by them,0 +the liber pontificalis is not sacred scripture and not i but the source quoted said that the decree attributed to saint peter s first successor is probably apocryphal is anything else attributed to pope linus or was this the most important thing he did as pope by all means mention that the liber pontificalis is said to contain that information it was by oversight that i omitted the mention of the liber pontificalis though the fact that i have no way of checking that the liber pontificalis contains that statement probably hd some subconscious part in my forgetfulness the question of women wearing pants came to mind because of the probability that the decree attributed to pope linus is aprocryphal the letter of pope nicholas i is certainly genuine i should indeed have stated explicitly that traditionalist women are i think less likely to go to mass wearing pants than without a veil and so the question of pants deserves to be listed among traditionalist practices as much as the question of the veil if the pants question disappears from the footnote i will certainly consider putting it in the body of the article by all means add the point that i regrettably forgot to mention that traditionalists do not like women in pants at mass,0 +waste dumping new user has twice removed material from the waste dumping section to prevent this new editor getting block i ve semi protected the article for six hours in order to force discussion here autobeat i suggest that you raise any objections to material in the waste dumping section here for discussion,0 +re adding anti barnstar anti barnstar,0 +whoops missed the fact that i needed to log in to agree with being renamed since i m the one that requested it i do agree with being renamed user talk fischesw august,0 +anne george i were nd cousins not st cousins once removed since anne and george i share the same great grandfather in james i they are second cousins not first cousins once removed george i s mother sophia and anne s father james ii were first cousins since they share the same grandfather in james i that would make sophia and anne first cousins once removed i have changed the article accordingly,0 +caution please take care regardless of right or wrong you will only get yourself block if you get involved in another edit war it s not worth it pigsonthewing talk to andy andy s edits,0 +dear wikinews wikipedia since conflict of interest neutral is an important subject since conflict of interest is being herald by wikinews wikipedia staff and volunteers including being used by wikipedia wikinews administrators and editors with which to have an article story be deleted and is grounds for action against a contributor then please immediately provide documentation that editors administrators and people providing articles and information to wikipedia and wikinews have no conflict of interest to the articles and stories they create edit supervise and or contribute for example did any editor have sex relationship with a porn star or purchase movies or magazines of a porn star whose bio is listed on wikipedia this is a conflict of interest another example does any administrator editor or volunteer of wikinews and wikipedia including blackpearl svtcobra chris mann and whoville own disney stock have gone to any disney theme park watch disney movies and or buy disney products then blackpearl svtcobra and whoville and all of these editors and administrators are in conflict of interest does the people involved with the wikinews articles about fossilized fish found in canada or with scientific discoveries or with lawsuits have any connection to these products places or businesses then this is a conflict of interest what kind of verification did wikinews and wikipedia use to determine that volunteers including blackpearl svtcobra and whoville don t sell disney products and have no business with the walt disney company and their affiliates as documented volunteers including blackpearl svtcobra and whoville together claim conflict of interest and delete any contribution in regards to pirates of the caribbean for either wikinews or wikipedia and control it by upholding double standards thus first we must verify wikinews wikipedia enforcement of their policy of conflict of interest and neutral wikipedia and wikinews editors don t follow wikinews own written polices do you know of an issue that has been forgotten then you generate and justify reason after reason to state that the above article is not newsworthy and that wiki does not write old news you even say one thing and then later change that to be different claims to justify deletion you keep throwing different claims at an article you have targeted because someone had shown the charges to be untrue wikinews and wikipedia continues to uphold double standards and then make statements with which to justify it incredible you ignore any details provided to your counter your claims and then accuse the person of not acknowledging your control and your new set of claims are you aware that wikinews editors and wikipedia are in conflict of interest as well they proven that they have a network of supporting friends using double standards without following wikinews and wikipedia s own written polices and such wikinews and wikipedia allows editors fans to be bias controlling w hate ver they choose to write even placing things like porn stars penis size copies of that have been documented as well and to write articles that are one sided promotional and links to various sites that further promote their cause yet the editors delete anything that is added that they don t approve from other people and then justify reason after reason such as claiming other people as being a conflict of interest not being neutral and such if they write or contribute it s against wikinews and wikipedia policies to simple delete when in doubt don t delete and not to show respect when communicating yet you simply deleted the entire talk and all related pages and justify various statements calling it w hate ver you want to get your friends to sign off on your control if you don t abide by wikinews and wikipedia s own written policies then remove all of the polices and stop tell the public to follow standards which are double standards and more does the owner of the company know you are doing stuff like this,0 +is john delaney a fanatic roman catholic some people associated with john delaney are expressing extreme pro vatican views and attacking non catholic christian churches online xenophobic and racist manipulation of historical articles are being made john delaney is a white supremacist xenophobic and a fanatic roman catholic,0 +who are you showing it to,0 +sure can say that again this is really smart there s an entry saying someone blanked a page how clever but i am using this ip and i certainly didn t blank any page wiki s omniscient henchmen suggest registering an account it s no longer a wiki then is it registering an account is not a good idea anyway far better is to stop blocking ips like this most people are on non static ips anyway so the idea is last millennium what you really need is to filter out the junk that gets people pissed off in the first place if wikipedia had any quality at all and not just a bunch of do nothings who patrol and feel tough about it and there wouldn t be any vandalism at all people would be proud and respectful of the place but that s not going to happen and we all know it the middle echelon at wikipedia have long ago taken it to the dogs how s the new money raising campaign going,0 +utc i ve changed it over to another free use image we did use a crop from the same base photo once before but the crop wasn t very good i ve recropped and tried to clean it up a bit april,0 +more than that surely the story of hurin and turin was also published later in home wanderings of hurin redirects to home so i guess that is where it is found,0 +block of i noticed you temporarily block this ip address since his her block has expired he she has started vandalising again i have issued a warning perhaps we can consider a more long term ban,0 +i am mrs carter just placed a deletion request on the page i am mrs carter as it is un sourced and clearly fake the author has also added it to her album chronology,0 +sorry but the guy is a pratt he has attacked me before so needs to practise what he preaches,0 +as a further thought maybe precisley a short history of the history would make a suitable introduction to allow for the controversiality of the issue to be made fully apparent from the outset simon,0 +looks alright so far,0 +protection requested i have requested that this page be protected in light of the contentious potentially libelous edits being made,0 +march can someone help me please i want to have a right to vanish for this account and iam still unable to create a new account,0 +why is user nableezy allowed to use strange definiton of nationality it is defined as the status of belonging to a particular nation by origin birth or naturalization and if he was born in cairo then he was egyptian nableezy is making strange arguments about jus sanguinis but this is not common meaning of the word as it it is usually understood,0 +sry for my absence everyone i ll include the proposed image if the chetniks marching image is pd i ll update the collage talk,0 +redirect talk georgian keyboard layout,0 +back are you back,0 +you have zero credibility when it comes to editing soviet related articles since you have a massive anti soviet pov you only believe sources which make ridiculous claims about the ussr such as the guinness book of world records claiming that million people were killed by the soviet regime o all you want to do is make the soviet union look as evil as possible and because of that you ignore the studies of actual historians and demographers that are based on real data and not propaganda,0 +yes although the procedure for nominating someone has become substantially more complicated since then,0 +environmental causes how can choosing to take less exercise and choosing to eat fast food be considered an environmental cause only if people are not responsible for their own actions that obesity is a disease according to some in the rich west is so that drugs can be prescribed you cannot get a drug approved unless it is for a disease thirty years ago it wasn t a disease what s changed personal behaviour as the article says we eat more we eat more rubbish we exercise less doubtless there are environmental causes but what are they,0 +skookum nd note about the above there s situations again with somena mentioned elsewhere where the people and government are somewhat indeterminate and well as indistinguishable in the somena s case because they re not a legal government but one of the ancient social divisions of the peoples of the cowichan valley what we might call a chieftaincy but that s an imposed concept if you read the somena page you ll see what i mean i think bottom line is frankly we re imposing a rational order based on our concepts separate concepts of ethnicity language and government in some first nations culture that s a lot harder to do so the somena are not a first nations government in the white man s way of thinking or even in the thinking of the union of bc indian chiefs which is an organization of whiteman system band governments and tribal councils created by the indian act the reserve system and government agents et al but it would be touchy to exclude the somena from equal status in a template say with their neighbours kin the quamichan all too confusing for a cultus whiteman at this hour of the night so i m going to bed now,0 +o rly i was refering to the page not you think before you type please,0 +oh i see i ve been block again mindspillage s statement is in part patently false yes i do not believe i did anything wrong no i did not indicate in any way i would continue to do so i was un block for several hours and did not do so common decency indicates the block should be lifted or am i simply being punished for my views,0 +hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hat hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you e you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hat hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you e you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hat hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you e you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hat hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you e you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hat hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you e you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hat hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you e you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hat hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you e you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hat hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you e you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hat hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate you hate y,0 +bulleted list item a currency devaluation occurred during holy week lowering purchasing power of the venezuelan bol var,0 +well rms are flawed but the alternative is worse i d have thought most of those you notified that they need to revote will come back and make the effort you did the right thing and i believe that always comes good cheers,0 +there are countless disaffected members of this movement who would attest to the same especially those who have intimate knowledge of the inner workings greater knowledge awareness and discussion of the facts would be highly favorable to the entire community,0 +haggard discography simplified,0 +i also agree with arranging by arcs i ve pointed it out several times and been ignored well at least they included the arcs again they deleted that info completely before organising by the english dvds is just plain w hate ver and typical of some w hate ver who think they re the center of the world the problem is they ve spent considerable time in making separate articles yes you hear right for each of their so called dvd seasons which are dvd releases actually so not even the naming is appropriate and they re not willing to give up undo all their w hate ver useless work it seems they don t like truths here so w hate ver,0 +what point of view is intended to be projected about the guantanamo bay detention camps why is the mentioning of specific uses inappropriate for this article,0 +olyeller wrote while all you have done is call me names as is clear to anyone who can read all the above you re lying i ve done more than justifiably calling you a dick i ve pointed out where you made falsehoods i ve also answered a person s question about evidence for the second annual event providing three fb urls please stop lying dick,0 +involvement with organization and recruiting several sources have told me that christian has been a key figure in nambla s european recruiting drive surely this deserves mention,0 +as i ve heard it said more than once here redirects are cheap so yes,0 +as far as possibly if he s not had any involvement outside of that particular incident then we probably don t need to include his name someone interested can always go to the source for more information looks like you already figured out number babelfish,0 +what basis would you have for a complaint the edits i see at francesca hogi are by no means vandalism or otherwise clearly unhelpful contact me contribs,0 +greatstory this story was completely correct on it and perfect grammar i think whoever wrote this should be an author,0 +hm innuedo how s about this one ps how on this earth could they have made such a big mistake of having being able to switch off their iff whilst in the process to identify the correct nationality of the air forces even though both royal saudi air force and the republic of singapore air force shares the same acronym rsaf fact is f s were never operated by the saudis geesh cheers and thanks again,0 +in ontario all public tenders are prequalified it s got nothing to do with special knowledge it s special relationships that count i have no axe to grind it s the law that says that favoratism and incumbancy is ok in public spending as long as it s not the elected doing it the non elected are free to do as they please and give public works to their friends and relatives it s not illegal like in the more open and honest countries wiki badass woo u,0 +well that s the other way of dealing with it of course i guess i didn t think prod would be worthwhile as they usually get removed but in this case there s been little editing activity so it will probably work,0 +maroon never gonna leave this bed,0 +or denigrating the majority of,0 +why should the encyclopedia only publish vb friendly links but of course i understand you re probably a vb sympathetizer and this explains a lot,0 +as well a user you communicated w before but who has now made two more egregious blp edits user,0 +when i have the time i ll have a look at the legal structure of lgas in wa i had forgotten that we have regions of councils e g eastern metropolitan region of councils emroc north east wheat belt region of councils newroc etc that cooperate for economies of scale in things like garbage disposal this could have a bearing hesperian,0 +because of this i am persuaded that mars temperature are very much relevant in the article just as venus temperature are relevant in the gliese c article,0 +horticubes please check if it has been sufficiently wikified if so then the call on the template is yours later willy wonka,0 +sheriff s office this is australia not the usa,0 +maybe enquire at wp blacklist as to why and see if you can get it accepted snowman,0 +calling it the white stolen generation doesn t exclude aboriginals from being recognized on the contrary it is the other way around for example when the apology to the stolen generations was made was there any reference to white mothers or children no there wasn t only aboriginals and tsi were recognized thus this is why the term white stolen generation was created to help distinguish it even aboriginals recognize the white stolen generation by the following after the apology to the stolen generation indigenous leader max dulumunmun harrison an elder of the yuin people helped bring it out last november when he wrote i applaud the prime minister s apology to our mob but what about the white stolen generation that suffered the same fate i know many white people who went through the same pain so why can t this government do its healing again and apologise to the white stolen generation to bring closure to all this suffering,0 +i wish england won this war i m thinking of an alternate history about the uk wining this battle what would be the name and the flag of santo domingo if britain was victorious,0 +rd warning on on fire you have made three reverts in a hour period on on fire and any other revert to the article could result in being block from editing so what what if the reverts are relevant i see threathening is a common habit from wp administrators,0 +edit request from stars about bare links in u tour in u tour references are bare links can you fix this issue,0 +the british will always call this style italianate purely because of the design of the campanile british empire italianate architecture took the tower campaniele on churches and belvedere on domestic as a defining symbol of italianate architecture adapting in the th century,0 +i want to say that berksguy is the one that is the kook he acts as if i am the one causing all of this when i do edits i use my login i m not ashamed to back my views and put my name next to them however berksguy needs to realise that other people out there feel the same way and it is rather silly to think that every user that posts something that does not fit his agenda is me i do however believe that all of the actions of mayor mcmahon should be displayed good or bad if sourced and that includes his crazy words about supporting illegal aliens as was sourced george w bush robert byrd etc have tons of sourced actions both good and bad toward those persons and the same standard should apply to tom mcmahon,0 +wikiproject article rescue squadron newsletter,0 +look at the images at commons airbus a there are several on ground images from the side that show that,0 +thanks talk contribs,0 +ironholds this is the average copyright text of an organisation which offers informations and statistics the who strictly allows the use of informations if they contain the who as a source you accused me of stupidity here or can t read phrases like copyright unicef or copyright unicef unicef reserves all copyrights on material on its web pages citation i was told more than once that i don t understand copyright issues what makes you say this,0 +looks good to me at the moment i don t think we need to mention feral cats i doubt that it is common for feral cats to enter a house via a cat flap on the whole cats are uncomfortable with entering another s territory although i imagine it does happen occaisionally especially if a feral cat learns that there might find food inside if someone can find a useful reference on the subject we could re add it mind you i did once find a wood pigeon tapping at my girlfriend s cat flap which seemed particularly unwise,0 +i have no opinion on i assume in certain situations it may be of use wrt to the image it was linking to it looks like it appeared either in the sun or its website or both and has a pa press association watermark the image is at the daily mail s website though now it may not be copyright infringement considering how many other pictures i ve just seen with pa but it would be better to get it from the sun if it has to be there at all talk contribs email,0 +glassfet maintaining false information,0 +an alternative move could be to merge the two species articles into a genus article which could then be one comprehensive article such is often done with many other palaeontology genus articles since there often isn t much to say about one fossil species of a genus that don t apply to the other,0 +please stop if you continue to violate wikipedia s no original research policy by adding your personal analysis or synthesis into articles you will be block from editing wikipedia dude dude,0 +that was my fault i did not realize npov i have now read the guidelines and understand about editing it was not my intention to make it read like an advertisement i wanted to convey my thoughts about these cars my apologies for wasting other people s time to clean up my mess it wont happen again,0 +naming conventions have a looksee here eh finally a discussion to amend those unfair naming conventions talk,0 +i had a look at the sahabiyyeen list on arabic wikipedia there are articles about many more individuals but most of those are very poorly sourced but if we go through them properly i think it will be possible to at least get enough information about notability and minimal biography but the problem is that my arabic is very very poor all i can understand on reading nearly properly is the qur an i tried google trans late as well but the quality seems to be very poor but i will try my best to do what i can to improve those articles i used to work basically on astronomy related articles on malayalam wiki i think this can be my major field of work here i agree with your view that we need more accessible information about all these individuals but i am not sure whether wikiipedia would be the right place for that perhaps as you said an extension and thanks for all your time i can understand that you are a busy person but you have been very kind to me and have spent a lot of time discussing with me i hope i will be able to deal with my co wikipedians in such a manner and i will try my best to take your advice and improve these articles and their sourcing perhaps it will help improve my arabic as well thanks again and best wishes,0 +move the article was orginally created at bait dogs later it was moved without discussion to baiting sport which can mean different things including shark baiting etc this article pertains solely to the baiting of animals with dogs therefore the article has been moved back to bait dogs which is the most appropriate name for the article see definition at article cordially,0 +but he does say noice,0 +i agree more than one overlapping articles practical for the same theme have negative effect in easy use of wikipedia only if an article grows too much at least kb we must start to think to saperate it in more than one and only with a very good connection between the particles,0 +antiquity and united monarchy era the two sections about the very early history lack references to archaeological and historical evidence the sections content is almost exclusively based on biblical narratives and between melchizedek and the united monarchy period there is a gap of at least years to fill references to excavations would be nice,0 +january utc thats not the reason why i m being block you said before that i m being block for personal attacks so why is it that this person called ukexpat can vandalizes my article and i get in trouble for calling him one youre not making sense again i didnt attack anyone personally what are you talking about anyway i do believe that i m being block for racist discriminatory reasons i noticed that american wiki editors or admins block those of italian descent from posting about their italian latin culture this is very racist and is not tolerable i m going to ask you just things why cant i post my original content and is there a special appeals board that hears cases dealing with racist editors who discriminate against authors of articles who come from different cultures thats all i want to know,0 +rollback rights are my rollback rights revoked contribstalk,0 +most popular shows thanks for giving the important and warning message squidbillies and aqua teen hunger force are both adult swim s most popular shows are both created by dave willis,0 +users are cautioned to assume good faith and to recall that all new users must start off somewhere further many people with expertise in a specific area quite reasonably make contributions within that area alone there is of course nothing inherently wrong with single purpose accounts wiki discussion policy cautions against personal criticism if you are going to assume the mantle of editorial arbitor and enforcer then it is your responsibilty to ensure the article is accurate controversial subjects are by definition controversial that is the nature of paul wolfowitz the article as presently edited is biased in two respects a through its uncited inclusions including the one noted above and b through its omissions there is a direct relationship between wolfowitz s departure from sais and his removal from the world bank readers would not gain that information the way the article is currently presented you are invited take the factual material that you deleted and to conform it but there needs to be a context to the section entitled recent controversies,0 +i have found the original answer in the archives garbage historic after intervention of t bel here it comes dear val who is also a mormon or a parrots ain t sure i found very strange that each time i am answering to one wikipedian mormons question it is another who react to it instead of the one to whom it is adress to i do not see why you are defending stand point who are not at all being made by you nor why you feel the urge to respond for another one than you i think that the person concern storm rider is grown up enough to do so on its own unless next time i am under attack you take the relay and answer that one for me as well it could be interesting if you have something to say say it so but use your own words idea and language instead of making a copy paste of my entire edit as you have nothing at all to add to it and in fact seems clearly to don t know what to say so do the wisest just shut up it is in fact evident that you do not have understood one word of what has been sayed and as you can see repeating it indefinitely like rot speach is not going to give you the ability to understand all you do is agressing agressing personal attacks and agressing try to use half as much of your energy to understand what this is about and i am sure that you might see some light i do not think that my statements can be make clearer than they already are and that your reaction more than a physical unhability to comprehend expose your reticence at accepting things you just dont want to accept you cannot accuse me of talking in circle when you are the one doing so as it can be very clearly seen in your edit as for you stupid accusation of me not being sophie what about you are you val or are you rama or are you dgl there is a lot of nick name on wiki and all of them cover up a real name they are all a pseudonym meaning they are anonymous so if i take the name anonymous as a pseudo i will be as hiding and as showing as you are because at the end in both case it is a pseudonym with nothing to do with the person real name and identity so what are you trying to proove except the fact that you were unable to figure what i just told you on your own i had a name this name seems now to be unavailable and i dont feel to make it again or take another following wiki rules all are equal on wiki old rats as well as newbees hahaha and even arb com and board members and admi are as equal as usual wikipedian thought they have much more power than them and abuse of this power constantly without bad conscience and have learn to twist and bend all wiki rules behond recognition so who are you trying to fool with your wiki neutrality and wiki equality who is wikis first rule it is all a lie how can you claim equality with another if you have more power than this other and power on this person and can exclude this person from the group it isnt equality it is power struggle it is adversity and supremacy and group pressure as here wiki is oppression and extinction of the freedom of expression it is so corrupt that not one admi found it disturbing nor strange to banish or revert a user edit to impose his own point of view on the sacro sankt name of wikis neutrality and equality ha ha make me laught but dont think you can trick me at believing such lies please in the future avoid using words that you do not fully understand as logic for your knowledge english is one of the easiest language to learn so stop affirming stuff like that gratuitiously do some research first i speak languages english danish french german norvegian swedish occitan latin greek and geek of them fluently the others as pocket use like german i can read a book but i dont have spoken it for some years so it might take me weeks to get back the rythm as a nativ american your knowledge of foreign languages is zero maybe hightened if you are a mormon who have been on mission outside the us but you have absolutely no experience of the process of learning new languages in europe from age we choose between languages english german and spanish at age we have to chose another one and choose between english german spanish italian russian from age when we begin graduate school we have to take another one and chose between those named before and also chineese and modern american and a dialect or local language and can also take hebrew to languages are part of the compulsory pensum i also took extra english dialect as the one spoken by semi natives in australia and english dialect spoken in india that was for learning,0 +what does copyright mean when we are talking of history and a statement of facts sure we can move around words but the statement would be the same does suparco have any problem with anyone using facts from their site it is a public organisation and such organisations do not usually have problem with using the information for educational research purposes and where else is one supposed to get info on suaprco except from suparco website is wiki admin being too whiter than white,0 +dysphoria i am afraid that the ip persists in adding the natural remedies spam link to this article i have removed twice but may not be able to watch the article for the next few days,0 +redirect talk the lamp film,0 +yes probably this is why your non notable link is not listed in de wikipedia where you are banned indef,0 +furthermore you are not in the liberty to strike my comment according to wikipedia policy only the commentator himself can do that if he wishes it but for you if you wont stop your disruptive editing of freedom of speach i will have to report you a second time please note that you are blindly engaged in vandalistic acts driven out of religious motives,0 +style border spacing px margin px px width class mainpagebg style width border px solid background color f fa vertical align top color font size hello johnbibby welcome to wikipedia thank you for your contributions if you decide that you need help check out wikipedia where to ask a question ask me on my talk page or place helpme on your talk page and someone will show up shortly to answer your questions please remember to sign your name on talk pages using four tildes this will automatically produce your name and the date finally please do your best to always fill in the edit summary field below are some recommended guidelines to facilitate your involvement happy editing style border spacing px margin px px width class mainpagebg style width border px solid f background color f fa vertical align top getting started wikipedia tutorial how to edit a page the five pillars of wikipedia manual of style be bold in editing how to write a great article wikiprojects getting your info out there cite your sources neutral point of view point of view verifiability uploading images image use policy getting more wikipedia rules policy library class mainpagebg style width border px solid f background color f fa vertical align top width cellpadding cellspacing style vertical align top background color f fa getting help style color new contributors help page where to ask a question help desk frequently asked questions getting along style color wikiquette civility sign your posts wikipedians conflict resolution,0 +thanks yoninah i have responded cheers talk,0 +this is my first experience typing in wikipedia,0 +howdy i see we have some common interests i remember reading of the cancellation of the arrow in avleak when it happened i was upset then but had i known about the u photos i wouldn t have been no use for an interceptor with nothing to intercept my primary interest in earhart is in the mystery i have arrived at an opinion which satisfies me but not without much investigation and introspection i am a bit concerned when i see stuff like the outright assertion that radio communications were heard for days after she failed to land at howland although i was born in the first half of the last century i missed the golden age though my library didn t i had the good fortune to talk to a number of the old heads and understand why some folks on the earhart discussion page cannot comprehend the nature of the time and thus have problems with context i have been trying to get a feel for the contributors before i spend any time editing most of my work on the wiki has been on lighter than air and atomic weapons,0 +satan yell a proposed deletion template has been added to the article satan yell suggesting that it be deleted according to the proposed deletion process all contributions are appreciated but this article may not satisfy wikipedia s criteria for inclusion and the deletion notice should explain why see also what wikipedia is not and wikipedia s deletion policy you may prevent the proposed deletion by removing the notice but please explain why you disagree with the proposed deletion in your edit summary or on its talk page also please consider improving the article to address the issues raised even though removing the deletion notice will prevent deletion through the proposed deletion process the article may still be deleted if it matches any of the speedy deletion criteria or it can be sent to articles for deletion where it may be deleted if consensus to delete is reached if you agree with the deletion of the article and you are the only person who has made substantial edits to the page please add to the top of satan yell talk,0 +free software open source in many articles you show your intention to use the phrase free and open source the best way to deal with this is to choose the term used by the developers of the programs in question themselves if you are working on a page about a program where the developers explicitly use that term i have no objection if the developers use free software it is best to use exactly that for that specific program if the developers of a certain program use only open source and the license of the program is indeed an open source license excluding the gnu gpl its text explicitly uses the term free software then it s ok to use that description the purpose is that the reader should not understand the word free to mean gratis in this case unfortunately just using free alone makes it more likely that people will understand gratis if you software into that phrase free and open source something like open source and free software it would be better,0 +yes it was a red link which didn t meet mos dabrl but i see you ve changed it now,0 +warning i am just here to say that bias you have against me is plainly obvious and i am asking you kindly to back off as i am starting to get annoyed i am starting to think that you see my username and instinctively hit revert you pretty much admitted this in your reversion of the palm sunday article if you would simply do some basic fact checking this could all be avoided my change to lacon il was sourced via grazulis and you obviously reverted because you saw my username and didn t even check or research the validity of my edit i would bet money that if any other user made that edit you wouldn t have reverted it if you have this idea that i make willy nilly edits with no basis then you are mistaken i dig through hours online resources old newspaper archives books and pdf documents to find my information i take pride in providing valuable detailed and verifiable info on historical tornadic events seeing the reversion of all this work is frustrating to say the least all i ask is for you to trust me a little more and actually read the sources and information provided sharkguy,0 +i ve updated the link to reflect its new home check it out,0 +well generally a regular admin there does not grants confirmed rights to edit semi protected page there s even a template exists that declines the request just make such edits for example see this revision and i am not sure if it s a stranded way but i asked only because i show such acceptance of request first time viwe the max,0 +mainland china and china proper are two different things and if you still have a problem with its usage go ask the user who added it it s frankly none of my business please point out why it is messy and how i could improve it with a few practical examples instead of just pointing fingers at my changes i don t feel my trans lations make it more difficult to read for english readers and i don t see any problem with the prose again please give me a few practical examples on how to improve it heru nar,0 +these reports of bloodthirsty georgian genociders running over old women with tanks and kniving babies has just been edited into the main war in south ossetia article can someone please remove,0 +the standard does not require an editor to produce unobtainable evidence of the internal workings of a news organization the fact that a professional journalist writes a blog on the website of his employer a professional news organization is more than sufficient to meet this standard,0 +lemkin line again you can coin a marketing slogan but not genocide putting it as simply as humanly possible,0 +ps indeed you only have to look at the discussion at the related article saddleback church to note that there is not a great deal of harmony between the editors talk,0 +r i why did you revert that edit,0 +i agree the current picture is sub standard i took it on my rubbish mobile phone camera however the pictures you have suggested are all non free so we cannot use them on wikipedia wikipedia s image guidelines state that only free images should be used for living people talk,0 +plot the plot section is way too long i know little oin the subject and don t want to take this on myself but can someone please reduce it,0 +paul i just saw this or would for the final time have replied sooner this he said i didn t say knowwing full well what that you did say and do is standard practice among the kathman reedy kennedey rent a mob culture over at hlas they have exported it to wickie you have apparently drafted to play the role of formerly alloted to david tangled webb we both know that wilkins had already written a play so there s nothing surprising about his then getting involved in a collaborative venture with ws his other activities have no relevance to his ability to write such as it was where did you take your in logic man actually wilkins had written in two produced plays but even then if wilkins collaborated on the globe version of pericles and there is no contemporary evidence that he unlike bacon was regarded as a collaborator of shakespeare there is no way he could have got the job short of his old breakfast companion will s active intervention haven t you read charles nichols or peter ackroyd on nichols yet you ll a lot better finding a mainstream than by hanging in there with kathman reedy and donald foster the former say shakespeare is redolent of the brothel here s the biographical link you guys have been looking for these past hundred years and you don t even thank me just yap yap yap come back when you ve read curtius,0 +your edits welcome and thank you for experimenting with wikipedia your test worked and thank you for reverting or removing it yourself the best way to do tests in the future would be to use the sandbox you can look at these pages as well how to edit a page the tutorial and how to write a great article all of these pages are good places to start again welcome and i hope that you will like wikipedia,0 +doesn t surprise me one of the side effects of something like this is lots and lots of unsubstantiated rumors i feel like we re editing the national inquirer sometimes woohoo,0 +meh anyway no worries south korea is there haha t me,0 +azizul haque scholar please refer to specifics when pointing influences and influenced in the infobox entire india and pakistan is vague term also refer to the talk page for general info,0 +yes plz someone put reception for gta lcs how come all the other gta games have a reception section and not gta lsc doesn t make no sense,0 +thanks for the speedy reply and the links after mining through about or thirty none seem to indicate a clear consensus on the issue of what is or is not a minor edit there are some agreement regarding specific examples where the edits being made where disagreed upon such as template redirects or date delinking but not much outside that clearly agreeing an edit as minor as i mentioned before i still think that someone needs to establish clearly what is considered a minor edit perhaps in a table form that can be added too or removed as needed rather than a vague catch all description for example after reading the many of the discussions i can see that there does seem to be agreement that removing blank spaces or changes to casing are minor and shouldn t be done alone aside from those the rest where argued both ways and it appears that the more technical users won the arguments by force of will and access rights i m not trying to beat a dead horse here but i just wanted to point out that the example you gave didn t really emphasize what you were trying to convey and if anything supporterted the opposition if they had bothered to read it,0 +cruz was a u s citizen at birth granholm did not become a u s citizen until she was years old via naturalization born in vancouver british columbia granholm s family moved to the u s when she was four years old she grew up in california and became a naturalized u s citizen at the age of jennifer mcfadyen about com immigrant spotlight gov jennifer granholm january there is absolutely no comparison,0 +dyk nomination of th street hello your submission of th street at the did you know nominations page has been reviewed and there still are some issues that may need to be clarified please review the comment s underneath and respond there as soon as possible thank you for contributing to did you know,0 +restored i restored the n word part after,0 +hi hi it looks like you could use some extra votes on your request for adminship if you support mine i will support yours,0 +well keep your own counsel obviously and thanks for casting a glance anywhoo,0 +read template infobox album you re only supposed to put the earliest release date in the released section of the infobox but it s not that important talk contribs,0 +where does this figure for karachi come from at over million it would be the nd most populous in the world,0 +tawker i want to leave you a message about windows xp but you block the talk page why unblock please,0 +sega project i noticed users getting invited to it and i was wondering is there a way that i can get in too thanks,0 +infobox changes i warned you before that you shouldn t be changing infoboxes on people your changes to infoboxes such as the one you changed on christina aguilera are unconstructive aguilera is not only a singer and record producer she is more than that if you continue to change infoboxes to what the person is not you will be reported to administrators and likely to get block,0 +goodle search i m wondering how long it will take before i can see the page i created and that you edited in a google or yahoo search i tried looking it up but it isn t showing up,0 +i did a simple search to find the answer http w google com search q largest city in ohio fsrc hl en sa x oi answers ct more sources this will not be an edit war cotinued vandalism of the article will result in edit blocking,0 +and i believe i have worked very patiently and fairly to do so,0 +dead link the secon weblink doesn t connect,0 +one more thing last sentence on article says the series will also be announced to blu ray in season box sets i think it s an error might be wrong also they really aren t seasons they are really just combinations of episodes like first set includes episodes when saiyan arc doesn t end until user dbzfan august edt,0 +regarding medal of honor please do not replace wikipedia pages with blank content it is considered vandalism please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia thanks,0 +northport elementary school what on earth of a reason do you have to delete my page i worked very hard on it and you just delete it you better have a good reason rrburke you wanna have an edit war fine youre on,0 +army aviation i ve noticed you ve been adding a rather lengthy list of world army air arms to several such articles this got me thinking that perhaps it s time to create a dedicated article on the subject where we can also list those article saving space in the national articles there is a category at category army aviation so i think army aviation this currently redirects to military aviation is a good title any comments or ideas perhaps there s a simliar article on one of the interwikis that can be trans lated as a starting point or used for sources,0 +however you didn t sign your edits and in fact attempted to make them look as if they d been placed there in some official capacity so that someone just looking at the page and not checking the edit history would not know they were placed there by a user who simply desperately wishes they were an admin rather than an admin please find some other way to fill the void in your life than playing defender of the wiki and making things personal when someone disagrees with you because frankly at this point i care far less about the entry itself and more your despicable and infuriating behavior,0 +another point i m trying to make is the trend that user is having scanning specific articles and just deleting stuff all the sudden that has been there for a long time previously don t band wagon if he s one of you that is not the mature thing to do either be unbiased and follow the rules of editing deleting and dispute wiki contacted user reported i am now personally resolving my contributions to the current three involved in this discussion take care,0 +so is it totally dead or we have a chance to see it sometime,0 +ah yes i had the friday in the wrong place blush,0 +i know how things can be i will wait till you give the word thanks,0 +it s like the boy who cried wolf false accusation after false accusation if only you picked at least one rule and stuck with it but the more things you make up the more it appears you are twisting to suit yourself curiously i posted about your escalating warnings for an edit that has remain reverted and the ani board informs you are not even an administrator again wp civil and post no further threats on my talk page that is also harassment and a personal attack,0 +well you see that i hope you can trans late the plot summary of the tv show scarlet heart to zh because the users on the chinese wikipedia just simply copy and paste the synopsis from the series official site than write in their own words which violates the copyrights,0 +copy edit following user thedemonhog s request i ve ran my eyes over the article all looks pretty good just a few minor things here and there typos according to firefox s spellcheck add on relevations revelations backstory back story not the writers intention not the writers intention clarifications recent arrivals recent island arrivals two members of a science team from an offshore with a hidden agenda daniel and charlotte who landed on the island three days earlier two members of a science team from an freighter anchored offshore daniel and charlotte who landed on the island three days earlier with a hidden agenda however harper did not appear later in the season however harper did not make another appearance in the season the couple was nicknamed jacket and has gained an internet fandom the couple has gained an internet fandom and been given the portmanteau nickname jacket you may wish to link to portmanteau but it s a dab with no better choice of linking or interwiki link to wikt portmanteau tense rebecca mader said that she was so excited for the episode to air because she thinks that it is even better rebecca mader said that she was so excited for the episode to air because she thought that it was even better i also utilized the template template talk interp for usage to manage the interpolations in quotes and removed part of the tmz quote and juliet in a bikini did not disappoint just my personal opinion but i don t really think this is very relevant to the episode though it might be better for her character article obviously feel free to undo anything you re not happy about hope it passes fac next time talk contribs email,0 +ok i ve posted a note at the blp noticeboard let s see what other editors say talk,0 +i just got on here a little while ago i am looking for the tennis player giovanni lapentti no luck yet but i will keep looking,0 +don t vandalize other wikipedians pages nd warning drini,0 +that s the most ridiculous thing i ve ever heard let s say you had an important point to discuss about an article and so you posted on the discussion page wouldn t you think it s weird annoying uncalled for rude for someone to just go in and delete your discussion items and what if this happened to you about times in one day,0 +changed the see also section because only marti made littlefighter he hadn t met starski yet,0 +the section wasn t removed because it makes false statements it was removed because it is a random rambling and doesn t add any value i bet i would be reverted too if i went over to elephant and said correctly an elephand cannot at the same time also be a giraffe or a panda some admire pandas because they are so cute jun utc,0 +ohconfucius has a perosnal vendete started against me and has begun to vandalize anything i have worked on ohconfucius has a perosnal vendete started against me and has begun to vandalize anything i have worked on as in here http en wikipedia org w index php title deaths of lawrence and glenna shapiro action history,0 +what i am doing is adding to an article some updates which you may dislike but have citations then you remove those each time so who is edit warring it is you binksternet you obviously don t want edits with citations to change the material on these sites i believe it is you who should be block why should anyone use wikipedia as a source if it is one sided,0 +this is incorrect i have not been block for violating arbitration i have been block for remarked about my displeasure at another member s harassing behavior towards me,0 +henrietta van laer says no it s not that having an agenda at all is a problem for wikipedia wikipedia has a very clear and unconcealable agenda pro socialists liberals greens and gay s determined to vilify and demonize conservatives it is a completely biassed source its articles on so called left wing parties are blatant whitewash while those on so called right wing parties are nothing but vilification most of it based on flimsy third hand sources and malicious allegations with no basis in fact instead of detailing their policies wikipedia provides a compendium of prejudice the frequent denials that you have a point of view or that you are biassed are not at all convincing particularly since the whole slant is maintained by a policy of rigorous censorship pov in wiki speak different pov to us the wiki police i also get the impression that wikipeople are pretty young there is no sign of maturity or experience of the real world in their political views under conservative we find the definition that these parties are merely in favour of the rich how naive can you get i don t know what the term fat cat means in the usa but here in britain it has a very specific meaning i e the people employed in the public sector who get salaries of times the average naturally they are inclined to vote labour and can also legally donate large sums to that party then there are a million more people employed in useless quangos which would be abolished by a right wing tax cutting party many of them earn two or three times the average wage and like the fat cats they get generous pension packages too added to the votes of the millions of people who live long term on state benefits this amounts to a huge vested interest in the socialist programme on the part of people who are neither honest joe workers or low paid but wikipedia is still living in a world of student politics with a poster of che guevara on the wall his hair streaming in the wind,0 +i wont do it anymore end da block,0 +re twats no it is not necessarily an attack please hear me out if i hit my own thumb with a hammer and shout twats is that an attack of course not as regards the blp issue it is absolutely not going overboard to remove someone claiming a living person has terminal cancer without any evidence good luck trying to defend that action regardless of our disagreement i seriously consider you remove that particular claim as a matter of urgency and please acknowledge you re read this,0 +that is not what dubois said not even close i ve edited the sentence in the article to make it clear that such claims are not only misleading but completely false follow the referenced link in the article for more information,0 +national team player scored in african women s championship qualification so can t have made her debut in,0 +please check what bias means,0 +events happening in dublin hi as you tagged yourself as being in ireland i hope you don t mind me reaching out we know have a recognised wikimedia community ireland user group and we have been running workshops and other events in dublin and beyond in case you are interested our next event will be this saturday in collins barracks you can find the details here,0 +i ve gone much further than that i ve rewritten the problematic last paragraph from from le vernet became a trans it camp for detained jew s in june the last internees were evacuated and deported to the dachau concentration camp in the ghost train in total about persons of nationalities were interned in the camp mainly men but also women and children to from le vernet was used as a holding centre for jew ish families awaiting deportation to labour and extermination camps the final trans port took place in june and took the remaining prisoners to dachau concentration camp one source says that about persons of nationalities were interned in the camp talk,0 +childish talk lol seeing you write episcopalian like that makes me laugh,0 +thank you for the page protection,0 +anyone think it s funny democrats get caught with low class white girls and republicans get caught with men,0 +routine administration and helping out around the studio,0 +cfd questionredirects ok per your close here i assume it s ok to create category redirects on the old category names talk,0 +i think he missed a crucial distinction but consensus lay otherwise,0 +you know maybe it s me you are either the th or th person to turn this on me the guy put when you buy an american car you must afterwards have sex with your cousin because that s what americans do i took it off the guy came back with a sockpuppet its all on the jeremy clarkson talk page then i got block for a week for reverting the guys vandalism and the incest remark was put back its not some thing i dont agree with its vandalism you cant say something like that with no source i could put that on any page with no source it s clear cut vandalism the first half of the sentence is an actual quote but he s spiced it up with some incest and i ve now been block once nearly twice by you for taking it off and ryulong thinks im talking about something else and is sending me smug emails so i told him to get lost and he wouldnt so i told him to f o thats life i said messages because everytime i do anything now i get a yellow messgae over and over so what about this incest you are the last guy to put it on there now how do you feel ryulong you are so desperate to have the article say that americans have sex with their cousins why dont you provide the source right here and now i ve looked on google you got something else up your sleeve,0 +after edit conflict with user jason potter the wp rr suggests that the th revert is the one not allowed but also mentions that it is the spirit of the policy rather than the exact letter that is enforced with regards to the section of this talk page ymous quoted i did not miss that part i also did not miss the sentence directly after it which states this discussion page is only for discussion on how to improve the wikipedia article in other words the section quoted relates directly to the talk page not the article,0 +i think the records section is a bit weird for example consecutive championship titles with different constructors is not really his record lawson did it first title with yamaha with honda championship titles with different engine displacement imo that s a bit of stretch yes he won with the difference engine displacement but that was helped by the regulations changing consecutive wins with yamaha in and i am not sure what exactly does that mean in he won consecutive races and in as well,0 +on the other hand great spirits have always encountered violent opposition from mediocre minds albert einstein anyone who has never made a mistake has never tried anything new albert einstein t c so brave it is fascinating this comment clearly comes from an established editor i must say i find it disappointing to know that there is at least one editor on wikipedia who is so cowardly they cannot bring themselves to be linked to their comments what are they afraid of i wonder one would think that as they are too embarrassed to be linked to this post then it speaks far more about them than about majorly chat maybe the editor in question is cowardly because they are privy the most private of communications and would like to continue to be knowing majorly he ll probably go sulk on his blog about this hey majorly i have some obie trice for you to listen to bye for now just sock it for a while just take a step back for a while either start a new account or use your sock for a while it will all blow over soon enough,0 +oh no not the dogs please not the dogs,0 +er let s shimmy apr utc,0 +thanks for that that answer my one query but second query is still there i am backing by request with a petition click to see petition i am also against censor but still book are rated,0 +about the recent message of wikiproject guitarists oh shoot the fact that there is a user mac dreamstate and a user mac dreamstate confused me considering the first one had only five contributions i assume you want to still be part of the wikiproject considering your are still an active editor i didn t notice your activity as mac dreamstate until after i posted that message on your talk page i apologize for being confused and any possible inconvenience speak to meabout what i have done,0 +agreed also surely dissipation of vital force could be a criticism of recreational sex in general talk,0 +hi again dear yes i strongly support independence of south azerbaijan from iran if green movement could change somethings probably i would change my idea but i dont want to be under islamic rejim anymore and i support the changing of destiny of azerbaijani people and about azerbaijanis are turks or not despite you are talking about persian theory of the roots of turkish people we all know that turks started to migrate here circa ad when saljuk turks of west branch oghuz started to come but infact it is not important when they came here the important thing is every one in azerbaijan feel themselves as azerbaijani and not azeri which is an invented word by persians turks and believe that they r turks and speak turkish lang as same as turks of turkey you can come here and ask yourself one by one you will see it is so irrarational to say to some one that no you r not turk you dont know who you are i know you r azeri and azeris are indoeuropean pls dont tell us who we r let us to identify ourselves and we identify ourselves as a turk w hate ver others like or not about aran as i know we didnt have eyalat aran in the qajar era we had eyalat azarbaijan and both azerbaijan rep and armenia was part of this big eyalat as well as south azerbaijan aran was part of this big land but the important thing is the name of land is not important here as well the important thing is the people who live in azerbaijan rep former aran as you called are of my race and we r same nation you may call there azerbaijan or aran but the important thing is here a nation live which called themselves azerbaijani turks you may call them w hate ver you want as well as their land the important thing is what they call themselves if they change the name of their republic will you satisfy what about next will you ask them to call themselves arani and start to speak aranian language which does not exist ok let s think azerbaijanis r not turk so what they r azeri ok let s call them azeri what is the next step you will ask them to forget to speak in turkish language and start to speak persian or not speak azeri lang so what is azeri lang where is it can you learn it to about million people let s thing pragmatic as well as rational even if your theory of roots of this people is correct historically you cant ask them to speak neither a lang of years ago nor persian also i dont rely neither to researches of kasravi nor zehtabi cos both were under some believes of their backgrounds and governments one was paniranist other was panturkist some of their researches looks really funny about the names of turkish places and cities i guess you have never ever travell to azerbaijan if you were here you ll see that iranian government has changed the names during pahlavi era some of them are such a funny thing that r jokes between us for example tabriz has a suburb in western part of the city called akhma gay a which in turkish means the rock which falling down and it is a rocky place do u know what is its official name ahmagiyyeh the lands of stupid people all of the turkish names tried to change to a persian words which looks verbally simmilar them the fact is persian never have been to azerbaijan most of the azerbaijani names have armenian or tat roots not persian my believe is that a mixture of differnet natios like tats armenians and other caucasian tribes lived here and then turkish tribes of western branch have migrated to this land in large size and get married with the native people and has made the new nation which called azerbaijani turks nowadays they have their own culture music dance cuisine etc which seperate them form persians and interestingly this culture is like culture of turks of anatolia which believes that they r percent turk i told you history is not important than today the important thing is every one here feel themselves as a turk i dont know what they want us to feel in tehran the name of azar abade gan looks wrong as well this word cant change to azarbaijan during history i guess the word was azar pay gan maybe which zoroastrian persians called not azar abad gan which ferdowsi mentioned in shahnameh and everyone got to accept it now i had a look to your files about vote frauding which i still believe is correct as well the diagrams of those pdf pages show that people of iran will give their votes to ahmadinezhad when that company asked them before election but you know there is unwrittenable rules in iran which every one know whenever some one come and ask me in person that do u like islamic republic ali khameni and bla bla bla i will answer yes cos i dont want to lose my life we dont have life guaranty,0 +approximately the article is factually incorrect etc on an don in the article are factually inaccurate statements about the confederate flag esp as underlying all those statements are a fundamental and flawed understanding entirely of slavery in the us south e g of white families in the us south never ever owned any slaves ever so imputing slavery as the basis for fighting in the civil war and so too the battle flag the confederate flag has that fundamental flawed distorted view add to that that northerners were almost the ship owners and ship captains that brought all slaves over to the us south and add to that that black kings chiefs were the ones who sold into slavery all the slaves that were in the us south and so on and on the story is one of fundamental distortion and of the of whites in south who owned slaves they have all been dead years further add to the fact that for of white southerners the flag has always represented valor in battle of the approximately white southerners who died in the war add to that the war began due to invasion by north and the felt view of white southerners that states rights then was the main issue and to a very small view slavery way below that esp as those of confederate soldiers and their families did not own and had never owned slaves to distort and warp all this factual history into black mania about the battle esp of valor being a rascist symbol further massively distorted e g by us media as cnn is simply put mass hysteria with no almost no foundation in fact please add all this to revise the bottom of the article which has those endless wrong factual distortions kareen abdulla selassie imp of ethiopia sr,0 +mm let s see you see zero asian in this show you call that original reserach do you need a reference next time when you tell us that the weather is hot because it is your own research,0 +large scale appropriations of land owned by the greek communities was part of the official state policy in the s this can be confirmed by several sources by the way we are talking about the s not,0 +thank you for experimenting with the page tuna on wikipedia your test worked and has been reverted or removed please use the sandbox for any other tests you want to do take a look at the welcome page if you would like to learn more about contributing to our encyclopedia,0 +i think it would be best if we just call them by their original team names unliday or unlinight thv tw were just the renamed version of unlinight and unliday respectively,0 +in the production section,0 +reassigning topic template i am curious to know why you are changing year nav topic to year nav topic as per this edit and others talk contribs,0 +bias for what i d take the distinguish off any page it makes no sense you re distinguishing two distinct fictional characters who share a fictional skill do you understand how crowded the hat notes would be if we listed every fictional archer because people might momentarily mistake them for each other,0 +redirect talk st pancras railway station archive,0 +please refrain from making personal comments you know better than that vaswani being an owner of the hendon mob site has nothing w hate ver to do with your incorrect conclusion jumping about the site you were wrong and you should have done some research before you made several mistatements in contrast if you would have said a site owned by the person being profiled should be avoided as a reference if possible you would have made a valid point and one that is easily dealt with since there are similar sites that could be cited instead still your own point makes no sense since there is obviously independent corroboration and many reliable sources cite it but again that was not the point here you should do minimal factual research before making inaccurate assertions about blatantly obvious reliable sources you do seem to have moved on from that now even if you haven t admitted the error so we can just move on past this,0 +you are a n b stop fixing the crap that i edit i will call the authorities if these actions continue go fuck yourself like the n b you are,0 +to wikipedia admins this is a internet site or what ever you should follow international laws if americans don t like to change their country name to isis syrian government don t like to use other names which they didn t give understand what i m telling or wikipedia will go to international courts,0 +utc even more progress no unsourced text to clean up this week either november,0 +hinckley i know it sounds silly but this guy is dead seems a little rude i am sure it wasn t intentional but could you say it a different way thanks and thank you for time in updating the article,0 +the history list ayn working,0 +justphil thank you thank you thank you i will display my first barnstar ever with my other userboxes but first i must tell my birds yes i m a big fan of that film again thank you,0 +wikipedia is not a reliable source and at that the three articles you give even have banners saying they are insufficiently sourced at present the lead of this article has three refs your version had none t,0 +julie summer lovin,0 +jeepers fellas i m a landscaper i build fences decks water features and i care for trees n schrubs i love computer programing i breed dogs i have a lovely country farm i get to work on when ever i can i really don t care what you think of me it has just been my experience that the laws of science don t just break because some guy says so,0 +not only is there a wholly reliable source indicating that joey lauren adams does not identify as bi sex and has explicitly disavowed what the earlier source claimed but the url you re actually adding to the list as a reference for her is about brett anderson and doesn t mention adams anywhere stop this now please,0 +this is a warning no more hanky panky mr cranky wanky,0 +how about you only use it on wallpaper wait whatd you say reads the message over more like you um i forgot again uh absolute minaqrky runs off a cloud and falls to the ground howd i get on a cloud anyway yeahp thats me absolute aned utter nonsense,0 +i wish you another six months of happy military mopping more good times reading articles at wp mhr and success with your own article writing and hopefully another big period of growth for wp milhist vote in the photo straw poll,0 +chris you do realize that s p does provoke people right over the years that i ve scoured the an i i ve come across crybabies and if i see it i will speak on it because i personaly believe that administrators couldn t care less about sertain things so i address it and i don t sugar coat it i tellthe truth and nothing but the truth mmkay,0 +goldfinger next time please read wp brd and don t just re revert use the talk page to discuss rancid tomatoes is one of the most pointless and meaningless measures of reviews and their scoring system is a monumental crock of shit e but if we are going to show it then we phrase it appropriately even if it would be better to pour scorn and derision on them,0 +redirect talk everything s eventual novella,0 +thanks dr b and,0 +simon boliva over claimed many historians have noted that simon boliva deliberately claimed additional land for this mountain country even though he knew bolivia will always be a land of mountain people why is this not mention in the article its historical facts,0 +no i m not ranting and you re tautology about if they re editing against the sanction they will be sanctioned is both laughable and irrelevant i m interested in editorial behavior and effect and the odds are vanishingly slim you are even as remotely qualified as i am to have an opinion in these kinds of matters keep mashing buttons and your eye off the big picture,0 +wtf why you deleting maashel bad things will happen to you now,0 +new article wizard hey zman per this discussion did you at some point create a wizard to help with new article creation if not you do you know if anyone else did i we could swear we ve seen this somewhere but darn if i can find it anymore thanks,0 +i m right about the chart edits i make as well of the time,0 +i think it is both a khmer character and a tamil character then the problem with it was not that the character was drawn wrongly but that it did not represent the sound w like the other characters in the logo the khmer character does not represent w either talk according to wikipedia wikipedia logos alphabets represented in the logo they do represent the letter from that alphabet that most closely resembles the english w as in wikipedia however according to nohat at user talk nohat archive trouble in all the logos only some of the symbols were selected to represent wikipedia others were chosen at random and threads at user talk nohat archive say the same thing angela says the same thing in meta talk main page archives error in the wikipedia globe zocky repeats it at talk main page archive wrong devnagari symbol for wi in wikipedia s logo the only remaining tiny flaw i can see in your logo thue is the top right piece klingon r is lacking any depth there should be a black edge to the piece but instead we see the grey of the inside not very important at all though ah i and the person who reported the problem with the tamil khmer character thought that all the characters should represent w but that is obviously not the case imo the klingon r is within stylistic freedom so i guess the logo is correct now when at first you don t succeed redefine success talk acousmatic hi there you suggested a merger but you did not start a discussion i think there may be a case for this but moving acousmatic music to acousmatic would be the wrong way to approach it instead i would suggest changing the title of the acousmatic article to acousmatic sound so that the page can function as a sub secion of acousmatic music which is a particular form of electroacoustic music one which specifically uses acousmatic sound sources the acousmatic sound article might focus more on schaefers and chions theories while the acousmatic music page could deal with the artistic practice of using sound in an acousmatic context,0 +some small communist and fascist groups are definitely cults some larger ideological groups may contain a cultic core or special formations organized in a cult like fashion according to some accounts the third international operatives from various countries in the s were treated virtually as cult zombies by stalin s cynical bureaucrats arguably himmler s ss included cultic formations trained at that castle wewelsburg where they supposedly performed something called the ceremony of the stifling air possibly this is a street legend as to north korea it is definitely a totalitarian state with an intense leader cult religion probably the most intense such formation that has ever existedone hesitates to describe it as a stalin style personality cult since even stalin never strove for such a level of quasi religious worship and regimentation but i m not sure the term political cult is appropriate in reference to north korea since the term has been used up until now exclusively to refer to relatively small groups that don t wield state power and that employ elaborate psychological manipulation of their followers as a substitute for the patronage and secret police power of a post revolutionary state dking dennis king sept,0 +no this is my page and if this person comes to my page and pretends to be a hate d enemy i can t play nice i haven t cussed tweedle isn t cussing tweedle dee tweele dum they are disney characters he came to my page and jason is a long hate d idiot you need to understand anyone pretending to be jason needs to stay the hell off my page,0 +i have cleaned up the years i ve cleaned up this article before but it seems people just keep dumping more information into the article than is really needed moving her awards to another page isn t the problem the issue is fans let their excitement get the best of them and add way too much to the article cluttering it with information that screams of a fan blog and making it so long that regular readers have a hard time following it,0 +i m not immune to anything if i commit a crime i will be punished by both god and fate no doubt it is hard to say that you have no involvement when a large part of the an i discussion consisted of editors that disagree with my position on the events notability criteria having a bit of fun and a bit of sport considering that you and i have engaged in that dispute as is demonstrated by the link above this block could be considered an act of vengeance on your part i do have strong evidence that his views are embodied by what wikipedia is not so are the views of many other editors i do not doubt that they defy these principles in good faith but good faith or not our principles must be defended or must they i suppose we can simply ignore them that doesn t seem right to me but if you think it is what we should do i guess we ve not much choice,0 +a method for posting current events to the proper pages,0 +january utc hi prodigyhk could you also please add a few lines on what it means so that it s clear for readers what the significance is,0 +kirby first david a year chapter extrapolating race in gattaca genetic passing identity and the science of race editor last metzl editor first jonathan m editor last poirier editor first suzanne title difference and identity a special issue of literature and medicine publisher johns hopkins university press pages isbn cite book last,0 +i know edits aren t power or anything like that but is simply amazing you re one of a handful of editors with that many congratulations and thank you for your amazing work everyking i hope you continue it,0 +please stop removing referenced information from richard miniter s wikipedia page we can only assume that you are yourself richard miniter in which case we re sorry that you got fired and took it out on your girlfriend but it would seem from the articles referenced that you deserve everything that s coming to you,0 +nope tr was very keen on this point,0 +re talk page support thanks for your support i swear these guys pick an ideological opponent at random vandalize their page and then watch it very carefully so responses so they can begin trolling,0 +no thanatos and dr k are not pushing an agenda why should they what agenda it s obvious for everybody that they are being neutral about this article and constructively cooperating to get improvements in the article too if there should be povs and synths kept introduced because of their actions it would be pure coincidence thanks to them it is a really good article i insist,0 +utf does map a sequence of code points to a sequence of bytes like the other utfs but unlike them there is more than one valid way to represent a peice of text in utf and its output is designed to be used directly in internet mail essentially it was a case of recognising that utf quoted printable insanely inefficiant encoding and doing it better by designing a single process for the entire task from a registration and mail header point of view utf is considered to be a character set e g its listed at http w iana org assignments character sets,0 +hint use the section edit button i hear voices in my head,0 +welcome to wikipedia we could really use your help to create new content but your recent additions are considered non notable and have been reverted or removed take a look at the welcome page if you would like to learn more about contributing to our encyclopedia tell me january utc,0 +redirect talk san francisco parks alliance,0 +thanks for taking care of that another sockpuppet,0 +little skunk is not enough to be called a personal attack,0 +sorry your protest goes unnoticed for you to protest about my characterization there would have to be a qualified adjective next to your name or a description of a series of actions grounded on blatantly false information what i claim is that you are re engaging in a series of edits and deletes which is factually correct and therefore morally permissible i take no sides i see things how they are you never cite your sources and as such i do not feel compelled to prolong my answer any further good day per wikipedia policy i am letting myself know that i am one of the designated mediation parties for a current article dispute,0 +the npr story motivated me to look up conservapedia i visited their site and it graphically emulates wikipedia wikipedia talks about fringe theories but there are a significant number of americans who see the world through this conservapedia lens when does a fringe viewpoint become a legitimate viewpoint worthy of an entry going to take me a couple days to read through the material and contemplate the philosophical implications,0 +i attempted to do something about the background and ethos section which i abandoned i don t think that this section belongs in this article i would like to suggest that the dominican college article includes a section for this since it should be pertinent to all dominican colleges,0 +i changed my mind and did change it after all seeing as this article doesn t appear to be all that well kept i also removed the reference to sean redirecting to this page since it doesn t,0 +just got a new vps with dreamhost and it s strange i cannot edit there is no proxy on my server,0 +username hi i ve noticed that there are some user name is like email address i m very curious about email id is e mail id inappropriate for user name some of them leave welcome messages on new user who s id is e mail address is e mail adress id used in wikipedia anyways please reply in my message do not copy my messages cheers,0 +user talk williamimm talk am cst october,0 +i just noticed that the comments were made a year ago how bizarre of you to bring it up now,0 +adopt a journalist project i am interested in england london nottingham you have been assigned to write about who was killed in london england uk in,0 +canuckster s user talk pages i think it s time to protect canuckster s user talk pages since they are constantly being reverted to canuckster s preferred version by not only canuckster himself but also several anon ips as well ll,0 +ga article passed good article criteria article is well written comprehensive and easy to understand it is factually accurate and verifiable sourced to citations it is broad in coverage covering a large historical period and was an interesting read i might add it is neutral representing data covered in a fair manner it appears to be stable with no major conflicts between editors regarding this article that i could find good use of images images overall and of those all of them are free use images and not fair use good job to all of the contributors involved,0 +if only i could somehow get a new ip address sigh i guess i ll just have to continue being block from your retard ed encyclopedia,0 +first of all i have told to many pages from the first day that the account is coming from an office that giorgos works and that is giorgos that told me of what is going on here in relation with the discrimination personal attacks enforcement of an anti cypriot propaganda deleting all edits that do not follow this anti cypriot propaganda despite their well sourced evidence the double standards in blocking the blocking of anyone that is basically not following a specific anti cypriot agenda on the matters of cyprus after a war edit by a specific team the same team that is trying to enforce its own agenda on cyprus matters and trying to block anyone else from editing propaganda tactics e t c everything has to do with a discrimination the effort to dictate personal attacks and the effort to enforce an anti cypriot propaganda on cyprus second giorgos is not writing in wikipedia anymore so he has no active account third as i see all the things that giorgos is saying are true you can block the account and you can block it forever if you please i will take the matter to the highest levels and we will speak from there i will give all the names and all the evidence necessary and i if i don t see anything happening you will see all the users involved in this in popular newspapers and news portals and often explaining exactly what happened what is happening and what is going on with evidence evidence matters to the rest of the world in contrast with here,0 +who are ramdasia,0 +sorry princess i should have realised that by now spielchequers,0 +kind sir have you ever tried to suck your own wiener i mean you should mate and also try to catch a blowfish and fuck its brains out you curry munching fuck and jimmy wales called he didnt flush today so u could go eat his shit,0 +only a nutcase liberal could make a statement as absurd as has,0 +about command of broz and ethnic cleansing you must apprehending above statements of ilario and mine tito s command expression is in foibe massacres too and ethnic cleansing is in see also section of foibe too your interpretation about optants is wrong because you ignore prominent italian historians like this article is simple an other part of same historic event of foibe both were ethnic cleansing for prominent italian historians your changes are pov very much because you are an admirer of dictator broz and you are negative obstructionist moreover in my next change i approve your some words added in article to verify your real intention of neutral collaboration,0 +let me just say that,0 +hey dbigxray i seen your pov before friend in time i will present all the bigoted comments of yours and chit chatting you do with other editors to tag team articles and yes i have proof no point in deleting your comments now p,0 +the permission was forwarded to wp otrs,0 +this article is being rewritten at jack abramoff abramoffrefactor please take note of the existing notes and outline and follow in the spirit of that rewrite refactor comments welcome thanks archives archive friday th august talk jack abramoff archive i made some substantial edits to the page and archived the entire earlier talk since it was mostly to do items since dealt with copyvio this article and it s sister screed are embarrassments to wikipedia they re essentially the same and both reflect the authors politocal hatred and zeal both also have severe irredemable copyright problems and are and embarrasment to wikipedia they need to be deleted immediately alot of this article does seem to be a blatent copyvio tyco as below was edited the text was accurate but half the news story was pasted in here you cannot just wholesale paste in paragraphs of text from a news story attribute a link and it not be a copywrite violation it s called plagerism tyco almost the whole tyco section is a blatent rip from the wapo article i ve removed part of it as it needs to be re written i think i ve cleaned much of the copyvio stuff up hopefully there is alot of non essential stuff in this article about peripheral people and not about abramoff however it needs to be cleaned up more as the article meanders alot here and there i reverted some things you took out outside the tyco section like in the early years section and in the intro about delay that material is not copyright infringement because it is properly sourced when directly quoted it still needs to be rewritten to not be a direct copy paste unless you are going to quote it just providing a link is not attribution and copying entire paragraphs out of an article is plagiarism not fair use unless you are quoting also if you are going to say the los angeles times reports you need to source the times not a secondary source i e democracy now i modified the quote and attributed properly the speech from tom delay is a direct quote it s in quotations so of course it is taken word for word from the source i ll tweak the setup to the quote a little better as per your request here s the primary source for the other thing no problem if i see something that is probable copyvio i tend to chop it out first and then rework it i don t usually just leave it out if the quote is accurate btw have you found a link for the franken quote i can t find anything other than on blogs honestly i m not sure what the relevence to an article on abramoff is really anyway the forced abortions part was originally reported by brian ross at abc news for on march it also appears in al franken s book the truth with jokes in the tom delay saipan sex tour and jack abramoff casino getaway chapter since we ve agreed that primary sources are key i ve change the attribution in the article the indian tribes scandal this area is a mess i have tried to clean it up a bit and structure it better it may be best to create a new page on the tribes scam and point the reed norquist etc pages to it basically we need fewer facts and more context at the moment the page is simply a list of trans actions that may or may not have been legit with a strong implication that they were not legit i moved the whole scandal to its own page this makes much more sense since although abramoff is a major player in that scandal there are several others who are significant players in particular ralph reed i am not doing this to hide the scandal i think that people looking for info on i,0 +april utc decline please reread jayron s decline above whether you technically violated rr or not is irrelevant and splitting hairs is unlikely to help your case talk,0 +guten tag so i have just finished telling two other users that i have completed the promise i gave you and him so now we can be friends again it had to do with my past unintentional disruptive but nevertheless harmful tendencies a few months back which i fixed right,0 +nirmal dude chill dont act like you are the protector of wikipedia or something and don t try to warn me and all that be polite you ass it is a known fact that the person whom i have added a photo has committed tax fraud and it is appropriate to show the enforcement capabilities of income tax dept in indian revenue service page it is not defamatory it is a goddamn fact as for directorate general of income tax investigation it is not my fuck ing personal commentary it is what irs people the employees of the organisation do when they are posted in the organisation don t you understand it was important to the page instead of helping and guiding young wikipedia editors like me you threaten me it grieves my heart to see it just being deleted by you,0 +so maybe the sentence could be something like after forming w in torossian continued to represent clients from the christian right but also began picking up corporate clients and celebrities and just leave it at that the internal links to the company then should be enough note i wrote the sentence to suggest structure only so the example may not be accurate talk,0 +help me hi everyone i was wondering about what articles are needed for the doctor who monsters enemies i was thinking of enemies from the new range of books from the series i e the clockwise man the monsters inside there were some rather interesting enemies including melissa heart and the mechanicals which i could write a rather long article on and maybe even the globs from the monsters inside or how about a sub category for the blathereen on the slitheen page please leave a list of suggestions so i can get to work and is information allowed on if it has been confirmed by the bbc or dwm thanks tcof,0 +wow you edited the comment making me look like a classic idiot fanatic right wow youre good and also have morale knowing beforehand you have no morales however i barricaded myself by posting elsewhere too so gj ian thomson d heres a link to what the comment actually looked like http w reddit com r conspiracy comments nsl l conspiracy extending to wikipedia thought it might as well stand there too since nothing but cencorship can be expected by some sheep on wikipedia only just recently realizing that his whole life his wife and kids is just there to serve a master and therefore fanatically defending his beliefs to the contrary despite overwhelming evidence you can go back you your boring life now ian i dont expect this no evidence from experts thread to stand for long anyway sheep and this was supposed to be an objective lexcon learn something new everyday i guess or as in your case rather not because it would mean you life ment nothing d keep living in denial ian and dont forget to cencor i maen where would we be without cencorship free and informed ppl cant have that,0 +section length book titles et al hi can you read this section and then offer your opinion on the points raised specifically the issue of titles in the fcb length and detail of given sections what constitutes fannishness etc thanks,0 +ipcc please read up on how the ipcc works it does not do science itself what it does is summarize the literature when you write members of the ipcc also concluded then it shows that you ve misunderstood how the ipcc works hegerl et al is chapter in the ar which is a summary of a large number of papers and in this case from a large number of models,0 +shocked i am a regular wikipedia user and despite having an eb account find myself using wikipedia increasingly as a source of generally impartial factual information that opinion took a nosedive today when i came across this article in wikipedia while looking for information on ear protection if i want to find out about bose headphones or any other product i will go to their web site i don t expect to find a companies product range specification in an encyclopedia one can easily imagine the impact if every company starts using wikipedia as a site to promote their products under the guise of giving facts to the reader the fact is i don t care whether this so called article is written from a npov or not whether it s balanced or nor or even whether it is factually correct or not i do care that my favourite encyclopedia is being abused under the specious argument that if it s a fact it somehow deserves a place here i can think of a hundreds of types of completely factual information that i don t want to see cluttering up wikipedia and marketing information is pretty close to the top of the list,0 +december utc i am new to wikipedia but feel like i am doing good and really enjoy it here i made my first edits ever over at commons regarding this issue and was i believe questioned about being new i admitt i lost my cool and told my accuser to shuve it but is this how actually new editors are treated there i doubt i will spend much time there going forward thanks for letting me vent,0 +focused on stringent following of rules,0 +re j leon altemose,0 +about afd they haven t been inviting me along,0 +cc by sa can information released under the creative commons attribution sharealike license be used on wikipedia see haga haga if not could we add that to the table in wikipedia faq copyright leftorium,0 +you are right i should have provided citations,0 +my recent rfa thank you for supporting my rfa which unfortunately didn t succeed the majority of the opposes stated that i needed more experience in the main namespace and wikipedia namespace and talk space so that is what i will do i have made a list and i hope i will be able to get through it i will go for another rfa in about three month s time and i hope you will be able to support me then as well if you have any other comments for me or wish to be notified when i go for another rfa please leave them on my talk page if you wish to nominate me for my next rfa please wait until it has been about three months i will not be checking back to this page so if you would like to comment or reply please use my talk page thanks again for participating in my rfa talk cont,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages you might like to see the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style you are welcome to continue editing articles without logging in but you may wish to create an account doing so is free requires no personal information and provides several benefits such as the ability to create articles for a full outline and explanation of the benefits that come with creating an account please see this page if you edit without a username your ip address is used to identify you instead in any case i hope you enjoy editing here and being a wikipedian please sign your comments on talk pages using four tildes this will automatically produce your ip address or username if you re logged in and the date if you need help check out wikipedia questions ask me on my talk page or ask your question and then place helpme before the question on this page again welcome,0 +just please listen to me i am making truthfully honest truths i will leave everything on wikipedia alone i swear after this i will leave you alone forever,0 +this page will be updated shortly to explain the full significance and its merit for a full wikipedia entry primarily this merit is based on our client s requesting our presence on wikipedia,0 +shouldn t the language privileged by their minority status be removed,0 +pl change sachins photo from front page keep photo which have sachin holding his bat high just like after,0 +it s a temporary measure it s been there less than hours why does every bold edit on wikipedia result in endless flame wars usually from those who don t look closely yes i looked at the tag options before adding it yes i consulted on the talk template page waited and thought about and yes i ll consider something else either making it hardcoded and more appropriate for the moment alternative tags proposing a template for similar situations or a combo of the previous but we can t go forward if everyone s a naysayer if there s a rush to judgment and knee jerk reverts if editors flat out refuse to use talk pages and it everything has to be done now now now rush rush p,0 +pl monteiro thepatientcapacitor com you were the only one to specify a reason in the edits i restored so i am writing here though at this point i lost sight of why bother if you are willing to overcome the tl dr syndrome that everyone here seems to suffer you can analyze the issues with the thepatientcapacitor com wp rs status beginning in the place where all references and the most extensive statement is given competent independent writers and wp rs ny bet is that you won t and this will never be properly analyzed,0 +ok then hm so how should one go about doing that i mean i m guessing one can t just go around and edit something like that you have to get permission or something right also does anyone have one of those comic book checklists where it gives you the order,0 +hedgehog dialogue what does it mean knowing hardly any russian i am not sure but it seemed they put a lot of stuff in it they couldn t say in english without getting banned mistake am i the only one who noticed vladimir putin being the pm of russia is wrong seriously preceding unsigned comment added by,0 +i m using a university wireless network it is not an open proxy also i would appreciate it if someone could copy my statement to an i this is all i will say on the matter,0 +from six some of the people places or things you have written about may not be sufficiently well known to merit articles of their own the wikipedia community welcomes newcomers on wikipedia all users are entitled to a user page in which they can describe themselves and this article s content may be incorporated into that page however to merit inclusion in the encyclopedia proper a subject must be notable with reference to reliable published sources we encourage you to write or improve articles on notable subjects,0 +sandgrouse hi i ve now passed the article i assume the ga logo is added automatically i noticed one more thing that might be nice to briefly mention in the article under relations with humans but isn t essential to the ga status at all which is that a subspecies of the chestnut bellied sandgrouse appears to be extinct maybe briefly explain why as it is most certainly human related,0 +since when is deleting a rubbish arguing vandalism,0 +what i don t even really have an idea of what you re talking about,0 +operation condor is also named a dirty war can this be mentioned in the introduction of the article the dirty war in argentina is just one dirty war of many operation condor was a multinational dirty war and operated in many nations and used many similar methods see this august english article from le monde diplomatique latin america the years dirty war,0 +afd nomination of springfield s state an article that you have been involved in editing springfield s state has been listed for deletion if you are interested in the deletion discussion please participate by adding your comments at wikipedia articles for deletion springfield s state thank you do you want to opt out of receiving this notice,0 +the three stooges were also talented and i believe they were as worthy of applause as bang bang perhaps even more so,0 +combination of unbias facts taht create the article in its whole,0 +what are the consequences one may face as a professional dissenter,0 +re tigerdirect has always relied very heavily on rebate marketing and this has been true in the least for several years and their failure to honor them has made them as big as they are toda that is baloney that statement reflects pure bias you can go count the number of rebates on tigerdirect com and you ll find less there than you find on amazon or newegg or any of tigerdirect com s other competitors regarding the attorney general s complaint you also have to note that in response to the complaint tigerdirect argued that it s not true if you want to state that a company has used rebates in its marketing and has had public complaints about the fulfillment of those rebates then you can create a blanket statement and apply it to pretty much every computer and ce reseller in the country what is clear is that a whole bunch of editors have a hard on for tigerdirect those who cry about others povs and bias are usually the same ones who will stop at nothing to spread their ownwell disguised under the heading of facts,0 +it s amazing how some people carry on their delirium j patrick fischer is now the guardian of the blasons of east timor the first image city of dili that he doesn t even know where it comes from he affirmed to the four winds that this was the correct flag now he takes the image i put here and bright the crown and begin to spread it on all wikipedias as his own authorship laughable he doesn t even know where this image comes from merbabu by its own turn is the guardian of all timorese history only him has the truth about all thing timorese and don t darn to confront him you will be doing original research come on really what s the problem of an official symbol of the city still be the colonial one is there any rule that colonized nations may not use anything from colonial times all you three and not four merbabu you don t even know how to count anymore can t you just assume that the problem here has just to do with this symbol being from the colonial times where in the world there s a rule that immediately after independence all countries can t use the colonial symbols this is just a big lack of knowledge of international institutions heraldry law and history,0 +apology to wikipedia im sorry wikipedia for everything personal attacks vandalism sex harrassment disruptive edits being mean to meaghan gogo dodo and plastikspork plez accept this apology plez and also im sorry for sock puppetry i am now using one just only one account from now on and i just want to make editer s happy and i do not wanna go into a edit war edit wars suck i will never fight gogo dodo or plastikspork or meaghan ever again also plez don t accuse me of bad words like vandal or a abusing guy or else you will hurt my feelings and im sorry for that suidice thret thing or that personal attack thats all i m gonna say bye ppl bclrocks april est,0 +what is wrong dear pdcock i don t understand why do you want to block me i was just editing some pages if you don t want me to do so why you allow the edit of such pages is it a trick,0 +i have one of the best virus and internet security programmes and they do not mention this site at all,0 +i did not finished yet i have juste created the page,0 +no melanie i do not think it is a consensus just yet i agree with ejgreen if it is due to be done within the upcoming months i think the article should go ahead even if the exact date and venue have not been officially been announced thanks,0 +the reason you want to full protect the article is because people are conflicted on whether to include references to death threats in the lead frankly that s a ridiculous mo,0 +your aggressive harassment stop your harassment of me now unless you cease i will report you i have already warned you to stay off my talk page yet you persist in posting your harassments this being the latest this is your final warning,0 +that edit summaries are small doesn t seem to be a satisfactory explanation notwithstanding that there is far more room available for edit summaries you elected to waste your seven short words by stating something no evidence of a connection to al qaeda that simply wasn t at all true this isn t the first time you ve edited in a way that stripped out the legitimate and topical mentioning of someone s known links to al qaeda like this recent one only eight days ago on fort dix attack plot i m not saying this makes you a bad person i m simply saying these are bad edits please learn to differentiate between the two btw causa sui with regard to the category category al qaeda propagandists i note your april post here on your talk page,0 +block me blocking me will do no good as i already told you i know you are very fond of aspects but quit jumping to conclusions saying i attacked aspects almost in a violent matter i will send a counter block so be prepared for that,0 +badly written school of the air is a generic term for correspondence schools the school celebrated its th birthday on june this self contradiction is typical of the rest of the article could someone who knows about the subject maybe do a rewrite tag duumvirate,0 +oppose all i was going to support things until i read amakuru s statement we should put the eu second because of its unique position in international relations and because we should focus on the country with which it s relating meanwhile we also shouldn t have country after georgia because this is a situation in which it s unambiguous us states aren t able to have foreign relations so the only time when georgia could have foreign relations was before the united states existed and there wasn t an eu at that time note that we have many other articles in which the disambiguator isn t present because of the context list of governors of georgia and president of georgia are undisambiguated because the country has no governor and the state has no president national register of historic places listings in georgia is undisambiguated because the us government s historic preservation program doesn t include places in the caucasus and coast guard of georgia is undisambiguated because the state doesn t have its own coast guard,0 +ec call me idealistic but wouldn t most scientists and encyclopiedists believe that the archaeology is the same regardless of what you call the place reliable sources may employ different names but do the high quality archaelogical sources say they re focusing on different elements because its israeli or palestinian archaeology nah from a wikipedia standpoint wouldn t it make more sense to have a main article elucidate the best scientific knowledge of the area yah then you all could put pov interpretations motivations politics etc into distinct palestinian or israeli sections or articles ciao talk,0 +do you follow the current scientific literature please try not to sound so ridiculous when you are accusing others it has a bad reflection on your own comments nevertheless recent research indicates that self described race is a near perfect indicator of an individual s genetic profile at least in the united states using genetic markers tang et al identified genetic clusters among individuals sampled from locations in the united states and were able to correctly assign individuals to groups that correspond with their self described race white african american east asian or hispanic for all but individuals an error rate of they conclude that ancient ancestry which correlates tightly with self described race and not current residence is the major determinant of genetic structure in the u s population,0 +drkiernan i cannot remember ever falling out with you so i don t know why you feel it necessary to be so rude to me i would be grateful if you treated me with the respect that you would prefer to receive yourself,0 +request for usurpation hello joptionpane a request has been made at wikipedia changing username usurpations to usurp or take over your username because you have not used it to edit and another user would like to use it to edit wikipedia changing username usurpations says that any unused username may be usurped if the user is given seven days notice to object and does not do so if you have an email set in your preferences you should be getting an email from a bureaucrat or changing username clerk explaining how to consent or object to this process if you do not object to being renamed to a new username in order for another user to use the name you currently have please log in and post a reply here saying so you may also tell us what username you would like to be renamed to or we will provide you with a generic one if you do nothing the request will be filled after seven days and your account will be moved to a generic username you may request that it be moved to a new username of your choice at any time if you object to being renamed please log in and make an edit to this page clearly stating that you object to usurpation please note that even if your current username is usurped you can still edit and your data will not be lost your preferences watchlist and other user settings will be trans ferred to a new username thank you for your time,0 +if you read this paragraph entirely i believe the some people clearly refers to ronald ockhuysen and rob houwer doesn t it,0 +treatment of jimmy wales ronz your treatment of jimmy wales by removing his posts here and the type of comments you have made to him in other places shows that apparently you think that there is no equal to you in the world of wikipedia what arrogance,0 +comment i would say this essjay guy is over years old not years old,0 +also belated congratulations,0 +please stop i am a bit alarmed at seeing a brand new user charging around different articles issuing orders about new rules they apparently just made up out of thin air i don t know where you got the idea that you could make up a new rule that all sources must be on the internet but that is not was not and almost certainly never will be a policy here and making edits like this where you use your edit sumarry to issue orders regarding your new rules but don t actually make any real changes to the aerticle is not indicative of a user who is ready to work in a colloborative environment like this,0 +home run is two words this is in hope that i don t have to fix this a half dozen more times,0 +duncan mwirigi gitonga duncan mwirigi gitonga was born in august at a small village in magutuni sublocation in tharaka nithi county he attended various primary schools before joining thigaa high school in where he completed in after successfully passing his kenya certificate of secondary education with flying colors duncan later joined kenyatta univsersity for his undergraduate studies where he parsued a bachelors of science in software engineering currently he is a full stack software developer in kenya he has great expertise in various programming languages e g java php j me duncan is good at web design web programming mobile programming computer network and many it knowledges he is a real software guru,0 +spats of vandalism maybe it is karma for not minding your own business or more simple stated because you act like another wiki dick like shii pod dmack ad nauseum chew on that better that sugar cookies that rot your teeth fuck,0 +never heard that if the rain caused chemical burns that sentence needs a reference,0 +okay in that case i shall assert that from now all shall refer to me officially as holy golden monkey who brings the sun well because obviously what i say my title should be is more important than anything else talk,0 +patriots cheat why do you refuse to admit and discuss the cheating incidents just because it reflects unfavorably on your beloved patriots does not mean that it does not belong on the pages i would hate to see the page on hitler if you were the editor where do you propose the cheating incidents be addressed,0 +it would help further if actual content were added to the article text to demonstrate why the squallis puppeteers are notable it passed the afd test but it s still not much of an article at this time talk work,0 +request to unblock i began writing the following statement excepting its two postscripts before i was block i suspect that user auburnpilot had me block in order to prevent me from complaining to administrators about his misconduct although i was directed to request an unblock of user physicq who had block me requesting such of the latter would require that i censor myself and write as though user physicq had acted in good faith and was one of the good guys that would be surreal and would give user physicq a moral legitimacy belied by his actions and so the following request for unblocking is directed at any administrator but user physicq but since i m not a devious sort i have nothing against the latter reading this indeed i want user physicq to read it for if i can be banned from wikipedia for standing up to censors then it is vastly preferable to go down fighting than to go down the long dark road of self abnegation and self censorship including the use of bad english after all if i wanted to be a lackey i could go to graduate school wiki administrators notice board incidents http en wikipedia org wiki wikipedia administrators noticeboard incidents user auburnpilot a few days ago user auburnpilot began stalking me checking wherever i had made edits and going to the articles in question and vandalizing them he or she has been manipulating wikipedia rules as cover for what is clearly political censorship user auburnpilot cannot even stand for wikipedia readers to find out about factual material that upsets his political applecart through footnotes zero tolerance he claims of any source he politically dislikes that it is either spam or a blog or pov another favorite dodge for those at wikipedia seeking to censor those who fail to conform to their own pov even though the one source is a previously published classic magazine article otherwise unavailable on the web http geocities com nstix waronpolice html which the author has seen fit to publish on his web site and the other source is the longest most thorough expos yet published on the duke rape hoax http vdare com stix duke htm note that i am not even talking about censoring writing within articles since i hadn t done any writing on the articles in question crystal gail mangum michael nifong duke university lacrosse team scandal and racial profiling i ve been involved in edit wars before though i have never been the aggressor and have never initiated an elective edit war though given the self assurance that aggressors such as user auburnpilot exude perhaps i ought to reconsider that position it seems that aggressors rule here the reason i am making a formal complaint is that user auburnpilot has tonight upped the ante threatening to have me banned http en wikipedia org w index php title user talk redirect no if i do not surrender to his censorship should you find for me please serve this individual with the wikiquivalent of a cease and desist order should you however find for the censor please provide an index of banned publications and a list of official wikicensors p s january a est since beginning this complaint i see that user auburnpilot has in fact succeeded at getting a crony user physicq to block me thus not only getting administrative support in censoring me but preventing me from responding to his thuggery and no i am not going to use cutesy euphemistic language if i were into such deception i would have become a liar er lawyer and would be worthless as an encyclopedist and i was unable to e mail user physicq because i am not logged in and you must be logged in and have a valid authenticated e mail address in your preferences to send e mail to other users http en wikipedia org wiki special emailuser physicq if this isn t cyber stalinism i don t know what is so let me get this straight stalking and censoring an editor while using the equivalent of smiley faces user auburnpilot s penchant for saying thank you after vandalizing one s links is civil but complaining about such abuse counts as spam disruption incivility and personal attacks if that is verily so then p p s the message here says that i was temporarily block from editing wikipedia as a result of your disruptive edits what the heck is that supposed to mean for restoring footnotes and links that user auburnpilot had vandalized if that constitutes disruptive edits then you ve utterly given up on honest english and all human decency sorry but i don t have any sympathy for the devil,0 +november utc notice of edit warring noticeboard discussion hello this message is being sent to inform you that there is currently a discussion involving you at wikipedia administrators noticeboard edit warring regarding a possible violation of wikipedia s policy on edit warring thank you,0 +i forgot to talk about the example of the quarks that one is only there for spectacle to dazzle but it has even less content than the others that counter intuitive fact only relies on the ignorance on the phenomenon and the fact that the manifestations of the consequences of energy and mass being the same thing are not an everyday experience as oppose to the additivity of mass it only show that intuition relies on experience it is the same if i that have never surfed before try to surf i can try to use my intuition all i can and pretend to be a jedi and use the force or the flow but i will not be able to ride a wave not until i have passed through the experience a number of times although i am less hopeful in my case,0 +you want to go ahead and start it be my guest,0 +this man had neither prominence in the manned spaceflight engineer program nor according to this articcle any significant claim to notability where are the citations to the contrary,0 +magician programmer magician programmer yes why hurt someone greatly the creator of the effect and hurt all the performers as well while not helping anyone do you get money to put the method there that would be illegal and if you don t then why should you care,0 +blah blah blah loser,0 +question about lede was this house the largest private residence in the city or just on the north side if the former there should be a comma bewteen illinois and located,0 +notability of thomas dworzak a tag has been placed on thomas dworzak requesting that it be speedily deleted from wikipedia this has been done because the article appears to be about a real person organization band club company etc or web content but it does not indicate how or why the subject is notable that is why an article about that subject should be included in an encyclopedia under the criteria for speedy deletion articles that do not indicate the subject s importance or significance may be deleted at any time please see the guidelines for what is generally accepted as notable if this is the first page that you have created then you should read the guide to writing your first article if you think that you can assert the notability of the subject you may contest the deletion by adding to the top of the page just below the existing speedy deletion or db tag coupled with adding a note on the article s talk page explaining your position but be aware that once tagged for speedy deletion if the article meets the criterion it may be deleted without delay please do not remove the speedy deletion tag yourself but don t hesitate to add information to the article that would confirm the subject s notability under wikipedia guidelines for guidelines on specific types of articles you may want to check out our criteria for biographies for web sites for bands or for companies feel free to leave a note on my talk page if you have any questions about this talk my contributions,0 +your edit at essjay controversy please see here for reasons not to post that link if you post it again you will be block talk,0 +bitter utd fan if you do not stop removing arsenal s victory in the fa cup your ip will be banned just because your team is rubbish it s not wikipedia s fault p may utc,0 +trust me i have learned my lesson,0 +why are people deleting links to forums like lpn ezp and lp that are useful to all why are links to tolg the open locksport guide wiki being removed which again are useful to all,0 +his views on the crusades are fringe like his views on evolution,0 +i think wikipedia does have an obligation of respect and we do self censor quite a bit we can show self restraint and respect and yet show the community what they want to see such as photos of the garments there are no nude or semi nude photos on other religious articles why start here if a photo needs to be shared let it be current and without a live model or at least a model with a face why are they so ashamed to have their faces in the photos ebay and flickr more have up to date photos not these from the s or s this is completely offensive to the bulk of lds readers on wikipedia protecting the page is not the answer to keeping an image on it rather lets find something that the community can agree on and this current version it not it and undoubtedly as cogden stated end up with continuous vandalism of the page,0 +no image as in the air lingus one mentioned directly above,0 +copyright infringment recently several users most notably playitbogart have had their accounts banned after showing footage of a set video game in his case gta i think this is notable enough to mention becuase it was considered a blow to many fans of his videos which number in the tens of thousands by his subscribe and viewed awards others have been banned this i know can be sourced so mabye someone can add it but for some reason someone vandalized a user page and got me banned so a certain admin continues to revert my edits stating they are vandalism and i am simply to lazy to log in to my account so i wont do it,0 +sani people asked do you mean hani i don t think there s a sani minority there certainly is the sani live in the lunan area near shilin stone forest when ioc president jacques rogge visited shilin last year he was photographed with the sani wearing their local clothing apparently they are a branch of the yi the source listed mozzarella of the east cheese making and bai culture has some information about them,0 +the marvels and mysteries of cite web hei sorry i didn t respond earlier was through all the material on using and the time got away only had time to run a quick experiment with cite webb before going out to meet herr professor omberg for breakfast and then on to do what must be done for the day but now that there is time to write this is what i understand using the cite web template assures one adds a fair bit of relevant information so that the reference is more consistent and apparently someone amongst our wikipedia friends rides a robot to identify new cite web templates and makes sure that they go into webcite to request a permanent archive somehow should the link rot as it undoubtedly will sooner of later someone will know how to retrieve the reference from webcite and repoint the reference so it is still live if this is a correct understanding then using is a virtuous thing to do and i will do it for this insight thank you sk l,0 +see history of the arab israeli conflict war of,0 +like the other poster said if you can cite media matters for orielly then you can cite the new york post for olbermann,0 +reinstate wikipedia page i would like to have the wikipedia page titled richard r pieper reinstated so i can provide the proper references and citations,0 +silly games im sorry but what did i do,0 +good luck yea i ve got bob holly at gan so here s hoping p vampire heart,0 +i note that it was added by in october and accepted uncritically by the editors lima even going so far as to amplify the bogus quote and there it still sits,0 +correctionperson why do you not just request references in my content rather than just censoring it entirely can i post my content and then add references to it later it is a wealth of information it is such a shame that you keep reverting it let me ask you this if i add references to it will you stop removing my content,0 +i was planning to hand these out on the nd of dec but things got in the way happy holidays fansign here,0 +im sorry that was my brother i went to a football game and hes on my account sorry this wont happen agian hes in big trouble see he got my last agount deleated,0 +regarding edits made during april utc please do not add nonsense to wikipedia it is considered vandalism if you would like to experiment use the sandbox thank you if this is an ip address and it is shared by multiple users ignore this warning if you did not make any unconstructive edits,0 +september utc hunk you ve been hit by the beautiful truck once you ve been hit you have to hit beautiful people if you get hit again you ll know you re really beautiful if you brake the chain you ll be cursed with uglyness for years so pass it hit who ever you think is beautiful,0 +never said i did i was asked to walk away and i won t because these articles are my main interest here,0 +electronic intifada is not an activist site why do they call it that then,0 +new genre the new genre supernatural was used because demons appeared there were pop ups but ghosts possess just in case the film was creepy and it was a great s movie since the exorcist film what it appears to be that ghosts were especially haunting the hotel supernatural is all about ghosts fantasy science spirits demons and haunting that s it because supernatural needs to be the new genre in the film,0 +trans lated as the second vatican council a unwritten story loreto publications isbn,0 +boobs are sweet and sex i love them they are so squishy,0 +purpose this rfc will be used to determine community consensus for outlines potential resources to gain information wikipedia talk outlines points user talk dbachmann more on outlines possibly this should be extended to be a discussion of navigation articles within mainspace taking from s post on dbachmann s talk page i can see broadening this to include indexes and lists of x topics in my opinion glossaries timelines and year articles may be useful for navigation but they also have the capability to become complete articles used for purposes other than navigation i don t see outlines indexes and lists of x topics articles as being able to be more than a navigational aid thoughts,0 +one need not be a graduate to be an alumnus talk,0 +hi goodday i have noted that qwyrxian has weighed in on the issue i have learned to appreciate his steady advice on matters and suggest that you ask qwyrxian about this as well regarding the number debate i don t have strong feelings on this either way if you do the drn process can do no harm and would be quite useful imo if you want my involvement i would be pleased to help i became aware of joyce banda through this conflict in the past and have grown to admire her leadership anything to help the article about her is of interest to me,0 +see thats funny mine photo had recognizable jew s who deserve to be there but it was knocked out because there were no woman know wasserman or w hate ver uses my argument not recognizable people against metzenbergs image this photo is deffinutly to politicized no enough real contributors writers composers scientists philosophers and real ones not cheap demogogs you all judge by gender and by political views and not by real contribution and recognazation you want to get woman in the photo even if they dont deserve it and you put out those who really deserve it our people maybe has many great smart people but from here i can see that unfortunately we ve got much more not smurt once m v e i,0 +iphone sux it s made in russia,0 +for your information these are correct credentials and its not a secondary school in pakistan its a secondary school in the united states in new york city please be more careful when reading next time,0 +quit bugging me why up on my back,0 +there are actually five lirr train stations in garden city not two,0 +rfa did you participate in an rfa today there was an vote from you but there is question that it might be a forgery,0 +btw true opinion is fact is an academic statement take any college level intro to logic course evolution is a fact sadly in today s age in the public eye often enuf described as an opinion in the end i would say evolution is common knowledge such doubt begs epistemological parameters but i concede this point may be a red herring may i mention that kyle hosted the eisner s xs due to his wit personality or penchant for telling jokes q v that others seemed q v to be amused by due to repeated spasms of their diaphragm although the spasms could have been due to the food served theoretically merely a synchronistic anomaly in time space i obviously do not have the knowledge of other editors like tenebrae on comics he pro bly knows where to verify this,0 +with over college students studying abroad every year there s bound to be all kinds of tall tales urban legends and misinformation swirling around while there may be grains of truth in some of these stories below are some common misconceptions about study abroad misconception studying abroad is very expensive truth in most cases it is actually cheaper to study abroad let s say the tuition at your school is per semester and room and board is another now add in the additional fees you have such as health insurance books and laundry you are now well over for the semester well all but one of our programs in spain is under per semester and that includes everything except your airfare and spending money tab misconception i can t use my financial aid to study abroad truth in almost all cases your federal aid stafford loans pell grants etc can be used to study abroad and in some states you can use your state aid as well it is also not uncommon for your federal aid to increase when you study abroad since some of your school scholarships may not trans fer misconception host families are all poor and just do it for the money truth the last thing any study abroad company wants to do is have an unhappy student on their program the goal is for the students to be happy so that they will tell their friends what a great time they had if we were putting students in bad families in dangerous neighborhoods then no one would ever recommend us to their friends since the number of universities that endorse our program doubled over the last year it s a pretty sure bet that students are happy with our choice of families misconception i ll be so busy with schoolwork that i won t get time to see the country i m in truth this one is hysterically funny since your average study abroad student comes home with about photos from a long list of countries students have plenty of opportunities to travel and we even take our students on trips to give them a better feel for the country they are in misconception i might not graduate on time if i go abroad truth if you have already used up all of your elective or general education courses then it s true that you might need to bulk up on courses before or after you go abroad if you plan ahead however and leave some electives open to you then you should be fine the clear majority of students who study abroad still graduate in four years despite being away from their home campus for a semester or two misconception most of the world hate s americans so i won t be safe truth there s no doubt that there are a lot of people who don t like the american government but that has nothing to do with the american people if you compare the violent crime rate in the united states to that of european australian or asian countries you will see that the united states is actually far more dangerous there are some areas of south america and africa that are not especially safe but there are also many countries on those continents that are incredibly safe go to the u s state department website and check out the crime statistics on the country you are interested in to see how safe it is studying abroad is a once in a lifetime opportunity that every college student should take advantage of before dismissing it due to the bad experience of one friend or rumors you have had heard speak with your study abroad advisor and get the facts i guarantee that once you look at all that studying abroad can offer you you ll be hopping the first flight abroad one organization that help ensure that you have safest unforgettable yet affordable study abroad experience is academic studies abroad here are some of our very popular study abroad programsin the following countries study abroad spain academic studies offers study abroad programs in barcelona madrid salamanca and sevilla study abroad england academic studies offers study abroad programs in london study abroad italy academic studies offers study abroad programs in florence study abroad france academic studies offer study abroad programs in aix en provence and avignon http w academicstu,0 +well you maintain a whole lot of stuff denialists and deniers are totally different things that big tobacco denialism is a well known thing when it doesnt get a single google hit that denialists are always in it for personal gain that denialists always know they are lying that denialists are always in it to influence politicians well try to convince some others of your position i doubt you will but go ahead and try i stand by what i said earlier friendly advice consider another profession,0 +disturbing the current events page does not win anyone of you any friends here apr utc,0 +anyone with a complaint should be treated with the utmost respect and dignity they should be encouraged constantly to present their problems in a constructive way in the open forum of the mailing list,0 +respectfully bell s theorem is not empirical evidence it is not compelling to me and it is disputed as a proof i have not seen any compelling evidence that eisenstein was wrong about his criticism of quantum mechanics he did not say it was not an outstanding and extremely successful model he just said some of the theory behind it can not be correct the theory is incomplete heisenberg was a cock y nazi scientist who was badly off in his calculations related to a bomb creation and i don t know why people wish to believe what they don t them selves comprehend it escapes me and lessens my faith in their judgment,0 +i ve hidden the description of how to pronounce the sound my reason for doing so is most of all that the character is used in several languages and i believe it s wrong to assume that the pronounciation is similar in all non english languages also when it is similar in some i m also convinced that an article designated for vowel sounds would be a better place a link to such an article would surely be the best i do also feel awkward about the notes on being an umlaut and on alphabetization which i actually feel would fit much better in the articles on the different alphabets,0 +editing pages to anyone who reads dmacks talk page you will now how that there is only one person entitled to an opinion and that is dmacks hopefully he wont read anything you edited as he will just change it back he is very arrogant preceding unsigned comment added by,0 +quote weaselly constructions such as the first to fly without a headwind and such should be thrown out do you want people to know what exactingly each inventor did for the progress of aviation or simply throw out any evidence that do not support your personal views,0 +dorset naga wikilinks i removed the dorset naga wikilinks since the link redirects to this very article if i knew how i would insert links to the section on dorset naga in this article could someone else do that,0 +you may find the maps available here of use chapters,0 +i oppose this version as it doesn t justifiable present common usage in the international community like it or not the united kingdom is the realm most closely assocated with elizabeth ii,0 +explain yourself why was the last edit vandalism,0 +i think iriszoom gets the point here,0 +where to now regarding user talk kaiwhakahaere you appear to have an imitator please advise how i can air my suspicions with your threat to block me hanging over my head am i permitted to seek a checkuser or similar,0 +if you want to describe the bnp as it is currently drop the fascist rubbish,0 +re fyi shrimp hey thanks for modifying the passage on shrimp for me i m not all that good with the wikipedia editing stuff it s important as many lives are saved from damnation as possible,0 +threats please refrain from using threats to other users a revert of this will take you directly to wikipedia arbitration what is this mr oh you better follow what i do or i will ban your ass don t be a jerk,0 +elchk truth lutheran church a proposed deletion template has been added to the article elchk truth lutheran church suggesting that it be deleted according to the proposed deletion process all contributions are appreciated but this article may not satisfy wikipedia s criteria for inclusion and the deletion notice should explain why see also what wikipedia is not and wikipedia s deletion policy you may prevent the proposed deletion by removing the notice but please explain why you disagree with the proposed deletion in your edit summary or on its talk page also please consider improving the article to address the issues raised even though removing the deletion notice will prevent deletion through the proposed deletion process the article may still be deleted if it matches any of the speedy deletion criteria or it can be sent to articles for deletion where it may be deleted if consensus to delete is reached if you agree with the deletion of the article and you are the only person who has made substantial edits to the page please add to the top of elchk truth lutheran church,0 +apologies for the above litany of bot generated warnings and threats i think the bot needs its rules adjusted and have notified the operator accordingly call me russ,0 +what personal attacks whoever changed it back did only half the job which is why i say it was done lazy when it comes to stupidity i am sorry you are a stupid fool if you think new mexico terrirory and confederate arizona were the same country,0 +hey i voted for persian s rfa full support of course i m kind of worried that she ll burn out but i hope not anyways kp is starting soon the first episode is already on the disney channel website so you can catch it there the first four episode will air on saturday feb that s tommorrow or today in a two hour marathon i hope you can catch them i can t since i lack cable and watching youtube with linux isn t all that easy tell me if you like the premier cont ct,0 +your request for undeletion hello this message is being sent to inform you that a response has been made at wikipedia requests for undeletion regarding a submission you made,0 +things change with the internet people are able to study the sources by themselves and are able to see what the state and their historians have wanted hidden for a long time i think we have come to that generation who will start a shift but as you say it will take a while anyway,0 +jewish propaganda existed for years though i m russian i m totally agree with estonian guy lenin was jew ish as majority of bolsheviks,0 +grammar and accuracy this article appears to have been written almost entirely by children illiterate children at that frankly it needs a complete re write but as i never like teignmouth i really can t be arsed there are also some rather dubious statements that have little supportive evidence and ought perhaps to be removed those responsible should know which they are,0 +please do i would enjoy to hear it in lebanese if you have that as well,0 +can you please provide some diffs of this behavior i honestly have no idea what you are referring to talk,0 +redirect talk the massacre of rabaa between narration documentation,0 +it is indeed the evil save that appears in impossible although it is only visible for a single frameafter killing the enemy disguised as the save point requiring split second timing on the part of the player in order to activate it however the only evidence i have of this is anecdotal so i shall refrain from including it in the article until someone can provide more solid evidence,0 +hm that is a lot could we briefly become a task force do the admin stuff and the go back to being a project he he he actually we aught to be a daughter of wproj classical music anyway rather than a separate project would that help clipman,0 +and let s not forget that tax on all non muslims in turkey with particular pressure being put on the greeks armenians and especially jew s,0 +illythr your pro russian edits are evident let moldova and moldovans be themselves,0 +but has not edited this article,0 +november utc i have absolutely zero interest in being in the middle of this having checked cung le s twitter he aparently has some issues himself with being displayed with a vietnamese flag as that is the case and he is a full us citizen i would rather create an exception for him than have to deal with messy edit war besides it sounds like he won t be in the ufc for much longer rendering this whole issue moot as far as i m concerned please help me take the simple way out and avoid a meaningless conflict,0 +do you know japanese if you do i would appreciate it if you trans late this news article for me it has information which i think might be very important to kumi koda s article and sunrise,0 +your welcome also thanks for message in my talk page may utc,0 +most people who suffer from obsessive compulsive disorder usually only suffer from that of obsessions or that of compulsions it is rare that they would develop both that of obsessions and compulsions,0 +germans of serbia there are germans in serbia most of them live in the north province of vojvodina,0 +development this article was just now started in a semi automated way and could use more attention perhaps including use of sources that might be found online please help try try for national park service material or develop from the sources already included in the article thanks ncram,0 +i continue to support it what is a sock puppet objections to btb,0 +deleting peoples content without saying so and not giving any reason is hostile too,0 +a real apology sorry i overdid it i got a bit caught up i just try to enjoy myself and didn t realize you guys would take it that hard i just try to do harmless little jokes here and there make the world a more interesting place that s all i guess i should ask the doctors to up the prescription again i d be really sorry if i were telling you in person anyway ahem well good job keep up the work excuse me i have a little visit to pay to mr p p s just so you know the civilized way is just throwing down a handkercheif as opposed to breaking the end of a bottle off on a counter or at least that s the civilized i was thinking of,0 +spelling defense defence i think it s confusing that two different spellings defense ae and defence be are used in this article i d recommend to use only one and mention the other possible spelling at the beginning of the article,0 +sure that kempler uploaded his youtube videos,0 +no it s kirsten back in when she briefly sported a longer hairstyle trust me i did my research it s kirsten storms she hasn t always had short hair talk,0 +going through a root structure to a concept phrase s general meanings or putting a root word into a search box sounds like something i might do if i were perusing a dictionary to discover the usages and definitions and etymologies of words in any event if there are any relevant links on the editor or edit dab page they can be included in the see also section here something i ve already tried to do,0 +my name md ramijuddin father name md abdur rashid born march at kaliachak malda my website name is w ramizwap tk visit my site,0 +curious are you trans gender if so do you think you can be objectiive if so who s your immediate boss on wikipedia,0 +hello mother fuck er hijo edputa,0 +well said we are so close to find who sitush is,0 +perl s oo model influenced by python in the influenced by area in the infobox this should be mentioned that python influenced perl should there be a footnote to specify how since it was probably minor,0 +i see another user has removed your baseless leading editorialism good on him i must say as it stands i ve reverted some of your changes considering you re really the polar opposite of even remote objectivity when it comes to this state of affairs,0 +it does consistently i am therefore marking the article,0 +i think there s little doubt that there is taking in both directions here more than likely the world golf hall of fame used the wikipedia article as inspiration for their own text and then an editor came in and copied over a small amount of content from their website unless the earlier wikipedia article copied from another source which they later also used she was inducted into the world golf hall of fame in and would presumably not have entered their literature prior to that point but the other content from that passage has been evolving in our article since it was created in this evolved gradually and naturally into the form it was in when in august it was sources probably circularly to the wghof and the snippet of their text pasted in meanwhile not all but some of the content from that edit needs to be cleaned up a bit to comply with wp copy paste for now i ll clumsily address it with quotation marks talk,0 +i have had run ins with viriditas before none about issues of substance but more of what you have seen here i am very disappointed to see you leave again you are one of the most reasonable wp editors i have seen on this article i have a daytime job too and the policing of the mrm page is such a disgrace that i understand your motives to abandon it i am considering creating a men s rights page at scholarpedia or citizenium if i do i will leave a message for you here to invite you to contribute best of luck,0 +november utc from the boston globe lieberman a democrat who won reelection as an independent also said he wants to be called an independent democrat a strong backer of the iraq war lieberman was returned to office on election day with strong gop support he ran as an independent after he lost the democratic primary in august to ned lamont he said yesterday on nbc s meet the press that he will begin his new term as a democrat because it would make him part of the congressional leadership the senator is in line to become chairman of the homeland security and governmental affairs committee i m going to caucus with the democrats both because it s good for my constituents in connecticut because i retained my seniority i become a committee chair but also i want to continue to work to bring the party back to its historic traditions of strength on national security foreign policy and innovation and progress in domestic policy lieberman said he said that because voters returned him to capitol hill as an independent i am now an independent democrat capital i capital d matter of fact the secretary of the senate called my office and asked how do you want to be identified and that s it independent democrat the senator said with many senate democrats having campaigned or raised money for lamont as the party s nominee lieberman acknowledged that it might be a little awkward for him back in washington they played by the traditional partisan political playbook and i can t say i enjoyed it but we re all grown ups we ve got a job to do and i m going to do my best to get that job done lieberman said democrats will hold a edge in the senate so lieberman the democratic nominee for vice president in could find himself courted by republicans he was asked about the possibility that he might switch caucuses if he became uncomfortable as democrats sought to enforce party discipline particularly if the gop offered to keep him as a committee chairman and respect his seniority i m not ruling it out but i hope i don t get to that point and and i must say and with all respect to the republicans who supported me in connecticut nobody ever said we re doing this because we we want you to switch over he said i believe that the american people are considering both major political parties to be in a kind of probation because they re understandably angry that washington is dominated too much by partisan political games and not enough by problem solving and patriotism which means put the country and your state first lieberman said in senator james jeffords addition by hodgdon s secret garden d of vermont abandoned the gop and aligned himself with the democrats putting them in control of the evenly divided senate the switch made him a hero among democrats and a traitor among republicans lieberman said senator harry byrd of virginia listed himself as an independent democrat in the late s before that the last senator to use the designation was in the mid th century he said link,0 +merge suggestion i propose that trans lation process be moved here surely the general article on trans lation is where the trans lation process should be discussed the process isn t really unique enough to warrant its own article gr,0 +because it is a m in london right now i will wait until tomorrow morning before i reveal why it is that you block me for implying that carbonite was a troll but failed to anyone else for doing the same thing i m giving you every opportunity to stand up and take responsibility for your actions rather than embarrassing yourself by having someone else reveal your indiscretions i ll wait until morning for your answer in the mean time here s a little light reading california online privacy protection act of oecd guidelines on the protection of privacy and trans border flows of personal data http w ftc gov reports privacy toc htm privacy online fair information practices in the electronic marketplace wikimedia foundation privacy policy,0 +taylor series with lagrange and peano remainders why there s nothing about those two remainders in the article,0 +i think you re splitting too many hairs here it s very apparent that she and summer are gonna have some business and it s become obvious that she s graduated from from mere manager to a fighting diva people like paul heyman or zeb colter or hogan lita gunn tough enough are there in non physical roles and are listed as such lana has clearly made the jump from that status personally i think the other on air personnel list should be strictly for those in non physical roles once lana started throwing down with summer and it became clear that they re destined for a match then lana showed that she s above being merely other personnel user vjmlhds user talk vjmlhds talk,0 +sup thanks for the ass sex yesterday love george your homo sex lover,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia questions ask me on my talk page or place helpme on your talk page and ask your question there again welcome and don t forget the edit summary is your friend png images hi i undid your changes to holomorphic function since converting html to latex produces png images which are undesirable per the math style manual html is allowed and sometimes preferred in math formulas and as such converting them to latex is not necessary you can reply here if you have comments cheers,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your name on talk pages using four tildes this will automatically produce your name and the date if you need help check out wikipedia questions ask me on my talk page or place helpme on your talk page and someone will show up shortly to answer your questions again welcome hi noticed your editing on clifford geertz and notice no one had welcomes you yet hope you enjoy wikipedia satusuro,0 +it seems that section was already accumulating unnecessary links but you re right it s something that should be discussed on the talk page first so i have undone my edit,0 +outdated map the map used to show national gini coefficients seems to be about years out of date since it shows east germany this implies that the values given are also out of date if anyone can find a more up to date map this would be welcome,0 +john and juan aren t even different names,0 +t mans comments having had a third opnion by someone with more knowldge of the subject what t mans posted is factually correct even if as pointed out by the editor in need of some copy editing some copy editing later an editor came up with this alongside clayface a resurrected one off concept from there are resurrections in total in the s new batman villains begin to adopt influences from horror and realistic crime fiction secret agent films first with man bat who unlike batman is a real human animal hybrid and the later with the master criminal ra s al ghul and his daughter talia the first villains to learn batman s identity very ok the less famous villan but often equally charismatic ventriloquist kgbeast black mask and killer croc emerged iduring the s more common criminals such as the gotham mob leader carmine falcone were also added to the villain lineup the s were notorious for the introduction of the joker s assistant harley quinn who appeard exclusivley in the cartoon series bane was the only villain to physically humble batman hush and a new red hood are the most famous inductees in the s due to their connections to batman s past t man put his crap back i will leave it because unlike t man i have a job and am going to the gym i fixed some typos and grammatical errors but the pov and moronic comments are too numerous to fix easily the great wikipedia project destroyed by the dim witted at least is the pov of somebody ho actually reads the comic not from some well i already said this above cut the insults please,0 +thanks agreed i ll just ignore it now best wishes and thanks for your time,0 +provide reliable sources or your edits will be reverted here s one refering to a sickening terrorist attack in manchester do you have any reliable sources contradicting the above source since you remove the term terrorist from the article i m assuming you do have reliable sources what are these an i i made a mistake by misinterpreting what had happened in this instance removal was the best option a slightly longer explanation is at the relevant place on wp an i my apologies talk collins i ve made a new edit on the collins article please clean it up as you please but don t revert the previous edit is misleading and portrays the idea that the army was made up on pro treaty veterans rather than the fact that most of the new soldiers were not and its also an old cover up of the fact that ex british veterans fought in free state army which caused much consternation among the irregulars,0 +adding to this since its now over yeah never once was tb called this name in fact from the last few chaps of this arc the moria pirate seemed to be the best name you could use to call moria s late crew who are dead so moria pirates and thriller bark are two different crews,0 +commons oversight mentions that the right is used to remove material that may give rise to legal challenges i agree that it s most probably not written down properly as far as i know it s more of a non written policy to contact the oversight team about such matters the information about contacting the wmf legal team is available at commons contact us problems which is two clicks away from every page on commons odder talk,0 +and another comment here,0 +instead of being internet police use an ask reference tag instead of removing content since you want to throw around wiki tags furthermore several references are made and others refer to content already i m the article however to untwist your panties i will reference the article in which it was drawn from,0 +reversion of edit to text messaging i believe you made a mistake in reverting my edit the correct word in the sentence should be genera as in the plural of genus as in kingdom phylum clade order family genus species,0 +welcome hello artjunkie and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia tutorial how to edit a page and how to develop articles how to create your first article using the article wizard if you wish manual of style i hope you enjoy editing here and being a wikipedian please sign your messages on discussion pages using four tildes this will automatically insert your username and the date if you need help check out wikipedia questions ask me on my talk page or ask your question on this page and then place help me before the question again welcome wikhead,0 +february utc what insult my opinion is that there s a lot of hyperbole here i fail to see how this is an insult or a personal attack being hypersensitive does not make you right having an echo chamber does not make you right,0 +so when yall start to talk to me like i m a part of the community i d amend my statements until then no i want you to apologize,0 +as you know since you call me a troll i tend to comment on an i that s not following you around i find it absurd that you can issue several personal attacks at another user not even offer to retract those baseless attacks boot them off your talk page as if they were a vandal and then have the stones to preach to others at an i about personal attacks you think i m not going to comment there or at malleus s page where you followed me to i have no vendetta do the right thing and retract your nasty insults it won t change the fact that you made them but perhaps i won t point out certain glaring discrepancies like this in the future talk,0 +yep ww for the past several months i m uploading all new photos to commons but there are over earlier ones and i m waiting for a technical solution,0 +the usa and the world still suffer under the bellamy ideas,0 +yes i agree wladimir is going to have to many fights to headline now vitali has considered fighting huck after huck defends his cruiserweight title and he has also expressed rematching chisora he wants to fight haye but haye wants to much money to make it happen clearly he s trying to cash out that might be it for his career since other p p boxers have more sections i don t see the issue with adding more for vitali but we can decide that in the future after his next fight for now there is only the chisora fight given the slap in the pre fight conference spitting in wladimir s face before the fight and brawling with haye in the post conference i think this is worthy of a headline it s also one of the most defining fights of vitali s career as he won it at an old age with only one arm,0 +i like the latest version presumably written by barresi himself but i think that we should hold off on major editing until imdb is updated if indeed it really is inaccurate it can wait a week or so to see what happens if imdb is wrong i m sure they ll comply and update it,0 +no doubt it is a very good article as of today,0 +with all respect i don t know why people only warn against personal attacks by one editor in a dispute where rules are clearly being broken all around i don t think this is the way to make people feel welcome on wikipedia chussid should not make personal attacks but other editors should not revert his multiple changes with curt explanations in the edit history any normal person in chussid s position would find this behavior extremely aggravating and would very likely resort to personal attacks which is exactly why this kind of behavior is not allowed indeed and the reasons they give are totally outrageous these same people do consider w truepeace org which also does not give any names or an address of the person s behind it a reliable source because it fits in their zionist thinking pattern jaz does not if you ever wanted to know what jew s who oppose zionism go through you are having a nice view of it right now incitement to riot is not an excuse for rioting just because you re bothered about something does not give you the right to cross the boundaries of civility a discussion can be heated and honest without being incivil and that s what we require here,0 +about your gan on super mario galaxy i noticed that you nominated super mario galaxy as a good article i read the article for a bit and there was an image of the cover of the game but there is no screenshot of the game as to illustrate the gameplay graphics or w hate ver good articles must include not only the cover of the game but a screenshot of the game as well some free images are optional to put in the article so what i would ve done is add a screenshot of the game before nominating it as a good article,0 +the article is listed in category articles created via the article wizard under l defaultsort is a magic word that sorts the page list in a category using the sort key provided because robert c lautman has defaultsort lautman robert c it will be sorted under l in all categories it appears in by default i don t think the missing date changed whether or not the article was reviewed by someone adding the date parameter put the page in the category unreviewed new articles from december instead of the undated category unreviewed new articles i see now there is a backlog of unreviewed articles going back as far as october so i don t think people looking at those categories would get to it any earlier just because the template was dated or not talk,0 +for what it s worth pages like this get deleted all the time if you wish to change the guidelines on notability of footballers feel free to initiate a discussion at wt football or wherever else you feel appropriate once your block has expired in the meantime if you know of other similar pages that also infringe our current guidelines do let us know so we can clear the place up a little kind regards the rambling man talk,0 +stop murder you are very unfriendly and falsely accusing me you are not helpful but a bully look at yourself,0 +edit summaries part ii while i realise you can do what you like to your talk page classifying my edit as vandalism when it was obviously not is again the kind of thing you might want to avoid i assume twinkle has alternate ways of rolling back that don t imply vandalism thanks,0 +this message is regarding the article hiroshima please stop removing content from wikipedia that people have worked hard to create it is considered vandalism if you want to experiment please use the sandbox thank you contribs block block log talk,0 +fyi overzealous deletions with hyperbolas claims are also frowned upon don t be so quick to delete information,0 +i started being stalked censored harassed and threatened by various wikipedia admins including keri and neiln i told them all to never contact me again and stop cyberbullying and harassing me i wanted to block them buy there is no mechanism to do that next i m block by someguy i request the block be lifted,0 +in modern literature and film wasn t there a narwhal mr narwhal in the movie elf when buddy is leaving the north pole traveling to ny i believe he receives a bye bye buddy from a friend named mr narwhal who i can only assume is a narwhal,0 +to read my instead of remove so my post will not longer be relevant nor funny thanks for your diligence as always,0 +free imperial city of cologne you d need to get agreement to do this and there s a copyvio issue also,0 +i wanna ber why wanna you give ma ber wuauahua i wanna my momma,0 +my comments about the block i did not make any personal attacks let s get it right a fruit is not a personal attack and jeff g was the one who started this feud and kept harassing me so unblock me please or at least block him too,0 +this is david kelsey who hate s ncsy because he is bitter that he was never regional president,0 +on joffrey s death hi congratulations on the excellent article but could someone give a reference to justify that olenna redwyne and petyr baelish were the ones responsible for joffrey s death thanks,0 +february utc yes i just realized i wrote bce which is ridiculous sorry about that and furthermore i think you re right there are written records of japan pre dating himiko i ll have to read some more to be able to write something meaningful someone else mod it in meantime,0 +entire last paragraph is supported by blogs which are not reliable you need to go find reliable sources blogs are not reliable sources find some sources in the mainstream media i m sure this will be easy since the media is liberal,0 +sorry but wikipedia takes copyright very seriously we have to obey the law regardless of the chances of getting caught no exceptions can be made the images will have to be deleted please don t re upload them sorry,0 +great working together here,0 +template nn warn,0 +its the front page needs it references new page length half the posts resoted longhair not out here in the back room,0 +thanks as you can tell i haven t done a lot of work with cats before you have already been a huge help i see that you went through all of the pages with hotcat and made the cats right so i can leave the cats alone and focus on content help much appreciated,0 +what who changed again it i fixed several times please stop vandalising this page,0 +here s his profile stating it,0 +those are very much appreciated carcharoth thank you very much for doing this i ll have a fiddle around with some of them and put the results into the article of doom,0 +hi pytyus and please excuse this intrusion as you have been around a bit already but if no one has said it before welcome to wikipedia welcome to wikipedia i hope you enjoy the encyclopedia and want to stay as a first step you may wish to read the introduction if you have any questions feel free to ask me at my talk page i m happy to help or you can ask your question at the new contributors help page here are some more resources to help you as you explore and contribute to the world s largest encyclopedia finding your way around table of contents department directory need help questions a guide on where to ask questions cheatsheet quick reference on wikipedia s mark up codes wikipedia s pillars an overview of wikipedia s foundations the simplified ruleset a summary of wikipedia s most important rules how you can help contributing to wikipedia a guide on how you can help community portal wikipedia s hub of activity additional tips please sign your messages on talk pages with four tildes this will automatically insert your signature your username and a date stamp the button on the tool bar above wikipedia s text editing window also does this if you would like to play around with your new wiki skills the sandbox is for you good luck and have fun fwiw,0 +again ignoring what was already addressed and answered in good faith here on the talkpage,0 +autzen was not built on a landfill the landfill was day island and is south east of autzen see link below i believe this is incorrect day island landfill was operating from to autzen was built in the site can not be built on to this day as it is not stable for foundations to sit on https maps google com ll spn t h z,0 +response hi checking in this is a response i was writing to betty before i was banned mrs logan this is a whole new level of rudeness i have made it clear to you multiple times that i wanted to edit that page because i suffer from ocd i need to use that particular page multiple times because i m making a big report on movie making because of my medical condition i decided to do something that bothers absolutely nobody and center the budgets on that particular page just like the references years etc are also centered on the page you decided to jump in and undo it because it appears that you have nothing better to do than bother somebody for no reason on top of that i did not even violate rr so why are you reporting me and on top of that mrs logan i have looked into your editing history and multiple people have reported you over the years,0 +phuu that s warm how do you cope,0 +this page should not be speedy deleted because this page should not be speedily deleted because we need brief bios of botanists whose names are used as botanical authorities i will take this up as a matter of principle at wikiproject plants,0 +let s stop and think about how the jimbo gif thing has gone since it started and maybe those of you who are voicing that i m stubborn could rethink that as an unfair characterization a admin comes here tells me that he she was going to review my block but now won t because the jimbo animation makes him her nauseated and that i will never be taken seriously because it s there then the same admin states after my reply that it s essentially my fault that he she didn t review the block think about how you would react to an attitude like that now consider the statements made by those who are obviously better at communicating what they really mean it s hard for me to read the page with it there if that had been said in the first place how would you have reacted to that instead i know that if that had been stated to me initially i would have understood because it s a reasonable statement and observation and i don t want people to have problems reading the page and had no problem removing the jimbo gif from my page snarkily saying that the jimbo gif makes one either annoyed or nauseated and will keep others from taking me seriously is neither helpful nor clear as to the real issue is it,0 +i can pass on his message to you if you wish,0 +please do not vandalize pages as you did with this edit to zacky vengeance if you continue to do so you will be block from editing unpopular opinion talk contribs,0 +dvd release regarding this section of the article this release is notable because due to marketing issues it was the first star wars film never to be released on vhs in the united states i think that this can be eliminated first of all this doesn t really make the release notable most films released at the same time were not released on vhs also the fact that it was released on vhs in other countries makes it even less notable it also does not have anything to do with the dvd release but rather the home video release,0 +if someone intends to do their original research and bag nobel by claiming kannada is not the main script for konkani withour proper citations they are most encouraged to do so in the upcoming konkani sahitya conference and not here karnataka konkani sahitya academy only state which has an academy for konkani literature has adopted kannada as the official script for konkani in karnataka where there are more number of konkani speakers than goa this article in konkani world precisely explains the issue,0 +freddy beras goyco is the correct spelling i have repeatedly told editor who created this article that he was creating two articles for same person due to mispelling the editor chose to ignore my warning and created another article on the same subject the links below will only validate the proper spelling of his name please delete other entry and merge any info that can be cited into the present article,0 +there is no need for that seicer this is a serious matter and i do not appreciate the rhetoric i will be waiting for your response thank you,0 +shut up read what i left on talk page before you give me pure garbage you are the one who is vandalizing everything by not fixing things the way they ought to be i reject your reply fully,0 +rfc should the infobox say that the glacier is disputed it has been argued recently that not all the region of the glacier is under indian control and that no state has control over the glacier so should the article say that the region is disputed between india and pakistan survey,0 +i will start on mokshada ekadashi and kamada ekadashi soon,0 +redirect user talk pratyya ghosh archives,0 +typical examples would be documents e g specifications manuals etc models code binaries and so on basically anything created throughout the engineering process of creating the software reading artifact software development might be helpful,0 +your recent edit to maggie s farm please stop if you continue to vandalize pages you will be block from editing wikipedia talk,0 +reversion to talk george w bush i undid your restoration of the comments made in the gwb talk page i do not believe someone stating i never liked bush but i love him now and honestly i never liked the guy in fact i despised him but i have totally changed my opinion after he recognized kosovo now i love the guy he is a true visionary and it took me so long to realize it has anything to do with the content of the page remember talk pages are not for discussion of the subject of the article,0 +would you stop deleting my posts regarding kingston high school maybe if you read the rest of it you would note that i am not the only one changing the information,0 +decline please provide contact information for administrators at your school who will discipline the vandals appropriately and ensure no more vandalism occurs from this address,0 +november ignoring wp nor is a breach of wp conlimited replacing well cited contend with or is a breach of wp nor so undoing my edits is a breach of wp conlimited,0 +don t do this sharkd has clearly stated why this section is important if you don t agree with him write in discussion and explain keeping on reverting can only cause your block thanks,0 +is there a reason that marx s explicit identification of capital with vampires written in a satire of gothic literature isn t in here,0 +this guy owns too much i agree,0 +god of course teliasonera owns it that is the isp it is no indication of that the ip is shared,0 +i think its someone tryin to discredit her cos their jealous cos she got talent and they ain t,0 +don t tell me what to do first of all i can do w hate ver i want in my talk page second cartman clearly had a split personality disorder it wasn t the toy third i can say w hate ver i want in the edit summary so people know why i removed stuff finally spare me your smile,0 +hi anon you probably know that there were german speaking moravians ethnic germans so we need to differentiate names in other languages we use all names he use during his life as he was working in hungary and poland names in polish and hungarian are ok,0 +not going to withdraw yet if there already is a consensus that all villages not matter how small are automatically included then i would withdraw i just haven t come across anything that actually says that,0 +this age needs some major work it doesn t make any sense at all in its current form,0 +there is also a really exhaustive hardware report in a seperate html file i made maybe this is helpfull to someone maybe more tricks be aware that this file s size is kb so be patient extensive hardware report,0 +image bwbuscard small jpg listed for deletion an image or media file that you uploaded or altered image bwbuscard small jpg has been listed at wikipedia images and media for deletion please see the discussion to see why this is you may have to search for the title of the image to find its entry if you are interested in it not being deleted,0 +why don t you block vandercken he made a personal attack how many times are people going to try to redesign the main page leave it alone and focus on getting our articles up to scratch,0 +dude where s the beef spellcast and his dark magick tryed to curse the beef but the beef shall not grow old and moldy until this flame war has ended and st of gods and men is proven one bad film beefcake beefcake,0 +shlomo is it possible to contact you via email or something talk may utc,0 +new source editors may be interested to read wikipedia awash in frothy by product of us sex politics you knew this would happen sooner or later,0 +if you will check the article at tours i rewrote the entire section you questioned i think accomadating your concerns and asked you on the talk page for your input so if needs further work i can do so i have a volume library here adn much of it is on the roman empire which of course includes the carolinians since the holy roman empire began with martel s grandson charlamagne i am sorry and welcome your input to improve the article,0 +best man i read in an interview in this months issue of fhm that he wasn t actually alexander armstrong s best man funnily enough that part of the interview was about innacuracies on wikipedia he tried to put it right but couldn t because of the auto rule,0 +we wil se how these self styled dorks the so called self styled admimistrators of wikipedia succeed in their nefarious designs on eliminiating the genuine information on the kambohj people and how indefinitely they would block me unless they do it permanently,0 +the people who first trans lated final fantasy v are being nominated for deletion,0 +oldid he attacked me at article talk lauged out and humiliated me than manipulated my words as an attack and threatened with block he continued threatening and gave a final warning that i can t revert times i didn t but he did i reported him but i got block how can he warn me about three revert rule on my talk page if it s exempt from rr and revert everything i wrote at talk page first of all our own userpages are exempt from rr and warnings are specifically listed as content we re allowed to remove removal is simply an acknowledgement that we ve seen the message you were block for reinserting the same message over and over you didn t bring new ideas or curiosity to talk turkey you made a statement saying that the three statements concerning the genocide wasn t necessary for that article and that it wasn t related to turkey you accused dr k of having a hatred and after receiving a response from other users changed the sentence to something different https en wikipedia org w index php title talk aturkey diff,0 +that was a standard second level template warning you didn t add nonsense but you removed entire sections of text,0 +july utc i m very very sorry goodday with all the nastiness i ve found here i mistook your welcome i initially thought it was friendly until i saw the strange post from mike on your talk page your not guilty of anything and again i am sorry i hope we can we chalk this one down to experience and put it behind us,0 +november utc i ve uploaded a cc photo to flickr feel free to use or not,0 +the lead is misleading the xbox one is a home video game console developed by microsoft the very first line of the article states it s a home video game console however microsoft have promoted the device as an all in one multimedia device for the living room that has the ability to play games and media i think stating in the lead that it s a home video game console and not a multimedia device is very misleading,0 +i m adding on to this i feel the statement passion being more complex than sanctuary came on a little too strongly as a preference and opinion,0 +wp adminabuse states that all administrators must be willing to account for their actions i should have known better this is quite obviously just retaliation for daring to demand accountability,0 +stop deleting my useful contributions,0 +do klasy c ocenia sie jak kto chce zwyke tak na oko przy b klasie to tez sie zdarza ale niektore projekty poland biography milhist have their own assessment departments ga and higher are quite formal wp gan is the first really universal quality mark tfu zmeczony jestem jezyki mi sie mieszaja noc reply here,0 +tks david i left an innocuous note on michael s page did you see his response below,0 +july utc i haven t attacked anyone on any page,0 +it seems like you have contributed to many articles pertaining to the seduction community please help improve the articles for jordan harbinger joshua pellicer and or johnny dzubak thanks,0 +i don t believe it is an attack but a reminder not to make personal attacks if one were to misconstrue it as you choose to as an attack it would still only be one attack not multiple i m sorry but you ll need to try again,0 +you are excellent register an account then we ll talk,0 +wikipedia has hired lawyers not it seems that it needs profesional shrinks have fun with mentally decapacitated person it is amazing how a single persistent disruptor may play with heads of five admins and growing crowd m kka,0 +i actually hadn t even seen the current equalization filter article when i spoke before but now see that its content needs to be merged into the future article equalization audio that you both have proposed i could make the issue a little more complicated though graphic equalizer not yet written smiley face curve parametric equalization and british eq all have to do with what i ll call music equalization for lack of a better term this includes sections and of the current equalization filter along with possible future articles tone controls loudness control combine with smiley face speaker equalization etc oh i m certainly not saying that these need to be separate articles but could as well be topics in one article except that a few of these already exist separately the article should mention that equalization is a misnomer but has become the accepted term since these are typically used to modify the tone to suit someone s taste not strictly to compensate for a channel s frequency response then there should be an article which discusses actual channel equalization or some such term which would include section of equalization filter telecommunications lines riaa equalization fm pre de emphasis as well as equalization of non audio channels this is the orginal meaning of equalization such equalizers are generally non adjustable by a user at least and trans parent to the end user so i call it a different subject even when it is audio anyway i don t have much time to deal with this nor am i the best person to write about the specialized issues regarding either professional audio or channel equalization problems though i d be very happy to review what is written and check for errors and missing issues come to think of it i don t have to ask for permission,0 +the edit you pointed out as a supposed example of pov pushing was not pov pushing at all i removed a reference to steve stockman running in the republican primary against john cornyn i removed it because there were two other references to stockman s primary challenge to cornyn already in the article also in the next edit that i did i added a better reference for the primary run i was the editor that put the original reference to the primary challenge in the cornyn article in the first place see if it bald faced lies like that one that you just wrote here that get in trouble you are a pov warrior in the first order you attempt to slander people that don t agree with your editingjust like you are attempting to do here to me you have zero evidence for allegationsjust made up bald faced lies i am not in seattle and i am a sock of either of those people i am not a sock of anyone you edit in bad faith and the way that you have been treating me in an example of your bad faith editing i don t have anything to be concerned about in relation to your sock allegation i ve known that all along i said it before you did i did not need you to tell me your apologies are out right lies also because when you apologize you come up with five or six more allegations against whomever you are apologizing to all of your apologies are fraudulent just like your sock allegations please just stop responding to me because you re fake apologies just embarrass you further and make you look worst stop it go away,0 +highly doubtful please elaborate,0 +the article is mostly about the pound in general with no mass force distinction due its historical treatment as a weight perhaps the numerous incarnations of the pound should be in a generic pound article and pound mass should be in a similar category to any other unit of mass in a specific system in this case the pound mass is a member of the fps gravitational system of units there should be a link to the pound mass article from the pound article of course but it deserves no better treatment than the lb of the fps engineering system there is a table of the fps systems at pound force and at slug mass which tabulates various fps systems it s a little less clear than it used to be what was simply called fps engineering is now engineering absolute and the fps gravitational system of units is apparently clambering for some credibility by calling itself the engineering gravitational system which of course has no use in engineering due to its offence to newton s nd law where did the gravitational system come from maybe some reliable sources are in order,0 +population the salem population is off about people,0 +edits by keraunos hi keraunos i see you added to and rearranged some of this article i ameliorated some of your additions for accuracy below are listed my ameliorations of your edits and my reasons for them you added the edit because the temperature of the cosmos rising toward infinity as the final singularity of the big crunch is approached will provide a potentially infinite amount of energy to power the cosmic supercomputer i take it that what you tried to explain here is the energy resource but actually that isn t physically accurate the universal heat diverging to infinity doesn t provide usable energy where the usable energy comes from is the gravitational shear i e the universe s taublike collapses along different axes with each cycle called mixmaster oscillations which provides a temperature differential across the universe whereby usable energy can be obtained hence i went ahead and cut this edit of yours if people read further into the body of the article under the section outline of the physics of the omega point theory some of this is already explained with references provided for further research with a number of the references available online for free you added a bit into here the omega point represents the resurrection of the dead followed by an infinite duration afterlife as an avatar in cyberspace which could take any imaginable form within the metaverse of the cosmic supercomputer due to its virtual nature i kept the ressurection link i understand from reading your user page that you re into science fiction and trans humanism but one should avoid loading up this article with needless science fiction terminology and trans humanist terminology as well as computer terminology which isn t that accurate such as avatar the term preceding your edits simulated reality already expresses the ideas you re getting at and people can follow that hyperlinked text if they re not sure what that means you added most of this engulfed by artificially intelligent life as it approaches the point of maximum expansion which according to tipler will occur between x and x years from now in proper time one should be more accurate in their terminology as most people think of artificial intelligence ai as meaning intelligence via artifically created programs yet if uploaded human consciousnesses become a reality then the programs of their minds would be natural but on an artificial substrate hence i m changing this to from that point on the entire visible universe would be engulfed by these mind children as it approaches the point of maximum expansion with mind children referring to the previously defined mention of the term i also removed your quote of tipler s estimation as to when the universe will be engulfed as that is from his book the physics of immortality yet later cosmological observations have been able to define the hubble shift more accurately which is what that estimation is based on so tipler s current estimation is different now for more on that see f j tipler the structure of the world from pure numbers reports on progress in physics vol no april pp see also here also released as feynman weinberg quantum gravity and the extended standard model as a theory of everything arxiv april you added the section criticism from string theory i kept pretty much all of this while editing it slightly to improve the style and formatting i changed the section title to implications from string theory since brian greene doesn t actually offer any criticism of or even refer to tipler s omega point theory in greene s book that you referenced this section as it stands now might have to go entirely as it appears to fall under wikipedia s rule concerning original research as it s written it s a valid deduction that the omega point singularity would be obviated if string theory disallows singularities and if string theory is true but it s an original deduction you moved the see also section to underneath the references you also added a number of links therein based upon wikipedia s featured articles it appears that the preferred location of the see also section is where it was previously before the references hence i moved it back i removed the link metaverse because it s a science fiction term that s perfectly explainable with more acce,0 +cipherpunk what needed fixing i copied the syntax straight from wp redirect how to make a redirect,0 +the less offensive term of equal clarity and brevity is british irish isles believe when i say that the manx natives have no trouble with this description as they are linked to the u k as a protected and supported territory republic of ireland on the other hand is a sovereign nation with no link to the u k did you read the article on wiki about the basis for usage of the term completely flawed logic as it refers to ancient texts etc and precedent for calling them the british isles place names reflect current realities thus we have istanbul and not constantinople a better example would be the aegean coast of turkey and its islands this whole area was once referred to as the greek coast and all the islands were greek islands since the political landscape has changed and the turkish state has jurisdiction the only islands which are now greek islands are those within the jurisdiction of greece if you were to rebut by saying that british refers to something more than a political term but rather than an ethnic or geographical one then the same argument or even a better one can be made of greek the greek world once referred to an area far greater than modern or ancient greece e g southern italy sicily turkey armenia etc and many of the people residing in those parts of turkey which were formerly designated greek are ethnically and linguistically greek but live in the state of turkey and therefore the islands and coast are turkish thus you could not refer to the island of ireland as british,0 +the shamen hey thanks for fixing a potential dab problem with the shamen s drop album vs your new article i guess i should turn the shamen s link blue now huh,0 +title of article in english wikipedia this morning a wikipedian moved this page to a version including the full vietnamese diacritics i just moved it back to the version without diacritics for the following reasons this is the english language article about ngo and the great majority of english text written about ngo and other vietnamese generally do not include diacritics in english in fact inclusion of the diacritics is of no effect at best or even confusing because they have no effect on pronunciation in standard english orthography please note i am by no means an english language bigot i am a student of the vietnamese language and understand the fundamental role diacritic marks fulfill in correctly differentiating phonemes in vietnamese however it is clear that in english the diacritics play no role in pronunciation the wikipedia guidelines on naming conventions asserts that the most commonly used spelling in english is the form that should be used apr utc,0 +i ve seen enough sigs to believe that my sig isn t out of the ordinary besides i change my sig every month anyways,0 +for the record larson was working on a battlestar pegasus movie for about months when it became apparent that universal wasn t going to go anywhere with the galactica franchise it turned out that larson did have the rights through some contractual snafu on universal s part to do anything with commander cain and the pegasus and his planned film involved the search for an ancient battlestar called the atlantis which was built by the th tribe and deliberately left in a secret location with the maps to earth the film would have dealt with the search a major battle with the cylons and the recovery and use of the maps to reach earth all w o involving the galactica or the rtf other than being mentioned the first article google shows is this one and the wikipedia set up for bsg had this one although i m not sure about whether there s some wikirule about referencing other mini wikis the john larocque article on the attempt is at hollywood north report has a short blurb about the larson effort but seeing as how their site has a lot of popups from spammers attempting to load trojans and spyware i ll quote it here to save your systems in the spring of it was announced that glen larson was making plans to bring galactica to the silver screen impressed with the visual effects and style of the independently financed film wing commander larson paired with its producer todd moyer on an estimated million film that was to shoot later that year in luxembourg the story picked up where the series left off but followed the exploits of commander cain and the battlestar pegasus made famous in the original series episode the living legend guest starring the late lloyd bridges in the concept commander cain s search for the lost battlestar galactica leads him to contemporary earth which according to the story was settled by humans who arrived here during prehistoric times on the very first battlestar atlantis special effects were to be handled by moyer s company no prisoners dfx utilizing several of the artists who worked on wing commander moyer planned to update some of galactic ass hips including giving the vipers the ability to morph into mechanized walkers la the trans formers when on planet surfaces moreover he and larson planned to expand the galactica franchise to include an imax film a theme ride and a new line of merchandise then as quickly as it had been announced the project vanished from the radar screen it has been suggested that larson and moyer ultimately found themselves at odds over significant creative issues it has also been suggested that the film rights to battlestar galactica were still in some dispute in either case the project disappeared into the ethers iirc cylon org had a page on this at one time but since they revised their site this one and its copies of the concept drawings they had have disappeared,0 +please do not vandalize pages as you did with this edit to moriah if you continue to do so you will be block from editing talk,0 +i considered tagging it for speedy deletion but felt it was simpler to remove all inappropriate content,0 +i am about to start a discussion at wikipedia talk wikiproject yorkshire about the harrogate categories as i think that they are a major change to the category structure feel free to give your response there regards t c,0 +good to hear i m particularly looking for coverage in third party sources if you can add those citations to the article over the next couple of weeks then that will establish the notability of the topic,0 +stack jones please stop deleting factual and cited information on the stack jones page information that seems to be of no importance to you is very important to the artist it is information that shaped his life and experiences that had caused him to become a lawyer among other things further the information you are deleting has several wikipedia pages that cite the same information further more your deletions cause other information that is posted to lose its fluid consistency be advised thank you,0 +i just did a re read of murder machine and it says that katz got off three shots at rosenberg one shot hit his jaw a second shot hit his arm and a third shot grazed his chest,0 +a considerable number of israeli citizens who were born in the former su are ethnic russians i doubt it considerably i think that out of the k russian citizens in israel those are the people who immigrated after there are about non jews as the israel statistics show and so the number k might be very accurate others out of the k non jew s in israel mostly are ukrainians oohh really who gives a damn,0 +moncrief do you even know what a shepherd is i used to work on a cattle ranch so i know a bit about this stuff to quote the wikipedia article on shepherds a shepherd is one who takes care of sheep usually in flocks in the fields unlike farmers shepherds were often wage earners being paid to watch the sheep of others the s weren t biblical times shepherding had long since become one of those crappy jobs that down and out laborers got when they could get it in fact that s an important part of proulx s story characterizing them as a particular kind of wretched of the earth calling them cowboys is yet another example of arrogant coastal ignorance i am more sensitive to the argument that they only worked on the sheep operation that one summer afterwards ennis worked with cattle and jack worked most of his life in an office job not as a rodeo cowboy to whoever made that remark however the bulk of the movie painstakingly details that crucial first summer the summer that so defined them therefore i d say that the relevant description especially in this paragraph discussing that summer would be shepherds that however is more up for debate i would settle for calling them laborers who got jobs herding sheep although anybody who s ever worked on a ranch or knows a damn thing about ranching knows that that s just a circumlocution for shepherd but since i don t want to make a personal hobby of constantly changing this page i ll settle for that as a compromise chris,0 +wp film coordinator hey i saw your message concerning the upcoming elections for wp film concerning the project coordinators and that you might be adding more i m a bit confused concerning the scope of their responsibilities is it largely updating reviewing articles and aiding in the establishment of task forces at least as far as i can see do coordinators generally specialize in various areas i e one handles task forces others reviewing or a combination of any such duties if so i was wondering whether i could specialize as a coordinator for featured lists i rank second in terms of total featured lists made among all wikipedians and i have a very good grasp of what is required for fl status if i was elected i probably would work towards encouraging featured lists under wp film s scope and there certainly are a host of lists that could be pushed up to fl status with a coordinated effort that said i understand that i m relatively new to the film project and that there might be more suitable candidates who are more familiar with the project just curious as to your thoughts on the matter cheers converse,0 +i do not attack i am but a messenger death is but a door time is but a window and i vigo the carpathian will be back,0 +pov this edit is unjuestified unless the sources and npov policies were changed since last time i edited this article this is another pov push by zero that is not discussed in talk,0 +tania doko thanks for the message on my talk page if you read the page s edit history you will see that i did not add the prod notice if you read the notice you will see the following if you can address this concern by improving copyediting sourcing renaming or merging the page please edit this page and do so you may remove this message if you improve the article or otherwise object to deletion for any reason however please explain why you object to the deletion either in your edit summary or on the talk page so feel free to edit the article to deal with the concerns expressed in the notice,0 +the above comment was made because every time anyone makes a change to the britney spears wiki page xwomaniserx steps in and undoes it for some unknown reason he has made it his mission in life to control britney s wiki page mate butt out and leave it to the moderators to monitor changes you are not britney s royal crusader,0 +eleemosynary you re clearly a biased editor let s face it you lost and hopefully you ll be exiled from editing the article,0 +tablighi jamaat and allegations of terrorism i have added it in article and this is most relevant article on the main deobandi organization t c,0 +fyi in fact there are thousands of scientology missions churches and groups spanning the globe on every continent and in over one hundred countries of earth and millions of scientologists to be your friends and help you help yourself and others,0 +one other policy i neglected to mention is the one on copyright violation material from other websites like the institute s website is generally copyrighted and cannot be cut and pasted into our articles facts and ideas can be extracted but they must be totally rewitten in order to be acceptable for our use even if you have a connection with the institute we would need them to explicitly release the material under a license compatible with our own licenses and this would have to be done through official channels not via casual discussion in the meantime please do not add any copyrighted text to any wikipedia article thanks,0 +college athletes are college athletes notable enough save nationally known ones i e anthony gonzalez to be included in this list thought i d get some opinions before deleting them talk,0 +though i am not going to stray from the virtue of humility i must say that i feel that i am quite trustworthy and capable of knowing more about the ultima franchise than the average mortal human also i feel that since that which i would type shall be only opinion it doth be the opinion of the avatar i feel that it would be informative for me to add it since i was the main character of this game,0 +i ve restored the page to the version that s stood for some months to address the anon s concerns the revert restoring the criticisms of prime ministerial power section repeated nearly word for word information already in role and authority the revert restoring the list of canadian prime ministers section created a whole section for one link that duplicated one at the top of the qualifications and selection section the revert restoring the salary and privileges sections split an earlier merge of the two for no apparent benefit it also reinstated trivial and unsourced comparisons of the prime minister s salary to some of canada s top corporate executives note weasel words the revert restoring the living former prime ministers reinstated trivial information better covered at list of prime ministers of canada the revert restoring the death of the prime minister reinstated a list of trivia and moved back there information that had been shifted to the privileges section in all the reverts achieved little mostly decreasing the quality of the article,0 +it may well be reliable but it s not as good a source as the harvard book which is written by an academic expert in the field not just a journalist,0 +functional languages iswim etc,0 +redirect talk shabab al khalil sc,0 +can t have my popcorn fro,0 +i ve been working in computers since at the industry level kilobytes are kb megabytes are mb gigabytes are gb terabytes are tb etc i ve never been in any computer firm be it a game developer ibm apple a movie company or a technology company that uses mib or anything that kooky in fact my computer science professors will in the classes i ve taken outright mark the paper a failure if anything but mb is used also kilobit megabit gigabit etc are as such kb mb gb etc the only place this mib junk is used in in wikipedia,0 +why can t you believe how fat artie is did you see him on his recent appearence on the tonight show with jay leno he looks absolutely awful if i had to put money on it i d say that artie lange is a can t miss candidate for the dead pool keep your god damned fingers off of my above comment,0 +what is your favorite color,0 +in soviet russia the car drives you,0 +repeated copyright violations you have once again violated copyright by pasting in the contents of http w marseille com p en if you do this again your account will be block from further editing,0 +vandalism congratulations on the vandal fighting you are doing a good job please remember to substitute the warning template by adding a subst before the template subst uw vandalism it helps alleviate the burden on the servers thanks talk,0 +mark sweep is a wanker,0 +cliodhna doyle please don t create articles about yourself or your friends talk,0 +pi kappa alpha please note that you have both reached or exceeded the limits of wp rr on pi kappa alpha please work toward a consensus before making further edits regarding this issue might i suggest a request for comments,0 +ditto regarding the final wrap up adl sentence,0 +that might be a major undertaking as each subject hasn t changed much in a year due to the daunting task of putting it all in eighth grade english,0 +but again the variety source is a reliable source even stated again here that again per wp v will be used until a new or different reliable source comes around that says otherwise,0 +why didnt you block trusttruth and rfortner sir your block of david tombe is unfair apparently you didnt read the discussion the dispute was started by a nasty comment from trusttruth but you didnt block him then rfortner was extremely nasty in a remark to mr tombe but you unfairly block mr tombe this indicates to me that he is right in what he says about you editors so unless you block the real offenders i have to assume that you sir are not a fair and honest person frankly sir i am upset by the way you have treated me here and this is not unusual editors treat users with disrespect as you have mr tombe wikipedia needs reform to create honest and accurate articles i dont see this happening all i see is political correctness and poorly written articles with significant political bias you need to block the real offenders in this controversy not mr tombe,0 +ugh i hate when people add bs to articles like that crap chat wit me contributions,0 +well no one came along to defend that sentence so i ll assume it wasn t defensible and remove it from the article apr utc,0 +article for deletion gnaa nigger ia the article gnaa nigger ia has just entered its rd afd there s been considerable debate in the past as to does such a place even exist if a place does exist with that name is it notable is this all a hoax perpetrated by the other gnaa the gay nigger s association of america they issue press releases datelined gnaa nigger ia i understand you have edited africa articles extensively if you get the chance can you maybe take a look and render an opinion pro or con thanks,0 +upcoming n virtual console titles i ve delete the titles in the upcoming n virtual console list as much as i would like to believe that there are more n titles coming up the esrb only gives the name nintendo for the platform not wii until this changes the titles will need stay removed since wikipedia works with facts and not assumptions thank you,0 +so does that mean that there might sometimes be a request for a steward to do this from other wikis directly then color me a bit confused about the exact implications of this wp tpws any ideas t c,0 +i can tell already how your game is played however sovereignty is a dead serious business and we mean business enjoy the next two weeks could get real hot,0 +and i am so sorry for that revert,0 +no it s got nothing to do with the fact that humans have murdered many animals rather it relates to you not understanding why humans get attacked by wild animals you re bringing up trivial details that are only vaguely related to the concept of speciesism i m not going to discuss this any further if you can t understand that both humans and animals are equal in right to life then you are a speciesist and you should get counselling,0 +you were able to revert an obvious vandalism under mins congratulations,0 +thank you i did the point is not the content of the edit but the arbitrary way you decided to make it,0 +many thanks for the welcome i have returned the friendliness by correcting a typo on your user page which is probably a massive cheek from a newcomer your links prompted me to attend to a page needing attention heck this is going to be fun for a pedantic nitpicker like me looking forward to catching up on your wmd stuff good luck nov utc,0 +it don t have to be acceptable for you you can t delete it or call it unconstructive,0 +now all you need to do is press unblock please let me edit again i won t do any of this ever again,0 +hua you can t deny me shea balla,0 +check the clock the formula race has just ended with victory for the series to vettel though as you local petrolhead i backed alonso who came second i did the edit with metaphorical petrol fumes fogging my poacher s game and spokes and gears of frustration and disappointment streaming from my aged boat guv so you may need to check the best dictionaries give race so one has to retain it in any case it was coined as a term by haeckel when race discourse was emerging you can t actually put and as if the two related words had a double denomination one of which is race esp in the modern sense which the greeks lacked can also mean a class as in the class of women or the class species of flies a more prosaic term refers to an organized institutional body of men united by belief in common blood or descent even tribe is deceptive in its english rendering since that connotes a distinct anthropological culture whereas athenians though all sharing the one culture and language were divided into phylai etc,0 +one last issue roger as i am trying to listen and learn i see where you made corrections but when you click the highlighted wikilink names there are no wiki pages for them ie rhythmic arts project and saving k lives only pages to create and that is why i used the external links instead since they mention tamara on those websites perhaps it is perceived as redundant since i mention them in the external links thanks again for all mary,0 +the importance of khalifman and of anand ponomariov kazimzhinov and topalov in being world champions during a time of crisis for fide cannot be overstated they represent the rule of law the functioning of the world title cycle at a time when it was under direct attack by persons who viewed the title as private property rather than as a sports title bestowed upon a player by a public cycle as it had been from onward to say that fischer kasparov or alekhine were greater players and therefore of more importance overlooks this important aspect of khalifman s title reign one could say that fischer kasparov and alkehine were stronger than euwe and smyslov too but that doesn t get us anywhere we don t rank us presidents by reputation we list them all equally yes khalifman himself in in interviews said that although he was not the strongest player in the world being th by rating he was clearly the world champion having won the title in the open public cycle run by fide that stand that position is what makes his title reign important btw before anyone denigrates the fide title champions it should be noted that at least two could be considered super gms anand and topalov and that one anand regained the title via the classical method chesspride,0 +i hear that eventually they ll be available again in that case i ll comment it back in when they become available again it ll appear feb utc,0 +work in comparisons of life cycle greenhouse gas emissions first i ll say thank you for helping me in the the article i ve been out of wikipedia and didn t had much time to work on second despite the good points you added to the subject i fear what you added may not be accepted by the pro nuclear side i can live with that it contain all info i need and for me its fine unfortunately you cannot put anti nuclear studies in evidence and put all the rest in others section if you want the pro nuclear people accept what you did you have to put at least pro nuclear study and anti nuclear study thanks you again for your help,0 +ekantik do you believe that sathya sai baba can miraculously trans form his genitals i would appreciate an answer i also find it amusing that ekantik of all people is attempting to point out strange beliefs held by sai devotees when ekantik is a hare krishna congregational member and a gaudiya vaishnava who has openly defended his belief that lord krishna literally manifested seperate human forms married seperate women copulated with each one of them and generated innumerable offspring sanjay also believes that lord krishna held an entire mountain aloft on his pinky finger for days and nights and defends scriptures that say the lord vishnu a male trans formed himself into a woman mohini devi so it appears that ekantik and sai devotees are not really that different as far as strange beliefs and miracle stories are concerned i can t help to wonder why ekantik mocks strange beliefs when he holds them himself funny how ekantik and andries critics of sathya sai baba want to promote well sourced stories about gential switch tales and think the aura reference written by a doctor in a well known sri lankan newspaper is not well sourced this whole thing is pov and the attempt to skew the article with a pov is evidenced by these discussions good luck wikisunn you see what you are up against talk email,0 +and thanks for digging up those links to the talk learned protocols of the elders of zion page archives from its turn on the main page so i didn t have to actually i brought that example up not josh,0 +this sort of offense can include inserting nonsense into articles blanking articles or otherwise changing articles with obviously unwanted content this serves no other purpose than creating more work for wikipedia s editors and administrators if you do continue your account and or ip will be block jun utc,0 +list of ice hockey teams in ontario i updated template ohl and template defunct ohl to try to simplify things template ohl contains all teams past and current for the ohl template defunct ohl contains all past teams from the omjhl and the oha junior a that template may need to be renamed regarding the article list of ice hockey teams in ontario how should we handle the defunct teams from the ohl omjhl and oha junior a that is a really good question i would like to add them as it would allow the list to be both complete and consistant with the others i havent added defunct jr a teams on any other article but many of these oha jr a teams were the highest level of junior hockey at the time i believe so should be added as being equivalent of major junior however that will likely make this a really long list it might make sense to split the article into two active and defunct as i did with the baseball lists i would suggest expanding the defunct teams and seeing how long the article gets then deciding from there if we hope to get it to featured list status as i would like for all then we can t use the template as a part of the article itself,0 +replied on this user s talk page,0 +reduce indent giovanni the case is closed i m now going to ask you to stop badgering john this is a personal choice on my part to close this case and it has nothing to do with john s conduct participation or otherwise resultant of his contributions to wikipedia,0 +hunk should have his own page separate from my main argument look the whole talk page is about him also it s the fact that he is a playable character that separates him from marvin also you can count the fact that he is essentialy to resident evil what chameleon is to mortal combat but he has a story line and background info also look at all of the other separate re character pages all they are is one gigantic filler with nother telling of relationships with other characters or their personality,0 +departments or states i am confused are the departments of honduras defined geographically like the states of mexico or the lands of germany or even the states in the united states when can one department of honduras exercise authority over another department of honduras does the constitution of honduras subscribe to any theory of jurisdiction when it comes to organizing its departments and is the jurisdiction of one department explicitly limited by a specific border or boundary with another if an individual or his property is taken into custody in one department is there a hearing before a magistrate as one would expect in a civil code country before he or the thing he has an interest in is extradited to another department i think the main article could be improved by explaining when one department can exercise jurisdiction over an individual or corporation doing business in the area of a particular department and when it is supposed to refrain from exercising that authority,0 +i was born and raised in india and i only heard of the nigger version ofcourse that word is not used in a discriminatory way there suffice to say i was shocked when i moved to the u s and learned about it s history,0 +sandygeorgia facs especially ones like our last one that had all of wikipedia s best writers commenting tell us what we can do to improve the article there are facs that are longer than this article and wp size says to toss its instructions out if common sense says the article should be longer looking at the catholic church article in all other encyclopedia s its one of the longest articles in each instance why are you trying to make this article into something it should not be something that has no scholarly precedent talk,0 +i have made no such threat via email or any other method jpe is unhappy with his recent block at wp rr dick laurent is dead,0 +hey with a little work and resizing this could work,0 +sewilco s edits wp point i assume that s what this bizarre edit is,0 +well actually i was looking a bit more for articles about umbrella consulting in papers such as the new york times or on the larger news sites anything that published by a third party source meaning not your company or anyone related to your company which has a substantial size which means no local newspapers of course the article s must provide a bit more information then just menrioning umbrella consultings name to give you an idea what good sources are have a look at the primavera systems article under the section references the links provided there are examples of good independent sources contact me contribs,0 +by the way the exchange between rjensen is jpgordon is a sock puppet conversation pathetic really,0 +watch your step just you be careful whom you block and which articles you delete it is not difficult to learn precisely who in that real world the coward is behind the loud account either you take a few steps back or your community friends will be holding their palms to the skies in the disbelief that smalljim has suddenly stopped editing we however know exactly why you won t be editing and let s face it who else edits from inside the coffin,0 +thanks for your comment sorry i have not been in touch for a while i have been in united kingdom singapore is truly amaing the people are wonderful they live to serve and they are well trained in respect singapore is a different world to australia and a different world to where i m in the last weekhas been full on i have spent many days in london then head towards grantham then stratford upon avon shakespeare s country and now in the world s most educated city and oldest cities in the world oxford lord of the rings was created here not the movie but the story trilogy was here england is sort of similar to australia only older more history more pubs more people tiny parking spaces and so many red double decker buses i m doing all right for money and spent some at london s best gamesworkshop in oxford street gamesworkshops are bigger and better in england i have been to a couple but can t buy much because of space in my ags rohan saun would love these gamesworkshops in england there are mini gamesworkshops in villages smaller than broadford and still they are fanstatic bigger gamesworkshops are manily in more bigger towns and cities eg nottingham london mancester oxford and many more tell rohan that i went past the gamesworkshop headquarters the citadel miniatures factory and warhammer world in nottingham but unfortunaly i could not go because we had no time because our destination was derbyshire and ran out of time but i certainly will go there when i come back to england if i have time i m still a little jet laged from the plane journey to london from singapore i will be back at assumption college on oct th i think cheers tom,0 +delete example would it be appropriate to delete the example section at the bottom mar utc i think so don t see what it adds mar utc yes moreover it is not an example of random variable its just a realization of random variable hardly misleading mar utc i thought this was very useful because it showed an example where the map was not the identity map i propose putting it back false statement a continuous random variable does not always have a density preceding unsigned comment added by definition i dont like the definition here not that i m letting my ignorance of stats stop me from commenting but could this be considered a clearer definition random variable the outcome of an experiment need not be a number for example the outcome when a coin is tossed can be heads or tails however we often want to represent outcomes as numbers a random variable is a function that associates a unique numerical value with every outcome of an experiment the value of the random variable will vary from trial to trial as the experiment is repeated there are two types of random variable discrete and continuous a random variable has either an associated probability distribution discrete random variable or probability density function continuous random variable i think this is definitely an improvement but it should be pointed out that there exists r v s which are neither discrete nor continuous for example take the sum of one r v of each type the current definition is bad in that it is neither clear to the lay reader nor specific to the technical reader the above definition is far better on both counts and so i will put it on the page btw sorry about the no summary edit i hit the enter key accidentally examples a coin is tossed ten times the random variable x is the number of tails that are noted x can only take the values so x is a discrete random variable a light bulb is burned until it burns out the random variable y is its lifetime in hours y can take any positive real value so y is a continuous random variable i think the above definition for the original reference pls search via google explains to me that it is a mapping between a value and the sequence number of that value rather like a numeric index to a database record this would appear to allow greater generalization in statistical definitions and algorithms the earler wikiedia definition led me to comment on another wikipedia definition incorrectly because i think i may have misunderstood the concept after looking at this wikipedia definition a random variable is a function that assigns a numerical value to an event this example just assigns another event to an event could we change it to something like consider a game where if a is rolled on a fair six sided die player wins and otherwise player wins let x represent the number of times player wins then and or maybe include an example of a continuous random variable what do you think this section should begin with a sentence of the form a random variable is to avoid this is to show that you don,0 +september utc also a personal state that looks like autism is most likely going to be diagnosed as autism or an autism spectrum disorder such as hfa or as,0 +did you know that you also hit the stats precious,0 +blp stuff i m sorry i got annoyed with you it is a bit tiresome having to deal with some of this stuff and you probably didn t deserve the full brunt of my frustration there still please be sensitive to this in the future i have in fact been dealing with people harassing me over this and thus when i see you complaining about it over on ani i just see it as more of the same it isn t much fun which is why i try to do this stuff only every other day or so with any great amount of focus spending the rest of my free time writing about ponies kissing or playing video games or working on my own game or doing other stuff the only reason i m even still involved with all of this is because i have a much higher tolerance than most people for doing stupid stuff like counting sources or fact checking or w hate ver because i have a high tolerance for abuse because i have an enormous ego and because i feel that it is important to keep wikipedia neutral about all things even stupid internet fights i m sorry for missing your question over on gamergate about my edit i noted my response to you in the ani thing which is now closed but if you d like to discuss it further i d be happy to do so,0 +peer review template on this talk page volunteers please merge peer review template with article history template thanks,0 +well if no one is going to address my concerns here on the talk page then i suppose that means there is no problem with my edits thc loadee,0 +it should not be deleted but fixed north kosovo is de facto independent from the albanian dominated government in pristina while other enclaves south are not speaks,0 +http w google co in search tbm bks tbo q gaurishankar hirachand ojha btng q gaurishankar ojha hl en tbo tbm bks ei xpfytql mmaurafmv tucg start sa n bav on or r gc r pw fp e bitch biw bih go through this be it harvard university or james tod later revised editions itself show the name of gh ojha the title of mahapayodhya is given by govt of india and it means greatest of all teachers and it shows why people are afraid of hindi ojha sir too know english very well but he wrote in hindi and still achieved great heights no historian in modern day india can take the challenge to do that and reach the same height as ojha sir,0 +i could read the article and write one that s of satisfactory length if the editors here are having problems it s really not that difficult the lead right now is unacceptbale,0 +it is obvius to me a black man that orange is for da black gs blue is for mexicans and yellow is whites coz whites look like woman and mexicans try to compete with da nigger gs but we r too strong but in realty the whites also lose to da black man coz we have foot longs orange throated males are strongest and do not form strong pair bonds instead they fight blue throated males for their females yellow throated males however manage to snatch females away from them for mating blue throated males are middle sized and form strong pair bonds while they are outcompeted by orange throated males they can defend against yellow throated ones yellow throated males are smallest and their coloration mimics females under this disguise they can approach orange throated males though not the stronger bonding blue throated specimens and mate while the orange throats are engaged in fights,0 +problem solved the person who originally put it there just assumed it was the oxford one according to the wolfson website it seems to be a school called queen s college,0 +found rider version oops i am still not sure the info actual takes you to the crystal clarity ananda book i am going to revert what i put in,0 +assault heres a link re an iron bar assault on gilmore leaving her witha broken wrist http w abc net au news stories htm site sport section more talk contribs,0 +funny i came her to comment that large portions of the article have an obvious negative slant to them apparently written by christians with an ax to grind it s not over the top tending more to being apologetic perhaps i ve just spent too many years fighting this battle,0 +and yet a bogus quote does hm,0 +university of karachi project im trying to clean up some of the projects listed in wikipedia school and university projects and your name pops up associated with wikipedia talk mass communication in pakistan is it safe to say that this is no longer a planned project and perhaps a completed one thanks thelmadatter,0 +this is a stub i don t know how to designate it as such i ve sent an e mail to the people who have the web site linked to this page suggesting they write an article under this heading in the meantime maybe someone else will write something,0 +i reject your faulty premises both sexting and making threats to the president of the us are both against the law i haven t broken any law nor any agreement with my isp,0 +okay so in the name columns where it says first name can i put wayne and in the second column where it says last name can i add slam instead of my real first name and last name slam,0 +what the hell happened to ronin somebody removed ronin from the list,0 +it presumably means it is not a metropolitan county,0 +i will be writing an e mail regardless with all of your user names in it i am not a vandal and i can call you a nazi all i want it s not an attack if i think highly of them actually it would be a compliment,0 +i already said i wouldn t do it again,0 +redirect talk chucky child s play,0 +it s a typo a salver is a silver dish,0 +is there a case to have the article protected against ideologues like eleland who apply rules to suit their ends,0 +preceding unsigned comment added by talk contribs hi you are in no danger of breaking wp rr consecutive edits count as one revert so feel free to undo the last undo of yourself talk to me,0 +tons i am curious as to the source of your near infinite patience with temper tantrums i wouldn t last minutes as an admin if this was what i had to deal with my hat goes off to you,0 +new user an nucleus thanks for the wikipedia training alice,0 +accident feb stop adding the accident with the bond helicopter ec who ditched in the north sea to this page ec and as superpuma are different aircraft preceding unsigned comment added by,0 +re rfar i wasn t asking because i wanted to know out of intrest i was asking because i think it should be clear to arbcom why you feel the other steps should be skipped,0 +i have indefinitely block you for repeated violations of any number of wikipedia policies over many months and many blocking admins you show no signs of trying to improve and even when given your final warning just above you responded with more of the same i haven t really been involved with you before and just kind of ran across this and realized do what is good for the wikipedia community enough is enough,0 +this page has been completely ruined it has been half changed for some reason by some idiot it is also now completely out of date as a lot of these singles have recharted many times since this page should be taken off now if this hadn t have been messed around with in the beginning i would have kept this current also would have added a comprehensive list of most weeks on albums chart which has taken me years to collect the information am now keeping to myself rather than sharing it with you wiki beaurocrats,0 +you have mentioned lack of consensus i say that unreferenced claims must be removed as described in wp cite who disagrees nobody consensus reached why did you revert my edits,0 +redirect talk films that have been considered the greatest ever archive,0 +your witchhunt why are you trying to rid wikipedia of the following pages dennis donaghy blanket statementstein dirt bike annie what is possessing you helping the wikipedia what is your honest sincere motivation sir or ma am i have zero affiliation with either of those bands since and respectively they should stay and not be witchunted cuz of my what yer callin a vanity page which is not cuz er confused but who cares at this point alls i wanna know is how does someone come out of the woodwork after weeks and weeks of nothing to tag and afd all these pages i just would like to see what your logic is it might amuse me,0 +ah michael it s been too long of course i know the warnings remain but it fills up the talk page i suggest you stop obsessing over me too kid oh and please send my regards to your dog she s cute,0 +i don t like you i will hurt you,0 +i also reverted vandalism on dookie does that make me green day no does that make me a fan no you re a bastard i hate you i cant believe just because i was going through recent changes and helping out people doesn t make me a sockpuppet i can help out and edit that doesnt make me someone else youre a horrible user that should be block i cant believe you,0 +silver badge party a few months ago you mentioned that this article contained major inaccuracies would you be able to help correct some of them or give me some guidance on what they are thanks talk,0 +please do not vandalize pages as you did with this edit to jibb if you continue to do so you will be block from editing talk,0 +i know i know but i can t remember my password how can i login if people aren t e mailing me my new password like there suppossed to,0 +well i might consider and then might even agree with you that perhaps one could point me to wp dbad here spelled in a form of euphemism for my potential benefit as i consider you had pointed me but that still hasn t given any solutions to the disagreement which goes on the talk page here i mean the talk international recognition of kosovo page as far as the wp rm if this is what you had in mind is concerned my opinion is that the third conversator thinks other of the procedure i m still not sure that there is one moreover i m certain that for the time being he doesn t think of another pov of the procedure because of this words of his which are somehow unclear at least to me any new proposals will be speedy closed persistence will be dealt with sanctions as per the wp arbmac probation this article is under the scope of concerning the closure of proposal i m not sure if he meant new proposals through the talk page of international recognition of kosovo irok or through the wp rm actually i find wp rm somehow vague on the sequence of steps to be taken when new request proposal is to be made i ve tried to follow the procedure proposed as it is given at wp rm but then i might misunderstood something i might consider asking for explanation on the very own project s page as for that matter hus as a formalist as i consider you at the moment i must ask you now this when you wrote all controversial move proposals must go through in order to have any validity you actully wanted to write all controversial move proposals should go through in order to have any validity i suppose i pointed out one might consider i ve used irony i apologize to those to the ambiguity of interpretation of the potential procedure since the very procedure hasn t been tagged as a guideline but still named a project to the least maybe some other place exists which i m not aware of i apologize in advance for me being somewhat a whiner since i ve been passive and not searching for potential one myself not to mention judgemental and still non constructive enough to contribute myself although recognition of the problem might be considered as form of contiributing action sorry for that ijanderson you asked why are you not claiming that this article has a pov title international recognition of abkhazia and south ossetia well actually i do consider this title is biased also but personally i consider the irok more globally important not just to me as one might think it is if the bias is dealt with this issue irok title it could be dealt elsewhere also and imho it is good to keep the discussion in one place maybe creating a new page where this discussion concerning the term recognition or more could be taken should be considered as an idea all the best s talk,0 +just the shut the hell up man,0 +are there any published sources that dispute kozhedub s claims no then that information does not belong on the page per wikipedia policies above,0 +yes it s vandalism to remove info such as the category simply because it s not in the text i can t figure out what would compel someone to do that in the first place,0 +i appreciate that you like a good little tool have passed me along to the hacksaw in this equation way to tow that jackass party line heil jimbo i also appreciate the fact that you and gwernol are combined too stupid to see the part of the cincinnati enquirer and the mount website that talks about nursing being the most popular mount academic program or that they have added more teachers to the criminology program and behavioral science programs in general than any other way to work hard at wiki,0 +september utc i love how i specifically tried in a polite manner to engage in meaningful dialogue here and asked you to respond in a way to help me understand why you refuse to accept the submission your line response was the equivalent of nana nana boo boo as far as i am concerned let s dissect these lines you don t understand propaganda that is a loaded statement if i ever read one i have read up on the term propaganda thanks very much and my readings are not simply limited to this website which i feel is narrow in its scope i have been on a program that toured the death camps of poland and studied the use of propaganda in nazi germany i am currently awaiting a response from a phd who has lectured and studied the use of propraganda in the media industry and it is with respect to our point of contention here funny i can t find any work you have done on this subject mr jensen yet you seem to be trying to claim superior academic grounds here i have made an attempt to engage in meaningful dialogue and you response above clearly shows you cannot or will not make an effort to present factual arguments to prove such a comment you use the word to denounce advertising for products you consider harmful i am not denouncing advertising for products i consider harmful and this is what you need to understand because i have stated this on multiple occasions in many different ways this statement you have just made is a personal attack additionally it is incorrect i don t consider the product to be harmful it is harmful this is not an opinion but a restating of facts by the iarc who and health organizations worldwide based on the overwhelming body of evidence that is available if it were simply an opinion i can understand why you could be frustrated but the irony mr jensen is that the fact that you and others believe that this is simply an opinion is possibly the result of hearing or reading propaganda used by those in the tanning industry to cloud the picture tanning bed exposure is strongly associated with skin cancer among other health risks please take the time i urge you to read any or all of the references i quoted in my submission all from established medical journals the industry claims that these risks are not existent or are insignificant says that uv exposure is more controlled in a tanning bed not proven whatsoever and claims health benefits of tanning bed use that are either unproven e g cancer prevention base tan exaggerated and can be achieved through safer means e g vitamin d exposure so please enlighten me mr jensen as to what propaganda is is propaganda not a form of communication aimed towards influencing the attitude of the community toward some cause or position by presenting only one side of an argument that s the definition on the wiki page right i am sure you have head of a systematic review that is when an established researcher evaluates all of the evidence for and against an exposure and concludes if the body of evidence favours a hypothesis it is the most balanced and unbiased way to assess an intervention or exposure well that s what i use and that s what the world health organization used when they came to an unbiased conclusion that uv exposure from tanning beds as well as the sun is a carcinogen in the same class as cigarettes in my submission i think i clearly showed that there are many in the tanning industry and their associated organizations who have reported only the small studies that show their point of view but neglect to mention the overwhelming amount of evidence that goes against their points including the systematic reviews i mention is this not the same as presenting one side of an argument to influence the attitude of the community or is it that as you say i just don t understand propaganda i have to say it yet again to you because i think this is such an important point that i have to drive home this is not my opinion tanning beds cause more harm than good fact tanning industry sites present the good which is partly true and negate the bad partly false and this is also a fact if you can find me a tanning industry association that clearly presents a balanced view you show it to me because this would run counter to the principle of good business its impossible for an industry that causes harm to remove a conflict of interest when weighing evidence for or against their product and the result is advertising that is propaganda the industry has used scapegoats diversion tactics e g suggesting that cancer society and neutrogena are connected in an elaborate scheme to sell skin products through fear mongering stating that the government is taking responsibility away from parents to make decisions on behalf of their children blaming o,0 +ce type est un sauvage et stupide livonian extinct in one article living in another one,0 +wikipedia articles for deletion mik ass econd studio album hi apprenticefan it may be worth taking another look at this as the situation has substantially changed since you made your comment thanks talk contribs,0 +my reference is to the organisation rss that has been documented in media as well as respected politicians to have a fascist attitude i was extending the same logic to their supporters however it is testing my patience as in reality i wish to contribute to the wikipedia in a journalistic way edits from these agents are however either twisting the facts either subtly or blatantly and bringing out the bad in most of the other authors,0 +i m not the grandmaster when it comes to reading ancient greek but notice this epi de dorou tou hellenos ten hupo ten ossa te kai ton olumpon choren kaleomenen de histiaiotin ek de tes histiaiotidos hos exanetsto hupo kadmeionoikee en pindoimakednon kaleomenon it looks to me that in both instances he is indicating what the region is called not the people so it should be trans lated as the perseus version indeed trans lates it the region of pindus was known as macedonia not that the dorians were here known as macedonians,0 +cool under fire the barnstar of peace this is for being continually cool no matter how hot wiki gets the term cool under fire seems to be made for someone like you now if i had any artistic skillz i should make a bs to fit purely that hmm meh until that day comes if ever this is deserving of you and vice versa jump slash dash ouch super boom,0 +i noticed that someone changed the redirect to another sister article of dmk if clearly different opinions exist on the best redirect a dab page might be a good compromise to avoid an edit war before creating the dab i also tested a small sample of airport codes like hkg sgp ams cdg a good proportion of them are dab pages so the dab page seemed like a good solution here dmk is still very new so the number of references is probably still small that makes it only more important that it can be found easily in wp,0 +does this page need to exist from the citations only one author has referred to the period has pax hispanica moreover the period of peace only lasted years this is not noteworthy is it should this page deleted,0 +i m sorry i m unable to see what you are referring to i can only see brigadier general twice in this sentence troops commanded by brigadier general maitland at warapee creek on the night of april the following night o bryen was ordered to assist brigadier general hughes in the taking braam s point are there other occassions,0 +norton commander image redundancy tag removal hey i didn t put those tags there they were put there by some ass hole with some sort of bot i think the images are very illustrative in fact of the whole ms dos to windows journey which nc was a witness to in its various incarnations this was why i added the fair use rationalisations and a request to remove the redundancy tags however i m not sure how image deletion works is it safe to just delete those tags like you just did won t this authorize a bot to delete the images now please get back to me on this,0 +to much povediting now specially in the lead i going to revert lead to rev specially conserning nd paragraph in lead which up to now been fairly stable discuss and build consensus before changing lead actually that goes for whole article but specially for lead,0 +for the record i m just concerned about the sources at the moment specifically for the passage cited above if someone would add them that would be great as for her buffet a single meal there would entail calories at one sitting for the body that s a weapon of mass destruction,0 +personally i think many of the disputes could be resolved if we had some consistency in what is and what isn t to be said about politicians and that is more than anything a structural issue with wikipedia that probably has also been dealt with extensively in other wikis concerning perhaps george bush perhaps we can should be looking there for guidance as to how the community has dealt with the issue basically what we have is one camp who wants to tar grant devine brad wall with sourced and referenced bad stuff but goes and eliminates the sourced and referenced bad stuff written about lorne calvert and other figures in ndp administrations and we have another camp that does the opposite and an edit war is the ultimate result,0 +go hang yourself you re making garbage edits on wikipedia and you are ruining wikipedia go shoot yourself n gger screw rap music hang yourself and die you re dumb gay o,0 +hello i am indeed lisa sparx of lisasparx com this is why i have chosen my own name for me to use if you have any questions or concerns please feel free to contact me at redacted or by calling me at redacted that number does ring to my cell phone and is toll free best regards thank you for your understanding in this issue it s not all the time that people understand that we can t just take it for granted that if someone creates an account that is the same as their real name that the account is legitimate i ve had occasion to work with other people who have articles here and their reactions to what is in the article or not in the article can vary greatly i ve removed your contact information from view although it is still available in the history of this page this is to keep your personal cell phone number out of view of every person that comes by this page if you have any questions about the way things work around here or anything else i ll be glad to do my best in answering them and finally you can sign your posts by using four tildes like this that will automatically add your user name and timestamp your signature thanks talk,0 +air order vs viewing order with the dvd collection i have noticed that the episodes are arranged by original air date but the actual episode numbers are not organized is this an indication that they were aired out of order like the original series was,0 +wp ifd for image baekje power jpg i found another overexaggerated map image baekje power jpg and it s up for deletion here this map shows overexaggerated borders for baekje similar to goguryeo h gif we saw on july please comment or vote for against deletion there thank you,0 +recoome and guldo appear in gt and movie in dbgt goku is watching tv and the news announcer is saying how all these odd occurences are happening with all these people coming from nowhere then we see many villains escaping such as recoome guldo and many others all that happened in the episode called a dangerous union super saga dvd volume in fusion reborn when frieza is telling everyone to attack gohan the first person to fly in front of him pretty fast is recoome user recoome,0 +i don t want to reopen the issue as the issue was never actually solved wikipedia policies are pretty clear on what consititutes a valid source for any topic and children s books and books not about the specific topic but that happen to mention it as an aside based upon no real knowledge of the topic clearly do not count instead of just blind reverting changes i d like someone to try to come up with some sort of justification within wikipedia policies that would make including such weak and nonacademic references as sources whenever a source is in question it should be up to the person who wants them to stay to provide reasons not to just keep them come hell or high water because of some people s bias against editors who aren t signed in these changes were badly needed and seemingly the only reason they were undone was by one editor who thinks he wp owns the article and others who violated wp agf and assumed that an anon user must be up to no good,0 +copyright,0 +i have reverted a recent edit you made to the article user talk you did not provide an edit summary and i could not determine whether the edit was vandalism or a constructive contribution in the future please use edit summaries a link to the edit i have reverted can be found here link if you believe this edit should not have been reverted please contact me,0 +supposibly un block dear chase me ladies i m the calvary you said i had been un block but i just tried to create an account and it told me i couldn t because i was block by someone named auburn pilot i ll make another unblock request,0 +yay i found this article quite informative and helpful i m giving it a gold star,0 +patagonia i see that you are an argentina editor for wikipedia i am an editor and historian from chile how can you send me this note quote this is nonsensical are you saying that the boundaries of patagonia are to be defined by a xixth century map or maybe from the territories supposedly roamed by tehuelches not now of course but k years ago when it would be impossible to talk about tehuelches properly oh come on please bring on reliable sources and serious data to contrast ianvs talk unquote how can you say this also send me notices and messages everywhere my work on patagonia for wikipedia is edited you edit again and threten here we are not trying to take any part of patagonia from argentina what we are trying to do is to clarify the chilean patagonia northern boundaries with historic citations geography and well documented arguments since it is all written and it is all in history books and you will not change it via the web or because you are from argentina and think to be an authority in patagonia matters leave our chilean matters alone we do not discuss about your internal affairs also be brave and answer in this media and all the post you have posted agains me or my articles with solid evidence in what you are trying to say,0 +thanks let me have a peek at the source and see what i can do cheers,0 +article needs clarification the term spy implies covert intelligence gathering but the rest of the information implies that this man was assigned to the embassy of the ussr this suggests that he was an intelligence officer and operated overtly this would be strongly supported by information that he was an accredited diplomat,0 +inflammatory article half of the introduction of this article is dedicated to negative reviews of the film i believe that these should be placed under a controversy section and that the introduction should be a brief synopsis of the film itself,0 +survivor fiji trivia do you have a source for the trivia that you added also your second bullet point was confusing it was unclear what revelation you are referring to,0 +july utc why that is or rather was written in the article hey xasha surely that one statement sums up the stance of the eu on that matter call it as you want we re not interfering let s all live in peace bros,0 +this is the closest thing in to any statement about the irs in that article the copeland ministry declined requests for an interview and pointed to an accounting firm s declaration that all jet travel complies with federal tax laws do you all see the same thing i see the statement that according to irs officials are in strict compliance is nowhere at all in the cited news article all the news article says is that an accounting firm declared that all jet travel complies with federal tax laws this is very different than what is stated as fact in the article an accounting firm is not irs officials,0 +february utc i still do not understand what you want my opinion about talk contribs,0 +ah coffee you may be able to help i remember once when i was a boy at school clandestinely watching a totally shocking film where nuns masturbated while a handsome priest was burn at the stake i doubt eric is very handsome but tonight i am minded of that film can anyone remember its name i think it may have had jeanne moreau in it talk,0 +the acs match lists are the bedrock of all cricket records the fact that some people choose to ignore certain matches is neither here nor the there the records that appear in wisden are based on these lists and score amendments so they are important wilson s book is well regarded by historians of that era incidentally the devil at woodford wells is is my view the only decent serious novel that involves cricket h de selincourt s first book is very good but probably not a serious book,0 +i m just helping the reader of wikipedia not see a medal table all messy and without logical organization and this bronze medal first gold second and silver third or mixed date order don t help nobody i suggest you ignore this crazy consensus,0 +london bus hello what are your thoughts on creating merged london buses routes h and h and london buses routes h and h articles as the routes are so closely related to each other the original article titles could serve as redirects talk,0 +not sure but we have an image of the title page inscribed by eliot at http w catholicvote org discuss index php p and gallup s eliot bibliography a has the hyphen the poem as it stands now was originally published in as a book and so the title could in quotes or italicized i prefer the quotes but i m going to revert the article so it is italicized simply because it is easier,0 +hi cavarrone i hope all is well with you i just thought i d drop a note to say that i m working on restoring to apparently a notable and non delete worthy version of the article on the porn star i don t know why the article in various forms has been deleted so many times but i m working to strengthen it so that it can stand on its own merits there are plenty of lesser porn star articles that are allowed to exist not that its justification but why janet s have been targeted so many times i don t get by the way per notability for a porn actor actress she qualifies in all respects she s been nominated for several awards done significant work in a particular genre milf and is now considered a crossover actress with mainstream credits and accomplishments if you can help out in any way it would be appreciated,0 +nu metal what i reverted was an unexplained removal of most of the articles text im simply not very good at reverting removing text for no reason other than to disrupt wikipedia is vandalism,0 +barnstar of awesome barnstar of awesome you are hereby awarded the barnstar of awesome for your amazing work adding published reliable sources neutral and relevant information clear formatting and beautiful images to the wikipedia adventure article on earth keep up the stellar job you re doing yay you,0 +oh hang on it looks like they were all removed again except for titus andronicus coriolanus play romeo and juliet love s labour s lost much ado about nothing i ll pop an explanation of why the tags don t belong on shakespeare play articles on each of the talk pages tony sidaway,0 +redirect if you feel your voice is not being heard start a discussion at wikipedia redirects for discussion there the community will decide instead of a few editors,0 +there s that broken record again,0 +you talk to me said what happened to your desire to quit wikipedia officially forever not your facebook page etc no one will be having stamina to bear insults by you believe me if this is the modus operandi by you not only me rather every one will be least eager to contribute to wikipedia,0 +well this is supposed to be a factual article similar to an encyclopedia this isn t up for debate if ya want you can post it in the discussion thread but thats usually used for devoloping the article s content and verifying sources not calling it a waste of money or racist,0 +welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are a few good links for newcomers the five pillars of wikipedia how to edit a page help pages tutorial how to write a great article manual of style here are some other hints and tips i would recommend that you get a username you don t have to log in to read or edit articles on wikipedia but creating an account is quick free and non intrusive requires no personal information and there are many benefits of having a username if you edit without a username your ip address is used to identify you instead when using talk pages please sign your name at the end of your messages by typing four tildes this will automatically produce your username or ip address and the date if you have any questions check out wikipedia where to ask a question ask me on or type helpme on this talk page and a user will help you as soon as possible i will answer your questions as far as i can again welcome and i hope you enjoy editing here and being a wikipedian cheers,0 +screw you and your junkie mcchrystal,0 +that s not an explanation that s you saying i think everything s fine now when the guy broke a rr and showed no sign of changing his behaviour so he got block for it apparently that now means he will no longer be disruptive the fact that someone of your obvious intelligence considers that this editor has changed his behaviour is astonishing,0 +sure i ll sign my name on every post i make even though you refure to answer my compaint but now keep in mind that i ll also sign it with a side note as a protest is this better for you mr racist,0 +charlie herridge year old,0 +i think we need to write to debretts david williamson is now dead to ask if they actually had sight of the letters patent otherwise i would find it hard to accept their assertion it would effectively mean that his eldest daughter had a fundamental right to call herself and be referred to in all legal documents as baroness or lady home of berwick but in fact there is not one document notably her testament that i can find that refers to them as such merely as his daughters with the honorific lady because they were daughters of an earl in addition debretts cannot settle these issues did alec douglas home make a claim in the house for that peerage to be added to his stable because that seems to be what they re saying frankly i would treat such a suggestion with disbelief,0 +hi reinhard dietrich i ve never hear of ash schatt it s was always know as el shatt to my knowledge,0 +to huldra i sincerely hope you die,0 +i strongly agree with lneal to keep those national statistics out because of completely varying methods used by different stat agencies in different countries the numbers must come from one organization claiming a b c is synthesis and is a direct violation of wp or however i agree with ahecht that there s no problem with the ilo list it s from the bbc and the ilo list should be in because the numbers are coming from one highly reliable organization if not the most reliable one so we are comparing apples to apples even if there are some flaws in that method that flaw as ahecht suggested should be mentioned in the methodology but blanking out such a highly reliable source because of that is unacceptable and a serious violation of wp npov we can t favor one source over the another,0 +here is the diff well since you always use bare urls and you never bother to include information about the source you ll have to forgive me for thinking that was a excerpt from hoppe himself since you have claimed so often in the past it was ok to use them i see now that the fact that david gordon is writer and editor is in tiny letters on top now its worthwhile investigating your interpretation i just have to remind myself to quadruple check all your bare urls and ask you if that is what you meant to ref i guess talkie talkie,0 +utc please continue to help could you please continue your presence at yoshiaki omura page i took up your suggestion made some edits all of which were citated etc and crum within seconds reverted them this is just censorship august,0 +i love the homer simpson addtion and recent edits that is so funny and he does remind me of homer now that i think of it good job,0 +hey just wanted to say thanks for the dyk help looking at the time stamp looks like i made it with a whole minutes to spare lol i didn t mean to cut it that close but got held up with work today appreciate your time,0 +toc hello welcome to wikipedia thank you for signing up here are some recommended guidelines to facilitate your involvement best of luck have fun electriceye getting started wikipedia tutorial how to edit a page the five pillars of wikipedia manual of style be bold in editing how to write a great article getting your info out there cite your sources neutral point of view point of view verifiability uploading images image use policy getting more wikipedia rules policy library getting help where to ask a question help desk getting along wikiquette civility sign your posts conflict resolution getting technical pages needing attention peer review utilities village pump,0 +november utc and i don t believe this is just a minor set back and i wish you understood the gravity of it all especially thibbs who has seen this behavior overall even in my own talkpage but like i said the torture is not even knowing what the disruption even was i would like a direct answer please thibbs you are the one who pushed for a consensus and claimed it to be necessary even when it was confirmed broadly construed i m willing to work on several articles that appeal to my current schedule and need to have an interest in the subject wp vg and wp anime had allowed me to access mostly online sources so i would like some that can be up to ga class using mostly free online sources i would also like to participate in a wikiproject that definitely gives me enough room to start i don t have the time to look for something completely online but only if someone can give me an answer i m going to say it again it is torture trying to move on in wikipedia and knowing absolutely nothing,0 +december utc you earlier made the statement that you where busy for the next month or so with christmas what other assumption should i make from that,0 +statistics i think there were but i haven t done a statistical analysis this event is able to be precisely timed and is widely acknowledged as factual so i m able to talk about it without coming across as a whiner it s not really in my best interest to discuss any others so i m not all that eager to convince myself they exist that s the path to becoming a bitter conspiracy theorist,0 +when i am writing a page can i use authentic information from govt websites when i did this to the indian revenue service page and the directorate of investigation page it was deleted by a another user,0 +what s the problem with this author he is a famous historian in his country,0 +your article illinois leadership certificate was wp copy pasted from a copyrighted web site which is a copyright violation therefore i can t provide you the content of the article i can do it technically but i would be making copyright violation myself if you want to write the article again you have to do it from the scratch and using your own words talk,0 +what s with undoing those changes,0 +there isn t a criticism section to reflect the changes however i have not found any relevant content to include in the section it seems that most of yelp s so to speak target business owners rather than the shortcomings of yelp itself please let me know what you think thanks,0 +third party reliable sources no exceptions could u explain what that meens sorry for being annoying but i want to get this topic up and i have many sources that i can give and i can find some just tell me what i need please,0 +in australia the liberal party is much more conservative than its labor counterpart john howard is a member of the liberal party and is therefore conservative,0 +just to clarify in a walk over the race is held to have taken place it just so happens that there is only one runner in a match the forfeit being paid means that the match does not take place a bit of a fine point but i hope it s clear,0 +thanks again for all your input,0 +sardis secondary what do you mean not constructive that would be implying that what i was typing was not true i would like that deletion to be undone as everything i posted was true and helpful for anyone visiting that page or indeed the school itself,0 +december please stop if you continue to vandalize wikipedia you will be block from editing bonk if this is a shared ip address and you didn t make any unconstructive edits consider creating an account for yourself so you can avoid further irrelevant warnings,0 +hello hi pamd thanks for the polite talk note on wikipedia policy your contributions to the peter vogel stub,0 +medals holy crap look at that picture how many freakin medals does this guy have i can understand a medal for being first in space but he looks decorated enough to command the army around with the flick of his wrist,0 +requests for comment daniel hello daniel are you fully aware about the importance of wikipedia requests for comment daniel as it is a very serious matter and it may adverssely effect your future contributions on wikipedia fyi i have place the following comments at wikipedia requests for comment daniel outside view by izak thanks i have two comments my first comment is in response to,0 +is this really a neutral article can t we at least agree that this article is not neutral after all another editor has referred to the idea of trans phobia as a mind fuck idea at the very least shouldn t this have a neutrality in dispute tag attached to it,0 +troop deletion i would suggest that you change your vote on the troop article pending changes in the next week i also think that every troop is worthy of a wikipedia article that is what wikipedia is about having factual articles about every possible subject,0 +ways to improve olga alexandrova hi i m mr guye patgallacher thanks for creating olga alexandrova i ve just tagged the page using our page curation tools as having some issues to fix blp with just an external link as a ref the tags can be removed by you or another editor once the issues they mention are addressed if you have questions you can leave a comment on my talk page or for more editing help talk to the volunteers at the teahouse,0 +february utc,0 +shut up nocal whinging about blp s and blocks be serious you don t care about policy or procedure you just want to see an american jew ish pro israel genocide advocate portrayed as a rationalistic hero because israel makes your dick hard you twisted individual,0 +i have no idea how this works can you see my reply apparently writing messages on someone else s talk page is considered vandalism and gets you banned,0 +basic income dispute resolution i don t understand the finding futile or how to proceed to resolve the issue regarding the wikipedia bicycles and wagons reference its my understanding that i am building a bicycle that may be slightly off spec and the editors are ordering the steel melted and shipped to hell instead of allowing the bicycle to be refined into spec i point out also that the basic income is listed as a priority by four wikigroups and so it is a pretty important bicycle also the nature of basic income is at a theoretical philosophy stage and the highest quality references possible are available to verify and preferably succinct and high quality blogs provide the best verifiability imo but regardless of this opinion a section on proposed benefits does not need prestigious academic references if the claim being made is that the ideas and rationale has merely been proposed to keep the bicycles wagons analogy the page was a high quality bicycle and an important bicycle to wikigroups there is a difference of opinion over whether the bicycle meets specs but it is a functional bicycle that is more useful than a pile of melted metal shipped far away,0 +spoilers i was thinking of adding information to this article but so far i ve been avoiding putting spoilers in it what do you guys think should be done about that i mean i know wikipedia policy doesn t forbid it but personally i don t like coming on here to research a vn before reading it and having to be very careful to avoid the spoilers casually placed throughout it,0 +good point the talk pages were changed at the same time as the articles they ve been reverted as for why it was done in order to follow the iso standard that is used across other wikipedia templates,0 +tell these certain editors to stop removing valid material and categories from articles and maybe i ll retain some civility also i m not even sure how edit summaries can be construed as being uncivil are using capital letters to make a strong point now against the rules,0 +page is in rough shape with the recent purge of content the page is not as informative as it once was the biggest problem is the first section which had the proposed benefits of basic income topic removed one editor may appear to hate naturalfinance net since the reason for removal was declaring that site to be a blog also removed were affordability calculations that were researched and verified with working links but also published on a platform that can be declared to be a blog meanwhile the content left in the top section has poor references that do not appear to match the content for instance there is no reference for any conclusive argument or data that basic income creates a disincentive to work and the link to reciprocity is not online and the topic not a major issue both of those topics have good quality blog classifiable sources available in order to be bold i would recommend that eligible source material be broadened to include any quality content including from sources that are not government funded basic income is after all not within any traditional government agenda and so limiting information to sources funded by interests against basic income harms the quality of the article and prejudices suppresses the article from being informative and enlightening barring this broadened content eligibility we all need guidance for what is eligible content and perhaps what makes naturalfinance net ineligible the content there was written in and has been adopted whether independently or without attribution by other authors here is the major recent deletion https en wikipedia org w index php title basic income diff oldid specifically the proposed benefits section should be reproduced some of these can be sourced elsewhere but we need a clear understanding of why it was originally deleted proposed benefits naturalfinance net describes several purported benefits of social dividends and basic income wealth redistribution is the best possible economic development program because the wealthy don t spend as great a portion of their income as the poor do basic income is the most efficient possible form of wealth redistribution because there is no bureaucratic overhead needed to filter recipients or find and punish abusers basic income as an alternative to public retirement pensions such as social security in the us is the only possible prevention of generational theft that will occur if the funding sustainability of future retiree pensions and care is threatened reduced crime as a result of lower levels of desperation balanced power in the labour market as a result of not needing work out of desperation and better competitive position of workers if some people choose not to work better work opportunities as a result of people better able to afford an education or business start up smaller government made possible and attractive by the alternative of increased basic income to offset any program cost reduction viewed this way the cost of every government program is paid for equally by each citizen even if the source of government revenue is progressive income taxation social justice is achieved efficiently and automatically with less requirement on charity and welfare it is easier for volunteer home owners to help the poor and secluded through group homes by being able to rely on their certain income its possible and easier for the disadvantaged to group up and help themselves in the same manner natural finance s definition of social dividends variable basic income tax revenue surplus over social program expenses essentially allows the level of basic income paid to citizens to rise with economic productivity and automation growth the affordability of basic income adjusts automatically to the performance of the economy,0 +lol thank you alec talk,0 +re about my page what i said about dot cottan did that really hit the sun news paper,0 +i concur tyrann terrible and massacres disgusting pov wording article actually needs to be deleted i may afd soon,0 +redirect talk japanese gunboat sumida,0 +you are an american biaes idiot you are an idiot who wants to dserstroy wikipedia it is people like you who are responsible for the currwnt destruction of all that is good in the way wikipedia works i think you should get a life and stop deleting articles you american biased wally,0 +bodged nose matty love allison,0 +decline regardless it has been proven that you are abusing multiple accounts,0 +yes i must second this scottsdale is not at all expensive compared to many many u s locales please understand resort places are never as wealthy as the places from which their residents came the average income in scottsdale is k average house is k that won t get you into a good suburb in most major urban areas scottsdale really resembles a little las vegas sans casinos i e showy surface fanciness this is a familiarly cheesy booster type wiki article,0 +innocent or not vote here i say probably guilty but i don t see the evidence that it s beyond reasonable doubt note the point of this poll is not to set wikipedia up as a court the idea is to vote based on what you read in the article so we can all check if pov is er npov,0 +warning i ve added the template to the article alert logic suggesting that it be deleted according to the proposed deletion process all contributions are appreciated but i don t believe it satisfies wikipedia s criteria for inclusion and i ve explained why in the deletion notice see also wikipedia what wikipedia is not and wikipedia notability please either work to improve the article if the topic is worthy of inclusion in wikipedia or if you disagree discuss the issues raised at talk alert logic if you remove the template the article will not be deleted but note that it may still be sent to wikipedia articles for deletion where it may be deleted if consensus to delete is reached talk,0 +new vote for pro tanakh hi joaquin see wikipedia categories for deletion speedy for another vote to rename the following thank you category hebrew bible tanakh category tanakh category hebrew bible tanakh events category tanakh events category hebrew bible tanakh people category tanakh people category hebrew bible tanakh places category tanakh places category hebrew bible tanakh prophets category tanakh prophets category hebrew bible tanakh related stubs category tanakh stubs category jew ish texts ketuvim category ketuvim category jew ish texts nevi im category nevi im,0 +i think access denied is a perfectly valid username and you removed half the communist terrorism article i don t think it was vandalism but it also should not have been done without discussion first good intent but the wrong way of approaching it in my opinion ks stm if you reply here please leave me a talkback message on my talk page,0 +he started out british ended up australian by nationality but remaining culturally british there is no way that roebuck would have ever used the recently invented american term lgbt to describe himself nor should we,0 +he responded to two editors questions concerns he did not raise the issue sua sponte lay off the personal comments and stick to the issues,0 +i saw the speedy had been removed i tagged it as unreviewed initially due to the poor quality of the article which i thought had been marked as reviewed hastily before seeing that you had added a csd which was removed sorry for the above i had no idea it was sent and i only unreviewed it as it needed something doing i just reported the remover as a likely sock thanks,0 +redirect talk regulation socio legal concept,0 +mexico a regional power i don t agree that mexico is a regional power at least of latin america it could be a regional power of central america but nowadays it is considered to be part of north america in the other areas of the world the article is divided between east west north south not between ethnic or languagegroups if this was the case in europe it could be considered latin germanic slave and even anglo saxon groups if we consider this in the americas case it should be south america and not latin america second case mexico has a great gdp but in overal terms gdp is not the only factor we should consider military power projection and foreign policy mexico has a ridiculous military and projection power and politically is a subalternous nation to the usa argentina venezuela or colombia have greater military and power projection capabilities historically they have been much more interventionous and agressive toward other nations than mexico and today we can see the same specially in venezuela case may personally i agree with you but you need sources to say it this encyclopedia is not a place for orignal research furthemore editors have produced sources saying mexico is a regional power of latin america if we change it to south america there would be no place in wich to put mexico besides brazil s influence is not restricted to south america it would not make sense to say it is restricted since the sources don t agree,0 +note that in one case the conversion was incorrect before the vandalism and had been so for a while since ft s actually equals m i d guess that the was either miscopied when originally put there else subject to earlier vandalism but these numbers should also set off some red flags for their precision so a reliable source for that number would be especially useful,0 +mala zimetbaum hi humus how notable is this person mala zimetbaum and does she deserve an article of her own there were millions of holocaust so should they all get their own articles now doesn t that trivialize the event seems that if someone gets to write a book or gets mentioned somewhere they then automatically become notable what do you think,0 +wow hunting me down maybe look i clearly too the time to follow wikipedia rules and thank you for make it more difficult now i have to go completely out of my way to prove my point even further the images are of fair use and all are accurate if you want to help then by all means help not leave me messages make it seem like i just post things to post things thank you mcelite,0 +um dude plagiarism means you violated someone s copyright english is your friend,0 +nrhp potential noticed you are doing up the nrhp articles on montana courthouses for your benefit i have uploaded file lewis and clark county courthouse jpg if interested part of one of the helena historic districts i think the downtown one talk,0 +quote by chen in intro i did not see anything in the quote that would make me think chen is referring to anything other than the well known fact that signal flow graphs can be solved by using mason s gain formula,0 +ridiculous that the fed case against zimmerman is still open still more that doj civil rights div just got a warrant to search gz s computer even though they admit they don t expect to find anything isn t a warrant supposed to require probable cause,0 +it s you and people like you who are vandalizing how dare you write nonsense about his alleged criminal activities based on what facts milosevic s inditements cos only milosevic and kostunica has caled him a criminal you better get that part of the article out,0 +best known social networking websites what are the best known social networking websites beside myspace,0 +page name a user has reverted an edit that was going to include a uav in the list the reason stated was that a uav isn t a specific aircraft and the army isn t part of the raaf there are quite a few aircraft in the list that are not part of the raaf moreover all future helicopter purchases are most likely going to be either army or ran therefore we either remove all ran and army aircraft or we move the page to list of aircraft of the adf if you re up to it we can vote to move the page as below and i will do any changes if any next week mon th march support it will make the list more comprehensive and keep the current intent,0 +shutup u ain t nobody u ugly gay faggot,0 +utc she is by definition a terrorist so yes on that one june,0 +re miley cyrus death ah we meet again i ve added a rr report for this user as it s been reverts so far it s not just him her though and not just here i can t find anything about this being true though,0 +that works too,0 +re user talk i recall blocking that user but due to the length of time is has been since i block the page and the fact that the page is no longer existent i do not recall my reason at this time if you could somehow tell me what was on that page as honest as possible maybe i can remember my reason for blocking that page thanks,0 +changing the title of the article as we all know the name of age of conan hyborian adventures has been changed to age of conan unchained so i think the title of the article about the game of the articles should be changed i would like to invite all the people who have edited this article to give their opinions on this matter please,0 +source suggested i d suggest that someone who is working on this article should read and probably cite some material from christopher hayes moveon at ten the nation august p online version dated july a rather rounded discussion of moveon from a left liberal point of view including both criticism and praise in particular has some criticism from people who are to moveon s left something that is missing from the article as it stands among others it quotes john stauber to the effect that moveon has become primarily a money raising and marketing arm of the pelosi wing of the democratic party it also gives what seems like a pretty balanced account of the group s origins and of both what has remained constant about the organization and what has changed talk,0 +i don t see what you mean all i can find on that page are a few comments saying they disagree but no reasons or arguments so that doesn t mean anything,0 +then maybe there should be two veganism articles and a disambiguation page one would cover veganism the philosophy of avoidance of all animal products food or otherwise and the other would cover the diet of strict vegetarians who still buy leather wool and animal byproducts the confusion is including all the dietary definition confusion with the philosophy stance,0 +the same goes for ibn,0 +in fact upon review of your contribution i made changes to bring it in line with the manual of style talk greetings welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia tutorial how to edit a page how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your messages on discussion pages using four tildes this will automatically insert your username and the date if you need help check out wikipedia questions ask me on or ask your question on this page and then place helpme before the question again welcome talk,0 +no we don t the name ivory coast contains only english alphabet letters and it would sort just fine in almost all cases where c te d ivoire remains missorted often appearing after croatia after cyprus after czech republic you can see this by looking at category communications by country and seeing where the subcategory category communications in c te d ivoire is missorted even though the sorting of the article of the same name has been fixed can you see the difference in order or you can see it by looking at category nations at the summer olympics and seeing where the article c te d ivoire at the summer olympics is missorted there are hundreds of those problems out there why don t you make yourself useful and go fix some of them,0 +category former yahoo employees category former yahoo employees which you created has been nominated for possible deletion merging or renaming if you would like to participate in the discussion you are invited to add your comments at the category s entry on the categories for discussion page thank you,0 +rbi my bum lol im not stoping,0 +ah i m sorry then who is the consensus declarer,0 +redirect talk namaqua rain frog,0 +blp clarification on your deletion review vote on jim shapiro you mentioned that you thought wp blp be clarified i m curious as to what you mean by that i agree with your vote on this deleted article how could the blp be better clarified thanks,0 +utc an interesting comment convict leasing isn t the same as slavery where there s ownership and title however i would agree that we could amend the lead to read effectively abolished slavery true there is a difference with chattel slavery and forced prison slave labour one ended w the th amendment and the other was legalised under the th amendment not the corwin amendment of in other words what would be the legal justification for the prison labour in california oregon and other states that practise this form of human rights abuse without the involuntary servitude clause wwhat do you think they were referring to futhermore i don t see a problem including this in the article so long as it is a small reference and not the focus of the article as to scholarship there is reputable work on this and there is no doubt that starting in the prison chain gangs were leased to private business plantations mines etc for being picked up for the most frivilous charges yes they were mostly black the mortality rate was higher than chattel slavery because they were leased and not owned virtual life sentences on absurd charges directed against black people w forced labour is slavery though not chattel this was systematic and went on until ww though today s version is slightly different now some of you asked for refrences and rightly so slavery by another name by douglas blackmon who is a respected writer journalist and received the pulitzer prize for this book which is on this very topic that s the point this is far from original research and there are other scholars who ve written about it now i haven t edited the article nor will i unless there is some agreement w others editors here but i d like to know the issue as it is now how do other editors feel one other thing american historians do not always agree on things and i have noticed at least one conspicious neo confederate argument in the article unsourced though on a different part of the article so yes it s important to look at historians but on some topics there s a whole lot of rubbish particularly w slavery issues so a consensus by historians may never happen and sadly ideological agendas do exist and i understand what you blokes mean about good sources i d say that keeping this article from vandalism is far more important july,0 +the use of the word goal was merely an approximation i hoped would help the explanation it s not currently used in the article to explain this a different way if you construct a scale with anything but a geometric sequence e g an arithmetic sequence the steps would not be perceived to be the same if the perception of intervals was arithmetic instead of geometric our equal tempered scales would be arithmetic sequences instead,0 +false accusation of off wiki harassment you ve crossed a line by making an absolutely baseless unfounded and patently false accusation i expect a retraction and demand an apology i have never called any wiki editor the editor who claimed to have received harassing telephone calls should take the matter up with appropriate law enforcement authorities i m sure they will deal with them appropriately but they weren t from me,0 +since i m new to this i am a bit unsure as to how to edit things so i simply will leave a message and info this way i am a school counselor and psychologist in california first of all while it is true indeed that california only requires school counselors to have a bachelor s degree as far as degrees go we are subject to practicum hours in a graduate program and must meet criteria in order to obtain the required pupil personnel services credential in school counseling so that we can work in the schools,0 +hey sorry to bug you again but i have a question you said that this image would not be usable since the copyright holder was unknown i found it listed at a separate sight listed as photographer joseph cultice would it be acceptable to use the picture from the no doubt site and credit it as such especially since this one isn t being sold,0 +centrifugal force acroterion recently you took an interest in the centrifugal force page i would be most grateful if you could look at the recent deletion of my edit on the main page of that article if you check it out you will find that wolfkeeper has a long record of deleting things which i put on the main article when i put that edit on yesterday i was fully expecting wolfkeeper to delete it but i was very careful to make sure that the edit contained only basic textbook material and that there could be no possible grounds to justify him deleting it you will recall that my block last week was because i was accused of incivility by having accused wolfkeeper of wikistalking for having deleted stuff that had put on the main page interestingly wolfkeeper has attempted to justify his actions this time his first reason was pathetic it was something to do with the section being out of place the second reason merely exposes wolfkeeper s total lack of knowledge about the topic in question the marble experiences a side on coriolis force as it rolls out to the edge of the turntable interestingly physusie who i presume was attempting to back up wolfkeeper has then come in and stated this very fact as if it were me that didn t know it if you are genuinely interested in justice on wikipedia and proving that there is no corruption i would be most grateful if you could monitor the ensuing debate very carefully i know that you say that you are not trained in this topic but it is all very basic stuff and i am sure that you will be more than capable of seeing exacly what is going on,0 +rewired i see you have updated the security system nice is it a mcafee just dropped by to relate a little story i uncovered as i wandered here and there there once was a little boy named johnny who had a wonderful dog named laddie johnny was prone to emotional outbursts and his mother was concerned by his overreactions one day while johnny was at school laddie was killed in an unfortunate accident the mother took laddie s body and put it in the backyard she was very worried how johnny would react to the news of his dog s death when johnny returned from school his mother said to him i m really sorry johnny but laddie died in an accident johnny responded okay and went upstairs to change his clothers the mother was quite surprised at the calm reaction after johnny put on his play clothes he went out to the backyard all of a sudden the mother heard johnny screaming she rushed out to the backyard and saw johnny prostrate over the dog s body and wailing the mother said but johnny i told you laddie died in between sobs johnny sputtered i thought you said daddy talk,0 +i wrote this page and am happy for it to be merged deleted in the interests of excluding redundant information cheers,0 +im having problems with vandalisim,0 +a barnstar for you the real life barnstar hey buddy thanks for what you do here but what do you know about chillout music and this artist this guy is world famous in chillout music and deserves a page on wiki you have to give me a reason of why you want this page to be deleted this guy has tracks on buddha bar series and has more than releases you want to delete this page go ahead but with people like you wikipedia will never expand,0 +is that general is that general order illustation of a ufo still around i ve seen it in two places one in a usmc boot manual the other online i was told that this was intended as a example of the usmc protocol to handle unforseen situations thus the ufo pixes,0 +not to mention god the supernatural and what happened before the big bang if it can t be measured science doesn t try to explain it,0 +it was about content there is a lot of content in those photos and i give a heads up about the commercial nature of the site for those who might feel that they will not be able to resist the offer for sale of the images those images have a lot of content in them and you are being a hair splitter by ripping them out just because copies of them are for sale to do shun all art museums that have a shop atteached to them get a life i am putting that link back,0 +it does belong but not in this form let the debate first decide whether or not it s good in this shape,0 +user sakimonk although,0 +the number is listed as reported this means that there is a dispute over the accuracy of that number you still don t own any articles and neither do your sockpuppets and you are still a classic wikibully,0 +crystal ball i ve removed the deletion ntoice becaue the article is not crystal balling it doesn t try to predict anything but talks about a real proposition that is being discussed,0 +it was added to the article about a year ago and has stayed there ever since due to the information that it isn t true i ve removed that section talk,0 +it seems to me that this posited range block is not going to work if we look at users with non blank user pages beginning with there are only one is already a suspected sock of pw and several are manifestly not pw clones so can you just please block the ips westfieldins which i brought to your attention quite a few edits ago and put a stop to the incessant quacking i did have a look at range blocking i can see why you view it with some circumspection,0 +page is radical to the point of deletion this article needs major cleanup it is hard to read and hard to understand it is not neutral at all we need cleanup,0 +guess why i do not bother to take a nickname here wikipedia is degenerating and succumbing to politically correct partisanism at an alarming pace,0 +rename article this article should be called ukraine crisis the crimea is part of ukraine and the full scope of the issue is ukraine the crimea is just one aspect of the full crisis thanks,0 +rv edits by zordanlighter and whistlingwoods socks of user vvarkey,0 +where here or here where is it you are not linking me to it and you have absolutely no basis for suspecting a coi get a hold of yourself,0 +i m not an admin so i won t be the one making a decision about your unblock request but it appears that what you state in your unblock request isn t true here s the chronology you recieve the warning about your improper use of reviewing templates on afc submissions you blank the warning you then continue to improperly template the afc submissions you were then block therefore it appears that you did not cease your involvement with afc following your warning,0 +i have changed lou s block duration to indefinite due to his total lack of productive edits he s done nothing but disrupt this article aco,0 +using your knowledge as a reference noel you are an expert please convince whig history fans or the lazy minds about how bonnie prince charlie did not want to dissolve the union that the united kingdom began with the stuarts as opposed to the hanoverians tell them how the whigs rewrote history to blame everything on the stuarts whom are credited as ultimate failures with no positive contributions to the foundations of great britain in their stewart and tudor blood the sovereign s will is the realm or else it is not a kingdom the british might as well be living in a republic at least if the parliamentarians had their way even the hanoverian heirs recognise that the stuarts founded the uk please debate that here thanks,0 +dear yono you don t need to apologize for anything and you can edit any number of times you like i just want to know if there are any serious problems with that article such as copyright violation if there are none never mind then goodnight and happy editing whenever you wake up aug utc,0 +after ec so according to the source she had english speaking interrogators in the first interrogation and kept only for a short time without an official interpreter in the second interrogation where she then became a suspect what sources are denying this account,0 +that is somewhat difficult since nietzsche didn t make any such summary and the question of which were his main concepts is one of the lasting controversies pmanderson,0 +you can edit your own article under any account sock puppetry is deceptively using multiple accounts to influence content have you seen instances of that if you ve got a problem with the content of this article address the content take your attempts to malign the subject somewhere else,0 +redirect talk filibuster in the united states senate,0 +thank you but please tell some guy that my message to him was not a personal attack as i noted above i would do this myself but i can only post on my own talk page given i m block please also explain why you believe i lied about anything,0 +wow that s amazing i log on for the first time in months edit an article and a predatory editor has me block indefinitely without an opportunity to respond don t even get a chance to look at w hate ver evidence may have been fielded against me why have i been associated with the various other ip addresses really what the heck,0 +rao jazib saeed rao jazib saeed is a business graduate from numl islamabad native of multan pakistan,0 +my god how childish are you you mean the other source encyclopedia brittanica which also states i quote mentally the negro is inferior to the white the arrest or even deterioration of mental development after adolescence is no doubt very largely due to the fact that after puberty sex matters take the first place in the negro s life and thoughts yeah really reliable instead of contacting the other sites to tell them their right why don t you learn some history like when the union was formed since you don t even know that and then if your brain can cope try learning the differance between english and british though i must say i m not surprised you don t know any of this being a foreigner,0 +quick question for you joy how do i insert and or format an article to have use a table of contents thanks,0 +way i see it people who say the sherman is a very good tank are seriously overestimating it i mean come on it was nicknamed ronson for a reason you know any tank that has to maneuvre around at close range to the sides and rear of an opposing tank to score a kill is definitely not good the only notable good sherman at the end of the war is the vc firefly but because us ordinance doubted the pounder could be fitted onto the tank it was manufactured in limited quantities the only notable features of the sherman was that it was produced in large quantities had a mechanical reliability that beat the t and came with better secondary equipment such as fm radio and an elevation gyro stabiliser not to mention the extremely sad stories behind it once a sherman maneuvered around a building to hide from a tiger tank the tiger shot at the building and the shell went right through and penetrated the sherman s turret there are also tales of german tanks who take out two aligned shermans in one shot also do you know why you see all these wartime photos of crewmen who have shermans with spare road wheels and tracks welded onto the hull those are efforts to help augment the armour of the sherman,0 +street fighter x tekken review character list cannot be removed in your review for street fighter x tekken you said that the character list has to be removed this cannot be done because it would be inconsistant with all the other fighting game articles we have here the majority of which have character lists,0 +south park butters butters is a main character according to these links thank you read paragraphs,0 +brother of mike jones rapper i remember reading something that said mike jones in related to howard jones as siblings and that howard appears as a guest on one of his albums can anyone verify this,0 +aftermath korean news coverage legit or not this is currently discussed by various online media and online forums it s hard to say if it s legit or just another prank please see http w yonhapnews co kr bulletin akr html http w koreabang com stories korea responds to asiana airlines crash html also the the reader s english comments at the end of the article,0 +cathleen falsani there s a bit overuse of the phrase to critical acclaim but otherwise it doesn t seem too advertisy to me and it s all right even preferred to name an author s awards can you be a bit more specific about what you think doesn t belong in the text talk,0 +nigger faggot,0 +sodom yat thank you for trying to be helpful in resolving this i have followed your advice talk,0 +please do not add hoaxes to wikipedia hoaxes are caught and marked for deletion shortly after they are created if you are interested in how accurate wikipedia is a more constructive test method is to try to find inaccurate statements that are already in wikipedia and then to correct them if possible please don t disrupt wikipedia in an attempt to test our ability to detect and remove such material feel free to take a look at the five pillars of wikipedia policy to learn more about this project and how you can make a positive impact thank you what i do what i say,0 +oh so you find it funny that you re friends with a sicko who grooms young boys on wikipedia why do you protect those who use wikipedia as a tool to fufill sick pedophile urges do you like to touch up young boys too it wouldn t suprise me,0 +traditional easter games i didn t realise you d created that article until i saw it on the dyk page today you sneaky devil that was a productive and fun collobaration all round thanks and congratulations,0 +your one of the person s who deleted my page i m mad at you you dissapoint me everyone is deleting and i m gonna write a note to the wikipedia company o k do you get that strait,0 +thanks i think we are really both saying about the same thing perhaps with me putting a bit much more emphasis on individual ingredients than you i certainly agree that processed food should be avoided whenever possible,0 +can i suggest something like the scientific consensus is that anthropogenic global warming is occurring however there is continual scientific study t better undersand the matter political and public debate continues i think it would be helpful if you were all a little more accomodating and africangenesis usually if you provide good references no one argues,0 +i concur but the nagging thing for me right now is that some anon ip and registered users probably the same person but who is to know right keeps posting rubbish on my talk page as well as stalking trolling my edits bugs all of a sudden it reminds me of that horsegnat guy we put away a few years back can we really say that it is a case closed then,0 +ok obi wan you re starting to make me suspicious what do you always ask exactly what i think are the right questions own up either way you did not answer my question directly and i also suspect you know it does this mean that wpo is not useful to you but you did answer it indirectly so you get an even more direct question in return why make it obvious that you know a lot about wikipedia without telling us that you find it useful when you are a very direct person otherwise for one you are calling them out on the most inconvenient of all questions for them if you don t mind i m going to take this straight to the source wpo peeps what the dealio i ve asked people on wp to put up or shut up i ve asked the wmf to walk their talk in fact i ve staked my rep several times now and i m not done yet now i m asking you why don t you stop whining for once and show people you can actually do better on wiki or off obi wan certainly isn t the first to question your self righteous assertions on how to build an online encyclopedia better than wikipedia i for one have been wondering for a while now so let s see what you can do besides making snarky personal comments here s a pot and here s a kettle need i mention what color they are onwards with obi wan s points i don t believe in nasty people deciding anyone is bad nasty etc has only one purpose one can feel better about being bad nasty etc to people they ve so judged i don t think this is particularly productive in fact imo it is unbelievably destructive once someone decides or more often others have convinced them that they themselves are bad people we could talk about this more in another thread but we ve got to get back on topic here so you know that the wikipediocrats are smart you have spent more time there than you re willing to admit directly i immediately wonder if it s just in reading or in writing too they are indeed among the smartest in the wp community reasoning wise that i ve met so far but emotionally less than average how do you think many of these smart m er f ers ended up getting indef block or banned a lot of them fell from grace not because they weren t an asset to the community but because they didn t seem to know when or they were completely unwilling to stop fighting for what they saw as justice that s one part of the answer many of them are banned or block whether rightly so or not from editing on wikipedia also it s normal for someone who has been banished to tell themselves they wish harm on their homeland while still keeping a great emotional investment in it you ll hear the same people spout their disdain for wikipedia almost in the same breath as suggestion to improve it frankly we could speculate about these people s motives and methods til the sun goes down let s be more practical about what is best for wikipedia here what we as a wikipedia community can t do is ignore them away and even if we could we re doing a piss poor job of it because i almost always hear about what s been said on wikipediocracy from a wikipedian before i go to the actual site ultimately i go back to my old standard i don t give a shit where these people come from or what their motives are all s i know is that they are saying something interesting and i appreciate the fact that i don t have to gloss over a bunch of posts that are trying to get them to shut up as i read it obi wan no use playing coy you know exactly what i m talking about d,0 +i was not block for calling someone a nazi i was block for calling a loud mouth insensitive twit ping pong when he interjected in a situation that was not his business he did not like being told to mind his own business granted i did it in a questionable manner but i had to get his attention,0 +karluk yagbu state can somebody write about karluk yagbu state http e history kz en contents view,0 +and no the workgroup was never created not enough people responded one way or another maybe once we can get shojo beat and shonen jump copyedited and hopefully to ga it will spur more interest,0 +i m making some substantial changes and additions to this entry also improving the citations i m working on this as part of the unc edit a thon april,0 +that today was a typo i noticed and was going to fix it should have read furthermore looking at the blocking policy i see that it is enough to say i won t do it again today i really want more to get that mediation overwith however i must also say that i expect civility in return from him which is something i have never gotten thus implying i won t do it again ever since apparetly it can be an insult to refer to dick yon as dick then i will just call him dick yon from now on which should not confuse him into thinking he is being insulted i even expressly said i was not at first calling him a dick what more could i have done,0 +in both headers eh learn to read talk,0 +corrected thee are countless ahs all over china d,0 +if on the other hand you made the edit that was removed in june then if you follow the link provided in the message you will i m sure see that what was removed was clearly vandalism and i would ask you to refrain from doing it again,0 +carlo i counted the jan match at chicago tournament of champions played indoors as part of the season as it was played before the jan masters which is regared as part of the season you have extra matches the oregon challenge of and south korean challenge of otherwise my list matches yours you will have noticed that some people wish to erase borg s performances from the record as fas as l m concerned inspecial tournament he played well and had no bad losses so he is a legit player tennus expert is acting like a pain in the neck again date ranges are preferable and self explanatory the man is so petty and full of himself its beyond a joke you should change the date to finish of the event like the french version if you can t do the date range laver often played more than events in a week like his wins at bretton woods and canadian open in the week of aug jeffreyneave april,0 +or list of deputy lieutenants,0 +independent music go for it it also might be worth going for a cotw on that article on other matters i m currently working on pixies discography do you think i should include all the promotional singles,0 +what country i wish the writer would point out what country he is refering to whith his mention of sherrif depts etc why not preface such comments with in america,0 +in fact would anyone object to my changing of the apostrophe s status on these pages id est making it go away,0 +she has plenty of real world references thank you i am an editor and can create or change pages you are being disruptive,0 +wester civ hello i had gotten an e mail from one of western civ s fans asking why they don t have a wikipedia page i remembered that there had been one at one point in time so i traced it back to you i am not an active wiki user so i do hope you forgive my lack of knowledge on how this works i have read the reason for deletion and i have also read all of the criteria that must be met by a band to be considered notable if i read the deletion log correctly i see that the reason for deletion was listed as expired prod borderline db band that said i am including as references in this message links to their three published albums a list of press garnered and links to some of their fan pages online if you google the words western civ the band is the second and third return on google i do believe that these elements are all examples of notability http en wikipedia org wiki wikipedia notability music as wikipedia defines it for music since the page western civ http en wikipedia org wiki western civ is simply being used to redirect people to the western culture article at the moment i do hope you will reestablish this page to it s original form as a wiki for the band western civ references link to western civ s published works w cdbaby com all westernciv link to western civ s media press kit which includes of over published reviews and articles about western civ as well as a partial list of fm stations that are playing western civ s music w sonicbids com westernciv links to western civ s websites w myspace com westernciv w twitter com westernciv w westerncivrock com please let me know where to go from here i ll be looking forward to speaking with you further thank you manager western civ,0 +penis envy from wikipedia the free encyclopedia jump to navigation search for the crass album see penis envy album for the virgin documentary see envy penis envy in freudian psychoanalysis refers to the theorized reaction of a girl during her psycho sex development to the realization that she does not have a penis freud considered this realization a defining moment in the development of gender and sex identity for women according to freud the parallel reaction in boys to the realization that girls do not have a penis is castration anxiety in contemporary culture the term is sometimes used symbolically or metaphorically to refer to the idea that women wish they had a penis or to refer to anxieties between men about the size of their genitals contents hide freud s theory o criticisms of freud s theory within psychoanalytic circles feminist criticisms male penis envy see also references external links edit freud s theory sigmund freud introduced the concept of a little girl s interest in and envy of the penis in his article on the sex theories of children but did not fully develop the idea until substantially later in when his work on narcissism was published it was not mentioned in the first edition of freud s earlier three contributions to the theory of sex the term came to significance as freud gradually refined his views of female sex ity coming to describe a mental process he believed occurred in girls as they passed through the electra complex from the phallic stage to the latency stage see psycho sex development in freud s psycho sex development theory the phallic stage approximately between the ages of and is the first period of development in which the libidinal focus is primarily on the genital area prior to this stage the libido broadly defined by freud as the primary motivating energy force within the mind focuses on other physiological areas for instance in the oral stage in the first to months of life libidinal needs concentrate on the desire to eat sleep suck and bite the theory suggests that the penis becomes the organ of principal interest to both sexes in the phallic stage this becomes the catalyst for a series of pivotal events in psycho sex development these events known as the oedipus complex for boys and the electra complex for girls result in significantly different outcomes for each gender because of differences in anatomy for girls soon after the libidinal shift to the penis the child develops her first sex impulses towards her mother the girl realizes that she is not physically equipped to have a hetero sex relationship with her mother since she does not have a penis she desires a penis and the power that it represents this is described as penis envy she sees the solution as obtaining her father s penis she develops a sex desire for her father the girl blames her mother fuckeror her apparent castration what she sees as punishment by the mother fuckeror being attracted to the father assisting a shift in the focus of her sex impulses from her mother to her father sex desire for her father leads to the desire to replace and eliminate her mother the girl identifies with her mother so that she might learn to mimic her and thus replace her the child anticipates that both aforementioned desires will incur punishment by the principle of lex talionis the girl employs the defence mechanism of displacement to shift the object of her sex desires from her father to men in general the offshoot of these events often cited in the media and colloquially is that a girl really wants to become her mother so that she can control her father a similar process occurs in boys of the same age as they pass through the phallic stage of development the key differences being that the focus of sex impulses need not switch from mother to father and that the fear of castration castration anxiety remains the boy desires his mother and identifies with his father whom he sees as having the object of his sex impulses furthermore the boy s father being the powerful aggressor of the family unit is sufficiently menacing that the boy employs the defense mechanism of displacement to shift the object of his sex desires from his mother to women in general freud thought this series of events occurred prior to the development of a wider sense of sex identity and was required for an individual to continue to enter into his or her gen,0 +hrafn pm where did hrafn go there was a proper method to retire from wp but he did not use it instead it sounded like he was depressed and wanted an admin to do it for him it would be nice to have him back and as his friendly nemesis i have asked him to come back perhaps your should do the same,0 +a weak analogy a student in florida will have facebook friends from many places not only his home town but fellow followers of facebook interest group or games we have no reason to suppose eusebius included anybody who wasn t christian nor do i treat this as fiction what i said was that eusebius may understand those numbers as poorly as his calculation that the nativity took place under herod in bc he asserts both and they are incompatible but if it were fiction one of the points of crime and punishment is the populousness of saint petersburg many russian novels on the other hand make a point of the restricted social circle of a country village if we had no other evidence we could guess at the size of saint petersburg and the sixe of an average village and especially the nobles in a village and not be faacros of hundreds and thousands off pmanderson,0 +i ll alos be looking in to see how this is going as grc is a big deal around these parts seek his grace,0 +the ezekiel passage is quoted in the moloch article in the encyclop didia biblica as the strongest evidence for the theory that the offerings were considered to be to yahweh along with jeremiah both passages are also cited in the moloch aritlce in the catholic encyclopedia which reponds rather weakly in my opinion but this position is to say the least improbable the texts appealed to may well be understood otherwise and the prophets expressly treat the cult of moloch as foreign and as an apostasy from the worship of the true god it is cited in encyclop dia britannica moloch with the comment note also the attitude of ezekiel in xx seq references which cannot be explained away the article the international standard bible encyclopedia molech moloch treats it rather strangely remarking that this prophet regarded the practice as among the statutes that were not good and ordinances wherein they should not live ezekiel given by god to his people by way of deception and judicial punishment as some hold is highly improbable and inconsistent with the whole prophetic attitude toward it it is not clear what this means quoting parts of the passage and paraphasing part of it and then adding as some hold this article shows itself elsewhere quite aware of the theory that infants were sacrificed to yahweh it also brings in bogus moloch worship in connection to carthage not a good article in any case three different rabbinical interpretations of the ezekiel passage appear at the interpretation by rashi accords with the most obvious meaning disliked by trs but the writer finds this inconvincing as not in accord with his own theology and prefers another interpretation that would not be a reason to suppress rashi s interpretation and the writer does not do so there is a discussion at which covers in part john day s treatment favorably but also discusses the ezekiel passage in respect to the problem of the people s belief and apparently ezekiel s beliefs that commands which ezekiel saw as bad came from yahweh note john day believes moloch is not yahweh but that still does not answer the problems with that passage in short the passage has been long used in support of the theory that the offerings of children lmlk was understood as commanded by yahweh it has long been in general a problem pasage but those who feel that it is being misinterpreted do not suppress it it is dishonest to present a theory that has been held and still is held and suppress its strongest supporting argument on could respond by citing the catholic encyclopedia response which seems to me weak but add it with a citation if you will but do not suppress the inclusion is not editorializing by me i am presenting various theories that are held along with evidence for and against the ezekiel passage is cited as part of a common argument that children were sacrificed to yahweh and normally used as support for that argument indeed one of the main sources for that argument my own pov as much as i have one is that the evidence is confused there are good arguments as well as weaknesses in various positions and that one should present all sides though of course full discussion would be a book length article your particular pov on a biblical passages is not grounds to suppress it when cited with a different interpretation especially when it is normally cited in the moloch context by sources usually considered reputable sometimes very much supporting the pov that the sacrifices were to yahweh even when when that interpretation is rejected the ezekiel passage is still cited in discussion i don t believe that anything i have included in this article including the ezekiel passage is non standard for discussion of moloch i have tried to present the vanilla arguments and give enough information to allow them to be understood one obviously cannot agree with all sides moloch cannot easily be at once yahweh an entirely different god the name of a kind of sacrifice passing through fire cannot be at the same time a human sacrifice or an initiation ceremony but people do hold different views and the task of the article is to explain these views and give their history it should be obvious now that your original feeling that this material was novel was incorrect please let the normal statements used as arguments stand regardless of the positions i am restoring the passage with some reasonable weasel words to make it clearer that this is the expound,0 +thank you for experimenting with wikipedia your test worked and it has been reverted or removed please use the sandbox for any other tests you may want to do take a look at the welcome page to learn more about contributing to our encyclopedia welcome hello and welcome to wikipedia thank you for your contributions i hope you like the place and decide to stay here are some pages that you might find helpful the five pillars of wikipedia tutorial how to edit a page how to write a great article manual of style i hope you enjoy editing here and being a wikipedian please sign your messages on discussion pages using four tildes this will automatically insert your username and the date if you need help check out wikipedia questions ask me on or ask your question on this page and then place helpme before the question again welcome,0 +any complaints with that as the new wording,0 +i also disagree with the merge as strength athlete clearly refers to strong sportspeople in general rather than anything to do with competitions or feats based on strength alone i m removing the merge tags now edits,0 +if one were to present arguments against it the fact that it s taken shamelessly out of context is the stronger objection i can t imagine that serious muslim exegetes would grasp at this ephemeral straw i see ahmed deedat zakir naik etc they re more prominent than rashid but have no scholarly standing anything better if there s a serious history of this we should include it but we wouldn t use a statement from a television evangelist even a very prominent one to say christians argue believe,0 +i just wanted to say thank you for your nice images of yucat n where i lived years ago but unfortunatly have few good photos cheers,0 +i decided i d rather edit elsewhere since he seems to be so happy with a vacuous little fluff piece like this is clearly a personal attack unfocussed entire attitude to this article is negative quite why i ve offended him i m unsure if this article is so unimportant to her she should leave it alone as to my adding content i ve been attacked before for autobiography now you re attacking me for non autobiography make up your minds as to the science the papers are most important,0 +lists of television series episodes,0 +agreed spui i also feel that much of the list should be removed as it is unnecessarily long and who really reads it tomf apr utc,0 +but that s what the sandbox is for,0 +okay so are we going to make another article about her disasterious life so far or do a better job at talking about in the article what s going on here,0 +may please stop if you continue to vandalize pages as you did to bob barker you will be block from editing wikipedia ofg,0 +season episode matched season episode colors of raven season episode the left leg season episode books season episode,0 +ok i have to work today but i ll take a look later see what i can do,0 +someone to write about moral relativism on criticism new age article i would like some one with english as a first language and understanding of the subject to write a paragraph on criticism saying about its moral relativism is that possible this is another critics it has been received thanks you know i don t master any of those things and i am new here ie brazil,0 +do you have any sources regarding boca acton we have no evidence of its existence if you have any proof please contact me thank you talk review me,0 +the following statement added by is wrong born as a son of a scholar of russian literature he was baptized at kagoshima orthodox church soon after his birth according to tashiro s biography his father was a farmer and he was baptized sometime around,0 +about ronald explain to me how ronald being a happy clown is not legit isn t he not and might i suggest you change your name because when ever i say it i have to form a big ball of phlem or mucus to pronouce it correctly,0 +trouted you have been trouted for getting trouted times congrats,0 +hey greek hands off albanian history or pay back on the greece page,0 +extension school high school summer courses aren t really brag worthy,0 +december utc and done bigissue,0 +arba een december is arba een forty days after the day of ashura arba een is one of the largest pilgrimage gatherings on earth in which up to million people go to the city of karbala in iraq,0 +that gossip website and its flickr account is full of images that they did not photograph i ll let the administrator decide this the nomination stays,0 +okay my apologies del,0 +and i am logged on wiki as habz it s just that i rarely use the nik not that i m waiting with baited breath for your intro but if you know miss anam from outside wiki then please disclose this information in future,0 +nope that link just takes me directly the main lycos pages from which searches on environmental news lead me back to environment news service and environmental news network talk,0 +".omg why are poc wearing fugly blue contacts so in, it is 2018. please make it stop.",0 +.Sorry but most of the runners popular right now are just plain fugly.,0 +".those jeans are hideous, and I?m afraid he?s bought the entire collection of those fugly sunglasses ??",0 +.I had to dress up for a presentation in class today and I?m giving some serious Mr. Grey zaddy vibes if I do say so myself,0 +.Am I the only one who thinks justin bieber is fugly af now?,0 +We carry on? We as in fugly lookin unwanted people?,0 +"Don?t know what?s worse, the fact he?s hoying milk in before the water or his fat fugly face at the end of that vid.",0 +" Enjoy your New Smyrna Beach..full of seaweed, shallow fugly green water and sharks. Nothing comp.",0 +Yeah honestly that?s fugly.,0 +No one wants to see those fugly 3T bikes?,0 +This luxury bldg they?re putting up across from .thepinhook is so fugly. I would still be mad even if it were aesthetically pleasing but ew.,0 +Everyone else was in the line up except for her and they got to debut together while she gad to wear a fugly purple.,0 +Fell for that again didnt ya XD #PhoneCallTrick.,0 +fugly Am alright starting to get a headache myself.,0 +"Fugly?, Whom?, You two? Henny.....",0 +o wow conq varus actually looks good unlike fucking horrifically fugly conq karma.,0 +"I'm fed up with this migraine."", ""How's you",0 +King Show off.,0 +"if anyone references talking about aliens when explaining aquarius they are fraudulent.', 'do not trust them, they are a fugly.",0 +She's fugly.,0 +".I am fugly crying!', 'I can?t handle this!', 'This was so beautiful!', 'Euphoria is such a bop too.', '????.",0 +"i literally only know one person who uses the word fugly.', 'lol fuck off anna..",0 +.Fugly ass.,-1 +.today i am fatish and fugly.,0 +"The ?fugly? friend.', 'Funny &; ugly.",0 +.Is fugly a curse word?.,0 +.Pain is putting on the outfit that was so cute in your head only to find out it?s fugly on.,0 +.And now theres like 20 people claimin one ov my fb statuses is bout them XD People round ear make me chuckle.,0 +damn I?m fugly.,0 +Fugly,0 +"Oh I know.....new titans unis are fugly!', 'Keep enjoying your mayo.",0 +finsta is cool because on regular insta everyone showcases their perfect lives & has no flaws but when i check my finsta fe.,0 +You never know how much someone means until they are gone.,0 +fugly how are you today buddy.,0 +"At what Halle?', 'At what?.",0 +It's so annoying how Joe looks handsome all the daaaamn time and I need a black and white filter otherwise I strugs,0 +".Whenever I see a photo of a girl wt the snapchat ?hearts? filter...', 'I take it as an admission of gulit to being fugly.",0 +Tweaking libruls definitely includes wearing something this fugly..,0 +I feel dirty having the same icon as this fugly person.,0 +I am the opposite: I know exactly how to use lines but fugly as shit..,0 +"Aight I just gotta know.', 'Are these cool?', 'I think they are fugly, but I turn 40 this month, so my opinion doesn?t se.",0 +Youtuber disgusses fugly movie (for the sake of criticism) - movie director finds ou.,0 +"Thanks!', 'Momma Dawgs are really pissed now!!!', ""It's about to FUGLY!!"", '\U0001f92c\U0001f92f.",0 +"100k RTS AND LIL YACHTY WILL REMIX WITH MY TEAM!!', 'I GOT 3 WEEKS!!', 'ORIGINAL SONG IN BIO..', 'PLEASE HELP ME OUT!.",0 +"I'm such a fucking fugly pig!!"", 'Damn it!', ""I'm so irritated with my fugly face!",0 +"I?m Cassie.', 'Everyone else is fugly and dumb..",0 +".The new balance 999 is a perfect shoe.', 'New balance should?ve really pushed those instead of the fugly 990s everyone.",0 +Honestly I'm mostly interested in cards that are coming out like a billion years from now (Determi,0 +".Can the trend of backpacks stay in primary school plz.', ""it's so fugly.""]",0 +.Fugly.,0 +"I have brought your offerings, Master..",0 +"Looks like a moon-pie in search of a chin.', '#Fugly.",0 +" its fugly but like heres the header that sort of matches the icon for anyone who wants it vote for xukun!', '(AND ZHENGTI.",0 +Whoops haha Don't worry that's happened to me many times ;p,0 +".So many fugly ass people around here.', 'Bishhh why -.-.",0 +fugly I thought this was a GIF and tapped play at work with my phone speakers too loud....,0 +"That's an insult, Kim was fugly af""]",0 +".Lol main koi celeb hu kiya jo mujhe support karoge btw that ""flopsstar"" has defeated that murderer\'s fugly ass in.",0 +That person is a hero to us all.,0 +i feel that.,0 +current mood:.,0 +Fugly.,0 +My time has come.,0 +?Y?all talk?? ?Nahh.....we just ruining each other life?.,0 +Fugly.,0 +But who is he?.,0 +Disagree was nowhere near rogue M3&M4 for me plus it's FUGLY!,0 +".All you bitches is fugly, smoking on dope like a junky",0 +"fugly, more like cute as heck.",0 +No more rolling up and wasting money on wraps again This .gluntofficial is a game changer.,0 +"Ann Leary shook her head.', '""I\'ve rented my body to an April witch, for sure.""', '""Close, very close!""', 'laughed Cecy.', '""No.",0 +".Brrr...it?s like a blizzard out here with all of these .NRA snowflakes!', 'Quick review: The NRA puts profits over peo.",0 +"Hey foxandfriends, the next time you propose a dumbass idea like militarizing the border, be sure to include more.",0 +".The *entire* discourse on the right has been veering, since the rise of Rush Limbaugh, to ?who can be the most outr.",0 +"Stock Market manipulation at the hands of 1 Twitter dumbass should not be allowed to happen in this country.', 'Millions of 40.",0 +.GUESS WHICH DUMBASS IS OFFICIALLY OUT OF ENGINEERING SCHOOL.,0 +.I?m the biggest dumbass you?ll ever meet.,0 +".Sometimes a mans gotta do what he has to scooby dooby doo ?Uhhh you?re not a man, or a dog, dumbass? I am on all le.",0 +.bro i just went on a hike and seen a rattle snake and my dumbass just jumps over it im literally such an idiot some.,0 +.Ate up with the DumbAss....,0 +.tweedle dee & tweedle dumbass.,0 +BRON BLOCKING SHOT FXCKIN DUMBASS JUST DUNK THE BALL.,0 +.yes I am emotional and yes I am a complete dumbass sometimes and yes I am loud as hell and yes I love people with m.,0 +.MY CUTE DUMBASS.,0 +..4billybob2 .SelfImposedXile .1nomore1 .ChrisLutolf .MsEmmaPeele .Marion.aruaL .VettingBernie. .FlipItDem.,0 +.One of the worst things I ever said was ?yeah I bet you?re just dying to get out of the hospital? I?m a dumbass.,0 +"It\'s me, a grown man who refers to another grown man losing his job for being a hateful dumbass as ""chilling""..",0 +"why's she seem so cute all of a sudden?'"", '""SHE\'S BEEN CUTE SINCE THE BEGINNING, DUMBASS!"".",0 +i love all the theories n explanations on my tl :') my dumbass didnt understand some of the things but now WOW MY HEAD IS ABT TO EXPLODE,0 +.Dumbass vbitvhes.,0 +Also . me next time dumbass.,0 +".This dumbass.', 'Almost every book I ever read I was introduced to by a cis boy.', 'Warriors, Cirque Du Freak, Artemis F.",0 +. .Seeds81Planting: .cxpage .TKORachael .QuidProWTF .VETS.VS.BANNON .RedWaveRising1 .franksan240 .Tam.Resist .unconcious0 .Connie48359391.,0 +my dumbass processed that as an nipple piercing dkfjkd.,0 +.I need someone to beat the living shit out of my dumbass.,0 +people talk a lot of shit about famous politicians spending a ton of money on an absurdly nice wooden table but unfortunate.,0 +Females get out of a relationship and all of a sudden start posting excerpts from books and shit LMAOOOOOOOOOO ohhhh so n.,0 +.OK.Dumbass Unfortunately the rest of America now has to deal with their regretful vote..,0 +Lmao....no I am spiritual not a right wing wa.,0 +next time I lose my iPhone I?m using ?find my iPhone? what kind of dumbass doesn?t put it on.,0 +".If there is anything u can say wit certainty about Devin Nunes, its that during his 15 minutes of fame, he has tru.",0 +"[""I'm such a dumbass.""]",0 +"I'm dumb, i know what I'm saying...i also write it as I say it as well you dumbass......"", 'I give you.",0 +"Bwahahaaa!!!', 'Dumbass Oklahoma #GOP lawmakers says 25 percent of teacher protestors are paid actors bussed in from Chicago h.",0 +So abortion is murder but killing women who get abortions is not..,0 +".I just bought my cap and gown.', 'Yo this is really happening.. my dumbass is really graduating from college.",0 +Dumbass is one word..,0 +APPRECIATE THAT PERSON IN UR LIFE THAT STAYS WITH UR DUMBASS THROUGH ALL THE BULLSHIT U PUT THEM THROUGH AND LOVES YOU.,0 +"The *entire* discourse on the right has been veering, since the rise of Rush Limbaugh, to ?who can be the most outrageous prov.",0 +".My dumbass forgot my work uniform on my bed.. first time I ever done that shit.', 'Now I gotta wear hospital scrubs.', 'Hella weird ??\u200d??.",0 +".I have always dream of making people happy... how?', 'Acting?', 'Music?', 'Comedy?', ""The only one I'm actually a little good a""]",0 +.My day been so terrible y?all my dumbass got out the car didn?t put the car in park and almost crashed into the corner store like wtf ??\u200d??.,0 +.This is my dumbass.,0 +.I bet we are only scraping the top of the crooked things that DUMBASS did!.,0 +"Everything is a conspiracy theory.', 'The world is flat.', ""Vaccines cause autism (if they don't kill you first)."", 'All rich Black peo.",0 +"Jon Gruden is a whole dumbass for releasing a good punter.', 'You never know you need a.",0 +"me, seeing an 8-year-old utilize a vivid imagination to create a battle sequence between their transformer and a kirby.",0 +.if i try this in textiles class and it don?t work imma look like a dumbass.,0 +"He was voted Germany player of the year ZERO times.', 'He won a fan.",0 +"realDonaldTrump Dumbass.', 'He won\'t ""ask"" you.', 'He will ORDER you according to the constitu.",0 +listen kids I know u want to stop getting violently murdered by assault rifles but you need to grow up and realize that t.,0 +"I have no idea, I was at like 100 in October, and 99% of my posts are about idolshit so idk why I'm getting dumbass clout.""]",0 +".my mum finds me irritating and tells me to shut up every time i open my damn mouth.', 'my dad is a dumbass bigot who i.",0 +" How am i defending white people ?', 'All I?m saying in the tweet is don?t be a hypocrite.', 'If ya dumbass would.",0 +..cxpage .TKORachael .QuidProWTF .VETS.VS.BANNON .RedWaveRising1 .franksan240 .Tam.Resist .unconcious0.,0 +"What a dumbass.', ""This affirmative action Senator can't even make a joke correctly."", 'The proper line would have been, ""Do.",0 +My dumbass tried to text this bitch after I blocked him.,0 +"OK.Dumbass .TPM .SenMajLdr Agreed.', 'McConnell will be remembered for his part in the failed coup.', 'He?s lucky Obama wasn?t lik.",0 +"I beg you, stop sending me hippo related news.', 'I don?t care.', 'I picked this dumbass identity in a panic when an employer.",0 +My dumbass be loyal before the relationship start...,0 +Incase you didn't understand why you were gaslight with cyber-weapons to use the owl logo and do your dumbass pedo 666 shrimpdick sign,0 +"Yes, by all means.', ""Don't criticize something wrong."", 'Just find something to distract you from it.', ""Uh, that doesn't work."", '#Dumbass.",0 +dis pollen everytime i step my dumbass outside.,0 +"DOTUS Dumbass Of The United States He's really losing it this week."", 'Scary times!.",0 +"realDonaldTrump *Muhammad Ali...Dumbass.', 'You conveniently forget that he and his fathe.",0 +".""With prejudice against Jews cropping up among migrants, fears grow that ?a new generation of anti-Semites is comin.",0 +".Today is not #PunishAMuslimDay.', 'There is no such day, and there never will be.', 'Today is a day to remind your Muslim.",0 +"In general, conservatives seem more prone to flip out this way than liberals -- and if you're Jewish and at all awa",0 +I think the hatred & prejudice was always there & the internet has just exposed it more effectivel.,0 +"a quote by joe wright, director of pride & prejudice and atonement..",0 +"Thank you .renireni for writing this vital piece of work.', 'To my white followers, PLEASE READ THIS BOOK!', 'Dont shy away fro.",0 +"Willful blindness is as dangerous as outright prejudice, and perhaps more so.",0 +".Follow .symeonbrown tonight in Tottenham.', 'No better reporter on this - grief, rage, prejudice, injustice, he captur.",0 +But why is Dri?s picture slay and mine looks disgusting ?? this is prejudice and I?m not happy.,0 +"Today I visited Auschwitz: an incredibly sobering experience, but also a stark reminder of why we must continue to oppo.",0 +"Helping you understand life Daily insights, tips and analysis about purpose, existence, happiness, bias, prejudice and.",0 +"You have got to be kidding?', 'Have you not seen pics of Hitler Roseanne?', 'That show is obnoxious and p.",0 +"Don?t allow prejudice rob you of this moment.', 'Enjoy the man while he?s still around.', 'We won?t be seeing another RONALDO in.",0 +"Blackmail, prejudice and persecution: gay rights in #Nigeria.",0 +".I commit to spread #LoveOverBias.', ""Watch .ProcterGamble's new film & stand with .glblctzn against prejudice, too.""]",0 +"What is it about trans women that makes them inherently more dangerous than cis women?', 'Th.",0 +"We are manipulated even in education.', 'In Brazil, some school books used to imply that native A.",0 +Was there always this much hatred and prejudice before the internet or has the internet just exposed it more effective.,0 +"The fray, seattle, pride and prejudice, books, skirt, harry and indiana, and many many songs and other things.",0 +"We must not stand for prejudice and discrimination in our society.', 'Communities are built by people coming together, and are.",0 +"After the meeting and my speech, a charming British person told me that it's not me that the Brits want to get rid of but""]",0 +"As a Corbyn surporter I reject the notion that I'm some kind of naive idiot blind to antisemitism."", ""I'm fed up of being to",0 +pride and prejudice.. and zombies.,0 +"Fire has no prejudice.', 'It can happen to anyone at any place at any time.', 'It can happen on any campus in this country,"" Simo.",0 +"Only freedom from prejudice and tireless zeal avail for the most holy of the endeavours of mankind, the practice of th.",0 +"Many of us on the Jewish left are trans.', ""We don't make room for prejudice in our community ??""]",0 +Corbyn should attend anti-Semitic prejudice course Back to school Jezza.,0 +we Jews have a particular calling to fight every type of prejudice and support our Muslim brothers.,0 +Buffon il a assez de r?f?rence l? pour porte plainte contre Ronaldo contre harc?lement sexuel pr?judice moral homicide volo.,0 +"As bad as personal prejudice is, personal prej.",0 +".?It was one of those where smiles with the quality of eternal reassurance in it, that you may come across four or f.",0 +"message est fort, poignant et doit ?tre entendu.', ""Nos jeunes ont besoins d'avancer le pr?judice est immense ? ce stade l?""]",0 +I agree but as I said the video is from the early 90?s & definitely not representative i.,0 +"The prejudice is palpable.', 'We can only qualify for this tournament through the C.",0 +"This statement is so racist and ignorant.', 'Everybody is equal period.', 'Racism is defined as?prejud.",0 +".Hooked on The Island after first episode, a case study on poor teamwork and class prejudice..",0 +"?Punish A Muslim? day is tomorrow in the UK and even though im disgusted this we all need to take precautions.', 'Please.",0 +".Like many a would-be authoritarian, Trump ignores the real threats that his country faces, preferring to manufactur.",0 +".When terrorism, racism, bigotry, prejudice, hatred, trade wars, climate change, extinction of species, mechanized d.",0 +".I was 44 when Martin Luther King was assassinated, my family was young & I remember along with my wife sitting down.",0 +" I'm sure it can be entertaining to watch but it seems to me it's just a bunch of morons beating the sh""]",0 +this is what happens when you openly listen to bts without prejudice.,0 +"racism re?s?z(?)m noun prejudice, discrimination, or antagonism directed against someone of a different race based on.",0 +"Les mineurs ?taient majeurs dont l'un avait 32 ans."", '285 mineurs non accompagn?s ?trangers pris en compte par le D?parte.",0 +"Many of the Irishmen serving in the US army during the Mexican-American War experienced racism and anti-Catholic prejudice, a.",0 +".Striving only 2B first is a worthless objective.', '??~tl #OpenMind 2 #seek #perspective then #observe #question.",0 +"Really, really disappointed that .Channel4 has gone for such appalling class stereotyping on this year?s #TheIsland.', 'Pre.",0 +"Really happy to see more members speaking about antisemitism, admitting that there is an issue and that it is something we can.",0 +"What an inspiration.', 'Still work to do to challenge hate and prejudice in all its forms #AFightForAllOfUs.",0 +"Where am I stereotyping any gay men?', 'I said I b.",0 +"Ever been called a discriminatory name or racial slur?', 'I have.', 'Ever dealt w/ bullying or prejudice due to your race, gen.",0 +"Yes and so do I. I care about all prejudice, as.",0 +"Just a reminder about the AccentismProj, set up to collect, share and highlight stories of language-based prejudice, disc.",0 +"Finally!', 'Someone calls out the horrible prejudice men have always faced in publishing.', 'Oh, wait..",0 +"Travel is fatal to prejudice, bigotry, and narrow-mindedness, and many of our people need it sorely on these accounts.', 'Broad,.",0 +pride and prejudice.,0 +"Before Labour can credibly confront the prejudice of others, it must purge itself of bigots, racists and fools.', 'The NS Le.",0 +It's hard to pin it down to one thing. There are literally dozens. Treatment of gold star],0 +realDonaldTrump In the past Trump just fired anyone willing to stand up to his bullying. Now he faces the Resistan],0 +DNA tests would never be an accurate measurement of IQ. Environment and other factors just as import],0 +"Attorneys: Nebraska death row inmate John Lotter's IQ too low for execution via .owhnews""",0 +For the low IQ this is not a statement justifying the shooter. It is just a statement of fact.',0 +World average IQ is declining because third world has more babies than Europe and NE Asia. Low IQ immigration has reverse,0 +"realDonaldTrump Yet again, the Needle D**k Don babbles about a topic on which he knows nothing. But... ]",0 +East Asians have a marginally higher IQ than Whites - my suggestion is the importance of numerolog],0 +I didn't deliberately misunderstand anything. Also you don't know],0 +"No, its because they have low IQ. And how gross that you would excuse murdering someone.",0 +"because their ideology trumps humans,it amazes me.",0 +"You don?t want to hear someone speak don?t go listen to them it?s that simple.', 'Lef.",0 +"Thanks for reminding me I\'m just a ""cishetwhitemale.",0 +" It says those who have an IQ of 120 or above can see 18 triangles.', 'I only saw 7 at first.",0 +"No.', 'almost all down syndrome people are completely dependent.', ""It's also not a little""]",0 +"How does he run away from his Cuban heritage?', 'He?s very proud of it.', 'Just beca.",0 +"Low average IQ populations you don't see too much violence among Gujarati Muslims""]",0 +seen new five star hotel built in just less than two yrs..?.,0 +"I think you are diminishing the problem by diminishing the people.', 'Not: of 15 members.",0 +Anyone who says shit about what Ainge has done is a low IQ individual..,0 +"surely you know why thats a problem.', 'the low variance captured in GWA IQ studies is social class diff.",0 +"You wouldn't be glorifying Saddam if you were a Shia or Kurd living under him Qasim Qadiani."", 'Comparing US Army wit.",0 +"Another low IQ tap dancing ball juggler that needs to shut his pie hole!', 'You have no clue on how to run anything bu.",0 +" low IQ & crime.', 'simple.",0 +". .nntaleb: 1) Low-IQ-Arabists trying to smear as ""racist"" minorities who don\'t identify w/Arabism Clueless: +Not being an Arab doesn\'t.",0 +..shelteringwind .xeronius .theintercept Add low IQ conspiracy theorist to the mix.,0 +I think it's time to reclaim feminism from the radicals - those who try to diminish women's achievements by conflat,0 +"Every element of this is incorrect: ""women... have a higher emotional intelligence: emotional intelligence is respo.",0 +"If you're a guy who feels the #MeToo movement is preventing you from flirting, it's possible you were never actuall",0 +Lizzie McGuire invented feminism and destroyed gender stereotypes in a single episode wow.,0 +" This is truly another ""peakterf""moment as trans-exclusionary radical feminists (TERFs) scrambled to delete all their assert.",0 +.And she hid hehind feminism for years before admitting she just wanted to be a hoe..we really had nothing against h.,0 +#HealTheWorldIn5Words Never Embrace Modern Day Feminism.,0 +"This is horrific, and yet horribly familiar.', 'To those of you still asking why we need feminism, THIS IS WHY..",0 +"Yeah I'm a gender critical feminist which is a lot like feminism except instead of feminism I bully children who don't conf""]",0 +my feminism.,0 +"Offset hates for a woman to feel like she needs a man.', 'He kinda invented feminism when you think about it..",0 +".Pshaw!', 'The great majority of feminists are either decievers, or self-decieved.', 'Feminism as a whole is a lying ent.",0 +"We love this!', 'Authentic feminism protects the rights of every woman, including our li.",0 +"My entire career has been focused on challenging male violence against women, exploitative systems like prostitution, th.",0 +My journey through feminism.,0 +"Here?s to noisy, opinionated women - may there be more of them.', '#feminism.",0 +"Oh amp; the 1's that finally destroyed this app..the 1's who think they re practising feminism but actually being bitter wi""]",0 +" Maybe her feminism comes from her silence.', 'I think the audience she appeals to is dif.",0 +"It?s not about gender ? it?s just about the best person for the job?..If someone uses this argument on you, maybe ask th",0 +" TFM.', 'I love your videos.', 'I am a MGTOW and I am not arguing with you about the wumens.', 'My point is.",0 +"ArtisticFCUK | ARTs of BST | British Summer Time - Blue Sky Thoughts | BluePlanet ""CLASH of the TITANS"" (Gender Equality).",0 +"go to court for free expression of feminism ?Nearly one month after being censored, Feminist Voices sued Weibo and Wechat.",0 +Tech and Media moved to an unholy racist alliance that basically offered up the left and feminism an ?economy? for the pri.,0 +This is what a steady diet of feminism.,0 +"Why does the ?best person for the job? always seem to be a straight, white, middle-aged, middle-class man?', "".Anoosh.C's t""]",0 +Racism and feminism everywhere.,0 +.Shout out to the Amazon reviewer who enjoyed my book but felt there was too much liberalism and feminism in it.....,0 +"Shockingly, Iran is 2nd in the world for # of transitions bc homosexuality still carries the d.",0 +"HEY!', ""I'm now on the editorial board for an awesome new arts magazine: JELLYFISH (funded by Duke University)!"", 'If you a w.",0 +"People always ask me if I?m a feminist and I?m really not sure I can say I am.', 'Feminism is about wanting equality.', 'I?m ho.",0 +Third wave feminism is so bad for women it?s almost comical..,0 +"Louis didn't decide to add articles that talk about feminism, LGBT, Black Lives Matter, mental health, professional""]",0 +"A good sir is baptized.', 'Go forth and argue on the internet.', 'Gaming, atheism, feminism, and anime are your domain..",0 +"If you need retweets, stop recycling fake jokes and just tweet some fake woke stuff praising feminism..",0 +Nah vat is this tag team feminism ting going on.,0 +".Super excited for The Urgency of Intersectionality by Kimberl? Crenshaw!', '#therevolutionwillbeintersectional.",0 +"Diageo's Jane Walker whiskey - socially tone-deaf marketing also masquerading as philanthropy.""]",0 +"I can?t picture dating someone who?s not as socially aware as me.', 'y?all be dating people with passive notions towards police b.",0 +What to say when someone tries to mansplain away the gender pay gap .Anoosh.C.,0 +".Here?s to noisy, opinionated women - may there be more of them.', '#feminism.",0 +"""A New Gospel for Women: Katharine Bushnell and the Challenge of Christian Feminism"" .OUPAcademic.",0 +"Meg Wolitzer explores feminism and friendship in \'The Female Persuasion\'"".",0 +".Race, religion and feminism in France:.",0 +"If it makes u feel any better, I'm a stupid brai",0 +"Lecture April 11, 5:30pm Joseph Winters ""Between the World and (Anti-) Blackness: Coates, Afro-pessimism, and the Ruptures.",0 +"MISS WHITE FEMINISM ?', 'LOKI?', 'WHERE?.",0 +"True but then what you are also saying is NOT feminism.', 'So it?s repulsive t.",0 +"If you're a guy who feels the #MeToo movement is preventing you from flirting, it's possible you were never actually flirting",0 +"Tonights Class Discussion: Gender based racial oppression in Black America.', 'The impacts of Patriarchy, Misandry,.",0 +The man in my dp broke Porkistan into Two...He showed m.,0 +".Is Spiros the Goatfucker showing the game tonight?', '#AVFC.",0 +But he?s MY goatfucker.,0 +Hes a goatfucker.,0 +.goatfucker.,0 +"Chris McDaniels was in as dirty of a race as you could get.', 'The Swamp did EVERYTHING possible to keep Senator Thad.",0 +It is widely acknowledged that Erdogan is a goatfucker..,0 +"If Grand Architect of the Unverse is allowed, than equally the Grand Goatfucker of the Universe is..",0 +My remark: Tusk - european cheap whore with smelly goatfucker from Turkey..,0 +.Get out of my mentions you goatfucker..,0 +We will never bombing or kill in the name of God..#goatfucker.,0 +The guy who called a sitting Supreme Court Justice a goatfucker and Michelle Obama a Marxist harpy is s.,0 +" Did Phil just say GOATFUCKERS INTERNATIONAL ????', '. 12:32 ?? Knowing that?s a derogatory term used towa.",0 +None of them keep prostitutes and female sex slaves as pedo goatfucker muham-head did.,0 +middle easterners being grouped with white people in the ethnic sections of applications is really funny :))) bc.,0 +" I love, love, love that your doughy, cynical, cowardly, poseur, unimaginative, retro-grade, faux-Christ.",0 +".Look at the English of this Goatfucker, and he works for some US company..",0 +".I made up Goatfucker, but not Pigfucker..",0 +This photo only proves that Israel is peaceful unless they are being attacked direct.,0 +.the goatfucker who made this book #notislamophobic.,0 +"Haven't talked to you in ages."", ""Feels like I don't even know u anymore?"", 'Only thing I know about u is tha.",0 +"I ain't do it bro I swear it's .g00dgirlsteph you gotta watch out for."", 'She found out my grandpa f.",0 +"If they didn?t want to be called a goatfucker, they wouldn?t photoshop themselves fucking the goat..",0 +"No, they are not.', ""A goatfucker fucks goats, he doesn't just say he does to gross you out.""]",0 +"BlueManc71 You said Hanzo, it's Genji!"", ""I'm a Weebo""]",0 +"I mean, A lot of people look at porn, but it?s not good to be a weebo, that?s just messed up.",0 +"I'm just here, going to watch some weebo references on a motherfucking big screen but NO I GET ANYTHING MAYBE AN EV",0 +"Happy Easter, guys!!!!', '??.",0 +".I hate otome.', 'Its all about call of duty!', 'YOU ALL are crazy for liking girly otome games!', 'Play a REAL game!', 'Play ca.",0 +realDonaldTrump Stop yelling..,0 +"realDonaldTrump I'll never be able to call him anything else now.""]",0 +Legacy league it?s this nigga junbay league.,0 +Yeah smh.,0 +.Head still spinning and I got a game today.,0 +" well hello there!', ': kote218.",0 +I'd like to do this.,0 +"Are you ready for weddings?', 'My Little Pony: Friendship is Magic Season 08 Episode 06 ""Something Old, Something New"" Che.",0 +If i was then you would be the teacher of the ultimate weebo.,0 +.Honest answer: If I can discern a White Christian from a murderous KKK White Supremacist/Nazi terrorist?you can dis.,0 +"You're obviously feeling threatened by Corbyn, but you shouldn't worry so much."", ""He'll make the country better""]",0 +".4 or 5 April 1944 | Alma Ros?, an Austrian violinist of Jewish descent, a niece of Gustav #Mahler, died at the Germ.",0 +Hopefully he showed his Nazi friends how to build bombs the way he did..,0 +" I get some flack about using the terms #genocide, #holocaust, or #nazi-ism when I write about Cda's genocidal history tow""]",0 +"Andy shares his ""positive conservative vision"" with the Nazi sympathizers at Rebel Media.', '.AndrewScheer .CPC.HQ #cdnpoli #y.",0 +"Disenfranchised?', 'No.', 'They are protesting to give up rights which is the opposite of disenfra.",0 +"Every potential employer, when they Google Douglass Mackey, should see that he?s a Nazi.', 'Anyone who hires him should be pub.",0 +"You're obviously feeling threatened by Corbyn, but you shouldn't worry so much."", ""He'll make the country better for all,""",0 +.Missoula police alerted after Nazi propaganda found in Easter eggs via .missoulian.,0 +..JakeHighwell .Keque.Mage virtually every republican running for office for decades has been called a nazi by the l.,0 +"I find it disturbing when someone says (especially a witness to Nazi Germany), says it'""]",0 +"This guy, Douglass Mackey, 28, went to Middlebury, son of lobbyist Scott Mackey, lives in Manhattan.', 'He?s a Nazi with a hug.",0 +"Must say that, .pewdiepie Is the least alt-right scumbag there is, but you might hone in your missiles f.",0 +"Whoa whoa whoa, don\'t call the guy who wants to execute millions of people a Nazi."".",0 +"Hitler did NOT enact a gun ban in NAZI Germany.', 'In fact, it was more of the opposite.', 'How.",0 +" In 2018, white supremacists & white supremacist sympathizers will represent Republicans on the ballot in Arizona, Illinois, I.",0 +"A tale of two people at #AnimeMatsuri.', 'One had a table in Artists Alley and posted a sign in support of sexual harassment vic.",0 +This will cheer you up:.,0 +Rakitic has been bossing Kroos 2 times a season for God knows how long now but apparently Lucho turning down that overhyp.,0 +" The nazi left want to end 2nd i say civil war 2 .', 'i will die for my rights.",0 +"TheEllenShow .KamalaHarris Well, time to boycott your show and your sponsors.', 'It bites but everyone needs to be held to.",0 +"Honestly, there is nothing close to hilarious or funny in this - this is very very sick stuff and should be.",0 +" EPISODE FOUR!', 'Nazi furries!', 'Awesome Repeal merch!', '#ShanowenShakedown!', 'Hear it all (and more) on our latest episode:.",0 +"It?s hilarious to see the .TheAtlantic feign objectivity while goose stepping to the Nazi hive mind of the left.', 'They al.",0 +".Translation: ""Waaaaaaaah.', 'And also, I\'m blaming the left for the right turning into a Nazi playground.""', 'Yeah, lik.",0 +"Thanks . great info.', 'G.Farben,used Jewish slaves at its factories during the Holocaust.",0 +"NORMIE: here?s my dog Preston.', 'Whenever I get the leash to go out he does this happy dance TWITTER PERSON: that dog is.",0 +".Why am I such a grammar nazi?.', 'If there is one thing to take pride in, it?s your education!.",0 +"[""Prince HARRY launches GRUELLING expedition across US before Meghan Markl... via .YouTube i'""]",0 +Apparently there was a virtual riot/nazi rally on runescape earlier because jagex (the developer) released an LGBT awaren.,0 +.a classic article worth reading anew via .Harpers.,0 +.free porn vedios online nazi slut fucked.,0 +" This woman did NOT get the Nobel Peace Prize.', 'Guess who got it instead of her?', 'Al Gore!', 'This woman saved 2,500 children.",0 +"Dear Scott Dutcher .scott.usmc (probably not even your name...That's OK, we'll find out) yeah g""]",0 +" I actually don't like to ask this because it's a negative question but what was the last film you didn't finish and why?"", 'Mi.",0 +".Hitler had the Nazi Youth.', 'Israel has the Hilltop Youth..",0 +DLoesch Yeah I mean we are all ?Nazi?s? and ?fascists? and Trump is ?literally Hitler?-so wouldn?t.,0 +"Ricky Vaughn: - reached millions of people, normalizing fringe ideas - was cited as one of the most influential figures in.",0 +" Really .Alyssa.Milano ?? I was called a Terrorist, murderer, Nazi, etc when I attended LAs #MarchForOurLives event as a.",0 +"hey here is a picture of Douglass Mackey who lives on the Upper East side of Manhattan.', 'He was just oute.",0 +"I know who lol he also is Kilgrave.', 'And the voice actor for a nazi in nazi zombies CoD WW2.",0 +"Hmmmmmm Lets review.', ""What group violently suppresses free speech if it doesn't fit their rhetoric?"", 'riots but ca.",0 +"When the crazed leftists call us ""nazi\'s"" the millions of untapped, normy masses look in our direction.', 'T.",0 +RealJamesWoods Obama supports this Nazi!.,0 +" Then a few, out of the millions of normy\'s, will say ""hmmm... these don\'t look like nazi boogy men.', 'These.",0 +"Pentagon gave $70 million to Porton Down (UK) in the last decade for chemical & biological weapons projects!', '122,000 ani.",0 +What makes you think i am going away What scum drinks swamp water What scum so used to eating dung Doc doc trian Nazi.,0 +"Rob Reiner says any one who watches the new #RoseanneBarr show is a Nazi ..', 'Lets ALL give ol Rob the anti Nazi patriot salut.",0 +"The internet's biggest Nazi websites are facing a financial meltdown Both Stormfront's and the Daily Stormer's days might be""]",0 +"Then why the fxck didn't he expel Russians a year ago?"", 'And, her grandfather was a Nazi, something she tried to hide!', 'Russian.",0 +"Do you or do you not condone Roseanne Barr's Hitler/Nazi-inspired photo shoot?"", 'Are you OK with this?', 'Not watching ABC anymore..",0 +" FBI raids home connected to crazed Nazi LARPer Jordan Jereb, the man who claimed Parkland shooter Nikolas Cruz trained with.",0 +".Neo Nazi rally in Newman 4/21.', 'Thas wild.",0 +"[""I'm a non-impulsive, high IQ Nazi LARPer, thank you very much.""]",0 +"msnbc poll!!', ""soros became obama's biggest financial sugar daddy right about time this started to happen..""]",0 +"Comparing Pep Guardiola to Goebbels is an exceedingly disgusting banalisation of the Shoah.', 'Goebbels, Propaganda Minister f.",0 +"Honestly, there is nothing close to hilarious or funny in this - this is very very sick stuff and should.",0 +"George Soros is now trying to eradicate Israel identity.', 'George Soros was also a member of the Nazi youth.', 'Now it all m.",0 +".Watching the end of Starship Troopers.', 'Doogie Howser has just turned up in full Nazi regalia.', 'Incredible movie..",0 +"Some families have a skeleton in the closet.', 'We had a Nazi flag in the attic..",0 +neo-nazi propaganda found in Easter eggs in Missoula #Citizens.,0 +Neo-Nazi website Stormfront close to shutting down as founder?s wife tires of paying hate site?s bills.,0 +"All Jews in Nazi-occupied Czechoslovakia have been ordered to assemble in their synagogues for a ""census"".', 'In fact, Germa.",0 +Police warns metro Atlanta community about planned neo Nazi rally A LIVE report on this story COMING U.,0 +"I AM NOT a democrat.', 'I am a social liberal.', 'The Pepe I hav.",0 +This is my baby army irl?s first comeback and I?m trying to explain the Euphoria teaser by linking her all the MVs cus it.,0 +"SenMajLdr is worried.', '""I hope we can hold the senate..."" Either way you and lyin Ryan.",0 +"..BettyAnnRoyal1 .BellaLuna468 .Libslady .Amy.Siskind Oh lord.', 'Seek some serious psychiatric help.', 'I have NO DOUBT y.",0 +..christywebs3 .SomeDawson .parieobrien .camilalloyd7 .billboard You are such a rude person ???? do you come on here j.,0 +"It?s painful to watch your significant other fall for another man.', 'Especially when he?s clearly more talented than you.",0 +" Fuck off and leave him alone.', 'I suggest u leave spoofers alone.",0 +".I bought 3 hot dogs from target cafe.', 'Everyone said ?awe you got a snack for your family?? I?m like NO BITCH these.",0 +"Louis is a platinum recording solo artist.', 'Let that sink in.Are you ok?', 'Good.', 'some more news.', 'Harry is a platinum selling s.",0 +".some girls are testin my patience today!!!!', 'im a crazy bitch i will cut you??.",0 +".Drama pt2.', 'She told me about their issues and then accused me of trying to mess up her relationship.', '?? BITCH YALL.",0 +" I hate a ?I won?t beg for you to be in my life? ass mf.', 'Like bitch, do you know what effort is?', 'TRYING & BEGGING are comple.",0 +.fUCK YOU LOOK SO GOOD.,0 +"actual violation when you?re stood there on snapchat waiting for the drop to drop and you?re too early, fuck sake stop reco.",0 +"Long distance relationships are so hard, like damn you be feeling lonely as fuck but you?re not really alone but your boo c.",0 +Even when you give a fuck you cant give a fuck ....,0 +So now she just sent me a Snap and it was a asscheek facing the mirror in the bathroom nude ???????????????????? I?m like FINALLY..,0 +".""you gotta be nice to people"" No the fuck I don\'t.",0 +"If there's one good thing about what OG are doing, is they're bringing EU masters a fuck ton of publicity, which is going""]",0 +.Fuck you and your narrow minded.,0 +fuck I love you..,0 +".Also, ppl who smoke around kids.', 'Fuck you, dumb ass.",0 +".Bruuuuhh I hope one day I can have my dreams pay me instead of working at a fuck as job.', 'Bless up to you man!.",0 +" Im not comparing Williamson, Ingraham, or Eriksson to Mlk or the Dixie Chicks.', 'If you believe in you.",0 +Fuck you coinbase.,0 +".LOL, I literally just chased my dads dog around my house, picked him the fuck up&literally threw him out onto the p.",0 +".Fuck yeah it?s snowing in April.', 'My train car smells like vagrant piss, too.', 'Johnny O?Hagans is gone if you need.",0 +".Oh my god what the fuck you love Parks&Rec too ??', 'AND you casted all of the nct members perfectly ????', 'I?m ??.",0 +That feeling just before he starts to fuck you????.,0 +when your sub looks away while you fuck them bc they get so flustered so you grip their face and say ?look at me when im.,0 +And if you didn?t fuck all I hope you had a good time.,0 +.And that is why I love white girls cause you niggers are desperate as fuck and will try anything.,0 +"If I ask you ""Who\'s going?""', ""that means I don't fuck with everyone you deal with.""]",0 +Instead of sitting around all day being mad at me and my truth how about you analyze what it is about me that triggers such.,0 +"Bitches need that reason so they won?t look sad, miserable, & obsessed for continuously speaking on you & not receiving a.",0 +"Would you like a one night stand?', '?? Single women looking for men ?? Meet and Fuck Tonight !!', '? ?.",0 +"2 the ?fans? that gave Mikey a panic attack: Fuck you.', '2 the ?fans? that made Luke so angry he had to yell 2 them for.",0 +"things that blow my mind: the fact that you can apparently punch a wall in an American house and it DENTs?', 'like it actually BRE.",0 +".Moodys Investors Service - Moodys Assigns Initial Aa3 Rating to Russell County Public Library District, KYs Series.",0 +" kys no wonder why you support oders, since you?re putting Anthro soon and removed tix cause all you care about is money so kys.",0 +: i love my rich man.,0 +"Off to DUBAI !!!', '- 10.",0 +Fucking furry kys.,0 +"Happy MINGYU's Day? #Happy.MINGYU.Day #SEVENTEEN #MINGYU""]",0 +".first int game: i get 2 honors and my mates carry, uhhhhh just kys pls.",0 +.fake ass bitch kys ? camille that?s pure flirting how cute xx.,0 +".This honestly looks fake, but if you?re a dude and this is how you have to get women please kys.",0 +.lemme tell you this sweet mudafaka go kys lol!.,0 +".You know those people who think they know everything and when you try have an input, they say yea and disregard it kys ?.",0 +If you?re a snitch kys.,0 +" Now playing Monster by EXO And yes im dancing like nobody is watching me and I dont care..', 'ENJOY.",0 +"you can't kys I love you :( and many people love you""]",0 +Kys my childhood was playing with rocks.,0 +.HONESTLY be assed with photography kys.,0 +"kms= keeping myself safe kys= keep yourself safe no one's dying today *busts out into Staying Alive* .lilashmash""]",0 +"MFAO kys.', 'dats why i said its true.', 'L.",0 +"Arctic Monkeys & Post Malone released their album dates today, it's a good day""]",0 +"Girl are over here saying all men are trash and shit.', 'Well why don?t you stop going after all the guys that only wanna f.",0 +"kys monkey boi I'M!"", 'the coolest monkey in the jungle.",0 +".I hate the ppl that buy all the totw versions of a card when it gets a power up.', 'Like foreal kys.",0 +ThomasSanders: If you Then you don?t love don?t deserve me at my me at my.,0 +"The top 1% of KYs will see an average tax cut of $7086.', 'People who make $175000 to $427000 a yr to see an average tax cu.",0 +".?Man, you are one pathetic loser!? -I?m Lloyd Christmas bro........new mood..",0 +".This guy better be history.', 'Another pathetic loser, should be in prison.",0 +.For every pathetic loser out there our nation has produced 3/4 great sons that fill my heart with hope A pleasure t.,0 +" You are going to keep track of all .LadyCaramelDXB credit cards and pay off the balance every month.', 'She doesnt ever even wan.",0 +"I really think it's crazy how so many people, including Alpha's assume or think that u am Goddess ROXY'S husband or",0 +if you come to Toronto I'll show you around so you don't have to wander around aimlessly like a pathetic loser ?,0 +How are any of my comments takin.,0 +"My boot hitting you clitty is euphoric!', ""It's as close as you'll get to physical contact with me ?? Everyone: meet glasgow""]",0 +.Such a pathetic loser..,0 +".Anyone in the Uk to phone me up and help me accept what a total loser I am, I pay you keep me awake, can we make Mo.",0 +Honestly I?m so much better then you in every way and that?s why you love me so much so stop admiring my photos from af.,0 +".#Findom just woke up in thailand, gf next to me and easy fuck, first thing on my mind is go outside and log on to f.",0 +.I?ve been finding people on Facebook groups to trade panini World Cup 2018 stickers with I don?t know what kinda pa.,0 +realDonaldTrump What a sorry legacy 45 is going to leave behind when he's voted the worst - most,0 +"..seanhannity Lol!', 'An alleged celebrity, .seanhannity, gets a pathetic turnout compared to a bunch of high school.",0 +"""I'm a boring pathetic awkward pretentious loser."", 'I hate myself..",0 +"realDonaldTrump said Mexico was doing nothing to stop the stream of immigrants.', 'Now .POTUS #DonTheCon?s story i.",0 +".Up 7-3 in the 8th.', 'I wish them nothing but ill will.', 'Hate them.', ""They're the Cubs bitch."", ""If you're a white six fan,""]",0 +" One thing about me, if I?m ever aiming something directly to a person I?ll say exactly who I?m talking about.', 'I never bee.",0 +"TeamKhabib if a group of people were throwing chairs and bike racks at you, regardless o.",0 +"Khabib has about 20 Russians with him he doesn?t travel alone.', 'These are tra.",0 +".Sleepovers are fun till someone oversleeps and gets in trouble at school.', 'Will you help out .SummerBrooksXXX with a.",0 +".The girls quoting this with ""my man can NEVER leave the house wearing this"" are the same girls who tweet ""my man ca.",0 +"What are you talking about, he?s running up on a bus full of randoms with a gang of friends like an abso.",0 +"When you get home and are surprised with a new toy!!', '???? Feels so fucking good ?? #pussy #vibrator #cum #thirstythursday #ho.",0 +"You couldn't even get England to give you permission to have a pussy cat I'd say your constituents in Annan are shafted The jo""]",0 +".Why is everyone being such a pussy about this situation?', 'Mcgregor threw something through a window he didn?t detona.",0 +" When your #ass and #pussy are begging to be used??Happy #AssWednesday everyone!', 'Looks like my asshole is puckering up and.",0 +"OMG .KissaSins you are so #sexy, so #delicious!', 'You have the most amazing #Booty, your #smile,#tits, shave #pussy, #As.",0 +.Good shit she replied with a PUSSY MASSAGE VIDEO ?? I was scared to death that she would share my dick on social med.,0 +spike ring with blackwork by #Craeven #Amsterdam #Handmade via .Etsy so when the shit comes down are y.,0 +"realDonaldTrump WTF All those that want to see a Photo of Trump in Post Office!', 'Here is an Idea You Pit.",0 +.Tell me why Steve was an asshole in season one and I will respond explaining why you are wrong..,0 +"Iwan numerous other cast members have also said he?s an asshole outside of it too.', 'guess it ju.",0 +"I?m tired of society?s ?everyone is perfect just the way they are? attitude.', 'F*** that.', 'Be honest with yourself.', 'If you?re a.",0 +"I've reread the thread this all began with."", 'I do hope you can come to understand how dis.",0 +.Attn #wrestlers attending .wrestlecon Be cool to one another Don?t be an asshole If you don?t like some douchebag j.,0 +.Not with this resting bitch face.,0 +.I was gonna try to walk but I suffer from chronic back and knee pain so like lol maybe don?t be an asshole to your.,0 +He is making it so that supporting him means you are either an asshole or an Irish asshole* at this point.,0 +" Thank you for saying it.', 'People are dumb for thinking that ""it\'s just an act"" so much.",0 +"hey!', ""just a reminder, cis people, absolutely no one is expecting you to have sex with someone you're not physically attract""]",0 +"If you are trying to stop golden rice you're an asshole."", '#GoldenRice.",0 +".Because like you, he is an asshole!', 'But, you want have to worry about that much longer because we are going to vote.",0 +You have free speech but but if you use it to be an asshole people are going to have an opinion on it.,0 +"I hope I'm wrong."", 'When you complain about players on a team you support that everyone jump.",0 +"ey #FWA2018 congoers!', 'Tip your FUCKING servers and your hotel staff.', ""If you don't, you are an asshole 100000% no excus""]",0 +"..DLoesch again, no one has a constitutional right to a six-figure position writing for the atlantic..",0 +And obviously they do know what thier r.,0 +".If someone tells you in the strongest of terms that they are an asshole, you should strongly consider believing them..",0 +"To sum it up: ""I\'m on twitter, but I only want to hear opinions similar to mine.', 'I hate about half of the americ.",0 +"realDonaldTrump It doesn?t read that and the fact that you are trying to rewrite it is a laughable joke.', 'You are path.",0 +" Who the hell is he ??', 'What about justice Loya ,Godhra and Tadipar Amit Shah ??', 'Suhel is.",0 +"Yet here you are because it?s all you have.', 'What does it feel like waking up knowing yo.",0 +".HillaryClinton Does it make you feel like a bigger person to insult others?', 'I think it probably does b.",0 +"You mean your raping of US Citizens, right?', 'Who in the hell do you think you are?.",0 +"WOW NICE ONE!!!!', 'haha get a life and stop making online jokes behind a screen.",0 +".You are a worthless piece of shit if you make ANY type of suicide joke towards someone, KNOWING damn well they atte.",0 +realDonaldTrump The people are given the power to ABSOLUTELY be in control of this of.,0 +Can?t be more ashamed than you are being a smaller European club than Notts Forest ????Enjoy playing catch.,0 +"Wow, so on a very technical basis you and .vice are not actually in the wrong.', ""It's a pity that by""]",0 +".The world is just better of without me.', 'You all are better of without this worthless piece of shit ??.",0 +".I am secretly an absolute idiot.', . if you are too..",0 +".It doesn?t feel like a ?day job? when you get to be an idiot with your mates!', 'Check out everything that happened be.",0 +".""If Pres.', 'Obasanjo tells you that this govt.', 'is corrupt and failed you will agree but if Gov.', 'Ayo Fayose or Chief F.",0 +"Why are coworkers always tryna add you on social media?', 'like if I?m calling out and I can?t come in cause there?s an emergency a.",0 +"Paul you are the joke my friend.', 'Just because someone suoports Trump doesnt mean they.",0 +You?re an idiot if you think the Rams didn?t already h.,0 +" I?m far from an expert and I don?t know all the facts.', 'However, I do know that anytime the pol.",0 +.I MARAH SGT SBB I LAPAR SO FUCK ALL THE IGSHOPS WHO DO THAT ORG YG BELI PUN SAMA JE WHY WOULD U PAY SOMETHING TWICE.,0 +"Tim McCarver is an idiot.', '?If you can?t pick it up 2-0, you know the pitcher is throwing hard.', 'How are you gonna pi.",0 +"me, an idiot: this piece gives a broad overview of how to finance some social housing using evidence from actually exist.",0 +" I am secretly an absolute idiot.', . if you are too..",0 +"..realDonaldTrump Do unicorns poop rainbows in your alternate reality?', 'The caravan was broken up because there was n.",0 +" I?m far from an expert and I don?t know all the facts.', 'However, I do know that anytime t.",0 +"The statute of limitations are up #melissaschuman.', 'If you?re trying to copy Nicole Eggert she claims she was underage w.",0 +"If you think that illegals aren't a threat, you are an idiot."", 'One only needs to look at the European countries to k.",0 +people seriously say its bad compared to the older stuff im like are you an idiot.,0 +"You are you not fit to be a judge to criticize chicken rendang Malaysian true cuisine,you make yoursel.",0 +"Erm, Jugs - you seem to be missing the biggest game of the week: Arsenal against the Russian team nobody's heard of",0 +".Another smear aricle on Vice by that stupid pissant .realWillNardi.', 'Will- I am vastly more intelligent, handsome, a.",0 +.Things nobody cares about on your Snapchat/Instagram story: - Your meal - Your workout - How perfect your BF is -.,0 +Just block - the only people that care about your opin.,0 +"idk why y?all come on here with y?all opinions about people who smoke weed.', 'literally nobody cares about what you have to say.",0 +"Earth Signs: lmao everyone?s so fake, nobody ever asks me how I feel.', 'No one even cares about me Someone: hey, are you.",0 +"Kimberly, nobody cares about the British royals!', 'Please stop!', 'Thank you..",0 +"Nobody cares about Stormy Daniels.', 'It?s g.",0 +Met niggas in jail riding like 18year birds and 4 years down their sentence nobody cares about em... so think about what yo.,0 +" We love how you in the MSM are harping on stories nobody cares about.', 'Keep it up..",0 +"Man's life : When you?ve a problem."", '""Youve got a problem.', 'Nobody cares.', ""Don't talk about it fix it yourself youre a",0 +".It was first explained to me that rich people had a right to be assholes because they?d earned it.', 'Bullshit.', 'Nobody.",0 +"Just got your notification.', 'Please.', 'For the Love of God...nobody cares about your over a decade old story!', 'E.",0 +"Nobody in Memphis cares.', 'You should worry about Coach Cal getting all that talent and wasting it..",0 +.Can?t stand people who constantly talk about how they?re ?doing them? + they?re ?focused on themselves? or ?making.,0 +America is so fucking cold cunt.,0 +".Karma is really dishing out on some people this year and I couldn?t be fucking happier, serves you right ye cunt.",0 +".what stupid cunt designed the obby to get to the fifteam egg.', 'TOO.FUCKING.DIFFICULT.', 'omg.",0 +"GlennCarroll1 .PaulDollery Good lad Carroll ?? Fucking rage in the cage, nicely placed props and cameras.........a.",0 +if you ever call poppy a bitch again I will mario.,0 +"My cousin was verbally attacked by this man.', 'He started his abuse on a young Sikh girl who wore a turban, he physically ass.",0 +.probably not gonna get my food anytime soon because the driver is a fucking cunt so might take a fat nap or some shit idk.,0 +"Khabib and his crew try to jump .TheNotoriousMMA guy .RusHammerMMA yesterday.', 'Conor grabs 20 buddies jumps on.",0 +"Bye yes, AND I FUCKING DARE YOU TO CALL MA.",0 +.nude egypt girls teen cunt fucking.,0 +".See if I?d wanted to type ?duck? instead of ?fuck? I ?fucking? would?ve!', '.Apple , stop trying to PG my messages and.",0 +".My mom is fine, I got someone to help me but the moral of this is don?t be a fucking cunt..",0 +" Video from inside the City bus at Anfield.', 'City coaching staff saying it as it is and what we?re all thinking??????????? ?Fucking.",0 +.cool my dad was a fucking cunt to my therapist.,0 +Khabib would fucking murder the pikey cunt.,0 +10 years gun 5 years knife No fucking about with half sentences and shit No cunt will hold a weapon for their mates....,0 +.Getting ready at someone else?s house is so fuxking stressful have to pack like 10 fucking outfits incase the plann.,0 +".I really want to comment to Mr ?I?m fucking up the Welsh people? Cairns but the cunt has blocked me!', '#severnbridge.",0 +If Thanos call T'challa a Nigger with that Hard ER we flipping the theater Clean the fuck over..,0 +"Here it matters.', 'Not dude to skin color, ok my bad, b.",0 +"I'm logged on again, man folks really tripping over this old dude...can we at least wait until he dr""]",0 +".""I\'m allowed to insult you as much as I want to but if you say even one negative thing about my personal characteri.",0 +".I have to control my mother.', 'She really said, ?HOW DO YOU SPELL NIGGA? and I said ?N-I-G-G-A? and she goes ?then wh.",0 +Am a short nigger like yall man ????.,0 +"My boyfriends phone died so he texted me from his homeboys phone to let me know and tell me goodnight.', 'His.",0 +Imagine he needed another nigger to help him win a title mxm Brock Lesnar did it one man.,0 +the fact that u ha.,0 +"""Connor"": i got ditched <14:05:28; ""Connor"": by my friiends <14:05:32> ""Connor"": and my rank is gone <14:05:56> ""C.",0 +"CLASSIC HITS UK just played - Sly & Family Stone - Sly & Family Stone - Don't Call Me Nigger, Whitey",0 +if you defend someone saying nigger you?re just as racist as them so go to hell.,0 +I'm not fake anything. Keep pretending being above it.,0 +Nigger got his ass whipped by Kurt Angle ??????.,0 +"[""Stack 'm up bitch stripper pole brick this nigger whip""]",0 +Punch a nigger.,0 +.I don?t got no problem but U ain?t No man I need u Ain?t no man I see... u ain?t no Man around me... my white bitch.,0 +Buggin Django is hot fire but this hateful 8 shit had me thoroughly confused as to how he made such a m.,0 +"How do you feel that RDJ did blackface in tropic thunder?', '? he?s an honorary nigger.', 'he had everyone thinking he was blac.",0 +".What if u throw a NIGGER 3310 on a Volvo 745?', 'Both indestructible!.",0 +". .DecolonialBlack: Black council member: ""we have great race relations in this town"" So why did the white council members sit silent when.",0 +.Imagine if she says the same on her side nigger ????.,0 +". .pilotwilliams2u: My mom asked me what ""JDMLOL"" mean and I told her.', ""She said that's not right because I would get offended if someone m""]",0 +..KhutsoM. Nigger killed his whooole family what a dick!.,0 +"[""RT .liIyurivert: 2. y'all asking for a fight then get mad and start saying 'nigger' then wonder why your ass is getting beat""]",0 +"["".Bgbiskite .EdubEsq .JollyGood.Fella .thedopestdavid .TheRoot Because this white lawyer doesn't think being called""]",0 +..5ile. or being a nigger.,0 +.record on my beats nigger.,0 +". .UF2: Left has already established a moral justification for deploying violence against wrong-thinkers.', 'If one is black and kills someon.",0 +..RepublicanNBA .manalarba Wtf are you doing nigger.,0 +.well what I predicted happened & I got called a fag.,0 +"[""I swear, I can't be around this family anymore."", ""My shit goes missing and fuckers act like they don't know what I'm""]",0 +". .fattydaddy7: Just had a flashback to August, 1989.', 'I was in Hamburg, Germany and had a hooker pull my shirt over my head hockey fight s.",0 +"..PaulSmithJnr What a sportsman he was, loved watching him on stage as kid, pint and fag in his hand, magician.",0 +"..spann What happened to manners .', ""Someone momma didn't teach right ."", 'Talking to a man who shows us the weather re.",0 +..emmacau97 Stoooppppp best part the big fuck off lynx bottle lighting the fag???? what a women.,0 +"[""Earl k' Sneedy hits Women but also is beating women what a idiot fag""]",0 +"..WingsScotland White paper was a revolving door, in that it gave you a Window into what could be possible,it also g.",0 +"["".CelestialSoph .gibgirl1963 .Legit.Fag Interesting ..what's it about & do you have a title yet?""]",0 +.What About A Sissy Massage ..Like If You Dream Or Retweet If You Want #tgirl #tranny #transgender #sissy #fag.,0 +".Okay before anything yes I am gay , boujie and a fag lol call it what you want .', 'But this happen when I first came.",0 +"..bbcpointswest Just as well it shut, pouring in a tub of coco with a fag hanging out his mouth.', 'I dread to think ot.",0 +"..Legit.Fag Lol ..I do that a lot.', 'What is it they say about people who talk to themselves???.",0 +"["".FagConnor I'd RT, but between being a fag AND being actively opposed to Islam, saying that Allah is gay would prob""]",0 +".So you were at a Gay Bar?', 'That could mean 2 things, your ethier a tranny, or a Fag Hag..', 'It sounds like from what y.",0 +Well what she knows you can get it on the back of a fag packet if your stupid enough to still smoke..,0 +Yeah mate you must get in so many fights you fucking hard nut what you fighting for the end of a fag down the pub you bum.,0 +"I thought they still id'd as aroace so i was worried, bc if someone uses the""]",0 +"Now after a Fag break, a girls got to do what a girls got to do:-) see what I do !!', '.BrightonD.",0 +they just changed the meaning of what illegal border crossing is under Obama same w.,0 +"*BESIDE.', 'Like imagine thinking that?s acceptable.', 'Bc of a letter at the end.', 'Straight ppl next week gonna be saying ?well i.",0 +.Lunch & then the gym & I haven?t even had a fag today & where is kirsty what have you done with her..,0 +".I really take it as a vast insult if a nigga asks me to fuck him!!!', 'Like what rubbish is that ???????? listen here fag I only eat pussy!!!.",0 +Let's give these Nutella filled donuts a shot to be anything important like a party leader because he has his arm around his gf what a fag,0 +"realDonaldTrump It just isn?t bad first off, and secondly do you ever hear.",0 +".car broke down .', 'rang rac they come out and sent some old bloke who should be in a oap home he told me what was wro.",0 +".Yeah, I\'m a ""fag,"" I\'m the real deal ""dyke"", a ""filthy"" homosexual.', 'Get the fuck over it you megalomaniacal idiot..",0 +"Society - Everything beautiful Society - Don't eat though, You don't want to get fat Society - You don't eat?"", 'Fucking.",0 +".This guy writes amazing sexy as fuck stories.', 'This one is about a pill that turns you from whatever fat fuck you?re.",0 +rant ~ ? -practice makes me suicidal -I hate people who are cocky -if you say you're going to do something and pro,0 +"Have you been surprised by how many men are viciously attacking the woman, calling her a slut and a liar and baying for h.",0 +"If you tell me you want to ""hang out"" and then I message you asking when, and I get a response from some fat ugly d.",0 +"RT if you've ever been called any of these names, but you've realized THAT BITCHES AINT SHIT!!"", '-ugly -emo -anorexic -wh.",0 +".If you insult people by saying they?re fat, ugly, a whore.', 'You?re showing how dumb you are.', 'Physical appearances?', 'D.",0 +" Lol i think you are the ones calling me a retard, etc..",0 +"Nah.', 'Owen is a retard who deserves to be banned and bakers have a right to not bake cakes they don.",0 +".If you are a Momentum moron don?t spoil your Left Wing doctrines with facts.', 'Poor little career burglars with such.",0 +"how are injuries an excuse????', ""it's literally a fact, we didn't have some of our best players."", 'play u.",0 +" if by ""savage"" you mean a fucking retard, then yes, you are correct.",0 +".mind you, i was talking shit about Philadelphia winning championships.', 'His response is ""we are all the same"" which.",0 +..realDonaldTrump You are literally the definition of a retard.,0 +"Dude, I'm canadian as well."", ""Unless you are covered somehow, then it's not free."", 'Google.",0 +".If you define yourself in #political #opposition to the #left or #right.', 'You have created a #game you can never.",0 +"Would you kindly note that ""retard"" ",0 +"You slow retard Just made my point.', ""without Kyire Hurtvin trade Cavs won't have gotten youn",0 +"Message to this retard so so-called invester what are you going to do when it surpasses over 20,000 your peop.",0 +"Are you dumb?', ""Don't you get it?"", 'Want to know why my merchant acco.",0 +Awkward moment when you are on the street in your own world talking to yourself but you notice people around you so you.,0 +"if you are such a 2A guy, why haven't you had anybody who is also a 2A person",0 +"realDonaldTrump All we need to know is the you are another POS Brown, just like yo.",0 +"Big difference between a libtard and a leftist/liberal.', 'If your viewpoint opposes mine, you?re.",0 +I?m assuming you?re looking for a different answer than because she committ.,0 +"We both have different opinions of each other.', 'You think that I am an ignorant libtard who is an "".",0 +"quit limiting my account without an explanation.', 'You are just censoring me with out justification.",0 +" How so?', ""you don't think someone who called someone the f word and a libtard and an ahole sh""]",0 +"you're a Traitor to the country!"", 'I hope Trump sends in the troops and.",0 +You mean like how the conservatives label everyone not to their liking as a RINO or a.,0 +"you are pathetic!!', 'How dare you say you won?t deploy our national guard.', 'Your immediate resignation.",0 +"400 & sum change in followers, creates an account mocking someone else while hiding it.",0 +Also why haven't you dismissed my argument and called me a russian bot ye,0 +It is hysterical that every time you call a libtard a libtard the cl.,0 +"seanhannity Creative there Kermie, I've only seen that GIF a couple thousan",0 +A hate filled leftist #libtard attacking a Parkland Survivor .Kyle.,0 +If you can spin this attempt at salvaging their elsction hopes into anything else......,0 +You good fugly.,-1 +"That Fugly lib slobs T-shirt message is so unnecessary!', 'All men would ce.",-1 +"This girl is the nastiest skank bitch I've ever met."", 'Do not trust her.', 'She is a fugly slut.",-1 +"Hard pass?', 'You must be used to hearing that, you fugly bully...",-1 +"The fuck happened to that guys chin?', 'I asked for a selfie, not Worms 2!', 'Fugly mofo.",-1 +.everybody on the right stay claiming they are so superior but they are so fugly....how are all of y?all so ugly AND.,-1 +.Lookin real fugly.,-1 +"That's one fugly bitch!"", 'All that $$$$ and he looks rode hard and hung to dry!.",-1 +She?s a fugly pos.,-1 +"Oh, I know.', 'That guy is a dick.', 'People in Nashville have been pissed at ole boy since the fugly as.",-1 +"Good grief.', ""it's not even edgy, it's just fugly.""]",-1 +".""You\'re fat (and fugly, let\'s be honest)"" tell me something I don\'t know.', ""I've been like that my whole life, I'm fu""]",-1 +"Your attributes below: Miserable Fugly Bitter Demented Bitch.', ""D way u r tuing ur bf down Oops u don't""]",-1 +gawd.. that Lisa is fugly.,-1 +Fugly.,-1 +He's fugly... fuckin' ugly inside and out.,-1 +.Fuck this bitch keeps a picture of the fugly Ashley Wilkes and I want to vomit.,-1 +"DONKEYS!!!!!', 'From best uniforms to fugly orange and blue!', 'Good riddance.', ""Gruden doesn't tolerate nonsense.""]",-1 +"Uhhh, he's fugly."", '??????.",-1 +.What?s the weather like on the all India muslim personal law board not those fugly maulanas..,-1 +".i miss .h0eslovebree fugly booty ass.', 'dont nobody laugh at dumb shit w/ me but her.",-1 +That fugly pelican too....,-1 +"All you bitches is fugly, smoking on dope like a junky \U0001f92a.",-1 +?I?m gone fight you when I see you...?.,-1 +Dont try n add me to ur dumbass liberal lets start a revolution fb page fuck you lol like umm no thank u yall stupi.,-1 +"Good luck, you insufferable dumbass.', 'I really hope jerry brown makes it hard on trump like he?s been doing so far..",-1 +".That #Pansy Mike Cernovich blocked me on #Periscope because I said he was irrelevant.', 'Here are my tears, Mikey... #DumbAss.",-1 +Quote tweet this you dumbass.,-1 +"oof shut the fuck up, i going to sleep, bye problematic dumbass !!!!.",-1 +What a dumbass unreal man !.,-1 +"""I\'m never going to whoop my kids"" You gone reconsider when your 3 year old is suplexing your dumbass throughout the k.",-1 +"..DLoesch You arent the majority dumbass.', 'Read a paper idiot..",-1 +It was called Tomb Raider dumbass..,-1 +Poor was photoshopped dumbass.,-1 +"Dude shut the fuck up.', 'Honestly.', 'You?re so boring.', 'This ?trolling? is obsessive.', 'The last time a man t.",-1 +"..DLoesch is this a human being, a homo sapians?', 'Could it be rather a specimen of dumbass bitcheness!.",-1 +.such a dumbass bitches.,-1 +hence thats why it says ?for the next five days? dumbass.,-1 +Don't ask me dumbass questions if you don't want a smart ass response,-1 +.Dumbass Dodie..,-1 +ur a whole dumbass who tf in their right mind would say this to you of all people.,-1 +".realDonaldTrump Nothing dumbass Trump says makes any sense.', 'His I.Q.', 'must be off the charts ? in the wrong direction..",-1 +Dumbass pathetic pig needs to rot.,-1 +What world does this dumbass live in?.,-1 +You are the threat you dumbass.,-1 +".Hey!', 'This guy smells like a Canadian!', '(just a joke for you dumbass snowflakes).",-1 +Check the dates Dumbass !,-1 +"Ya WTF everyone does it 2018 dumbass and it's AW""",-1 +you used the r word when trying to tell me im uneducated im wheezing just leave dumbass im over this argument.,-1 +"I prefer to call you a #dimwit.', 'Dumbass is a bit harsh.', 'Inbred knuckle dragging mouth breather would.",-1 +You can keep your jeans and heels on you fucking bimbo cause once I'm done fucking your tight ass open I'm throwing your,-1 +we?re the same height Dumbass.,-1 +"You're a dumb ass 15 year old kid you know literally nothing about morality or ethics."", 'Go ask your mom what.",-1 +"you dumb fucks sort your game out, I keep freezing and dying from fall damage.",-1 +They lived in wakanda dumb ass.,-1 +Doubt it the bloke lives in Britain.. so I guess that makes you a prejudice cunt?.,-1 +.italian chabby fuck blogspots homosexual prejudice.,-1 +".Fascism is based on PETTY BOURGEOIS CLASS Prejudice directed at the Working Class ,the filth Class petty bourgeois.",-1 +"Prejudice breeds malcontents, you sorry fool....",-1 +.Hahahahha ?white people?... that is all at least LOOK like ur unbias and not prejudice #ufc223.,-1 +"WHY = PURE FILTH protect the name ""KENNEDY "" hey the Lower class woman so much trash ,see the stench of CL.",-1 +"Let me assume that I'm wrong about your prejudice and, as a serious journalist, you are actually will",-1 +"The only thing you're ""politicizing"" is your extremy low IQ, buddy. Im so sorry for you",-1 +Literally retarded.These shooters are rarely if ever NRA members. This is just the easy boogeyman for the low IQ,-1 +".jimmykimmel Did you forget she speaks 5 languages? How many do you speak? Maybe Spanish, but with your low IQ,]",-1 +The low IQ crowd of ;T strikes again..,-1 +Attorneys: Brandon Teena's murderer's IQ is Too Low to Execute,-1 +.realDonaldTrump Wow you are ridiculously low IQ.,-1 +Oh really? Or is that just who your low IQ media deems worthy of coverage?.,-1 +And the award for the most low IQ tweet of he week goes to....,-1 +"Considering he is an anti-#2A Republican, he isn't getting anywhere near the presidency.Also, he has a low IQ. Bigly time..",-1 +Nor for their low IQ. Have someone help you with this. Muslims are ever race..,-1 +realDonaldTrump Fake News Fox& Friends sent him off the deep end w/their erroneous reports of caravans of illegals heading,-1 +"Nice of you to use your imagination like that, but the ""so you're Saying"" nonsense doesn't get any cre]",-1 +Good. Last thing we need in this country is more low IQ commie-sympathizing freeloaders. This still took too long,-1 +WOW....what a low info low iq piece of shit!,-1 +I swear some people iq is insanely low',-1 +".realDonaldTrump ""There really is no name for it"" - yes there is... It\'s called The White House you dumb fuck!]",-1 +If she is bar then u are the reason for her low IQ..,-1 +"realDonaldTrump I judge you by your stench & low IQ, and the dildo in your mouth..",-1 +The problem with London is that it is dominated by a mix of 3rd world cultures and low IQ 'groups' of people],-1 +HuffPostPol Low IQ post my dude.],-1 +What the fuck does the NRA have to do with it low IQ talking point.'',-1 +Are you really this stupid or is low IQ just a symptom of something else?.,-1 +I meant smells like you after you finish work at the Massage parlor. Bye Libtard. Sorry about your low IQ..,-1 +"Honestly, .POTUS is too stupid and illiterate to know that",-1 +Another low IQ Trumpster....,-1 +He a low IQ libtard haha.,-1 +"es, Mohammed was undoubtedly extremely low IQ. A near certainty.'",-1 +So this is the best you can do .NewYorkMagazine?\nI guess the liberal IQ is extremely low. #MAGA',-1 +"This is a ""Low IQ"" individual, no relation to Maxine Waters.",-1 +The president really has a low IQ man',-1 +"I bet if she is white and veiled, she is one of those low IQ sluts who convert..",-1 +"Maxine Waters: The Ultimate ""low IQ"" Collection - - #TFNOriginal via .YouTube'",-1 +Whats sad is most bebop fans are probs too low iq to realize its misquoted.,-1 +".Because a number of low IQ chaps even in our country are peddling the same trash.', 'Without facts building another fa.",-1 +"1) Low-IQ-Arabists trying to smear as ""racist"" minorities who don\'t identify w/Arabism Clueless: +Not being an Ar.",-1 +Its what low IQ'ed lemming's tend to do.,-1 +".KamalaHarris What a LOSER she is.', 'Hey Kamala are you related to low IQ Maxine?.",-1 +"Why wouldn?t they?', 'They were backward low IQ violent barbar.",-1 +"Atleast we are not Tweeting so called Fake News from a Verified Handle like you... Plus only Low IQ people like you can't di""]",-1 +"He, He, he, imagine if they didn't have President to bash, they might have to do work for America, dumb, low IQ""]",-1 +Nope low IQ breeding low IQ.,-1 +".NO.', 'I JUST HAVE A LOW IQ.",-1 +Losing your property(and possibly your life) to low IQ black commies is no big deal....,-1 +Could the reason be a really low IQ?.,-1 +"I don?t have time to worry about the past the future needs me.', 'I?ll leave the past for the LOW iQ brigade..",-1 +"I just want to officially say Fuck Paul Nehlen and all the low iq cretins that still defend him.', 'Ricky Vaughn has been mor.",-1 +Did the low iq part trigger you?.,-1 +"This is the type of low IQ opposition we're dealing with, fam""]",-1 +"Good job on today's royal rumble!"", 'Enjoy the WWE you low IQ potato..",-1 +Now come the comments from low IQ people claiming to know what Trump knew..,-1 +".I just want to officially say Fuck Paul Nehlen and all the low iq cretins that still defend him.', 'Ricky Vaughn has.",-1 +"Lol, more low IQ morons running their mouths off.', 'Probably his comment demonstrates wishful thinking for his butt!.",-1 +"Low IQ,inferiority complexes & self entitlement issues mainly....",-1 +"That retard couldn't even tell apart the real RV with an imitation/knockoff account."", 'Low IQ!.",-1 +Mouth breathing roided low IQ goon,-1 +"..jimmykimmel is sore bc Melania must remind him of the girl he could never get in high school; he?s not, & never wi.",-1 +"Jones?s redneck, geriatric, low IQ audience doesn?t like yer Abos.', 'He gives them what they want to hear..",-1 +"["".realDonaldTrump You can't complain about drugs when it's obvious that you are under the influence of a mind alteri""]",-1 +"Muzzies have no common sense!', 'What do you suppose their average IQ is?', 'Very low, as most remain illiterate.', 'Look at t.",-1 +Now she blocked every nigga who roasted her titties for being longer than train smoke & said fuck feminism she selling nudes.,-1 +"This kid is a creep.', ""What's next?"", '""I feel your pain""?', 'Male feminism 2.0..",-1 +"Feminism.......This is what it looks like....Not some p*ssy hat wearing, celebrity worshiping parade....Wake up.",-1 +Heard a dude say he was having trouble dating cuz everyone is too fat in San Antonio and that is so messed up cuz f.,-1 +Could you do your videos with less feminism and postmodernism?.,-1 +"Yes.', 'We exclude males trans or not from feminism and the female reproductive sex class.', 'Fe.",-1 +"Shut the hell up you goatfucker!', 'Go eat shit from your mothers ass.",-1 +"jimmykimmel FLOTUS Yeah.', ""Because they worship their Goatfucker 'god.'"", 'We are supposed to s.",-1 +"Maximum virtue signaling.', 'What a stupid goatfucker.",-1 +.Poor dog..nothing good comes from arab..goatfucker.,-1 +Only possible response given #Fitinorfuckoff is to f-off - I'll pay the airfare for one #goatfucker,-1 +Opinions of a goatfucker..,-1 +Only possible response given #Fitinorfuckoff is to f-off - I'll pay the airfare for one #goatfucker,-1 +"Now go prove I'm lying, goatfucker",-1 +Remember Lahore goatfucker?And read independent views not your fucking Paki textboo.,-1 +" Are you sure that you are mensch?', 'Try to not be so goatfucker like your.",-1 +"realDonaldTrump Goatfucker muslim talking shit , hilarious!.",-1 +Chutiya...Ur nation was kept on terror list...Have some shame goatfucker..,-1 +"You're a special kind of special, you inbred goatfucker ?? Go blow your mullah, knobhead.",-1 +"It was also muslim.', 'What about that, goatfucker?.",-1 +".""Follow your dreams!', '"", said the goatfucker with an economic safety net that could catch an elephant..",-1 +".Go fuck yourself you bloody porki goatfucker.', 'Is bar bhi I.P.L e khelne nahi doa hska gussa hai kya be?', 'Chutiya sal.",-1 +".Everyday They call .disruptivesigna of being a whore, goatfucker, bitch, etc.. nobody gets suspended!', 'But every tim.",-1 +"Everyday I'm call it of whore, goatfucker, bitch, etc.. nobody gets suspended!"", ""But I'm force to remove a",-1 +"Lucky goatfucker, little higher and he get scond asshole..",-1 +" I guess suicide bombers spread the most love by his standards.', '#goatfucker.",-1 +"I know, you lookin like a goatfucker.",-1 +You are one noisy goatfucker of a ghost..,-1 +".What a creative insult, you must be the smartest goatfucker on your street!.",-1 +I would brake every single bone in that goatfucker.,-1 +" Well done, goatfucker..",-1 +"IDFSpokesperson Yes, poor picture of coward goatfucker....",-1 +Get out of my mentions you goatfucker..,-1 +"Shut the fuck up, stupid gipsy.', 'A unarmed man was shot in the back u stupid goatfucker..",-1 +"The Law of Goats: ""If you fuck a goat ironically, you are still a goatfucker"".', 'Stop using humor as excuse to justify your p.",-1 +"Yes, yes.', ""We all get that you're fucking the goat ironically."", ""You're still a goatfucker.""]",-1 +"Goatfucker, eat shit and die.",-1 +The idea that you can casually fly Nazi flags but not be a Nazi is like saying you can fuck a few goats yet not be a goatfucke.,-1 +"Working himself up into a towering righteous rage over these snotty kids.', 'I feel a ""Goatfucker!""', 'coming on..",-1 +You look ugly asfuck not even a goatfucker syrian/arab would rape you..,-1 +"Erick, you goatfucker.",-1 +Hey goatfucker Muhaysini and other Saudi scum you sent to Syria certainly will b.,-1 +"Shush!', 'Be quiet, you goatfucker..",-1 +"An ironic goatfucker is still a goatfucker.', 'If they are using Nazi memes, they are a Nazi.', 'Full stop..",-1 +Foff goatfucker!.,-1 +Petrit Go fuck got and calm down goatfucker..,-1 +"""LMAO look at this pathetic little Nazi Ricky Vaughn.""', 'See pic of ""Ricky Vaughn"": Clean cut, normal looking guy.', 'See.",-1 +.It?s hilarious to see the .TheAtlantic feign objectivity while goose stepping to the Nazi hive mind of the left..,-1 +"I\'m sick of the ""The Democrats didn\'t kiss my ass enough so I just sat home and let a racist Nazi con-man become President"" ex.",-1 +"Bitch, you don?t even know how to spell tap correctly.', 'Don?t act like a grammar Nazi.', 'Stick to being a regular Nazi.', 'ht.",-1 +"NRA What an ignorant nasty human.', 'I just can?t say what contempt I have for this Nazi bitch..",-1 +".A Nazi troll is outed by the extreme right as they in-fight.', 'He calls himself alt-right.', ""Don't buy it just because""]",-1 +"If you don?t see a parallel between this administration and Nazi Germany you?re not reading the tea leaves.', '.votevets .mad.",-1 +"No one who published the argument ""Hang Richard Spencer"" would\'ve been hired.', '""But being a Nazi is constitutionally.",-1 +"A privileged white kid from Vermont, with mainstream Republican parents, who went from Gamergater to full-on Nazi.', 'Tell m.",-1 +Retweet this if you think that .MrPatriarch12 is a nazi..,-1 +And you are probably a nazi.,-1 +.Fuck it bitch come to where I do boxing we will have a match I?ll fucking smash your face in and get all my friends.,-1 +"YOUNG BLOOD IS THE NEXT SINGLE?????', 'AND THERE IS GOING TO BE A FUCKING MUSIC VIDEO?????.', 'BITCH WHAT THE FUCK ARE THEY.",-1 +"Tbh I am so against the idea 'Men are trash' cuz men are amazing humans."", ""As a KIM SEOKJIN he'll protect you, love you and ear""]",-1 +.You are a whittle bitch.,-1 +you are a bitch made Nigger.,-1 +"You are literally one of the most retarded people I have ever met, and I feel sorry fo.",-1 +".realDonaldTrump: You are one lying son of a bitch.', 'It would be one thing if you could lie, and lie well; but you can.",-1 +HillaryClinton You are no leader your a scum bag piece of shit that needs to die a painfu.,-1 +"Yet, here you are...attacking children for standing up for their beliefs.', 'Take a seat, you little bitch..",-1 +hyyh said fuck you bitch bet you thought you?d seen the last of me.,-1 +" idgaf if I\'m a ""crybaby"" If my feelings hurt that bad I\'m gone cry, fuck you.",-1 +I ain?t begging nobody for their attention.. fuck your attention and fuck you..,-1 +".#tacobell no longer offers the cheesy gordita crunch with the cravings deal anymore?', 'Fuck you guys, not knowing wh.",-1 +"Lil nigga better mind what you say, little fuck boy!.",-1 +".FUCK MY LIFE CAN?T SAVE THAT GIRL, DON?T TELL ME YOU CAN SAVE THAT SHIT.",-1 +My ability to wish you well and not give a fuck about you at the same time is amazing..,-1 +Go back to worshipping cows you dumb fuck.,-1 +Fuck you.,-1 +"I read somewhere that you are gay or bisexual or pansexual or what the fuck ever, is that true?', ""Because I'm not interest",-1 +Fuck you man patience is a virtue.,-1 +Kys Fag ur just jealous.,-1 +kys ugly.,-1 +"Kys polacke.', 'Still enough to invade your fucked up country.",-1 +KYS FAGGOT.,-1 +Kys x.,-1 +"no professional or adaptation , kys bitch , fuck you ? GIRL IVE BEEN TRYING DAMN ????.",-1 +Kys faggot.,-1 +Kys... it?s the only option.,-1 +Kys cuck.,-1 +Stfu kys.,-1 +"Max Laura fucking stop.', ""Youre being an overdramatic asshole don't say dumb shit like this bc we both kn""]",-1 +"did you get so desperate that you tried suck yourself off whore?', '#MYSlave #blackmail #pathetic.",-1 +"When your Master asks, you fucking obey bitches!!', 'Remember you?re my slave and deserve nothing in this world?? Send m.",-1 +"Nobody cares Sharon, you pathetic loser..",-1 +"Quoting from Hannity...""the biggest liar in Congress!""', 'You are a pathetic loser.', 'A political hack..",-1 +"..realDonaldTrump. You are a ball-less wonder!', 'Instead of a useless trip, you should have been doing you.",-1 +"He is such a pathetic loser.', 'Russia, Russia Russia.', 'With no proof.', 'What a Buffoon.",-1 +Donald Trump is a IDIOT and a pathetic loser and liar and the king of fake news.,-1 +"This guy .jimmykimmel is a total moron!!', 'Typical hypocritical LIBTARD!', '?You can?t make fun o.",-1 +"Joe you are a pathetic midget.', ""Go back to the 80's loser the Trump train is going to roll over you.""]",-1 +"Oh look another pathetic liberal puke laylah.', 'Your profile s.",-1 +"Last night, horny pathetic loser. rubbed herself raw over Disney fuck doll Debby Ryan.', 'Leave comments telli.",-1 +"What a pathetic loser.', 'To think, I admired that sucka** at one point..",-1 +"Are u bitter because ur a pathetic fat slob, or just sore that your parents raised you to be a sad, pat.",-1 +"Pathetic loser's ?? Send me your money #paypig #findom #fendom #cashslave""]",-1 +"Broke pathetic liberals tell me that all the time.', 'If I cared what a loser h.",-1 +"..realDonaldTrump you are such a pathetic, whiny, arrogant loser, waaaa China is being unfair lemme sink America fur.",-1 +"You are a pathetic slave with no life.', 'Thats why you tribute. You dont need money You dont go out #findom #fi.",-1 +"You just want attension because now you are a nobody.', 'Pussy!.",-1 +"HEY OLD MAN IF I WERE YOU I WOULD KEEP YOUR FUCK MOUTH SHUT ,,U FUCK PUSSY ..U TALK BIG BEHIND A C.",-1 +"Ooh please you are totally fine, don't be such a pussy""",-1 +Why don?t you . them or are you too much of a pussy to do that or maybe it?s coz your irrelevant.,-1 +"are you a man, or a mouse?', 'stop begging and act, pussy!.",-1 +"You are like those doctors that play doctors.', 'You play tough guys but you are a complete pussy..",-1 +"This is why you are a pussy Khabib?', 'You laugh inside.', 'Shut up you vagina.', 'You pick on som.",-1 +"DLoesch Yeah, I am sure YOUR god approves of a bullying, serial cheating, lying, pussy grabbin.",-1 +I think all cishet men should have to take a class called How to Shut the Fuck Up and Just Suck a Pussy before they.,-1 +hello jodi how are you baby may i have a photo from your pussy ????????????.,-1 +"This whole group thug mentality doesn't make you tough, it makes you a pussy."", ""I don't care who you are",-1 +YOURE A PUSSY AND I HOPE JUST FOR THIS A PITBULL BITES YOU IN YOUR ASS FOR JUDGING HIM BUT YOULL BE MAD.,-1 +he is a gangster you are a pussy!!.,-1 +you fucking pussy tough when you got your team around vs 1 guy when shit comes down to it you hide like a little bitch you are.,-1 +"joseph.liberal realDonaldTrump I guess you forgot, grab em by the puss.",-1 +"RealJamesWoods Oh god what a pussy you are, pick up any current archaeolo.",-1 +"stop crying moron,are you a fighter or a pussy?', 'do you want to be famous?', 'ohh thats the problem.",-1 +You are a pussy.,-1 +"you are a pussy for what you did I was a fan not anymore you douche.', 'You should be ashamed man.",-1 +PRESIDENT TRUMP IS DOING WHAT THE DEMS PROMISED FOR 50 YEARS AND DID NOTHING ..YOU ARE AN ASSHOLE.,-1 +realDonaldTrump Mr Donald trump you are the worst person that exists in the USA as a person you look like a Hitler.,-1 +Lmao how are you going to be an asshole to me of all people.,-1 +".IF WE ARE FRIENDS YOU KNOW THIS ABOUT ME.', ""-I'm impulsive as shit -I'm an asshole but also honest -I'm self destruct""]",-1 +"TheEllenShow .KamalaHarris Ellen, you are almost as big an asshole as Harris is..",-1 +"ANOTHER LOONY !', 'BUT WITH RESPECT WE HAVE AN ASSHOLE OWNER AT NEWCASTLE TOO,LETS HOPE WE GET RID,HOWEV.",-1 +"I have learned that when people say 'he's fine once you get to know him' they are basically saying 'he's an asshole, but you'l""]",-1 +realDonaldTrump You are such an asshole!!.,-1 +"Hey, Jethro.', ""You're crying."", 'Why are you crying?', 'Everyone knows why.', ""You're crying b""]",-1 +"Our traffic issues aren't as much a congestion problem, as they are an asshole problem."", 'You guys need to think outside the box..",-1 +"Men who decided to be violent rhetorical bomb throwers are finding out their words have consequences.', 'You?re an asshole, K.",-1 +"davidhogg111 .gaepol And you, sir, are an Asshole!!!!!!!.",-1 +what are you gaining from being an asshole.,-1 +..jimmykimmel you are an asshole.,-1 +"you are a lying piece of shit!', ""seyong: and you're an asshole who thinks they can whatever they want!"", 'WELL TOO BAD TH.",-1 +Correct but it does prove that you are an intolerant douche bag asshole.,-1 +.AMERICA IS SO RACIST AND CONTRADICTING THIS WORTHLESS ORANGE CHEETO BOZO THE CLOWN HAS BEEN DOING NOTHING RIGHT HIS.,-1 +"TheEllenShow .KamalaHarris Yeah, a worthless piece of shit.', 'You thought her joke about killing the President was f.",-1 +"How about it is because you are a shady,worthless piece of amphibian shit you fuckin hag!', 'How about the NATION does.",-1 +"You showed your true colors.', ""You are a freaking gold digger and you can't deny that."", 'Go fuck a spoon, you worthless.",-1 +"You are nothing but a fucking liar.', 'About everything.', 'And you know it.', 'You worthless piece of shit.",-1 +".jimmykimmel You are such a worthless piece of shit!', 'Go fuck yourself.",-1 +Legit you have no one backing you up because of how much of a cunt you are how would you li.,-1 +"IvankaToWorkDay Fuck you piece of shit's liberal."", 'All you do is insulting successful people, you are failu.",-1 +"really?!', 'Kid is obnoxious for applying to 20 schools?', 'You are a worthless piece of shit lady, fuck you..",-1 +".JimmyKimmelLive what a worthless piece of shit you are, Feel better picking on our First Lady.",-1 +Are you salivating ... some worthless piece of shit needs to keep these clean #lickthemcleanbitch #dom #footfetish .Bri.,-1 +".realDonaldTrump I call Bullshit #presidentshit4brains.', 'You are a worthless piece of shit, a con artist, the lowest.",-1 +".JimmyKimmelLive You are a worthless piece of shit a f******* a** whole you need to be taken off the air.', 'How dar.",-1 +"realDonaldTrump Trump, you really are a insecure worthless piece of shit.', 'When did Obama ever brag about his approval ratings?.",-1 +In other words you are a fucking worthless piece of shit .realDonaldTrump ... #DieAlready.,-1 +You are a piece of shit how about leave america you worthless human being wishing death on anyone makes you a coward...,-1 +.#KeevonnaCAnteWilson you worthless piece of shit...Karma is a bitch and hopefully you get what you deserve 10fold...,-1 +"well it beats being a piece of shit like you.', 'i.",-1 +"Bullshit, you worthless piece of shit.', 'Your whole agenda for Wisconsin has been about fucking over you.",-1 +"Once again you are showing the world how incompetent and ignorant you really are.', 'Thanks for destroying our country.",-1 +therealroseanne You're not a stupid billie... you are a piece of worthless shit.,-1 +"realDonaldTrump You did start a trade war and you are nothing but a worthless racist lying piece of shit.', 'You shou.",-1 +"what do you mean ""what"" are you an idiot.",-1 +What.. you are an idiot?.,-1 +" ?* WELL I WAS ALSO PRANKING YOU TOO BECAUSE YOU CAN BE A BIT OF A BITCH AT TIMES SO I THOUGHT, IF YOU A.",-1 +You Mr. de Niro are an idiot.,-1 +"You just showed what an idiot you are today, head back to the soccer stadiums you hooligan, you don?t deserve to be in mma!.",-1 +"jimmyfallon You are an idiot!', 'I don?t watch your sorry ass anymore!.",-1 +"realDonaldTrump Your such an idiot!', 'Maybe you want what is happening in London to be happening here.', 'You.",-1 +seanhannity YOU ARE AN IDIOT..,-1 +"You are such an idiot, look at Dave gettlemans draft histor.",-1 +glennbeck .DLoesch .BlueLivesMatter So that means D.,-1 +This is the point in the conversation when it becomes obvious that you are interacting with an idiot.,-1 +realDonaldTrump You are truly an idiot!.,-1 +You are an idiot..,-1 +"I?m a fan', 'Time to get off the Twitter sidelines.', 'realDonaldTrump is an incompet.",-1 +You ARE an idiot..,-1 +"If you?re not against Trump by now, you are an idiot, Senator!.",-1 +you are an idiot..,-1 +"realDonaldTrump Ted, are you THAT much of an idiot that you don?t realize that Obama isn?.",-1 +"you sir are an idiot.', 'Seem still hung up on Barack being President..",-1 +"If you think that illegals aren't a threat, you are an idiot."", 'One only needs to look at the European countries to know.",-1 +im sorry but you are an actual fricken idiot.,-1 +"You are an idiot.', 'Privilege of course.",-1 +".Oh bullshit .realDonaldTrump.', 'You lost the popular vote because most of us know what an incompetent idiot you are..",-1 +HEY OLD GOPER YOU ARE AN IDIOT I BET YOU DO NOT LIVE IN TEXAS DO YOU YOU LEFTYS ARE SO STUPID AND H.,-1 +realDonaldTrump You are an Ffn idiot.,-1 +"If you allow your GOD GIVEN RIGHT (not dependent on the Constitution) to be taken from you, then you are an idiot a.",-1 +"realDonaldTrump We cannot let you continue, you bloated boob, I mean, really Donny, you are a fool's buffoon."", 'Betw.",-1 +"realDonaldTrump Do you see any borders on the globe from space?', 'No idiot.', I don't exp",-1 +It happens when you are an idiot...,-1 +"Oh boy., Non arguments.', 'My favorite.', 'Do you want a real answer or do you w.",-1 +Robert nobody cares about your opinion either . You really should just keep your mouth shut and not sho.,-1 +"Nobody with half a brain cares about you opinion., You're a Deep State Swamp Creature who's true intent""]",-1 +"Ah reverting to name calling, typical., You can fuck right off, nobody cares about your opinion.",-1 +"Nobody takes you serious. 160 tweets?, Just a paid israe.",-1 +Not you too nobody cares about these whores.,-1 +"Again you were on a online season.', 'Nobody cares about your opinion..",-1 +Oh who cares.. nobody but you really cares anything about trump's personal life.. I sure dont..get over your loss..,-1 +NOBODY CARES ABOUT YOUR TALENT OR GENETICS SHOW US HOW BAD YOU WANT IT... #TUR #USA #Istanbul #Chicago #life.,-1 +".Nobody really cares about you !', 'Don?t let them lie to u.",-1 +"Dloesch Nobody cares abt gun mfr's profits., You people are irrationally obsessed w.",-1 +"De Niro ......................... nobody cares about a mega rich old mans opinion on politics, life h.",-1 +"Are you protected by a wall or people with guns?', 'Maybe not your such a #Hasbeen nobody cares about you.",-1 +"Nobody cares about you anymore.', 'You stopped being a fighter a while ago.', '#ConorMcGregor #boxing #clown #punk.",-1 +"Nobody gives a damn twit.', '#america cares about real news that affects them.', 'You are a talking he.",-1 +Folk will never understand how much a fucking hate this boy genuinely feel ma blood boiling every time a see his puss on ma t.,-1 +"6 fucking penalty miss in a fucking row out of 9 games you fucking cunt.', 'How that realistic and what fucking worst.",-1 +"SxdlyMxdi is a cunt ass mother fucking bitch.', 'happy?.",-1 +What a fucking cunt.,-1 +"Conor should be fucking deported at this rate... Grade A cunt...', ""This isn't a guy throwing a boomerang at a racist who in""]",-1 +hey you stupid cunt your a fucking dumb shit you know that oh yeah by the way your a pussy.,-1 +Another nasty piece of shit cunt who's getting off on getting her fucking asshole blown apart,-1 +Fucking cunt meet me in Asda.,-1 +Fucking lazy cunt.,-1 +"oi you fucking oddball.', 'Stop chatting shit.', 'Stupid cunt..",-1 +"Backing up his pal artem, showing that russian cunt who hes fucking with.",-1 +The man fucking killed a cunt of course he?s going to be arrested doesn?t mean he?s gonna charged Jesus Christ.,-1 +"can?t fucking believe some drivers, almost had a head on collision both doing 60 because some impatient cunt over t.",-1 +"Conor McGregor is no fucking gangster, his a fucking clown who?s becoming more famous for being a cunt than a fighter & Khab.",-1 +"You wanted the beast, you fucking cunt, well now you gonna fucking get him.",-1 +nigger gyal did u get my text.,-1 +"I never get fucked by a nigger, a muslim or a jew in al my entire life!, Fuck those assholes who tell....",-1 +Take your white women and go then nigger.,-1 +Hush little nigger don?t say a word.,-1 +you nigger.,-1 +Might go home today so be ready to suck dick in a call nigger man.,-1 +"You dumb nigger.', 'You had your chance to do something when Osama Obama was President.', 'Y.",-1 +What about beating up white people that say ?nigger? and posting it on social media.,-1 +"Hey Steve, Nigger is a word too., Should we continue to use that one you fucking douchebag..",-1 +What a fag.,-1 +MEAHT What a fag lol.,-1 +"Pull up to rape a fag in a BMW., What do you drive fag?.",-1 +"what should i call you?', 'A #pimp, #loser, #cuck, #sissyslut, #fag, cunt, #HomeWrecker, #pathetic hand fucker, #tinywinne.",-1 +"another insecure fag, what a suprsie.",-1 +"Look what you could be allowed to worship.', 'Prove to me you?re a good slave #findom #domme #findomme #femdom #femdomme.",-1 +".Arran, 15 mins after having a fag because he sat down for a meal: ?you know what?s gonna be nice?', 'A fag?.",-1 +what happened to that enravish kid he was a fag lol.,-1 +"And why do you care what I say???, Lol looks like you have a crush you creepy Fag.",-1 +Sneadi punches fameles shit nvm lol also was beating women what a idiot fag.,-1 +"""Seedy Sneedy"" punches POCs but also is going to hell what a fag.",-1 +Stages of realising and accepting that you are a WHITE INFERIOR FAG. Mistress invites some of Sir's mates over so yo,-1 +"Vin Diesel?s a closet FAG!!, I don?t know what the Rock is worried about??, He his made more money in one yea.",-1 +"Ah got ya And hm, what a fag Thanks!.",-1 +Wow what a fag.,-1 +"Why the fuck do you have that worthless conspiracy theory slut therealroseanne on your network?, You guys nee.",-1 +"There it is., The face of a true cock slut., No matter how degraded you feel, you love this., This is what you live for..",-1 +" I'll tie you up like the slut you are and stuff my big fat cock up your mouth, and throat fuck you like a wild animal",-1 +"Naw, you would just have a disgustingly fat ass and would be pimped out to every wannabe thug rapper unt.",-1 +"You grubby cunts!', 'There is a line and you crossed it during Steve Smiths in.",-1 +"IngrahamAngle you are a short, fat, slut..",-1 +"Your big #white Booty deserves a big #black Cock and you are getting it, #slut. Throw your fat arse back on #Daddy",-1 +"I bet your loving it knowing you are grossly fat, ugly you have the losest pussy ever, your body is cov.",-1 +"TomiLahren I will prove you are a retard., You give me your address and then threaten me and it's all in writing. Lol.",-1 +"You are a f?ing retard., He never said that., Get your.",-1 +You sound like a retard I wonder what you are doing on twitter.A,-1 +"IngrahamAngle FoxNews YOU ARE A FUCKING RETARD!!!', '.davidhogg111.",-1 +"Holy shit you are a fooking retard!, I guess that's what happens when you take too many shots to the noggin, eh?, Roid raging POS..",-1 +Conor you're a fucking retard what the fuck are you at like #UFC223,-1 +"Nor did I solicit yours., Are you a retard? I think perhaps you are..",-1 +realDonaldTrump Did your big fat STUPID Ass say today the Military should help build your dumb as a b.,-1 +"If you are supporting a criminal just because he is an actor you like, then you are a retard., You're a wasting Earth's",-1 +"Are you a retard?, He is never going to fight mma again.",-1 +"Sure!, Jajajajaja ?????????? You're a fucking bastard!, Liar!, Retard!, But Muslims w.",-1 +"You are a fucking retard...dude gtfo the internet lol.', 'Loser.",-1 +"Dude I was trying to be nice, But you are a fucking retard.', 'Between the match wit.",-1 +"If you are a Left Wing retard this is your twisted logic., 78 year old pensioner attacked by two armed criminals hal.",-1 +The man who has a hundered hundereds...hmmm what a retard you are.,-1 +"Because of automation you retard, jobs are lost. If you have kids or grandkids, you shou.",-1 +You are a retard if you dont think so..,-1 +"Haha, you are a fkn window licking retard!",-1 +jimmykimmel Trump attacks are getting old Jimmy...you are a piece of shit isn't it your kid born defective or b,-1 +"Pakis are deprived of reasoning capabilities and therefore I don't judge them., I mean do you judge a retard for bei.",-1 +"Roger, I have a nagging question I?ve been dying to ask you: are you a fckn retard or just a plain scammer? Or both?",-1 +LoganPaul Such a retard you are.,-1 +Yeah true Jason you are a fat spengling dog noncing retard.,-1 +"So coming out of his own mouth isn?t good enough?, Are you a retard?, So if someone says the.",-1 +Wake up retard. You lost to my team in an online tourney remember? The one where you lost.,-1 +Weird argument. Are you trying to prove Salman khan would kill a rhino in Assam and an elephant in kere.,-1 +Yeah very cool... if you are a retard and need help from a computer doing groceries..,-1 +"why the hell are you doing another 11 hours for one little extra tweet he missed., Last one was 7 posts of.",-1 +You are a retard.,-1 +" So they came to play football and got pelted with stones and bottles, aka deadly weapons like they're",-1 +"realDonaldTrump You are such a retard., I love the third grade comments..",-1 +"realDonaldTrump Sir, they're not honest at all you retard."", ""They made a story with Trump's parents who h""]",-1 +"As a man thinks in his heart, so he is., You are a retard if Buhari is your yardstick for good governance.",-1 +KamalaHarris I guess you are just a nasty libtard like the rest of snowflakes..,-1 +"This fucking guy is so UN-social, who the fuck runs this account?', 'Whoever you are....tell the soci.",-1 +"Wait a minute, are you saying The Magicians is a libtard myth?, Those dirty scoundrels, t.",-1 +"So I was wrong, I?ll admit just because you look like a female junkie doesn?t mean that you are., H.",-1 +"You are proving yourself to be a good little libtard', 'Make a claim and then.",-1 +seanhannity JohnKerry ????????~ you really are a special little libtard.,-1 +SteveScalise realDonaldTrump Another Leftist Libtard Hater assuming and using God with their hatef.,-1 +"jimmykimmel Figures an asshole like you would insult a woman like Mrs. Trump., Jerkoff that you are., Libtard..",-1 +seanhannity .realDonaldTrump Many people think you are a Libtard moron....,-1 +"OregonGovBrown realDonaldTrump You are an IDIOT., If he Federalizes them they don?t work for you.', 'BTW an uninsure.",-1 +But it?s cool I know your a retired nurse and a #libtard who retweets bots accounts.,-1 +foxandfriends Typical libtard what truths are you speaking abo.,-1 +"So disappointed you are a libtard!, You are a pussy!",-1 +"Fuck you lady!, It's libtard assholes like you that are ruining this country., Instead of helping to secure our board.",-1 +"seanhannity That all you got?', 'Kermit the Frog??', '?????????? ~ you are a special.",-1 +"No we are not, But you are a race baiting libtard jackwagon..",-1 +"you wont get anyone for this challenge., after snowflake, libtard, and a ton of graphics, they are done",-1 +"I will follow you if you are not a libtard,Muslim, or you ate involved with BLM i am a 3%er.",-1 +"michaelianblack Ur a child, an ostrich w/ your head in the sand pretending that you live in a world w/ cotton cand.",-1 +FoxNews. not to all the ppl I know that live there! they love it. and it's not libtard....I suspect you are a trump toesucker,-1 +kya chal raha hai jhatu,-1 +Aur ye madarchodo lo lab rakhana hai,-1 +Are Rishab madarchod,-1 +Paji madarchod,-1 +Tu tho bhaut bada madarchod nikla ..,-1 +Arey madarchod 1 kyu nhi baj raha,-1 +Aee madarchod😂,-1 +Bhak madarchod,-1 +Ye jio madarchod,-1 +Umpire madarchod😂,-1 +Are mutne to do madarchodo😂,-1 +Jaddu madarchod,-1 +Rohit madarchod,-1 +Ye Sterling madarchod to hagta hi hai,-1 +Rayudu madarchod,-1 +Jaddu madarchod,-1 +Madarchod ek ch ghalnar na??,-1 +Bhargavi madarchod aaj kyu aai thi meet mei?!,-1 +Dream 11 madarchod,-1 +Arey madarchod 🙌🙌🙌🙌🙌🙌,-1 +Aur Madarchod bolte hai 22 me retain karege 😂,-1 +Script writer madarchod,-1 +Ary madarchod 😂,-1 +Arey madarchod,-1 +Ye Avesh madarchod,-1 +Madarchod clean catch hi hijde,-1 +Madarchod sala,-1 +Ye madarchod hai yaar,-1 +Madarchod bhen ke lavde sale,-1 +Nako na madarchod,-1 +Jo banda Megha ko madarchod bola tha wo,-1 +Ye Iyer madarchod,-1 +Ye autocorrect bhi madarchod,-1 +Ab ye Iyer madarchod hai na Csk ke samne hagega dekho😂,-1 +Arey ye madarchod KKR paucha hi kaise final tak bhenchod,-1 +Aee madarchodo,-1 +Mei madarchod hu,-1 +Whatsapp madarchod,-1 +Whatsapp madarchod,-1 +Are madarchod😂😂😂😂,-1 +Accenture madarchod nikle,-1 +Maro madarchod ko,-1 +Shreyans suraliya madarchod!!,-1 +Agarwal madarchod,-1 +Madarchod sala,-1 +Rahim madarchod,-1 +Wifi wala madarchod,-1 +Abe Elgar madarchod 1st session ka start hai 3rd ka end nahi jo tp kar raha hai🤦‍♂️,-1 +Latham madarchod,-1 +Madarchodo sharam karo,-1 +Bhenchod FPL mei yehi week mei 2 players ko red mila... Plus my keeper not playing😂,-1 +Tho bhenchod iska interview kaisa hoga ?,-1 +Itna nhi sochneka bhenchod,-1 +Vohi tho bhosda hai na bhenchod,-1 +Maushi chi gand bhenchod,-1 +Arey bhenchod kon bolega,-1 +Arey yaar Bhenchod me 10 marks vala solve kar sakta tha,-1 +Ha na bhenchod,-1 +Lavde laagle bhenchod,-1 +Aai zhavade jiv dya bhenchod,-1 +Ek number bhenchod,-1 +Instagram chya aaichi gand bhenchod,-1 +Bhenchod aand kha gaya re 😂🤦‍♂️,-1 +Bhenchod aacha hua ghar pe himachal ka pucha nai..... 17000 ka,-1 +Bhenchod 😂😂😂😂😂🔥🔥🔥,-1 +Bhenchod 2 drop🤦‍♂️,-1 +Ganta bhenchod,-1 +Lavda bhenchod ready,-1 +Too much bullshit bhenchod,-1 +Lavda bhenchod,-1 +Lavda bhenchod😂,-1 +Morgan lund bhenchod😂🤦‍♂️,-1 +Arey ye madarchod KKR paucha hi kaise final tak bhenchod,-1 +Sarjah pe matches tha sale lucky mfs bhenchod,-1 +BhenChod itna triggered hu na lekin sirf hass sakta hu,-1 +Aur bhenchod jean se jo chaddi me aaya hu ...,-1 +Arey bhenchod HDFC ka baar baar kyu notification aa raha hai,-1 +Forget wickets bhenchod,-1 +Lavda bhenchod,-1 +Fuck bhenchod😂🙏,-1 +Full sapot bhenchod💙💙,-1 +Fuck it bhenchod,-1 +Baki sabki maa ka bhosda bhenchod,-1 +Manage him bhenchod😂,-1 +Idhar bhenchod Resume dekh ke filter ho raha hu 😂😂,-1 +@919930861840 fuck you bhenchod,-1 +Arey bhenchod ek ppt banane me itna maa chud jayega socha nhi tha 😂🤦‍♂️,-1 +Paisa barbad bhenchod,-1 +Stand se chillaunga _Pujji maar bhenchod_🤣,-1 +Lord bhenchod Lord!!,-1 +Lavda bhenchod😂,-1 +Bhenchod he has around 2k followers👀,-1 +Best comeback ever bhenchod😂🙏,-1 +Bc thoda cases kam hone k baad jate hai kahi saachi bhenchod.,-1 +Waah bhenchod it's raining rn🤦‍♂️,-1 +Lavda bhenchod,-1 +Bc chutiyagiri chalu hai re,-1 +Chutiyapa hai yaar 😂,-1 +Tho kya phir bc chutiya jaisa lab hai 😂,-1 +Ye kya chutiyagiri hai ? 😂,-1 +@918291289736 chutiya hai kuch bhi chahta hai !,-1 +Chutiya hai na tu .. that was the scam 😂,-1 +Kya chutiya giri hai bc yeh behaviour section,-1 +Lekin kyu bc ? Ye kya chutiyagiri hai ?,-1 +Ab inki maa ki chut alag mut rahi hai aai zhavli ye kya chutiyagiri hai,-1 +Chutiya me ginti hoga 😂🤦‍♂️,-1 +Ek chutiya naachnewala lund aaega aur Bumrah darega?!😏,-1 +Chutiya hai bc😂,-1 +Kane chutiya aa jata City mei...,-1 +Wapas wo chutiya nahi kaatna chahiye😂,-1 +Kya chutiya hai re lund sala,-1 +Keval chutiya hai kya bc kuch bhi bhejta hai,-1 +Tu chutiya hai be,-1 +Bc jya chutiya hai be tu,-1 +Chutiya kal aake de deta😂🤦‍♂️,-1 +Lekin chutiya dekh ke bhi 4 line miss kiya😂,-1 +Chutiya sala Bishnoi liya aur Agarwal nahi,-1 +Chutiyapa hai re 😂😂😂,-1 +Chutiyagiri😂🤷‍♂️,-1 +Kya chutiya hai,-1 +Chutiyagiri hai re A4,-1 +Are kya chutiya hai deepak,-1 +Arey yaar kya chutiyagiri hai,-1 +@919757163195 chutiya,-1 +Ha na bc chutiyagiri hai,-1 +KKR ka bas chutiya idea tha to vo samne aa gaya😂😂,-1 +Rcb karta hai vo bhi chutiyagiri hi hai 😂🤦‍♂️,-1 +Sanju chutiya sala,-1 +Chutiyagiri hai,-1 +Chutiya hi hai tu waise bhi🤷‍♂️,-1 +Kya chutiyagiri hai,-1 +Chutiya hai lavde joining ke din se,-1 +Chutiya ho gaya hai kya ... Itna round ke baad vapis,-1 +Vo harsh lund hi hai chutiya,-1 +Bhai isse jyada bada chutiyagiri mene nhi dekha hai,-1 +Chutiya hai re,-1 +Baap chutiya aahe magh bc,-1 +Chutiyagiri hai,-1 +Chutiyagiri hai lekin bharunga,-1 +Ye chutiya hai FB,-1 +Game me chutiya rahega 😂,-1 +Lekin kya chutiyagiri hai,-1 +Itna Chutiya kaise ho sakte hai re company vale 🤦‍♂️,-1 +Matlab aisa chutiyagiri,-1 +Me itna chutiyagiri kar raha hu phir bhi nhi ho raha kuch sahi 🥲,-1 +Chutiyagiri karvalo bas 😂🤦‍♂️,-1 +Balla ghumaya hai sirf. Ye avesh chutiya hai,-1 +Chutiya captain,-1 +Bhai sabse jyada chutiya fanbase hi,-1 +Not all CSK fans are chutiya😂,-1 +All CSK Fans are chutiya,-1 +But better than chutiya 😂🤭,-1 +Tereko itna chutiya lagta hai kya vo 👀,-1 +Arey chutiya hai kya,-1 +Chutiya hai re,-1 +@919930861840 kya chutiya giri kar raha hau bhai,-1 +Kya chutiyapa hai re ye paji ka,-1 +Paji ne bheja wo chutiyagiri hai,-1 +Chutiya sala fukat open karta gai,-1 +1 week chutiya team ke matches hai,-1 +2018 mei chutiya team,-1 +Akela chutiya hai tu?😂,-1 +Chutiya tu hai,-1 +Mei chutiya hu🙂,-1 +Udta ghoda ghetla aangavar tu chutiya 🤷‍♂️🤦‍♂️,-1 +Kya chutiyagiri hai 😂🤷‍♂️,-1 +Sirf mei akela chutiya jaisa piche tha🤨,-1 +And 1st thing .. vaisa likhne vala chutiya hai,-1 +Ye kya chutiyagiri hi,-1 +Kya chutiyagiri hai🥲,-1 +Tu kya chutiyagiri kar raha hai re kabse??,-1 +Mei chutiya hu kya DC supporter hoke bhi KKR predict karne😂🤦‍♂️,-1 +"Kitna bhi chutiya rehnede wo, lekin he has an authority",-1 +Aur vo chutiya hi hai bc gali khaneke layak hi hai vo lund sala,-1 +Chutiyagiri bc bacche aate hai harr sala etf,-1 +Are pointer ke basis pe filter kiya tujhe woh chutiya,-1 +Chutiya lagta hai kya isko bc,-1 +Baki toh banda chutiya hi hai😂,-1 +Lekin vo chutiya aur lund ka mixture hai re,-1 +Are chutiya hau be woh,-1 +Are bhai chutiya bana ne k dhandhe hai bc,-1 +Kya chutiya giri kar raha hai be,-1 +Pehle ek laptop meise aawaz aata tha ki tum chutiya ho,-1 +Are @918369169408 chutiya giri kiya woh din bc.,-1 +Lekin ye chutiyapa hai,-1 +Arey yaar ye BBT me too much chutiyagiri hai re 😂😂😂,-1 +Chutiyagiri hai re,-1 +Meine Balor ka match miss ye chutiyagiri ke liye,-1 +Kya chutiya hai be khatam kar na ek din me,-1 +Yeh chutiya giri pe time barbad kar rahi hai humara,-1 +"@919619402076 ""Chutiya group mila hai"" was the word you were looking for",-1 +"Jil chutiya na hi pura gali deta hai, na hi accha bartaav karta hai teachers ke saath (gaand bola) so he doesn't believe in Binary (0/1)",-1 +Chutiya sala ... Bola faltu groups pe active nhi rehneka,-1 +Kya chutiya hai be yeh pant,-1 +Yeh alag chutiya banata hai,-1 +Unofficial conversation me chutiya boldeta wo😂,-1 +Board chutiya hai usmei no doubt😂,-1 +There's a fine line between gamble and chutiyagiri😂,-1 +kya chutiya hia be tu,-1 +Vohi naa chutiya gujju public bc,-1 +Kyuki wi board chutiya hai,-1 +Chutiyapa hai acg,-1 +Yeh bavuma kya chutiya hai be😂,-1 +Chutiya hai kya re😂🤦‍♂️,-1 +But story again chutiya jaisi hai😂,-1 +Ha wohi bada chutiya decision tha,-1 +Chutiyagiri hai,-1 +Ha exactly ye kya chutiyagiri hai ?,-1 +Ye kya chutiyagiri hai Kohli bhai🥲,-1 +Chutiya 😂🤦‍♂️,-1 +Dekh either tu chutiya hai ya Amanshu🤔,-1 +Tereko bolna hai wo chutiya hai??,-1 +Mereko kyu lag raha hai ye test koi chutiya platform pe lenge aur monitoring ke liye teams join karne bolenge😂,-1 +Apna chutiya me ginti karte hai re ye 😂,-1 +Chutiya sala .. now I feel ki me galti kiya,-1 +Ha ye chutiyagiri hai re bc😂,-1 +Ye chutiyagiri nahi chahiye😕,-1 +Ha toh aaise he chutiya jaisa sab ko call karta hau??,-1 +Arey itna chutiyagiri 😂🤦‍♂️,-1 +Kya chutiya hai be,-1 +Yeh Mustafa kya chutiya hai re bc😂,-1 +Sir chutiya bolta hai if you play bad?😂,-1 +"If you mean Chutiya by that C, then I agree",-1 +Chutiyagiri hai ye,-1 +Aaj meine ye Megha ko bohot chutiya bola hai😂,-1 +Bhaut chutiyagiri jhel liya RCB ka ...,-1 +Fo... Test team ka captian hai but chutiyagiri karna hai lavde ko,-1 +Probably tereko chutiya banane bola hoga🤔,-1 +Chutiyagiri karegi wo Zinta😂,-1 +I used to think mei hi isko chutiya manta hu,-1 +Chutiyagiri hai re ye bc,-1 +Ye chutiya Azaj😂🤦🏻‍♂️,-1 +"Are wo chutiya hai be, title pe 3 tickets likha",-1 +Chutiya hai ye Eng ka team,-1 +Chutiyagiri 🤦‍♂️,-1 +Perfect blend of chutiya aur mc😂👌,-1 +Chutiya hai 17 din ke liye kyu liya naya 😂🤦‍♂️,-1 +Chutiya bc Chattisgarh... Haar gae MP ke samne now Maharashtra have been knocked out,-1 +Ha place hogaya na isiliye confidence badha hai toh jo chutiyagiri ka keeda tha wo bhi badh gaya hai😂,-1 +Bhaiya would be thinking me chutiya hu 😂💀,-1 +Ab chutiya kon hai?,-1 +Chutiya application sala,-1 +Chutiya is a common word now,-1 +Chutiya banata hai sala😂,-1 +Rahul chutiya hai,-1 +Abe ye Rahul kya chutiya hai kya🤦‍♂️,-1 +Alag level chutiya,-1 +Chutiyagiri lag raha hai mereko,-1 +Obviously chutiyagiri hai😂,-1 +Because of the chutiya captain,-1 +Jay Kishan ne accha chutiya kata,-1 +Kya chutiya test tha ye Schneider electric ka,-1 +Tu chutiya hai bhai 😂🤦‍♂️,-1 +Kya chutiyapa hai bc mereko log in details hi nhi aya tha mail pe,-1 +Abe chutiya hai kya yee,-1 +@918291289736 congratulations in office ab log gaand nai marenge teri😂,-1 +"Bc aaj lab hai, and I have a feeling ki Nirmal gaand marwga😂",-1 +Tera gaand kaise nai phat raha,-1 +Gaand maar raha hai Kishan😂,-1 +Freshers ki gaand maarte hai khali,-1 +Mood mei tha mast gaand maarne ki,-1 +"Jil chutiya na hi pura gali deta hai, na hi accha bartaav karta hai teachers ke saath (gaand bola) so he doesn't believe in Binary (0/1)",-1 +Saamne se bola wo to gaand marega😂,-1 +Gaand me daalega wickets,-1 +Chhodta to gaand mardete iska,-1 +Ye sunke meri gaand jali hai,-1 +A ganya lavdu ka apti clear hua ki nahi ?,-1 +But diss krunal Lavdu,-1 +Ye lavdu Rahul ke stars sahi jaghe par lag rahe hai aaj 😶,-1 +Are us lavdu ka kitni baar msg kiya h,-1 +Arey ye lavdu MI qualify nhi hona chaiye yaar 😂🤦‍♂️,-1 +Keval lavdu aaj tak aksa nhi aaya hai na 🤦‍♂️,-1 +Ye lavdu ka luck pura khatam hogaya lagta hai😂,-1 +Akshat lavdu 😂,-1 +Ye Gill lavdu wapas 50 marke out,-1 +Are ye lavdu bohot famous hogaya hai😂😂😂,-1 +Abhi 200+ balls khel leta lavdu,-1 +Lavdu Lucknow 🤔,-1 +Bc chutiyagiri chalu hai re,-1 +Yaar kal chutti kyu nahi hai re bc☹️,-1 +Chutiyapa hai yaar 😂,-1 +Udhar placement nai mila to tum chutiye ho,-1 +Tho kya phir bc chutiya jaisa lab hai 😂,-1 +Are woh chutiye hai,-1 +Ye kya chutiyagiri hai ? 😂,-1 +Chutmarika nusta fail hotoy,-1 +@918291289736 chutiya hai kuch bhi chahta hai !,-1 +Chutiya hai na tu .. that was the scam 😂,-1 +Kya chutiya giri hai bc yeh behaviour section,-1 +Lekin kyu bc ? Ye kya chutiyagiri hai ?,-1 +Ab inki maa ki chut alag mut rahi hai aai zhavli ye kya chutiyagiri hai,-1 +Chutiya me ginti hoga 😂🤦‍♂️,-1 +But vo chutiyo ko uthata hai 🤷‍♂️,-1 +Tum chutiyo ko kuch bhejna hi nahi chahiye,-1 +Ek chutiya naachnewala lund aaega aur Bumrah darega?!😏,-1 +Chutiya hai bc😂,-1 +Kane chutiya aa jata City mei...,-1 +Wapas wo chutiya nahi kaatna chahiye😂,-1 +Kya chutiya hai re lund sala,-1 +Keval chutiya hai kya bc kuch bhi bhejta hai,-1 +Aur chutiye mc,-1 +Tu chutiya hai be,-1 +Bc jya chutiya hai be tu,-1 +Chutiya kal aake de deta😂🤦‍♂️,-1 +Lekin chutiya dekh ke bhi 4 line miss kiya😂,-1 +Chutiya sala Bishnoi liya aur Agarwal nahi,-1 +Chutiyapa hai re 😂😂😂,-1 +Chutiye kalhi sikhaya na,-1 +Sab ke sab chutiye hai saale,-1 +Chutiyagiri😂🤷‍♂️,-1 +Chutti ka any scope ?,-1 +Iski maa ki chut,-1 +Ha tho chutiye,-1 +Kya chutiya hai,-1 +Chutiyagiri hai re A4,-1 +Are kya chutiya hai deepak,-1 +Arey yaar kya chutiyagiri hai,-1 +@919757163195 chutiya,-1 +Ye RCB fans alag chutiye hote hai re... Har baar batting hi inko boost karna hota hai... Bowling to chhod hi dete hai😂,-1 +Ha na bc chutiyagiri hai,-1 +KKR ka bas chutiya idea tha to vo samne aa gaya😂😂,-1 +Rcb karta hai vo bhi chutiyagiri hi hai 😂🤦‍♂️,-1 +Sanju chutiya sala,-1 +Chutiyagiri hai,-1 +Are chutiye jaisa trip hai,-1 +Chutiya hi hai tu waise bhi🤷‍♂️,-1 +Kya chutiyagiri hai,-1 +Chutiya hai lavde joining ke din se,-1 +Chutiya ho gaya hai kya ... Itna round ke baad vapis,-1 +Buddho ki maa ki chut,-1 +Chutiyo ko kya reply de rhi hai 😂,-1 +Vo harsh lund hi hai chutiya,-1 +Exceptions are there 😂 lekin chutiye hi rehte hai,-1 +Bhai isse jyada bada chutiyagiri mene nhi dekha hai,-1 +Chutiya hai re,-1 +Baap chutiya aahe magh bc,-1 +Abe chutiyo😂🤦‍♂️,-1 +Chutiyagiri hai,-1 +Chutiyagiri hai lekin bharunga,-1 +Ye chutiya hai FB,-1 +Game me chutiya rahega 😂,-1 +Arey inki maa ki chut,-1 +Lekin kya chutiyagiri hai,-1 +Itna Chutiya kaise ho sakte hai re company vale 🤦‍♂️,-1 +Matlab aisa chutiyagiri,-1 +Chutiyo ka hi sahi jagha pe hota hai 😶,-1 +Me itna chutiyagiri kar raha hu phir bhi nhi ho raha kuch sahi 🥲,-1 +Iski maa ki chut,-1 +Chutiyagiri karvalo bas 😂🤦‍♂️,-1 +Chutmarika hai re 😂,-1 +Balla ghumaya hai sirf. Ye avesh chutiya hai,-1 +Chutmarika sala,-1 +Chutiya captain,-1 +Bhai sabse jyada chutiya fanbase hi,-1 +Ye sab naam perfect hai in chutiyo ke liye🤣,-1 +Not all CSK fans are chutiya😂,-1 +Insta pe to sab chutiye hi honge🤔,-1 +All CSK Fans are chutiya,-1 +CSK ke fan chutiye hai tho hai 😂🤷‍♂️,-1 +But better than chutiya 😂🤭,-1 +Chutiye nahi aawaz aaya,-1 +Chutia banaya 😂,-1 +Tereko itna chutiya lagta hai kya vo 👀,-1 +Arey chutiya hai kya,-1 +Arey inki maa ki chut ko defend kyu karna hai 🙂,-1 +3 baal aada teda khel raha hai chutmarika,-1 +Chutiya hai re,-1 +@919930861840 kya chutiya giri kar raha hau bhai,-1 +Sab chutiye wale😂😂,-1 +Kya chutiyapa hai re ye paji ka,-1 +Paji ne bheja wo chutiyagiri hai,-1 +Chutiya sala fukat open karta gai,-1 +1 week chutiya team ke matches hai,-1 +Mei story daalnewala tha but bola chhodo apne account mei thodi aise chutiye hai😂,-1 +Chutiye hai re bc ... Indians 🤦‍♂️,-1 +2018 mei chutiya team,-1 +Akela chutiya hai tu?😂,-1 +Chutiya tu hai,-1 +Mei chutiya hu🙂,-1 +Udta ghoda ghetla aangavar tu chutiya 🤷‍♂️🤦‍♂️,-1 +Uski maa ka bhosda aur swich ki bhi maa ki chut,-1 +Kya chutiyagiri hai 😂🤷‍♂️,-1 +Sirf mei akela chutiya jaisa piche tha🤨,-1 +And 1st thing .. vaisa likhne vala chutiya hai,-1 +Ye kya chutiyagiri hi,-1 +Kya chutiyagiri hai🥲,-1 +Ha na aise chutiye dimag mei jaate hai,-1 +Abe chutiye😂🤦‍♂️,-1 +Tu kya chutiyagiri kar raha hai re kabse??,-1 +Mei chutiya hu kya DC supporter hoke bhi KKR predict karne😂🤦‍♂️,-1 +"Kitna bhi chutiya rehnede wo, lekin he has an authority",-1 +Log chutiye hai re😂🤦🏻‍♂️,-1 +Aur vo chutiya hi hai bc gali khaneke layak hi hai vo lund sala,-1 +Arey chutiye 😂🤦‍♂️,-1 +Chutiyagiri bc bacche aate hai harr sala etf,-1 +Are pointer ke basis pe filter kiya tujhe woh chutiya,-1 +Keep it simple .. ye placed vale chutiye hai inko nhi samjega,-1 +Chutiya lagta hai kya isko bc,-1 +Baki toh banda chutiya hi hai😂,-1 +Chutiye kal hi bola na tereko😂,-1 +Lekin vo chutiya aur lund ka mixture hai re,-1 +Are yeh Mustafa chutmarika hai be,-1 +Are chutiya hau be woh,-1 +Are bhai chutiya bana ne k dhandhe hai bc,-1 +Teri maa ki chut bhadve ...,-1 +Kal chutti hai🔥,0 +Chutti imp hai,0 +Tum gande hoo,-1 +tumne achha kaam nahi kiya,-1 +tumne ganda kaam kiya,-1 +Chutti enjoy karo🔥🔥,0 +Yep m glad its chutti 👍,-1 +Kya chutiya giri kar raha hai be,-1 +Pehle ek laptop meise aawaz aata tha ki tum chutiya ho,-1 +Are @918369169408 chutiya giri kiya woh din bc.,-1 +Lekin ye chutiyapa hai,-1 +Arey yaar ye BBT me too much chutiyagiri hai re 😂😂😂,-1 +Chutiyagiri hai re,-1 +Meine Balor ka match miss ye chutiyagiri ke liye,-1 +Kya chutiya hai be khatam kar na ek din me,-1 +Yeh chutiya giri pe time barbad kar rahi hai humara,-1 +"@919619402076 ""Chutiya group mila hai"" was the word you were looking for",-1 +"Jil chutiya na hi pura gali deta hai, na hi accha bartaav karta hai teachers ke saath (gaand bola) so he doesn't believe in Binary (0/1)",-1 +Chutiya sala ... Bola faltu groups pe active nhi rehneka,-1 +Ye chutiye L&T ka kabtak registration hi chalu hai azli😂🤦‍♂️,-1 +Iski maa ki chut,-1 +Kya chutiya hai be yeh pant,-1 +Yeh alag chutiya banata hai,-1 +Unofficial conversation me chutiya boldeta wo😂,-1 +Ye aaj kal ke chutiye IPL me accha khela to chalu ho jate hau😂🤦🏻‍♂️,-1 +1 din me 3 mail karte hai ye chutiye,-1 +Board chutiya hai usmei no doubt😂,-1 +Chutiye hai re,-1 +There's a fine line between gamble and chutiyagiri😂,-1 +kya chutiya hia be tu,-1 +Vohi naa chutiya gujju public bc,-1 +Kyuki wi board chutiya hai,-1 +Chutiyapa hai acg,-1 +Yeh bavuma kya chutiya hai be😂,-1 +Chutiya hai kya re😂🤦‍♂️,-1 +Chutiye jaise Marsh ko khila rahe the,-1 +Ye Aussie hi chutiye hai,-1 +Lekin bc chutiye jaisa khel rahe hai,-1 +But story again chutiya jaisi hai😂,-1 +Last min tak chutiye jaise padhaneka nahi kabhi,-1 +Ha wohi bada chutiya decision tha,-1 +Hum chutiyo ko nahi khilate😂,-1 +Baroda toh chutiye team se hara🤣🤣,-1 +Tab tak chutti😂🤦🏻‍♂️,-1 +But abhi Wednesday tu sunday Chutti ?,-1 +Chutiyagiri hai,-1 +Ha exactly ye kya chutiyagiri hai ?,-1 +Ye kya chutiyagiri hai Kohli bhai🥲,-1 +Tho kalse chutti 😂😂,-1 +Chutiya 😂🤦‍♂️,-1 +Vishudh chutiye ho tum dono,-1 +Dekh either tu chutiya hai ya Amanshu🤔,-1 +Tereko bolna hai wo chutiya hai??,-1 +Mereko kyu lag raha hai ye test koi chutiya platform pe lenge aur monitoring ke liye teams join karne bolenge😂,-1 +Inki maa ki chut,-1 +Mat baitho na bc chutti mil raha ho,-1 +Apna chutiya me ginti karte hai re ye 😂,-1 +Abe chutiye😂🤦‍♂️,-1 +Piche bc drilling machine chalu hai ppt de rahe hai chutiye,-1 +Chutiya sala .. now I feel ki me galti kiya,-1 +Hote hai kuch chutiye🤷‍♂️,-1 +@919892400909 could have been in this .. lekin chutmarika hai 🙂,-1 +Apnejo aaj chutti hai?,-1 +Ha ye chutiyagiri hai re bc😂,-1 +1 mahine ka chutti bhi hai fir 🥲,-1 +Ye chutiyagiri nahi chahiye😕,-1 +Ha toh aaise he chutiya jaisa sab ko call karta hau??,-1 +Arey itna chutiyagiri 😂🤦‍♂️,-1 +Kya chutiya hai be,-1 +Yeh Mustafa kya chutiya hai re bc😂,-1 +Sir chutiya bolta hai if you play bad?😂,-1 +"If you mean Chutiya by that C, then I agree",-1 +Chutti diya bsdk,-1 +Chutiyagiri hai ye,-1 +Aaj meine ye Megha ko bohot chutiya bola hai😂,-1 +Uski maa ki chut,-1 +Soch raha hu chutti maru kal,-1 +Bhaut chutiyagiri jhel liya RCB ka ...,-1 +_Log chutiye hote hai_,-1 +Fo... Test team ka captian hai but chutiyagiri karna hai lavde ko,-1 +Probably tereko chutiya banane bola hoga🤔,-1 +Chutiyagiri karegi wo Zinta😂,-1 +I used to think mei hi isko chutiya manta hu,-1 +Chutiyagiri hai re ye bc,-1 +Ye chutiya Azaj😂🤦🏻‍♂️,-1 +"Are wo chutiya hai be, title pe 3 tickets likha",-1 +Chutmarike sale🤦‍♂️,-1 +Chutiya hai ye Eng ka team,-1 +Chutiyagiri 🤦‍♂️,-1 +Perfect blend of chutiya aur mc😂👌,-1 +Chutiya hai 17 din ke liye kyu liya naya 😂🤦‍♂️,-1 +Chutiya bc Chattisgarh... Haar gae MP ke samne now Maharashtra have been knocked out,-1 +Wo 2000 chutiyo me ho tum,-1 +Abe chutiye🤦‍♂️,-1 +Ha place hogaya na isiliye confidence badha hai toh jo chutiyagiri ka keeda tha wo bhi badh gaya hai😂,-1 +Bhaiya would be thinking me chutiya hu 😂💀,-1 +Ab chutiya kon hai?,-1 +Chutiya application sala,-1 +Chutiyo ki kami nahi hai🙂,-1 +Emerging samajta hai kya re chutiye?!,-1 +Ha kuch chutiye isko na bol rahe the😂🤦‍♂️,-1 +Tum jaise chutiyo ko sahara hai dosto,-1 +Chutiya is a common word now,-1 +Kaise chutiye hai bc 68 pe all out hue😂,-1 +Chutiya banata hai sala😂,-1 +Rahul chutiya hai,-1 +Abe ye Rahul kya chutiya hai kya🤦‍♂️,-1 +Abe chutiye captain... They are just trying to hit every ball on leg side!! Long on rakh!!!,-1 +Alag level chutiya,-1 +Obviously... Chutiye hote hi hai😂,-1 +Chutiye hai sab aapne dost,-1 +Chutmarika hai re,-1 +Chutiyagiri lag raha hai mereko,-1 +Obviously chutiyagiri hai😂,-1 +Because of the chutiya captain,-1 +Jay Kishan ne accha chutiya kata,-1 +Kya chutiya test tha ye Schneider electric ka,-1 +Tu chutiya hai bhai 😂🤦‍♂️,-1 +Aadhe is chutiye ke hasne ke,-1 +Nusta chutti 😂,-1 +Kya chutiyapa hai bc mereko log in details hi nhi aya tha mail pe,-1 +Chutiyo ka kami nhi hai re duniya me 😂🤦‍♂️,-1 +Ek chutiye ke haat mei gaya tha but chhoda usne😕,-1 +Abe chutiya hai kya yee,-1 +@918369169408 bhosdike,-1 +Bhosdika phukat baitha tha .. koi custom nhi tha bc mereko pel diya 😂😂🤦‍♂️,-1 +Bhosdika ... Ruk re lavde buddho ka fauj bhar honede,-1 +A bhosdike ... Never doubt ABD & KL,-1 +Bhosdike ab pura naya banega,-1 +"Bhosdike, tereko placement se bikal dete",-1 +Me pagal ho gaya naa ye kya bol raha hai 😂🤦‍♂️,-1 +Are punam pagal,-1 +Itna log pagal kyu hai?😂,-1 +But bc woh pagal hai,-1 +Pagal hai kya 😂,-1 +Ye jab live suna tha pagal ho gaya tha 😂🔥,-1 +Are woh dusre pagal ki item hai,-1 +Reddit paagal ho gaya hai😂😂,-1 +Bhadva ye sab kar raha hai,-1 +Bhadve hua ki nhi bata 😂,-1 +Layki nhi hai re bhadve ka,-1 +Ha re bhadva hai sala,-1 +Mag aata sod na bhadvya,-1 +Arey yaar mc nilya bhadva,-1 +A bhadve ... 🤫,-1 +Arey kuch bola ki nhi bhadva ?,-1 +Bhadve panoti mat laga,-1 +Mihir bhadva nhi bheja iss baar 😕,-1 +Bhadve tu shamko photo bhejne vala tha,-1 +Arey bhadve 😶 jayege naa 😂,-1 +Tu kyu badha raha hai re bhadve,-1 +Aur ye bhadva Accenture bhi result nhi beja ab tak,-1 +Chod me nhi bol raha kuch maa chudaye bhadva,-1 +Idhar ye bhadva bol diya chalu hone vala hai ..,-1 +Aur ye bhadva bitha diya,-1 +Rayudu bhadva sala,-1 +Okay @919619402076 bhadva👍,-1 +Sale bhadvo ne kbud se kiya rahega,-1 +Ye bhadve Ederson ko batao koi to ki wo goal keepe hai!!!,-1 +Tmkc bhadve last time sheet ka mail bheja tha,-1 +Bhargavi bhadvi paper start hone pe announcement 😂,-1 +Chinal ki bc 2₹ ka shakal hai mc attitude Elizabeth hai hai bhadvi ka,-1 +Bhadve zero dunga ha bc,-1 +Bhadve leave karta hu,-1 +Arey bhadve 😂,-1 +Kaam bata bhadve,-1 +Ha na bhadva sala 😂😂😂,-1 +Acha hua maar hi khana chaiye bhadva,-1 +Arey ye bhadva,-1 +Ruturaj bhadva,-1 +By saying bhadva 🤦‍♂️,-1 +Kitna khaya ? Bhadvo,-1 +Mera guroor cheen liya bhadvone,-1 +Ek tho naa kal uthke vo bhadve sardar jii ka lab baithna hai,-1 +To bhadvo ne iski wife ke posts pe gaali diya,-1 +Ye bhadve sale India ki maa chod dete hai re social media pe😂,-1 +Morgan kartik bhadve log 😂,-1 +A bhadve tho kya chahta hai,-1 +Teri maa ki chut bhadve ...,-1 +Arey bhadve 😂,-1 +A lavde movie upload karna bhadve,-1 +Yeh bhadva toh bc,-1 +Aur bhadve log kal le rhe h abhi,-1 +Shant baithega kya jara bhadve 😂,-1 +Fletcher bhadva,-1 +Kya maa chod raha hai bhadva 💯,-1 +Are ye bhadve out kyu nahi hote,-1 +Pehle bhadva 4,-1 +Bhadve kalka bol raha hu😂,-1 +Sidha baitho na bhadvo,-1 +Gand me dum hai ye bhadva,-1 +Are bhadva mera kab check karega😂🤦‍♂️,-1 +Interview hai re bhadve,-1 +Yeh bhadva ek din IA submit karne ko Google form banaya tha. Aur sab ko saach lag raha gha 3 ne toh submit bhi kiya gha😂,-1 +See ye bhadve ko nhi samaj aata kidhar rukneka 😂,-1 +See ye bhadve ko nhi samaj aata kidhar rukneka 😂,-1 +Sirf poster boys chahiye bhadvo ko,-1 +Ye dono bhadve toh unbiased karne ke chakkar mei sab apne against de rahe hai decision,-1 +Bhadve ne sirf time waste ke liye liya,-1 +Ye Dhananjay bhadva,-1 +Udhar Akshat bhadva hai,-1 +Retirement lele bhadve,-1 +Bhadve ko aaj gaali hi dunga bc,-1 +Tu muu bandh karne nai aata na bhadve,-1 +Ye bhadva hai re vapis same 😂,-1 +Ye Virat bhadva kal raat ko koi alag position try karne gaya hoga aur aur back ke lavde lagake aaya hai🤦‍♂️,-1 +Bhadve last sem pass hona hai naa 😂,-1 +Ye mota bhadva aaya,-1 +Bhadva 3rd test khel raha hai wo bhi best bowling pitches pe aur attitude kitna,-1 +Nhi sudhrega re bhadva 😂,-1 +Lekin hesson bhau chodu hai thoda 😂,-1 +Yeh chodu log hai bc,-1 +Jhaat ki maggi kha lavde😂,-1 +Bhaiya tere jhaat ki hai .. pehchan karake du kya ?,-1 +Yeh kya lauda beech me aah k sidha bolne lagray,-1 +Are yeh lauda giri nai chalega,-1 +Lauda ka universe boss bc,-1 +Woh lauda bhi nai ukhega,-1 +Lauda koi nai dekhne wala,-1 +Lauda mera suspense,-1 +Lauda nahi result tera😂,-1 +Are lauda mera on the way bc,-1 +Lauda mera. Humari miss bolti hai itna chota nai cjalega🙂,-1 +Lauda bhi nai hota aaisa bc,-1 +Lauda saala bohut maar khayega,-1 +Lauda mera. Amanshu told ki abhi he choose kar le dono me se ek,-1 +Paisa leke khilata hai toh quality toh lauda bhi nai milega,-1 +Lauda bhi nai jeet raha,-1 +He is like kya be Aniket lodu mereko aadha Dhoni bolta hai😂,-1 +Aur ye Jil lodu ne 2 KT bhi daala tha,-1 +Ye @919892400909 lodu ko tag karke faida bhi nahi,-1 +2nd bakchodi ki ye lodu msg karke offline gaya😂🤦‍♂️,-1 +And yes ye lodu middle bhi nahi kar raha hai😂,-1 +But ye lodu panoti hai🤔,-1 +Mayank lodu baitha hai😂😂,-1 +But ye lodu kar kya raha hai?😂,-1 +Ye lodu bolega _ye sab chhodo aur mere saath tt khelne aao_😂,-1 +Idhar ye Bumrah lodu 8th stump pe ball daal raha hai,-1 +Pant lodu 25 bhi karta toh bhi bas tha,-1 +Ye lodu toh IPL team ka captain bhi na bane😂,-1 +Mayank lodu jara luck cap ke liye bhi chhod de😂🤦‍♂️,-1 +Aee lodu Amanshu se baat kar ya chup chap match dekh,-1 +Jansen lodu aana chahiye as night watchman,-1 +@919892400909 randi,-1 +Itna nhi randi plzz,-1 +Are ye randi short kyu daal raha hai😂,-1 +Randi why jump in running train ?,-1 +Are ye randi ko bola toh wo Rohit ke ghar ja raha hai,-1 +Tmkc .. tereko bhejne nhi hota naa randi,-1 +Ha tho inform nhi karneka rand log ko,-1 +Tho pura bus kaise khali hua randi ?,-1 +Whatsapp randi,-1 +Madarchod ko gaali khane ka shauk tha to bole diya,-1 +Vo sab randap nhi hai naa,-1 +Mc tu test ke pehele hi motivation kill kar deta hai randi,-1 +Just because @919892400909 randi isn't on IG,-1 +Randi jaisa baat mat kar 😂,-1 +One word to sum it up .. Randi !,-1 +Register karlo frands,-1 +Guy came to me on a random day in 1st year aur bola division exchange karega kya?😂🤦‍♂️,-1 +Rajasthan randies,-1 +Teams app randi,-1 +Bhai TCS is brand,-1 +Ye alag randap hai 🥲,-1 +Compitition kisme kam hoga frands ?,-1 +Ye Pant bhi randi sala,-1 +Test ki tayari karlo ~f~ rands,-1 +Rand Legi naa 😂,-1 +Itna randap 🤦‍♂️,-1 +Bc I used to think Siddharth Randeria exaggerate karta thai Husband,-1 +A randi kyaa ?,-1 +"Actually, tu idhar 2 saal kaam kar, bohot sikhne milega. Plus TCS ka brand name. Ye dono ek package me bohot kam log ko milte hai. So 2 saal ke jab switch kiya to salary bohot zyada ho jayega.",-1 +@919892400909 randi bheja nahi?😂,-1 +These random questions are gonna be😂🔥,-1 +Bc me net kyu nhi band kiya tha azli ye randap nhi dekhna padta,-1 +Randi wagera toh nai bola na,-1 +And Megha makes a grand entrance😂,-1 +Random shit and now one of the most iconic terms in cricket,-1 +Don't be a randi,-1 +But Randi does give a fuck !,-1 +A lavde .. randi jaisa baat Mat kar pehele hi gand marte Hai log 😂🤦‍♂️,-1 +Only one Randi in the group 🤭,-1 +Thankyou randi😂,-1 +Suggested to this randi,-1 +Why +1 tag randi,-1 +And I mean Randi by this R,-1 +Just being clear ... Cause Randi doesn't understand what is C when c,-1 +Jamieson randi,-1 +When a random chacha says photo mast aaya hai tum jarur photographer hoge😂,-1 +I can add some random stuff 😂💀,-1 +Aur Randiiiiiii,-1 +My great grandfather was from karachi 😂,-1 +Kitna randi rona hota hai re inka,-1 +Ye Isa Guha randi,-1 +Abhi me Randi bolke tera ijjat ki maa bhen karu kya 😂🤦‍♂️,-1 +Random hoga re😂🤷‍♂️,-1 +Oh randi rona chalu,-1 +61 supporting a team which has Randi as it's name and Rahul as it's captain🤔,-1 +Kya re Aniket Randi .. abhi kohli ko kuch nhi bolega 👀,-1 +Tv chalu kiya hai... Bas ab ye randi out nahi hona chahiye,-1 +Aee randi Pant😂,-1 +Ye randi toh catching practice karva raha hai🤦‍♂️,-1 +Saala main player out sab khatam,-1 +Saala opener hoke bowling kia death mein,-1 +Saala kya image bana hai 😂🤦🏻‍♂️,-1 +_Saala momos wala same steamer mei veg aur non veg dalta hai_,-1 +Ee saala hearts namde ❤️,-1 +Rana raand saala,-1 +Ye Rishabh ka avaaz saala bohot chubta h kaan pe😂😂,-1 +Ye nilya saala,-1 +Lauda saala bohut maar khayega,-1 +Saala PAK wc Jeet sakta h,-1 +Saala standard bhi same liya hai🤦‍♂️,-1 +Saala marketing campaign ka puch rhe the,-1 +Saala pata hota ye sab puchne vaale h,-1 +Saala sukrut se acha mei bolta,-1 +Saala sms spam karta hai,-1 +Saala bcci kitna politics koi players ko jaane hi nhi dete 😂,-1 +Yedzavi saali😂🤦‍♂️,-1 +Bhosda kar diya lavde subhe subhe,-1 +TCS deke already mood ka bhosda hoga,-1 +Vohi tho bhosda hai na bhenchod,-1 +Bhosda hua hai tho hua hai 😂🤷‍♂️,-1 +Bhosda hua hai 😂,-1 +Haha arey yaar bc dimag ka Bhosda,-1 +Saki naka maa ka bhosda 🥺,-1 +Are dimag ka bhosda horay,-1 +Aisa bhosda hua na bc,-1 +Dimag ka bhosda hai loda,-1 +Morgan aur Warne ki maa ka bhosda,-1 +Jay Shah ki maa ka bhosda,-1 +Chetan Sharma ki maa ka bhosda,-1 +Kohli aur Shastri ki maa ka bhosda,-1 +Baap ka bhosda?🤔,-1 +Unka khudka bhosda🤔,-1 +Dimag ka bhosda ho gaya .. me updates check kiya playstore pe udhar bhi kuch nhi,-1 +Mera wo din jo bhosda hua tha,-1 +KL ne kal bhosda band kar diya naa ..,-1 +Iski maa ka bhosda 😂😂😂,-1 +Phir bhi Pant ki maa ka bhosda,-1 +Kal jitna bhosda hua tha utna aaj hasne mil raha hai😂🙏,-1 +Mera bhosda ho gaya hai 2 ss me 😂,-1 +Uski maa ka bhosda aur swich ki bhi maa ki chut,-1 +DC karta aur haar jaate toh dono taraf bhosda hota,-1 +Teri maa ka bhosda lavde🤣🤣🤣🤣🤣,-1 +Dimag ka bhosda + laughter in one lab,-1 +Ab bc haara to itna bhosda hoga na😂,-1 +Mkc dimag ka bhosda kar diya re yeh Mustafa,-1 +But jhatu overrated wala cmt follow karta hai toh dimag ka bhosda hota hai😂,-1 +Lund jaisa din gaya tha ab tak ka mkc sachi itna bhosda hua hai na subhe se,-1 +Kya bhosda hai re dimag ka 😂,-1 +Bc dimag ka bhosda,-1 +Holder tujya aaich bhosda,-1 +Unki maa ka bhosda,-1 +Kohli chya aai cha bhosda,-1 +Baki sabki maa ka bhosda bhenchod,-1 +Zoo walo ki maa ka bhosda,-1 +Bhosda hai bhai,-1 +Bhosda band rakh na,-1 +1 msg 5 logoko ka bhosda😂🤝,-1 +Next time lec kab hoga bc shamko vagere bhosda ho jayega,-1 +Nidhi ki maa ka bhosda🤦‍♂️,-1 +Teri maa ka bhosda,-1 +Teri bhi maa ka bhosda,-1 +Pehle khwaab dikhate hai aur phir bhosda karte hai,-1 +Arey bhosda ho gYa re padh ke vo 😂😂 me bola ye sab kya baat kar raha hai,-1 +Maa ka bhosda re 😂,-1 +Arey haa acg bhosda ho gaya dimag kaa,-1 +Oneside .. 1st time Sheldon ka bhosda 😂💀,-1 +Kya bhosda hai ye,-1 +Not out hota to bhosda hota Bharat ka😂🤦🏻‍♂️,-1 +Ek to bc pehle se bhosda hua hai,-1 +Arey Bhosda ho raha hai re gharpe baith ke 😂,-1 +Barish kam tha kya ki ab ye light se bhi match ka bhosda hone laga hai😂,-1 +Exam ke time hi dimag ka bhosda karta hai ye teams,-1 +Ufff... jo half India ka bhosda hoega na😂,-1 +Either luck ya weather... Donomeise ek har baar apna bhosda karte hai🤦‍♂️,-1 +Jitne baar dekh raha hu utne baar dimag ka bhosda ho rhaa hai,-1 +Isne bekkar bhosda kiya😂,-1 +Abe unki team ka bhosda ho raha hai😂,-1 +Mkc dimag ka bhosda,-1 +Ha re mkc dimag ka bhosda,-1 +Wo bhi yedzava khud hi bhosda karleta hai khudka😂,-1 +Bhosda hua RSA ka😂😂😂😂,-1 +Ruk madarchod tereko nikalta hu,-1 +Waah madarchod variation de rahe hai😂,-1 +Ha idhar bhenchod film ban gaya hai,-1 +Bhenchod ye aisa mereko ek bhi nahi aaega😂,-1 +Kya bhenchod chutiya jaise bithake rakha hai,-1 +Pachi peli baju modhu karine sui jase bhenchodina,-1 +A bhenchod degree nhi denge MATLAB kya hai aai chi gand,-1 +Bhenchod. Abhi tak last wala banda so k uth jana chaiye tha,-1 +Bhenchod mei lec mei book bahar rakha tha mechanics ka mereko bolta hai class ke bahar nikal dunga book andar rakh🤦‍♂️,-1 +Bhosdike brag mat kar .. complete kar 😂,-1 +Teri gand bhosdike ...😂 Pehele tu time pe aana sikh baadme logoko gyaan chod lund sala 50 min bc ?,-1 +Tereko acha laga hona na lavde,-1 +Tereko kya tu placed hai lavde,-1 +Tu bhi le kt lavde sikhega kuch,-1 +Abe shakkar ki shakkal ke lavde,-1 +@919619402076 lavde ayega kal ?,-1 +Arey ye lavde kaa kya lekin ?😂,-1 +Kya ho gaya lavde subhe subhe 😂,-1 +Batana lavde tp kyu kar raha hai,-1 +Phir lavde ka haat nahi uthata😂,-1 +@917045624062 lavde mutr tha🤣🤣,-1 +Lavde padh raha hai kuch ki nhi ?,-1 +Tu lavde itna bada list banaya 😂,-1 +Bc direct naam lu kya vo lavde ka,-1 +Abe lavde already ye grp hai na😂,-1 +Kalse clg chalu ho raha hai lavde,-1 +Tu paani bharne jaa na lavde bhag,-1 +Mat Gand me ghuso re lavde log 🙃,-1 +Aee lavde ye kya bhej raha hai?!😂,-1 +Lavde 6 tarik nhi samaj aata kya ?,-1 +Tmkc lavde kalyan aake marega bsdk,-1 +"Ye lavde ka naam batao , fast fast",-1 +Ha lavde meihi bheja wo grp pe😂😂,-1 +Aur kya lavde table pe rahege kya ?,-1 +Likh ke bhej rr lavde @918291289736,-1 +@919029329920 samaj raha hai lavde?,-1 +Lavde vo 9 ka 12 tak chalega phir 🙂,-1 +Lavde 😂 pura 1st yr kya kiya 😂😂💀,-1 +Kyu lavde marksheet nhi chaiye kya ?,-1 +Tereko waisr bhi draft aata hai lavde,-1 +Arey lavde notebook ka puttha phad na,-1 +"Lavde, 24 to hai Tereko @919619402076",-1 +Raftaar pe aisa hi banaunga ruk lavde,-1 +Abe lavde idhar gand phat gaya naa 😂,-1 +"Try kar na lavde, samajhta nai tereko?",-1 +A lavde tu dimag ka maa mat chod haa .,-1 +Lavde copy case pakda tho fail hai fix,-1 +Lavde me bola ye kya language hai 😂💀,-1 +Lavde chod ke khush tho tu bhi tha 😂💀,-1 +Sab lavde tere jaisa telecast nhi karte,-1 +Tag param ko kyu gali de raha hai lavde,-1 +Tu bhej yaha lavde teri gand marta hu😂,-1 +Aur lavde ko core mila to better chahiye,-1 +Jaise ki bhaut dhayn dene vala hai lavde,-1 +"Phir iska hath , muu sab dukhega lavde ka",-1 +Pateli dekho ye lavde ki wo grp pe😂🤦‍♂️,-1 +Naam likh ke mail bhejege bhen ke lavde 🙃,-1 +Lavde tera de 2 job offer leke baitha hai😂,-1 +Tu bol raha hai iske lavde lagna confirm hai ?,-1 +Ye lavde ko online me 50% marks aata hai bc 😂,-1 +Lavde ijjat se ans diya tho bhi problem 😪🤷‍♂️,-1 +Ha bc fukat aur logoke lavde nahi lagne chahiye,-1 +Aee lavde 62 kya gand mara raha hai wo grp pe😂,-1 +Dekh lavde already 6 graph le rahe hai ye lab mei,-1 +@917045721166 lavde sab option C mark kiya kya?😂,-1 +Doesn't matter re lavde sabko 10 pointer hai🤦‍♂️,-1 +Me fast train vale patri pr jaa sakta tha lavde 🤦‍♂️,-1 +Are lavde meine ye writeup finalize karke bheja hai😂,-1 +Arey lavde bsdk ... Dimag ka maa mat chod ye sab batake,-1 +@919221126032 lavde black magic karna chalu kiya kya?😂,-1 +Tho itna akkal tha lavde tho vaisa harkat nhi karneka naa,-1 +Chup lavde ... Engineering leneke pehele sochna tha ye sab,-1 +Comps valo ko knowledge rahega re ... Umang ke lavde hai 😂,-1 +A lavde mera 5 min chalega ... Gonna clear in 1st attempt 😎,-1 +Sudhar jaa lavde abhi bhi thoda din hai interview ke liye 😂,-1 +Arey lavde itna intrest ? .. mereko bura lag raha hai yaar 😂,-1 +Btw DSP mei lavde lagenge tab ke liye stickers ready hai😂🤦‍♂️,-1 +Aee lavde sabji bech raha hai kya?? Bargain kar raha hai jhatu😕,-1 +Bc 2nd dose ko 1 month baki hai aur clg jaana hai lavde ko😂🤦‍♂️,-1 +If you thought ye line padhke me nhi marega tho tu galat hai lavde,-1 +Aur @917045721166 lavde he asked for syllabus copy not copy notes😂,-1 +Lavde ke baal usko kuch nhi bol sakta tereko pel dunga idhar hi 😂😂,-1 +Arey aa @919960383380 lavde honede naa lag kya taklif hai tereko 😂🤦‍♂️,-1 +Tu chutiya hai lavde aisa kuch nhi hote rahega gand mara aur shant baith jara,-1 +Bc mei aisehi baitha hu re achanak samjhega 62 chalu hai to lavde lag jaenge😂,-1 +Arey lavde re viva valo ka raat tak jata hai baki acc. To schedule chal raha hai naa,-1 +Soo me bola lavde 60₹ me picture dekhne aya hai tho 60₹ jaisa harkat mat kar 😂🤦‍♂️,-1 +Dekh lavde jyada bhankas mat kar mere leader ke sath... Tere bus stop pe bomb rakh dunga😕,-1 +Mereko 54 chaiye bc ye 5 mark ke numerical se mera kuch nhi hoga .. vo bhi kuch samaj nhi aa raha hai kaise likha hai lavde ...,-1 +Whatsapp paagal ho raha hai emoji me,-1 +Koi mereko ye bolega to main paagal hi ho jaunha😂,-1 +Me chutiya thodi hai ... 🤦‍♂️,-1 +World is full of chutiyas🤷‍♂️,-1 +Aagaya beechmei chutiya sala😂,-1 +Chutiya hai @918291289736 lund,-1 +bahut chutiyapa karke ho tumlog,-1 +Chutiyapa badhata ja raha hai😕,-1 +Phukat ka chutiyapa hai uska bc,-1 +Tu chutiya hai but toxic nahi😂,-1 +Yaar but ye kya chutiyagiri hai☹️,-1 +Emiway Bantai tho chutiya hai ..,-1 +Toh ho sakta hai tum chutiya ho🤭,-1 +Chutiya hai kya @918291289736 lund,-1 +Aur tum Ole ko chutiya bolte the😂,-1 +Ye jhatu Raftaar ka fan hai chutiya,-1 +Bhai sab chutiyagiri chalu hai re😂,-1 +Usko bol Canada chutiya aur leave✌️,-1 +Bhadvo itna chutiya samajhate ho?!😂,-1 +Ye kya chutiyagiri tha yaar 💀😂😂💀,-1 +Chutiya meet ke tym video on kr diya,-1 +To bc video wala chutiyapa kyu kiya?!,-1 +Chutiya hai abhi tak tt khel raha tha,-1 +Chutiya hai wo... dhyaan mat do aap...,-1 +Chutiya team ke samne hai... jeet jaenge,-1 +Ha jis din koi chutiya nahi tha tab na🤔,-1 +_Better stay alone than with a chutiya_✌️,-1 +Chutiya hai 10 min ka usme bhi dhak dhak 🙂,-1 +Tough paper is better than this chutiyagiri,-1 +IS ka viva toh chutiyagiri hi tha bc😂🤦‍♂️,-1 +Megashyam chutiya hai kuch bhi chahta hai 🤭,-1 +You think sirf tum usko chutiya bolto ho??😂,-1 +Kyuki op nhi aata aur chutiya banana padta hai😂,-1 +Kya chutiya jaisa baat kar rahe hai apun 😂🤦‍♂️,-1 +@919029329920 dekh ye bhi chutiya bol raha hai😂😂,-1 +Chutiyagiri hai re bc mere sath hi hota hai sab 😂,-1 +Arey ye batch ka alag chutiyagiri hai re ek tho 😂,-1 +Matlab dhruv chutiya hai aisa bolneka hai tereko?😂,-1 +Mereko tho bhaut hasi aaya ye chutiyagiri pe😂🤦‍♂️,-1 +Aur ye lund kind chutiya sala 3 group pe bhejta hai,-1 +Lekin yeh chutiya shant he nahi hora tha lund ka ball,-1 +Itna chutiya viva hai na bc genuine bhi nhi lag raha bc,-1 +Please yaar. Ye sab chutiya giri hai. Padhne nai hoga ye,-1 +Koi toh chutiya RBL bank mei place hua na ye grp wala?😂,-1 +1 life toh chutiya team ko support karke waste gayi hai🤭,-1 +Mkc paper ke time bohot chutiyapa kiya hai re ye haarCB😂🤦‍♂️,-1 +Jo hone vala hai hoga . Bc idhar chutiya jaisa discussion kyu ?,-1 +Isiliye koi toh chutiya grp ne submit kiya hai apnemeise bhi🤦‍♂️,-1 +Chutiya jaisa 3-4 hr baith ke code run kiya dekha tho jindagi jhat,-1 +@919819821536 ye group ka rehke bhi chutiya ban gaya 😂😂😂💀💀💀💀,-1 +"Chutiya hai, khali usko naam chahiye sabke paper me kaam nai karna kuch",-1 +Tum jaise logo ki vajha se anime dekhne valo ka chutiya me ginti hota hai,-1 +"Aur ye stage 2 chutiyagiri hai , cuz ek jan ne upload kar diya tha link pe",-1 +Ye emoji aaya ki samaj jao kuch to chutiyagiri kiya hai 61/62/63 ne😂🤦‍♂️,-1 +Ek chutiya pucha hai agar core mila to next ke liye eligible honge kya😂🤦‍♂️,-1 +Kisi chutiye ko Leonard nahi bolunga aur jibitesh ko chutiya nahi bolunga😂✌️,-1 +Arey kya chutiyagiri hai ? Mereko tho lag raha hai sirf darane ke liye likha hai vo sab,-1 +Chutiya jaisa tha mam ne boli hai itna kiya hai form bhardo utna hrs ka tho fill ho jayega,-1 +"Bas itna confirm karke bol ki , by any chance vo 4 question vala chutiyagiri IA2 hai kya ?",-1 +Abhi kya uddhav thakrey ko phone karu ki mera kuch chutiya sir hai usne bola try karne to tu essential chalu jar de,-1 +Gaanta instructions bc agar mereko pata hota isme ye sab chutiyapa hota hai ye BA mai ko mai ye course leta hi nahi,-1 +Tu tho hass hi mat bsdk ... 😂,-1 +Secret code bhi deta hai bsdka,-1 +Bsdk phone mei leke ghumta hai,-1 +Bsdk tu ghar se bahar to nikal,-1 +Acha teri gand me .... Bsdk 😂,-1 +Aare rejected in hr round bsdk,-1 +nai kuch nai pehenta mein bsdk,-1 +Bsdk Tu hi hota haii mere pehle,-1 +Bsdk yoga mein surname nai hota,-1 +Me aya aur leave karta hai bsdk,-1 +Sbreyans bsdk natak kar rha hai,-1 +Tum bsdk idhar kyu bajj rahe ho,-1 +Isse attendance milta hai bsdk?,-1 +10min tak shant baitha tha bsdk,-1 +Toh tune submit kidhar kiya bsdk,-1 +Bsdk WhatsApp khola isliye nikala,-1 +Tereko bahut panchayat hai bsdk🤨,-1 +Bsdk gali khane ka kaam mat kar 🤫,-1 +background audio off karde na bsdk,-1 +And @919619402076 cycle chala bsdk,-1 +Bsdk ek faculty nhi hai 2 hai sabko,-1 +Tab bsdk tu paida bhi hua tha kya?🤭,-1 +__😂 bsdk start karke rakha hai kya ?,-1 +Haana bc satisfaction nqi hai bsdkeko,-1 +Tu bsdk kabse lec baithne laga sab 🙂,-1 +Bsdk 3 slide were images from internet,-1 +Arey bsdk 3 hr pehele attack mat de 😂,-1 +dhruv bsdk reply all kyu kar rha hai!!,-1 +Bsdk😒 I exercise unlike you low shits,-1 +Bsdk. Kya teko bola tha na chat se kene,-1 +@917045721166 bsdk itna vella hai tu?😂,-1 +rohit bsdk apna pasport banane gaya hai,-1 +Hass kya raha hai bsdk band kar 😂🤦‍♂️,-1 +Aniket bsdk apna naya grp toh bana a4 ka,-1 +Udhar bsdka jil is ke liye ro rha hai mc,-1 +Go to 10-15 floor and drop yourself bsdki,-1 +Pehele bar online exam de rha hai kya bsdk,-1 +To bsdk tereko sachmei Meghashyam laga/i?😂,-1 +ek hi pdf bana bsdk question uske niche ans,-1 +Tereko aur kitna positivity chahiye bsdk?😂,-1 +Bsdk udhar kyu hass rahe ho sab 😂😂😂🤦‍♂️,-1 +Padhai kar phir bsdk kal diagram banana hai,-1 +Exam ke dinn bsdk esa copy N ol maangte hai,-1 +Bsdk .. I mean it 😂🤦‍♂️ abhi patla hai tu,-1 +ye bsdka shreyans ne sab galat banaya hai bc,-1 +Bsdk tereko kya wo civil engineer wala laga?😂,-1 +@919930861840 bsdk readymade chahiye tereko?!😂,-1 +Bsdk khudpe taras khaa sirf ... Vo mc log pe nhi,-1 +Bsdk isme agar 100 mask rakhna hoga toh kaise bsdk,-1 +Bsdk kt ke chaihiye railway concession ka form nai,-1 +Bsdk mc link bhejne bola toh bhejne nai hota tereko,-1 +Bhadve @919892400909 early morning konsa pooja bsdk,-1 +Bsdk this is nothing as compared to the portion 😂👀,-1 +Rohit toh bsdka toilet mein baithe baithe join kiya,-1 +Bsdk tu dono mein se kuch bhi nai dekha and bak bak😒,-1 +Ha ik ... 😂 Lekin ye log bhaut optimistic hai na bsdk,-1 +Bsdk mil raha hai likhna sure ki kya maa chod raha hai,-1 +Bsdk ego kya?! _wapas viva do or we will fail you_ bola,-1 +To javab dena bsdk sir ko...idhar ka zav zav kr raha hai,-1 +Hote rahega bsdk idhar batake logoka gand phadna jaruri hai ?,-1 +Tu College nhi aana chahiye bsdk .. tere pair me laga hua hai naa 😊,-1 +@919221126032 bsdk ijjat ko kam hua wo badhaneka samay aa gaya hai😂,-1 +Phone me baat kar raha tha bsdk mere gadi ka headlight uske muu pe 😂,-1 +Bsdk sabke samne ppt nhi aata use karne aisa image hua hai tera😂🤦‍♂️,-1 +Aur ab wo bsdk galat ppt ki jagah galat sticker bhej ke hag dega😂🤦‍♂️,-1 +Bsdk...1200 words bhi yaad kiya tha🥺🥺🥺...aabhi bhi list hai mere pass,-1 +Bsdk aniket khud bsdk biswa jaisa dikhta hai and background batman ka😒😂😂,-1 +bsdk mein a4 mein tu a3 mein baitha hai kaise remove kar sakta humein terko,-1 +A bsdk jaa na ek tho kuch bhi news forward karta hai bc upat se hass bhi rha hai,-1 +Bsdk khali yeko mail karne hai...baaki sab na bol rahe hai ...kyu ego pe le rwha hai yaar,-1 +Bhai tu kiya hai bsdk .. ek viva ke liye tere vajha se 15 min waiting area me baitha tha me,-1 +Bhai hum log mein to 3 meeting se yahi bol raha hai...but alag baar ussko he components deka aata tu ki bsdk tu he try kr😑😑,-1 +Bsdk tu 1st sem me jitne bhi baar fail hua tha uske liye time pe apply nhi kiya thaa .. tho bsdk 250 ka 500 hua rahega per subject ...,-1 +Bsdk aaj birthday hai....naruto ne 16 saal mein world ko bachaya tha....mein 21 ha hogaya yaar....I don't even have genjhutsu or ninjhutsu 🥺,-1 +Lund ke baal bola tha karle 😂,-1 +@918291289736 toh lund hi hai😕,-1 +Lund bhai jaisa hu vaisa hu 😂,-1 +Tu kyu dilata hai tu hi lund hai,-1 +Better be unemployed than lund✌️,-1 +Emi search karta hai lund😂🤦‍♂️,-1 +Lund bola isse farak padta hai?😂,-1 +Tumhari gand me lund sabke bc ...,-1 +Ye Lord lund hai .. iske liye ...,-1 +Jiska handwriting lund jaisa tha 🙃,-1 +I am an attendee and padu lund is not,-1 +Mei bhi kis lund ko bata raha hu🤦‍♂️,-1 +Maa chudane ko Mc likha ye lund(mihir),-1 +Pagal insaan se bhi jyada bada lund hai,-1 +Teri gand me lund .. kya kar raha tha 😂,-1 +Australia javano loda kaangaaroo jevo lund,-1 +Arey Bhai sab Lund log hai apne batch me 😅,-1 +Bass itna hi up to date hai 😂 baki lund hai,-1 +Being a lund is not same as being a kid🤦‍♂️,-1 +Ye ganya lund hai samne mere 😂😂🤦‍♂️🤦‍♂️🤦‍♂️,-1 +There is a difference between job and no job...lund🤭,-1 +@919892400909 lund this is how you introduce a new sticker😏,-1 +Lekin mulund mei police station ke baju wala dukaan chalu hai,-1 +Lund hai re pajji 😂 dimag me jata hai lab hi start nhi kar raha,-1 +Kya lund log hai bc paji aaya nahi phir bhi meeting chalu karte hai,-1 +Are rohit jagda kar raha tha aur yeh megha has raha tha dono lund k baal,-1 +See I told you I am not a lund... Won't risk a job for a bet from a lund😂,-1 +Abe lund tu sir ko puchega sir aapko meri gand maarni hai? Toh voh ha hi bolne wala hai 🤦‍♂️😂,-1 +Puchta hai thosar ko ki chodu kya? Thosar bolta hau yes.,-1 +I am not explaining to a Randi,-1 +Ha bhai Rohit tu randi hi hai😂,-1 +Aah gaya na line pe randi saalla,-1 +Randi ko kya explain kar raha hai,-1 +Bhaiya jaisa randi chale mat karna,-1 +Jiska naam liya tha wo randi hai😂,-1 +Vocal for local suna hai randibaaz ?,-1 +Fb se image uthaya hai re randi🤦‍♂️,-1 +Shii re Ab randi nhi bolega tho kya bolega 🙃,-1 +Aur jo bolega ja puchake aa wo bhadva randi!!,-1 +Andi mandi Sandi jo ye photo grp pe bhejega wo bhadva randi,-1 +61 bolega mere sab answers galat hai 62 phir usko randi bolega😂,-1 +Harami manush 30 min mein palat gaya,-1 +Bday hai aur ye lodu clg aane na bola,-1 +Ye lodu Rohit ko sharam nahi aata kya?!,-1 +Isiliye ye lodu ke sath kabhi seedha baat nahi karneka😂,-1 +Vohi tho .. worst than _chal be lodu_ winning this Cup 😂🙂,-1 +Ye is lodu ke pass hai and all we can say is @919029329920 TAG,-1 +Ye dimag ka bhosda kar diya hai,-1 +Yaha bc dimag ka bhosda hua hai,-1 +Vacation mood ka bhosda na kar🙂,-1 +Aee Naruto phan bhosda band rakh,-1 +Bc dimag ka bhosda nhi karneka 😂,-1 +Arey phukat kyu dimag ka bhosda palneka,-1 +Abhhey bhosda kar rahi hai ye dimaag ka,-1 +Dimag ka bhosda hua ho tab sunne jaisa hai😂,-1 +Pajji se jyada ye dimag ka bhosda kar rahi hai,-1 +Iske vajha se aaj ka din ka bhosda ho gaya full,-1 +Ye kya dimag ka maa bhosda kar raha hai 😂🤦‍♂️,-1 +Bc vapis do kya hota hai ree dimag ka bhosda 😂😂😂,-1 +Bhai agar interview ke liye bulaya na to bhosda hoega😂,-1 +Kya malum re baithe baithe bhosda hua hai dimag ka 😂😂😂,-1 +Nhi karna hai yaar kya bhosda hai dimag kaa 0 bhi nhai detr,-1 +Arey yaar tmkc .. kya ho gaya hai bhadve ... Dimag ka bhosda mat kar,-1 +Arey BC itna mast vatavaran hai yaar chutiye jaisa gharpe baithe hai dimag ka bhosda ho raha hai,-1 +Bhai 🥺🥺 Kakashi gone?🥺🥺🥺🥺...bc meko rona aa raha hai kal se....asuma jiraya bc...itachi....yeh pain ki ma ka bhosda....yeh danzo ko to mein gaand mein bamboo daalega😒,-1 +Abe kya gaand maati kar rhe ho,-1 +Mast gaand maar raha hai sabki,-1 +Maanas gaando no thaay jaay to su,-1 +Ye dekh ke jo gaand phata hai na😂,-1 +mera toh abhi se gaand fat rha hai,-1 +For hum log bhi bolenge ab gaand mara,-1 +Ha to gaand marneko time lagta hai na😂,-1 +Sushant ne ko gaand mardi IT walo ki dp mai 🔥,-1 +Other way around hoga...🤷‍♂️ didi gaand maregi,-1 +"Itna nahi, but yes offline me gaand phatta hai.",-1 +Aare over react aatle Manas gaando na thai jai??,-1 +Are woh poora gaand maarne ke baad end mein book pucha,-1 +Dekh bhai aaj mera gaand mein ungli karne ka mann hai....better don't tempt me,-1 +"Kuch gaand nahi maarte, pucha kitna lecture attend kiya. Maine bola pura thoda to bolta hai ""phir""",-1 +Almost bhadva nikal gaya tha 😂,-1 +Toh fir sabse bhadva faculty kon hai,-1 +Subhe 7 baje uth ke dekh ta hai bhadva,-1 +Bhadva ZS ka form bharna bhi bhul gaya,-1 +Bhadva sala 😂🤦‍♂️ thik hai likh diya,-1 +2 baar meeting cancel karvaya hai bhadva,-1 +Saala bhadva Shimpoli me ghum raha hai😂,-1 +Ye bhadva unknown se kind kab ho gaya 😂😂,-1 +Iss bhadvagiri ke wajah se kisiko corona hua toh,-1 +"Bhadva 22 min late aaya, phir bhi sorry nai bolta",-1 +Arey bc mereko abhi vo failure dikh gaya bhadva 😂,-1 +apne liye bhi different question set banyaga bhadva🥲,-1 +Ha na ... Emiway sunta hai bhadva raftaar ka choda 😂,-1 +Me usko hi dekh raha hu kabse .. at last I confirm ye vohi bhadva hai,-1 +"Lekin ye ISD ke saath nahi hoga, bhadva break me mera mock viva liya tha",-1 +Mere baju me Mustafa baitha tha sab ko net connection diya tha. Lekin woh bhadva search he nai kar raha th🙂😂,-1 +30 sec k andhar ans chahiye bhadve ko,-1 +Bhadve subhe bola Manchester is blue😂,-1 +@919930861840 teko mila na link bhadve,-1 +Sharam naam ka chij hi nahi hai bhadve ko,-1 +Arey bhadve hum khud 11 ko aa rahe hai 😂🤦‍♂️,-1 +Acha gana bajj raha tha ruk gaya ye bhadve ke vajha se,-1 +"@919930861840 TAG, ye bhadve Rohit ko Naruto kyu suggest kiya?",-1 +Are lauda. Aadhe se zyada log existing he karte hai,-1 +Saala kya pucha samjha hi nahi,-1 +Saala koi kuch padha bhi hai kya?,-1 +Saala usme bhi 15Rs ka to xerox lagega😂,-1 +Saala sab bakwas question hi puch rahe hai,-1 +And saala attendance ka mail dad ko jaata hai,-1 +"Saala sharam bhi nahi aa raha abhi, hasi aa raha hai😂😂😂",-1 +Haa na saala laptop chodke bhi nahi jaa sakte iski wajah se,-1 +Ye saali board pe hi sikhati hai😂,-1 +Abhe yede uske side se bol rha hoon,-1 +Ha na bc kuch nai kar sakte 😕,-1 +Are nahi bc 3&4 dono hue hai😂,-1 +magaj no atho thay gayo che bc,-1 +BC Mustafa is the topper in EV,-1 +Bhaut dhak dhak ho raha hai bc,-1 +Ha laude bc 12 question pucha,-1 +Baap ka naam q yaad rakhega bc,-1 +Bc mereko yaad nai tha marks😂,-1 +Bc mera fatt bhi raha hai mera,-1 +@918291289736 kitna time bc ?,-1 +Bc pura likhna padta hai re 😂,-1 +Bc iska toh operation hota hai,-1 +Ye sab karke faayda nai hai bc,-1 +Ye ESD lecture kidhar hotay bc,-1 +Bc yeh mazaj hai...lab nai😂😂,-1 +Are bc wo bhi hai ekdum😂🤦‍♂️,-1 +lec chalu hai ki video call bc,-1 +Ye Amrita ka no. Do koi Tho bc,-1 +Ha bc tumne khudka daala hai😂,-1 +Btw 5-0 bc sharam nhi aya ? 😶,-1 +Kitna faaltu ppt banaya hai bc,-1 +Kiske parents itne free hai bc,-1 +Are bc project is exp 1😂🤦‍♂️,-1 +Are bc 4 missed calls the re..,-1 +Tum attend karte ho bc ? 🤦‍♂️,-1 +Maja ko umnag ka aata tha bc 😂,-1 +Bc itna to freedom dena chahiye,-1 +Mera 1st bhi nai aaya ab tak bc,-1 +Bc out dated banda hai re bhaut,-1 +Aur 10-12 logoka baaki hai bc😂,-1 +Oh bc rivals ke fans ho tum😂😂,-1 +Bc tu nervos kr rahi hai yaar🥺,-1 +Tumhari thodi der hi phategi bc,-1 +Bc mei khud ek answer nahi diya,-1 +Artitecture of DSP processor bc,-1 +Yaha bc screen share wagera hai,-1 +Bc mera naam hai🤦‍♂️🤦‍♂️🤦‍♂️,-1 +Bc 2 din pehele bola ki ese hai,-1 +Bc log ijjat se bharo na please,-1 +Diploma waalo ko A5 me daalo bc,-1 +Arey bc ye icon kya hai yaar 😂,-1 +Pura ABCD bola kya N ke baad?😂,-1 +Arey yaar bc tum dono bhi 🤦‍♂️,-1 +"ye bc editor, communicator, ...",-1 +Nhi re bc kis muu se puchega 😅,-1 +Ye aarti ka mic faat rha hai bc,-1 +Koi nhi dekha janede bc 😂🤦‍♂️,-1 +Bc ye ninand sir ka story dekho,-1 +Bc project ke liye time nai hai,-1 +Bc kahase confidence aata hai?😂,-1 +Aare bc topic change karne daala,-1 +Bc yeh photo post karta insta pe,-1 +"Ye mcom, IS, SA, spa kya hai bc",-1 +F bc .. bhul hi gaya tha 😂😂😂,-1 +Arrey bc sharam hi nahi hai usko,-1 +nashik mei koi trip karta hai bc,-1 +Kitne group me hai bc 😂 hoga hi,-1 +Ye Rohit bhi colorblind hai bc😂,-1 +humko reply nai bc @919619402076,-1 +Vince should sue the singer bc😂,-1 +Merko laga ki usse ek de dega bc,-1 +Usne bc 10 min pehle submit kiya,-1 +100 100 taka accuracy ave che bc,-1 +Bc tere wajah sab ko karna padega,-1 +Koi aur hota to bhadak jaata bc😂,-1 +"Ha na bc, Covid chhota cheez hai?",-1 +bc ruk jaake usko remove karta hu,-1 +Sala aapna nasib he kharab hai bc,-1 +Bc abhi tak grp 3 chal raha hai ?,-1 +Microsoft bc glt details deta hai,-1 +Are bc viva hai. Usme yeh sab q🤔,-1 +Time management nai aata inko bc,-1 +Ye sab bc pyramid scheme hota hai,-1 +Bc log into bura bhi idea nai hai,-1 +Bc merko konsa grp join karna hai,-1 +Aur me pehela naam bataya apna bc,-1 +Itna accha subject bigaad diya bc,-1 +aree bc dimag ka bsda ho gaya hai,-1 +bc a3 mein abtak maam mute hi hai,-1 +Haana bhai😂😂😂 bc...kal raat se,-1 +Yed zhavi hai re bc chod mkc uski,-1 +Az yeh kya hi song hai bc 🤦‍♂️😂,-1 +Mane toh aaje ungh aj nai aave bc,-1 +I cant tell how happy i am now bc,-1 +Ye ICT wali ma'am pagal hai re bc,-1 +Aare bc humara leader is sleeping,-1 +Bc ESD ka IA2 is case study ppt🥲,-1 +Arey aaaeee kya hai yee bc 😂😂😂,-1 +Haane bc😂😂😂😂😂 from 1st epoch,-1 +Waah bc finally something good 🤝,-1 +Yz hai mere group vale bc .. shii,-1 +Are bc ab tak haare nahi apan?!😂,-1 +Tereko mere se zyada kaise mila bc,-1 +Are but itna sab ek saath kaise bc,-1 +Sab ko presenter q bana rahe ho bc,-1 +Are bc ye exp3 BVLSI ka baki hai😂,-1 +Bc kya randap chalu hai re tumhara,-1 +Tumhara bc 40 Marks ka paper tha🤔,-1 +warna mai complaint kar raha hu bc,-1 +"Mereko lena tha bc, Now I regret☹️",-1 +"Nai na, bohot garmi ho raha hai bc",-1 +Ha na bc mention karna chaiye naa,-1 +Sir log note bhi karte hoge kya bc,-1 +Laptop aag ka Gola ban gaya hai bc,-1 +Tame loka bc mane su sambdhavo cho,-1 +Arey bc 😂😂 kya bakchodi hai 😂😂,-1 +Magaj no attho kari nakhyo chhe bc,-1 +Bc ye sl haat bhi nai rahi fatafat,-1 +"Ha na bc, LTI me bhar diya jaldi🥲",-1 +Bc mene teko call bhi kiya tha😒😒,-1 +Ruko bc msgs hi disable karta hu😂,-1 +ABCDEFGHIJKLMNOPQRSTUVWXYZ🤫🤫🤫🤫,-1 +Ha toh unko bhejne kya hota hai bc,-1 +__😂😂 bc jil to andar le liya hai,-1 +Idhar bc mei soya tha kabse😂🤦‍♂️,-1 +Ha vahi voh compliment kaise hua bc,-1 +Are bhai kuch bhi bolta hai yeh bc.,-1 +Bc wifi barabar nai chal rha tha 😂,-1 +Bc code explanation chal raha hai🥺,-1 +Aaise he jo man kiya de diya hai bc,-1 +Bc ...pura prospect squad tha....😒,-1 +Are viva me aaisa kon puchya hai bc,-1 +Bc reviva hai ki nahi bola bhi nahi,-1 +Bc 12 mese 2 ko he pass Kiya hai 😂,-1 +Bc mail dekho...project approval ka,-1 +Ayeeh .. bc me pass ho raha hu 🥺🥺,-1 +Bc mein kitna wierd lag raha hu😂😂,-1 +Bc param ke gharpe police aai hai😳,-1 +Bc isse acha tho me de deta 😂🤦‍♂️,-1 +Are bhai Sab Crack version dege bc,-1 +kch bhi fee structure banaya hai bc,-1 +Are bc abhitak nahi chhoda??😂🤦‍♂️,-1 +Kya bola hai bc😂😂😂😂🙌🏻🙌🏻🙌🏻,-1 +Rohit bc kitna dur baitha hai re?🤣,-1 +Bc sabse sirf party le raha hu re🥲,-1 +Bc mera prac 57% hai ESD ka 🤦‍♂️😂,-1 +Bc yaad hai na? 10% salary mera hai,-1 +Kuch qualification rakhna chaiye bc,-1 +Bc mere project ke time pe Isko call,-1 +Bc video banana baki hai abhi bhi 😂,-1 +Bvlsi khatam nhi hora bc idhar 🤦‍♂️,-1 +Bc phukat ka 1 ghanta le liya 😂😂😂,-1 +Woh patli waali maam bc gand maar di,-1 +Bc itna easy mereko puchna chaiye re,-1 +Arrey bc I’d card bhi dikhana hai 😅,-1 +Fir rohit bc jagda chalu kat diya bc,-1 +I was like ruk bc. Bata raha hu live,-1 +Bc ly projects ka approved list aaya,-1 +Lavda bc idhar bina tshirt baitha hu,-1 +Abhhey bc mera mai 3 log hi hai 😂😂,-1 +A3 ke group pe ek message nhi hai bc,-1 +Itna lavda lasun bc is it worth it ?,-1 +Bc yehi sab pdf apneko diya tha usne,-1 +Are maine photo nikala hai bc wait😂,-1 +Haana bc...aabhi jaan kha jayega yeh,-1 +Ye sab madrasi ladies yz hote hai bc,-1 +Aare bc randomly to gaali mat do😂😂,-1 +Bc ye Japanese mein urdu bol rahi hai,-1 +Bc screen share ka hi darr tha bc aaj,-1 +Aur bc bataya vo me likha bhi nahi 😕,-1 +Bc Anil sir bhi Khair chhodo bol diya,-1 +But bc yehi haal hai abhi ke liye😂🙏,-1 +Ye MNCC vali yed zhavi hai re zara bc,-1 +Yeh maam na bc Sab live mang rahi hai,-1 +Bc itna time mihir ke question ko??😂,-1 +Aare bc mein just aaya ibm ke test se,-1 +Mein tph bol rha hu abhi jaate hai bc,-1 +Manu kaka aa loko karta saaru rame bc,-1 +"Haana bc, phir Report kyu banane boli",-1 +shreyans bc free hai par natak karega,-1 +Kisko 40 ke neeche nahi hai bc😂🤦‍♂️,-1 +Kya bc time pass labbmein bhi rota hai,-1 +Are bc Indarjit sir ka lec chalu hai😂,-1 +Aare bc Wednesday to dekhte hai yaar..,-1 +Are bc tshirt pehenna padega phir🤦‍♂️,-1 +Bc mouse clicking ka awaaj aa raha hai,-1 +Bc 10-12 questions pucha yaad bhi nahi,-1 +Bc mere tere jaise logo k he laude hai,-1 +Bc yeh A1 wale alag alag news dete hai,-1 +Waah bc mereko bhi lobby mei daal diya,-1 +Bc mereko 1min 30 secs bhi nahi diya🙂,-1 +Bc itna ganda 1st time gaya koi viva😶,-1 +Abhhey ye Ishan Patil kaun hai bc 😂😂,-1 +Bc ye 5 baje waalo ka paper chindi tha,-1 +Toh kya bc ye BA mei maam kabhi aayegi,-1 +Idhar Aniket ka halat dekho bc 😂🤦‍♂️,-1 +Yeh bc har baar ek bande ko bolta hai,-1 +Par aaj shreyans bhi bohot bar haga bc,-1 +Ye wala experiment Apne mai kab hua bc,-1 +Kal bc meet mei sirf 25 log honge re😂,-1 +Usko koi jaake sunshine dedo bc😂🤦‍♂️,-1 +Haana😂😂 and vo bhi ebc valo ko 4 hai,-1 +Bolna chaiye tha tabhu he. Yeh rohit bc,-1 +Are bc BVLSI ka checking start kiya hai,-1 +Bc lab khali attendance ke liye hai na?,-1 +Bc exam ke liye preparation ho raha hai,-1 +Ha na. Last ka 1 nai aaya toh bc khatam,-1 +Q4 bc khudka calc. karna padega re🤦‍♂️,-1 +Bc yeh sab dekhke mei mails dekha thoda,-1 +Bc and I am searching for a job 😂🤦‍♂️,-1 +Are toh bc screen share karna padega na,-1 +Bc mereko dikha bhi nahi mera naam🤦‍♂️,-1 +Bc itna ijjat yeh group mein nai hota😂,-1 +Mei toh bol rha hu form hi mat bharo bc,-1 +bc vo midhya end karne ke liye yes boli,-1 +Aise hi bc naa context naa kuch 😂🤷‍♂️,-1 +Gand fattu log Umang ko karke dikho bc😕,-1 +Arey cricket khelne jana hai bc kabse 😂,-1 +Aksa ka plan banaya tho bhag ke aaoge bc,-1 +Meine bc ISE ke baad ye sab chhod diya😂,-1 +Are bc ICT mei apan sab chutiye hi hai😂,-1 +Bc public boat voat bana raha hai yaar🥺,-1 +Inderjit ko aur Kuch kaam nai hai kya bc,-1 +Woh bhi sube sube bc mast mood me aayega,-1 +Bc kidhar bhi baitho gand marane gaya bc,-1 +BC doubt puchne ke time pe mat nikalo na,-1 +Aur tu to bc baal bhi nahi katata😂🤦‍♂️,-1 +Harr lab me mic on karke hagta hai re bc,-1 +Bc kantala aa raha hai Q3 likhne 😂🤦‍♂️,-1 +Arey Lavdya .. kyu bc ungli karta hai 😂,-1 +Inko bc lms pe kyu rakhana hota hai🤦‍♂️,-1 +Lekin BC yeah partiality karna hi kyu hai,-1 +Bc mini Project is after semester 🙃🤦‍♂️,-1 +Bc kisi ka bhi kabhi bhi leta hai kya yeh,-1 +Bc itna control kiya tha mei ki na hasu😂,-1 +But yeh 5 rupees ka coin Kyi daala hai bc,-1 +Bc a3 ly ke grp mei a2 hai ki apan hi hai,-1 +Attendee hai bc abhi kaun nikalega tereko,-1 +Are yeh capgemini wale kya puchte hai bc,-1 +Sab bada bada hi bc no motivation 😂🤦‍♂️,-1 +Apun bc kitna gand ghiske likha kal bc 🙂,-1 +Me bc udhar pick a card bhej dunga haa 😂,-1 +Sab free baithe hai chat karne ke liye bc,-1 +In short siddhart is not eligible for ebc,-1 +Bc meko kitne baar diya h jab meet rakha h,-1 +Ye ckt lab mei bananemei maza aata re bc🔥,-1 +Are bc camera ko setup karneko time lagega,-1 +Aae bc....jitna ho pa raha hi dikhado🤷‍♂️,-1 +Hoga hi bc ... Pure duniya ka hyy lega tho,-1 +Aare bc grp 3 to bolo jheet gaye bhai🤷‍♂️,-1 +Faltu prize hua na bc toh muh pe naa boldo,-1 +Bc viva le rahe hai ki talashi kar rhe hai,-1 +Aaj 4 over ke match me 100 marunga bc 😂💥,-1 +Abhi bc circuit assemble karna padega🤦‍♂️,-1 +Dhruv bhai ka aatank hi khatam hogaya bc😂,-1 +Banao yaar kuch plan phir bc 70 din chutti,-1 +Bc mera koi mic and camera disable kr diya,-1 +Bhai teen patti khelne ka mannn ho gaya bc,-1 +Literally sir dukhne Laga ye padh ke bc 😂,-1 +Clg bc sachmei free vaccines de raha hai😂,-1 +Kya bc subhe subhe chalu ho jate ho😂🤦‍♂️,-1 +Ye sablog kya apna check karva rahe hai bc,-1 +Aur bc mereko acknowledgement kaise aaya?😂,-1 +Bc milke 10-10 lines type kar lo na tum log,-1 +Bc kisine nai dekha mene piercing karvaye🥺,-1 +Tame badha bc mane su samjhavo chho aam aam,-1 +Bc instruments Somaiya ke pass kyu nahi hai,-1 +Chalo naa bc me tho vacation se bol raha hu,-1 +Me rehta tho puchta nhi direct kar deta bc,-1 +Bass phir band kar diya me cancer hai bc 😂,-1 +Bc itna free ho tum ki Rohit ka baat karoge,-1 +Aama kantado nai aave tane bc @919892400909,-1 +Bc hua hai khush rehneka chod ke ye kya hai,-1 +Majboori mei kar rha hai waisa lagta hai bc,-1 +Are yeh umang meeting record q nai karta bc,-1 +Tumhara bc UCL pura saal chalu hota hai wo😏,-1 +Bc join kar raha hu to error aa raha hai mkc,-1 +Wo block diagram abhi sapno me aata hai bc😂,-1 +Aae bc...ueh sab thrash talk pc pe karo🤦‍♂️,-1 +Aa meditation na grp ma su wato chale che bc,-1 +"Ha na bc, itna jaldi idea kaise decide hoga?",-1 +Aare yaar bc.....ussko kitna mach mach hai😑,-1 +Nahi matlab bc harr subject me mai hi kyu 😂,-1 +Bc mostly sab ne dekha fir bhi wish nai kiya,-1 +Itna bada mail maine zindagi me nhi likha bc,-1 +Are bc mcq ke section wise hi elimination?😂,-1 +@918291289736 bhai ye sab kya hai bc 😂🤦‍♂️,-1 +Bc yeh to mere pe he aagaya🤦‍♂️😂😂😂😂😂😂,-1 +Ek baar to bc breadboard bhi kharab nikla tha,-1 +Mah government ka non-essentials bandh hai bc,-1 +Report bc khudke group ka bhi nahi banata hai,-1 +Bc kidhar Sonu Nigam ka aavaz kidhar Umang ka,-1 +Are bc ye DCN ke sab exp khatam nhi hue na?☹️,-1 +Me vohi bolu .. bc hass kya raha hai lavda 😂,-1 +Bc mereko samja hi nhi tha Yash kon 😂😂🤦‍♂️,-1 +Idhar team leader ka aata pata naii hai bc 😂,-1 +Kaam ka chij sikhana .. time nhi hai idhar bc,-1 +Arey bc vo A4 pe itna sara kya aaya hai 🤦‍♂️,-1 +Bc ek to faltu faltu papers collect kare chhe,-1 +Free hi baitha hai par kch kaam nai karega bc,-1 +Are bc kitne class room hai woh bata rahe hai,-1 +Kya bc hod government government kar raha hai,-1 +Bc vjti ma google na vajah thi ketlu hase avg,-1 +Arey bc accidently group icon open ho gaya re,-1 +Bc tera tag bhi TAG sunai deta hai aabhi🤦‍♂️,-1 +Majboori mei kar rha hai ~waisa lagta~ hai bc,-1 +Bc umang ko bola....par vo sunta he nai hai...,-1 +Ha but yeh log kuch bol nai rahe kuch nahi bc.,-1 +Bhai jo bolra tha uska bc woh deep me bolray.,-1 +Arey yaar 😂😂😂😂😂 bc kya yaad rakhta hai re,-1 +Bc karan ke baad stop....kisko le nai raha hai,-1 +Bc idr mai dsp ke paper me ss likh ke aaya hai,-1 +Naukri is the correct word but sounds odd bc😂,-1 +Ha kbc ke chode aaja tereko 10 crore deta hu😂,-1 +Ye miss mat karo bc gali dalo tag karke please,-1 +Are background me kitna aavaj aah raha hai bc,-1 +Sir basics nhi ata bc advance aata hai sirf 😂,-1 +Uthne se pehle bc lecture khatam ho jata hai😂,-1 +@919757163195 bc tu kaise puch sakta hau yeh😂,-1 +Bc ye IS subject ke liye feedback aana chahiye,-1 +Ye bc 14 credits complete karna compulsory hai?,-1 +Ha na bc 😂😂 vo alag vibe tha uss room me 😂💀,-1 +Complain kro principal ko bc itna kaun leta hai,-1 +Bc 20 min kya kiya ? Choco le raha tha kya uska,-1 +Mera toh bc wo umang pass honeke wande lagata h,-1 +Tho bhai kya hai kal mass bunk maar hi do bc 🔥,-1 +Bc ye ko mere se bhi bahut fast boleta hai 😂😂,-1 +Aaj bc 3-5 me nahi hona chahiye kuch bavasir 🥲,-1 +Inko sharam nhi aata bc... mail nhi daal sakte😕,-1 +Jiska BC lockdown se kuch lena dena bhi nahi hai,-1 +Jis ne share kiya woh leave kar sakte hai kya bc,-1 +Bc college ke 2nd day kya dekh liya tha😂🤦🏻‍♂️,-1 +Ulta line pe bhi itna bheed hota haj bc😂🤦🏻‍♂️,-1 +Bc while meeting is on I can't access teams🤦‍♂️,-1 +Ye sab likh ke alag feeling aata hai re bc🔥🔥🔥,-1 +@918291289736 tereko kya kya bol rahe hai bc ..,-1 +Achha bc ab tak vegan ka baat ho raha tha😂🤦‍♂️,-1 +City waala kuch bhi bole to believe kar leneka bc,-1 +Bc umang hi Bola tha na components list dalne ko?,-1 +Bc issmein melo nai lagta mein viva pass ho pauga,-1 +Aai chi Gand ... 😂 Kya bolu bc samaj nhi aa raha,-1 +Bc...3 mein tab pauchegqna...jab 1 and 2 hua ho🤭,-1 +@919819821536 kya pucha??? System kya hai inka bc,-1 +Bc public aksha nai aa raha hai aaj kal? Kya scene,-1 +Are bc aaj kal kuch college me dhyaan hi nai hai😂,-1 +Aabhi to bc gaamd maro...attendee banquet nikalega,-1 +Bc but meko kyi lag raha hai ki pel raha hoga vo🥺,-1 +Bc hole karvaye...yeh pehene padte hai for a month,-1 +jil is like accenture ka result kab aayega bc 😂😂,-1 +Bc nai to cover ma 501 lakhi ne andar 101 aj mukis,-1 +Itna fees badha diya hai toh kon lega bc admission,-1 +Topic change karna tha bc band hi nhi ho raha tha😑,-1 +Bc kuch bhi karo ... 1 baje ke pehele lelo mera 😂,-1 +Yeh log ko kya maza aaata hai itna gand maar k bc..,-1 +Ek toh bc kuch meko dhang se sunai nahi de raha tha,-1 +Yeh naam sahi likhne se kya farak padta hai bc 😑🤔,-1 +Bakchodi karvalo bass bc job tho hoga nhi inse 😂🙂,-1 +Are yaar achanak aawaz aaya mei darr gaya bc😂🤦‍♂️,-1 +Aare bc.....as expected....paaji is not exhausted 😕,-1 +Are inko kya maza aah raha hai yeh sab karne me bc.,-1 +Ab tho aana padega borivali sub public placed hai bc,-1 +Aare bc log reject hogaya hu mein😂😂😂😂 accept nai,-1 +Karna hai bc ueh amanshu said no you are not allowed,-1 +Bc mei aata hu tab rasodu vasodu hi leke jaate ho 🥲,-1 +Time table explain karne ko bolo pehele faculty ko bc,-1 +Aa lavdi ne kai bhan nathi padti timepass kare che bc,-1 +Wednesday vala karo bunk bc bhaut takleef hai usme 😂,-1 +Campus placement bc. Never expected this from you😂😂,-1 +Hu deal karis to pacchi aapda project nu su thaase bc,-1 +Bc abhi ek saal me 14 week internship karu kya 👀🤦‍♂️,-1 +Kal gand marne me uska bhi gand udas hua rahega na bc,-1 +Bc school me nhi mila kabhi itna bada vacation 😂🤦‍♂️,-1 +Warna bc YouTube video ke premier ka link bhejta hai😂,-1 +Bc karta toh kuch hai nahi but meeting chalu karni hai,-1 +Pachi ena chokra ne saari job ane saara marks madse bc,-1 +Aare Matlab vo screen recording karke bheja tha vo bc?,-1 +Bc! Bhai link bhej. Kidhar se milta hai ye sab tumko?😲,-1 +Bc DSP ho gaya ab darr kya hota hai pata hi nahi hai 😂,-1 +Bc bola hai wo kaam nahi karta... hasneko aa jata hai😕,-1 +Bc apna subject selection ka process was avoiding pajji,-1 +Proteus bc😂😂😂....inko bolo pirated use nai karna hai,-1 +Bc issko lag raha hai ki yeh bohot sundar dikhta hai...,-1 +Jyaa sudhi mane biji job nai lage tya sudhi kase nai bc,-1 +And btw to was a typo error...aab mein kya karu bc🤦‍♂️,-1 +Ha but marks kaha kata hai😅. Sab proper he likha gha bc,-1 +Ha. Bc 2nd attempt me 40 me se khali 2 pass hue the🤣🤣,-1 +Aur mai bc bata raha tha ki hum ne kiya haii............,-1 +Because humlog ki bldg mei goal post hi nai hai bc😂😂😂,-1 +Arey bc 2-3 oct vashi jaa raha hu re tournament hai ek😂,-1 +Bhai bate karte karte time ho jayega malum nai padega bc,-1 +Bc....joke karo to problem support karo to problem 🤷‍♂️,-1 +Bc log tech head ke sath kavish bhi hai..ussko to naam lo,-1 +Bc tereko answer bataneke chakkar mei mere 2 miss hogae🙂,-1 +Nai re majak kar rha hu bc warna ye toh sachi mein karega,-1 +aisa koi mail id banao ki usme pure a3 ko send ho jaye bc,-1 +Aree bc vo bola tha nxt time jaise ayega vaise merko bata,-1 +Bc mera 200 laga tha and hardly 5 days travel kiya hoga😂,-1 +I am going to Malad tomorrow aur iski gand marunga bc😂🔥,-1 +Azli😂😂 hum galat bande ko bhaiya bol rahe the re bc😂😂,-1 +Bc mera sem 3 me audit course completed nhi likha hai 😂😂,-1 +Bc USA Germany France ka standard study karna hai🔥🔥🔥🔥,-1 +Sher toh bau dur ni vat aa toh vando ne pan layak nathi bc,-1 +Bc mera attendance nai lag raha hai since 3 times🤦‍♂️👍🙂,-1 +Vo aaj jyada chu cha ki na bc me suna dega .. marks ki mkc,-1 +Phir sharam aata hai bc lagta hai apun kya guu khaya hai 😂,-1 +Naj toh agar mein msg karinga tob bc merkk hi khatab lagega,-1 +Mei bc just scroll kar raha tha aur ye aaya feed mei😂🤦‍♂️,-1 +lekin end mei abhi 2-3 mins mei le ke khatam kar raha hai BC,-1 +Aaj bc attendence ka importance sab ko samaj raha hai🥺🥺😂,-1 +Bc....bhai saache bc...end sem ke baad qane bola is heights!,-1 +Bc bts ka naya song butter...70 million views in 14 hours 😳,-1 +Bc sirf apan 3 aise hai kya baki sab achhe bacche hai😂🤦‍♂️,-1 +Ye bc chalu hua nhi college ki aisa sab news dete ho na 🥺❤️,-1 +__😂 bc isse aacha umang tha..rply to karta tha...pc pe🤷‍♂️,-1 +Bc apneko Microwave devices allot hua hai as dept elective👀,-1 +Aare bc aaj lec bhi the yaar🤦‍♂️..mein saachi bhul gaya 😂😂,-1 +Nilya ko kya malum pad rha hai ki mere pas konsa phone hai bc,-1 +Ab sab ko presenter kon banaya bc @918369169408 @919167339256,-1 +Usse dene wala bhi apne grp pe hai bcoz yeh abhi mene dala hai,-1 +Bhai ye kalyan ke badle Cambodia mein shift ho gaya hai kya bc,-1 +"Bc aa mihir nu badhu tuteluj chhe, scooter, mobile, attendance",-1 +Bc haar baar yeh sadistic emoji bhejke mood off karta hai.......,-1 +Aare yaaar kuch jayada he instruction de tahi hai ek lec mein bc,-1 +Bc nhi hoga kuch .. jhat aukat nhi hai inka offline leneka 🤦‍♂️,-1 +Bc link nai bhejega par pura panchat karega next two days wagera,-1 +Bhai tarika hota hai kuch .. 4 ka 6 samaj aata hai bc 9 kya hai ?,-1 +Bc yoga ke theory me 20 se kam rahega tho fail bhi ho sakta hu 😂,-1 +Bc bhargavi ko itna bhi malum nai pad rha ki marlab hai ki python,-1 +Bhai aise hi baat karte rehenge na bc 1 se 3 ka pracs chala jayega,-1 +Aur ye mustafa ka name jo colour me hai vo aur sandaas hai bc shii,-1 +Bc ekto olo viraj ro ro kare che ane tu bc 2 2 job laine betho che,-1 +Bc ye ipl mein koi bhi tm apne home grnd pe nai khelne wali thi na?,-1 +Sirf viva se itna improvement hai .. bc me 3 baar diya tha socho 😎,-1 +Ye course itna worst tha na bc uske aacha ko jyoti ka course tha bc,-1 +Aare yaar....yeh inderjit ko kya kuch grudges hai kya students pe bc,-1 +Last 3 sem me 5 subjects me 1 mark se ek pointer gaya hai bc😂🤦‍♂️,-1 +Mini project ke viva mai hod aana chaiye bc naanda kar duga usko pura,-1 +Bc group icon 😂🔥🔥...jibi aparicit jaisa lag raha hai😂😂😂😂😂😂😂,-1 +Abhi bc confidence bhi hai re ki dono electives ka answers milega😂🔥,-1 +Bc 9 hours per week padhana hai vo bhi online but fees pura cheheye😒,-1 +Tho jaldi mat uthu naa bc 9-10 baje utha tho bhi padhneko 6 hrs hai 😂,-1 +Ajao bc maja ayega volleyball leke aao khelne mila tho khelte hai 😂🔥,-1 +Bc mera to aaisa halat hai ki meko....3 4 times re viva ka baari aayega,-1 +Bhai but yeh kuch jyaada nai hogaya?....bc 10 se aaroung 9.30 tak 🤷‍♂️,-1 +Wohi na bc mai time Bacha raha tha woh log ka usme bhi unko bhakchodi hai,-1 +Maa kasam bc mood change hi na jo instant bc ye padh ke 😂😂❤️❤️❤️ aha bc,-1 +Bc faculty hai akkal nahi lab ke time kya chalu rakhana hota hai kya nahi,-1 +Ye sentence ka meaning samajneko 3 alag cheez google karna pada bc😂🤦‍♂️,-1 +Bc college ka yaad Mat dila....meko volleyball khelne ka dil karte hai🥺😭,-1 +Humlog ko bola tha 400 bharo somaiya walo ke liye discounted scheme hai bc,-1 +Bc IS mein rod ka baat chal raha hai😂 keval kuch to rod ka bol raha hai😂,-1 +Diet toh kch karta nai hai bc pura bartan bharke aaloo ka sabji khata akela,-1 +Mera internet ka jhol hua bc nahito @918291289736 mei achha wala ss leta...,-1 +Bhai last time mai jidhar leg rakh raha tha waha se Matti nikal raha tha bc,-1 +Jidhar dikha ki meeting chalo hai bc join kar dalo and sabko invite karo mc,-1 +"Bc _Chaudhvin ka chand_ sunn raha tha, aur tumne kya yaad dila diya😂🤦🏻‍♂️",-1 +"Reply hi nahi diya bc, ab main usko ppt ke time tak waapis puchunga bhi nai😂",-1 +Maa ki chut sach bol raha hu mera 5 baje ke baad liya na me jayega hi nahi bc,-1 +Chalo bc paper bhi khatam aur ISE ke time jo book banaya tha wo bhi khatam😂👌,-1 +Abbey yaar kyu tp kar rhaa hai ye bc time naii hai idhar logo ka intro sunna ka,-1 +Bc low level machine language nathi aavadti ane high level talks karva che🤦‍♂️,-1 +And haa bc lelo Lelo job aane se phele is paisa lelo bc kuch rakna mat mere liye,-1 +Bc jaisa mera resume hai lagta hai muje he paisa dena padega kaam karne ke liye😂,-1 +In chutiyo ko faculty feedback chahiye wo bhi aise site pe jo open hi nahi hota bc,-1 +Aacha bc...mera khali jab anab shanab bakte hai log? Ka kaha hai tumhara sharam?😒,-1 +Kya maa chod raha hai ye bc @919221126032 tuje iska language kaise samajta hai 😂😂,-1 +Bc chup chap 2 exp 1 din mei leneka to screen share ka lafda karte baithata hai🤦‍♂️,-1 +Bc mein toh bolta hu apne hisab se grp banate hai or har ek grp mein viral karte hai,-1 +Hard luck...you guys will get next one❤️...and bc tu haar apti clear kiya hai isske alava😒,-1 +50 lines naa .. bc vo padhne vali bhi nahi hai lavdi vo list mese kisika uthao aur bana dalo,-1 +Shanti me kaam karneka apna .. nhi bc sir 5 set karege tho lavda hoga 10 set kiya tho lasun hoga,-1 +"Main bc sacchi ye sab lecture baithne waala tha BA ka, kyuki bohot accha course hai. But 🤦🏻‍♂️",-1 +Lekin public ne soocha tha mast marks milega so meditation liya. Aur bc...... khair chodo 😂🤦‍♂️,-1 +Ee bc round wise elimination kidr tha?...bc kidr likha he nai hai 😒....mein idhar kush ho raha tha,-1 +Aare bc tere support mein bol raha tha...ki bc itna bolte ho megha ko even he got placed karke🤦‍♂️,-1 +Bhai search karegana average package of somaiya college to 12.73 aata hai net bc😂😂😂 sab scam hai,-1 +Mene bhi 1 attend kiya hai...bc har baar bhedbhav....phele dsp and aab yeh🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️,-1 +Bc mera naam and number kon daala...stock market course mein...meko 4 phone aaya hai sube se bc😒😒😒😒😒😒😒😒,-1 +Bc yeh sab mat bhej...aabhi just khatam hua naruto 🥺🥺🥺🥺...720th episode...aaya mein emotional ho raha hu and teko memes bhejna na😑,-1 +Mereko chodne ka itna relief tha na bc me form bhi nhi bhara 😂 bola nahi mam chalega mereko janedo sirf ab tak jitna kiya vo as a help samajlo,-1 +Ye nhi dikh raha kya tereko mc,-1 +Bolo siyavar ramchandra ki!!!!!,-1 +Pahela mcq analytics ka hai na?,-1 +Mc hai lekin thik hai ab kya 🥲,-1 +Karne bolta sidha nikalta hai mc,-1 +Wohi na ye sab job wale mc log😕,-1 +Duration🤦‍♂️ puchta hai for mcq,-1 +Arey mc western valo bologe kya ?,-1 +mihir mc khota ans che tara badha,-1 +Mc group pe message bhi nai karti,-1 +Charkop aake bomb daalunga mc😂😂,-1 +Tu gm mc. Kuch kaam nahi kar raha,-1 +"Naad kara , pan aamcha kuthe 🔥🔥😂",-1 +tharki mc 2 mam ko leke baith ta hai,-1 +Mc Aniket ne bola bolneka tho bolneka,-1 +Shakal se hi mc bola matlab tereko😂😂,-1 +@919960383380 mc tereko drop kyu laga😕,-1 +Hogaya tha na vo nirmal ne mcq diya tha,-1 +You agreeing to the fact that you are mc?,-1 +Ha wohi mc log ke vajah se badha hai azli,-1 +Jo ma'am patli hoti hai wo bohot mc hoti hai,-1 +Mc teams mei lobby ke liye alag page rakho na,-1 +Arey pajji lavdya nhi ho raha idhar set up mc,-1 +Paji mc exp mei bhi even odd kar raha hai🤦‍♂️,-1 +Mc nhi tho assignment likh ke dena padta hai 😂,-1 +Kya subhe subhe ye emoji bhej rahe ho re mc😂🙏,-1 +Tmc dimag mat kharab kar ha. Hamesha yeh bolta hau,-1 +Ye mc faculties ko IA ka mail bhejne kya hota hai?n,-1 +Mc log ne sirf marketing ka hi internships bheja hai,-1 +Ye time bhi Mcq ka alag link ayega ki kya scene hai ?,-1 +Mc mera dost jo building me rehta hai vohi gully me tha,-1 +Arey mc koi diploma vala personal pe message kar diya 😂😂😂,-1 +Apan pehle bhi jitane MCQ LMS pe diye hai usmei yeah sab faltugiri tha hi,-1 +Mc clg wala pehle se itna paisa lete hai aur ek software bhi nai de sakte,-1 +Lec mei batati hai IA hai aur 1 din time deti hai complete karnemei aur mc log hai lec baith ke bhi batate nahi hai,-1 +Wo meine Dean ke door pe moot diya😂,-1 +Ye log backchodi kar rahe the😂,-1 +Aaj lab hoga ki bass Bakchodi ?,-1 +Uske baad Bakchodi karo 😂🤷‍♂️,-1 +Aur ye bakchodi ke liye time hai,-1 +Bakchodi would be a better word😂,-1 +Ye training ka kya bakchodi hai ?,-1 +Aata to itna bakchodi nahi karta😅,-1 +Idhar kitna time bakchodi karu??😂,-1 +Kya bakchodi chalu hai kya malum 😂,-1 +Dupher ko bakchodi de raha tha 😂😂,-1 +Aare yaar te to ma chodi nakhi dost,-1 +Jo aa ghelchodiyo pan mutre che 2032,-1 +Yaar sabko aaj bakchodi suuj rahi hai😂,-1 +Tum bakchodi kar rahe ho me tho ready hu,-1 +Tumko pucha vo din tum bakchodi kar rahe the,-1 +Pachi peli baju modhu kari sui jase bhen chodina,-1 +woh tp kar raha hai ab sabko bulake bhakchodi karega,-1 +Bakchodi chod plan banana hai kya seriously pich raha hu,-1 +Want to say _who cares_ but sunna hai kya backchodi hua😂,-1 +But vo re viva bakchodi tha...unlog ko vaapis bulaake counselling kiya,-1 +@919892400909 bakchodi band kar idhar.. jil trigger ho jata hai phir 😂,-1 +Idhar bakchodi mat de ... Tu hai iske liye abhi chill maar raha hu me 😂,-1 +12 baje ajao ... 1 baje tak le lenge certificate phir bakchodi karte baithege,-1 +Arey hamare idhar 60₹ me movie ka ticket milta tha ek time pe ... And this guy used to behave like 60₹ crowd 😂 jaan buch ke siti bajayega hero ke entrance pe bakchodi karega,-1 +Chutmarika aajata hai msg karne,-1 +__😂😂 chutmariki hai sab except few,-1 +Submit kiya hai phir bhi mera non submit me naam dala hai chutmariki,-1 +Bhosdeme mereko machana hai 😂,-1 +Ha tho bass phir bhosdeme gaya 😂,-1 +Ha vo khatam hai bhosdeme gaya 👍,-1 +Lekin bhosdeme jo hoga dekha jayega,-1 +@918369169408 Sharam kar laude,-1 +@919757163195 laude paytm kar,-1 +A laude. Hota he hai most sab me,-1 +Baki laude log ko masti chadi hai,-1 +A laude tere connection hai na??,-1 +Laude log 12 question q puchre hai,-1 +Yeh dono laude ko maine bachaya hai,-1 +Laude. Tu screen share nai kuya tha,-1 +Mai bachaya hai yeh dono laude log ko,-1 +Tere laude pe laat maruga tab bolna yeh,-1 +Are kya laude log hau be @917506434666 .,-1 +Laude @919029329920 itna sab kya kiya hai??,-1 +Megha laude aacha mood rakhna sir aur maam ka,-1 +"Abe laude. Mai bola nai hai code, 0 de do🤷‍♂️",-1 +Laude tu bhi machaya na fir kyu gand jali teri,-1 +Kya re laude. Mai nai baithtah pehle kabhi bhi,-1 +Are laude ja na zensar k employees se baat kar na,-1 +Nikal chal laude. Pehle ka baat kar raha hai hai mai,-1 +A shat. Tera connection hai na laude. Aaj bata connection,-1 +Laude ko circuit final Hone k pehle report aur PCB chaiye,-1 +A laude. Abhi kya chalu hai??. Situation k hisab se baat kar na,-1 +Laude maine pucha hai ki aaisa kar rahi hai ya nai. '?' Nai dikh rahe kya,-1 +Are ye lavdu lord kyu nahi join kiya?!,-1 +Lavdu 😂 abhi abhi dala tu dekh bhi liya 😂🤦‍♂️,-1 +I haven't seen your gand boi😂,-1 +Uska gand phatta hai corona se,-1 +Mari gand che ne ee fati gayi,-1 +Attendance bolke gand marega😂,-1 +Hahahaha aai chi gand 😂😂😂😂,-1 +Kai mahit aaichi gand tyachya😂,-1 +@919029329920 tujya aaichi gand,-1 +Bhavde param gand masti mat kar,-1 +Kya gand maar rahe ho public 😂,-1 +Wo tumhari gand mei charbi thi!!,-1 +End mei kyu gand marti hai re ye,-1 +Phukat gand me kyu ghusna hai 🙃,-1 +Meri sab grp pe gand marta hai😂,-1 +Atleast wo gand mei nahi ghuste🙂,-1 +Gand masti q karte ho be kaude liv,-1 +Tu gand mara bhai. Tu he nikala hai,-1 +Aee bhadvo kya gand mara rahe ho be,-1 +Gand marega aur marks bhi dega 😂💥,-1 +Bhai tu kya gand maar raha hai ...,-1 +Wohi le aur apni gand mei daal de✌️,-1 +Are presenters q gand marva rahe ho?,-1 +Gand marne me maja aati hai na bhai.,-1 +Viva mei gand maro theek hai chalega,-1 +Arey inki gand me bhaut keeda hai re,-1 +Itna ganda formatting kon karta hai😂,-1 +bihari to bhai gand pe bhi lagate hai,-1 +Khudke gand pe lena hai tho karo mail,-1 +Are wo bhi iski gand marta hai😂🤦‍♂️,-1 +But 1st hu to thoda gand marenge pakka,-1 +Upar se ya param aur gand maar raha hai,-1 +Gand fattu ab sab ko presenter banaya🤭,-1 +Yes. Unko gand marna hoga toh maar dege,-1 +Aur students ki gand mat dete hai sale,-1 +Maro maro jeetna gand marna hai maro🙏🙏,-1 +Jisne bhi suggest kiye tujya aaichi gand,-1 +Me mail kiya hai usko iski gand me ghusunga,-1 +And you said mil gaya tum gand marao😂🤷‍♂️,-1 +Ab mereko gand marneka mann kar raha hai 😂,-1 +Baki lig ko nikal ne me gand fat ti hai kya?,-1 +Maar liya na humne gand alag se kyu vapis 😂,-1 +Captain hi gandu toh kya karega bowler pandu,-1 +Overreact na kare to manas gando na thay jaay,-1 +Mkc pagal insaan ke gand me ghusnga kabhi tho,-1 +Kisika naseeb itna gandu kaise ho sakta hai 🙂,-1 +"And if it was , tho vo meri gand maregi mail pe",-1 +Stars chya aaichi gand ani hya jhatu chya pan😕,-1 +I am not racist lekin ye ganda dikh raha hai 😂,-1 +Ruk khana khaa ke aata hu iski gand me ghusta hh,-1 +Itna ganda halat I don't think apne time kisika tha,-1 +Aree overreact no karu toh manas gando na thay jaye,-1 +Kisike gand me ghus jaunga .. just give me a name 😂,-1 +Are yeh meditation wali ne kya ganda marks kaya bai bv,-1 +A gand marao yaar mereko simulation karne jana hai fo 👋👋,-1 +Mere gharpe gand marege me chutiye jaisa chilla raha hu 😂,-1 +Kisike tho gand me ghusna hai 😂🤦‍♂️ anyone doesn't matter,-1 +And please idhar aake gand maar raha hai vala feedback mat dena,-1 +Gand aur bada karna hai usko ... Phatka khayega aur sujvake lega,-1 +Biggest mistake of my life is ke me ye Gandu ko Naruto dekhne bola,-1 +Manchester is red bol ab teri gand hi marta hu @919029329920 😂😂🔥,-1 +Tereko chod ke koi aur banda ye bola rehta naa uski gand maar dete 😂🤦‍♂️,-1 +Abhi inke gand me aaya hai ... Soo maybe aaj logo ko re viva ke liye naa le,-1 +Mail karne mein hi uski gand fat jayegi marks affect hoega usko aisa lagega,-1 +Arey vo meri gand maregi re 😂 agar question paper vala IA2 rahega tho 🤦‍♂️,-1 +Laptop chalu karne gand se aa raha hai yaar .. subhe se bhar hu abhi aya gharpe,-1 +Aare over rrqct aatle Manas gando na thai jai😑...uthi ne spelling theej kare che,-1 +Ab tak jitna lab join kiya hai gand phata hota tha aaj gand marega aaj gand marega,-1 +Kon hai ye ... 😂 Tu naam le sirf mereko bass reason hi chaiye kisike gand me ghusneko 😂🤦‍♂️,-1 +Lavda pagal hua hai kya 😂🤦‍♂️,-1 +Why does he look like _Pagal_🤔,-1 +Submit kiya hai par yeah bandi pagal hai,-1 +Hoga hi na Bichara hod ne usko pagal karke rakha tha 😂😂,-1 +Hum chutiye hai humko sharam nahi,-1 +Ha na azli 90% chutiye bhare pade hai,-1 +Ha kaun chutiye mass bunk chahate the😂,-1 +Abe chutiye tereko bhi bheja hai😂🤦‍♂️,-1 +Yeh rohit chutiye ko Kon attendee banaya,-1 +Me bhi kaha chutiye ko samjha raha hu 😪,-1 +Ye chutiye A3 waale chat me bhi nahi likh rahe,-1 +Tum chutiye ho usko include kiya project mei🤭,-1 +Tu kya chutiye se baat kar raha hai subhe subhe,-1 +Toh chutiye main grp pe kya faltu giri karta hai,-1 +But aajkal wo ek chutiye ki jyada baju leta hai👀,-1 +A2 mei sab chutiye hai na group pe sab bolne ke liye,-1 +720 songs honge tab unke chutiye fans bhi 90 billion karenge😂,-1 +Abe chutiye tereko drop nahi lagega aise bol raha hai... itna confidence hai usko terepe,-1 +Abhhey kaise chutiye hai ye log ye hod ka ko experience tha but ye Bhargavi bhi aise hi hai ye nahi pata tha 😂😂,-1 +Mereko lag raha hai wo ma'am abhi mail daalegi ki wo assignment 10 marks ka hi tha but hum chutiye hai isiliye galti se 25 daala pehele🤔,-1 +Kutte bhagte nai hai kya piche,-1 +Are yeh kutte ka aavaj kon nikal??,-1 +"Hathi chala bajar , kutte bhoke hazar 😎",-1 +Jab ambani ka kutta bajar jayegana tab hathi bhi bhokne lagega,-1 +Ruk ye mam ki maa chodta hu phir,-1 +Arey kya maa chod rahe ho 😂😂😂,-1 +Calender ki kya maa chod raha hai 🤦‍♂️,-1 +Arey @919619102000 kyu maa chod raha hai 🙏🙏🙏,-1 +Where is _maa chudi padi hai_😂,-1 +Maa chudi padi hai ... I want to die,-1 +Maa chudane gaya 0 ka -1 degi tho bhi chalega,-1 +Bhai dimag kaa maa chud gaya aur lavda bhi nhi samaj aya😂,-1 +Abhi mail pe machana hai sirf mereko marks maa chudane gaya 😂,-1 +Ye packet tracer jhatu app hai,-1 +Ye jhatu ko vapis kon add kiya ?,-1 +Khudke drive mei upload kar jhatu,-1 +Ha aur jisne banaya wo jhatu hai😂👍,-1 +A4 vala jo bhi hoga jhatu hi rahega 😂,-1 +Apun 3 hi jhatu jaisa baithe hai 😂😂😂,-1 +Rakhte he q hai isko slips me jhatu sala,-1 +Nilya jhatu hai re ye sab kya kar raha hai,-1 +Lekin bola vo jhatu ke naadme kon lagega 😂,-1 +Abe jhatu wo Karan ne drive link bheja hai na,-1 +Vo jhatu jo bol raha hai usme kya matlab hai 😂,-1 +Aadhe se jyada log tho jhatu hai bhai jo pehele se hai,-1 +Aur jhatu log usko chat mei reply bhi karte hai😂🤦‍♂️,-1 +Arey a jhatu ... Naseeb maan western durr hai mere gharse,-1 +IBM jaisa aatu jhatu jagha pe apply bhi nhi karte hai ...,-1 +But tum jhatu logone kis confidence se khudka id as parent's id daala?😂,-1 +Ye jhatu ne muu hi nahi khola tha kya ... Option nhi hai tr ke paas 🤷‍♂️😂,-1 +Are jhatu ek din attendence nai aaega kya hoga report tere parent check karte hai kya,-1 +Ruk madarchod tereko nikalta hu,-1 +Waah madarchod variation de rahe hai😂,-1 +Ha idhar bhenchod film ban gaya hai,-1 +Bhenchod ye aisa mereko ek bhi nahi aaega😂,-1 +Kya bhenchod chutiya jaise bithake rakha hai,-1 +Pachi peli baju modhu karine sui jase bhenchodina,-1 +A bhenchod degree nhi denge MATLAB kya hai aai chi gand,-1 +Bhenchod. Abhi tak last wala banda so k uth jana chaiye tha,-1 +Bhenchod mei lec mei book bahar rakha tha mechanics ka mereko bolta hai class ke bahar nikal dunga book andar rakh🤦‍♂️,-1 +Bhosdike brag mat kar .. complete kar 😂,-1 +Teri gand bhosdike ...😂 Pehele tu time pe aana sikh baadme logoko gyaan chod lund sala 50 min bc ?,-1 +Tereko acha laga hona na lavde,-1 +Tereko kya tu placed hai lavde,-1 +Tu bhi le kt lavde sikhega kuch,-1 +Abe shakkar ki shakkal ke lavde,-1 +@919619402076 lavde ayega kal ?,-1 +Arey ye lavde kaa kya lekin ?😂,-1 +Kya ho gaya lavde subhe subhe 😂,-1 +Batana lavde tp kyu kar raha hai,-1 +Phir lavde ka haat nahi uthata😂,-1 +@917045624062 lavde mutr tha🤣🤣,-1 +Lavde padh raha hai kuch ki nhi ?,-1 +Tu lavde itna bada list banaya 😂,-1 +Bc direct naam lu kya vo lavde ka,-1 +Abe lavde already ye grp hai na😂,-1 +Kalse clg chalu ho raha hai lavde,-1 +Tu paani bharne jaa na lavde bhag,-1 +Mat Gand me ghuso re lavde log 🙃,-1 +Aee lavde ye kya bhej raha hai?!😂,-1 +Lavde 6 tarik nhi samaj aata kya ?,-1 +Tmkc lavde kalyan aake marega bsdk,-1 +"Ye lavde ka naam batao , fast fast",-1 +Ha lavde meihi bheja wo grp pe😂😂,-1 +Aur kya lavde table pe rahege kya ?,-1 +Likh ke bhej rr lavde @918291289736,-1 +@919029329920 samaj raha hai lavde?,-1 +Lavde vo 9 ka 12 tak chalega phir 🙂,-1 +Lavde 😂 pura 1st yr kya kiya 😂😂💀,-1 +Kyu lavde marksheet nhi chaiye kya ?,-1 +Tereko waisr bhi draft aata hai lavde,-1 +Arey lavde notebook ka puttha phad na,-1 +"Lavde, 24 to hai Tereko @919619402076",-1 +Raftaar pe aisa hi banaunga ruk lavde,-1 +Abe lavde idhar gand phat gaya naa 😂,-1 +"Try kar na lavde, samajhta nai tereko?",-1 +A lavde tu dimag ka maa mat chod haa .,-1 +Lavde copy case pakda tho fail hai fix,-1 +Lavde me bola ye kya language hai 😂💀,-1 +Lavde chod ke khush tho tu bhi tha 😂💀,-1 +Sab lavde tere jaisa telecast nhi karte,-1 +Tag param ko kyu gali de raha hai lavde,-1 +Tu bhej yaha lavde teri gand marta hu😂,-1 +Aur lavde ko core mila to better chahiye,-1 +Jaise ki bhaut dhayn dene vala hai lavde,-1 +"Phir iska hath , muu sab dukhega lavde ka",-1 +Pateli dekho ye lavde ki wo grp pe😂🤦‍♂️,-1 +Naam likh ke mail bhejege bhen ke lavde 🙃,-1 +Lavde tera de 2 job offer leke baitha hai😂,-1 +Tu bol raha hai iske lavde lagna confirm hai ?,-1 +Ye lavde ko online me 50% marks aata hai bc 😂,-1 +Lavde ijjat se ans diya tho bhi problem 😪🤷‍♂️,-1 +Ha bc fukat aur logoke lavde nahi lagne chahiye,-1 +Aee lavde 62 kya gand mara raha hai wo grp pe😂,-1 +Dekh lavde already 6 graph le rahe hai ye lab mei,-1 +@917045721166 lavde sab option C mark kiya kya?😂,-1 +Doesn't matter re lavde sabko 10 pointer hai🤦‍♂️,-1 +Me fast train vale patri pr jaa sakta tha lavde 🤦‍♂️,-1 +Are lavde meine ye writeup finalize karke bheja hai😂,-1 +Arey lavde bsdk ... Dimag ka maa mat chod ye sab batake,-1 +@919221126032 lavde black magic karna chalu kiya kya?😂,-1 +Tho itna akkal tha lavde tho vaisa harkat nhi karneka naa,-1 +Chup lavde ... Engineering leneke pehele sochna tha ye sab,-1 +Comps valo ko knowledge rahega re ... Umang ke lavde hai 😂,-1 +A lavde mera 5 min chalega ... Gonna clear in 1st attempt 😎,-1 +Sudhar jaa lavde abhi bhi thoda din hai interview ke liye 😂,-1 +Arey lavde itna intrest ? .. mereko bura lag raha hai yaar 😂,-1 +Btw DSP mei lavde lagenge tab ke liye stickers ready hai😂🤦‍♂️,-1 +Aee lavde sabji bech raha hai kya?? Bargain kar raha hai jhatu😕,-1 +Bc 2nd dose ko 1 month baki hai aur clg jaana hai lavde ko😂🤦‍♂️,-1 +If you thought ye line padhke me nhi marega tho tu galat hai lavde,-1 +Aur @917045721166 lavde he asked for syllabus copy not copy notes😂,-1 +Lavde ke baal usko kuch nhi bol sakta tereko pel dunga idhar hi 😂😂,-1 +Arey aa @919960383380 lavde honede naa lag kya taklif hai tereko 😂🤦‍♂️,-1 +Tu chutiya hai lavde aisa kuch nhi hote rahega gand mara aur shant baith jara,-1 +Bc mei aisehi baitha hu re achanak samjhega 62 chalu hai to lavde lag jaenge😂,-1 +Arey lavde re viva valo ka raat tak jata hai baki acc. To schedule chal raha hai naa,-1 +Soo me bola lavde 60₹ me picture dekhne aya hai tho 60₹ jaisa harkat mat kar 😂🤦‍♂️,-1 +Dekh lavde jyada bhankas mat kar mere leader ke sath... Tere bus stop pe bomb rakh dunga😕,-1 +Mereko 54 chaiye bc ye 5 mark ke numerical se mera kuch nhi hoga .. vo bhi kuch samaj nhi aa raha hai kaise likha hai lavde ...,-1 +Whatsapp paagal ho raha hai emoji me,-1 +Koi mereko ye bolega to main paagal hi ho jaunha😂,-1 +Me chutiya thodi hai ... 🤦‍♂️,-1 +World is full of chutiyas🤷‍♂️,-1 +Aagaya beechmei chutiya sala😂,-1 +Chutiya hai @918291289736 lund,-1 +bahut chutiyapa karke ho tumlog,-1 +Chutiyapa badhata ja raha hai😕,-1 +Phukat ka chutiyapa hai uska bc,-1 +Tu chutiya hai but toxic nahi😂,-1 +Yaar but ye kya chutiyagiri hai☹️,-1 +Emiway Bantai tho chutiya hai ..,-1 +Toh ho sakta hai tum chutiya ho🤭,-1 +Chutiya hai kya @918291289736 lund,-1 +Aur tum Ole ko chutiya bolte the😂,-1 +Ye jhatu Raftaar ka fan hai chutiya,-1 +Bhai sab chutiyagiri chalu hai re😂,-1 +Usko bol Canada chutiya aur leave✌️,-1 +Bhadvo itna chutiya samajhate ho?!😂,-1 +Ye kya chutiyagiri tha yaar 💀😂😂💀,-1 +Chutiya meet ke tym video on kr diya,-1 +To bc video wala chutiyapa kyu kiya?!,-1 +Chutiya hai abhi tak tt khel raha tha,-1 +Chutiya hai wo... dhyaan mat do aap...,-1 +Chutiya team ke samne hai... jeet jaenge,-1 +Ha jis din koi chutiya nahi tha tab na🤔,-1 +_Better stay alone than with a chutiya_✌️,-1 +Chutiya hai 10 min ka usme bhi dhak dhak 🙂,-1 +Tough paper is better than this chutiyagiri,-1 +IS ka viva toh chutiyagiri hi tha bc😂🤦‍♂️,-1 +Megashyam chutiya hai kuch bhi chahta hai 🤭,-1 +You think sirf tum usko chutiya bolto ho??😂,-1 +Kyuki op nhi aata aur chutiya banana padta hai😂,-1 +Kya chutiya jaisa baat kar rahe hai apun 😂🤦‍♂️,-1 +@919029329920 dekh ye bhi chutiya bol raha hai😂😂,-1 +Chutiyagiri hai re bc mere sath hi hota hai sab 😂,-1 +Arey ye batch ka alag chutiyagiri hai re ek tho 😂,-1 +Matlab dhruv chutiya hai aisa bolneka hai tereko?😂,-1 +Mereko tho bhaut hasi aaya ye chutiyagiri pe😂🤦‍♂️,-1 +Aur ye lund kind chutiya sala 3 group pe bhejta hai,-1 +Lekin yeh chutiya shant he nahi hora tha lund ka ball,-1 +Itna chutiya viva hai na bc genuine bhi nhi lag raha bc,-1 +Please yaar. Ye sab chutiya giri hai. Padhne nai hoga ye,-1 +Koi toh chutiya RBL bank mei place hua na ye grp wala?😂,-1 +1 life toh chutiya team ko support karke waste gayi hai🤭,-1 +Mkc paper ke time bohot chutiyapa kiya hai re ye haarCB😂🤦‍♂️,-1 +Jo hone vala hai hoga . Bc idhar chutiya jaisa discussion kyu ?,-1 +Isiliye koi toh chutiya grp ne submit kiya hai apnemeise bhi🤦‍♂️,-1 +Chutiya jaisa 3-4 hr baith ke code run kiya dekha tho jindagi jhat,-1 +@919819821536 ye group ka rehke bhi chutiya ban gaya 😂😂😂💀💀💀💀,-1 +"Chutiya hai, khali usko naam chahiye sabke paper me kaam nai karna kuch",-1 +Tum jaise logo ki vajha se anime dekhne valo ka chutiya me ginti hota hai,-1 +"Aur ye stage 2 chutiyagiri hai , cuz ek jan ne upload kar diya tha link pe",-1 +Ye emoji aaya ki samaj jao kuch to chutiyagiri kiya hai 61/62/63 ne😂🤦‍♂️,-1 +Ek chutiya pucha hai agar core mila to next ke liye eligible honge kya😂🤦‍♂️,-1 +Kisi chutiye ko Leonard nahi bolunga aur jibitesh ko chutiya nahi bolunga😂✌️,-1 +Arey kya chutiyagiri hai ? Mereko tho lag raha hai sirf darane ke liye likha hai vo sab,-1 +Chutiya jaisa tha mam ne boli hai itna kiya hai form bhardo utna hrs ka tho fill ho jayega,-1 +"Bas itna confirm karke bol ki , by any chance vo 4 question vala chutiyagiri IA2 hai kya ?",-1 +Abhi kya uddhav thakrey ko phone karu ki mera kuch chutiya sir hai usne bola try karne to tu essential chalu jar de,-1 +Gaanta instructions bc agar mereko pata hota isme ye sab chutiyapa hota hai ye BA mai ko mai ye course leta hi nahi,-1 +Tu tho hass hi mat bsdk ... 😂,-1 +Secret code bhi deta hai bsdka,-1 +Bsdk phone mei leke ghumta hai,-1 +Bsdk tu ghar se bahar to nikal,-1 +Acha teri gand me .... Bsdk 😂,-1 +Aare rejected in hr round bsdk,-1 +nai kuch nai pehenta mein bsdk,-1 +Bsdk Tu hi hota haii mere pehle,-1 +Bsdk yoga mein surname nai hota,-1 +Me aya aur leave karta hai bsdk,-1 +Sbreyans bsdk natak kar rha hai,-1 +Tum bsdk idhar kyu bajj rahe ho,-1 +Isse attendance milta hai bsdk?,-1 +10min tak shant baitha tha bsdk,-1 +Toh tune submit kidhar kiya bsdk,-1 +Bsdk WhatsApp khola isliye nikala,-1 +Tereko bahut panchayat hai bsdk🤨,-1 +Bsdk gali khane ka kaam mat kar 🤫,-1 +background audio off karde na bsdk,-1 +And @919619402076 cycle chala bsdk,-1 +Bsdk ek faculty nhi hai 2 hai sabko,-1 +Tab bsdk tu paida bhi hua tha kya?🤭,-1 +__😂 bsdk start karke rakha hai kya ?,-1 +Haana bc satisfaction nqi hai bsdkeko,-1 +Tu bsdk kabse lec baithne laga sab 🙂,-1 +Bsdk 3 slide were images from internet,-1 +Arey bsdk 3 hr pehele attack mat de 😂,-1 +dhruv bsdk reply all kyu kar rha hai!!,-1 +Bsdk😒 I exercise unlike you low shits,-1 +Bsdk. Kya teko bola tha na chat se kene,-1 +@917045721166 bsdk itna vella hai tu?😂,-1 +rohit bsdk apna pasport banane gaya hai,-1 +Hass kya raha hai bsdk band kar 😂🤦‍♂️,-1 +Aniket bsdk apna naya grp toh bana a4 ka,-1 +Udhar bsdka jil is ke liye ro rha hai mc,-1 +Go to 10-15 floor and drop yourself bsdki,-1 +Pehele bar online exam de rha hai kya bsdk,-1 +To bsdk tereko sachmei Meghashyam laga/i?😂,-1 +ek hi pdf bana bsdk question uske niche ans,-1 +Tereko aur kitna positivity chahiye bsdk?😂,-1 +Bsdk udhar kyu hass rahe ho sab 😂😂😂🤦‍♂️,-1 +Padhai kar phir bsdk kal diagram banana hai,-1 +Exam ke dinn bsdk esa copy N ol maangte hai,-1 +Bsdk .. I mean it 😂🤦‍♂️ abhi patla hai tu,-1 +ye bsdka shreyans ne sab galat banaya hai bc,-1 +Bsdk tereko kya wo civil engineer wala laga?😂,-1 +@919930861840 bsdk readymade chahiye tereko?!😂,-1 +Bsdk khudpe taras khaa sirf ... Vo mc log pe nhi,-1 +Bsdk isme agar 100 mask rakhna hoga toh kaise bsdk,-1 +Bsdk kt ke chaihiye railway concession ka form nai,-1 +Bsdk mc link bhejne bola toh bhejne nai hota tereko,-1 +Bhadve @919892400909 early morning konsa pooja bsdk,-1 +Bsdk this is nothing as compared to the portion 😂👀,-1 +Rohit toh bsdka toilet mein baithe baithe join kiya,-1 +Bsdk tu dono mein se kuch bhi nai dekha and bak bak😒,-1 +Ha ik ... 😂 Lekin ye log bhaut optimistic hai na bsdk,-1 +Bsdk mil raha hai likhna sure ki kya maa chod raha hai,-1 +Bsdk ego kya?! _wapas viva do or we will fail you_ bola,-1 +To javab dena bsdk sir ko...idhar ka zav zav kr raha hai,-1 +Hote rahega bsdk idhar batake logoka gand phadna jaruri hai ?,-1 +Tu College nhi aana chahiye bsdk .. tere pair me laga hua hai naa 😊,-1 +@919221126032 bsdk ijjat ko kam hua wo badhaneka samay aa gaya hai😂,-1 +Phone me baat kar raha tha bsdk mere gadi ka headlight uske muu pe 😂,-1 +Bsdk sabke samne ppt nhi aata use karne aisa image hua hai tera😂🤦‍♂️,-1 +Aur ab wo bsdk galat ppt ki jagah galat sticker bhej ke hag dega😂🤦‍♂️,-1 +Bsdk...1200 words bhi yaad kiya tha🥺🥺🥺...aabhi bhi list hai mere pass,-1 +Bsdk aniket khud bsdk biswa jaisa dikhta hai and background batman ka😒😂😂,-1 +bsdk mein a4 mein tu a3 mein baitha hai kaise remove kar sakta humein terko,-1 +A bsdk jaa na ek tho kuch bhi news forward karta hai bc upat se hass bhi rha hai,-1 +Bsdk khali yeko mail karne hai...baaki sab na bol rahe hai ...kyu ego pe le rwha hai yaar,-1 +Bhai tu kiya hai bsdk .. ek viva ke liye tere vajha se 15 min waiting area me baitha tha me,-1 +Bhai hum log mein to 3 meeting se yahi bol raha hai...but alag baar ussko he components deka aata tu ki bsdk tu he try kr😑😑,-1 +Bsdk tu 1st sem me jitne bhi baar fail hua tha uske liye time pe apply nhi kiya thaa .. tho bsdk 250 ka 500 hua rahega per subject ...,-1 +Bsdk aaj birthday hai....naruto ne 16 saal mein world ko bachaya tha....mein 21 ha hogaya yaar....I don't even have genjhutsu or ninjhutsu 🥺,-1 +Lund ke baal bola tha karle 😂,-1 +@918291289736 toh lund hi hai😕,-1 +Lund bhai jaisa hu vaisa hu 😂,-1 +Tu kyu dilata hai tu hi lund hai,-1 +Better be unemployed than lund✌️,-1 +Emi search karta hai lund😂🤦‍♂️,-1 +Lund bola isse farak padta hai?😂,-1 +Tumhari gand me lund sabke bc ...,-1 +Ye Lord lund hai .. iske liye ...,-1 +Jiska handwriting lund jaisa tha 🙃,-1 +I am an attendee and padu lund is not,-1 +Mei bhi kis lund ko bata raha hu🤦‍♂️,-1 +Maa chudane ko Mc likha ye lund(mihir),-1 +Pagal insaan se bhi jyada bada lund hai,-1 +Teri gand me lund .. kya kar raha tha 😂,-1 +Australia javano loda kaangaaroo jevo lund,-1 +Arey Bhai sab Lund log hai apne batch me 😅,-1 +Bass itna hi up to date hai 😂 baki lund hai,-1 +Being a lund is not same as being a kid🤦‍♂️,-1 +Ye ganya lund hai samne mere 😂😂🤦‍♂️🤦‍♂️🤦‍♂️,-1 +There is a difference between job and no job...lund🤭,-1 +@919892400909 lund this is how you introduce a new sticker😏,-1 +Lekin mulund mei police station ke baju wala dukaan chalu hai,-1 +Lund hai re pajji 😂 dimag me jata hai lab hi start nhi kar raha,-1 +Kya lund log hai bc paji aaya nahi phir bhi meeting chalu karte hai,-1 +Are rohit jagda kar raha tha aur yeh megha has raha tha dono lund k baal,-1 +See I told you I am not a lund... Won't risk a job for a bet from a lund😂,-1 +Abe lund tu sir ko puchega sir aapko meri gand maarni hai? Toh voh ha hi bolne wala hai 🤦‍♂️😂,-1 +Puchta hai thosar ko ki chodu kya? Thosar bolta hau yes.,-1 +I am not explaining to a Randi,-1 +Ha bhai Rohit tu randi hi hai😂,-1 +Aah gaya na line pe randi saalla,-1 +Randi ko kya explain kar raha hai,-1 +Bhaiya jaisa randi chale mat karna,-1 +Jiska naam liya tha wo randi hai😂,-1 +Vocal for local suna hai randibaaz ?,-1 +Fb se image uthaya hai re randi🤦‍♂️,-1 +Shii re Ab randi nhi bolega tho kya bolega 🙃,-1 +Aur jo bolega ja puchake aa wo bhadva randi!!,-1 +Andi mandi Sandi jo ye photo grp pe bhejega wo bhadva randi,-1 +61 bolega mere sab answers galat hai 62 phir usko randi bolega😂,-1 +Harami manush 30 min mein palat gaya,-1 +Bday hai aur ye lodu clg aane na bola,-1 +Ye lodu Rohit ko sharam nahi aata kya?!,-1 +Isiliye ye lodu ke sath kabhi seedha baat nahi karneka😂,-1 +Vohi tho .. worst than _chal be lodu_ winning this Cup 😂🙂,-1 +Ye is lodu ke pass hai and all we can say is @919029329920 TAG,-1 +Ye dimag ka bhosda kar diya hai,-1 +Yaha bc dimag ka bhosda hua hai,-1 +Vacation mood ka bhosda na kar🙂,-1 +Aee Naruto phan bhosda band rakh,-1 +Bc dimag ka bhosda nhi karneka 😂,-1 +Arey phukat kyu dimag ka bhosda palneka,-1 +Abhhey bhosda kar rahi hai ye dimaag ka,-1 +Dimag ka bhosda hua ho tab sunne jaisa hai😂,-1 +Pajji se jyada ye dimag ka bhosda kar rahi hai,-1 +Iske vajha se aaj ka din ka bhosda ho gaya full,-1 +Ye kya dimag ka maa bhosda kar raha hai 😂🤦‍♂️,-1 +Bc vapis do kya hota hai ree dimag ka bhosda 😂😂😂,-1 +Bhai agar interview ke liye bulaya na to bhosda hoega😂,-1 +Kya malum re baithe baithe bhosda hua hai dimag ka 😂😂😂,-1 +Nhi karna hai yaar kya bhosda hai dimag kaa 0 bhi nhai detr,-1 +Arey yaar tmkc .. kya ho gaya hai bhadve ... Dimag ka bhosda mat kar,-1 +Arey BC itna mast vatavaran hai yaar chutiye jaisa gharpe baithe hai dimag ka bhosda ho raha hai,-1 +Bhai 🥺🥺 Kakashi gone?🥺🥺🥺🥺...bc meko rona aa raha hai kal se....asuma jiraya bc...itachi....yeh pain ki ma ka bhosda....yeh danzo ko to mein gaand mein bamboo daalega😒,-1 +Abe kya gaand maati kar rhe ho,-1 +Mast gaand maar raha hai sabki,-1 +Maanas gaando no thaay jaay to su,-1 +Ye dekh ke jo gaand phata hai na😂,-1 +mera toh abhi se gaand fat rha hai,-1 +For hum log bhi bolenge ab gaand mara,-1 +Ha to gaand marneko time lagta hai na😂,-1 +Sushant ne ko gaand mardi IT walo ki dp mai 🔥,-1 +Other way around hoga...🤷‍♂️ didi gaand maregi,-1 +"Itna nahi, but yes offline me gaand phatta hai.",-1 +Aare over react aatle Manas gaando na thai jai??,-1 +Are woh poora gaand maarne ke baad end mein book pucha,-1 +Dekh bhai aaj mera gaand mein ungli karne ka mann hai....better don't tempt me,-1 +"Kuch gaand nahi maarte, pucha kitna lecture attend kiya. Maine bola pura thoda to bolta hai ""phir""",-1 +Almost bhadva nikal gaya tha 😂,-1 +Toh fir sabse bhadva faculty kon hai,-1 +Subhe 7 baje uth ke dekh ta hai bhadva,-1 +Bhadva ZS ka form bharna bhi bhul gaya,-1 +Bhadva sala 😂🤦‍♂️ thik hai likh diya,-1 +2 baar meeting cancel karvaya hai bhadva,-1 +Saala bhadva Shimpoli me ghum raha hai😂,-1 +Ye bhadva unknown se kind kab ho gaya 😂😂,-1 +Iss bhadvagiri ke wajah se kisiko corona hua toh,-1 +"Bhadva 22 min late aaya, phir bhi sorry nai bolta",-1 +Arey bc mereko abhi vo failure dikh gaya bhadva 😂,-1 +apne liye bhi different question set banyaga bhadva🥲,-1 +Ha na ... Emiway sunta hai bhadva raftaar ka choda 😂,-1 +Me usko hi dekh raha hu kabse .. at last I confirm ye vohi bhadva hai,-1 +"Lekin ye ISD ke saath nahi hoga, bhadva break me mera mock viva liya tha",-1 +Mere baju me Mustafa baitha tha sab ko net connection diya tha. Lekin woh bhadva search he nai kar raha th🙂😂,-1 +30 sec k andhar ans chahiye bhadve ko,-1 +Bhadve subhe bola Manchester is blue😂,-1 +@919930861840 teko mila na link bhadve,-1 +Sharam naam ka chij hi nahi hai bhadve ko,-1 +Arey bhadve hum khud 11 ko aa rahe hai 😂🤦‍♂️,-1 +Acha gana bajj raha tha ruk gaya ye bhadve ke vajha se,-1 +"@919930861840 TAG, ye bhadve Rohit ko Naruto kyu suggest kiya?",-1 +Are lauda. Aadhe se zyada log existing he karte hai,-1 +Saala kya pucha samjha hi nahi,-1 +Saala koi kuch padha bhi hai kya?,-1 +Saala usme bhi 15Rs ka to xerox lagega😂,-1 +Saala sab bakwas question hi puch rahe hai,-1 +And saala attendance ka mail dad ko jaata hai,-1 +"Saala sharam bhi nahi aa raha abhi, hasi aa raha hai😂😂😂",-1 +Haa na saala laptop chodke bhi nahi jaa sakte iski wajah se,-1 +Ye saali board pe hi sikhati hai😂,-1 +Abhe yede uske side se bol rha hoon,-1 +Ha na bc kuch nai kar sakte 😕,-1 +Are nahi bc 3&4 dono hue hai😂,-1 +magaj no atho thay gayo che bc,-1 +BC Mustafa is the topper in EV,-1 +Bhaut dhak dhak ho raha hai bc,-1 +Ha laude bc 12 question pucha,-1 +Baap ka naam q yaad rakhega bc,-1 +Bc mereko yaad nai tha marks😂,-1 +Bc mera fatt bhi raha hai mera,-1 +@918291289736 kitna time bc ?,-1 +Bc pura likhna padta hai re 😂,-1 +Bc iska toh operation hota hai,-1 +Ye sab karke faayda nai hai bc,-1 +Ye ESD lecture kidhar hotay bc,-1 +Bc yeh mazaj hai...lab nai😂😂,-1 +Are bc wo bhi hai ekdum😂🤦‍♂️,-1 +lec chalu hai ki video call bc,-1 +Ye Amrita ka no. Do koi Tho bc,-1 +Ha bc tumne khudka daala hai😂,-1 +Btw 5-0 bc sharam nhi aya ? 😶,-1 +Kitna faaltu ppt banaya hai bc,-1 +Kiske parents itne free hai bc,-1 +Are bc project is exp 1😂🤦‍♂️,-1 +Are bc 4 missed calls the re..,-1 +Tum attend karte ho bc ? 🤦‍♂️,-1 +Maja ko umnag ka aata tha bc 😂,-1 +Bc itna to freedom dena chahiye,-1 +Mera 1st bhi nai aaya ab tak bc,-1 +Bc out dated banda hai re bhaut,-1 +Aur 10-12 logoka baaki hai bc😂,-1 +Oh bc rivals ke fans ho tum😂😂,-1 +Bc tu nervos kr rahi hai yaar🥺,-1 +Tumhari thodi der hi phategi bc,-1 +Bc mei khud ek answer nahi diya,-1 +Artitecture of DSP processor bc,-1 +Yaha bc screen share wagera hai,-1 +Bc mera naam hai🤦‍♂️🤦‍♂️🤦‍♂️,-1 +Bc 2 din pehele bola ki ese hai,-1 +Bc log ijjat se bharo na please,-1 +Diploma waalo ko A5 me daalo bc,-1 +Arey bc ye icon kya hai yaar 😂,-1 +Pura ABCD bola kya N ke baad?😂,-1 +Arey yaar bc tum dono bhi 🤦‍♂️,-1 +"ye bc editor, communicator, ...",-1 +Nhi re bc kis muu se puchega 😅,-1 +Ye aarti ka mic faat rha hai bc,-1 +Koi nhi dekha janede bc 😂🤦‍♂️,-1 +Bc ye ninand sir ka story dekho,-1 +Bc project ke liye time nai hai,-1 +Bc kahase confidence aata hai?😂,-1 +Aare bc topic change karne daala,-1 +Bc yeh photo post karta insta pe,-1 +"Ye mcom, IS, SA, spa kya hai bc",-1 +F bc .. bhul hi gaya tha 😂😂😂,-1 +Arrey bc sharam hi nahi hai usko,-1 +nashik mei koi trip karta hai bc,-1 +Kitne group me hai bc 😂 hoga hi,-1 +Ye Rohit bhi colorblind hai bc😂,-1 +humko reply nai bc @919619402076,-1 +Vince should sue the singer bc😂,-1 +Merko laga ki usse ek de dega bc,-1 +Usne bc 10 min pehle submit kiya,-1 +100 100 taka accuracy ave che bc,-1 +Bc tere wajah sab ko karna padega,-1 +Koi aur hota to bhadak jaata bc😂,-1 +"Ha na bc, Covid chhota cheez hai?",-1 +bc ruk jaake usko remove karta hu,-1 +Sala aapna nasib he kharab hai bc,-1 +Bc abhi tak grp 3 chal raha hai ?,-1 +Microsoft bc glt details deta hai,-1 +Are bc viva hai. Usme yeh sab q🤔,-1 +Time management nai aata inko bc,-1 +Ye sab bc pyramid scheme hota hai,-1 +Bc log into bura bhi idea nai hai,-1 +Bc merko konsa grp join karna hai,-1 +Aur me pehela naam bataya apna bc,-1 +Itna accha subject bigaad diya bc,-1 +aree bc dimag ka bsda ho gaya hai,-1 +bc a3 mein abtak maam mute hi hai,-1 +Haana bhai😂😂😂 bc...kal raat se,-1 +Yed zhavi hai re bc chod mkc uski,-1 +Az yeh kya hi song hai bc 🤦‍♂️😂,-1 +Mane toh aaje ungh aj nai aave bc,-1 +I cant tell how happy i am now bc,-1 +Ye ICT wali ma'am pagal hai re bc,-1 +Aare bc humara leader is sleeping,-1 +Bc ESD ka IA2 is case study ppt🥲,-1 +Arey aaaeee kya hai yee bc 😂😂😂,-1 +Haane bc😂😂😂😂😂 from 1st epoch,-1 +Waah bc finally something good 🤝,-1 +Yz hai mere group vale bc .. shii,-1 +Are bc ab tak haare nahi apan?!😂,-1 +Tereko mere se zyada kaise mila bc,-1 +Are but itna sab ek saath kaise bc,-1 +Sab ko presenter q bana rahe ho bc,-1 +Are bc ye exp3 BVLSI ka baki hai😂,-1 +Bc kya randap chalu hai re tumhara,-1 +Tumhara bc 40 Marks ka paper tha🤔,-1 +warna mai complaint kar raha hu bc,-1 +"Mereko lena tha bc, Now I regret☹️",-1 +"Nai na, bohot garmi ho raha hai bc",-1 +Ha na bc mention karna chaiye naa,-1 +Sir log note bhi karte hoge kya bc,-1 +Laptop aag ka Gola ban gaya hai bc,-1 +Tame loka bc mane su sambdhavo cho,-1 +Arey bc 😂😂 kya bakchodi hai 😂😂,-1 +Magaj no attho kari nakhyo chhe bc,-1 +Bc ye sl haat bhi nai rahi fatafat,-1 +"Ha na bc, LTI me bhar diya jaldi🥲",-1 +Bc mene teko call bhi kiya tha😒😒,-1 +Ruko bc msgs hi disable karta hu😂,-1 +ABCDEFGHIJKLMNOPQRSTUVWXYZ🤫🤫🤫🤫,-1 +Ha toh unko bhejne kya hota hai bc,-1 +__😂😂 bc jil to andar le liya hai,-1 +Idhar bc mei soya tha kabse😂🤦‍♂️,-1 +Ha vahi voh compliment kaise hua bc,-1 +Are bhai kuch bhi bolta hai yeh bc.,-1 +Bc wifi barabar nai chal rha tha 😂,-1 +Bc code explanation chal raha hai🥺,-1 +Aaise he jo man kiya de diya hai bc,-1 +Bc ...pura prospect squad tha....😒,-1 +Are viva me aaisa kon puchya hai bc,-1 +Bc reviva hai ki nahi bola bhi nahi,-1 +Bc 12 mese 2 ko he pass Kiya hai 😂,-1 +Bc mail dekho...project approval ka,-1 +Ayeeh .. bc me pass ho raha hu 🥺🥺,-1 +Bc mein kitna wierd lag raha hu😂😂,-1 +Bc param ke gharpe police aai hai😳,-1 +Bc isse acha tho me de deta 😂🤦‍♂️,-1 +Are bhai Sab Crack version dege bc,-1 +kch bhi fee structure banaya hai bc,-1 +Are bc abhitak nahi chhoda??😂🤦‍♂️,-1 +Kya bola hai bc😂😂😂😂🙌🏻🙌🏻🙌🏻,-1 +Rohit bc kitna dur baitha hai re?🤣,-1 +Bc sabse sirf party le raha hu re🥲,-1 +Bc mera prac 57% hai ESD ka 🤦‍♂️😂,-1 +Bc yaad hai na? 10% salary mera hai,-1 +Kuch qualification rakhna chaiye bc,-1 +Bc mere project ke time pe Isko call,-1 +Bc video banana baki hai abhi bhi 😂,-1 +Bvlsi khatam nhi hora bc idhar 🤦‍♂️,-1 +Bc phukat ka 1 ghanta le liya 😂😂😂,-1 +Woh patli waali maam bc gand maar di,-1 +Bc itna easy mereko puchna chaiye re,-1 +Arrey bc I’d card bhi dikhana hai 😅,-1 +Fir rohit bc jagda chalu kat diya bc,-1 +I was like ruk bc. Bata raha hu live,-1 +Bc ly projects ka approved list aaya,-1 +Lavda bc idhar bina tshirt baitha hu,-1 +Abhhey bc mera mai 3 log hi hai 😂😂,-1 +A3 ke group pe ek message nhi hai bc,-1 +Itna lavda lasun bc is it worth it ?,-1 +Bc yehi sab pdf apneko diya tha usne,-1 +Are maine photo nikala hai bc wait😂,-1 +Haana bc...aabhi jaan kha jayega yeh,-1 +Ye sab madrasi ladies yz hote hai bc,-1 +Aare bc randomly to gaali mat do😂😂,-1 +Bc ye Japanese mein urdu bol rahi hai,-1 +Bc screen share ka hi darr tha bc aaj,-1 +Aur bc bataya vo me likha bhi nahi 😕,-1 +Bc Anil sir bhi Khair chhodo bol diya,-1 +But bc yehi haal hai abhi ke liye😂🙏,-1 +Ye MNCC vali yed zhavi hai re zara bc,-1 +Yeh maam na bc Sab live mang rahi hai,-1 +Bc itna time mihir ke question ko??😂,-1 +Aare bc mein just aaya ibm ke test se,-1 +Mein tph bol rha hu abhi jaate hai bc,-1 +Manu kaka aa loko karta saaru rame bc,-1 +"Haana bc, phir Report kyu banane boli",-1 +shreyans bc free hai par natak karega,-1 +Kisko 40 ke neeche nahi hai bc😂🤦‍♂️,-1 +Kya bc time pass labbmein bhi rota hai,-1 +Are bc Indarjit sir ka lec chalu hai😂,-1 +Aare bc Wednesday to dekhte hai yaar..,-1 +Are bc tshirt pehenna padega phir🤦‍♂️,-1 +Bc mouse clicking ka awaaj aa raha hai,-1 +Bc 10-12 questions pucha yaad bhi nahi,-1 +Bc mere tere jaise logo k he laude hai,-1 +Bc yeh A1 wale alag alag news dete hai,-1 +Waah bc mereko bhi lobby mei daal diya,-1 +Bc mereko 1min 30 secs bhi nahi diya🙂,-1 +Bc itna ganda 1st time gaya koi viva😶,-1 +Abhhey ye Ishan Patil kaun hai bc 😂😂,-1 +Bc ye 5 baje waalo ka paper chindi tha,-1 +Toh kya bc ye BA mei maam kabhi aayegi,-1 +Idhar Aniket ka halat dekho bc 😂🤦‍♂️,-1 +Yeh bc har baar ek bande ko bolta hai,-1 +Par aaj shreyans bhi bohot bar haga bc,-1 +Ye wala experiment Apne mai kab hua bc,-1 +Kal bc meet mei sirf 25 log honge re😂,-1 +Usko koi jaake sunshine dedo bc😂🤦‍♂️,-1 +Haana😂😂 and vo bhi ebc valo ko 4 hai,-1 +Bolna chaiye tha tabhu he. Yeh rohit bc,-1 +Are bc BVLSI ka checking start kiya hai,-1 +Bc lab khali attendance ke liye hai na?,-1 +Bc exam ke liye preparation ho raha hai,-1 +Ha na. Last ka 1 nai aaya toh bc khatam,-1 +Q4 bc khudka calc. karna padega re🤦‍♂️,-1 +Bc yeh sab dekhke mei mails dekha thoda,-1 +Bc and I am searching for a job 😂🤦‍♂️,-1 +Are toh bc screen share karna padega na,-1 +Bc mereko dikha bhi nahi mera naam🤦‍♂️,-1 +Bc itna ijjat yeh group mein nai hota😂,-1 +Mei toh bol rha hu form hi mat bharo bc,-1 +bc vo midhya end karne ke liye yes boli,-1 +Aise hi bc naa context naa kuch 😂🤷‍♂️,-1 +Gand fattu log Umang ko karke dikho bc😕,-1 +Arey cricket khelne jana hai bc kabse 😂,-1 +Aksa ka plan banaya tho bhag ke aaoge bc,-1 +Meine bc ISE ke baad ye sab chhod diya😂,-1 +Are bc ICT mei apan sab chutiye hi hai😂,-1 +Bc public boat voat bana raha hai yaar🥺,-1 +Inderjit ko aur Kuch kaam nai hai kya bc,-1 +Woh bhi sube sube bc mast mood me aayega,-1 +Bc kidhar bhi baitho gand marane gaya bc,-1 +BC doubt puchne ke time pe mat nikalo na,-1 +Aur tu to bc baal bhi nahi katata😂🤦‍♂️,-1 +Harr lab me mic on karke hagta hai re bc,-1 +Bc kantala aa raha hai Q3 likhne 😂🤦‍♂️,-1 +Arey Lavdya .. kyu bc ungli karta hai 😂,-1 +Inko bc lms pe kyu rakhana hota hai🤦‍♂️,-1 +Lekin BC yeah partiality karna hi kyu hai,-1 +Bc mini Project is after semester 🙃🤦‍♂️,-1 +Bc kisi ka bhi kabhi bhi leta hai kya yeh,-1 +Bc itna control kiya tha mei ki na hasu😂,-1 +But yeh 5 rupees ka coin Kyi daala hai bc,-1 +Bc a3 ly ke grp mei a2 hai ki apan hi hai,-1 +Attendee hai bc abhi kaun nikalega tereko,-1 +Are yeh capgemini wale kya puchte hai bc,-1 +Sab bada bada hi bc no motivation 😂🤦‍♂️,-1 +Apun bc kitna gand ghiske likha kal bc 🙂,-1 +Me bc udhar pick a card bhej dunga haa 😂,-1 +Sab free baithe hai chat karne ke liye bc,-1 +In short siddhart is not eligible for ebc,-1 +Bc meko kitne baar diya h jab meet rakha h,-1 +Ye ckt lab mei bananemei maza aata re bc🔥,-1 +Are bc camera ko setup karneko time lagega,-1 +Aae bc....jitna ho pa raha hi dikhado🤷‍♂️,-1 +Hoga hi bc ... Pure duniya ka hyy lega tho,-1 +Aare bc grp 3 to bolo jheet gaye bhai🤷‍♂️,-1 +Faltu prize hua na bc toh muh pe naa boldo,-1 +Bc viva le rahe hai ki talashi kar rhe hai,-1 +Aaj 4 over ke match me 100 marunga bc 😂💥,-1 +Abhi bc circuit assemble karna padega🤦‍♂️,-1 +Dhruv bhai ka aatank hi khatam hogaya bc😂,-1 +Banao yaar kuch plan phir bc 70 din chutti,-1 +Bc mera koi mic and camera disable kr diya,-1 +Bhai teen patti khelne ka mannn ho gaya bc,-1 +Literally sir dukhne Laga ye padh ke bc 😂,-1 +Clg bc sachmei free vaccines de raha hai😂,-1 +Kya bc subhe subhe chalu ho jate ho😂🤦‍♂️,-1 +Ye sablog kya apna check karva rahe hai bc,-1 +Aur bc mereko acknowledgement kaise aaya?😂,-1 +Bc milke 10-10 lines type kar lo na tum log,-1 +Bc kisine nai dekha mene piercing karvaye🥺,-1 +Tame badha bc mane su samjhavo chho aam aam,-1 +Bc instruments Somaiya ke pass kyu nahi hai,-1 +Chalo naa bc me tho vacation se bol raha hu,-1 +Me rehta tho puchta nhi direct kar deta bc,-1 +Bass phir band kar diya me cancer hai bc 😂,-1 +Bc itna free ho tum ki Rohit ka baat karoge,-1 +Aama kantado nai aave tane bc @919892400909,-1 +Bc hua hai khush rehneka chod ke ye kya hai,-1 +Majboori mei kar rha hai waisa lagta hai bc,-1 +Are yeh umang meeting record q nai karta bc,-1 +Tumhara bc UCL pura saal chalu hota hai wo😏,-1 +Bc join kar raha hu to error aa raha hai mkc,-1 +Wo block diagram abhi sapno me aata hai bc😂,-1 +Aae bc...ueh sab thrash talk pc pe karo🤦‍♂️,-1 +Aa meditation na grp ma su wato chale che bc,-1 +"Ha na bc, itna jaldi idea kaise decide hoga?",-1 +Aare yaar bc.....ussko kitna mach mach hai😑,-1 +Nahi matlab bc harr subject me mai hi kyu 😂,-1 +Bc mostly sab ne dekha fir bhi wish nai kiya,-1 +Itna bada mail maine zindagi me nhi likha bc,-1 +Are bc mcq ke section wise hi elimination?😂,-1 +@918291289736 bhai ye sab kya hai bc 😂🤦‍♂️,-1 +Bc yeh to mere pe he aagaya🤦‍♂️😂😂😂😂😂😂,-1 +Ek baar to bc breadboard bhi kharab nikla tha,-1 +Mah government ka non-essentials bandh hai bc,-1 +Report bc khudke group ka bhi nahi banata hai,-1 +Bc kidhar Sonu Nigam ka aavaz kidhar Umang ka,-1 +Are bc ye DCN ke sab exp khatam nhi hue na?☹️,-1 +Me vohi bolu .. bc hass kya raha hai lavda 😂,-1 +Bc mereko samja hi nhi tha Yash kon 😂😂🤦‍♂️,-1 +Idhar team leader ka aata pata naii hai bc 😂,-1 +Kaam ka chij sikhana .. time nhi hai idhar bc,-1 +Arey bc vo A4 pe itna sara kya aaya hai 🤦‍♂️,-1 +Bc ek to faltu faltu papers collect kare chhe,-1 +Free hi baitha hai par kch kaam nai karega bc,-1 +Are bc kitne class room hai woh bata rahe hai,-1 +Kya bc hod government government kar raha hai,-1 +Bc vjti ma google na vajah thi ketlu hase avg,-1 +Arey bc accidently group icon open ho gaya re,-1 +Bc tera tag bhi TAG sunai deta hai aabhi🤦‍♂️,-1 +Majboori mei kar rha hai ~waisa lagta~ hai bc,-1 +Bc umang ko bola....par vo sunta he nai hai...,-1 +Ha but yeh log kuch bol nai rahe kuch nahi bc.,-1 +Bhai jo bolra tha uska bc woh deep me bolray.,-1 +Arey yaar 😂😂😂😂😂 bc kya yaad rakhta hai re,-1 +Bc karan ke baad stop....kisko le nai raha hai,-1 +Bc idr mai dsp ke paper me ss likh ke aaya hai,-1 +Naukri is the correct word but sounds odd bc😂,-1 +Ha kbc ke chode aaja tereko 10 crore deta hu😂,-1 +Ye miss mat karo bc gali dalo tag karke please,-1 +Are background me kitna aavaj aah raha hai bc,-1 +Sir basics nhi ata bc advance aata hai sirf 😂,-1 +Uthne se pehle bc lecture khatam ho jata hai😂,-1 +@919757163195 bc tu kaise puch sakta hau yeh😂,-1 +Bc ye IS subject ke liye feedback aana chahiye,-1 +Ye bc 14 credits complete karna compulsory hai?,-1 +Ha na bc 😂😂 vo alag vibe tha uss room me 😂💀,-1 +Complain kro principal ko bc itna kaun leta hai,-1 +Bc 20 min kya kiya ? Choco le raha tha kya uska,-1 +Mera toh bc wo umang pass honeke wande lagata h,-1 +Tho bhai kya hai kal mass bunk maar hi do bc 🔥,-1 +Bc ye ko mere se bhi bahut fast boleta hai 😂😂,-1 +Aaj bc 3-5 me nahi hona chahiye kuch bavasir 🥲,-1 +Inko sharam nhi aata bc... mail nhi daal sakte😕,-1 +Jiska BC lockdown se kuch lena dena bhi nahi hai,-1 +Jis ne share kiya woh leave kar sakte hai kya bc,-1 +Bc college ke 2nd day kya dekh liya tha😂🤦🏻‍♂️,-1 +Ulta line pe bhi itna bheed hota haj bc😂🤦🏻‍♂️,-1 +Bc while meeting is on I can't access teams🤦‍♂️,-1 +Ye sab likh ke alag feeling aata hai re bc🔥🔥🔥,-1 +@918291289736 tereko kya kya bol rahe hai bc ..,-1 +Achha bc ab tak vegan ka baat ho raha tha😂🤦‍♂️,-1 +City waala kuch bhi bole to believe kar leneka bc,-1 +Bc umang hi Bola tha na components list dalne ko?,-1 +Bc issmein melo nai lagta mein viva pass ho pauga,-1 +Aai chi Gand ... 😂 Kya bolu bc samaj nhi aa raha,-1 +Bc...3 mein tab pauchegqna...jab 1 and 2 hua ho🤭,-1 +@919819821536 kya pucha??? System kya hai inka bc,-1 +Bc public aksha nai aa raha hai aaj kal? Kya scene,-1 +Are bc aaj kal kuch college me dhyaan hi nai hai😂,-1 +Aabhi to bc gaamd maro...attendee banquet nikalega,-1 +Bc but meko kyi lag raha hai ki pel raha hoga vo🥺,-1 +Bc hole karvaye...yeh pehene padte hai for a month,-1 +jil is like accenture ka result kab aayega bc 😂😂,-1 +Bc nai to cover ma 501 lakhi ne andar 101 aj mukis,-1 +Itna fees badha diya hai toh kon lega bc admission,-1 +Topic change karna tha bc band hi nhi ho raha tha😑,-1 +Bc kuch bhi karo ... 1 baje ke pehele lelo mera 😂,-1 +Yeh log ko kya maza aaata hai itna gand maar k bc..,-1 +Ek toh bc kuch meko dhang se sunai nahi de raha tha,-1 +Yeh naam sahi likhne se kya farak padta hai bc 😑🤔,-1 +Bakchodi karvalo bass bc job tho hoga nhi inse 😂🙂,-1 +Are yaar achanak aawaz aaya mei darr gaya bc😂🤦‍♂️,-1 +Aare bc.....as expected....paaji is not exhausted 😕,-1 +Are inko kya maza aah raha hai yeh sab karne me bc.,-1 +Ab tho aana padega borivali sub public placed hai bc,-1 +Aare bc log reject hogaya hu mein😂😂😂😂 accept nai,-1 +Karna hai bc ueh amanshu said no you are not allowed,-1 +Bc mei aata hu tab rasodu vasodu hi leke jaate ho 🥲,-1 +Time table explain karne ko bolo pehele faculty ko bc,-1 +Aa lavdi ne kai bhan nathi padti timepass kare che bc,-1 +Wednesday vala karo bunk bc bhaut takleef hai usme 😂,-1 +Campus placement bc. Never expected this from you😂😂,-1 +Hu deal karis to pacchi aapda project nu su thaase bc,-1 +Bc abhi ek saal me 14 week internship karu kya 👀🤦‍♂️,-1 +Kal gand marne me uska bhi gand udas hua rahega na bc,-1 +Bc school me nhi mila kabhi itna bada vacation 😂🤦‍♂️,-1 +Warna bc YouTube video ke premier ka link bhejta hai😂,-1 +Bc karta toh kuch hai nahi but meeting chalu karni hai,-1 +Pachi ena chokra ne saari job ane saara marks madse bc,-1 +Aare Matlab vo screen recording karke bheja tha vo bc?,-1 +Bc! Bhai link bhej. Kidhar se milta hai ye sab tumko?😲,-1 +Bc DSP ho gaya ab darr kya hota hai pata hi nahi hai 😂,-1 +Bc bola hai wo kaam nahi karta... hasneko aa jata hai😕,-1 +Bc apna subject selection ka process was avoiding pajji,-1 +Proteus bc😂😂😂....inko bolo pirated use nai karna hai,-1 +Bc issko lag raha hai ki yeh bohot sundar dikhta hai...,-1 +Jyaa sudhi mane biji job nai lage tya sudhi kase nai bc,-1 +And btw to was a typo error...aab mein kya karu bc🤦‍♂️,-1 +Ha but marks kaha kata hai😅. Sab proper he likha gha bc,-1 +Ha. Bc 2nd attempt me 40 me se khali 2 pass hue the🤣🤣,-1 +Aur mai bc bata raha tha ki hum ne kiya haii............,-1 +Because humlog ki bldg mei goal post hi nai hai bc😂😂😂,-1 +Arey bc 2-3 oct vashi jaa raha hu re tournament hai ek😂,-1 +Bhai bate karte karte time ho jayega malum nai padega bc,-1 +Bc....joke karo to problem support karo to problem 🤷‍♂️,-1 +Bc log tech head ke sath kavish bhi hai..ussko to naam lo,-1 +Bc tereko answer bataneke chakkar mei mere 2 miss hogae🙂,-1 +Nai re majak kar rha hu bc warna ye toh sachi mein karega,-1 +aisa koi mail id banao ki usme pure a3 ko send ho jaye bc,-1 +Aree bc vo bola tha nxt time jaise ayega vaise merko bata,-1 +Bc mera 200 laga tha and hardly 5 days travel kiya hoga😂,-1 +I am going to Malad tomorrow aur iski gand marunga bc😂🔥,-1 +Azli😂😂 hum galat bande ko bhaiya bol rahe the re bc😂😂,-1 +Bc mera sem 3 me audit course completed nhi likha hai 😂😂,-1 +Bc USA Germany France ka standard study karna hai🔥🔥🔥🔥,-1 +Sher toh bau dur ni vat aa toh vando ne pan layak nathi bc,-1 +Bc mera attendance nai lag raha hai since 3 times🤦‍♂️👍🙂,-1 +Vo aaj jyada chu cha ki na bc me suna dega .. marks ki mkc,-1 +Phir sharam aata hai bc lagta hai apun kya guu khaya hai 😂,-1 +Naj toh agar mein msg karinga tob bc merkk hi khatab lagega,-1 +Mei bc just scroll kar raha tha aur ye aaya feed mei😂🤦‍♂️,-1 +lekin end mei abhi 2-3 mins mei le ke khatam kar raha hai BC,-1 +Aaj bc attendence ka importance sab ko samaj raha hai🥺🥺😂,-1 +Bc....bhai saache bc...end sem ke baad qane bola is heights!,-1 +Bc bts ka naya song butter...70 million views in 14 hours 😳,-1 +Bc sirf apan 3 aise hai kya baki sab achhe bacche hai😂🤦‍♂️,-1 +Ye bc chalu hua nhi college ki aisa sab news dete ho na 🥺❤️,-1 +__😂 bc isse aacha umang tha..rply to karta tha...pc pe🤷‍♂️,-1 +Bc apneko Microwave devices allot hua hai as dept elective👀,-1 +Aare bc aaj lec bhi the yaar🤦‍♂️..mein saachi bhul gaya 😂😂,-1 +Nilya ko kya malum pad rha hai ki mere pas konsa phone hai bc,-1 +Ab sab ko presenter kon banaya bc @918369169408 @919167339256,-1 +Usse dene wala bhi apne grp pe hai bcoz yeh abhi mene dala hai,-1 +Bhai ye kalyan ke badle Cambodia mein shift ho gaya hai kya bc,-1 +"Bc aa mihir nu badhu tuteluj chhe, scooter, mobile, attendance",-1 +Bc haar baar yeh sadistic emoji bhejke mood off karta hai.......,-1 +Aare yaaar kuch jayada he instruction de tahi hai ek lec mein bc,-1 +Bc nhi hoga kuch .. jhat aukat nhi hai inka offline leneka 🤦‍♂️,-1 +Bc link nai bhejega par pura panchat karega next two days wagera,-1 +Bhai tarika hota hai kuch .. 4 ka 6 samaj aata hai bc 9 kya hai ?,-1 +Bc yoga ke theory me 20 se kam rahega tho fail bhi ho sakta hu 😂,-1 +Bc bhargavi ko itna bhi malum nai pad rha ki marlab hai ki python,-1 +Bhai aise hi baat karte rehenge na bc 1 se 3 ka pracs chala jayega,-1 +Aur ye mustafa ka name jo colour me hai vo aur sandaas hai bc shii,-1 +Bc ekto olo viraj ro ro kare che ane tu bc 2 2 job laine betho che,-1 +Bc ye ipl mein koi bhi tm apne home grnd pe nai khelne wali thi na?,-1 +Sirf viva se itna improvement hai .. bc me 3 baar diya tha socho 😎,-1 +Ye course itna worst tha na bc uske aacha ko jyoti ka course tha bc,-1 +Aare yaar....yeh inderjit ko kya kuch grudges hai kya students pe bc,-1 +Last 3 sem me 5 subjects me 1 mark se ek pointer gaya hai bc😂🤦‍♂️,-1 +Mini project ke viva mai hod aana chaiye bc naanda kar duga usko pura,-1 +Bc group icon 😂🔥🔥...jibi aparicit jaisa lag raha hai😂😂😂😂😂😂😂,-1 +Abhi bc confidence bhi hai re ki dono electives ka answers milega😂🔥,-1 +Bc 9 hours per week padhana hai vo bhi online but fees pura cheheye😒,-1 +Tho jaldi mat uthu naa bc 9-10 baje utha tho bhi padhneko 6 hrs hai 😂,-1 +Ajao bc maja ayega volleyball leke aao khelne mila tho khelte hai 😂🔥,-1 +Bc mera to aaisa halat hai ki meko....3 4 times re viva ka baari aayega,-1 +Bhai but yeh kuch jyaada nai hogaya?....bc 10 se aaroung 9.30 tak 🤷‍♂️,-1 +Wohi na bc mai time Bacha raha tha woh log ka usme bhi unko bhakchodi hai,-1 +Maa kasam bc mood change hi na jo instant bc ye padh ke 😂😂❤️❤️❤️ aha bc,-1 +Bc faculty hai akkal nahi lab ke time kya chalu rakhana hota hai kya nahi,-1 +Ye sentence ka meaning samajneko 3 alag cheez google karna pada bc😂🤦‍♂️,-1 +Bc college ka yaad Mat dila....meko volleyball khelne ka dil karte hai🥺😭,-1 +Humlog ko bola tha 400 bharo somaiya walo ke liye discounted scheme hai bc,-1 +Bc IS mein rod ka baat chal raha hai😂 keval kuch to rod ka bol raha hai😂,-1 +Diet toh kch karta nai hai bc pura bartan bharke aaloo ka sabji khata akela,-1 +Mera internet ka jhol hua bc nahito @918291289736 mei achha wala ss leta...,-1 +Bhai last time mai jidhar leg rakh raha tha waha se Matti nikal raha tha bc,-1 +Jidhar dikha ki meeting chalo hai bc join kar dalo and sabko invite karo mc,-1 +"Bc _Chaudhvin ka chand_ sunn raha tha, aur tumne kya yaad dila diya😂🤦🏻‍♂️",-1 +"Reply hi nahi diya bc, ab main usko ppt ke time tak waapis puchunga bhi nai😂",-1 +Maa ki chut sach bol raha hu mera 5 baje ke baad liya na me jayega hi nahi bc,-1 +Chalo bc paper bhi khatam aur ISE ke time jo book banaya tha wo bhi khatam😂👌,-1 +Abbey yaar kyu tp kar rhaa hai ye bc time naii hai idhar logo ka intro sunna ka,-1 +Bc low level machine language nathi aavadti ane high level talks karva che🤦‍♂️,-1 +And haa bc lelo Lelo job aane se phele is paisa lelo bc kuch rakna mat mere liye,-1 +Bc jaisa mera resume hai lagta hai muje he paisa dena padega kaam karne ke liye😂,-1 +In chutiyo ko faculty feedback chahiye wo bhi aise site pe jo open hi nahi hota bc,-1 +Aacha bc...mera khali jab anab shanab bakte hai log? Ka kaha hai tumhara sharam?😒,-1 +Kya maa chod raha hai ye bc @919221126032 tuje iska language kaise samajta hai 😂😂,-1 +Bc chup chap 2 exp 1 din mei leneka to screen share ka lafda karte baithata hai🤦‍♂️,-1 +Bc mein toh bolta hu apne hisab se grp banate hai or har ek grp mein viral karte hai,-1 +Hard luck...you guys will get next one❤️...and bc tu haar apti clear kiya hai isske alava😒,-1 +50 lines naa .. bc vo padhne vali bhi nahi hai lavdi vo list mese kisika uthao aur bana dalo,-1 +Shanti me kaam karneka apna .. nhi bc sir 5 set karege tho lavda hoga 10 set kiya tho lasun hoga,-1 +"Main bc sacchi ye sab lecture baithne waala tha BA ka, kyuki bohot accha course hai. But 🤦🏻‍♂️",-1 +Lekin public ne soocha tha mast marks milega so meditation liya. Aur bc...... khair chodo 😂🤦‍♂️,-1 +Ee bc round wise elimination kidr tha?...bc kidr likha he nai hai 😒....mein idhar kush ho raha tha,-1 +Aare bc tere support mein bol raha tha...ki bc itna bolte ho megha ko even he got placed karke🤦‍♂️,-1 +Bhai search karegana average package of somaiya college to 12.73 aata hai net bc😂😂😂 sab scam hai,-1 +Mene bhi 1 attend kiya hai...bc har baar bhedbhav....phele dsp and aab yeh🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️🤦‍♂️,-1 +Bc mera naam and number kon daala...stock market course mein...meko 4 phone aaya hai sube se bc😒😒😒😒😒😒😒😒,-1 +Bc yeh sab mat bhej...aabhi just khatam hua naruto 🥺🥺🥺🥺...720th episode...aaya mein emotional ho raha hu and teko memes bhejna na😑,-1 +Mereko chodne ka itna relief tha na bc me form bhi nhi bhara 😂 bola nahi mam chalega mereko janedo sirf ab tak jitna kiya vo as a help samajlo,-1 +Ye nhi dikh raha kya tereko mc,-1 +Bolo siyavar ramchandra ki!!!!!,-1 +Pahela mcq analytics ka hai na?,-1 +Mc hai lekin thik hai ab kya 🥲,-1 +Karne bolta sidha nikalta hai mc,-1 +Wohi na ye sab job wale mc log😕,-1 +Duration🤦‍♂️ puchta hai for mcq,-1 +Arey mc western valo bologe kya ?,-1 +mihir mc khota ans che tara badha,-1 +Mc group pe message bhi nai karti,-1 +Charkop aake bomb daalunga mc😂😂,-1 +Tu gm mc. Kuch kaam nahi kar raha,-1 +"Naad kara , pan aamcha kuthe 🔥🔥😂",-1 +tharki mc 2 mam ko leke baith ta hai,-1 +Mc Aniket ne bola bolneka tho bolneka,-1 +Shakal se hi mc bola matlab tereko😂😂,-1 +@919960383380 mc tereko drop kyu laga😕,-1 +Hogaya tha na vo nirmal ne mcq diya tha,-1 +You agreeing to the fact that you are mc?,-1 +Ha wohi mc log ke vajah se badha hai azli,-1 +Jo ma'am patli hoti hai wo bohot mc hoti hai,-1 +Mc teams mei lobby ke liye alag page rakho na,-1 +Arey pajji lavdya nhi ho raha idhar set up mc,-1 +Paji mc exp mei bhi even odd kar raha hai🤦‍♂️,-1 +Mc nhi tho assignment likh ke dena padta hai 😂,-1 +Kya subhe subhe ye emoji bhej rahe ho re mc😂🙏,-1 +Tmc dimag mat kharab kar ha. Hamesha yeh bolta hau,-1 +Ye mc faculties ko IA ka mail bhejne kya hota hai?n,-1 +Mc log ne sirf marketing ka hi internships bheja hai,-1 +Mc mera dost jo building me rehta hai vohi gully me tha,-1 +Arey mc koi diploma vala personal pe message kar diya 😂😂😂,-1 +Mc clg wala pehle se itna paisa lete hai aur ek software bhi nai de sakte,-1 +Lec mei batati hai IA hai aur 1 din time deti hai complete karnemei aur mc log hai lec baith ke bhi batate nahi hai,-1 +Wo meine Dean ke door pe moot diya😂,-1 +Aee @919029329920 hijde chup baith na,-1 +"Tumhri maa ki chut band karo ye, Desh mai jawan shahid ho rahe hai aur Tum in kutto ki picture post kar rahe ho",-1 +Chup chutiye...,-1 +"‚ÄúBhagwan Ram was an asshole ‚Äì Prophet was Rapist‚Äù, Shehla Rashid‚Äôs Ruthless Hate speech https://www.aajkiawaaj.com/bhagwan-ram-was-an-asshole-prophet-was-rapist-shehla-rashids-ruthless-hate-speech/¬†‚Ķ via @Aaj Ki Awaaj",-1 +Apni beti ke rape jo banigala me hoowa tha comment karo,-1 +Aur tum jahan hoti ho wahan balatkar badh jata hai baba bhi rape karne lagte hin.,-1 +"Fraud,rape, karke jayega to aisa hi bolenge ...ab wo ashram ho ya rampal",-1 +Han be Rapist Muhammad ke follower.madarchod paegambar Muhammad ne 6 sal. Ki ladki ka rape Kiya Tha...or wo chutiya tumhara god Hai,-1 +spelling sekh le pehle rape sa paida huway ho our moon saaf karlo phir pakistan ka naam lo kuttay,-1 +Allahabad main bhi ek gangrape hua hai kal bachhi k sath.aur ek lady morning walk par gayi thi us ka murder hua hai .is sarkar main Bura hal,-1 +sardana kyu hindu muslim karte ho baba ne rape kiya woh jail chala gaya agar koi muslim kuch karta hai uske liya bhi kanoon hai,-1 +Aur ye delhi ke ladkon ko khula chhod dete hain rape karne,-1 +Teri maa ya dadi bhi yehi kahti hogi jab muslims ne unka rape kiya hoga hindus ki nasal ho tum shak ho to dna test kara k dekh le,-1 +Hinduon Ki rape aur ek Muslimistaan banne Par Hi jababi( Ansari) ko Khushi milegi.,-1 +But chamcho ko gandagi hi pasand hai..ghotala aur rape kerne wale,-1 +Kya tumhari #geeta m likha hai #rape kro,-1 +Zardari ki misal uss tawaif ki si hai Jo tawaif bun kr haram kmaye aur tawaif kehne wale par rape ka case dhonk de,-1 +Tumhari aukat guy ki moot peene ki hai sale guy ko mata mante hai fir uska rape karte hai,-1 +Sahi bat hai didi ji ye harami saale aaukat bhul jaate hai aapni,-1 +usi ka pichwada dekh ke apni behno ka rape karte ho tum log,-1 +"Ramdan ke mahenna may randiyein kapre phen ke a jati ha I hate all live show majan bhejte ha .or Yi Sanam ,shaista, Noor sab bekao Mal ha",-1 +Haa bhai. Ye chutiye log ki hatred apni liye milan ki bela ban k aayi hai. Lets screw this haters!! @addiadn1989 #WeSupportPadmavati,-1 +Aap log kabhi America ki dalali karto kabhi nafrat,0 +#Narendra modi u r a hopeless PM... Apne garib ko maar daala...... I hate u.... Sirf aap bol bacchan dete ho karte kuch bhi nhi...... U r fake person,0 +Kal volleyball khelna hai kya clg mei?,0 +Koi toh chutiya RBL bank mei place hua na ye grp wala?😂,-1 +Captain hi gandu toh kya karega bowler pandu,-1 +Pan aah lodo pujara India ne harave che,-1 +Bolti hai link bhejti hu meet join kar Idhar bc mei soya tha kabse,-1 +bhenchod isko batting karna hi nhi aata,-1 +woh apne aap ko kya samajta hai gaandu... bina soche samje kuch bhi bakta hai lodu,-1 +he is nice but par chutiyapa bahut pelta hai,-1 +usko kuch samajta hi nhi hai,0 +i tried so much... aur kitna try karu mein bhi thak gaya hu na,0 +arrey woh hamesha fight karti hai freetime mila toh fight wohoooooo,0 +woh chutiya 5 KT leke baitha tha,-1 +he is a fucking bastard... chodo kuch nhi hone waala,-1 +meko mera kaam karne de aisa pareshan mat kar baadmein dekhte hai,0 +abey jhaatu ab mana mat kar bahut maar khayega sach bata raha hu teko,-1 +a clueless dumbfuck captain... isse acha toh mein captioncy karta,-1 +pehle bumrah ko bahar nikalo bc jhaatu ko defence karna nhi aata laude ke tarah bat ghumata hai no common sense bc,-1 +bhaii yeh kya bhakchodi hai jhaat nhi samaj raha,-1 +woh badi kamini hai u have no idea yet,-1 +Mereko laga 1st session mei chase kar lenge Abhi aur 3-4 saal ruko SA win ke liye,0 +Pujara ki gand bc Yeh catch Shreyans bhi pakad leta Rakhte he q hai isko slips me jhatu sala,-1 +Pranav my man happy new year,0 +Iss saal thoda bearable banja gandu,-1 +Happy new year boys,0 +Happy new year bhai 🔥,0 +KL Rahul Captain 🤦‍♂️,0 +1 series pehle jagah bhi nahi tha playing 11 mein bc,-1 +Bc Rahane kya baap captain hai,-1 +Jiska khudka team mai jagah fix nai usko thodi denge captaincy ab,0 +Yehi series ke pehle vc se nikala ke vo perform kare under pressure aake,0 +1 match mai vapas thodi deg,0 +Iska naseeb baap hai,0 +Ye series khelega Rahane 🤞,0 +Vohi from nowhere test n odi mein VC,0 +Kayka series yehi toh last match hai😂,0 +Matlab VK Odi Rahul ke captaincy mein khelega bc,-1 +Fir direct sl wi vo sab hai😂,0 +Sunke kitna odd lagtayy bc,-1 +Rcb toh try karraha tha rahul ko vapas laake rcb capt banane ka,0 +Par lucknow nadgaya hai,-1 +Last wicket mai pant catch choda shayd ump check hi nai kiya😂😂,0 +Seeing Pant bat makes me waana kill myself,0 +No talent no temperament only vibes,0 +Bhenchod no responsibility at all chutiya,-1 +Gaand mardi match ki free wicket Bhejna hi nai chahiye bc,-1 +Isse pehle ashwin Lord bhejo,0 +Every tym hagega and log bolenge young hai bc future talent,-1 +Kitne saal aisa chalega pata nahi,0 +Van der dussen ungli kya kiya thoda🤦‍♂️,0 +Pagla gaya lodu,-1 +Isse acha temperament apna hai bc kasam se,-1 +This was Rabada's 7th over in the spell. Most likely his last of the spell. Extremely poor from Pant. Zero game awareness.,0 +Khudle defense pe hi bharosa nai🤦‍♂️,0 +Ganguly ko hai na bharosa,0 +Tabtak khelega saalo tak,0 +Rabada bola hoga gandu muje nai diya na over tab knockout mai😂,-1 +Sunny g gaand mara commentary pe🔥🔥,-1 +Obviously aisa ramp shot kon maarta hai,0 +Pujara Rahane ko baad me nikalo pant ka kuch karo,0 +Jab lagta hai tab kuch log taarif karte hai so brave ye vo bc,-1 +Aise time pe aisa risk lena hi nai chahiye ye tab koi bolta nai🤦‍♂️,0 +Rishabh Pant's scores since the WTC final:,0 +hahaha ye dekho lo apna bhau aa gaya hai,0 +Jee toh karta inse lahor bhi wapas le le,0 +iska muh ek bar kala kiya tha jyada bolega to dubara kr denge,0 +Tum log ne 60 saal dance bar m nachinya k support kiya beta kam se kam chai bechne wala h iman h bande m gandi nali k khun nahi samaj gaye ishara cpi cpm ncp aap rjd jdu cong tmc sp bsp a rahe h na 2019 m aise aukad dikhayenge k din m tare nazar ayenge,0 +Prove kar bhai.,0 +Pure saal chalta hai ye occasions..:p kabhi mandir ke aas paas ghar lekar dekhiye..:D Gurudwara v aaj kal jyada pichhe nahi hai..:D waise kabhi schools ke paas v yahi dikkat hoti hai.. :D,0 +achcha aap so jaao mai bhul gaya tha aap soye nhi phir kabi baat hogi jab mulaqat hui bahot kuch dikhane wala tha aapko,0 +Anna choos lo ganna aur marjao u hypocrite,0 +Mohamed Shami teri biwi ko mera lund or teri bahan ko mera paise bahut pasand hai,-1 +Divya khosla kumar me tujhe shimla me aake chodunga aur tera itna doob piyuga ki tera hone wala bache ko kabhi bhi tere doob chackne ko nahi milega,-1 +Madarchod suwar ke aulad apne aukat me rah samjha na Ziyaulhak Ziyaulhak,-1 +Laude last line dekh madarchod,-1 +Tirange ke alawa koi dusra jhanda fahrane wale madarchod Gaddar hain,-1 +Mullo madarchodo gand jalap bethe bethe yahi kam reh gaya h,-1 +A madarchod chup kutte,-1 +bhadve madarchoad ki aulad chutiya army nai tu or tera khandan hai sory tera khandan nai hoga madarchod jab tu muth mar kar gand faila kar so raha hota tab jawan duty kar raha hota h,-1 +Madarchod chup kr war krte h bc okat h to smne aa kr lado bc..,-1 +Bhosdi kay madarchod film ka f bhi samajhta hai Mallick Bahadur pagla sala thyetar me kya so raha tha kya baill,-1 +Rahul Raaz tumhari maa ke muh me mera lund madarchod Halala ki aulad. Apni ammi se puch kis suar se Halala karwa ke tere ko paida ki,-1 +Bhosdike Teri jute maruga 100 or ginuga 1 samjha re madarchod,-1 +Arham Ansari. Teri maa bahan ka halala krunga Mai bhosdi chod Randi ka land,-1 +Mohmad ki gand me ghus ja bhosdi ke whi reh,-1 +"madar chod teri bass ki baat nahi hai jo tu IAS crack kare, IAS crack karne ke liye lagta hai dedication.",-1 +Bache ko chodkar party karne jate hai aur working women ko lecture de rai hai saali raand,-1 +"suar ki aulad, padh ko nahi paye barobar , dhan ka family buisness ko sambhalo.",-1 +Akshay Kumar Madar Chod samne aa teri maa ko Lund maroon,-1 +kya tatti look de rahe ho bhai tum,-1 +"tharki teri gaand maaruga ruk chutiye , bahut uchal rahe ho",-1 +Agar teri behen nahi kisi muslaman ka lund chusti ko woh aaj zinda nahi hoti,-1 +lund chusne wali media k jhoote drama start ho gaye apni army ki izat bachane k liye,-1 +Abe Sale Behen le loudo... Tumhare Allah ke gaand me tumhara lund,-1 +Chutiya to tu hai lund kate hue mulle,-1 +gaandmasti dekhte bbc mera dimaag ka bhosda hogaya aur tu ab mereko pushpa dikhayega saale jhatu,-1 +ye sharddha kapoor ke nipples I swear mera lund khada kar dete hai bc,-1 +"yeh manmohan ki goverment to bekar hai, sab kutte kamino ki aaulag hai",-1 +kuttiya paalne se aacha hai ki mai suvar ki aaulag hi paal lu kya bolete ho singh saab,-1 +"ae loda pati gayu taru, aave mu bolu",-1 +"tu prime minister banega iss des ka shakal dekhi hai bsdk , tri ko aaukat lund choosne ki bhi nahi hai",-1 +Tu mararchod ye kab kid madarssa website se copy krta hai?,-1 +Bhosdi k Teri jute maruga 100 or ginuga 1 samjha re madarchod,-1 +kutte ki tarha aye din maar rahe yaar ye log tu indias ko!!kaha hai wo sab madar### log hindo rashtra banane wale thekedar ???? bhakt and modi faku? or yogi?? sadhvi togardya ??? sanp song liya sab ko,-1 +Teri gand me dam hai to bej,-1 +matharchodi jab musalman musalman krti rahti h Ab musulmano ka Lund pkd ke jhula jhul,-1 +Bhosdi kay madarchod film ka f bhi samajhta hai Mallick Bahadur pagla sala thyetar me kya so raha tha kya baill,-1 +abe bhadwa ashis saala madachod kitna paisa mila re tereko pakistan ko information supply krne hai...saala tu zarur rss ka chhaddi chhap log ka naajayaz aulaad hai,-1 +Wo sala khud hii bheja hoga... taki 2 emotion bate bolke Logo ki chutiya bna sake,-1 +Ye Molana Chutiya Hai kya Kya ye Jaruri hai kya Ki Muslim O se mohbaat ka Matlab Nmaaj padna,-1 +Madarchod Usape toh baat Kar rahee hai...Pichle Kuch salo se utna bhi nahee hua thaaa... Uska kya??? Tu Hijda hai is baat mai koi shak nahee hai.. Q kii Tum Nsal hee Ghatiya hai... Muslim Mahilao koo Sirf Bache paida karne kee machine banyi rakhi hai,-1 +Jakir shekh Teri ma ka bhosda maru madar chod Randi ki alud apne modi ji ke bare me mat likhna varna e to do kutte the tere pe 100 kutee se Teri mayiya chudvayenge,-1 +kya re lund fakir ladki ko dekha nahi uske phele tu so gaya,-1 +Naveed Alam mai hota tho iss k gand mai apna lun b dalta ...ye Lundian harami hmary kashmeeri bhaio ko,-1 +ranveer singh se bada lund fakir maine nahi dekha iss duniya mai,-1 +"kya boleti public, kiska bada lund hai? mera ya tumara",-1 +Mallana Ansar Raza chutiya or zahil hai....,-1 +pakistani bhikariyon sabse phele to Indian page pe comment Karna band kro jat ke baal,-1 +aur niklo bhenchod..sale gutter chap.. chuthiyo.. apna page bnao aur uspe comments kro.. gareeb sale,-1 +rahul raaz ki kuch jyafa hi jaal gyi . bhai tenstion mat le detol laga le apni gaand ko sukun de,-1 +Qamar beta mirch k goley direct tere gaand k andar,-1 +Sala madar chod....tereko kon bat karne ko bola....aapne ghar me chuhe ki tarha betha reh....thuuu...terepe..,-1 +Aur ye madarchodo lo lab rakhana hai,-1 +TCS deke already mood ka bhosda hoga,-1 +Bhosda kar diya lavde subhe subhe,-1 +bhosdi ke suar ki aulaad agar india se itni hi nafrat hai to mc kha kuraan e pak ki kasam ki india gov ke paise se chalne wali ek bhi yojna ka laabh nahi lega..aur madarchod agar azadi chahiye to jaake pak chale jao..bhadwa sala..,-1 +Madar chod sarkar aour kanoon India ka yh neta sale Hindustan me yesa hi krege madar chod kuch nhi kr payege Pakistan ka vh yese hi marega India ke javano ko,-1 +Bhencho jinke acct me income se zyada paise hai unke acct seize kro,-1 +jitne politicians hain sbke acct check kro..ye chutiyapa krne se bus aam public pareshan hogi,-1 +Tu saala masjid me ramayan path kerwa sakta hai kya?,-1 +saala mai itna khaata hu.. weight hee nahi Badhta ..,-1 +"tum kya masjid me ramcharit manas parwate ho,, kuch chutiya logo ki wajah se log aapas me ghagarte hai",-1 +Mallana Ansar Raza chutiya or zahil hai....,-1 +kuch chutiya logo ki wajah se log aapas me ghagarte hai,-1 +Madarchodon shantiduton ne jahnum bnaa diya hai aur tumko cricket khelna hai,-1 +Public ko chutiya bna rha hai,-1 +haha chutiya virat kohli had fucked anuska sharma for bombay velvet jab jak bombay velvet chali theatre mai anuska ke mu se kheval aaaa sunai de raha tha,-1 +"Madarchod bar bar chillata raha pakisthan jeetega, end mai india ne lund daal hi diya pakistan ki chut mai",-1 +Isne Is Match Main Total 6 Six Lagaya H Aur Yh Chutiya Lagatar isko phel raha hai,-1 +Kya chutiya logic hai ? nikalo isko college se bc,-1 +"Awe jhatu tera baap mai hu, aur teri maa meri randi hai",-1 +Kya chutiyapa aadmi se pala para hai,-1 +"Abb life m bass yahi chutiyapa dekhna baaki reh gaya tha, virat ne anuska ko phela",-1 +Abe sale bihari aukhat mai rahe warna jhatu tereko mai idhar hi phel duga,-1 +ye lavdu kab sudhrega,-1 +Ye takla apni maa behn ki izzat bhi nahi krta hoga. Randwa,-1 +Hahaha Randi roasted,-1 +Bhenchode Saala. He is disgusting.,-1 +Ye saala pakistani n saaanti se rehte h or na rehne dete hai ..kutto ko maaro,-1 +bengal riots pe to chup ha yeh newspaper bc,-1 +Wo sala khud hii bheja hoga... taki 2 emotion bate bolke Logo ki chutiya bna sake,-1 +Abe ab ye kon chutiya bol rha h ki WWF band ho jaana chaiye,-1 +abe bsdk jung china ne nhi humare jawaano ne ladi thi kya chutiyapa machaye hai media ne,-1 +Chutiya to tu hai lund kate hue mulle,-1 +inki aaukat nahi ki ye india ka naam le,0 +carry minati abe o sarvajanik lodu......,-1 +carry minati lavde jyada bolega ko teri gaand maaruga,-1 +deepak kalal itna bada hijda niklega kisko pata tha,-1 +Harami tujhe kahin Jane ki jaroorat nahi ab bas kabrr me ja,-1 +Joker hai ye Anna Hazare,0 +"Sab pre planing hai, sahi bole raha huna mai",0 +"Hmmm.. Tu, aur nachega? Khud k shaadi mai bhi nahi..",0 +Reliance ka chutiya katne wala hai agar future group nahi mila ko,-1 +india jeeta ko mai sabko part duga,0 +"film industry mai bahut paisa hai , kya bolete ho salim bhai",0 +india ka market capture karna hai ko youth ko preference do singh saaheb,0 +Mc ko gaali khane ka shauk tha to keh diya ab diye rho,-1 +To ab tak aapke pitaji logo ko sikha rahe the,0 +Indian express ka journalist madrchod hai jo v Ye post kiya,-1 +Prabhas ke aage saab fail. Jamana gaya khan bro ka,0 +"Allah ka khauf kar, warna zindagi mai khushi nahi milegi",0 +Ye madarchod bahut bada dramebaaz hai chala kyon nhi jata .,-1 +deepak kal se baga chutiya maine nahi dekha you tube industry mai,-1 +carry ki maa ki chut,-1 +ram kapoor ko priya se pyaar hai kya ?,0 +kya ram kapoor ki behen ke chut mai mera lund hai ya nahi hai,-1 +akshay kumar ki film aise aa rahi hai jaise sunny leone ki chodne ke time aawaj aati hai,-1 \ No newline at end of file diff --git a/Model Training/stopwords.txt b/Model Training/stopwords.txt new file mode 100644 index 0000000..2cb8136 --- /dev/null +++ b/Model Training/stopwords.txt @@ -0,0 +1,1090 @@ +a +aadi +aaj +aap +don +mon +aapne +aata +aati +aaya +aaye +ab +abbe +abbey +abe +abhi +able +about +above +accha +according +preparation +placement +accordingly +acha +achcha +across +actually +after +afterwards +again +against +agar +ain +aint +ain't +aisa +sirf +likha +aise +aisi +alag +all +haal +bura +maro +allow +allows +almost +alone +along +already +also +although +always +am +among +amongst +an +and +andar +another +any +anybody +anyhow +anyone +anything +anyway +anyways +anywhere +ap +apan +apart +apna +apnaa +apne +apni +appear +are +aren +arent +aren't +around +arre +as +aside +ask +asking +at +aur +avum +aya +aye +baad +baar +bad +bahut +bana +banae +banai +banao +banaya +banaye +banayi +banda +bande +bandi +param +rohit +hi +aniket +aacha +tumlog +behave +dhruv +bane +bani +bas +bata +batao +be +became +karan +because +become +becomes +becoming +been +before +beforehand +behind +being +below +beside +besides +best +better +between +beyond +bhai +bheja +bheetar +bhi +bhitar +bht +bilkul +bohot +bol +bola +bole +boli +bolo +bolta +bolte +bolti +both +brief +bro +btw +but +by +came +can +cannot +cant +can't +cause +causes +certain +certainly +chahiye +chaiye +chal +chalega +chhaiye +clearly +c'mon +com +come +comes +could +couldn +couldnt +couldn't +d +de +dede +dega +degi +dekh +dekha +dekhe +dekhi +dekho +denge +dhang +di +did +didn +didnt +didn't +dijiye +diya +diyaa +diye +diyo +do +does +doesn +doesnt +doesn't +doing +done +dono +dont +don't +doosra +doosre +down +downwards +dude +dunga +dungi +during +dusra +dusre +dusri +dvaara +dvara +dwaara +dwara +each +edu +eg +eight +either +ek +else +elsewhere +enough +etc +even +ever +every +everybody +everyone +everything +everywhere +ex +exactly +example +except +far +few +fifth +fir +first +five +followed +following +follows +for +forth +four +from +further +furthermore +gaya +gaye +gayi +get +gets +getting +ghar +given +gives +go +goes +going +gone +good +got +gotten +greetings +haan +had +hadd +hadn +hadnt +hadn't +hai +hain +hamara +hamare +hamari +hamne +han +happens +har +hardly +has +hasn +hasnt +hasn't +have +haven +havent +haven't +having +he +hello +help +hence +her +here +hereafter +hereby +herein +here's +hereupon +hers +herself +he's +hi +him +himself +his +hither +hm +hmm +ho +hoga +hoge +hogi +hona +honaa +hone +honge +hongi +honi +hopefully +hota +hotaa +hote +hoti +how +howbeit +however +hoyenge +hoyengi +hu +hua +hue +huh +hui +hum +humein +humne +hun +huye +huyi +i +i'd +idk +ie +if +i'll +i'm +imo +in +inasmuch +inc +inhe +inhi +inho +inka +inkaa +inke +inki +inn +inner +inse +insofar +into +inward +is +ise +isi +iska +iskaa +iske +iski +isme +isn +isne +isnt +isn't +iss +isse +issi +isski +it +it'd +it'll +itna +itne +itni +itno +its +it's +itself +ityaadi +ityadi +i've +ja +jaa +jab +jabh +jaha +jahaan +jahan +jaisa +jaise +jaisi +jata +jayega +jidhar +jin +jinhe +jinhi +jinho +jinhone +jinka +jinke +jinki +jinn +jis +jise +jiska +jiske +jiski +jisme +jiss +jisse +jitna +jitne +jitni +jo +just +jyaada +jyada +k +ka +kaafi +kab +kabhi +kafi +kaha +kahaa +kahaan +kahan +kahi +kahin +kahte +kaisa +kaise +kaisi +kal +kam +keval +kar +kara +kare +karega +karegi +karen +karenge +kari +karke +karna +karne +karni +karo +karta +karte +karti +karu +karun +karunga +karungi +kaun +kaunsa +kayi +kch +ke +keep +keeps +keh +kehte +kept +khud +ki +kin +kine +kinhe +kinho +kinka +kinke +kinki +kinko +kinn +kino +kis +kise +kisi +kiska +kiske +kiski +kisko +kisliye +kisne +kitna +kitne +kitni +kitno +kiya +kiye +know +known +knows +ko +koi +kon +konsa +koyi +krna +krne +kuch +shreyans +kuchch +kuchh +kul +kull +kya +kyaa +kyu +kyuki +kyun +kyunki +lecture +lagta +lagte +lagti +last +lately +later +le +least +lekar +lekin +less +lest +let +let's +li +like +liked +likely +little +liya +liye +ll +lo +log +logon +lol +look +looking +looks +ltd +lunga +m +maan +maana +maane +maani +maano +magar +yaar +mai +main +maine +mainly +mana +mane +mani +mano +many +code +mat +may +maybe +me +mean +meanwhile +mein +mera +mere +merely +meri +might +mightn +mightnt +mightn't +mil +mjhe +more +moreover +most +mostly +much +mujhe +must +mustn +mustnt +mustn't +my +myself +na +naa +naah +nahi +nahin +nai +name +namely +nd +ne +near +nearly +necessary +neeche +need +needn +neednt +needn't +needs +neither +never +nevertheless +new +next +nhi +nine +no +nobody +non +none +noone +nope +nor +normally +not +nothing +novel +now +nowhere +o +obviously +of +tereko +off +often +oh +ok +okay +old +on +once +one +ones +only +onto +or +other +others +otherwise +ought +our +ours +ourselves +out +outside +over +overall +own +par +pata +pe +pehla +pehle +pehli +people +per +perhaps +phla +phle +phli +placed +please +plus +poora +poori +provides +pura +puri +q +que +quite +raha +rahaa +rahe +rahi +rakh +rakha +rakhe +rakhen +rakhi +rakho +rather +re +really +reasonably +regarding +regardless +regards +rehte +rha +rhaa +rhe +rhi +ri +right +s +sa +saara +saare +saath +sab +sabhi +sabse +sahi +said +sakta +saktaa +sakte +sakti +same +sang +sara +sath +saw +say +saying +says +se +second +secondly +see +seeing +seem +seemed +seeming +seems +seen +self +selves +sensible +sent +serious +seriously +seven +several +shall +shan +shant +shan't +she +she's +should +shouldn +shouldnt +shouldn't +should've +si +since +six +so +soch +some +somebody +somehow +someone +something +sometime +sometimes +somewhat +somewhere +soon +still +sub +such +sup +sure +t +tab +tabh +tak +take +taken +tarah +teen +teeno +teesra +teesre +teesri +tell +tends +tera +tere +Ninad +teri +th +tha +than +thank +thanks +thanx +that +that'll +thats +that's +the +theek +their +theirs +them +themselves +then +thence +there +telegram +thereafter +thereby +therefore +therein +theres +there's +thereupon +these +they +they'd +they'll +they're +they've +thi +mila +thik +thing +think +thinking +third +this +tho +thoda +thodi +thorough +thoroughly +those +though +thought +three +through +throughout +thru +thus +tjhe +to +together +toh +too +took +toward +towards +tried +tries +true +truly +try +trying +tu +tujhe +tum +tumhara +tumhare +tumhari +tune +baitho +twice +two +um +umm +un +under +unhe +samja +unhi +unho +unhone +unka +unkaa +unke +unki +unko +unless +life +unlikely +unn +unse +until +unto +up +upar +upon +us +use +used +useful +uses +usi +using +uska +uske +usne +uss +usse +ussi +usually +vaala +vaale +vaali +vahaan +vahan +vahi +vahin +vaisa +vaise +vaisi +vala +vale +vali +various +ve +very +via +viz +vo +waala +waale +waali +wagaira +wagairah +wagerah +waha +wahaan +wahan +wahi +wahin +waisa +waise +waisi +wala +wale +wali +want +wants +was +wasn +wasnt +wasn't +way +we +we'd +well +we'll +went +were +we're +weren +werent +weren't +we've +what +whatever +what's +when +whence +whenever +expect +where +whereafter +whereas +whereby +wherein +where's +whereupon +wherever +submit +whether +which +while +who +whoever +whole +whom +who's +whose +why +will +willing +with +within +without +wo +woh +wohi +won +wont +won't +would +wouldn +wouldnt +wouldn't +y +ya +yadi +yah +yaha +yahaan +yahan +yahi +yahin +ye +yeah +yeh +yehi +yes +yet +you +you'd +you'll +your +you're +yours +yourself +yourselves +you've +yup +Kyu +Kaise +Aise +Chal +ice +tera +mera +meri +teri +chup +ko +aise +kaise + + + + + + + + + diff --git a/REPORT/Frontend to output flowchart.png b/REPORT/Frontend to output flowchart.png new file mode 100644 index 0000000..c9f7749 Binary files /dev/null and b/REPORT/Frontend to output flowchart.png differ diff --git a/REPORT/Internal Structure.png b/REPORT/Internal Structure.png new file mode 100644 index 0000000..d0f5e2d Binary files /dev/null and b/REPORT/Internal Structure.png differ diff --git a/REPORT/Presentation.pdf b/REPORT/Presentation.pdf new file mode 100644 index 0000000..0124f51 Binary files /dev/null and b/REPORT/Presentation.pdf differ diff --git a/REPORT/Python_Project_Report_IEEE.docx b/REPORT/Python_Project_Report_IEEE.docx new file mode 100644 index 0000000..fe54833 Binary files /dev/null and b/REPORT/Python_Project_Report_IEEE.docx differ diff --git a/REPORT/TeamID_28_Hinglish_Sentiment_Analysis.pdf b/REPORT/TeamID_28_Hinglish_Sentiment_Analysis.pdf new file mode 100644 index 0000000..1960154 Binary files /dev/null and b/REPORT/TeamID_28_Hinglish_Sentiment_Analysis.pdf differ diff --git a/REPORT/~WRL3603.tmp b/REPORT/~WRL3603.tmp new file mode 100644 index 0000000..0755823 Binary files /dev/null and b/REPORT/~WRL3603.tmp differ diff --git a/Scrapper/scrap.ipynb b/Scrapper/scrap.ipynb new file mode 100644 index 0000000..7ef4818 --- /dev/null +++ b/Scrapper/scrap.ipynb @@ -0,0 +1,188 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import googleapiclient.discovery\n", + "import googleapiclient.errors" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "We're so honored that the first ever YouTube video was filmed here!\n", + "Ameysin bro\n", + "I'm here to leave my digital hand print lol\n", + "It’s so crazy that this was almost twenty years ago\n", + "맹구짱\n", + "You will not know why this comment is here\n", + "This is the video that started it all….\n", + "If you search flammable maths and oh no daddy wunk it said 53 YEARS AGO\n", + "Damn this is was a whole childhood ago\n", + "10 Million Comments 😲\n", + "Bro got more views than Mr beast 💀💀\n", + "Elaphent\n", + "Wow\n", + "All right, so here we are, in front of the elephants
the cool thing about these guys is that they have really...
really really long trunks
and that's cool
(baaaaaaaaaaahhh!!)
and that's pretty much all there is to say\n", + "Best\n", + "\n", + "but where were the cats that were promised!?!\n", + "hi\n", + "Omg omg firths you tube video\n", + "18 years later, and this video still hits hard👍\n", + "Sheesh\n" + ] + } + ], + "source": [ + "import logging\n", + "import googleapiclient.discovery\n", + "\n", + "# Configure the logging module\n", + "logging.basicConfig(filename='youtube_comments.log', level=logging.DEBUG)\n", + "logger = logging.getLogger(__name__)\n", + "\n", + "api_service_name = \"youtube\"\n", + "api_version = \"v3\"\n", + "DEVELOPER_KEY = \"AIzaSyDliib4FNCylarO3ErLivdlM0MWVuI-z94\"\n", + "\n", + "youtube = googleapiclient.discovery.build(\n", + " api_service_name, api_version, developerKey=DEVELOPER_KEY\n", + ")\n", + "\n", + "request = youtube.commentThreads().list(\n", + " part=\"snippet\", videoId=\"jNQXAC9IVRw\", maxResults=200\n", + ")\n", + "response = request.execute()\n", + "\n", + "try:\n", + " for item in response[\"items\"]:\n", + " comment = item[\"snippet\"][\"topLevelComment\"][\"snippet\"][\"textDisplay\"]\n", + " print(comment)\n", + " # Log the comment at INFO level\n", + " logger.info(comment)\n", + "\n", + "except Exception as e:\n", + " # Log any exceptions at ERROR level\n", + " logger.error(\"An error occurred: %s\", str(e))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "import googleapiclient.discovery\n", + "import pandas as pd\n", + "import logging\n", + "import csv\n", + "\n", + "\n", + "def main():\n", + " api_service_name = \"youtube\"\n", + " api_version = \"v3\"\n", + " DEVELOPER_KEY = \"AIzaSyDliib4FNCylarO3ErLivdlM0MWVuI-z94\"\n", + "\n", + " youtube = googleapiclient.discovery.build(\n", + " api_service_name, api_version, developerKey=DEVELOPER_KEY\n", + " )\n", + "\n", + " video_id = \"g0CWxEuN2VI\"\n", + " comments = []\n", + "\n", + " next_page_token = None\n", + " page_count = 0 # Track the number of pages retrieved\n", + " max_pages = 100 # Set the maximum number of pages to retrieve\n", + "\n", + " try:\n", + " while page_count < max_pages:\n", + " request = youtube.commentThreads().list(\n", + " part=\"snippet\",\n", + " videoId=video_id,\n", + " maxResults=100, # 100 is the maximum allowed per request\n", + " pageToken=next_page_token # Set the page token for pagination\n", + " )\n", + " response = request.execute()\n", + "\n", + " for item in response.get(\"items\", []):\n", + " comment = item[\"snippet\"][\"topLevelComment\"][\"snippet\"]\n", + " comments.append([\n", + " comment[\"authorDisplayName\"],\n", + " comment[\"likeCount\"],\n", + " comment[\"textDisplay\"],\n", + " ])\n", + "\n", + " page_count += 1 # Increment the page count\n", + "\n", + " next_page_token = response.get(\"nextPageToken\")\n", + "\n", + " # Log the total comments scraped at INFO level\n", + " logger.info(\"Total comments scraped: %d\", len(comments))\n", + "\n", + " if not comments:\n", + " # Log a warning if no comments were found\n", + " logger.warning(\"No comments were found for the video.\")\n", + "\n", + " # Generate DataFrame if comments were collected\n", + " if comments:\n", + " df = pd.DataFrame(comments, columns=[\"author\", \"like_count\", \"text\"])\n", + " df.to_csv(\"youtube_comments.csv\", index=False) # Save the data to a CSV file\n", + "\n", + " except Exception as e:\n", + " # Log any exceptions at ERROR level\n", + " logger.error(\"An error occurred: %s\", str(e))\n", + "\n", + "if __name__ == \"__main__\":\n", + " main()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(comments, columns=[\"text\"])\n", + "df.to_csv(\"youtube_comments.csv\", index=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.11.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/__pycache__/app.cpython-311.pyc b/__pycache__/app.cpython-311.pyc new file mode 100644 index 0000000..9d771cd Binary files /dev/null and b/__pycache__/app.cpython-311.pyc differ diff --git a/app.log b/app.log new file mode 100644 index 0000000..868e235 --- /dev/null +++ b/app.log @@ -0,0 +1,8 @@ +werkzeug - WARNING - * Debugger is active! +werkzeug - INFO - * Debugger PIN: 122-062-442 +2023-11-02 09:38:09,321 INFO werkzeug MainThread : WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://127.0.0.1:5000 +2023-11-02 09:38:09,321 INFO werkzeug MainThread : Press CTRL+C to quit +2023-11-02 09:38:09,329 INFO werkzeug MainThread : * Restarting with watchdog (windowsapi) +2023-11-02 09:38:11,174 WARNING werkzeug MainThread : * Debugger is active! +2023-11-02 09:38:11,174 INFO werkzeug MainThread : * Debugger PIN: 122-062-442 diff --git a/app.py b/app.py new file mode 100644 index 0000000..a0c1dd3 --- /dev/null +++ b/app.py @@ -0,0 +1,37 @@ +from flask import Flask, render_template, request +import joblib +import pandas as pd +import numpy as np +import pickle +from sklearn.feature_extraction.text import CountVectorizer + + +app = Flask(__name__) + +# Load the sentiment analysis model +with open('LinearSVC.pkl', 'rb') as model_file: + sentiment_model = pickle.load(model_file) + +@app.route('/') +def index(): + return render_template('index.html') + +@app.route('/analyze_sentiment', methods=['POST']) +def predict(): + # Get the text from the form + text = request.form['user_input'] + #convert text to list if it is not + if type(text) == str: + text = [text] + count_vector = CountVectorizer(stop_words= 'english', lowercase = True,vocabulary=pickle.load(open("vector_vocabulary.pkl", "rb"))) + data= count_vector.fit_transform(text) + sentiment_model.predict(data) + if(sentiment_model.predict(data)==1): + #print bullying on the html page + return render_template('index.html', user_input='text', sentiment='Offensive') + else: + #print non-bullying on the html page + return render_template('index.html',user_input='text', sentiment='Non-Offensive') + +if __name__ == '__main__': + app.run(debug=True) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..ed6c376 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +flask +joblib +pandas +scikit-learn +matplotlib diff --git a/static/styles.css b/static/styles.css new file mode 100644 index 0000000..6612b8e --- /dev/null +++ b/static/styles.css @@ -0,0 +1,56 @@ +/* static/style.css */ + +body { + font-family: Arial, sans-serif; + background-color: #f2f2f2; + margin: 0; + padding: 0; +} + +h1 { + text-align: center; + margin: 20px 0; + color: #333; +} + +form { + text-align: center; + margin: 20px auto; + background-color: #fff; + padding: 20px; + border-radius: 5px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); + max-width: 400px; +} + +input[type="text"] { + width: 100%; + padding: 10px; + margin: 10px 0; + border: 1px solid #ccc; + border-radius: 5px; + font-size: 16px; +} + +button { + display: block; + width: 100%; + padding: 10px; + background-color: #007BFF; + border: none; + border-radius: 5px; + color: #fff; + font-size: 18px; + cursor: pointer; +} + +button:hover { + background-color: #0056b3; +} + +p { + text-align: center; + margin: 20px; + font-size: 18px; + color: #333; +} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..3cdee3f --- /dev/null +++ b/templates/index.html @@ -0,0 +1,190 @@ + + + + + + + + Hinglish Sentiment Analysis + + + + + +

Welcome to our HINGLISH Sentiment Analysis

+
+
+

Analysis Engine

+
+ + +
+ +

User Input: {{ user_input }}

+

Sentiment: {{ sentiment }}

+ + + + diff --git a/vector_vocabulary.pkl b/vector_vocabulary.pkl new file mode 100644 index 0000000..70d4b5e Binary files /dev/null and b/vector_vocabulary.pkl differ